From 7091e1e1b20efff0f8f45bce3b6d7cea2462ae8e Mon Sep 17 00:00:00 2001 From: Nicholas Ward Date: Tue, 4 Apr 2023 13:15:27 -0700 Subject: [PATCH 01/21] initial work: gate interface and PublicInput --- plonky2_verifier/gate.go | 50 ++++++++++++++++++++++++++++++++ plonky2_verifier/plonk.go | 32 +++++++++++++++++++- plonky2_verifier/public_input.go | 32 ++++++++++++++++++++ plonky2_verifier/selectors.go | 17 +++++++++++ plonky2_verifier/structs.go | 2 ++ plonky2_verifier/vars.go | 19 ++++++++++++ 6 files changed, 151 insertions(+), 1 deletion(-) create mode 100644 plonky2_verifier/gate.go create mode 100644 plonky2_verifier/public_input.go create mode 100644 plonky2_verifier/selectors.go create mode 100644 plonky2_verifier/vars.go diff --git a/plonky2_verifier/gate.go b/plonky2_verifier/gate.go new file mode 100644 index 0000000..49f2dd7 --- /dev/null +++ b/plonky2_verifier/gate.go @@ -0,0 +1,50 @@ +package plonky2_verifier + +import ( + . "gnark-plonky2-verifier/field" +) + +type gate interface { + EvalUnfiltered(vars EvaluationVars) []QuadraticExtension +} + +func (p *PlonkChip) computeFilter( + row int, + groupRange Range, + s QuadraticExtension, + manySelector bool, +) QuadraticExtension { + product := p.qeAPI.ONE_QE + for i := groupRange.start; i < groupRange.end; i++ { + if i == uint64(row) { + continue + } + + product = p.qeAPI.MulExtension(product, p.qeAPI.SubExtension(p.qeAPI.FieldToQE(NewFieldElement(i)), s)) + } + + if manySelector { + product = p.qeAPI.MulExtension(product, p.qeAPI.SubExtension(p.qeAPI.FieldToQE(NewFieldElement(UNUSED_SELECTOR)), s)) + } + + return product +} + +func (p *PlonkChip) evalFiltered( + g gate, + vars EvaluationVars, + row int, + selectorIndex int, + groupRange Range, + numSelectors int, +) []QuadraticExtension { + filter := p.computeFilter(row, groupRange, vars.localConstants[selectorIndex], numSelectors > 1) + + vars.RemovePrefix(numSelectors) + + unfiltered := g.EvalUnfiltered(vars) + for i := range unfiltered { + unfiltered[i] = p.qeAPI.MulExtension(unfiltered[i], filter) + } + return unfiltered +} diff --git a/plonky2_verifier/plonk.go b/plonky2_verifier/plonk.go index 5c0f9de..439e5c6 100644 --- a/plonky2_verifier/plonk.go +++ b/plonky2_verifier/plonk.go @@ -116,8 +116,38 @@ func (p *PlonkChip) checkPartialProducts( return partialProductChecks } +func (p *PlonkChip) evalFiltered( + g gate, + vars EvaluationVars, + row int, + selectorIndex int, + groupRange Range, + numSelectors int +) []QuadraticExtension { + +} + +func (p *PlonkChip) evaluateGateConstraints( + commonData CommonCircuitData, + x QuadraticExtension, + vars EvaluationVars, + localZs []QuadraticExtension, + nextZs []QuadraticExtension, + partialProducts []QuadraticExtension, + sSigmas []QuadraticExtension, + betas []F, + gammas []F, + alphas []F, +) []QuadraticExtension { + constraints := make([]QuadraticExtension, commonData.NumGateConstraints) + + for i, gate := range commonData.Gates { + selectorIndex := commonData.selector + } +} + func (p *PlonkChip) evalVanishingPoly(proofChallenges ProofChallenges, openings OpeningSet, zetaPowN QuadraticExtension) []QuadraticExtension { - // TODO: evaluate_gate_contraints logic should be implemented here. See https://github.com/mir-protocol/plonky2/blob/main/plonky2/src/plonk/vanishing_poly.rs#L39 + // TODO: evaluate_gate_constraints logic should be implemented here. See https://github.com/mir-protocol/plonky2/blob/main/plonky2/src/plonk/vanishing_poly.rs#L39 // Calculate the k[i] * x sIDs := make([]QuadraticExtension, p.commonData.Config.NumRoutedWires) diff --git a/plonky2_verifier/public_input.go b/plonky2_verifier/public_input.go new file mode 100644 index 0000000..211873b --- /dev/null +++ b/plonky2_verifier/public_input.go @@ -0,0 +1,32 @@ +package plonky2_verifier + +import ( + . "gnark-plonky2-verifier/field" +) + +type PublicInputGate struct { +} + +func (p *PublicInputGate) WiresPublicInputsHash() []int { + return []int{0, 1, 2, 3} +} + +func (p *PublicInputGate) EvalUnfiltered(pc *PlonkChip, vars EvaluationVars) []QuadraticExtension { + constraints := []QuadraticExtension{} + + wires := p.WiresPublicInputsHash() + hash_parts := vars.publicInputsHash.elements + for i := 0; i < 4; i++ { + wire := wires[i] + hash_part := hash_parts[i] + + diff := pc.qeAPI.SubExtension(vars.localWires[wire], pc.qeAPI.FieldToQE(hash_part)) + constraints = append(constraints, diff) + } + + return constraints +} + +func (p *PublicInputGate) EvalFiltered(vars EvaluationVars) []QuadraticExtension { + return nil +} diff --git a/plonky2_verifier/selectors.go b/plonky2_verifier/selectors.go new file mode 100644 index 0000000..a29e750 --- /dev/null +++ b/plonky2_verifier/selectors.go @@ -0,0 +1,17 @@ +package plonky2_verifier + +const UNUSED_SELECTOR = ^uint64(0) // max uint + +type Range struct { + start uint64 + end uint64 +} + +type SelectorsInfo struct { + selectorIndices []uint64 + groups []Range +} + +func (s *SelectorsInfo) NumSelectors() int { + return len(s.groups) +} diff --git a/plonky2_verifier/structs.go b/plonky2_verifier/structs.go index 50e1c7b..5395f97 100644 --- a/plonky2_verifier/structs.go +++ b/plonky2_verifier/structs.go @@ -101,6 +101,8 @@ type CircuitConfig struct { type CommonCircuitData struct { Config CircuitConfig FriParams FriParams + Gates []gate + SelectorsInfo SelectorsInfo DegreeBits uint64 QuotientDegreeFactor uint64 NumGateConstraints uint64 diff --git a/plonky2_verifier/vars.go b/plonky2_verifier/vars.go new file mode 100644 index 0000000..8f04a2d --- /dev/null +++ b/plonky2_verifier/vars.go @@ -0,0 +1,19 @@ +package plonky2_verifier + +import ( + . "gnark-plonky2-verifier/field" +) + +type HashOut struct { + elements [4]F +} + +type EvaluationVars struct { + localConstants []QuadraticExtension + localWires []QuadraticExtension + publicInputsHash HashOut +} + +func (e *EvaluationVars) RemovePrefix(numSelectors int) { + e.localConstants = e.localConstants[numSelectors:] +} From 098cb424101b93edde930715b1fa506685c5571f Mon Sep 17 00:00:00 2001 From: Nicholas Ward Date: Tue, 4 Apr 2023 13:21:12 -0700 Subject: [PATCH 02/21] no more gate EvalFiltered --- plonky2_verifier/public_input.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/plonky2_verifier/public_input.go b/plonky2_verifier/public_input.go index 211873b..64256e6 100644 --- a/plonky2_verifier/public_input.go +++ b/plonky2_verifier/public_input.go @@ -26,7 +26,3 @@ func (p *PublicInputGate) EvalUnfiltered(pc *PlonkChip, vars EvaluationVars) []Q return constraints } - -func (p *PublicInputGate) EvalFiltered(vars EvaluationVars) []QuadraticExtension { - return nil -} From 4914844edb92c3a4b422ecae582482f0590631fe Mon Sep 17 00:00:00 2001 From: Nicholas Ward Date: Tue, 4 Apr 2023 13:26:30 -0700 Subject: [PATCH 03/21] finished evaluateGateConstraints --- plonky2_verifier/plonk.go | 29 +++++++++++++++++------------ 1 file changed, 17 insertions(+), 12 deletions(-) diff --git a/plonky2_verifier/plonk.go b/plonky2_verifier/plonk.go index 439e5c6..72d4ad4 100644 --- a/plonky2_verifier/plonk.go +++ b/plonky2_verifier/plonk.go @@ -116,17 +116,6 @@ func (p *PlonkChip) checkPartialProducts( return partialProductChecks } -func (p *PlonkChip) evalFiltered( - g gate, - vars EvaluationVars, - row int, - selectorIndex int, - groupRange Range, - numSelectors int -) []QuadraticExtension { - -} - func (p *PlonkChip) evaluateGateConstraints( commonData CommonCircuitData, x QuadraticExtension, @@ -142,8 +131,24 @@ func (p *PlonkChip) evaluateGateConstraints( constraints := make([]QuadraticExtension, commonData.NumGateConstraints) for i, gate := range commonData.Gates { - selectorIndex := commonData.selector + selectorIndex := commonData.SelectorsInfo.selectorIndices[i] + + gateConstraints := p.evalFiltered( + gate, + vars, + i, + int(selectorIndex), + commonData.SelectorsInfo.groups[selectorIndex], + commonData.SelectorsInfo.NumSelectors(), + ) + + for _, constraint := range gateConstraints { + // assert j < commonData.NumGateConstraints + constraints[i] = p.qeAPI.AddExtension(constraints[i], constraint) + } } + + return constraints } func (p *PlonkChip) evalVanishingPoly(proofChallenges ProofChallenges, openings OpeningSet, zetaPowN QuadraticExtension) []QuadraticExtension { From 58914e8f664521609ecfa60e5b614a47c01b9e55 Mon Sep 17 00:00:00 2001 From: Nicholas Ward Date: Tue, 4 Apr 2023 13:47:29 -0700 Subject: [PATCH 04/21] uint64 --- plonky2_verifier/gate.go | 8 ++++---- plonky2_verifier/plonk.go | 4 ++-- plonky2_verifier/public_input.go | 4 ++-- plonky2_verifier/selectors.go | 4 ++-- plonky2_verifier/vars.go | 2 +- 5 files changed, 11 insertions(+), 11 deletions(-) diff --git a/plonky2_verifier/gate.go b/plonky2_verifier/gate.go index 49f2dd7..bbaeed1 100644 --- a/plonky2_verifier/gate.go +++ b/plonky2_verifier/gate.go @@ -9,7 +9,7 @@ type gate interface { } func (p *PlonkChip) computeFilter( - row int, + row uint64, groupRange Range, s QuadraticExtension, manySelector bool, @@ -33,10 +33,10 @@ func (p *PlonkChip) computeFilter( func (p *PlonkChip) evalFiltered( g gate, vars EvaluationVars, - row int, - selectorIndex int, + row uint64, + selectorIndex uint64, groupRange Range, - numSelectors int, + numSelectors uint64, ) []QuadraticExtension { filter := p.computeFilter(row, groupRange, vars.localConstants[selectorIndex], numSelectors > 1) diff --git a/plonky2_verifier/plonk.go b/plonky2_verifier/plonk.go index 72d4ad4..175cfd8 100644 --- a/plonky2_verifier/plonk.go +++ b/plonky2_verifier/plonk.go @@ -136,8 +136,8 @@ func (p *PlonkChip) evaluateGateConstraints( gateConstraints := p.evalFiltered( gate, vars, - i, - int(selectorIndex), + uint64(i), + selectorIndex, commonData.SelectorsInfo.groups[selectorIndex], commonData.SelectorsInfo.NumSelectors(), ) diff --git a/plonky2_verifier/public_input.go b/plonky2_verifier/public_input.go index 64256e6..a96df1e 100644 --- a/plonky2_verifier/public_input.go +++ b/plonky2_verifier/public_input.go @@ -7,8 +7,8 @@ import ( type PublicInputGate struct { } -func (p *PublicInputGate) WiresPublicInputsHash() []int { - return []int{0, 1, 2, 3} +func (p *PublicInputGate) WiresPublicInputsHash() []uint64 { + return []uint64{0, 1, 2, 3} } func (p *PublicInputGate) EvalUnfiltered(pc *PlonkChip, vars EvaluationVars) []QuadraticExtension { diff --git a/plonky2_verifier/selectors.go b/plonky2_verifier/selectors.go index a29e750..3626965 100644 --- a/plonky2_verifier/selectors.go +++ b/plonky2_verifier/selectors.go @@ -12,6 +12,6 @@ type SelectorsInfo struct { groups []Range } -func (s *SelectorsInfo) NumSelectors() int { - return len(s.groups) +func (s *SelectorsInfo) NumSelectors() uint64 { + return uint64(len(s.groups)) } diff --git a/plonky2_verifier/vars.go b/plonky2_verifier/vars.go index 8f04a2d..2a77e65 100644 --- a/plonky2_verifier/vars.go +++ b/plonky2_verifier/vars.go @@ -14,6 +14,6 @@ type EvaluationVars struct { publicInputsHash HashOut } -func (e *EvaluationVars) RemovePrefix(numSelectors int) { +func (e *EvaluationVars) RemovePrefix(numSelectors uint64) { e.localConstants = e.localConstants[numSelectors:] } From c0168a9769a1fb01e7786d9957407e71f826610c Mon Sep 17 00:00:00 2001 From: Nicholas Ward Date: Wed, 5 Apr 2023 14:26:08 -0700 Subject: [PATCH 05/21] updates: included evaluateGateConstraints --- plonky2_verifier/plonk.go | 40 +++++++++++++++----------------- plonky2_verifier/plonk_test.go | 6 ++++- plonky2_verifier/public_input.go | 2 +- plonky2_verifier/vars.go | 6 +---- plonky2_verifier/verifier.go | 2 +- 5 files changed, 27 insertions(+), 29 deletions(-) diff --git a/plonky2_verifier/plonk.go b/plonky2_verifier/plonk.go index 175cfd8..05b2535 100644 --- a/plonky2_verifier/plonk.go +++ b/plonky2_verifier/plonk.go @@ -116,30 +116,19 @@ func (p *PlonkChip) checkPartialProducts( return partialProductChecks } -func (p *PlonkChip) evaluateGateConstraints( - commonData CommonCircuitData, - x QuadraticExtension, - vars EvaluationVars, - localZs []QuadraticExtension, - nextZs []QuadraticExtension, - partialProducts []QuadraticExtension, - sSigmas []QuadraticExtension, - betas []F, - gammas []F, - alphas []F, -) []QuadraticExtension { - constraints := make([]QuadraticExtension, commonData.NumGateConstraints) +func (p *PlonkChip) evaluateGateConstraints(vars EvaluationVars) []QuadraticExtension { + constraints := make([]QuadraticExtension, p.commonData.NumGateConstraints) - for i, gate := range commonData.Gates { - selectorIndex := commonData.SelectorsInfo.selectorIndices[i] + for i, gate := range p.commonData.Gates { + selectorIndex := p.commonData.SelectorsInfo.selectorIndices[i] gateConstraints := p.evalFiltered( gate, vars, uint64(i), selectorIndex, - commonData.SelectorsInfo.groups[selectorIndex], - commonData.SelectorsInfo.NumSelectors(), + p.commonData.SelectorsInfo.groups[selectorIndex], + p.commonData.SelectorsInfo.NumSelectors(), ) for _, constraint := range gateConstraints { @@ -151,8 +140,8 @@ func (p *PlonkChip) evaluateGateConstraints( return constraints } -func (p *PlonkChip) evalVanishingPoly(proofChallenges ProofChallenges, openings OpeningSet, zetaPowN QuadraticExtension) []QuadraticExtension { - // TODO: evaluate_gate_constraints logic should be implemented here. See https://github.com/mir-protocol/plonky2/blob/main/plonky2/src/plonk/vanishing_poly.rs#L39 +func (p *PlonkChip) evalVanishingPoly(vars EvaluationVars, proofChallenges ProofChallenges, openings OpeningSet, zetaPowN QuadraticExtension) []QuadraticExtension { + constraintTerms := p.evaluateGateConstraints(vars) // Calculate the k[i] * x sIDs := make([]QuadraticExtension, p.commonData.Config.NumRoutedWires) @@ -212,6 +201,7 @@ func (p *PlonkChip) evalVanishingPoly(proofChallenges ProofChallenges, openings vanishingTerms := append(vanishingZ1Terms, vanishingPartialProductsTerms...) vanishingTerms = append(vanishingTerms, []QuadraticExtension{p.qeAPI.ZERO_QE, p.qeAPI.ZERO_QE, p.qeAPI.ZERO_QE, p.qeAPI.ZERO_QE}...) + vanishingTerms = append(vanishingTerms, constraintTerms...) reducedValues := make([]QuadraticExtension, p.commonData.Config.NumChallenges) for i := uint64(0); i < p.commonData.Config.NumChallenges; i++ { @@ -234,11 +224,19 @@ func (p *PlonkChip) evalVanishingPoly(proofChallenges ProofChallenges, openings return reducedValues } -func (p *PlonkChip) Verify(proofChallenges ProofChallenges, openings OpeningSet) { +func (p *PlonkChip) Verify(proofChallenges ProofChallenges, openings OpeningSet, publicInputsHash Hash) { // Calculate zeta^n zetaPowN := p.expPowerOf2Extension(proofChallenges.PlonkZeta) - vanishingPolysZeta := p.evalVanishingPoly(proofChallenges, openings, zetaPowN) + localConstants := openings.Constants + localWires := openings.Wires + vars := EvaluationVars{ + localConstants, + localWires, + publicInputsHash, + } + + vanishingPolysZeta := p.evalVanishingPoly(vars, proofChallenges, openings, zetaPowN) // Calculate Z(H) zHZeta := p.qeAPI.SubExtension(zetaPowN, p.qeAPI.ONE_QE) diff --git a/plonky2_verifier/plonk_test.go b/plonky2_verifier/plonk_test.go index 1c75e5a..d710068 100644 --- a/plonky2_verifier/plonk_test.go +++ b/plonky2_verifier/plonk_test.go @@ -2,6 +2,7 @@ package plonky2_verifier import ( . "gnark-plonky2-verifier/field" + "gnark-plonky2-verifier/poseidon" "testing" "github.com/consensys/gnark/frontend" @@ -34,7 +35,10 @@ func (circuit *TestPlonkCircuit) Define(api frontend.API) error { plonkChip := NewPlonkChip(api, qe, commonCircuitData) - plonkChip.Verify(proofChallenges, proofWithPis.Proof.Openings) + poseidonChip := poseidon.NewPoseidonChip(api, field) + publicInputsHash := poseidonChip.HashNoPad(proofWithPis.PublicInputs) + + plonkChip.Verify(proofChallenges, proofWithPis.Proof.Openings, publicInputsHash) return nil } diff --git a/plonky2_verifier/public_input.go b/plonky2_verifier/public_input.go index a96df1e..962c557 100644 --- a/plonky2_verifier/public_input.go +++ b/plonky2_verifier/public_input.go @@ -15,7 +15,7 @@ func (p *PublicInputGate) EvalUnfiltered(pc *PlonkChip, vars EvaluationVars) []Q constraints := []QuadraticExtension{} wires := p.WiresPublicInputsHash() - hash_parts := vars.publicInputsHash.elements + hash_parts := vars.publicInputsHash for i := 0; i < 4; i++ { wire := wires[i] hash_part := hash_parts[i] diff --git a/plonky2_verifier/vars.go b/plonky2_verifier/vars.go index 2a77e65..1c78511 100644 --- a/plonky2_verifier/vars.go +++ b/plonky2_verifier/vars.go @@ -4,14 +4,10 @@ import ( . "gnark-plonky2-verifier/field" ) -type HashOut struct { - elements [4]F -} - type EvaluationVars struct { localConstants []QuadraticExtension localWires []QuadraticExtension - publicInputsHash HashOut + publicInputsHash Hash } func (e *EvaluationVars) RemovePrefix(numSelectors uint64) { diff --git a/plonky2_verifier/verifier.go b/plonky2_verifier/verifier.go index e8daf1e..c3d8fc6 100644 --- a/plonky2_verifier/verifier.go +++ b/plonky2_verifier/verifier.go @@ -73,7 +73,7 @@ func (c *VerifierChip) Verify(proofWithPis ProofWithPublicInputs, verifierData V publicInputsHash := c.GetPublicInputsHash(proofWithPis.PublicInputs) proofChallenges := c.GetChallenges(proofWithPis, publicInputsHash, commonData) - c.plonkChip.Verify(proofChallenges, proofWithPis.Proof.Openings) + c.plonkChip.Verify(proofChallenges, proofWithPis.Proof.Openings, publicInputsHash) initialMerkleCaps := []MerkleCap{ verifierData.ConstantSigmasCap, From 64456ee08286eb0c7cf7108af669f393f9c5677d Mon Sep 17 00:00:00 2001 From: Nicholas Ward Date: Wed, 5 Apr 2023 18:20:49 -0700 Subject: [PATCH 06/21] initial work on PoseidonGate --- plonky2_verifier/public_input.go | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 plonky2_verifier/public_input.go diff --git a/plonky2_verifier/public_input.go b/plonky2_verifier/public_input.go deleted file mode 100644 index 962c557..0000000 --- a/plonky2_verifier/public_input.go +++ /dev/null @@ -1,28 +0,0 @@ -package plonky2_verifier - -import ( - . "gnark-plonky2-verifier/field" -) - -type PublicInputGate struct { -} - -func (p *PublicInputGate) WiresPublicInputsHash() []uint64 { - return []uint64{0, 1, 2, 3} -} - -func (p *PublicInputGate) EvalUnfiltered(pc *PlonkChip, vars EvaluationVars) []QuadraticExtension { - constraints := []QuadraticExtension{} - - wires := p.WiresPublicInputsHash() - hash_parts := vars.publicInputsHash - for i := 0; i < 4; i++ { - wire := wires[i] - hash_part := hash_parts[i] - - diff := pc.qeAPI.SubExtension(vars.localWires[wire], pc.qeAPI.FieldToQE(hash_part)) - constraints = append(constraints, diff) - } - - return constraints -} From e1ab30f6a0e880bc739dc77f9288f524e4f7eb0f Mon Sep 17 00:00:00 2001 From: Nicholas Ward Date: Wed, 5 Apr 2023 18:21:01 -0700 Subject: [PATCH 07/21] oops included gate files --- plonky2_verifier/noop_gate.go | 12 ++ plonky2_verifier/poseidon_gate.go | 156 ++++++++++++++++++++++++++ plonky2_verifier/public_input_gate.go | 28 +++++ 3 files changed, 196 insertions(+) create mode 100644 plonky2_verifier/noop_gate.go create mode 100644 plonky2_verifier/poseidon_gate.go create mode 100644 plonky2_verifier/public_input_gate.go diff --git a/plonky2_verifier/noop_gate.go b/plonky2_verifier/noop_gate.go new file mode 100644 index 0000000..3855197 --- /dev/null +++ b/plonky2_verifier/noop_gate.go @@ -0,0 +1,12 @@ +package plonky2_verifier + +import ( + . "gnark-plonky2-verifier/field" +) + +type NoopGate struct { +} + +func (p *NoopGate) EvalUnfiltered(pc *PlonkChip, vars EvaluationVars) []QuadraticExtension { + return []QuadraticExtension{} +} diff --git a/plonky2_verifier/poseidon_gate.go b/plonky2_verifier/poseidon_gate.go new file mode 100644 index 0000000..3980fc9 --- /dev/null +++ b/plonky2_verifier/poseidon_gate.go @@ -0,0 +1,156 @@ +package plonky2_verifier + +import ( + . "gnark-plonky2-verifier/field" + "gnark-plonky2-verifier/poseidon" +) + +func (g *PoseidonGate) WireInput(i uint64) uint64 { + return i +} + +func (g *PoseidonGate) WireOutput(i uint64) uint64 { + return poseidon.SPONGE_WIDTH + i +} + +func (g *PoseidonGate) WireSwap() uint64 { + return 2 * poseidon.SPONGE_WIDTH +} + +const START_DELTA = 2*poseidon.SPONGE_WIDTH + 1 + +func (g *PoseidonGate) WireDelta(i uint64) uint64 { + if i >= 4 { + panic("Delta index out of range") + } + return START_DELTA + i +} + +const START_FULL_0 = START_DELTA + 4 + +func (g *PoseidonGate) WireFullSBox0(round uint64, i uint64) uint64 { + if round == 0 { + panic("First-round S-box inputs are not stored as wires") + } + if round >= poseidon.HALF_N_FULL_ROUNDS { + panic("S-box input round out of range") + } + if i >= poseidon.SPONGE_WIDTH { + panic("S-box input index out of range") + } + + return START_FULL_0 + (round-1)*poseidon.SPONGE_WIDTH + i +} + +const START_PARTIAL = START_FULL_0 + (poseidon.HALF_N_FULL_ROUNDS-1)*poseidon.SPONGE_WIDTH + +func (g *PoseidonGate) WirePartialSBox(round uint64) uint64 { + if round >= poseidon.N_PARTIAL_ROUNDS { + panic("S-box input round out of range") + } + return START_PARTIAL + round +} + +const START_FULL_1 = START_PARTIAL + poseidon.N_PARTIAL_ROUNDS + +func (g *PoseidonGate) WireFullSBox1(round uint64, i uint64) uint64 { + if round >= poseidon.HALF_N_FULL_ROUNDS { + panic("S-box input round out of range") + } + if i >= poseidon.SPONGE_WIDTH { + panic("S-box input index out of range") + } + + return START_FULL_1 + round*poseidon.SPONGE_WIDTH + i +} + +func (g *PoseidonGate) WiresEnd() uint64 { + return START_FULL_1 + poseidon.HALF_N_FULL_ROUNDS*poseidon.SPONGE_WIDTH +} + +type PoseidonGate struct { +} + +func (p *PoseidonGate) EvalUnfiltered(pc *PlonkChip, vars EvaluationVars) []QuadraticExtension { + constraints := []QuadraticExtension{} + + // Assert that `swap` is binary. + swap := vars.localWires[p.WireSwap()] + notSwap := pc.qeAPI.SubExtension(pc.qeAPI.FieldToQE(ONE_F), swap) + constraints = append(constraints, pc.qeAPI.MulExtension(swap, notSwap)) + + // Assert that each delta wire is set properly: `delta_i = swap * (rhs - lhs)`. + for i := uint64(0); i < 4; i++ { + inputLhs := vars.localWires[p.WireInput(i)] + inputRhs := vars.localWires[p.WireInput(i+4)] + deltaI := vars.localWires[p.WireDelta(i)] + diff := pc.qeAPI.SubExtension(inputRhs, inputLhs) + expectedDeltaI := pc.qeAPI.MulExtension(swap, diff) + constraints = append(constraints, pc.qeAPI.SubExtension(expectedDeltaI, deltaI)) + } + + // Compute the possibly-swapped input layer. + state := make([]QuadraticExtension, poseidon.SPONGE_WIDTH) + for i := uint64(0); i < 4; i++ { + deltaI := vars.localWires[p.WireDelta(i)] + inputLhs := vars.localWires[p.WireInput(i)] + inputRhs := vars.localWires[p.WireInput(i+4)] + state[i] = pc.qeAPI.AddExtension(inputLhs, deltaI) + state[i+4] = pc.qeAPI.SubExtension(inputRhs, deltaI) + } + for i := uint64(8); i < poseidon.SPONGE_WIDTH; i++ { + state[i] = vars.localWires[p.WireInput(i)] + } + + round_ctr := 0 + + // First set of full rounds. + for r := uint64(0); r < poseidon.HALF_N_FULL_ROUNDS; r++ { + // TODO: constantLayerField(state, round_ctr) + if r != 0 { + for i := uint64(0); i < poseidon.SPONGE_WIDTH; i++ { + sBoxIn := vars.localWires[p.WireFullSBox0(r, i)] + constraints = append(constraints, pc.qeAPI.SubExtension(state[i], sBoxIn)) + state[i] = sBoxIn + } + } + // TODO: sboxLayerField(state) + // TODO: state = mdsLayerField(state) + round_ctr++ + } + + // Partial rounds. + // TODO: partialFirstConstantLayer(state) + // TODO: state = mdsParitalLayerInit(state) + for r := uint64(0); r < poseidon.N_PARTIAL_ROUNDS-1; r++ { + sBoxIn := vars.localWires[p.WirePartialSBox(r)] + constraints = append(constraints, pc.qeAPI.SubExtension(state[0], sBoxIn)) + // TODO: state[0] = sBoxMonomial(sBoxIn) + // TODO: state[0] += NewFieldElement(FAST_PARTIAL_ROUND_CONSTANTS[r]) + // TODO: state = mdsParitalLayerFastField(state, r) + } + sBoxIn := vars.localWires[p.WirePartialSBox(poseidon.N_PARTIAL_ROUNDS-1)] + constraints = append(constraints, pc.qeAPI.SubExtension(state[0], sBoxIn)) + // TODO: state[0] = sBoxMonomial(sBoxIn) + // TODO: state = mdsPartialLayerLastField(state, poseidon.N_PARTIAL_ROUNDS - 1) + round_ctr += poseidon.N_PARTIAL_ROUNDS + + // Second set of full rounds. + for r := uint64(0); r < poseidon.HALF_N_FULL_ROUNDS; r++ { + // TODO: constantLayerField(state, round_ctr) + for i := uint64(0); i < poseidon.SPONGE_WIDTH; i++ { + sBoxIn := vars.localWires[p.WireFullSBox1(r, i)] + constraints = append(constraints, pc.qeAPI.SubExtension(state[i], sBoxIn)) + state[i] = sBoxIn + } + // TODO: sboxLayerField(state) + // TODO: state = mdsLayerField(state) + round_ctr++ + } + + for i := uint64(0); i < poseidon.SPONGE_WIDTH; i++ { + constraints = append(constraints, pc.qeAPI.SubExtension(state[i], vars.localWires[p.WireOutput(i)])) + } + + return constraints +} diff --git a/plonky2_verifier/public_input_gate.go b/plonky2_verifier/public_input_gate.go new file mode 100644 index 0000000..1804560 --- /dev/null +++ b/plonky2_verifier/public_input_gate.go @@ -0,0 +1,28 @@ +package plonky2_verifier + +import ( + . "gnark-plonky2-verifier/field" +) + +type PublicInputGate struct { +} + +func (g *PublicInputGate) WiresPublicInputsHash() []uint64 { + return []uint64{0, 1, 2, 3} +} + +func (p *PublicInputGate) EvalUnfiltered(pc *PlonkChip, vars EvaluationVars) []QuadraticExtension { + constraints := []QuadraticExtension{} + + wires := p.WiresPublicInputsHash() + hash_parts := vars.publicInputsHash + for i := 0; i < 4; i++ { + wire := wires[i] + hash_part := hash_parts[i] + + diff := pc.qeAPI.SubExtension(vars.localWires[wire], pc.qeAPI.FieldToQE(hash_part)) + constraints = append(constraints, diff) + } + + return constraints +} From f1dc02d30f5a262cc383d80895d80d4aa4105ab6 Mon Sep 17 00:00:00 2001 From: Nicholas Ward Date: Thu, 6 Apr 2023 11:15:07 -0700 Subject: [PATCH 08/21] Poseidon extension function versions, and finished PoseidonGate --- benchmark.go | 2 +- plonky2_verifier/challenger_test.go | 28 +-- plonky2_verifier/fri_test.go | 2 +- plonky2_verifier/plonk_test.go | 8 +- plonky2_verifier/poseidon_gate.go | 30 +-- plonky2_verifier/quadratic_extension.go | 164 -------------- plonky2_verifier/quadratic_extension_test.go | 16 +- poseidon/poseidon.go | 227 ++++++++++++++----- poseidon/public_inputs_hash_test.go | 10 +- 9 files changed, 219 insertions(+), 268 deletions(-) delete mode 100644 plonky2_verifier/quadratic_extension.go diff --git a/benchmark.go b/benchmark.go index d4e92bd..be6c137 100644 --- a/benchmark.go +++ b/benchmark.go @@ -28,7 +28,7 @@ func (circuit *BenchmarkPlonky2VerifierCircuit) Define(api frontend.API) error { fieldAPI := NewFieldAPI(api) qeAPI := NewQuadraticExtensionAPI(fieldAPI, commonCircuitData.DegreeBits) hashAPI := NewHashAPI(fieldAPI) - poseidonChip := poseidon.NewPoseidonChip(api, fieldAPI) + poseidonChip := poseidon.NewPoseidonChip(api, fieldAPI, qeAPI) friChip := NewFriChip(api, fieldAPI, qeAPI, hashAPI, poseidonChip, &commonCircuitData.FriParams) plonkChip := NewPlonkChip(api, qeAPI, commonCircuitData) circuit.verifierChip = NewVerifierChip(api, fieldAPI, qeAPI, poseidonChip, plonkChip, friChip) diff --git a/plonky2_verifier/challenger_test.go b/plonky2_verifier/challenger_test.go index 20a86b0..f6914af 100644 --- a/plonky2_verifier/challenger_test.go +++ b/plonky2_verifier/challenger_test.go @@ -20,38 +20,40 @@ type TestChallengerCircuit struct { } func (circuit *TestChallengerCircuit) Define(api frontend.API) error { - field := field.NewFieldAPI(api) - poseidonChip := NewPoseidonChip(api, field) - challengerChip := NewChallengerChip(api, field, poseidonChip) + fieldAPI := field.NewFieldAPI(api) + degreeBits := 3 + qeAPI := NewQuadraticExtensionAPI(fieldAPI, uint64(degreeBits)) + poseidonChip := NewPoseidonChip(api, fieldAPI, qeAPI) + challengerChip := NewChallengerChip(api, fieldAPI, poseidonChip) var circuitDigest [4]F for i := 0; i < len(circuitDigest); i++ { - circuitDigest[i] = field.FromBinary(api.ToBinary(circuit.CircuitDigest[i], 64)).(F) + circuitDigest[i] = fieldAPI.FromBinary(api.ToBinary(circuit.CircuitDigest[i], 64)).(F) } var publicInputs [3]F for i := 0; i < len(publicInputs); i++ { - publicInputs[i] = field.FromBinary(api.ToBinary(circuit.PublicInputs[i], 64)).(F) + publicInputs[i] = fieldAPI.FromBinary(api.ToBinary(circuit.PublicInputs[i], 64)).(F) } var wiresCap [16][4]F for i := 0; i < len(wiresCap); i++ { for j := 0; j < len(wiresCap[0]); j++ { - wiresCap[i][j] = field.FromBinary(api.ToBinary(circuit.WiresCap[i][j], 64)).(F) + wiresCap[i][j] = fieldAPI.FromBinary(api.ToBinary(circuit.WiresCap[i][j], 64)).(F) } } var plonkZsPartialProductsCap [16][4]F for i := 0; i < len(plonkZsPartialProductsCap); i++ { for j := 0; j < len(plonkZsPartialProductsCap[0]); j++ { - plonkZsPartialProductsCap[i][j] = field.FromBinary(api.ToBinary(circuit.PlonkZsPartialProductsCap[i][j], 64)).(F) + plonkZsPartialProductsCap[i][j] = fieldAPI.FromBinary(api.ToBinary(circuit.PlonkZsPartialProductsCap[i][j], 64)).(F) } } var quotientPolysCap [16][4]F for i := 0; i < len(quotientPolysCap); i++ { for j := 0; j < len(quotientPolysCap[0]); j++ { - quotientPolysCap[i][j] = field.FromBinary(api.ToBinary(circuit.QuotientPolysCap[i][j], 64)).(F) + quotientPolysCap[i][j] = fieldAPI.FromBinary(api.ToBinary(circuit.QuotientPolysCap[i][j], 64)).(F) } } @@ -72,7 +74,7 @@ func (circuit *TestChallengerCircuit) Define(api frontend.API) error { } for i := 0; i < 4; i++ { - field.AssertIsEqual(publicInputHash[i], expectedPublicInputHash[i]) + fieldAPI.AssertIsEqual(publicInputHash[i], expectedPublicInputHash[i]) } expectedPlonkBetas := [2]F{ @@ -86,8 +88,8 @@ func (circuit *TestChallengerCircuit) Define(api frontend.API) error { } for i := 0; i < 2; i++ { - field.AssertIsEqual(plonkBetas[i], expectedPlonkBetas[i]) - field.AssertIsEqual(plonkGammas[i], expectedPlonkGammas[i]) + fieldAPI.AssertIsEqual(plonkBetas[i], expectedPlonkBetas[i]) + fieldAPI.AssertIsEqual(plonkGammas[i], expectedPlonkGammas[i]) } challengerChip.ObserveCap(plonkZsPartialProductsCap[:]) @@ -99,7 +101,7 @@ func (circuit *TestChallengerCircuit) Define(api frontend.API) error { } for i := 0; i < 2; i++ { - field.AssertIsEqual(plonkAlphas[i], expectedPlonkAlphas[i]) + fieldAPI.AssertIsEqual(plonkAlphas[i], expectedPlonkAlphas[i]) } challengerChip.ObserveCap(quotientPolysCap[:]) @@ -111,7 +113,7 @@ func (circuit *TestChallengerCircuit) Define(api frontend.API) error { } for i := 0; i < 2; i++ { - field.AssertIsEqual(plonkZeta[i], expectedPlonkZeta[i]) + fieldAPI.AssertIsEqual(plonkZeta[i], expectedPlonkZeta[i]) } return nil diff --git a/plonky2_verifier/fri_test.go b/plonky2_verifier/fri_test.go index ef15043..0cf501d 100644 --- a/plonky2_verifier/fri_test.go +++ b/plonky2_verifier/fri_test.go @@ -29,7 +29,7 @@ func (circuit *TestFriCircuit) Define(api frontend.API) error { fieldAPI := NewFieldAPI(api) qeAPI := NewQuadraticExtensionAPI(fieldAPI, commonCircuitData.DegreeBits) hashAPI := NewHashAPI(fieldAPI) - poseidonChip := poseidon.NewPoseidonChip(api, fieldAPI) + poseidonChip := poseidon.NewPoseidonChip(api, fieldAPI, qeAPI) friChip := NewFriChip(api, fieldAPI, qeAPI, hashAPI, poseidonChip, &commonCircuitData.FriParams) friChallenges := FriChallenges{ diff --git a/plonky2_verifier/plonk_test.go b/plonky2_verifier/plonk_test.go index d710068..75348c1 100644 --- a/plonky2_verifier/plonk_test.go +++ b/plonky2_verifier/plonk_test.go @@ -23,8 +23,8 @@ func (circuit *TestPlonkCircuit) Define(api frontend.API) error { proofWithPis := DeserializeProofWithPublicInputs(circuit.proofWithPIsFilename) commonCircuitData := DeserializeCommonCircuitData(circuit.commonCircuitDataFilename) - field := NewFieldAPI(api) - qe := NewQuadraticExtensionAPI(field, commonCircuitData.DegreeBits) + fieldAPI := NewFieldAPI(api) + qeAPI := NewQuadraticExtensionAPI(fieldAPI, commonCircuitData.DegreeBits) proofChallenges := ProofChallenges{ PlonkBetas: circuit.plonkBetas, @@ -33,9 +33,9 @@ func (circuit *TestPlonkCircuit) Define(api frontend.API) error { PlonkZeta: circuit.plonkZeta, } - plonkChip := NewPlonkChip(api, qe, commonCircuitData) + plonkChip := NewPlonkChip(api, qeAPI, commonCircuitData) - poseidonChip := poseidon.NewPoseidonChip(api, field) + poseidonChip := poseidon.NewPoseidonChip(api, fieldAPI, qeAPI) publicInputsHash := poseidonChip.HashNoPad(proofWithPis.PublicInputs) plonkChip.Verify(proofChallenges, proofWithPis.Proof.Openings, publicInputsHash) diff --git a/plonky2_verifier/poseidon_gate.go b/plonky2_verifier/poseidon_gate.go index 3980fc9..4e68c0b 100644 --- a/plonky2_verifier/poseidon_gate.go +++ b/plonky2_verifier/poseidon_gate.go @@ -74,6 +74,8 @@ type PoseidonGate struct { func (p *PoseidonGate) EvalUnfiltered(pc *PlonkChip, vars EvaluationVars) []QuadraticExtension { constraints := []QuadraticExtension{} + poseidonChip := poseidon.NewPoseidonChip(pc.api, NewFieldAPI(pc.api), pc.qeAPI) + // Assert that `swap` is binary. swap := vars.localWires[p.WireSwap()] notSwap := pc.qeAPI.SubExtension(pc.qeAPI.FieldToQE(ONE_F), swap) @@ -90,7 +92,7 @@ func (p *PoseidonGate) EvalUnfiltered(pc *PlonkChip, vars EvaluationVars) []Quad } // Compute the possibly-swapped input layer. - state := make([]QuadraticExtension, poseidon.SPONGE_WIDTH) + var state [poseidon.SPONGE_WIDTH]QuadraticExtension for i := uint64(0); i < 4; i++ { deltaI := vars.localWires[p.WireDelta(i)] inputLhs := vars.localWires[p.WireInput(i)] @@ -106,7 +108,7 @@ func (p *PoseidonGate) EvalUnfiltered(pc *PlonkChip, vars EvaluationVars) []Quad // First set of full rounds. for r := uint64(0); r < poseidon.HALF_N_FULL_ROUNDS; r++ { - // TODO: constantLayerField(state, round_ctr) + state = poseidonChip.ConstantLayerExtension(state, &round_ctr) if r != 0 { for i := uint64(0); i < poseidon.SPONGE_WIDTH; i++ { sBoxIn := vars.localWires[p.WireFullSBox0(r, i)] @@ -114,37 +116,37 @@ func (p *PoseidonGate) EvalUnfiltered(pc *PlonkChip, vars EvaluationVars) []Quad state[i] = sBoxIn } } - // TODO: sboxLayerField(state) - // TODO: state = mdsLayerField(state) + state = poseidonChip.SBoxLayerExtension(state) + state = poseidonChip.MdsLayerExtension(state) round_ctr++ } // Partial rounds. - // TODO: partialFirstConstantLayer(state) - // TODO: state = mdsParitalLayerInit(state) + state = poseidonChip.PartialFirstConstantLayerExtension(state) + state = poseidonChip.MdsPartialLayerInitExtension(state) for r := uint64(0); r < poseidon.N_PARTIAL_ROUNDS-1; r++ { sBoxIn := vars.localWires[p.WirePartialSBox(r)] constraints = append(constraints, pc.qeAPI.SubExtension(state[0], sBoxIn)) - // TODO: state[0] = sBoxMonomial(sBoxIn) - // TODO: state[0] += NewFieldElement(FAST_PARTIAL_ROUND_CONSTANTS[r]) - // TODO: state = mdsParitalLayerFastField(state, r) + state[0] = poseidonChip.SBoxMonomialExtension(sBoxIn) + state[0] = pc.qeAPI.AddExtension(state[0], pc.qeAPI.FieldToQE(NewFieldElement(poseidon.FAST_PARTIAL_ROUND_CONSTANTS[r]))) + state = poseidonChip.MdsPartialLayerFastExtension(state, int(r)) } sBoxIn := vars.localWires[p.WirePartialSBox(poseidon.N_PARTIAL_ROUNDS-1)] constraints = append(constraints, pc.qeAPI.SubExtension(state[0], sBoxIn)) - // TODO: state[0] = sBoxMonomial(sBoxIn) - // TODO: state = mdsPartialLayerLastField(state, poseidon.N_PARTIAL_ROUNDS - 1) + state[0] = poseidonChip.SBoxMonomialExtension(sBoxIn) + state = poseidonChip.MdsPartialLayerFastExtension(state, poseidon.N_PARTIAL_ROUNDS-1) round_ctr += poseidon.N_PARTIAL_ROUNDS // Second set of full rounds. for r := uint64(0); r < poseidon.HALF_N_FULL_ROUNDS; r++ { - // TODO: constantLayerField(state, round_ctr) + poseidonChip.ConstantLayerExtension(state, &round_ctr) for i := uint64(0); i < poseidon.SPONGE_WIDTH; i++ { sBoxIn := vars.localWires[p.WireFullSBox1(r, i)] constraints = append(constraints, pc.qeAPI.SubExtension(state[i], sBoxIn)) state[i] = sBoxIn } - // TODO: sboxLayerField(state) - // TODO: state = mdsLayerField(state) + state = poseidonChip.MdsLayerExtension(state) + state = poseidonChip.SBoxLayerExtension(state) round_ctr++ } diff --git a/plonky2_verifier/quadratic_extension.go b/plonky2_verifier/quadratic_extension.go deleted file mode 100644 index 80fdc1c..0000000 --- a/plonky2_verifier/quadratic_extension.go +++ /dev/null @@ -1,164 +0,0 @@ -package plonky2_verifier - -import ( - "fmt" - . "gnark-plonky2-verifier/field" - "math/bits" - - "github.com/consensys/gnark/frontend" -) - -type QuadraticExtensionAPI struct { - fieldAPI frontend.API - - W F - DTH_ROOT F - - ONE_QE QuadraticExtension - ZERO_QE QuadraticExtension -} - -func NewQuadraticExtensionAPI(fieldAPI frontend.API, degreeBits uint64) *QuadraticExtensionAPI { - // TODO: Should degreeBits be verified that it fits within the field and that degree is within uint64? - - return &QuadraticExtensionAPI{ - fieldAPI: fieldAPI, - - W: NewFieldElement(7), - DTH_ROOT: NewFieldElement(18446744069414584320), - - ONE_QE: QuadraticExtension{ONE_F, ZERO_F}, - ZERO_QE: QuadraticExtension{ZERO_F, ZERO_F}, - } -} - -func (c *QuadraticExtensionAPI) SquareExtension(a QuadraticExtension) QuadraticExtension { - return c.MulExtension(a, a) -} - -func (c *QuadraticExtensionAPI) MulExtension(a QuadraticExtension, b QuadraticExtension) QuadraticExtension { - c_0 := c.fieldAPI.Add(c.fieldAPI.Mul(a[0], b[0]).(F), c.fieldAPI.Mul(c.W, a[1], b[1])).(F) - c_1 := c.fieldAPI.Add(c.fieldAPI.Mul(a[0], b[1]).(F), c.fieldAPI.Mul(a[1], b[0])).(F) - return QuadraticExtension{c_0, c_1} -} - -func (c *QuadraticExtensionAPI) AddExtension(a QuadraticExtension, b QuadraticExtension) QuadraticExtension { - c_0 := c.fieldAPI.Add(a[0], b[0]).(F) - c_1 := c.fieldAPI.Add(a[1], b[1]).(F) - return QuadraticExtension{c_0, c_1} -} - -func (c *QuadraticExtensionAPI) SubExtension(a QuadraticExtension, b QuadraticExtension) QuadraticExtension { - c_0 := c.fieldAPI.Sub(a[0], b[0]).(F) - c_1 := c.fieldAPI.Sub(a[1], b[1]).(F) - return QuadraticExtension{c_0, c_1} -} - -func (c *QuadraticExtensionAPI) DivExtension(a QuadraticExtension, b QuadraticExtension) QuadraticExtension { - return c.MulExtension(a, c.InverseExtension(b)) -} - -func (c *QuadraticExtensionAPI) IsZero(a QuadraticExtension) frontend.Variable { - return c.fieldAPI.Mul(c.fieldAPI.IsZero(a[0]), c.fieldAPI.IsZero(a[1])) -} - -// TODO: Instead of calculating the inverse within the circuit, can witness the -// inverse and assert that a_inverse * a = 1. Should reduce # of constraints. -func (c *QuadraticExtensionAPI) InverseExtension(a QuadraticExtension) QuadraticExtension { - // First assert that a doesn't have 0 value coefficients - a0_is_zero := c.fieldAPI.IsZero(a[0]) - a1_is_zero := c.fieldAPI.IsZero(a[1]) - - // assert that a0_is_zero OR a1_is_zero == false - c.fieldAPI.AssertIsEqual(c.fieldAPI.Mul(a0_is_zero, a1_is_zero).(F), ZERO_F) - - a_pow_r_minus_1 := QuadraticExtension{a[0], c.fieldAPI.Mul(a[1], c.DTH_ROOT).(F)} - a_pow_r := c.MulExtension(a_pow_r_minus_1, a) - return c.ScalarMulExtension(a_pow_r_minus_1, c.fieldAPI.Inverse(a_pow_r[0]).(F)) -} - -func (c *QuadraticExtensionAPI) ScalarMulExtension(a QuadraticExtension, scalar F) QuadraticExtension { - return QuadraticExtension{c.fieldAPI.Mul(a[0], scalar).(F), c.fieldAPI.Mul(a[1], scalar).(F)} -} - -func (c *QuadraticExtensionAPI) FieldToQE(a F) QuadraticExtension { - return QuadraticExtension{a, ZERO_F} -} - -// / Exponentiate `base` to the power of a known `exponent`. -func (c *QuadraticExtensionAPI) ExpU64Extension(a QuadraticExtension, exponent uint64) QuadraticExtension { - switch exponent { - case 0: - return c.ONE_QE - case 1: - return a - case 2: - return c.SquareExtension(a) - default: - } - - current := a - product := c.ONE_QE - - for i := 0; i < bits.Len64(exponent); i++ { - if i != 0 { - current = c.SquareExtension(current) - } - - if (exponent >> i & 1) != 0 { - product = c.MulExtension(product, current) - } - } - - return product -} - -func (c *QuadraticExtensionAPI) ReduceWithPowers(terms []QuadraticExtension, scalar QuadraticExtension) QuadraticExtension { - sum := c.ZERO_QE - - for i := len(terms) - 1; i >= 0; i-- { - sum = c.AddExtension( - c.MulExtension( - sum, - scalar, - ), - terms[i], - ) - } - - return sum -} - -func (c *QuadraticExtensionAPI) Select(b0 frontend.Variable, qe0, qe1 QuadraticExtension) QuadraticExtension { - var retQE QuadraticExtension - - for i := 0; i < 2; i++ { - retQE[i] = c.fieldAPI.Select(b0, qe0[i], qe1[i]).(F) - } - - return retQE -} - -func (c *QuadraticExtensionAPI) Lookup2(b0 frontend.Variable, b1 frontend.Variable, qe0, qe1, qe2, qe3 QuadraticExtension) QuadraticExtension { - var retQE QuadraticExtension - - for i := 0; i < 2; i++ { - retQE[i] = c.fieldAPI.Lookup2(b0, b1, qe0[i], qe1[i], qe2[i], qe3[i]).(F) - } - - return retQE -} - -func (c *QuadraticExtensionAPI) AssertIsEqual(a, b QuadraticExtension) { - for i := 0; i < 2; i++ { - c.fieldAPI.AssertIsEqual(a[0], b[0]) - } -} - -func (c *QuadraticExtensionAPI) Println(a QuadraticExtension) { - fmt.Print("Degree 0 coefficient") - c.fieldAPI.Println(a[0]) - - fmt.Print("Degree 1 coefficient") - c.fieldAPI.Println(a[1]) -} diff --git a/plonky2_verifier/quadratic_extension_test.go b/plonky2_verifier/quadratic_extension_test.go index ca047e6..5b61913 100644 --- a/plonky2_verifier/quadratic_extension_test.go +++ b/plonky2_verifier/quadratic_extension_test.go @@ -21,14 +21,14 @@ type TestQuadraticExtensionMulCircuit struct { } func (c *TestQuadraticExtensionMulCircuit) Define(api frontend.API) error { - field := field.NewFieldAPI(api) + fieldAPI := field.NewFieldAPI(api) degreeBits := 3 - c.qeAPI = NewQuadraticExtensionAPI(field, uint64(degreeBits)) + c.qeAPI = NewQuadraticExtensionAPI(fieldAPI, uint64(degreeBits)) actualRes := c.qeAPI.MulExtension(c.operand1, c.operand2) - field.AssertIsEqual(actualRes[0], c.expectedResult[0]) - field.AssertIsEqual(actualRes[1], c.expectedResult[1]) + fieldAPI.AssertIsEqual(actualRes[0], c.expectedResult[0]) + fieldAPI.AssertIsEqual(actualRes[1], c.expectedResult[1]) return nil } @@ -55,14 +55,14 @@ type TestQuadraticExtensionDivCircuit struct { } func (c *TestQuadraticExtensionDivCircuit) Define(api frontend.API) error { - field := field.NewFieldAPI(api) + fieldAPI := field.NewFieldAPI(api) degreeBits := 3 - c.qeAPI = NewQuadraticExtensionAPI(field, uint64(degreeBits)) + c.qeAPI = NewQuadraticExtensionAPI(fieldAPI, uint64(degreeBits)) actualRes := c.qeAPI.DivExtension(c.operand1, c.operand2) - field.AssertIsEqual(actualRes[0], c.expectedResult[0]) - field.AssertIsEqual(actualRes[1], c.expectedResult[1]) + fieldAPI.AssertIsEqual(actualRes[0], c.expectedResult[0]) + fieldAPI.AssertIsEqual(actualRes[1], c.expectedResult[1]) return nil } diff --git a/poseidon/poseidon.go b/poseidon/poseidon.go index 76a83cd..d28e625 100644 --- a/poseidon/poseidon.go +++ b/poseidon/poseidon.go @@ -11,33 +11,35 @@ const N_FULL_ROUNDS_TOTAL = 2 * HALF_N_FULL_ROUNDS const N_PARTIAL_ROUNDS = 22 const N_ROUNDS = N_FULL_ROUNDS_TOTAL + N_PARTIAL_ROUNDS const MAX_WIDTH = 12 -const WIDTH = 12 const SPONGE_WIDTH = 12 const SPONGE_RATE = 8 -type PoseidonState = [WIDTH]F +type PoseidonState = [SPONGE_WIDTH]F +type PoseidonStateExtension = [SPONGE_WIDTH]QuadraticExtension + type PoseidonChip struct { - api frontend.API `gnark:"-"` - field frontend.API `gnark:"-"` + api frontend.API `gnark:"-"` + fieldAPI frontend.API `gnark:"-"` + qeAPI *QuadraticExtensionAPI `gnark:"-"` } -func NewPoseidonChip(api frontend.API, field frontend.API) *PoseidonChip { - return &PoseidonChip{api: api, field: field} +func NewPoseidonChip(api frontend.API, field frontend.API, qeAPI *QuadraticExtensionAPI) *PoseidonChip { + return &PoseidonChip{api: api, fieldAPI: field} } func (c *PoseidonChip) Poseidon(input PoseidonState) PoseidonState { state := input roundCounter := 0 - state = c.fullRounds(state, &roundCounter) - state = c.partialRounds(state, &roundCounter) - state = c.fullRounds(state, &roundCounter) + state = c.FullRounds(state, &roundCounter) + state = c.PartialRounds(state, &roundCounter) + state = c.FullRounds(state, &roundCounter) return state } func (c *PoseidonChip) HashNToMNoPad(input []F, nbOutputs int) []F { var state PoseidonState - for i := 0; i < WIDTH; i++ { + for i := 0; i < SPONGE_WIDTH; i++ { state[i] = ZERO_F } @@ -69,24 +71,24 @@ func (c *PoseidonChip) HashNoPad(input []F) Hash { return hash } -func (c *PoseidonChip) fullRounds(state PoseidonState, roundCounter *int) PoseidonState { +func (c *PoseidonChip) FullRounds(state PoseidonState, roundCounter *int) PoseidonState { for i := 0; i < HALF_N_FULL_ROUNDS; i++ { - state = c.constantLayer(state, roundCounter) - state = c.sBoxLayer(state) - state = c.mdsLayer(state) + state = c.ConstantLayer(state, roundCounter) + state = c.SBoxLayer(state) + state = c.MdsLayer(state) *roundCounter += 1 } return state } -func (c *PoseidonChip) partialRounds(state PoseidonState, roundCounter *int) PoseidonState { - state = c.partialFirstConstantLayer(state) - state = c.mdsPartialLayerInit(state) +func (c *PoseidonChip) PartialRounds(state PoseidonState, roundCounter *int) PoseidonState { + state = c.PartialFirstConstantLayer(state) + state = c.MdsPartialLayerInit(state) for i := 0; i < N_PARTIAL_ROUNDS; i++ { - state[0] = c.sBoxMonomial(state[0]) - state[0] = c.field.Add(state[0], FAST_PARTIAL_ROUND_CONSTANTS[i]).(F) - state = c.mdsPartialLayerFast(state, i) + state[0] = c.SBoxMonomial(state[0]) + state[0] = c.fieldAPI.Add(state[0], FAST_PARTIAL_ROUND_CONSTANTS[i]).(F) + state = c.MdsPartialLayerFast(state, i) } *roundCounter += N_PARTIAL_ROUNDS @@ -94,38 +96,64 @@ func (c *PoseidonChip) partialRounds(state PoseidonState, roundCounter *int) Pos return state } -func (c *PoseidonChip) constantLayer(state PoseidonState, roundCounter *int) PoseidonState { +func (c *PoseidonChip) ConstantLayer(state PoseidonState, roundCounter *int) PoseidonState { + for i := 0; i < 12; i++ { + if i < SPONGE_WIDTH { + roundConstant := NewFieldElement(ALL_ROUND_CONSTANTS[i+SPONGE_WIDTH*(*roundCounter)]) + state[i] = c.fieldAPI.Add(state[i], roundConstant).(F) + } + } + return state +} + +func (c *PoseidonChip) ConstantLayerExtension(state PoseidonStateExtension, roundCounter *int) PoseidonStateExtension { for i := 0; i < 12; i++ { - if i < WIDTH { - roundConstant := NewFieldElement(ALL_ROUND_CONSTANTS[i+WIDTH*(*roundCounter)]) - state[i] = c.field.Add(state[i], roundConstant).(F) + if i < SPONGE_WIDTH { + roundConstant := c.qeAPI.FieldToQE(NewFieldElement(ALL_ROUND_CONSTANTS[i+SPONGE_WIDTH*(*roundCounter)])) + state[i] = c.qeAPI.AddExtension(state[i], roundConstant) } } return state } -func (c *PoseidonChip) sBoxLayer(state PoseidonState) PoseidonState { +func (c *PoseidonChip) SBoxMonomial(x F) F { + x2 := c.fieldAPI.Mul(x, x) + x4 := c.fieldAPI.Mul(x2, x2) + x3 := c.fieldAPI.Mul(x2, x) + return c.fieldAPI.Mul(x3, x4).(F) +} + +func (c *PoseidonChip) SBoxMonomialExtension(x QuadraticExtension) QuadraticExtension { + x2 := c.qeAPI.MulExtension(x, x) + x4 := c.qeAPI.MulExtension(x2, x2) + x3 := c.qeAPI.MulExtension(x2, x) + return c.qeAPI.MulExtension(x3, x4) +} + +func (c *PoseidonChip) SBoxLayer(state PoseidonState) PoseidonState { for i := 0; i < 12; i++ { - if i < WIDTH { - state[i] = c.sBoxMonomial(state[i]) + if i < SPONGE_WIDTH { + state[i] = c.SBoxMonomial(state[i]) } } return state } -func (c *PoseidonChip) sBoxMonomial(x F) F { - x2 := c.field.Mul(x, x) - x4 := c.field.Mul(x2, x2) - x3 := c.field.Mul(x2, x) - return c.field.Mul(x3, x4).(F) +func (c *PoseidonChip) SBoxLayerExtension(state PoseidonStateExtension) PoseidonStateExtension { + for i := 0; i < 12; i++ { + if i < SPONGE_WIDTH { + state[i] = c.SBoxMonomialExtension(state[i]) + } + } + return state } -func (c *PoseidonChip) mdsRowShf(r int, v [WIDTH]frontend.Variable) frontend.Variable { +func (c *PoseidonChip) MdsRowShf(r int, v [SPONGE_WIDTH]frontend.Variable) frontend.Variable { res := frontend.Variable(0) for i := 0; i < 12; i++ { - if i < WIDTH { - res1 := c.api.Mul(v[(i+r)%WIDTH], frontend.Variable(MDS_MATRIX_CIRC[i])) + if i < SPONGE_WIDTH { + res1 := c.api.Mul(v[(i+r)%SPONGE_WIDTH], frontend.Variable(MDS_MATRIX_CIRC[i])) res = c.api.Add(res, res1) } } @@ -134,38 +162,76 @@ func (c *PoseidonChip) mdsRowShf(r int, v [WIDTH]frontend.Variable) frontend.Var return res } -func (c *PoseidonChip) mdsLayer(state_ PoseidonState) PoseidonState { +func (c *PoseidonChip) MdsRowShfExtension(r int, v [SPONGE_WIDTH]QuadraticExtension) QuadraticExtension { + res := c.qeAPI.FieldToQE(NewFieldElement(0)) + + for i := 0; i < 12; i++ { + if i < SPONGE_WIDTH { + matrixVal := c.qeAPI.FieldToQE(NewFieldElement(MDS_MATRIX_CIRC[i])) + res1 := c.qeAPI.MulExtension(v[(i+r)%SPONGE_WIDTH], matrixVal) + res = c.qeAPI.AddExtension(res, res1) + } + } + + matrixVal := c.qeAPI.FieldToQE(NewFieldElement(MDS_MATRIX_DIAG[r])) + res = c.qeAPI.AddExtension(res, c.qeAPI.MulExtension(v[r], matrixVal)) + return res +} + +func (c *PoseidonChip) MdsLayer(state_ PoseidonState) PoseidonState { var result PoseidonState - for i := 0; i < WIDTH; i++ { + for i := 0; i < SPONGE_WIDTH; i++ { result[i] = NewFieldElement(0) } - var state [WIDTH]frontend.Variable - for i := 0; i < WIDTH; i++ { - state[i] = c.api.FromBinary(c.field.ToBinary(state_[i])...) + var state [SPONGE_WIDTH]frontend.Variable + for i := 0; i < SPONGE_WIDTH; i++ { + state[i] = c.api.FromBinary(c.fieldAPI.ToBinary(state_[i])...) } for r := 0; r < 12; r++ { - if r < WIDTH { - sum := c.mdsRowShf(r, state) + if r < SPONGE_WIDTH { + sum := c.MdsRowShf(r, state) bits := c.api.ToBinary(sum) - result[r] = c.field.FromBinary(bits).(F) + result[r] = c.fieldAPI.FromBinary(bits).(F) + } + } + + return result +} + +func (c *PoseidonChip) MdsLayerExtension(state_ PoseidonStateExtension) PoseidonStateExtension { + var result PoseidonStateExtension + + for r := 0; r < 12; r++ { + if r < SPONGE_WIDTH { + sum := c.MdsRowShfExtension(r, state_) + result[r] = sum } } return result } -func (c *PoseidonChip) partialFirstConstantLayer(state PoseidonState) PoseidonState { +func (c *PoseidonChip) PartialFirstConstantLayer(state PoseidonState) PoseidonState { for i := 0; i < 12; i++ { - if i < WIDTH { - state[i] = c.field.Add(state[i], NewFieldElement(FAST_PARTIAL_FIRST_ROUND_CONSTANT[i])).(F) + if i < SPONGE_WIDTH { + state[i] = c.fieldAPI.Add(state[i], NewFieldElement(FAST_PARTIAL_FIRST_ROUND_CONSTANT[i])).(F) } } return state } -func (c *PoseidonChip) mdsPartialLayerInit(state PoseidonState) PoseidonState { +func (c *PoseidonChip) PartialFirstConstantLayerExtension(state PoseidonStateExtension) PoseidonStateExtension { + for i := 0; i < 12; i++ { + if i < SPONGE_WIDTH { + state[i] = c.qeAPI.AddExtension(state[i], c.qeAPI.FieldToQE(NewFieldElement(FAST_PARTIAL_FIRST_ROUND_CONSTANT[i]))) + } + } + return state +} + +func (c *PoseidonChip) MdsPartialLayerInit(state PoseidonState) PoseidonState { var result PoseidonState for i := 0; i < 12; i++ { result[i] = NewFieldElement(0) @@ -174,11 +240,11 @@ func (c *PoseidonChip) mdsPartialLayerInit(state PoseidonState) PoseidonState { result[0] = state[0] for r := 1; r < 12; r++ { - if r < WIDTH { + if r < SPONGE_WIDTH { for d := 1; d < 12; d++ { - if d < WIDTH { + if d < SPONGE_WIDTH { t := NewFieldElement(FAST_PARTIAL_ROUND_INITIAL_MATRIX[r-1][d-1]) - result[d] = c.field.Add(result[d], c.field.Mul(state[r], t)).(F) + result[d] = c.fieldAPI.Add(result[d], c.fieldAPI.Mul(state[r], t)).(F) } } } @@ -187,32 +253,77 @@ func (c *PoseidonChip) mdsPartialLayerInit(state PoseidonState) PoseidonState { return result } -func (c *PoseidonChip) mdsPartialLayerFast(state PoseidonState, r int) PoseidonState { +func (c *PoseidonChip) MdsPartialLayerInitExtension(state PoseidonStateExtension) PoseidonStateExtension { + var result PoseidonStateExtension + for i := 0; i < 12; i++ { + result[i] = c.qeAPI.FieldToQE(NewFieldElement(0)) + } + + result[0] = state[0] + + for r := 1; r < 12; r++ { + if r < SPONGE_WIDTH { + for d := 1; d < 12; d++ { + if d < SPONGE_WIDTH { + t := c.qeAPI.FieldToQE(NewFieldElement(FAST_PARTIAL_ROUND_INITIAL_MATRIX[r-1][d-1])) + result[d] = c.qeAPI.AddExtension(result[d], c.qeAPI.MulExtension(state[r], t)) + } + } + } + } + + return result +} + +func (c *PoseidonChip) MdsPartialLayerFast(state PoseidonState, r int) PoseidonState { dSum := frontend.Variable(0) for i := 1; i < 12; i++ { - if i < WIDTH { + if i < SPONGE_WIDTH { t := frontend.Variable(FAST_PARTIAL_ROUND_W_HATS[r][i-1]) - si := c.api.FromBinary(c.field.ToBinary(state[i])...) + si := c.api.FromBinary(c.fieldAPI.ToBinary(state[i])...) dSum = c.api.Add(dSum, c.api.Mul(si, t)) } } - s0 := c.api.FromBinary(c.field.ToBinary(state[0])...) + s0 := c.api.FromBinary(c.fieldAPI.ToBinary(state[0])...) mds0to0 := frontend.Variable(MDS_MATRIX_CIRC[0] + MDS_MATRIX_DIAG[0]) dSum = c.api.Add(dSum, c.api.Mul(s0, mds0to0)) - d := c.field.FromBinary(c.api.ToBinary(dSum)) + d := c.fieldAPI.FromBinary(c.api.ToBinary(dSum)) var result PoseidonState - for i := 0; i < WIDTH; i++ { + for i := 0; i < SPONGE_WIDTH; i++ { result[i] = NewFieldElement(0) } result[0] = d.(F) for i := 1; i < 12; i++ { - if i < WIDTH { + if i < SPONGE_WIDTH { t := NewFieldElement(FAST_PARTIAL_ROUND_VS[r][i-1]) - result[i] = c.field.Add(state[i], c.field.Mul(state[0], t)).(F) + result[i] = c.fieldAPI.Add(state[i], c.fieldAPI.Mul(state[0], t)).(F) + } + } + + return result +} + +func (c *PoseidonChip) MdsPartialLayerFastExtension(state PoseidonStateExtension, r int) PoseidonStateExtension { + s0 := state[0] + mds0to0 := c.qeAPI.FieldToQE(NewFieldElement(MDS_MATRIX_CIRC[0] + MDS_MATRIX_DIAG[0])) + d := c.qeAPI.AddExtension(s0, mds0to0) + for i := 1; i < 12; i++ { + if i < SPONGE_WIDTH { + t := c.qeAPI.FieldToQE(NewFieldElement(FAST_PARTIAL_ROUND_W_HATS[r][i-1])) + d = c.qeAPI.AddExtension(d, c.qeAPI.MulExtension(state[i], t)) + } + } + + var result PoseidonStateExtension + result[0] = d + for i := 1; i < 12; i++ { + if i < SPONGE_WIDTH { + t := c.qeAPI.FieldToQE(NewFieldElement(FAST_PARTIAL_ROUND_VS[r][i-1])) + result[i] = c.qeAPI.AddExtension(state[i], c.qeAPI.MulExtension(state[0], t)) } } diff --git a/poseidon/public_inputs_hash_test.go b/poseidon/public_inputs_hash_test.go index 7148464..d681ede 100644 --- a/poseidon/public_inputs_hash_test.go +++ b/poseidon/public_inputs_hash_test.go @@ -18,22 +18,22 @@ type TestPublicInputsHashCircuit struct { } func (circuit *TestPublicInputsHashCircuit) Define(api frontend.API) error { - field := NewFieldAPI(api) + fieldAPI := NewFieldAPI(api) // BN254 -> Binary(64) -> F var input [3]F for i := 0; i < 3; i++ { - input[i] = field.FromBinary(api.ToBinary(circuit.In[i], 64)).(F) + input[i] = fieldAPI.FromBinary(api.ToBinary(circuit.In[i], 64)).(F) } - poseidonChip := &PoseidonChip{api: api, field: field} + poseidonChip := &PoseidonChip{api: api, fieldAPI: fieldAPI} output := poseidonChip.HashNoPad(input[:]) // Check that output is correct for i := 0; i < 4; i++ { - field.AssertIsEqual( + fieldAPI.AssertIsEqual( output[i], - field.FromBinary(api.ToBinary(circuit.Out[i])).(F), + fieldAPI.FromBinary(api.ToBinary(circuit.Out[i])).(F), ) } From ad8e851fc6e9e7e07201237c3be71dea39aa7b74 Mon Sep 17 00:00:00 2001 From: Nicholas Ward Date: Thu, 6 Apr 2023 11:34:11 -0700 Subject: [PATCH 09/21] fixes --- plonky2_verifier/verifier_test.go | 4 ++-- poseidon/poseidon_test.go | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/plonky2_verifier/verifier_test.go b/plonky2_verifier/verifier_test.go index 90bc298..b2c114e 100644 --- a/plonky2_verifier/verifier_test.go +++ b/plonky2_verifier/verifier_test.go @@ -101,7 +101,7 @@ func (c *TestVerifierChallengesCircuit) Define(api frontend.API) error { c.fieldAPI = NewFieldAPI(api) c.qeAPI = NewQuadraticExtensionAPI(c.fieldAPI, commonCircuitData.DegreeBits) c.hashAPI = NewHashAPI(c.fieldAPI) - poseidonChip := NewPoseidonChip(api, c.fieldAPI) + poseidonChip := NewPoseidonChip(api, c.fieldAPI, c.qeAPI) c.verifierChip = &VerifierChip{api: api, fieldAPI: c.fieldAPI, qeAPI: c.qeAPI, poseidonChip: poseidonChip} c.GetChallengesSanityCheck(proofWithPis, verfierOnlyCircuitData, commonCircuitData) @@ -301,7 +301,7 @@ func (c *TestVerifierCircuit) Define(api frontend.API) error { fieldAPI := NewFieldAPI(api) qeAPI := NewQuadraticExtensionAPI(fieldAPI, commonCircuitData.DegreeBits) hashAPI := NewHashAPI(fieldAPI) - poseidonChip := NewPoseidonChip(api, fieldAPI) + poseidonChip := NewPoseidonChip(api, fieldAPI, qeAPI) plonkChip := NewPlonkChip(api, qeAPI, commonCircuitData) friChip := NewFriChip(api, fieldAPI, qeAPI, hashAPI, poseidonChip, &commonCircuitData.FriParams) verifierChip := VerifierChip{ diff --git a/poseidon/poseidon_test.go b/poseidon/poseidon_test.go index 3e41150..4ae612f 100644 --- a/poseidon/poseidon_test.go +++ b/poseidon/poseidon_test.go @@ -19,13 +19,14 @@ type TestPoseidonCircuit struct { func (circuit *TestPoseidonCircuit) Define(api frontend.API) error { goldilocksApi := field.NewFieldAPI(api) + qeAPI := NewQuadraticExtensionAPI(goldilocksApi, 3) var input PoseidonState for i := 0; i < 12; i++ { input[i] = goldilocksApi.FromBinary(api.ToBinary(circuit.In[i], 64)).(F) } - poseidonChip := NewPoseidonChip(api, goldilocksApi) + poseidonChip := NewPoseidonChip(api, goldilocksApi, qeAPI) output := poseidonChip.Poseidon(input) for i := 0; i < 12; i++ { From f96647afd697f055ea346ab0299e9994f03ffec2 Mon Sep 17 00:00:00 2001 From: Nicholas Ward Date: Thu, 6 Apr 2023 12:00:35 -0700 Subject: [PATCH 10/21] moving QuadraticExtension to field --- field/quadratic_extension.go | 163 +++++++++++++++++++++++++++++++++++ 1 file changed, 163 insertions(+) create mode 100644 field/quadratic_extension.go diff --git a/field/quadratic_extension.go b/field/quadratic_extension.go new file mode 100644 index 0000000..46668e0 --- /dev/null +++ b/field/quadratic_extension.go @@ -0,0 +1,163 @@ +package field + +import ( + "fmt" + "math/bits" + + "github.com/consensys/gnark/frontend" +) + +type QuadraticExtensionAPI struct { + fieldAPI frontend.API + + W F + DTH_ROOT F + + ONE_QE QuadraticExtension + ZERO_QE QuadraticExtension +} + +func NewQuadraticExtensionAPI(fieldAPI frontend.API, degreeBits uint64) *QuadraticExtensionAPI { + // TODO: Should degreeBits be verified that it fits within the field and that degree is within uint64? + + return &QuadraticExtensionAPI{ + fieldAPI: fieldAPI, + + W: NewFieldElement(7), + DTH_ROOT: NewFieldElement(18446744069414584320), + + ONE_QE: QuadraticExtension{ONE_F, ZERO_F}, + ZERO_QE: QuadraticExtension{ZERO_F, ZERO_F}, + } +} + +func (c *QuadraticExtensionAPI) SquareExtension(a QuadraticExtension) QuadraticExtension { + return c.MulExtension(a, a) +} + +func (c *QuadraticExtensionAPI) MulExtension(a QuadraticExtension, b QuadraticExtension) QuadraticExtension { + c_0 := c.fieldAPI.Add(c.fieldAPI.Mul(a[0], b[0]).(F), c.fieldAPI.Mul(c.W, a[1], b[1])).(F) + c_1 := c.fieldAPI.Add(c.fieldAPI.Mul(a[0], b[1]).(F), c.fieldAPI.Mul(a[1], b[0])).(F) + return QuadraticExtension{c_0, c_1} +} + +func (c *QuadraticExtensionAPI) AddExtension(a QuadraticExtension, b QuadraticExtension) QuadraticExtension { + c_0 := c.fieldAPI.Add(a[0], b[0]).(F) + c_1 := c.fieldAPI.Add(a[1], b[1]).(F) + return QuadraticExtension{c_0, c_1} +} + +func (c *QuadraticExtensionAPI) SubExtension(a QuadraticExtension, b QuadraticExtension) QuadraticExtension { + c_0 := c.fieldAPI.Sub(a[0], b[0]).(F) + c_1 := c.fieldAPI.Sub(a[1], b[1]).(F) + return QuadraticExtension{c_0, c_1} +} + +func (c *QuadraticExtensionAPI) DivExtension(a QuadraticExtension, b QuadraticExtension) QuadraticExtension { + return c.MulExtension(a, c.InverseExtension(b)) +} + +func (c *QuadraticExtensionAPI) IsZero(a QuadraticExtension) frontend.Variable { + return c.fieldAPI.Mul(c.fieldAPI.IsZero(a[0]), c.fieldAPI.IsZero(a[1])) +} + +// TODO: Instead of calculating the inverse within the circuit, can witness the +// inverse and assert that a_inverse * a = 1. Should reduce # of constraints. +func (c *QuadraticExtensionAPI) InverseExtension(a QuadraticExtension) QuadraticExtension { + // First assert that a doesn't have 0 value coefficients + a0_is_zero := c.fieldAPI.IsZero(a[0]) + a1_is_zero := c.fieldAPI.IsZero(a[1]) + + // assert that a0_is_zero OR a1_is_zero == false + c.fieldAPI.AssertIsEqual(c.fieldAPI.Mul(a0_is_zero, a1_is_zero).(F), ZERO_F) + + a_pow_r_minus_1 := QuadraticExtension{a[0], c.fieldAPI.Mul(a[1], c.DTH_ROOT).(F)} + a_pow_r := c.MulExtension(a_pow_r_minus_1, a) + return c.ScalarMulExtension(a_pow_r_minus_1, c.fieldAPI.Inverse(a_pow_r[0]).(F)) +} + +func (c *QuadraticExtensionAPI) ScalarMulExtension(a QuadraticExtension, scalar F) QuadraticExtension { + return QuadraticExtension{c.fieldAPI.Mul(a[0], scalar).(F), c.fieldAPI.Mul(a[1], scalar).(F)} +} + +func (c *QuadraticExtensionAPI) FieldToQE(a F) QuadraticExtension { + return QuadraticExtension{a, ZERO_F} +} + +// / Exponentiate `base` to the power of a known `exponent`. +func (c *QuadraticExtensionAPI) ExpU64Extension(a QuadraticExtension, exponent uint64) QuadraticExtension { + switch exponent { + case 0: + return c.ONE_QE + case 1: + return a + case 2: + return c.SquareExtension(a) + default: + } + + current := a + product := c.ONE_QE + + for i := 0; i < bits.Len64(exponent); i++ { + if i != 0 { + current = c.SquareExtension(current) + } + + if (exponent >> i & 1) != 0 { + product = c.MulExtension(product, current) + } + } + + return product +} + +func (c *QuadraticExtensionAPI) ReduceWithPowers(terms []QuadraticExtension, scalar QuadraticExtension) QuadraticExtension { + sum := c.ZERO_QE + + for i := len(terms) - 1; i >= 0; i-- { + sum = c.AddExtension( + c.MulExtension( + sum, + scalar, + ), + terms[i], + ) + } + + return sum +} + +func (c *QuadraticExtensionAPI) Select(b0 frontend.Variable, qe0, qe1 QuadraticExtension) QuadraticExtension { + var retQE QuadraticExtension + + for i := 0; i < 2; i++ { + retQE[i] = c.fieldAPI.Select(b0, qe0[i], qe1[i]).(F) + } + + return retQE +} + +func (c *QuadraticExtensionAPI) Lookup2(b0 frontend.Variable, b1 frontend.Variable, qe0, qe1, qe2, qe3 QuadraticExtension) QuadraticExtension { + var retQE QuadraticExtension + + for i := 0; i < 2; i++ { + retQE[i] = c.fieldAPI.Lookup2(b0, b1, qe0[i], qe1[i], qe2[i], qe3[i]).(F) + } + + return retQE +} + +func (c *QuadraticExtensionAPI) AssertIsEqual(a, b QuadraticExtension) { + for i := 0; i < 2; i++ { + c.fieldAPI.AssertIsEqual(a[0], b[0]) + } +} + +func (c *QuadraticExtensionAPI) Println(a QuadraticExtension) { + fmt.Print("Degree 0 coefficient") + c.fieldAPI.Println(a[0]) + + fmt.Print("Degree 1 coefficient") + c.fieldAPI.Println(a[1]) +} From 9a51b67aca41cb79fb90c083ef9a0a7f1a44516c Mon Sep 17 00:00:00 2001 From: Nicholas Ward Date: Thu, 6 Apr 2023 13:39:23 -0700 Subject: [PATCH 11/21] gate deserialization, ArithmeticGate, ConstantGate --- plonky2_verifier/arithmetic_gate.go | 58 +++++++++++++++++++++++ plonky2_verifier/constant_gate.go | 44 +++++++++++++++++ plonky2_verifier/deserialize.go | 8 +++- plonky2_verifier/gate.go | 45 +++++++++++++++++- plonky2_verifier/noop_gate.go | 10 +++- plonky2_verifier/plonk.go | 6 ++- plonky2_verifier/poseidon_gate.go | 68 +++++++++++++++------------ plonky2_verifier/public_input_gate.go | 14 ++++-- 8 files changed, 214 insertions(+), 39 deletions(-) create mode 100644 plonky2_verifier/arithmetic_gate.go create mode 100644 plonky2_verifier/constant_gate.go diff --git a/plonky2_verifier/arithmetic_gate.go b/plonky2_verifier/arithmetic_gate.go new file mode 100644 index 0000000..bc4d54e --- /dev/null +++ b/plonky2_verifier/arithmetic_gate.go @@ -0,0 +1,58 @@ +package plonky2_verifier + +import ( + "fmt" + . "gnark-plonky2-verifier/field" +) + +type ArithmeticGate struct { + numOps uint64 +} + +func NewArithmeticGate(numOps uint64) *ArithmeticGate { + return &ArithmeticGate{ + numOps: numOps, + } +} + +func (g *ArithmeticGate) Id() string { + return fmt.Sprintf("ArithmeticGate { num_ops: %d }", g.numOps) +} + +func (g *ArithmeticGate) WireIthMultiplicand0(i uint64) uint64 { + return 4 * i +} + +func (g *ArithmeticGate) WireIthMultiplicand1(i uint64) uint64 { + return 4*i + 1 +} + +func (g *ArithmeticGate) WireIthAddend(i uint64) uint64 { + return 4*i + 2 +} + +func (g *ArithmeticGate) WireIthOutput(i uint64) uint64 { + return 4*i + 3 +} + +func (g *ArithmeticGate) EvalUnfiltered(p *PlonkChip, vars EvaluationVars) []QuadraticExtension { + const0 := vars.localConstants[0] + const1 := vars.localConstants[1] + + constraints := []QuadraticExtension{} + for i := uint64(0); i < g.numOps; i++ { + multiplicand0 := vars.localWires[g.WireIthMultiplicand0(i)] + multiplicand1 := vars.localWires[g.WireIthMultiplicand1(i)] + addend := vars.localWires[g.WireIthAddend(i)] + output := vars.localWires[g.WireIthOutput(i)] + + computedOutput := p.qeAPI.AddExtension( + p.qeAPI.MulExtension(p.qeAPI.MulExtension(multiplicand0, multiplicand1), const0), + p.qeAPI.MulExtension(addend, const1), + ) + + constraints = append(constraints, p.qeAPI.SubExtension(computedOutput, output)) + } + + return constraints +} diff --git a/plonky2_verifier/constant_gate.go b/plonky2_verifier/constant_gate.go new file mode 100644 index 0000000..2d12609 --- /dev/null +++ b/plonky2_verifier/constant_gate.go @@ -0,0 +1,44 @@ +package plonky2_verifier + +import ( + "fmt" + . "gnark-plonky2-verifier/field" +) + +type ConstantGate struct { + numConsts uint64 +} + +func NewConstantGate(numConsts uint64) *ConstantGate { + return &ConstantGate{ + numConsts: numConsts, + } +} + +func (g *ConstantGate) Id() string { + return fmt.Sprintf("ConstantGate { num_consts: %d }", g.numConsts) +} + +func (g *ConstantGate) ConstInput(i uint64) uint64 { + if i > g.numConsts { + panic("Invalid constant index") + } + return i +} + +func (g *ConstantGate) WireOutput(i uint64) uint64 { + if i > g.numConsts { + panic("Invalid wire index") + } + return i +} + +func (g *ConstantGate) EvalUnfiltered(p *PlonkChip, vars EvaluationVars) []QuadraticExtension { + constraints := []QuadraticExtension{} + + for i := uint64(0); i < g.numConsts; i++ { + constraints = append(constraints, p.qeAPI.SubExtension(vars.localConstants[g.ConstInput(i)], vars.localWires[g.WireOutput(i)])) + } + + return constraints +} diff --git a/plonky2_verifier/deserialize.go b/plonky2_verifier/deserialize.go index 407e167..205c5e9 100644 --- a/plonky2_verifier/deserialize.go +++ b/plonky2_verifier/deserialize.go @@ -130,7 +130,8 @@ type CommonCircuitDataRaw struct { DegreeBits uint64 `json:"degree_bits"` ReductionArityBits []uint64 `json:"reduction_arity_bits"` } `json:"fri_params"` - DegreeBits uint64 `json:"degree_bits"` + Gates []string `json:"gates"` + DegreeBits uint64 `json:"degree_bits"` SelectorsInfo struct { SelectorIndices []uint64 `json:"selector_indices"` Groups []struct { @@ -346,6 +347,11 @@ func DeserializeCommonCircuitData(path string) CommonCircuitData { commonCircuitData.FriParams.Config.NumQueryRounds = raw.FriParams.Config.NumQueryRounds commonCircuitData.FriParams.ReductionArityBits = raw.FriParams.ReductionArityBits + commonCircuitData.Gates = []gate{} + for _, gate := range raw.Gates { + commonCircuitData.Gates = append(commonCircuitData.Gates, GateInstanceFromId(gate)) + } + commonCircuitData.DegreeBits = raw.DegreeBits commonCircuitData.QuotientDegreeFactor = raw.QuotientDegreeFactor commonCircuitData.NumGateConstraints = raw.NumGateConstraints diff --git a/plonky2_verifier/gate.go b/plonky2_verifier/gate.go index bbaeed1..5e22677 100644 --- a/plonky2_verifier/gate.go +++ b/plonky2_verifier/gate.go @@ -2,10 +2,51 @@ package plonky2_verifier import ( . "gnark-plonky2-verifier/field" + "strconv" + "strings" ) type gate interface { - EvalUnfiltered(vars EvaluationVars) []QuadraticExtension + Id() string + EvalUnfiltered(p *PlonkChip, vars EvaluationVars) []QuadraticExtension +} + +func GateInstanceFromId(gateId string) gate { + if strings.HasPrefix(gateId, "ArithmeticGate") { + numOpsRaw := strings.Split(gateId, ":")[1] + numOpsRaw = strings.Split(numOpsRaw, "}")[0] + numOpsRaw = strings.TrimSpace(numOpsRaw) + numOps, err := strconv.Atoi(numOpsRaw) + if err != nil { + panic("Invalid gate ID for ArithmeticGate") + } + return NewArithmeticGate(uint64(numOps)) + } + + if gateId == "ConstantGate" { + numConstsRaw := strings.Split(gateId, ":")[1] + numConstsRaw = strings.Split(numConstsRaw, "}")[0] + numConstsRaw = strings.TrimSpace(numConstsRaw) + numConsts, err := strconv.Atoi(numConstsRaw) + if err != nil { + panic("Invalid gate ID") + } + return NewConstantGate(uint64(numConsts)) + } + + if gateId == "NoopGate" { + return NewNoopGate() + } + + if gateId == "PublicInputGate" { + return NewPublicInputGate() + } + + if strings.HasPrefix(gateId, "PoseidonGate") { + return NewPoseidonGate() + } + + panic("Unknown gate ID") } func (p *PlonkChip) computeFilter( @@ -42,7 +83,7 @@ func (p *PlonkChip) evalFiltered( vars.RemovePrefix(numSelectors) - unfiltered := g.EvalUnfiltered(vars) + unfiltered := g.EvalUnfiltered(p, vars) for i := range unfiltered { unfiltered[i] = p.qeAPI.MulExtension(unfiltered[i], filter) } diff --git a/plonky2_verifier/noop_gate.go b/plonky2_verifier/noop_gate.go index 3855197..fb48ae5 100644 --- a/plonky2_verifier/noop_gate.go +++ b/plonky2_verifier/noop_gate.go @@ -7,6 +7,14 @@ import ( type NoopGate struct { } -func (p *NoopGate) EvalUnfiltered(pc *PlonkChip, vars EvaluationVars) []QuadraticExtension { +func NewNoopGate() *NoopGate { + return &NoopGate{} +} + +func (g *NoopGate) Id() string { + return "NoopGate" +} + +func (g *NoopGate) EvalUnfiltered(p *PlonkChip, vars EvaluationVars) []QuadraticExtension { return []QuadraticExtension{} } diff --git a/plonky2_verifier/plonk.go b/plonky2_verifier/plonk.go index 05b2535..3e9546a 100644 --- a/plonky2_verifier/plonk.go +++ b/plonky2_verifier/plonk.go @@ -131,8 +131,10 @@ func (p *PlonkChip) evaluateGateConstraints(vars EvaluationVars) []QuadraticExte p.commonData.SelectorsInfo.NumSelectors(), ) - for _, constraint := range gateConstraints { - // assert j < commonData.NumGateConstraints + for j, constraint := range gateConstraints { + if uint64(j) >= p.commonData.NumGateConstraints { + panic("num_constraints() gave too low of a number") + } constraints[i] = p.qeAPI.AddExtension(constraints[i], constraint) } } diff --git a/plonky2_verifier/poseidon_gate.go b/plonky2_verifier/poseidon_gate.go index 4e68c0b..8f6c44d 100644 --- a/plonky2_verifier/poseidon_gate.go +++ b/plonky2_verifier/poseidon_gate.go @@ -5,6 +5,17 @@ import ( "gnark-plonky2-verifier/poseidon" ) +type PoseidonGate struct { +} + +func NewPoseidonGate() *PoseidonGate { + return &PoseidonGate{} +} + +func (g *PoseidonGate) Id() string { + return "PoseidonGate" +} + func (g *PoseidonGate) WireInput(i uint64) uint64 { return i } @@ -68,40 +79,37 @@ func (g *PoseidonGate) WiresEnd() uint64 { return START_FULL_1 + poseidon.HALF_N_FULL_ROUNDS*poseidon.SPONGE_WIDTH } -type PoseidonGate struct { -} - -func (p *PoseidonGate) EvalUnfiltered(pc *PlonkChip, vars EvaluationVars) []QuadraticExtension { +func (g *PoseidonGate) EvalUnfiltered(p *PlonkChip, vars EvaluationVars) []QuadraticExtension { constraints := []QuadraticExtension{} - poseidonChip := poseidon.NewPoseidonChip(pc.api, NewFieldAPI(pc.api), pc.qeAPI) + poseidonChip := poseidon.NewPoseidonChip(p.api, NewFieldAPI(p.api), p.qeAPI) // Assert that `swap` is binary. - swap := vars.localWires[p.WireSwap()] - notSwap := pc.qeAPI.SubExtension(pc.qeAPI.FieldToQE(ONE_F), swap) - constraints = append(constraints, pc.qeAPI.MulExtension(swap, notSwap)) + swap := vars.localWires[g.WireSwap()] + notSwap := p.qeAPI.SubExtension(p.qeAPI.FieldToQE(ONE_F), swap) + constraints = append(constraints, p.qeAPI.MulExtension(swap, notSwap)) // Assert that each delta wire is set properly: `delta_i = swap * (rhs - lhs)`. for i := uint64(0); i < 4; i++ { - inputLhs := vars.localWires[p.WireInput(i)] - inputRhs := vars.localWires[p.WireInput(i+4)] - deltaI := vars.localWires[p.WireDelta(i)] - diff := pc.qeAPI.SubExtension(inputRhs, inputLhs) - expectedDeltaI := pc.qeAPI.MulExtension(swap, diff) - constraints = append(constraints, pc.qeAPI.SubExtension(expectedDeltaI, deltaI)) + inputLhs := vars.localWires[g.WireInput(i)] + inputRhs := vars.localWires[g.WireInput(i+4)] + deltaI := vars.localWires[g.WireDelta(i)] + diff := p.qeAPI.SubExtension(inputRhs, inputLhs) + expectedDeltaI := p.qeAPI.MulExtension(swap, diff) + constraints = append(constraints, p.qeAPI.SubExtension(expectedDeltaI, deltaI)) } // Compute the possibly-swapped input layer. var state [poseidon.SPONGE_WIDTH]QuadraticExtension for i := uint64(0); i < 4; i++ { - deltaI := vars.localWires[p.WireDelta(i)] - inputLhs := vars.localWires[p.WireInput(i)] - inputRhs := vars.localWires[p.WireInput(i+4)] - state[i] = pc.qeAPI.AddExtension(inputLhs, deltaI) - state[i+4] = pc.qeAPI.SubExtension(inputRhs, deltaI) + deltaI := vars.localWires[g.WireDelta(i)] + inputLhs := vars.localWires[g.WireInput(i)] + inputRhs := vars.localWires[g.WireInput(i+4)] + state[i] = p.qeAPI.AddExtension(inputLhs, deltaI) + state[i+4] = p.qeAPI.SubExtension(inputRhs, deltaI) } for i := uint64(8); i < poseidon.SPONGE_WIDTH; i++ { - state[i] = vars.localWires[p.WireInput(i)] + state[i] = vars.localWires[g.WireInput(i)] } round_ctr := 0 @@ -111,8 +119,8 @@ func (p *PoseidonGate) EvalUnfiltered(pc *PlonkChip, vars EvaluationVars) []Quad state = poseidonChip.ConstantLayerExtension(state, &round_ctr) if r != 0 { for i := uint64(0); i < poseidon.SPONGE_WIDTH; i++ { - sBoxIn := vars.localWires[p.WireFullSBox0(r, i)] - constraints = append(constraints, pc.qeAPI.SubExtension(state[i], sBoxIn)) + sBoxIn := vars.localWires[g.WireFullSBox0(r, i)] + constraints = append(constraints, p.qeAPI.SubExtension(state[i], sBoxIn)) state[i] = sBoxIn } } @@ -125,14 +133,14 @@ func (p *PoseidonGate) EvalUnfiltered(pc *PlonkChip, vars EvaluationVars) []Quad state = poseidonChip.PartialFirstConstantLayerExtension(state) state = poseidonChip.MdsPartialLayerInitExtension(state) for r := uint64(0); r < poseidon.N_PARTIAL_ROUNDS-1; r++ { - sBoxIn := vars.localWires[p.WirePartialSBox(r)] - constraints = append(constraints, pc.qeAPI.SubExtension(state[0], sBoxIn)) + sBoxIn := vars.localWires[g.WirePartialSBox(r)] + constraints = append(constraints, p.qeAPI.SubExtension(state[0], sBoxIn)) state[0] = poseidonChip.SBoxMonomialExtension(sBoxIn) - state[0] = pc.qeAPI.AddExtension(state[0], pc.qeAPI.FieldToQE(NewFieldElement(poseidon.FAST_PARTIAL_ROUND_CONSTANTS[r]))) + state[0] = p.qeAPI.AddExtension(state[0], p.qeAPI.FieldToQE(NewFieldElement(poseidon.FAST_PARTIAL_ROUND_CONSTANTS[r]))) state = poseidonChip.MdsPartialLayerFastExtension(state, int(r)) } - sBoxIn := vars.localWires[p.WirePartialSBox(poseidon.N_PARTIAL_ROUNDS-1)] - constraints = append(constraints, pc.qeAPI.SubExtension(state[0], sBoxIn)) + sBoxIn := vars.localWires[g.WirePartialSBox(poseidon.N_PARTIAL_ROUNDS-1)] + constraints = append(constraints, p.qeAPI.SubExtension(state[0], sBoxIn)) state[0] = poseidonChip.SBoxMonomialExtension(sBoxIn) state = poseidonChip.MdsPartialLayerFastExtension(state, poseidon.N_PARTIAL_ROUNDS-1) round_ctr += poseidon.N_PARTIAL_ROUNDS @@ -141,8 +149,8 @@ func (p *PoseidonGate) EvalUnfiltered(pc *PlonkChip, vars EvaluationVars) []Quad for r := uint64(0); r < poseidon.HALF_N_FULL_ROUNDS; r++ { poseidonChip.ConstantLayerExtension(state, &round_ctr) for i := uint64(0); i < poseidon.SPONGE_WIDTH; i++ { - sBoxIn := vars.localWires[p.WireFullSBox1(r, i)] - constraints = append(constraints, pc.qeAPI.SubExtension(state[i], sBoxIn)) + sBoxIn := vars.localWires[g.WireFullSBox1(r, i)] + constraints = append(constraints, p.qeAPI.SubExtension(state[i], sBoxIn)) state[i] = sBoxIn } state = poseidonChip.MdsLayerExtension(state) @@ -151,7 +159,7 @@ func (p *PoseidonGate) EvalUnfiltered(pc *PlonkChip, vars EvaluationVars) []Quad } for i := uint64(0); i < poseidon.SPONGE_WIDTH; i++ { - constraints = append(constraints, pc.qeAPI.SubExtension(state[i], vars.localWires[p.WireOutput(i)])) + constraints = append(constraints, p.qeAPI.SubExtension(state[i], vars.localWires[g.WireOutput(i)])) } return constraints diff --git a/plonky2_verifier/public_input_gate.go b/plonky2_verifier/public_input_gate.go index 1804560..30fa95c 100644 --- a/plonky2_verifier/public_input_gate.go +++ b/plonky2_verifier/public_input_gate.go @@ -7,20 +7,28 @@ import ( type PublicInputGate struct { } +func NewPublicInputGate() *PublicInputGate { + return &PublicInputGate{} +} + +func (g *PublicInputGate) Id() string { + return "PublicInputGate" +} + func (g *PublicInputGate) WiresPublicInputsHash() []uint64 { return []uint64{0, 1, 2, 3} } -func (p *PublicInputGate) EvalUnfiltered(pc *PlonkChip, vars EvaluationVars) []QuadraticExtension { +func (g *PublicInputGate) EvalUnfiltered(p *PlonkChip, vars EvaluationVars) []QuadraticExtension { constraints := []QuadraticExtension{} - wires := p.WiresPublicInputsHash() + wires := g.WiresPublicInputsHash() hash_parts := vars.publicInputsHash for i := 0; i < 4; i++ { wire := wires[i] hash_part := hash_parts[i] - diff := pc.qeAPI.SubExtension(vars.localWires[wire], pc.qeAPI.FieldToQE(hash_part)) + diff := p.qeAPI.SubExtension(vars.localWires[wire], p.qeAPI.FieldToQE(hash_part)) constraints = append(constraints, diff) } From 4be4b48391d12fad9af828697f2e6b4129578146 Mon Sep 17 00:00:00 2001 From: Nicholas Ward Date: Thu, 6 Apr 2023 14:14:11 -0700 Subject: [PATCH 12/21] fix gate ID parsing, and verbose error --- plonky2_verifier/data/fibonacci/common_circuit_data.json | 2 +- plonky2_verifier/gate.go | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/plonky2_verifier/data/fibonacci/common_circuit_data.json b/plonky2_verifier/data/fibonacci/common_circuit_data.json index b0c9ed6..3221ec7 100644 --- a/plonky2_verifier/data/fibonacci/common_circuit_data.json +++ b/plonky2_verifier/data/fibonacci/common_circuit_data.json @@ -1 +1 @@ -{"config":{"num_wires":135,"num_routed_wires":80,"num_constants":2,"use_base_arithmetic_gate":true,"security_bits":100,"num_challenges":2,"zero_knowledge":false,"max_quotient_degree_factor":8,"fri_config":{"rate_bits":3,"cap_height":4,"proof_of_work_bits":16,"reduction_strategy":{"ConstantArityBits":[4,5]},"num_query_rounds":28}},"fri_params":{"config":{"rate_bits":3,"cap_height":4,"proof_of_work_bits":16,"reduction_strategy":{"ConstantArityBits":[4,5]},"num_query_rounds":28},"hiding":false,"degree_bits":3,"reduction_arity_bits":[]},"degree_bits":3,"selectors_info":{"selector_indices":[0,0,0,1],"groups":[{"start":0,"end":3},{"start":3,"end":4}]},"quotient_degree_factor":8,"num_gate_constraints":123,"num_constants":4,"num_public_inputs":3,"k_is":[1,7,49,343,2401,16807,117649,823543,5764801,40353607,282475249,1977326743,13841287201,96889010407,678223072849,4747561509943,33232930569601,232630513987207,1628413597910449,11398895185373143,79792266297612001,558545864083284007,3909821048582988049,8922003270666332022,7113790686420571191,12903046666114829695,16534350385145470581,5059988279530788141,16973173887300932666,8131752794619022736,1582037354089406189,11074261478625843323,3732854072722565977,7683234439643377518,16889152938674473984,7543606154233811962,15911754940807515092,701820169165099718,4912741184155698026,15942444219675301861,916645121239607101,6416515848677249707,8022122801911579307,814627405137302186,5702391835961115302,3023254712898638472,2716038920875884983,565528376716610560,3958698637016273920,9264146389699333119,9508792519651578870,11221315429317299127,4762231727562756605,14888878023524711914,11988425817600061793,10132004445542095267,15583798910550913906,16852872026783475737,7289639770996824233,14133990258148600989,6704211459967285318,10035992080941828584,14911712358349047125,12148266161370408270,11250886851934520606,4969231685883306958,16337877731768564385,3684679705892444769,7346013871832529062,14528608963998534792,9466542400916821939,10925564598174000610,2691975909559666986,397087297503084581,2779611082521592067,1010533508236560148,7073734557655921036,12622653764762278610,14571600075677612986,9767480182670369297],"num_partial_products":9,"circuit_digest":{"elements":[7754113318730736048,18436136620016916513,18054530212389526288,5893739326632906028]}} \ No newline at end of file +{"config":{"num_wires":135,"num_routed_wires":80,"num_constants":2,"use_base_arithmetic_gate":true,"security_bits":100,"num_challenges":2,"zero_knowledge":false,"max_quotient_degree_factor":8,"fri_config":{"rate_bits":3,"cap_height":4,"proof_of_work_bits":16,"reduction_strategy":{"ConstantArityBits":[4,5]},"num_query_rounds":28}},"fri_params":{"config":{"rate_bits":3,"cap_height":4,"proof_of_work_bits":16,"reduction_strategy":{"ConstantArityBits":[4,5]},"num_query_rounds":28},"hiding":false,"degree_bits":3,"reduction_arity_bits":[]},"gates":["ConstantGate { num_consts: 2 }","PublicInputGate","ArithmeticGate { num_ops: 20 }","PoseidonGate(PhantomData)"],"selectors_info":{"selector_indices":[0,0,0,1],"groups":[{"start":0,"end":3},{"start":3,"end":4}]},"quotient_degree_factor":8,"num_gate_constraints":123,"num_constants":4,"num_public_inputs":3,"k_is":[1,7,49,343,2401,16807,117649,823543,5764801,40353607,282475249,1977326743,13841287201,96889010407,678223072849,4747561509943,33232930569601,232630513987207,1628413597910449,11398895185373143,79792266297612001,558545864083284007,3909821048582988049,8922003270666332022,7113790686420571191,12903046666114829695,16534350385145470581,5059988279530788141,16973173887300932666,8131752794619022736,1582037354089406189,11074261478625843323,3732854072722565977,7683234439643377518,16889152938674473984,7543606154233811962,15911754940807515092,701820169165099718,4912741184155698026,15942444219675301861,916645121239607101,6416515848677249707,8022122801911579307,814627405137302186,5702391835961115302,3023254712898638472,2716038920875884983,565528376716610560,3958698637016273920,9264146389699333119,9508792519651578870,11221315429317299127,4762231727562756605,14888878023524711914,11988425817600061793,10132004445542095267,15583798910550913906,16852872026783475737,7289639770996824233,14133990258148600989,6704211459967285318,10035992080941828584,14911712358349047125,12148266161370408270,11250886851934520606,4969231685883306958,16337877731768564385,3684679705892444769,7346013871832529062,14528608963998534792,9466542400916821939,10925564598174000610,2691975909559666986,397087297503084581,2779611082521592067,1010533508236560148,7073734557655921036,12622653764762278610,14571600075677612986,9767480182670369297],"num_partial_products":9} \ No newline at end of file diff --git a/plonky2_verifier/gate.go b/plonky2_verifier/gate.go index 5e22677..d171299 100644 --- a/plonky2_verifier/gate.go +++ b/plonky2_verifier/gate.go @@ -1,6 +1,7 @@ package plonky2_verifier import ( + "fmt" . "gnark-plonky2-verifier/field" "strconv" "strings" @@ -23,7 +24,7 @@ func GateInstanceFromId(gateId string) gate { return NewArithmeticGate(uint64(numOps)) } - if gateId == "ConstantGate" { + if strings.HasPrefix(gateId, "ConstantGate") { numConstsRaw := strings.Split(gateId, ":")[1] numConstsRaw = strings.Split(numConstsRaw, "}")[0] numConstsRaw = strings.TrimSpace(numConstsRaw) @@ -46,7 +47,7 @@ func GateInstanceFromId(gateId string) gate { return NewPoseidonGate() } - panic("Unknown gate ID") + panic(fmt.Sprintf("Unknown gate ID %s", gateId)) } func (p *PlonkChip) computeFilter( From b8a7d44fa9aaae62c248f3e6c59a6b7d9ad07004 Mon Sep 17 00:00:00 2001 From: Nicholas Ward Date: Thu, 6 Apr 2023 14:19:18 -0700 Subject: [PATCH 13/21] deserialize selector info --- plonky2_verifier/deserialize.go | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/plonky2_verifier/deserialize.go b/plonky2_verifier/deserialize.go index 205c5e9..11b1ee7 100644 --- a/plonky2_verifier/deserialize.go +++ b/plonky2_verifier/deserialize.go @@ -130,8 +130,8 @@ type CommonCircuitDataRaw struct { DegreeBits uint64 `json:"degree_bits"` ReductionArityBits []uint64 `json:"reduction_arity_bits"` } `json:"fri_params"` - Gates []string `json:"gates"` DegreeBits uint64 `json:"degree_bits"` + Gates []string `json:"gates"` SelectorsInfo struct { SelectorIndices []uint64 `json:"selector_indices"` Groups []struct { @@ -346,13 +346,22 @@ func DeserializeCommonCircuitData(path string) CommonCircuitData { commonCircuitData.FriParams.Config.ProofOfWorkBits = raw.FriParams.Config.ProofOfWorkBits commonCircuitData.FriParams.Config.NumQueryRounds = raw.FriParams.Config.NumQueryRounds commonCircuitData.FriParams.ReductionArityBits = raw.FriParams.ReductionArityBits + commonCircuitData.DegreeBits = raw.DegreeBits commonCircuitData.Gates = []gate{} for _, gate := range raw.Gates { commonCircuitData.Gates = append(commonCircuitData.Gates, GateInstanceFromId(gate)) } - commonCircuitData.DegreeBits = raw.DegreeBits + commonCircuitData.SelectorsInfo.selectorIndices = raw.SelectorsInfo.SelectorIndices + commonCircuitData.SelectorsInfo.groups = []Range{} + for _, group := range raw.SelectorsInfo.Groups { + commonCircuitData.SelectorsInfo.groups = append(commonCircuitData.SelectorsInfo.groups, Range{ + start: group.Start, + end: group.End, + }) + } + commonCircuitData.QuotientDegreeFactor = raw.QuotientDegreeFactor commonCircuitData.NumGateConstraints = raw.NumGateConstraints commonCircuitData.NumConstants = raw.NumConstants From 85283a0662473eeabb313917086fab2f4ff70309 Mon Sep 17 00:00:00 2001 From: Nicholas Ward Date: Thu, 6 Apr 2023 14:40:39 -0700 Subject: [PATCH 14/21] fix --- plonky2_verifier/poseidon_gate.go | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/plonky2_verifier/poseidon_gate.go b/plonky2_verifier/poseidon_gate.go index 8f6c44d..34a1dc4 100644 --- a/plonky2_verifier/poseidon_gate.go +++ b/plonky2_verifier/poseidon_gate.go @@ -112,11 +112,11 @@ func (g *PoseidonGate) EvalUnfiltered(p *PlonkChip, vars EvaluationVars) []Quadr state[i] = vars.localWires[g.WireInput(i)] } - round_ctr := 0 + roundCounter := 0 // First set of full rounds. for r := uint64(0); r < poseidon.HALF_N_FULL_ROUNDS; r++ { - state = poseidonChip.ConstantLayerExtension(state, &round_ctr) + state = poseidonChip.ConstantLayerExtension(state, &roundCounter) if r != 0 { for i := uint64(0); i < poseidon.SPONGE_WIDTH; i++ { sBoxIn := vars.localWires[g.WireFullSBox0(r, i)] @@ -126,7 +126,7 @@ func (g *PoseidonGate) EvalUnfiltered(p *PlonkChip, vars EvaluationVars) []Quadr } state = poseidonChip.SBoxLayerExtension(state) state = poseidonChip.MdsLayerExtension(state) - round_ctr++ + roundCounter++ } // Partial rounds. @@ -143,11 +143,11 @@ func (g *PoseidonGate) EvalUnfiltered(p *PlonkChip, vars EvaluationVars) []Quadr constraints = append(constraints, p.qeAPI.SubExtension(state[0], sBoxIn)) state[0] = poseidonChip.SBoxMonomialExtension(sBoxIn) state = poseidonChip.MdsPartialLayerFastExtension(state, poseidon.N_PARTIAL_ROUNDS-1) - round_ctr += poseidon.N_PARTIAL_ROUNDS + roundCounter += poseidon.N_PARTIAL_ROUNDS // Second set of full rounds. for r := uint64(0); r < poseidon.HALF_N_FULL_ROUNDS; r++ { - poseidonChip.ConstantLayerExtension(state, &round_ctr) + poseidonChip.ConstantLayerExtension(state, &roundCounter) for i := uint64(0); i < poseidon.SPONGE_WIDTH; i++ { sBoxIn := vars.localWires[g.WireFullSBox1(r, i)] constraints = append(constraints, p.qeAPI.SubExtension(state[i], sBoxIn)) @@ -155,7 +155,7 @@ func (g *PoseidonGate) EvalUnfiltered(p *PlonkChip, vars EvaluationVars) []Quadr } state = poseidonChip.MdsLayerExtension(state) state = poseidonChip.SBoxLayerExtension(state) - round_ctr++ + roundCounter++ } for i := uint64(0); i < poseidon.SPONGE_WIDTH; i++ { From 219e6357f32222091c147bb0935a0b7888ea9853 Mon Sep 17 00:00:00 2001 From: Nicholas Ward Date: Thu, 6 Apr 2023 15:12:59 -0700 Subject: [PATCH 15/21] fix --- poseidon/poseidon.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/poseidon/poseidon.go b/poseidon/poseidon.go index d28e625..b9085bd 100644 --- a/poseidon/poseidon.go +++ b/poseidon/poseidon.go @@ -23,8 +23,8 @@ type PoseidonChip struct { qeAPI *QuadraticExtensionAPI `gnark:"-"` } -func NewPoseidonChip(api frontend.API, field frontend.API, qeAPI *QuadraticExtensionAPI) *PoseidonChip { - return &PoseidonChip{api: api, fieldAPI: field} +func NewPoseidonChip(api frontend.API, fieldAPI frontend.API, qeAPI *QuadraticExtensionAPI) *PoseidonChip { + return &PoseidonChip{api: api, fieldAPI: fieldAPI, qeAPI: qeAPI} } func (c *PoseidonChip) Poseidon(input PoseidonState) PoseidonState { From f20852831e437866a4ec8e831b52c22b07680b9f Mon Sep 17 00:00:00 2001 From: Nicholas Ward Date: Wed, 12 Apr 2023 09:13:31 -0700 Subject: [PATCH 16/21] fixes, cleanup, and deserialize ProofChallenges --- plonky2_verifier/arithmetic_gate.go | 2 +- .../dummy_2^14_gates/proof_challenges.json | 18 +++++++ .../data/fibonacci/challenges.json | 1 + .../data/fibonacci/proof_challenges.json | 1 + .../fibonacci/proof_with_public_inputs.json | 2 +- .../fibonacci/verifier_only_circuit_data.json | 2 +- plonky2_verifier/deserialize.go | 45 ++++++++++++++++- plonky2_verifier/deserialize_test.go | 14 ++++-- plonky2_verifier/gate.go | 4 +- plonky2_verifier/plonk.go | 5 +- plonky2_verifier/plonk_test.go | 50 ++----------------- plonky2_verifier/poseidon_gate.go | 9 ++-- plonky2_verifier/selectors.go | 2 +- poseidon/poseidon.go | 12 ++--- utils/utils.go | 4 ++ 15 files changed, 100 insertions(+), 71 deletions(-) create mode 100644 plonky2_verifier/data/dummy_2^14_gates/proof_challenges.json create mode 100644 plonky2_verifier/data/fibonacci/challenges.json create mode 100644 plonky2_verifier/data/fibonacci/proof_challenges.json diff --git a/plonky2_verifier/arithmetic_gate.go b/plonky2_verifier/arithmetic_gate.go index bc4d54e..1734556 100644 --- a/plonky2_verifier/arithmetic_gate.go +++ b/plonky2_verifier/arithmetic_gate.go @@ -51,7 +51,7 @@ func (g *ArithmeticGate) EvalUnfiltered(p *PlonkChip, vars EvaluationVars) []Qua p.qeAPI.MulExtension(addend, const1), ) - constraints = append(constraints, p.qeAPI.SubExtension(computedOutput, output)) + constraints = append(constraints, p.qeAPI.SubExtension(output, computedOutput)) } return constraints diff --git a/plonky2_verifier/data/dummy_2^14_gates/proof_challenges.json b/plonky2_verifier/data/dummy_2^14_gates/proof_challenges.json new file mode 100644 index 0000000..4d44275 --- /dev/null +++ b/plonky2_verifier/data/dummy_2^14_gates/proof_challenges.json @@ -0,0 +1,18 @@ +{ + "plonk_betas": [ + 11216469004148781751, + 6201977337075152249 + ], + "plonk_gammas": [ + 8369751006669847974, + 3610024170884289835 + ], + "plonk_alphas": [ + 970160439138448145, + 2402201283787401921 + ], + "plonk_zeta": [ + 17377750363769967882, + 11921191651424768462 + ] +} \ No newline at end of file diff --git a/plonky2_verifier/data/fibonacci/challenges.json b/plonky2_verifier/data/fibonacci/challenges.json new file mode 100644 index 0000000..4636484 --- /dev/null +++ b/plonky2_verifier/data/fibonacci/challenges.json @@ -0,0 +1 @@ +{"plonk_betas":[12973916988745913043,10729509799707823061],"plonk_gammas":[13357786390712427342,13733012568509939467],"plonk_alphas":[4421334860622890213,11104346062293008527],"plonk_zeta":[4417665616040947721,6032065041495623027],"fri_challenges":{"fri_alpha":[13781247504304639195,11230825432264195234],"fri_betas":[],"fri_pow_response":38184296491435,"fri_query_indices":[51,25,2,2,7,2,50,30,48,56,44,52,34,3,4,59,0,1,53,63,60,42,12,56,53,7,37,39]}} \ No newline at end of file diff --git a/plonky2_verifier/data/fibonacci/proof_challenges.json b/plonky2_verifier/data/fibonacci/proof_challenges.json new file mode 100644 index 0000000..4636484 --- /dev/null +++ b/plonky2_verifier/data/fibonacci/proof_challenges.json @@ -0,0 +1 @@ +{"plonk_betas":[12973916988745913043,10729509799707823061],"plonk_gammas":[13357786390712427342,13733012568509939467],"plonk_alphas":[4421334860622890213,11104346062293008527],"plonk_zeta":[4417665616040947721,6032065041495623027],"fri_challenges":{"fri_alpha":[13781247504304639195,11230825432264195234],"fri_betas":[],"fri_pow_response":38184296491435,"fri_query_indices":[51,25,2,2,7,2,50,30,48,56,44,52,34,3,4,59,0,1,53,63,60,42,12,56,53,7,37,39]}} \ No newline at end of file diff --git a/plonky2_verifier/data/fibonacci/proof_with_public_inputs.json b/plonky2_verifier/data/fibonacci/proof_with_public_inputs.json index 7143771..b3301c7 100644 --- a/plonky2_verifier/data/fibonacci/proof_with_public_inputs.json +++ b/plonky2_verifier/data/fibonacci/proof_with_public_inputs.json @@ -1 +1 @@ -{"proof":{"wires_cap":[{"elements":[13884351014873073118,5174249846243191862,2208632528791973868,1071582828677910652]},{"elements":[11475361245556894879,14867351574926692044,17013374066934071379,1027671036932569748]},{"elements":[5604634992452399010,3684464596850094189,5565599237356852406,4136295609943151014]},{"elements":[8463721840990025805,5922588965472526198,8096699027533803435,2210089353004111478]},{"elements":[17531628199677307555,11513452064460680964,1482441508929181375,5139566233781982440]},{"elements":[13271417993289093233,17257193898955790413,16883807866578566670,7423179920948669117]},{"elements":[13462567520785358202,15555103598281658890,5859961276885232601,4464568704709749394]},{"elements":[153012620162729043,14072764618167122665,3025694603779494447,15948104906680148838]},{"elements":[18050235253694287284,11467396424826912141,11302553396166323353,10976271719722841224]},{"elements":[15208241660644051470,8520722208187871063,10775022596056682771,16048513824198271730]},{"elements":[6929477084755896240,11382029470138215117,13205948643259905511,9421863267852221772]},{"elements":[15449187573546292268,10216729601353604194,9493934392442974211,9848643714440191835]},{"elements":[2172475758127444753,16681095938683502188,9983383760611275566,2603547977557388755]},{"elements":[17440301588003279095,11799356585691460705,1386003375936412946,11059100806278290279]},{"elements":[10758265002546797581,1374136260999724547,7200401521491969338,219493657547391496]},{"elements":[5995963332181008902,4442996285152250372,2005936434281221193,6869325719052666642]}],"plonk_zs_partial_products_cap":[{"elements":[1209867952068639569,4958824272276746373,8278739766347565702,1966940898171663504]},{"elements":[12599305286358028697,8932511136775685440,5376267558248004641,6313904687311555884]},{"elements":[11190791343943249124,4016631697385248176,10356629842603047568,10968099068686195317]},{"elements":[1963983823153667719,6333891613271539690,12318891063769180636,10443318253972130654]},{"elements":[7799898099378084347,2751829638242157622,8351904444410446701,5284662773710644867]},{"elements":[1588568181448440843,10836321455257423751,5543952383542989142,12946954522116753258]},{"elements":[15710202198621978057,13746115173212319217,6103259182317700987,17589471289629134988]},{"elements":[12877950969971815168,4963889190939310439,8868772654550990048,11774978531783219015]},{"elements":[16832740767463005599,15040340114131672027,7469306538360789573,3154855824233652432]},{"elements":[9383568437827143152,1741060064145647394,17668587021570420286,5241789470902809114]},{"elements":[2087729156816989530,8248918881937854542,8673194597758568216,10710697836634846115]},{"elements":[11253371860840267365,16818881664594712299,11933553751682199585,1936353232880935379]},{"elements":[12163553231829171860,17244267969759347515,2003902333564157189,6934019871173840760]},{"elements":[2082141893879862527,18267460725569427782,1129651898415533808,14011240934155569890]},{"elements":[2526273401266876282,6955959191669943337,5926536548217021446,17949337312612691782]},{"elements":[8858882459906353593,5813258279939597857,6320047506247573502,15969724232572328561]}],"quotient_polys_cap":[{"elements":[9435614145733021495,1742717829476348934,11178548223985487003,14531951007568589725]},{"elements":[11747844681527676730,3089691012847802165,5887135310661642077,13943570416123664971]},{"elements":[11150071448774479229,4486829025930200476,9369448886033958276,15757606153229850783]},{"elements":[14603194410536469617,11776185929725558373,3122936423686490326,10128277488128872810]},{"elements":[4990578700975083076,4997575606014863069,14499603187047727337,14028694557236527137]},{"elements":[2279147899956815983,16034899207717647338,14763350037932939672,10075834812570828076]},{"elements":[1102006741007271956,15242779529961262072,6900547375301951311,8631780317175902419]},{"elements":[6299112770394539219,6297397453582105768,14148031335065995704,3794733067587629405]},{"elements":[7891039548997763820,4260484126440019022,6493066317319943586,14775252570136307979]},{"elements":[10790514248728420789,14444029601980227412,17514190309172155536,12973059492411164965]},{"elements":[8940755416742726696,8469566845539112244,7642612722784522739,15276772682665052607]},{"elements":[18306931819862706026,14374659904694625207,8609543532143656606,17350044275494282679]},{"elements":[9062024023737444614,13780128979028684176,6115495431779737008,7170446003855284754]},{"elements":[6191400598853400595,7806485717076924017,3225145303141729264,3644550749005104128]},{"elements":[15759718266801608721,2406060174022670585,15679263832775538866,18066847192985300443]},{"elements":[9184823221361582966,4767786405185004644,9827047623720647370,993615002460432327]}],"openings":{"constants":[[17349033216549388077,4531265915513544523],[916902903814173690,15940026484541953533],[412260892252428944,9545562780779646221],[897424224544322263,14830474474333372088]],"plonk_sigmas":[[6667300083928823464,4640893241152467444],[11918064290744892073,13204256122217896892],[8963225518222979401,17013768278630405740],[17179905827756082314,6550522019333089583],[17037089245057924433,15182516095085319016],[17764616924425582738,11443028132811261234],[7342044869539341536,5218873279125798142],[1592664915364840530,9820425801041567073],[15128340296027655921,3040209082988411018],[3972947059305203786,7508627521522168865],[11609145473031001381,5175520048538584983],[8475525019927038565,10151560329707289264],[7047422201605844753,12447439020571479949],[3975826181268572954,1331090645780590930],[13804336599698043825,17755936987670658566],[9752247660317137046,6227579838401397237],[11873343303232988857,15622295112542281815],[390387435674730461,3754390367721483794],[8988930094851669320,13673224050281674235],[9025616692260914816,2981202919812306122],[7677683816873469712,6899872094168713222],[14983029584298620811,12280167024965440746],[18177340593208966071,12653245237754331176],[14028140625734480362,531511536488282374],[14180548269841705153,10521946239566431298],[3103096542549141261,6784004017517486188],[17245040129235617306,17101077591743361210],[16257715706870963337,3333858318759661825],[13281781695691110036,7352850473442044300],[16496938686410686298,18365376835820966266],[10847658528389935382,15681743328360150985],[1464961315922548901,17153641285433030832],[13584099405953489748,659912304591169103],[3990269038945264311,7551456905283477476],[16872244720256375251,2061085717555915824],[12490746341268890311,12759963391354823160],[1579158969343805420,16476197423157349018],[6775790481410348112,16345353420507616654],[1209596901129808735,4939397248645295396],[14322852587906115086,15076947414720434300],[9978151164487027615,9530728175926207994],[17091420711997030111,8968926993966735487],[8103340714581034338,16683101433191111714],[4438118173797147142,7238878552348316498],[13667143833222854957,9315704324740835554],[10942319126833766607,7043383507312001680],[13252806546091571204,8245166392796664423],[12150407234735134725,3714490799769481316],[16501388148943829019,9552271572269968102],[4344668681505550303,13946233472356795644],[17801741495119091400,3288122622942303190],[8825396854600663224,8715024719280412673],[14673428581020937432,5701166737865101899],[9139105075586136138,4066081141195798629],[875320947346579643,18022700044442454123],[12915656208249600316,6166576276132207859],[16067594518829305443,1017238108488093317],[9812587948372109669,4333207290797402420],[17163514735289694570,14887963929132116578],[1513775321374115115,11660895322934444017],[6152590563266553432,7418481317186923745],[3531487399011137352,67050054737653376],[18019372427789873777,14658131390162074001],[565964944577279878,14098917063675669860],[14974686871327333432,10665615580730041980],[12045717164446578813,13413228869789081208],[6898356346286705832,16232527405527376254],[12269514862784331645,1724502509521104825],[1518986767902728603,4062240985387756432],[15718955063582099006,15594115235134340263],[16224157169498566695,14774826067628299902],[18101650759503703329,8459853811305796921],[13078648059778264566,13559737265102671744],[3733824957237085764,9992645258142196394],[11453019853193813908,7418930457987627473],[3332506343534218340,15879581944681541695],[7147198962668027780,10722247497502903046],[16258877024922898715,13264084322557741673],[2703261888190886912,9476109645164843945],[16991851469718546240,5544793549045100583]],"wires":[[4952256228449174295,16959965276787241338],[15314525652595602044,7208425645773528766],[10989667902144415021,7027336645614071293],[10342204922313095565,18118393498099310440],[2267598739685292163,17722411325743178104],[412260892252428944,9545562780779646221],[12746465449078383127,10145583419767357828],[15014064188763675290,9421250676095951611],[12746465449078383127,10145583419767357828],[412260892252428944,9545562780779646221],[15014064188763675290,9421250676095951611],[9313785568427474096,1120090026448725118],[924539732284720151,10928947699059197399],[14788385857615279879,14651845999800553706],[5201824695138411790,13530628657441861504],[5869465561594541857,8639497617708160407],[6611369139443033887,5962955449280346340],[12440100777928483520,4006898219478367871],[10321289943931790789,5620815370575680320],[8515635743424146109,10506106534065710073],[16179347699230696901,6264084295296942785],[4316772618083158039,18466548984972298],[8060314013723384094,13335086975807633604],[4437193512629886383,12449455942804021926],[15194891256204039161,11661430728993401847],[412260892252428944,9545562780779646221],[2629252874566019905,3756027362123494255],[17824144130770059066,15417458091116896102],[2629252874566019905,3756027362123494255],[16799566183135120135,1516817070142783272],[6006813652572348629,14448017556569042212],[13776526234133489165,4114350665477316135],[3411708959268810991,4666160303190647876],[11368056679121147995,7452716252121436114],[2804883949832195821,11024660132515971878],[16824145252774232358,627350304538048577],[11168857793008451670,644478256960122787],[15366954426206542294,17238884380733165903],[14858419763457675745,9969979114329551116],[7538092802218432649,8472632689558231800],[12733712004372973275,12902322884606556767],[16196850042347787935,11152970904817108361],[9587431591531111823,16683171728619134160],[4540720739702231253,458427461063126689],[3793933323728419265,3370882879100171400],[9192707161605312207,10306134179149041201],[15591701697779382455,4877678820281176201],[10596487005785543258,12565082770501986587],[17602789217157011670,10332186010839783772],[7761317465247036287,9523936108516286198],[16412809947155557927,1622849367816447027],[8694127692302920037,5405394691975469945],[12505732314667964831,2138299294710878916],[12375493392901316110,8224888386738363557],[10164173304829462718,8804431241823762149],[3963325322221771691,14615529339574908389],[14303194683886275449,8048291006658498280],[4929842749353839069,4103249581694966552],[11872282228503349986,11879112199708054145],[10489244413339868599,6917740339862578860],[11706848045253507034,9905372495747817984],[2127763992199408176,7116391265960358939],[7032325782892298856,425608543461263420],[3151594734459295863,14873958705794193090],[8570079760615644166,15990009980332021709],[6772031096571013062,4324407327531923059],[5055171964132759844,3100570009614389702],[4216901153087465018,6564600172536372459],[8987317708728647033,12250615146728256040],[324130741922884682,12180426383651954425],[385074638593968456,754026089905102643],[11072456999808222011,15856742477027936532],[16638065018011379295,4396847272770320480],[3478711372994889030,6415505178855919095],[12268041882514306361,1510647203368644507],[16526578784471432668,8454449961134826458],[11117176778352273277,9263381050582771195],[4989013560635569450,13039319215415625114],[10685380200347513590,10413335229021885117],[806438350619807020,15297694477327235897],[9334508349639545463,5147051183880865925],[9257388810378350488,12985048491254113824],[2654670808442201373,7033927246282183099],[9196745447036741579,17340219082142548576],[17589715090919622883,13612156262748433546],[17497798654522762524,5327548839305587676],[396766558977058979,4730906475900279452],[1937517186247181191,14623152686020754701],[11897468801254102575,8088404453636645735],[3938319810676895676,295752834819347817],[54776286833434086,8563770065705162140],[6261567072355596544,16643373498403138900],[1948829262418821065,6306240797524876150],[807277471481988421,11425640847170735992],[17584970050246636139,16671921551189964916],[1994562054045680946,16625948840936880995],[14480993610534849293,17837035031345497145],[138347452336062058,1634729654094855599],[15520170655185613621,12265366031346110832],[15061653910595962104,4511242902237198164],[11598920070015384110,9983502057002161036],[12953857777812170657,749550168692714927],[8505279551440610324,4923781836314104947],[1177161818236161778,17672635546054082571],[3465368135027709157,14899541799252788880],[13289692656467028361,12947059938912964102],[17659432750192547214,14015617873106539027],[4394266340149292310,10116165085007881037],[10411729139119176096,4731266345814726672],[6337933150461403434,5139237844798413702],[10891516159827647606,1317702388771543298],[5689473167262456318,4080351542716559062],[3728920383757650238,16253876796643231233],[16604411226086407425,15854933300754283091],[8899786721848084099,16616823266396822541],[14404972544802744231,17275252711034155287],[5136112687767441214,17901304614230079140],[9842306377754910507,7139423574572358557],[17753250647167190034,12152309783371492543],[5600398617936606642,12927480218537754181],[15960194584729752487,14926026910926403225],[4042246646158486478,12549583989312013679],[4966055524654106566,11307776048865628030],[10964011050310771981,4509354426316012034],[5825683295112842039,11844780321358883909],[1020307918528214075,6897501809340789182],[13168038810062381941,5482870153916988894],[9841056102617441343,3712976035085624231],[2439624689032856912,908743350544062129],[14898192608559832350,451365584514592567],[9568377457844179164,17890404689972910029],[14841798317534376164,5396842772938303533],[2494387758858560004,7103374839436270915],[10614117319842407715,4557396676690522241],[947872026851845637,15730389183512946100]],"plonk_zs":[[11490383282571488371,3539406846986332209],[12496643757551167612,13956534115531058861]],"plonk_zs_next":[[11657694372248341012,9589701450396428414],[17635989374652880058,7762462469257689118]],"partial_products":[[9195515146602327057,3349727152133848973],[17149140684228912288,2154273861109926443],[11398185753975651614,17971438636154064807],[9386679613335331507,4758672079593162321],[18060443055687348065,2561308451750109902],[1903176115191073689,13122602202725352468],[17862953162123511912,14567125347182765039],[16015074912124461650,1487609013001911106],[835837512558913227,10984412881986814104],[11460169913679748396,11391162634578943144],[4926795181259076589,4895464246463944003],[17749238547926199278,850757343047642538],[3116593003125719352,15143714681573993704],[6521374406652422797,8460190566630359505],[4400238761678682311,18100062811738089048],[318532579224506328,7556765769456618852],[94902752861737935,15020367068943378672],[6272895892986333090,1121305451751822772]],"quotient_polys":[[14329054937131854036,16322640724582149326],[6217535699149466988,9313976140734391270],[16824202681750990533,408859280065794875],[2304367049265015979,8649483430813351250],[1050674996825035654,14555476525297456980],[5856356011865812855,120529261850625171],[550365790927613871,9635871962657111252],[18446744069414584321,18446744069414584321],[17418449761362015189,17723800759402303651],[4588874945543145169,11965196975344255431],[6873262397016547058,17852430944542341979],[13822772656110648082,13238425133525627486],[7004075907747005508,17065201321914083009],[4669448083137589556,12914740182976751156],[10257386963966658508,10700739388019966979],[18446744069414584321,18446744069414584321]]},"opening_proof":{"commit_phase_merkle_caps":[],"query_round_proofs":[{"initial_trees_proof":{"evals_proofs":[[[2798349140958737867,11402050283750235851,12747988527702058326,12747988527701968251,9367940043326552873,7661457875050390066,16816562301985325900,11277237031347215956,17172013784425827956,493537568096432306,1911014821517790369,7810354360356644764,14034349106607751023,4392080557000570162,13554057249397764361,11372252296238619380,2179416078163845382,12314703048191914090,3375962635559705450,13094979000613040238,771898609791322852,8662261863361449723,12115570211272634619,2748698988585322428,8654155167507735552,8610167700604255156,17415423868210830323,14138638812352547031,12794264809952467586,12659291406482190036,14110646280755534137,4862700735630270791,4773655046317580158,13171184637917899749,11439608648860649581,17002214378262878319,6117699102053096017,6294980664279771155,17745190625518174333,18118840664110325867,4987264775474417301,6365182085185984256,12670635590861376344,5913918849302577749,2485824864010715372,8898097056272380868,3515083193515056615,13772967795673832500,10167164068816872489,3001399727897820350,9552707907185897918,12330305021936729268,6318525393815789406,12130559610978775160,6748806871012590115,16484870329093721584,7555845492922051944,16511484423825100622,7644004355223832277,11907631259742154639,8435608271310330001,2021096432124887593,17190851894324482003,16216091117722175010,17817215268303332264,1158843275819434370,9868914992656163126,12204787186169281700,1134362223879725465,15371094830274274220,9645512239121397362,10264451762085459952,11932321331276946278,12510548659363760220,8211079015171743307,98604029304691896,1709976595098562965,467882946297425948,9163044632151455580,1325546534624612736,14991626082040129402,13787641391316770987,15289956220343641118,9773745738011942214],{"siblings":[{"elements":[4137250290498950497,7044968094742843526,6132795261692613746,17613690852564217922]},{"elements":[10866503738528739597,488999660478424691,4680620550068726076,4667412765909904450]}]}],[[4692234043763446692,17392792612739914982,17621526616585359025,14566333423046557167,11779957727576245626,12747988527702058326,7098784428632413525,431998086794074830,7098784428632413525,12747988527702058326,431998086794074830,7530782515426488355,17817644921775655178,16377670879728515472,17304737302036358369,9997234805008009791,12936232414734136383,1714701853702888855,14549630574931804147,1806450343726864579,4415573894879821211,6531047905388732436,8875159573843764973,2045394037601678445,15493563117647051540,12747988527702058326,5009599650453030404,2056418698685497623,5009599650453030404,6149387023238338749,7766228471571072004,17462809226182207927,16399682074653369232,13049713167098919001,8369519204991804941,7511349255341852479,1027116176155516049,15406481583070797551,3136297573490773887,5164365718799028652,6899318942593611639,3924631155886904878,14676020031034947427,3016009380335349916,723726856518242430,8100264778192349078,1897189931588347181,2118915354205820626,2725225531175278673,17297506745234580972,10989822229733844225,11627774242765875836,2305284737039445882,13014475038857182603,9447927898546158559,5807435715711201620,10061504477850128733,4326463701273735087,6154475710505892927,7812844973934700023,11275648330975060632,2731803890213342471,17651108609353943652,9151849155927183939,99607005579808010,18061753477032529768,8301802856811722541,15444414372642219667,16193473736013992892,5612369500604399593,14746814192681816143,13634075515928811531,11251575197022316573,4739272230306779462,17460871344849446881,4822264067198252135,9631776841093061583,2917785251981856636,13376435707938811409,10994516326271036466,17691562846745999087,4122855346175649510,6612030297692188831,2739447168407292127,13954110964965554722,8613641652038904454,17348519704537266651,7663580075155966073,9911789260317458333,14022923068464085529,16217745859039781532,13704838662571707233,2268511955353566037,4872434391960456293,3681248775578847315,15351050212025553379,13731135877054159713,2379197367432381919,9534890531228274118,2630496047469647719,393494737733583575,16287766750829284119,9392829795110962064,2984934861180191678,11697794226433612797,9639671195840069909,16822647485504790257,15754345197358752998,2951502938435125670,14626243314975351416,14834615096499230141,1416955859854413750,17439149303268517029,12229355788458887489,3327035810763497532,11892291752436871078,15398273430925819339,8753917508584014546,2594436298021373548,765315148024057614,17930186837839125511,4278724349065136595,5022820124953417014,13313048336725257277,13449260050672542789,15822956354982111485,7591789425375020850,3208570461443517647,4943634789782779141,605505306563428850,10586343648735493594,1701585055331821022,12097693106052899867,10471168983303370741,12803784151306521038],{"siblings":[{"elements":[17761135168069831358,3858310885793077573,12106246829035728739,2058601947595644439]},{"elements":[11198870833902175989,2627056551053426442,12173347194088488972,13515738457566135127]}]}],[[678334775893901323,5016993239344185069,14087770132748199906,17274360461287506849,4697926315630655103,13497846905716252866,3244187887277432878,16607215539882000019,2616684626484656633,8568535922712682832,16291204585940353624,8188620779536740703,2700451452688125146,7878200733564530155,11741382896644651295,7447618622189008309,6556314256679514416,740969456004938404,9890016192108106575,2453915070890595214],{"siblings":[{"elements":[9513853639859543854,6348455621442038860,14220273500305514805,1360504130968503905]},{"elements":[6710758790062067915,5345434817371747415,15430985111769744306,16778886434308867610]}]}],[[12019361542147403395,9282692189939660333,17935712612479725033,9574020405898031432,12096121826357453887,16285045302897819053,15541636978802769347,0,5079058113690070535,13567309426711865832,8627426386826467427,10447643636176118475,5389676205211052575,15951394049357536569,2221086528508006401,0],{"siblings":[{"elements":[526307639786641216,6191771346962194156,14813015871059902805,13352771492388092456]},{"elements":[5825481590089362135,3334376167476817684,16556829564046151855,3266684785706209384]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[7523476272549932176,1705103449660277401,15293099156288760702,12987255935512570175,3039713492757889976,14985757517583705504,16463281396947036536,18264315900295792233,6504680066613424187,9818899453292256352,4505229118076793311,16254154230653914942,550150885087903179,238666642868738914,7263087825434327605,6441484448657763453,15355939849261459330,11880255078065327636,7548728907907222487,1404533471563894457,10182522683244161323,4432022267057361548,36809750190862511,2007323010200318920,6301070494907111198,15960879221924507852,14593233930602551627,4982345373759219139,15717567256471167657,8183579666651717935,7987679558430830848,9121085415234512731,11405823280825644448,2992345704242460070,12251531670671756529,3440871582953478104,10413498251129187284,8838592883873327201,11817494636040018455,15838071642981736217,7471086904416913929,7705834353086640451,2712242372453624757,8470487735690371436,7844422034034383517,18070724207610233209,393279757804776244,9329088897709896094,331608844264232576,1066771209067611817,3480750949123961473,4795143132155156000,2982840093595289173,15666991392123336319,907965401824799260,2370360989828939696,4462365789430587825,3535174951793071400,3309129590422073382,9639563199592239228,15028700162382461645,2452787324455643740,13120196755126932152,12374179175077647894,2077690105363477769,4631007874748221341,13000282569068661005,11146247603951836684,7913044235772356699,14109977482899678499,1787482884378401873,14361596437212612834,17519562661821167990,9833824996951262743,12101781288359334601,5228380011625318485,5893472767372092110,10890259666607746506,620986562010665082,779537309370562226,3709390680188388247,10462282883827954253,2335155504132361143,13820705883305886677],{"siblings":[{"elements":[12177780083273276305,6671666562823518568,10183936486724414571,7643355834372816156]},{"elements":[17200885959217346968,18203122369288440933,1093813852588954452,1807294838185915938]}]}],[[447746370513897016,11537119302688913470,14826674177559618967,6333164933826111738,3586052962943761838,15293099156288760702,10962080588434602734,14548133551378364572,10962080588434602734,15293099156288760702,14548133551378364572,7063470070398382985,2358717621974867110,11341998461018381271,11935340033607927162,2381064560205408285,10010769920986252159,14481640097476665565,15415642118148674349,15669747968190518848,10000743728131188421,229672800429427954,13412789376728169195,15248651705029353355,10228329622760546221,15293099156288760702,13393189175122709457,5174774728468671357,13393189175122709457,8118583960022317399,14150095878419151653,5846785828210821065,4058797719494168832,2479798807004519933,10725397762580803742,4036972449931249048,12429295101029238154,2364868872044037356,17862518422658433930,2805138789578153810,13632140310387056449,15570237271561494615,1400526684540860983,10662747307560101771,11042696972217745305,9950040599589825346,898168730019195713,324739935458913606,8203545064508106571,1541252561891961231,1918609889785495750,16660614078724711611,15881384917482330083,12337368518226002443,12029869353525774987,12255913544055105824,2584450570404541739,1642156486903827580,14010317031496876289,6167519299440640825,10907817476936222270,62631965213437130,4708628562652930746,2189721353432923955,7077395955043939342,1443992241526567961,14956725495067584816,5601886941447449695,16745023892596759904,17129508653388924721,12951530195210619841,6164328487922503739,15825978887807154735,9624919906094093236,2043115467341197485,15339312509096356629,7193966096902587845,2541669573608486205,5874059361569502062,11944619607981111954,12999504309282803502,15767483206209061353,5520931472300467393,3746958892835895373,13145883232382746049,4226889332653959937,17531149240074063659,6936354367055497874,11479480797938401511,8758400343605775188,14700806059000483290,4709814140556383019,6245396847981701301,9261614986598787340,13405380730350342364,9108039652957293150,17895659708836913621,1763615808475863844,18284556909285612295,14310061710286020875,16240759423102733126,11895525221477834430,18325974622833434348,14854670231729490273,15310227429665599524,9426711398643603577,17712999080654124353,9359901647076318178,10972263829477413605,3496606764872999935,14501038911647650982,16136821734471016425,1589021300569029785,8713900495604040938,2861297418725355615,16354901909112182945,9443995582144899784,12973743699107531752,12963534564233516225,6429969124240979884,13993950743254940645,14987854860353360022,8261487147139334417,10415580835907558288,4368261281876573884,8923256903611373044,6951670841892697487,15178393143754571451,10437979043646658444,11991941684286431675,8285705513676956625,5181990853866061475,9453858072224575235,16488784523375727177,18105160965697734254],{"siblings":[{"elements":[11147469644570675970,17406638209412724909,511797097460678571,6511699226080237817]},{"elements":[5672650627284989775,11218623580893195195,791677742975974359,1664938430405218890]}]}],[[13626676261074066320,12259403042694778762,5251598425522247845,4332965515801018527,515834516956139661,16091056332381019277,16781064280586565105,13377762237073213135,7237735330072997282,5119043364238339501,2538822439397691649,7637324557120966053,8185105776318845567,17162086053871040570,9894757903684215220,16389242239662623873,3581026943572419304,9067471681204953610,7474093377477896286,5184381664354883210],{"siblings":[{"elements":[15596626569017254932,4537431386945218388,17172746941185092381,3422766264388898905]},{"elements":[657553025296085630,8312555740385137213,7554374797952768178,3537704074756004062]}]}],[[4416715015238990773,6510668973755689299,13238030903932838363,10810347633756755183,10763745998122298392,10802169920225533980,16776093992968391706,0,12668063176989546503,11059448967424009253,15872717439081182626,14269399245853843861,12362105048492021888,11033355095362567941,13420023639274076675,0],{"siblings":[{"elements":[4206284984697972201,18267689104470375019,13901862003892750355,12461057118622905865]},{"elements":[15124046445069906725,3973995633108195233,5146047201303758715,15396423355846249340]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[16974736857611946164,414052696649986525,12761092839875154637,9431536526695835908,8066269832405000049,6617940434292386206,2115246544883577496,13041377711437924946,4023632190306725276,2174746142942924835,14679982990769819478,8695652588240814272,15830145196305377007,1136917561635165992,13357988256480513568,5491733491994559067,16208148765543623035,2536919017071227737,14053697728524065720,7077964211021427779,6879148849024430641,7690941439041135414,13204069662445639939,14995635571442170071,7000444381605001746,759581653767223693,11464948277725630061,14923327604796330200,2626204616781702775,15974631892474823435,4798663252677969529,7332596312866058818,5409933776576278994,4310253519130264076,10822170365104222825,7369904969893779784,2743172691778502610,295276490182242395,11015396879504278857,4714270146378897545,870000179178164013,7982578289809786197,13783656218674203664,11108506904592816772,4388350362923766940,3385711543549478,1099720506998725390,15979897623278725727,3338357744236775649,8129093416062296678,2544535377654103487,16953273179299667168,9510017786568737935,1298066524944112260,3557154771275062036,11291486369927858242,14930291685698976858,17604722729163370332,18332845761885992134,12591736226763271493,5606610490706100355,7448609692439487721,3231324665068923828,16991894757525736895,13795361582114982346,9216868284477811072,10778011676360696208,11788175343648351164,10757554058893756551,12054611803137782993,15670849622784377366,6103597617718796350,3445598223491429551,181494422334166544,12798786768952625247,8023089027650085476,8739991505188576143,3618727145606412232,5596523746288584789,9503448711294795701,2786485897656100838,17426839895816794114,1040875946713990989,4740138127690375870],{"siblings":[{"elements":[12146490599842533130,13873232037030011879,6924226746478176370,12732554613912801029]},{"elements":[17237443820363366542,2420429222455719364,3676425687366728082,12257612414054404205]}]}],[[7084471115499804056,10471190737973324631,14237245124059206935,17373564301520418090,5592391293065741633,12761092839875154637,9518142461496258184,15110533754561999817,9518142461496258184,12761092839875154637,15110533754561999817,6181932146643673680,17881967084318446715,2137362022686801543,1185021752346791514,4486768518517032638,2880975909205686278,13952276460013350167,3294891866730315682,10539606590453484421,2571273826201259148,177901758764486882,2079999632658664162,5839235108795559079,9027653978434762856,12761092839875154637,11873375810225852032,2454285719246030567,11873375810225852032,11213344687880749255,17293178506215553958,2236143043443285169,15340603978557237759,4149034775925044179,4147694159202424792,13007597522571736748,797524548591913104,1440568461233905235,2260204341266722987,8426071074595930454,17767091134474629035,16914879160092116708,2757450955201818714,13462515372089515167,12542264479442237246,7681040941324886076,7013446396595945863,5599748232279858138,7630963574137052379,17462603074185490587,6205775352123708552,3448882959252987461,7244936097675915991,612106526785378007,5251857097881192979,3841177803388519749,2274449050486464955,15270249601554803119,8395534563648153836,12126959719146336579,16493647744841764664,2613267469636019668,2074939277537916245,9833911923092855344,12148297722247407006,10256871700223008055,9398127902325054002,5665258780775441003,7823007368028548991,9726916912914006778,16119723271662172879,3116350485392257954,5294210918569907953,3615027278797562928,5733355700504312925,3881391371502020852,16255081286400621305,8883585670726765655,17712768628298121851,8981785319566442106,7644018712234980506,13258135980344218615,7491150117824668568,15529437600752462635,15655321953091493424,9813528484457983688,5424656882682454565,1424277097287406003,453357785205227562,12280433548005485643,11625521342378992358,9551790503679336123,12185907235227959023,2844383736016047966,15796083397499710080,17717856662826897629,7060643842289079501,16824631940684951065,7567699348663789121,8137432891283283381,4589297911637402290,18307419010955513123,10739707719567446371,2812786701574580837,5009545188859636472,2734046742201856521,3981642213242213392,12231114788127715713,4584572752883283884,3896261973954783497,13258031428792930923,7787584070029261008,3707427910219845726,5635927718121511395,13270585127782515150,6001014861338038165,9168579923454830866,14146843869636697508,17786217532367090289,9445062102832951629,12763371280136489671,16447690299157621472,5728167144879692429,891785299698586159,3779135634335193328,2637248843531941272,6050470267261091314,8166697253723286372,8014872454615431633,5033790495663167627,9418966051588644856,613680670022375676,10378808034570718611,11973524979724363711,6619431694584962824],{"siblings":[{"elements":[15138820325720989761,4526242898992923877,1792182972993992413,18151497779571086812]},{"elements":[16426133333479361662,11816804671268155106,16700607488075962603,8126155144001045287]}]}],[[12592431077295614437,16897946993006499128,9180634390649558991,8917161721540816059,4349717581948581025,12406904719013826782,2423775671005458882,2884439322613308042,2975952486836258585,11286777084892720722,17245873274249427953,1467619121806549478,11990907714371847111,13012052903821059021,10180760623383327833,15957891539082150180,14776074176626696296,17837859041960194000,1025371103506743365,2577329270513608850],{"siblings":[{"elements":[12129111482647884280,17805052612309110011,3692398404854287683,14267370159282252352]},{"elements":[14308602126751222637,6405755411086704593,6035514811573381427,3405369785854115576]}]}],[[3095755280417724692,14652927580039906836,10318716838058743267,14774078561941634954,4619180097174412154,12069737991825850697,11632688690573607411,0,15044853820879095226,15481473847857859173,1591351196345239066,755002846136570833,272203493909851954,6260671474364150221,6235945141100068366,0],{"siblings":[{"elements":[3828471956353803154,10895964371463325577,18413181241531627786,12355903391564622527]},{"elements":[9783981144647943940,3893189499499427499,2172674127799639564,2004189571481519937]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[3224450578647075915,12165712751178440782,5633103419006680988,11493295134337342176,17326254976767111726,15040497768065427752,17068747695981096728,2070135021958711056,11266547947368074009,17196201500327856258,17880589677582589285,14237004209817874460,11084311560596369096,4266574937343165060,5722366348059158318,14055573689545109074,13034681062097938582,4756471198169320681,5595050181858555126,10368679253103809395,2243893450744688687,17107979679673729713,1291822591423251229,6630010511335148424,1138906968938915755,13806912379760342367,2613038345576034901,17561849880319681322,1601130326224471768,1597531066573998330,2012084127101128161,15191364035229680637,6884259991631809435,17196068475351035883,16413787052602206780,5252023353830006820,825553712506901819,3947181967997444685,7257381028346369124,10981873135685283577,8352848301710745072,14004197552182932012,11245447532264667700,7080123586924873668,3577968953845760945,14110628317847127950,12732951413930286077,9925444275789517227,12967465905890319680,11396479705777394594,5561421826650650980,16245112556402503616,15228394940253802153,6426318629695872151,15977843601468538897,8098285179979927422,1929505969672845131,8112987869196542195,12021566813041088338,1114467968833865888,2611071761440494960,17968880708511351540,13074193547243221494,1059703104997270543,15737059687084314141,14794946844456905042,13227044856766877073,17143217588648521766,5748454528369563133,12685039917954187917,11288157634772235832,6179411481163140015,3874758693212010225,1206384404526474746,4599443118113865083,5584734463373381931,6136611417086052441,14944258110498715822,12474883356910797772,14308946048563388763,13137334755331465236,13963597645627481639,14465254100735638307,3494334304389204700],{"siblings":[{"elements":[14558427021271812428,2889616159627138166,3028504079954276941,5281229060922485517]},{"elements":[14116771184823831436,6357576774383995688,13501931163075412498,1114208703580065252]}]}],[[13448280129321627798,14184832580226620071,4264760999753648961,8684267825863703316,11540096098169847035,5633103419006680988,17929086713287469260,11022438742042731974,17929086713287469260,5633103419006680988,11022438742042731974,10504781385915616913,10233299991856859622,8096041051817582124,616647339418745235,17702256353323484405,3401807163073704597,2858363794882528563,6468473530378188213,9432439911715600556,15319531969909672148,3978008339442677304,4675777195118948063,8570244683106774459,13585257444459381479,5633103419006680988,16665733503003146045,11804246878047943203,16665733503003146045,4285274222770811137,11760308604722249425,10207862365438598523,12212890942095567435,9993158262681182159,736954933851108145,9672950575386075303,7952857189275572838,18283257144281847970,3593526112719002767,427775632172508153,7754042250414149527,9694557622302150389,7099829167389618045,15777519981516555839,17493605598880637306,6761961629305837681,15352357082232361981,10587216098471322447,1186407845470370944,4963333110095360289,5183020716315664450,5703057399647066411,1654005320245959858,3947216947333041453,6783974214217163215,1689013489307070514,13979456232858178304,3935461540017849252,526852840254096676,3037366594606732801,12264182439110100477,4891678981289992825,10683976087407861194,14381414872760763757,13023867804880331183,9291318119038699956,11309267658680205996,12096665809323843806,13800879323908434913,7174327047092873001,12306753553916010947,14232879251003089683,18164420531977468492,10953775806891900286,16259877793389096518,9625864982490925863,8534134395704118094,13051166443626080651,3427308511623505181,4727337347415394589,3453396440679893252,1684138076566235632,2352317457543417717,12214643506510543508,2611085211896867136,17856202544361752314,7277800217698677022,7038087010169898749,10869326517679843992,12137663335825974799,486491896416270871,4876279596041153562,18185680314122301023,15068514540196733550,11699983284397763417,5313633926205060679,18080277924750706853,6104594111512281074,14622521888511112461,15159579898446946314,6223059643385745080,626293859165316592,11067506214141118923,14049412274224744161,4343276081834489311,12709267438770432401,11738923289356649396,9027046029338967227,869807388680322678,13916569635788552983,8534163457168825665,8348511056798340915,15347654705785397820,17180257060609330311,10358196993038095993,16240222817772121908,7429053970656559990,9003081370840259316,11173882529172024683,7448031355626881647,10524525929540040437,11781343601179760136,6579149689263849340,9735029773692866132,14449081018226222344,9421548752611836587,12647656205192859339,9067851236147233742,5496246895245525662,3746197693689619493,18049022466208770944,15526349738630038124,790129979945703861,1590583770950262649,5500037066238389846],{"siblings":[{"elements":[6721740766564925244,1411408032836159396,13022652891543324015,2237109728225375781]},{"elements":[10383452154226125760,245290251193527986,17653238234088421422,10435157782398094396]}]}],[[16483061535924964190,13557134918648876816,7403881874128823226,11072676751520432583,11428876028072255323,10076334620903331726,9596525855754304865,15034853723146718054,14072753950919930992,8241911479551493370,9756525666053628950,9060646562795112922,12926832594431518365,14389399409807484451,12161803597637243383,8667919567617040017,14587827490014351792,9322501349003029878,3452353060291337773,14759289936544957028],{"siblings":[{"elements":[14865082082625016813,9569258154632070344,14488743676207154557,7505944437081906560]},{"elements":[5283017455222046446,3676232639659807268,17398047539492445044,15687951544402381726]}]}],[[9703229659732103929,6148886444408613088,8166770000046187799,14855155962231547560,1314655056316400302,17713082248303618747,5821009500133507802,0,2645383426270243472,17062010753486174798,4328191916992482616,8168642126640440444,10688036162273371377,14599005827914768187,12292976416472646194,0],{"siblings":[{"elements":[826337581016440099,8742107266441883270,2187733857236384981,5964376300159095279]},{"elements":[9607669271151549695,4610572008483255233,15756362901169162034,10482301679381321455]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[3738945624800370731,17300446361735488265,15917639738875279304,4136774869151029450,7117564556375305386,15670713401097966322,8381165688216271533,6616103561609861786,13525601900549725401,8799482595755943457,17712624366892731318,17118545599583281469,991100146237581491,6035752930321192712,8266024908831034613,18064514353010328935,3964240644054969232,1994624446628148135,7737696342131683957,13493604657617510761,12370590996382281203,8394073097020065040,18283562745012062460,6603194942422814209,2531030556376411593,10324982144450082508,14030009636665866801,8517901130048984070,12939125815664675574,16304843600861358605,2298466883715219055,12488184336251324402,10985612231923603660,3938570370374081443,3042511045280239076,8171478540730367577,16057693655131392951,11774495727902372291,158368229678630360,10831030505909419154,827360893993244461,10152328350452690919,11307238070099807940,13841850883366080465,12691891050419428514,7591453740245008478,13518080200785327749,11697901946292834344,17655953453569148143,1697289746656046530,9087743985318104710,10718099400097923382,1326370504809921685,16908986449959167910,15621818700730741288,948682801768912387,11775602109313462473,15639513639876645710,5756007334659907895,8837886509164769704,12808750118480217901,11348068085147256475,3562302526915199466,6009828677840090154,3086670756891117194,870481913221754358,12245862984441377243,4244793211851520732,13952115460324070073,5544993801584185285,16653723066313937090,9145775338650732340,18188734250621702658,13427643555713573844,11494683798358729483,7381145497053006350,7707723438386994051,10719871725717216219,13294205928777507235,13970396126083246793,11718884100073064041,10310245041771063274,4668742116442863641,11041791040371495950],{"siblings":[{"elements":[4980007364458196901,1695687289718372436,15683405046165023045,12745377463045984066]},{"elements":[3560583152441324605,12581631521285452247,3424922011369377233,1328356594502091179]}]}],[[7084960479292912767,10113856666356110536,16930827229542081179,17595795979135813872,11413641985416032712,15917639738875279304,17853461635410360602,10820359551411808993,17853461635410360602,15917639738875279304,10820359551411808993,10227077117407585274,13441166086793643131,6922279639650834894,13208226628096937736,5907712514304296003,7958718539634873768,8531160284099858297,12132886358587202799,9997670503567991906,9083615694236733508,16026069845095812190,16685173385837814215,4321739241022193946,12827769716812395220,15917639738875279304,15428462316217205166,9809487963615016065,15428462316217205166,5771703705112800710,7671681842049620191,7906121383596545151,17795075044569595192,267393143160701019,13055870565147488823,10833675876607962418,10656230445922718995,3191074590368993097,10161275569941155214,5952119697128223413,2921686332779170484,2911641479120257146,5798693304743700997,8548710433550903256,4672046953109140416,4590267044312535736,6761263912919432649,10625469962512286658,10338088260715321929,12665159325225859539,2619789790716391725,16434955727193443599,12233493150380712527,3541018881139668402,5916700112010905077,9690317986464067255,16987669436823757836,14078265152103635253,1058055340552258530,1111528309983511519,2625014102184119528,17111771302692877637,14859633695942916925,12393006655149325854,16986755988351333659,11574842003016317632,6340126814180697654,4145585163176589839,11257768379451857135,16523511744299770784,6135771263550918046,6453934388275991869,5975543667593338027,7779106379135053155,7064553168878251009,16448941160245605637,7181753004963525912,17703095613754890608,4592917794041332013,5969316246903777513,18196369409124055536,158391249579966443,17166217745866129909,8366140937088969407,11603369719285314751,16799375343204680497,15331766206073844023,13571003745490693456,2285841321871463401,3287746584190163190,17659558956511152653,11729878151953388086,6651763396347107628,15031723819765623727,2539009710588176701,49161353515344899,2482042313991817612,10542781243838588650,15546976275562151157,5792107661901290788,16317246737630525595,9947445054920672731,13375261689542031801,14113550991372265461,9857360463981987336,10048171775558884311,10903961737750112547,2458821739998608501,7871027900879415019,6586892564065927186,666768622975746960,10791972611192588215,2655116495804968490,4217857328638599731,5080191983488001789,10871149695634063689,5680368691356147721,3982569629320923951,15021579494148421009,4673240442536839164,12895880157490928898,12528807577770546334,18241785952547653876,6113020987822997859,4249181776089836864,11957777857096516827,2342789664316756156,9460880196498007658,8534902169680737343,9030928585522640995,6647745569884872941,10935858241864339772,10812863755601342140,3329468921200269224,16735387407284607568],{"siblings":[{"elements":[14803494556827238929,450055207592316694,1894967607835298743,16207476689084727230]},{"elements":[15667835261289599201,7767145371646568421,17153930599471857093,6165477178966000037]}]}],[[16785113374046796777,6133923948245467531,23239295031882708,13980775917510137663,16283111736950835377,14564216948085603355,13154310338946657361,5501129881976983068,5195341718979617180,9243946101157853041,7354286834281315714,11562861636924522565,4027153467632671054,12446538990820807040,12810498970398811092,8254627704674859964,8383986220921249707,12904450598717365100,9846439282057451540,11322174034229376378],{"siblings":[{"elements":[18306019676109390948,14680311545793840175,10387309026033973921,17372751179950535074]},{"elements":[8025580057819607054,3703837812573080786,6601034931441644689,6510314298353409485]}]}],[[17937154577149352743,7317852472787022167,11538646634426154470,12277547549630093391,5529422046969641865,446204480539316675,1091548174763461136,0,6313425883616107843,13537378377563851191,14490427032985292512,13980084339088029239,13993134403569842203,9656174682288389994,5576574372334360384,0],{"siblings":[{"elements":[17055561604165617144,8094519159379494467,15342477564410000799,17068795624921149910]},{"elements":[13578991874694845848,15473742535829221740,16190801191990391458,4892732751593728740]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[4641675014424756216,7541246472772291698,8032985315810577574,16209146118383471907,10419669492250042717,13707757606554289516,16187333366426779938,11508813347810154936,11293276959732148494,17522599091636357118,4933209484424547934,17637991077178245357,17056870581881488241,13183940753641188438,1826279539176455452,10521220309278344307,13124634654836370507,5693361703730482920,15776388259230054359,4680853045908023627,14257418628542109609,8723243498124554086,8596441637069467172,9237665088636812520,13351878365551255754,7453120211501156151,16596500998285409094,6647506380656506678,6868544434576201801,1599880482129127181,3231706947765101334,4229199912657096213,556080811354941712,4390271153800822813,11695872429882888114,8599752111666630863,6984455065364979400,7950176640047926722,5845230499817025152,6098206436660846864,1586252843458391611,14440744980391871608,14872937305593305992,13525607376927953911,8563798844193887885,10796591490879791649,15472696412307025657,8713749834348935351,12008131581677878291,4940752074888778244,16648274217610364284,3105577555655157737,17709691183005067289,1489295174378845441,16858742130495006598,4007107084541660853,1223450394549700984,15576108286593129888,5683367022912841524,10310449819529276812,4472090276913155545,6685767406742442421,13620354716354685905,18306219604836051151,1483706469198388723,3860203197915893551,14841182964957441093,13088897865818960929,2157627148316549970,8082355349939086809,13017500823253740442,11638625618288091866,15374443671952868090,18207178249019307038,6235023043924961468,15969588416027908272,2104373460253057769,932279075491357949,18073033226271344731,15632048597169114881,8547402059743439342,447349086958603074,12085234537127786213,5280941428547620139],{"siblings":[{"elements":[8457061783738778646,13210996940451333853,15938804603635739927,10568167766166775965]},{"elements":[14116771184823831436,6357576774383995688,13501931163075412498,1114208703580065252]}]}],[[8010188792973257112,3842744482773585374,7546390209090338194,7425741182659883371,13280753698749236157,8032985315810577574,3256638101717932042,16537391800467168199,3256638101717932042,8032985315810577574,16537391800467168199,1347285832770515920,943205431268330185,817078112476642311,13615511243351118591,3657944875902059,3785733139045303782,15374988587271955031,7936077843260126221,6882627534749358970,11558273623746249461,11810456387520511713,2887943136779364097,3878509076604029953,785219396593615718,8032985315810577574,223152960416715516,1008372357010331234,223152960416715516,1548487184695343458,8338608445803738394,5335626105656235327,7279807545944842976,18433809971881447604,17814161264318242845,3271175230321740155,7607355019999535087,642426149946514745,15578950653981973977,17435593682839560574,145526001768782743,11219654010756190562,5820967802994472468,4105696748164730958,6194616172080578078,14196127456450335368,16471829041394978180,13652472042993599507,2042608223347734408,17336955401564890154,9359894901721329205,8195207592506076209,8905178487545813365,4744465467091780850,4648649568930163801,6156502093220931121,9030862399531382084,17982156033129478682,2086017185804436070,14754376811988408267,14023145686807146284,15903102906504695475,14100257454231486415,12965307336705716628,13080262576892084967,7245326687556566663,6755917961490415627,2431685953923805831,13895871014978413788,8545340344338014659,7833114144550840076,16144100542807149591,12446122693479537867,5169375990252682865,14823247886327520881,11790931910894748235,554113738976846393,6023772114741864143,11363606671189911980,3813626095981092022,1135181792867439175,7554387368129652457,16847429451904760496,14744140844993578099,8289775731651902910,11814880829704306128,17736014446132522470,9386952962390659543,11009838595194111343,7475921046725992018,15532273378780268861,385582519892404461,15659739823833299359,15868186900838247374,9824062511970852303,3745526847512675085,9476453416010053941,7659357311112010098,13845699804144110073,5244804069055284413,1479721665870679667,452836165222150879,14250942583581325725,66661741193283011,3208771589152359721,11519251877941748101,6523240819303690799,6630368115495318848,14751785772281438724,18031099005186401127,5757830441339492862,582474251607663283,10853971473616546153,15952257112188980645,2029490895452761667,18155072651444505789,15898944341759519053,14107821305924992020,15240870627187219312,10968608108088270282,15008930486333103995,11103899177648499260,3945087333164221577,6945933121402230703,3629652114015320396,1553070786985095669,12073797185131031563,10694023644936360022,6018745745528429960,13035067249868441038,13926856518327896978,11099386739567768334,8568676606974650548,4666520974673015159,14889461659010376738],{"siblings":[{"elements":[3361413513503032265,9615952800124060694,7013173386803620377,11017592936416639232]},{"elements":[10383452154226125760,245290251193527986,17653238234088421422,10435157782398094396]}]}],[[6679291376052309660,3352901818933459036,12193983365099544823,4307010120838141831,14145284843323352062,3871574003665147852,17971807463952286890,6577533246420736657,2235823202637128325,7923270229988803180,8797303757176812142,4905825764077683873,3041558158184431792,8326790629331456503,2136065827242763095,2796453693185128403,7924028733412472561,5016931089636064517,10262691279210631292,2931409546831806342],{"siblings":[{"elements":[15092188013371217602,18423855943958972070,2559921662305992802,17585070828670785259]},{"elements":[5283017455222046446,3676232639659807268,17398047539492445044,15687951544402381726]}]}],[[15131930930732402706,11373588393144883369,12873700339531746888,7166076654871748161,15503068642368558105,12649013580704429585,16841350626631776684,0,14982922736020729724,10790262999621960710,2656247863354756955,16384710491475709585,5498322021379187696,1124458602433589055,1925773334528364817,0],{"siblings":[{"elements":[12416598478390441906,3814529572314172851,11141209105330732708,14643953580187963852]},{"elements":[9607669271151549695,4610572008483255233,15756362901169162034,10482301679381321455]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[9935326540583462736,3497612507454159759,18381414641511595632,17996796666372322527,15609136770828890706,4141185000390180045,15632662052998794272,5790626945531343049,8204042032084149333,2898037818030631442,8050052873783942882,2493451244413222611,3903097875051544934,3766286922247803225,14435909278177075595,7313004317099637386,14700264812859725212,11874364493720520552,17760989663564458113,13190004579962412394,2618310831081090932,18350349931130879000,15915919868772477670,11578403778201278153,14671321824740658592,8365346883213120452,10916637165114756879,504158853490273606,13611239658675949314,15140319071634464004,16469254871821530659,11447042718198947141,17526220999740510131,11820274247616961234,11308406488040912356,17147647037356031572,3433398042297988330,9386089768693237136,16323451677377030565,16814517827894184221,16340844598565373164,12527025877254907595,11723073945673288761,10181280894825820273,16589989580054700318,9196298143260692365,15815837704325225636,3319536502470250148,6044535845247914479,18005934949079520449,10427033229652219418,1213704443970178676,13789725880379387773,11528458101557533946,3075082199387899021,17965551074309262679,15672978261145771099,9711797717762522846,4574732964511821021,6800495125241549781,17909647474658978180,1341816607782771502,8121126491204600426,2620294273053900096,1703160850810557929,11968207208296704448,616224011029995529,986821932040877035,12558763455526452588,14084991041879591851,3814324929852519449,8176217945078967947,11611247295581883274,5181612315966973858,8609098146265373833,3763596277484323203,5574467806664831843,11181275800735155895,1153605485281859355,1087302977587748470,898695360819312155,1329712340969411532,12866110739799765229,10856597083376047337],{"siblings":[{"elements":[5608747572853848371,11534208655257009779,1860547388565115924,4125903517807611006]},{"elements":[16360478778702248201,14213185250312606651,9086499200688171136,6646506645725327276]}]}],[[9325556513423454242,13172612790654263959,10034669222144459284,8827283788248701968,17985802128526383120,18381414641511595632,3333787408803602667,2872845467915401466,3333787408803602667,18381414641511595632,2872845467915401466,6206632876719004133,3141965142347359602,12230540401542177073,9391826104302564721,8474483109279665452,17700168472036050777,1855788118496156556,2136876288905861938,18323509815097766523,9152710895088980669,1364410923415614090,13135932645458666581,17553996912994446794,15286111221353409732,18381414641511595632,5918845496573231010,2758212648512056421,5918845496573231010,17411526210392469265,5504635653792414737,6530773471310439948,12865916400914318966,4822114793563700035,566751378088559191,18407347530860755920,2892993630437944145,15218978790959646614,7134255894878956949,13908271166471032636,5148050160015882565,9906018521156069555,2983143294060499056,11006701965669728935,1522275691023965237,7917338574934055737,2747615477881033464,18331041093908374268,6969151907394354314,15205722467893679128,4468381432244935580,6129502946250945647,7726677899028922418,10816032555918230135,11344107450949355343,3064260801334861512,10929958285969120402,12764971155568344893,698168413501960917,17086211676867877152,3268491755181330949,9646426607431060974,15497750976909608943,3592625854408189098,13802436692884203552,1473951231660456051,7513827866514122580,4606296221665106080,17427625623924098181,15233881175409409242,13075468171341661437,5702387800527824821,13193594648943148714,9684883005000189973,7837933154859015459,2541143078355110026,14862679734013553941,190652713264942064,15936083494008010174,13972852975035372221,10758857533601413484,18080934971360755673,4381586519983871913,2824064466055575507,4152629368638676067,3448606715995267547,16129564898637243454,14051850294353227817,7279782698647649050,8264790489768737504,4088190489166868621,14967367895823532987,15998784025582036432,15329565663299674082,16741539184531306893,17353487718767332116,4483264520146735809,17865410167101743402,8923210443308017141,17563578170570858047,13777109563927919500,4072491779489738670,18071052211558617780,777023365977757986,11615595576505416294,5229678830299229067,11061566421325534665,14437223104637206016,13971733769060564510,9050709930357620612,110893107528112781,2688045382306467071,10893135514220116933,13658676958430317695,5364699514546313675,787921921283821611,15841370066835126816,2950392917334132504,5639522365545258207,8989973289194454204,14901454193487899295,18273476816900250301,4395457828284574468,5034346890276296164,13979963230177531665,9287712073584997471,11553628277170747196,13169284074943790233,6481390450612280364,15155996933827896289,13982973797053850486,8960178725401283495,6001272669060015784,10701345787092272000,4894982285736820819],{"siblings":[{"elements":[12413943832315327782,8148817225286658017,1648583655024877799,11957696229310797647]},{"elements":[8871695588031639576,5579372016518937853,14746829833672601330,4076645109767800603]}]}],[[11960935028747907705,12200082214164790838,9594987694140089852,11021477195743916586,5449037816920412739,1090403281061389802,6568012230766423544,13656456728252267411,3588214958622627739,3717797907378684995,18101675939511118872,13782409808084260781,2386000003730244041,1691394513560326627,4085398058927651637,814832576237162743,12557959730066801299,8242930518313373566,2764407051885973920,6795201948455412486],{"siblings":[{"elements":[6643808861563363689,456358264961474451,13093263056880320268,14710355940566065333]},{"elements":[9777955592616378163,16357911707549003248,6884124452025635339,10206596147644096507]}]}],[[9799906746785790246,1179787492174100266,3246068153302509994,18045842684370697076,10858154115302125593,2097465098654207117,17946411604154575057,0,10894370091119062608,12551245811695098572,1627691979653454167,2402958882357721260,7505830438523466206,5396831258432656250,4612606640555631052,0],{"siblings":[{"elements":[10859964420999634633,8961392804088950062,15531943793087719243,9977421857659508854]},{"elements":[10917695442368160527,16000301251105568901,141408838667129508,14071022423379583171]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[16924866050735876177,13816519302097419917,7464139112843182046,14437952329152815507,16102384223791600321,14810813990558044111,16662440353177875149,1061409571699162904,7373177684445197294,8117396090517610097,16950522942534043099,15190423556831993418,2013849530758379249,10106276030980799921,4688167895664468573,11199520023691915745,12916963807333958703,8891629328669208614,12116546715121470819,15688770843053582561,14350605526805601296,13147171646478491,15311619194950304883,6242159665686022641,15732692263219784389,13119615053780272570,17283500801830056651,8669172947497892389,5600112933692439337,11603617635739004623,10958013080565881122,6756936642788511901,6350951779140749038,5702398593327775113,5132363453483332176,8716842319797456142,11624620380491791092,3974923074366480131,379613444538228148,10530635117553576928,789756536524334219,6823617666578700574,7561420934971151619,12015542148157684358,14637549114638859077,2797283815309201126,3375500561784065355,17055717231604849835,3707972013117512372,1663599290483210682,6456202370538400436,17451983052281845536,11510162037317562450,9805177456638634146,6076873354448617196,9655526888190138945,2676435616420129592,4185640816350990950,17645109193608274006,13809507359805699769,6654978868455806684,14694826297195400326,12182790477580287390,7828078155477120532,3723899049361826298,12103278845470960974,12790586648153874605,16430188636519558554,12857487921086130134,6350598647806992999,14816410711584616461,9744095875078809856,9425670397198882701,10776752048143541453,8879552683345551973,5102716046529545228,15326394572236987555,14429893580759812947,9222186179475572142,7229097401750883501,2013355818261223436,4799155268953746556,2985183418454777881,17703115347578512655],{"siblings":[{"elements":[16260818643770995991,4039943982022423016,10581615478270533321,6703349476043001264]},{"elements":[14087148344668613763,1774479748128902785,17398878651719132826,6925124511054673158]}]}],[[6209288695096023806,11754821224810616127,1614401657169185710,9181154449473058981,12642126230284430873,7464139112843182046,9476504716966664158,3671886877836510710,9476504716966664158,7464139112843182046,3671886877836510710,13148391594803174868,17495545822936180570,6516191687701385061,15066359775844306552,3030073430126252107,8532181287732933903,1313587481002533767,9493742606884344751,17586085591202738522,6264447597434696140,10877981861721575981,1334618530452748190,10992830512929337081,11521925998028276125,7464139112843182046,9895460401253377382,2970642329867069186,9895460401253377382,16109328827144183626,5497643781745126277,18057142950217783128,14522847474529632700,13097711878235570421,12086037474820255139,6230733845585932320,12841778136991378628,3190325277210246329,1491664684286716652,148002031095872490,1257155954830697150,2420770718573646411,16100497144476352366,2106675872820833925,218278728670810803,2078117589628614433,341091188445453196,4895215051089187126,16337842601121009721,6259784910713888535,14190605946294603852,6539098626808445903,7830616390870530920,16822428877294974674,10102893894732968923,14209786379330379938,10855009487586136434,15140597654258361365,1375687589456746099,10201020788966058586,1728908101569222789,12918241202878528324,12883847894566567679,221714051413769091,6062654389835083725,4770464236727018557,17600367944571616168,16380085720501177475,891641706955494415,4318758021934464691,4558515869586306492,7919362439101658228,16830015098922605767,6893386434790817780,16253125507764647955,5165552683792036451,9699655801784875799,8163094508941873657,7345269500024208647,5161192913695844322,5691823223255311048,17857459491484385213,15182905265162505036,13725918933279176663,14969180915198911426,8167851283476377406,16597940880904810030,15085522102398235017,1932188458993012808,5895149836013298768,18186382947906068743,15443854059314999204,6821367289761224106,921585207307297636,14521370332338096144,9567458359470015266,962036983586204935,634064343577065117,15633725671053459130,15134450685511717877,3993977412179616028,5431260913294195491,12987751788041203714,13118196984385849144,16896172574270096526,17314786986733413771,6931759068944620513,2874434921947727690,6464011890456421655,10839122201233847554,16094644073133247963,11312728599684610361,15467129955427747502,15240547486693684363,3299165558757344059,10897258757856540221,13501692416240673099,2465868526057759935,16657200791062653650,15677148550969248183,10520872540137266405,2526848215015180692,8497622302926869767,13203218526721114609,3206274377006568104,7251698218920279120,4062608499715320317,181200523706944538,6665834494798638239,538973105167938072,12116368697115266565,7020367120134230457,7728589306877813577,6680082688451913681,13312889033346115014],{"siblings":[{"elements":[3091959662085467772,17571289695295820888,5894829594436045533,10045585331434762498]},{"elements":[10312122007154036091,9036066871401853876,3293924851231173998,15291344002345413233]}]}],[[12209599599294142167,15579673019293966890,3504865898611517094,2609761373588424683,9443895405200507575,5592091516309400885,105978785232479911,3951385541131521260,256413503178927677,4817006365280989989,5119602359728175301,14255433099954453515,13631371762511361836,4663625594950234687,11914773000920422333,3484548068247406888,14828037379031821627,8000261388845938476,14547544306015021394,12353114935141420353],{"siblings":[{"elements":[13786839653552496352,14245752951396370978,3680731626340617014,17476708230762628268]},{"elements":[1200253838642386701,16525992564123672382,1257514357016253247,16870346579861530761]}]}],[[11447564863680828718,11978281619389615644,4788767265472672771,13525559199649224633,16779946891918366556,9027306710908362023,1723889142004900320,0,17748643038785477387,2545289082924274315,4898736605780993821,1802305803073358718,962686703002371876,1906111059166740960,2953815406941793423,0],{"siblings":[{"elements":[9244182425504585804,14306684942640156645,9040285217165774386,16582474386054016828]},{"elements":[2947248167871729399,6571403784827437884,1636916778242619382,9693639526844442956]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[5476891376197235655,7044817592391507668,13974119857005811796,13974119857005931896,8542463872071985231,6501044494244072249,17280822819241372308,10053665788850614925,17448962655787859727,12336908644746128088,9143020989718619471,4743203533871311592,11333677962792045232,13893424625045704083,767953711050007881,3472634815196335700,2902869279664059623,4226328250494368377,2418764480316296736,1501861828709332135,568975573703484830,8801800562606935721,9514012360554107037,6115575755227527047,1051291325387837076,11601191339553618576,6074519755155606439,18335853116697904652,10165784017796992404,18323605521630460587,11994117291089446449,10451983568470879546,10434065730445324857,17938995950366848123,2508123549594798968,7640613494747113386,1513372534219473739,16828618817162538109,8366075947957833522,9049395889722424712,18045617055697920423,7144267989314336719,16890803523690545074,15781761522575987695,14571475745262949915,16362201857573628110,8875795807742385116,2397097127390260361,11086508766290873299,12528536250631072701,4796334215621772761,46053206664818609,55855699141615696,12822704619433111871,5230152393175782857,18340028855156558604,4982325153117195849,18144683475374954843,13809928813137301377,2031187538284433977,9072535653736593441,12622276487432996162,8839987604652581340,6940845095475718033,16000102712351353061,16532084347876329880,11054558944075828190,7559179555829355370,10125459834434143139,14588025940297167409,15578052907891230592,16440693311745855827,16867123057370125982,13930038904617907751,11354803143482232725,16519077024003978008,7359228380659898187,18264912276873600757,6663799581497061960,14594092587359944947,7904080859246436117,10453773933582997036,10399628085621807446,12434936933788275446],{"siblings":[{"elements":[4295791253590603064,17929487105087721335,2967055119325542947,16462733433019204129]},{"elements":[10866503738528739597,488999660478424691,4680620550068726076,4667412765909904450]}]}],[[16428349751610191944,3347881533532107938,9468737643308213580,9194454772744592800,12741552808537566884,13974119857005811796,10045247018444647662,4340055757567630225,10045247018444647662,13974119857005811796,4340055757567630225,14385302776012277887,15202997972538187494,12414035098264397106,6391149555208523887,15712637695103593820,16554806991031947314,15363932162293809841,16307837251216160766,6820178166180814956,17457607970083055920,16464291619833470086,13749084992526879831,9636357227791350456,14663917240177601678,13974119857005811796,14942531704342925469,11159704875105942826,14942531704342925469,13714252095155089725,11813664378122801899,12391017937545841995,3476544466855521376,4541244746607206727,8878509548685829859,18213591479499389571,11906513154856102562,2661560206398423305,2184127630907116305,1470388346871513421,4220268753331067933,10121067713976682072,14528380587817187057,16760633056567525176,16239739171151052007,13336769264731776731,6597861866224831980,1283028978560633880,2343950577965466019,14930493770682231745,96390668912837594,9674660986690554615,3312989674635627754,2217725399410485058,17217178624402525406,1270496295808607583,12290224265072685290,14803910390123085278,10223203367692759106,11308771395676367576,1041038867464915568,813178057614178183,18268779348647234996,13701728595724581165,4019666490957492362,1234706480593541580,5634977730404901600,9636573169392748071,16107612655947242065,17723319666782197456,9218105179571351311,7480356268302484853,3953131694299149827,17397482431922805387,5468481439749014787,3320365679890891465,15526222117613994762,15333645379253332801,18074859146242913422,956580594101134221,12459586433819507902,6251016581514000324,9061286157704019153,8285114808851066511,18196592430429844596,17763244861005544579,16619520955079787148,15533162835159325494,2463578269926271449,16128653967389374961,9702427179903687789,2069753350137081705,9618213279997531696,9260163586230802185,5458992430299660279,14734687379245443572,142881319041189151,3921278602338897690,1751283496631235262,13106448210476421032,17623768063489438275,16612612992753432848,6545797981497976720,9814538168567253074,8995293668772951989,7142564581237122052,3547619286584280037,11256682631544360243,456800540290985258,7670894929460168942,13668116004985323929,3029202510962705921,12132687131942077218,4898917753423723492,16116725979714905071,6407348810037865596,17895095959158463658,7249739482952358425,14259627781104667467,11093952195928251986,1607619966941010464,10905336922186469824,1872294433562059216,17731987557902592659,5781022924291843377,8720737205215412068,17707746869708051401,6069659458516403762,5534361090266582195,9462663519886507369,15792770371188132287,9616736522457323016,5331923174174154450,16132487996478428137,10413918624073677918],{"siblings":[{"elements":[18107004279715648445,9022046471554739761,10628535777396098425,3646342173473337268]},{"elements":[11198870833902175989,2627056551053426442,12173347194088488972,13515738457566135127]}]}],[[8626224241936856583,14856559883591434424,14510433262357032853,70609650142157792,16174034659731933660,14418454390764949067,10317363115329315494,15862461097024542753,13507945798989789416,16720387057277569375,2349995305872814827,3843878831202225839,13433895994438247307,4673286750299125403,5081943357741855398,16269570186101974226,9763937331882937659,14015753040899098033,14715263016006203738,15703534227015491822],{"siblings":[{"elements":[6670728329057245338,3890032036868815775,5204852498836459869,17184037003328687604]},{"elements":[6710758790062067915,5345434817371747415,15430985111769744306,16778886434308867610]}]}],[[5540625561717446836,13565743830487665087,9260613781534821868,8768391500546086928,38972992258622645,2249673905236889908,8161822641480250141,0,15511403783085944620,10198203317176541484,15978182780622619471,6024821142813512820,14756831660052634436,8779059317447151472,12681658076852896265,0],{"siblings":[{"elements":[10351626402015523140,1090234583376457042,17933840713314322934,5450821526290370143]},{"elements":[5825481590089362135,3334376167476817684,16556829564046151855,3266684785706209384]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[6081383232730957299,12231537100593663735,9028951210196915351,8712088703138035651,9062903963610724137,14941893713098800213,4581001816805602037,10810823613022781678,10527683056002284744,9898414260953408328,5639484381697087866,16770966891222305824,18434929416445638567,6686279143148790080,491853504403074652,1123097094060490,7164474011243401475,14001399934942124440,7396034798703601355,13461294301062095448,7314515545718397699,10285504105011035671,13908696317502368883,14450583084638866566,851471187188601707,13751791254782824573,6173092682790067073,15971135718500101486,3424425730638704583,16825662550870449504,8860043639039832510,14362683875237448848,12481713303323387454,46272622009596114,3868865299622134397,7839318709256588099,11081272550168339750,420101028552763788,10433317477208773734,6525270122192018279,5930444858353148868,12538389806798301654,18163560582674811737,5887848450053799350,16558427387265920577,18034348907535243703,2605978906145645693,6518171407600649464,4050687237046093622,5963396076090729516,3509114124151224074,7290578785591858856,4265931566184849255,3440580828124134820,13667716434038551298,17166286401027176948,4558731884728763100,15139969297728511333,17876202707430743760,6227397794070479034,6596022070911700747,10980467099424598163,13635995082892637114,10119407337406860624,9742580701280146129,3704230525019194654,15500214883749125260,2335077694864807467,1464783755937936701,2526849113256721532,8933147872433173803,17158092337783679004,12064424818214998111,16432666161404741044,13371433052303320001,5000196015846499811,5295799553313080541,10195625500013108630,4083106938202593916,15467334291060108571,8801034538749791717,14170934327562984872,11368817307745930282,4245340193596784670],{"siblings":[{"elements":[3788108192752209309,5764285458124953223,4876025311470937308,1697065922247651157]},{"elements":[5146134359815002436,4633941153658423848,8230102747931661415,3646387604866439705]}]}],[[18043987152862055566,9395661307624582090,14974337014595138413,13008432744902000274,17287800381401334068,9028951210196915351,13396895820276858829,12237952132263608576,13396895820276858829,9028951210196915351,12237952132263608576,7188103883125883084,8019207685689809354,14225339471913486571,4460489081414859053,3217758702687553182,10429025931345119052,14053437788015653563,13900230808170236854,12939940900489134672,18041871892853729053,5804173933261459024,18405811744809201247,13252851725664336536,8167415829100790423,9028951210196915351,9146727775075697762,17314143604176488185,9146727775075697762,1835020304349017992,7346521627406944630,17669023175310380446,11012759655770203514,651214137626484658,13843218619297339075,14680960522628741599,6485849034631084527,2074297323237370274,4261381952419308611,6593181678153395237,14495540033816158517,13230585532667527706,5817387127459523696,3491798721172221835,3259610598284956354,15141281382799505616,1953464032626922527,13018578506854292992,3116212084837059788,17249635748815975320,12338596164576158435,1649605589215278542,3602768547544165794,6563980580099720618,13044521191212962458,17623827101875869454,17362536607605858272,13778847837366784819,1708420565860575424,855679826412597760,11179934447047911303,3485133080382895833,15254274221289138110,10906597815011264171,6314742863717882075,1877652445228803121,16709044550359002285,2266359748042855778,8822085685457559382,6357743717582187708,1331585437405873623,6262158035783326315,15096351763703566247,11547484402213222678,430965096454777760,1739899234674193122,10844802456075281680,16516454448811784174,11156799254229684544,11692134775738149030,610110772407732502,16026577284231322039,495974861693541427,11854230072596961625,14815172001383231666,16910825141000906723,2326530292822083569,10912517219134410879,766815157303402396,10297694256279869562,6235812567796583081,14667088056794988148,13022174959925596613,10233785995283698666,14794935655372589888,355223846459887731,3988353197412989669,15783944165297836246,8992182141255061216,17770909890329436599,15148292523453777489,8317509124369194643,15207475697988931872,10689764731390403794,2197239732269617067,9697137690068451131,1652500765282564980,10645478812477263863,8506755266490659018,12353249992902885395,1371637607765554061,2353194990575374977,11066632261744662541,15387072104903372723,13899517894846556518,18251701230159369288,17095781701016048950,13761117638282475202,11171503197603614030,8779467352620188962,2785106140744652249,9850931350332123391,15331748534107723513,14699773274170454381,15803454211228002342,18145996184294778688,13177245765827810773,17477499918218530974,17700994801248232691,12261589986152682659,7362535829554345340,5164372505801485127,16846560777219090074,13193970652103704155,15697788547424313202],{"siblings":[{"elements":[16266350272565171932,6569453904860693734,8145183719714157756,13753840325896723035]},{"elements":[10142563739654869567,14245358600781036015,450538954486675373,18063093301621843209]}]}],[[15041496142358971828,11997049862801150952,2060245187120936390,18307743964404199387,5254192662224246201,16956305845765861734,7639416652717522085,13370095810487022778,1494731946230299253,12633445500017466164,12702993826813814296,18105559622106448576,3025073970154112093,5511826056155779869,14715493186482748637,9740675947825523774,1980298540445842258,9206568804406535364,9638501045756746709,17671241371511316094],{"siblings":[{"elements":[6716650175690168004,744865615777923791,9312905927049461610,3826250842372027450]},{"elements":[10834207845077625105,8159904053373416618,16634313070671289945,12488511571707857762]}]}],[[2847985333212898538,18026498831328975658,13056179102783658875,4814726299440843377,6931610783987161756,9083918760545414659,14359419984889071127,18446744069414584321,13696913539845749338,14103190779906358154,17947967744722008208,3225032820173787793,6167758754711539644,3151791166962673141,1515784150848169125,18446744069414584321],{"siblings":[{"elements":[374141996281365424,1398112305892191095,11725889725458991759,3122459601407391243]},{"elements":[872153634334065833,524683978144009780,2312150121363852187,18180192693478711436]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[5625703781286000170,4638184964133009474,1259374735575416839,8120578532916090674,7349452411640066693,12866562932612721664,17400698262681655041,4651106000932071082,17783232043793577400,4510327606801636199,12022257378550870614,15945891714241651745,12372853726486191986,1057815184367517372,14732241336230466170,15279731560328757280,1550449757089549895,4610037844003765070,9041323241583131901,2910081345530937543,985887998829914860,14395940474841304798,356243686924777175,5040936669774799600,5933844305558785772,13901438080456386765,6790865113319118409,2224834593326525024,12054021840616938638,7192809604801586076,16392123786125344566,10718822516171713855,10745136021587360824,3783412156557244020,10584110425643946273,2684884494939838060,10523378789664457666,8174505741967406088,11282548387232391456,8493992124861254031,13039842955796920617,18099340676038884065,9578383844362102628,10422895088755253726,4538251071856808680,14434679698014564110,13056499822836345862,11586149975187856850,12761822573592891290,14680592572379073272,7637900694687653283,656033748851140782,1094099898907430109,14821593700298872962,2535962946958717409,7163785091349350297,7496199419868718127,2877164516860826553,1421492741067673079,7882531635397475925,12799339425572509952,8989723021790017699,356418461784963294,18045785439390766900,17385085224313500287,1634414102768839729,7210499552625990128,14975764991787341192,15054538560924454985,13518518032092313277,9363488744122204230,4107553992381360363,8775452796445734146,10138976953390357438,13602198090448653252,11675802640258204149,3680436994752389964,2582767331279585752,5641907884405591524,14754028930205496365,3237519569899032163,12973789551492734696,4867394074201964810,12431843342953466789],{"siblings":[{"elements":[12179099493414986875,14815457148289069262,1481145606915669981,16125355293346588636]},{"elements":[14087148344668613763,1774479748128902785,17398878651719132826,6925124511054673158]}]}],[[677049243997162876,5801026658968030527,6337981691534081518,13840899640018391163,10889710862018731972,1259374735575416839,8153051275077286703,596018067681434354,8153051275077286703,1259374735575416839,596018067681434354,8749069342758721057,10068546876829861636,6108393388231628920,4085002990025202106,14312741911242750750,17412587132054654250,418199369050583688,6548136058486799536,10016020337904142862,6207137512335076863,3037831165009840837,2517855181647348800,10554309029341727147,18094156753198876468,1259374735575416839,8992500094224447558,8639912778008739705,8992500094224447558,11726975731589715369,11693901714431209804,15690445360047771471,3053255073263758488,18078492935519819885,15009085375684464435,134971799314184346,16727436030954086759,2103169144056474576,17492132019901559052,18115878763045314005,417218395898249414,4836708747260985468,6826532943011287232,13329997244014494287,2371794786043408934,237661260252705319,1111385230005580269,2593333928491147704,5313583532852901545,5471241558107717634,866092619587626091,13324615693955120218,2386931606091383752,15106518093311586904,4534483670850270495,7327909491198322690,17746538898827697528,9354096480151011321,16997622048226773401,13878917838979755554,1989874339878040110,17134859252572942633,2220366312772631037,15906286780133867673,5699880143505609026,9739803766464705831,5587059227762854304,7405776215900693547,5945171555805040132,7755227332693683839,11315841579847578750,1512009488521933580,13503492353808284677,5964909354522269220,12374140833190426129,12162823195224358226,5494393493481387631,12825155299781468448,10504578735681011408,15011764357226997860,6891342878232295286,18198991302663641948,15361129910774169005,16826418559986800481,3399416781311616951,2888616738093789548,8312698405463403603,2742149178341078562,6174059188496280452,13669727549997416883,2284605092528076770,6798316517304862374,3068040756840738319,4833064908752797006,5426671598804467957,5923414819629823831,6653962064365571413,5905235801548433596,8692682878919158971,13439319942610899533,5408990485590107810,10630157121267496594,1933476323726662388,4119746703374060249,9326719816967118434,5694222756103508914,13888638708889534925,2910573630204831332,8853065873321578343,3504133610104094715,17241176078063469389,16656594948898146977,11690470708670304091,2276737408425278690,15436428256657748158,12566351187629730991,13956229173883931642,2880778908841695960,18118729460589614013,968570380877762051,16257423525827641855,668107035372735117,15390981087628125221,2165364176302807882,17875624239633716650,9277908506044343873,13801518231145448248,3362624802560590600,9334820632328177560,15544462202854260489,883790663001025237,9480605704384012979,9987551395714268941,365852336596845316,5175456345534177868],{"siblings":[{"elements":[2119766644219598913,12872862176793126540,10734922943537894461,10582849057485718584]},{"elements":[10312122007154036091,9036066871401853876,3293924851231173998,15291344002345413233]}]}],[[9516665455781288674,17250365808411259290,16415915504853708652,2040073148827495341,14939593615633242854,1941315975607672411,11328079261562872515,11401883403745528800,14451143826021525635,2001942809394126860,6436122152810283419,16339994110970694892,5139253053983483600,15780795942103990245,5338656886607631622,10338224365492784855,6027221189458813003,8400464042690008420,15007207117880325837,12687588246150731645],{"siblings":[{"elements":[14604701169104262171,5953036597185224848,2972628539221989462,16382884944562630544]},{"elements":[1200253838642386701,16525992564123672382,1257514357016253247,16870346579861530761]}]}],[[15677193235790354558,16114714421341480980,15365708219432159481,14678411791196226742,8376458757919578088,10915454418810927001,9340180776909679822,0,9735634003751813307,5193568161082594447,7085358275023891559,11050766201772080931,14084871612729746367,11017449155191105879,1398357322830544827,0],{"siblings":[{"elements":[12936412543626377424,10033127797297275546,12312607992974703108,2491698964576685323]},{"elements":[2947248167871729399,6571403784827437884,1636916778242619382,9693639526844442956]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[2075855741644996291,9157067040989208112,5294998378757727296,18146573039130488112,11796760360434000413,12137940671652044236,60092273779548801,1796905377868388397,2733633831238396526,6532289241715518362,9205494970344250449,15689422995177277563,68762038141037454,4294010356562914312,3194028637873311491,1778551678138317793,763080260502308314,9991794465023108716,3850292501224842372,10995806390610363130,13391148702922245120,6432730835747473748,17937578682530406517,17835094304873103336,17919866796104645938,5061950529677392271,13425758741866242103,7168440889070900695,6647497964193582081,15785624080622359453,8784849953568480516,614357895425397202,6012695052281117472,11671098996728851319,7796267177051840013,17780525432626520643,11126958244758111250,1704449705218433320,13839005715079369719,5275787110927945049,4941333151907014442,15653302888835266379,4866652889900333198,12698421719591218443,2884461095163956839,7562566695966314102,8044592711268133205,14889346065622183351,8062063458191250064,6126472711169187038,1326059077718041118,17976641102812395974,6379834301292450935,7605956193794374401,11027865661708221106,14980909491850006755,7184579789069708505,18070936649269043332,6827714151510374871,16459498642841377126,2470368653733780370,1576843631870717140,12632944136259188223,6330444776106863944,9950291332725101329,4419025891602067335,5251621040734299699,17727538304377433361,2115919981081595234,3203325823177686760,10015919392892486056,7180900670771471214,7469255487899468559,17339768573158833224,12114939887655650193,12083549689080629000,3447190975648050147,2815566408580707135,3823441941367331783,17482051856852143558,6196020286283934532,1852384701033602959,17535449727704879548,1152492433505230309],{"siblings":[{"elements":[13692170119849387599,13778521954473055577,4370705135912326605,1484315758506010359]},{"elements":[14379065715719750302,5773497642325633605,11512610239832849658,5628990104839659425]}]}],[[13823778537223644569,6534423753809855158,3414197425943290709,15839984044827517458,5362168030315091836,5294998378757727296,17889679387492144103,4805103348392651618,17889679387492144103,5294998378757727296,4805103348392651618,4248038666470211400,5279433330624669249,564909350181224637,10496736453722402755,5284462028497423781,13583492437266895823,14277143415867888242,517491638926480195,5369271515099845732,17253839144578130497,1057463524039817154,12347862974397443670,6502940849833126144,13301180681333074418,5294998378757727296,3907578626781353115,17208759308114427533,3907578626781353115,1891052798847044170,4140931138236727884,13276561415500372012,11499908944774268545,4560671349644175517,8566194374829318081,8237434220684689514,16790033361413876754,4364625914589664011,2171790168847775897,13884843277437378170,5874310783980831161,12190607088347560260,9476054394043359420,4656294956656645644,4995114152527092979,672045186773041717,4425465650207884560,10532755370430835859,6704136848452603069,13653319421086383287,3979923098310867466,1598163850625662182,4874838384749483130,964509508371235545,4397907371050842962,15107703206651413999,13131453057644934323,15344916406070572598,5391637856411472339,9031651940523126709,7705449886977557281,805707315655482553,7910840415933629773,17768323082865812963,17356863424971191756,11751515765955992205,10050299751643223231,5879895712444064604,5314923419035354854,1506457422581721489,1170442865005477908,8403436998426414346,17927478428622476525,2022399449282115876,2900915264383122000,17854449491879490806,13526918969076401586,10198340105288042519,3692404319379661642,5954997208431241596,13508594420150428156,11725570370380794943,14963174344945496763,1198869675471915084,5168332099307348310,2382287904743485695,3459284473244734741,1868024257942322321,13425330121233677878,11180945560428279590,13433994174725961253,14530244961466797199,9054895185318136348,2145527700201011625,1369296537371705850,16117342009957098834,4442317356566280577,3239244267966383374,14930374112294987452,10165751376455030252,15305901376808163830,15184233092942252996,273887937657409334,17692050356877688734,8226490326704396076,506511790686705594,943014684133224309,1532219471549822054,11326843945526310356,7874735457215743312,9937950737308421108,14415102566446749266,18050758812793942488,8947780731570030861,601456936670175762,742526661162924748,862832857666271665,14949380753773083586,17645504197790431335,9697605041918750519,6723718367768856846,10251023699567198980,12014930321816773206,7965652360884577466,12887276540417852835,6108441058753485065,14869433883738921447,1564759890937828769,15287651210951449783,1740399011912065575,17887618795253574734,12667729604543272438,10985001721525531137,14365955222531829459,12005433932946610786],{"siblings":[{"elements":[7921486733976605061,1746438619769193253,12187459959093585039,14367661231767837970]},{"elements":[1410813527331434582,9368373922662061483,10511869349053166658,3212429785859426119]}]}],[[18305249412535248524,17319958434543723890,6496609500762881330,4593093350879191404,5660430090100216828,844913971036209007,5847987860529501243,17347293442589273163,4131557292202697760,11654612402729252504,17308200179210537818,7140663920938423778,1599146078525370640,2260228445713124195,17440714277636427581,2960959436356821150,13218228097485992213,11428667566893477382,2227300375958125022,7376624915438073606],{"siblings":[{"elements":[14534043152273632822,5843782075150518794,9063562513781430659,10604003755346748940]},{"elements":[16489931178721035201,3956399726819460934,10625637779287011102,2141290811679243703]}]}],[[15777080754157737689,3127048742483739372,7168671512603664799,5923792311666842382,5908814403837721162,5846153046952929594,12289862913851748867,0,2174189774954688948,17669140119882999424,16809504593074363062,4721296298369556062,14169160001798288185,13117411858476934038,220604623333202613,0],{"siblings":[{"elements":[5277055324024638988,1392566697971405326,12305212679692903025,13051639501168376279]},{"elements":[844744978962253784,3643367061597849351,8957909706756357672,3704074096355963372]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[8117943655843530977,3321505716937399696,12348903993798373645,9554193422348058649,2076391541765032818,2332709985254552082,9983547647567665020,7929555782678041074,14561373194673373627,2805033781646317896,3471962382805966233,17694014429178832929,3704390472367452083,1824524396485991131,16700105811147396662,2703343674576437658,11141970420011720080,11082113368486849124,9674118655743465298,2616398679862231668,1540270854618735567,8533345113891362722,7196777356678968519,1807436776493534206,8841508056667232167,12675701402973299212,13309984414152489663,4670844048548313171,15076274001910410267,15678098074241862683,7511850154067636891,17522910429847240724,31170377651234223,11755574648960287043,13483264098347293674,13931463797972726444,1053100462955032139,1616305949335179113,17728002378671212240,5497581083874818071,1290274045234113762,6934329776702342903,8295143050134559693,10270172752010398956,17341723014871560955,10362643250370252561,12601612474741340534,13834700839083240500,3175594037901040458,14495438568116734253,3811278014040335694,12977389692608662700,6095984332174815085,12988687132372912047,1293453281212178078,2161918712166224531,8190334505965652532,10840327516714322357,6528324528789399350,7231744405606904730,763970827584843146,17717229756524086547,13221478690365750821,5032148543054410669,8066294159164545767,876821344300355121,16370536175082689101,18018030476501870335,16537747338175433838,2319223751890032927,14092488520471927771,3676331303790441590,9738121579031186246,15986263394179177106,4736314346750933457,9327795220678952152,9205175305599841939,13846435457268289235,16834002675993659935,15967840985757895514,12735654769576691888,1268046656697214824,7493387054599321913,14464450334185295832],{"siblings":[{"elements":[1423617203194833644,3418732215912469461,7687250902006068811,15555503910463265671]},{"elements":[7328390293048134264,11928443479975480452,13499502888068976741,6344608598895868495]}]}],[[459350568365686927,15550828377363138977,12397043480720233124,2084404325896594405,4765289144838171900,12348903993798373645,18092997825205131233,4411542900628718812,18092997825205131233,12348903993798373645,4411542900628718812,4057796656419265724,6347345374493312314,2899827445183123328,1339702504728286117,3347478864862285888,7227896645901939433,13598321288258638105,8483854075072559883,1977436595049636060,2100480334348429932,16725626290926985564,395559059409063712,17447570417997368367,12527136213467250260,12348903993798373645,2549731701100650475,15076867914567900735,2549731701100650475,3396771393879088813,8175066599952649365,16709839240328051786,14619744180871690809,4547669787469988713,3839333665404183283,17526375399978507987,15280291368539711721,16012452035967942368,5674779105360038481,1069404116195544171,9926536517791305062,10463458087218739588,15875886243211927574,8023570714606228529,8886969837731772522,6300500523096415184,16707531101934971614,8193022953762795979,2483396476403643510,12317030321607329698,13909276481788874716,8210106575059363198,13248392084949043369,17639465088564539887,13310490300344015634,7188737720399599099,12478383712566649290,5891461006405553913,15873764606129214265,726269312461278647,6896923050736226789,7959444542996932472,2957690605702503872,2507832235056459190,8931507653621468100,17832021157487803022,2600131370810569013,11000591977107230989,4451560472863050569,14046122687949513855,14408502933120509325,8203772425971125926,17903159971329101237,16071154287757196367,13559290392144562522,7928997360861111284,14146773171965104738,12536469896314879675,15100452062298454696,3065350900799108566,17916353519366700508,9155269105173305879,13778739467255008950,17149286154415338446,5484238698264323721,10428574440665687020,13232628327298219475,1521770541102390593,7635055179955707877,14273506166016322805,17972665868914126355,4774876226665548263,1759116201624285752,6034692002392285244,18052422072523847526,8704204537745476515,4825444896873005156,4110250432368595888,4521080135508614548,9925641332581275289,16301525769845823450,17103823223618617796,15779387720259624371,18282254788663332649,5914233401331893265,14275021639262367594,3363803242115415859,16667863816548381777,382674751117425024,12807093852784138067,17069950513514210455,11259866458030435610,1050160047222823870,17046167229750286202,16486599688795050101,13918610472050461065,8525673768608707635,10355439814953902293,17789018193192548320,10802037766313759260,12179637985874530681,8140572569451253060,1299657287252066602,17399998704802261962,4502484213324891547,17645717630104056747,3946292032604175215,10686907423444571566,3383320405321966385,1533421806420499256,8928851195647513175,12740839514299910015,8982174966569882798,16742403214560187134,12081183595858183297],{"siblings":[{"elements":[7352339338580899022,6489967498175266438,11177578119359557909,12267183707332712395]},{"elements":[10295204996536602424,13264272328369682889,17753811936117360442,2969861343769605978]}]}],[[7699271444744383138,10174914080141269888,12393597134610559628,12334502019175906023,15768680379975615105,9165372698879369040,16968058310858665877,8589585767004239459,16487027003702422511,12342939711154961669,11163038143373308480,1416600683563971730,3845764197797410917,12832998790028043313,10983809317286697874,9059311668629987683,2117596493301380909,1007570907490356028,3205915901523455533,3405805405570989999],{"siblings":[{"elements":[14445264646165844503,14361397097856543817,11194644055542453258,4676961799318634525]},{"elements":[7133316454508834185,7269316767512711618,12249551934172108362,14600728580304581431]}]}],[[9970697762675146589,184723789904858121,11798037254609237225,15617120786328918830,1830059781994954699,2418228885739758892,9922781174852743394,0,17227634371280256305,8761634864191988516,11536470042306915849,17131975195251778547,8303660893446139877,18253868086078040549,13216097184073792799,0],{"siblings":[{"elements":[17762008073398841899,16164432739012547049,14017566053393829658,3549937729441474727]},{"elements":[3109817178767136266,11599981756395327068,4273122949135840668,8531324719301688004]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[3430217909794797529,13715012292105753095,17149129451905260791,13366296804138279992,699049416298609888,381124555680706084,12720086397835211981,184816522750562530,2526850830423630847,8075458743275693986,11473812685406665838,9058823084191947996,15248823105676241825,1648425650213139015,7635362025430285785,12715371066928823432,14263617062173108175,11523773671388184819,5239746610556536197,10442841379838494618,15452174458367118897,1223199841746333763,816445260219771662,10186983240865572688,4268550946723402166,3870512996028457924,4930198429725822436,17010869343915798563,18157394098520078427,14389436548791562061,13043481276951119075,2005925057942663069,17366921320141611880,16732255704438659549,13273860163087306338,1625862003127520888,8336492783049558420,15584107241671510332,13011243693635395171,11431670862700360357,1201856787165778135,7444514480519304144,9658398899692550118,17133310124078331830,7966071156358148059,17831008533531627016,2258462907680341821,838333117551688000,15709990502404133103,15805247967600840696,17673429002027506168,2142711675413197011,14542318388913228179,3447819423818562799,6391674214498371068,16455881369831582173,14866672448267322447,14073093490635504591,17165467327069363517,16092116349003766112,430773972620534112,13509079917742631240,4260801221360431203,9689272603902866738,1270640374685680936,5924808469218370922,10687518030715604569,2599250438992209157,7094768166913514371,3025457074664072231,1309791192479779658,5800808558164685459,8193592689686676488,14552016988505788478,8862161343471624288,449575745398624704,8586869941763361502,1400244177096550360,872585710081118377,13481463732948528887,1695748498598770422,6150042556290884133,16420448207004826568,16034576465314606917],{"siblings":[{"elements":[14419406449888381483,8816956723976101965,12067085973342547030,17282885891460544483]},{"elements":[3831638896680269617,11622239582132795001,17114360658120078056,13946956494708067730]}]}],[[9322154256070381583,9298915447726607414,6211700909309924453,13274187522243721116,12776130354906699145,17149129451905260791,8422276395964265213,2751662681456380037,8422276395964265213,17149129451905260791,2751662681456380037,11173939077420645250,12126572889870170558,8563840656267963465,4428457150031590518,13630251491383420110,12780147952262047315,14251343962796158511,2108160714387751950,11404920232125352609,10660268257765535634,7596121331102842990,14938060673647139204,1093638595392282063,6652796766883086216,17149129451905260791,2131654456345527182,8784451223228613398,2131654456345527182,8594308326016225784,14051420455024637463,14337745878283924601,1942072978790237438,3836909626327382246,2532693077648834247,8235589428191026302,11120611407530275034,14015954836981045661,11935089581262481585,16952019268176903091,6897234485289248990,7849819108554316033,6173291398847785673,5460277836870679496,8519137401275758689,184883196954861291,8990527448326605097,10025699571349936723,1493557664418643745,10752618541087708234,6776692080973862869,14851573908424384620,14875391851856058250,6663517347899499259,1057787578783021613,699240894827788998,7247975343473288245,13445572698745469359,12297453983525100299,4657168302234687467,3954612152370786819,16649386921279368140,4109529949503344154,16453397825852737573,10518400286472512739,6750129799405489795,10215470765856925675,9166400046794218514,13135397338281579657,10455771379020032240,17565732518231535978,16173498772941136144,380614095218770449,9442135384726322865,532112445392260871,15194719198513013390,9919219349513947056,8044310636009110033,17533633789105288937,8726282767908002370,16961631948140832037,4940275246009362230,546152817674226786,12849720161133231832,9542825298921586837,8238469240444308995,4178029113525500779,16205899249957816012,956493212245880531,11390321902993255777,503703771027062517,2325064042319739001,15323069447419425338,1028552983047103300,8388181016526700694,2398896553839426813,9349717433158561125,1946309112323953351,844914238916802771,488201364774484232,11148497801694420274,635923929243942049,5522524995921545950,10485690782770224755,11637747710383696378,1826736295147059475,5367509264261071666,13321600350956088117,11749514538726378845,15785435463117234020,1074964262657112829,12109262675228802686,6935193387829803650,17359133012810824603,7568446304507437160,4468109424747621696,310744480900600356,2579912627235345369,11090713705795283584,6534490506751438035,12816425008089545734,5633995913016735776,2023310221170308978,9275147642236515587,9321949897356815608,13865945720568872329,15627292909522621561,9050548506146046913,16498025583541417198,10478970245343767897,17766178442144355111,11654650616248662628,12835517056692115624,7082800746342139854,4448965128423652808],{"siblings":[{"elements":[8119404659243000173,5265541261827604459,4472916974978895628,11746788677482055768]},{"elements":[16680612008794498936,8640953519412144738,10181843617211023742,8267313235995818586]}]}],[[6718973658858847537,11185961934747743714,13130660607942115224,13667271409733239654,3232024273633056389,14677880944167251177,5491218317600954883,15082510393767213369,8594616046883471915,16787874948267176090,5277322612280241459,5892187943879912377,1289712687530308282,8919028944864580927,8703025104836686970,276026991653251734,13188920140883272595,10595352025223885511,3149100059675749321,4229993584029867472],{"siblings":[{"elements":[17562402425280809178,18439935567373517741,1633084531280624940,15346075420141170805]},{"elements":[6744659047214337413,4369626251372181611,15907654098800197580,13283124828379093282]}]}],[[18068247073125486358,5031778912048707315,6884658622584102526,10994182370382268542,14846797909243655522,9587424226046010360,11906777453666677973,0,5652821869357816157,12617332458292848295,9770950071915642313,9465041132717590916,4536349742765320482,8324263651545882432,14897006742373991590,0],{"siblings":[{"elements":[15432042488618558839,12374346453953637791,6079024732406731908,10932586667437032038]},{"elements":[7191021159307481760,17878349122711897476,15756317862780358983,9826077239753627434]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[14342194701491846361,7102092332357718468,5225920967037915968,10496821395417011013,17426210938110980273,1346079144042717642,13418038966544163628,12478033766070467884,13538313116767362797,4917794310254475047,7787550232213776041,4033259044959700630,16697617835604732552,1707934495660622407,11356365228302357268,11811057614230244325,17696121818565687996,12220493979920263900,11980363582000093073,7573829037475981012,8556118864579560523,13770801801002582919,6746996766938133376,17296894820826204421,12015244597092466450,7129751816266485287,3297944472453201938,6223564551487508250,8486891000310027429,18402358508511508520,4711472581281179429,915791895694008240,17676503188576931081,4110732688202507725,4391553104971620256,3653797300978250041,13772796119667587181,861107237418435990,11028141401132587365,10563886676850795966,11918110930941718349,1483141267231368038,7489764509413762730,18065559743122257312,4484293529045474078,800577225499885285,15795863492639186076,7113636042852067441,12336970769480602135,3724535206107799901,17809183179714988821,16601874679323428916,14042586112517890930,14384900268168750937,296061592681703143,16133915120050693956,14047841335010568463,5840645929069150825,9867609391015042145,17814401540503698577,8218886470514740875,3865382939947046865,6510762698789921981,12825345846373827299,13977005501702201726,2072171897323609402,7949013000449756494,6039525290618113150,4162747321857464227,13110570801462991853,11646846305185154180,1759384214226396844,15067778226481491366,8335111891362587427,17260713586459939865,18423850531053597256,3670401660060916285,13455956940392744176,8184522095950587996,12384985423364320960,16939083784711922071,16712648958017271420,16712907210832645474,6429032787998959525],{"siblings":[{"elements":[5011180727540607929,16251700769129120636,4135018670925513422,15815458969177827423]},{"elements":[15881389161849586271,14711822840974163933,4971372235232643921,4593900484078443606]}]}],[[11214741832098105226,8446015519520918162,14746895921542871857,4495347455446187611,11443412498762304634,5225920967037915968,5647216035841647879,17090628534603952513,5647216035841647879,5225920967037915968,17090628534603952513,4291100501031016071,4222270422602680107,13074638520434358928,7978828914387093395,5373135536326431756,3369140746851801371,14459490462069837302,3260370005189049871,4062329621866515582,3038502504869746847,7518950213950727306,5109939768606895459,2778413497671354351,7226085467251400334,5225920967037915968,10161070433471784597,17387155900723184931,10161070433471784597,17810101866232583158,2265852264361348637,1137077733373679172,10487908444451626647,853186838394305836,6830076655695371915,12301252284324581297,9199319951731601238,2490226498998740417,9795134058908597223,10411038270960642103,648090495006130339,6478285279326957414,6361313968291731204,14701876491027995989,11077415836412542813,7227605064605005089,6899017800490858916,17460881555507120534,3842384265520945571,10006476892313925092,9064408555570973007,8004485077500447250,10925279353263216114,16415968887313982654,1924364212014631909,4598800298261354279,8872091928430153636,5627681545366716028,5396906992506377953,4624572946314566507,9234733770961521901,9495559635108780836,5224696412684448716,5437090110057278499,12281040350916076453,12414438508816854932,8753735534247937146,18069565436068436667,1459553723751202773,1768378565282054463,8680065126607318602,6348274739216424253,15070335790086395662,17548207906067358749,245847081271371592,913443324116205928,7673297887520475075,18152077102495098726,11820214942966752890,3422153428060605000,4453692259609622762,4058055310326556065,9038261180736597441,3185769205050890474,12258501522592312597,13521664091219013043,18071932121537638065,16456343170258633361,14238032286439095249,14469965278671448455,1926942092007182608,8404734963241832005,14010077045636104614,17087488538067118457,12777054709575137455,2220834672887502882,16855096061058270346,7955623400387455242,17243780255792964352,8880467720416676086,2970492235354891065,2779681728511404901,14658745236110036529,6269995355611458213,15675112730199332824,12372141285993970097,1591130531945797486,16133978670686002740,17946191078384140132,15102467439143350967,8540194251226634205,736185598608516732,13358774828266952986,10083790885491895098,5672074430397689156,8577788983632938913,1599385894592322138,552458125665481041,15977961419780837614,10550410587710847191,2469843488861295922,2353921721362823411,15059446490140332508,11560248434565963057,13045762390374886785,15324696339728729763,6018640509885366834,5482797073176733249,969021287224051045,8093890442636917718,4208614508117495133,14039734833854676846,11414038399643035673,50784103203853465,7616131330019057922],{"siblings":[{"elements":[6611317096110266490,4128676400222890343,16750791961404086025,3117448470334964209]},{"elements":[16109431885071805132,7773073231096885964,3181963990013319784,12863664982000424839]}]}],[[936174799392515346,11669417795124844079,16253542517901803617,17159117391382955394,14972371483074439995,1197056225600416134,16833264420931226883,8296087790950224020,15977097097437492873,16662947432817376432,2182567486305531711,8856361037829787682,354108802802761780,180566517799536470,15274243442185225029,8318247697627087684,5706436239567327476,17407642857799250791,2918183627838585717,12102389246116920414],{"siblings":[{"elements":[14199270077370585999,14001398244448025134,287390414496705879,962973262134452533]},{"elements":[3558635078019755470,5914259858464843380,883812254987093532,7325278896604460170]}]}],[[13848627725429068550,7760114301656514450,13144282151528642389,830666924938007377,6625074582873099839,6949123794312862815,16203745084508036952,0,11368566031179226454,6991689787128557280,6139875304472349476,10484249867345688689,3896386679393789270,7582608133345972089,1799610051764952585,0],{"siblings":[{"elements":[17554017897219358262,3473543093698497522,14265560252085435423,10385750302928404722]},{"elements":[3123864862256996783,14384737619020925615,14708157537578933013,4157025556544231392]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[9336884742028234152,11054298581776583364,11903411180683071473,14296717815736915449,16495264431561355793,286425650151711731,7818675907462870013,10010246018977678131,1890820791768704624,12558260456405324124,1496751319024418478,7688284829495190073,15056599560940752836,10403546405752441210,15031567511199407404,10190157062914636311,4095897921107595849,8414315100637562024,16804760610634788622,11504572193580119219,13554043763335795650,9722893617959487903,11267109158602701171,13271616572602256072,3202537321918613406,9536328911281289038,9402284043304896985,7624382939029706505,7876093227326374161,4316325842875837877,14515991081021036402,6973319751057672073,9275917823713873060,14874925803304938596,6995038407358618833,11743851330442668126,6258602953605941613,1800335348522323540,8550112900772085923,10362106327361328038,11256019104394175519,6067059559086088426,16041669564760536171,13206286423688954530,1221807958049390854,12528930597591281557,17693752121809868644,16787392022923963052,528600239668533415,13769531670894575127,18293996673121507302,392455369568546467,14790578723956995587,4080169426939776695,2188382888613763801,1501394793936266896,2197182597671586462,1265693223259570244,15431999847904939037,7733806705132874701,18113357226322563777,13663401662236327200,11169543435273311269,11445365192960330175,11194928790300383980,7516435610290684462,14954655231829338456,13119908939436696206,2117916374172580283,6046200420469927324,8763252541460544190,12309237096812154659,12262595299354571208,17786370988432228618,11281112914140474250,2794270243819254017,1487778964648894092,16389700750866351773,5169264358182164691,2132743633911370694,12898237317466667270,15997841964748494006,7702717202847895371,13732873406948971647],{"siblings":[{"elements":[12804735375140713404,14721018804237750476,14282780542903435223,2453183975775524265]},{"elements":[9386819466575501464,4695457175289524053,6799857909187713340,3125732624066090898]}]}],[[6825141945141655598,15362903820626146731,10919176560316557364,9203621266692922128,6883353629897098473,11903411180683071473,4235966765890326789,11119320395787425262,4235966765890326789,11903411180683071473,11119320395787425262,15355287161677752051,10969706199036674724,13635395529650592323,4178896129482414983,7430047294879929225,11876798705649401262,6789862282155571678,5627386421719387613,13010873827306319325,3809356019044376055,4067706933363091317,9999583931249884247,18256637912050331227,4936406580313760722,11903411180683071473,12964270068364353714,17900676648678114436,12964270068364353714,14269072956570470391,11030822466875270923,1096395500444718189,3723001950964465461,7960623455651360623,4255533382174018735,7481239068602227477,15089913941486511727,12263291119602191452,7543127434756135540,1218608282549420746,683792412447922101,11204744634625067440,6972205441768126834,15850251527254733763,7088417545991250231,3192976132342245175,403055246405629992,15105954062964473340,7107619128813622396,10360919700347776685,7668360635978401047,2046989960402102402,12653342924806551689,9971273856113747955,9593576996684613200,8408507555220802858,12595598512890023121,15363452976520346545,2333488045961253563,7639178120122181769,7169807202695188560,5579792078641660506,9846697511069350493,16860858224266955243,8060996789294637493,2496677481892616959,13665143231564132222,10127061104743887386,5937884579904098053,12167857351062509862,5710157528009057407,12249045299411839564,4712079172042567106,8085240561881842261,263826959496734155,17419719788483941343,13070154732270621384,14899734078944994332,10513604825675949526,3329612567643467492,14996181645983857277,12043035717762874071,3451138546268261320,5661069065706971886,17455488332253471446,3325864688422445403,251485551368051221,7754882612820219374,1974415918569509174,17493964876409787761,11676145359153156650,9595044573325663015,15723135628889837879,3039027993631693564,16472641209958901064,4326610178938427428,15156635952677828800,8354022093617433622,10635396084964882804,994267749513300739,4424676122674993425,11618929781506875150,2009736956495067007,16310402791282387063,10984004694169624530,7347236311578861654,10930924223898663600,17256876263736159692,17704871794439788625,18267622072027842351,1585416393653971303,3684121110759658103,5173698664689436069,16874540805648784702,15619283842612253740,9043920007844657882,13370217469447385086,9705118411958976757,4716199278426740078,3220172529214282210,17813793262703563526,12349867239508916554,7956596930484052113,10644104399358536954,8725045391976164881,8565231618450766817,11520462731545101039,7635192378686530877,9596017962301997609,16045269857037155997,11672082255738685422,7331932164634949465,6846080181945719594,16235114503412189675,5305850181954143959],{"siblings":[{"elements":[16949495584030676752,18412385367762406712,501035874803900254,3470427838893688351]},{"elements":[13406319966535674044,7820873334114663443,6199986413930180714,11127142303304301945]}]}],[[8577643475019524776,7902857295640320153,9979582651984877838,16702621794688147101,4058799209388378661,4869423305657903479,10639828963007947876,2060103451709921300,11030679345560828356,11300399912402573217,2486635976580496289,13693879011947401729,218788274105573584,5924618417774139693,362785411749468519,14296867266658527583,13161070298546176930,1583641623211133588,11551766744047961175,15361238026616614978],{"siblings":[{"elements":[7205793619237112915,5941000984593133439,12180716634741108230,7874960444761522483]},{"elements":[7234649223700949401,9981215585021729999,12622301702242007273,3949809529509326656]}]}],[[767715637060642253,5498052972242911189,17672866212069068264,13563919586281111389,6112218379658600895,2267460921459570192,10545117822245737703,0,5597464530649319514,16906321061017130565,12616638251363248352,12496332538177047736,9160220502460889493,16141366090244059512,6826548532431512910,0],{"siblings":[{"elements":[11322661257797499678,7697656101136499457,14928581978710440961,5675408067399668284]},{"elements":[3007321730258433438,10160634412924216819,2080611928617120237,1244944577542311616]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[9935326540583462736,3497612507454159759,18381414641511595632,17996796666372322527,15609136770828890706,4141185000390180045,15632662052998794272,5790626945531343049,8204042032084149333,2898037818030631442,8050052873783942882,2493451244413222611,3903097875051544934,3766286922247803225,14435909278177075595,7313004317099637386,14700264812859725212,11874364493720520552,17760989663564458113,13190004579962412394,2618310831081090932,18350349931130879000,15915919868772477670,11578403778201278153,14671321824740658592,8365346883213120452,10916637165114756879,504158853490273606,13611239658675949314,15140319071634464004,16469254871821530659,11447042718198947141,17526220999740510131,11820274247616961234,11308406488040912356,17147647037356031572,3433398042297988330,9386089768693237136,16323451677377030565,16814517827894184221,16340844598565373164,12527025877254907595,11723073945673288761,10181280894825820273,16589989580054700318,9196298143260692365,15815837704325225636,3319536502470250148,6044535845247914479,18005934949079520449,10427033229652219418,1213704443970178676,13789725880379387773,11528458101557533946,3075082199387899021,17965551074309262679,15672978261145771099,9711797717762522846,4574732964511821021,6800495125241549781,17909647474658978180,1341816607782771502,8121126491204600426,2620294273053900096,1703160850810557929,11968207208296704448,616224011029995529,986821932040877035,12558763455526452588,14084991041879591851,3814324929852519449,8176217945078967947,11611247295581883274,5181612315966973858,8609098146265373833,3763596277484323203,5574467806664831843,11181275800735155895,1153605485281859355,1087302977587748470,898695360819312155,1329712340969411532,12866110739799765229,10856597083376047337],{"siblings":[{"elements":[5608747572853848371,11534208655257009779,1860547388565115924,4125903517807611006]},{"elements":[16360478778702248201,14213185250312606651,9086499200688171136,6646506645725327276]}]}],[[9325556513423454242,13172612790654263959,10034669222144459284,8827283788248701968,17985802128526383120,18381414641511595632,3333787408803602667,2872845467915401466,3333787408803602667,18381414641511595632,2872845467915401466,6206632876719004133,3141965142347359602,12230540401542177073,9391826104302564721,8474483109279665452,17700168472036050777,1855788118496156556,2136876288905861938,18323509815097766523,9152710895088980669,1364410923415614090,13135932645458666581,17553996912994446794,15286111221353409732,18381414641511595632,5918845496573231010,2758212648512056421,5918845496573231010,17411526210392469265,5504635653792414737,6530773471310439948,12865916400914318966,4822114793563700035,566751378088559191,18407347530860755920,2892993630437944145,15218978790959646614,7134255894878956949,13908271166471032636,5148050160015882565,9906018521156069555,2983143294060499056,11006701965669728935,1522275691023965237,7917338574934055737,2747615477881033464,18331041093908374268,6969151907394354314,15205722467893679128,4468381432244935580,6129502946250945647,7726677899028922418,10816032555918230135,11344107450949355343,3064260801334861512,10929958285969120402,12764971155568344893,698168413501960917,17086211676867877152,3268491755181330949,9646426607431060974,15497750976909608943,3592625854408189098,13802436692884203552,1473951231660456051,7513827866514122580,4606296221665106080,17427625623924098181,15233881175409409242,13075468171341661437,5702387800527824821,13193594648943148714,9684883005000189973,7837933154859015459,2541143078355110026,14862679734013553941,190652713264942064,15936083494008010174,13972852975035372221,10758857533601413484,18080934971360755673,4381586519983871913,2824064466055575507,4152629368638676067,3448606715995267547,16129564898637243454,14051850294353227817,7279782698647649050,8264790489768737504,4088190489166868621,14967367895823532987,15998784025582036432,15329565663299674082,16741539184531306893,17353487718767332116,4483264520146735809,17865410167101743402,8923210443308017141,17563578170570858047,13777109563927919500,4072491779489738670,18071052211558617780,777023365977757986,11615595576505416294,5229678830299229067,11061566421325534665,14437223104637206016,13971733769060564510,9050709930357620612,110893107528112781,2688045382306467071,10893135514220116933,13658676958430317695,5364699514546313675,787921921283821611,15841370066835126816,2950392917334132504,5639522365545258207,8989973289194454204,14901454193487899295,18273476816900250301,4395457828284574468,5034346890276296164,13979963230177531665,9287712073584997471,11553628277170747196,13169284074943790233,6481390450612280364,15155996933827896289,13982973797053850486,8960178725401283495,6001272669060015784,10701345787092272000,4894982285736820819],{"siblings":[{"elements":[12413943832315327782,8148817225286658017,1648583655024877799,11957696229310797647]},{"elements":[8871695588031639576,5579372016518937853,14746829833672601330,4076645109767800603]}]}],[[11960935028747907705,12200082214164790838,9594987694140089852,11021477195743916586,5449037816920412739,1090403281061389802,6568012230766423544,13656456728252267411,3588214958622627739,3717797907378684995,18101675939511118872,13782409808084260781,2386000003730244041,1691394513560326627,4085398058927651637,814832576237162743,12557959730066801299,8242930518313373566,2764407051885973920,6795201948455412486],{"siblings":[{"elements":[6643808861563363689,456358264961474451,13093263056880320268,14710355940566065333]},{"elements":[9777955592616378163,16357911707549003248,6884124452025635339,10206596147644096507]}]}],[[9799906746785790246,1179787492174100266,3246068153302509994,18045842684370697076,10858154115302125593,2097465098654207117,17946411604154575057,0,10894370091119062608,12551245811695098572,1627691979653454167,2402958882357721260,7505830438523466206,5396831258432656250,4612606640555631052,0],{"siblings":[{"elements":[10859964420999634633,8961392804088950062,15531943793087719243,9977421857659508854]},{"elements":[10917695442368160527,16000301251105568901,141408838667129508,14071022423379583171]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[3738945624800370731,17300446361735488265,15917639738875279304,4136774869151029450,7117564556375305386,15670713401097966322,8381165688216271533,6616103561609861786,13525601900549725401,8799482595755943457,17712624366892731318,17118545599583281469,991100146237581491,6035752930321192712,8266024908831034613,18064514353010328935,3964240644054969232,1994624446628148135,7737696342131683957,13493604657617510761,12370590996382281203,8394073097020065040,18283562745012062460,6603194942422814209,2531030556376411593,10324982144450082508,14030009636665866801,8517901130048984070,12939125815664675574,16304843600861358605,2298466883715219055,12488184336251324402,10985612231923603660,3938570370374081443,3042511045280239076,8171478540730367577,16057693655131392951,11774495727902372291,158368229678630360,10831030505909419154,827360893993244461,10152328350452690919,11307238070099807940,13841850883366080465,12691891050419428514,7591453740245008478,13518080200785327749,11697901946292834344,17655953453569148143,1697289746656046530,9087743985318104710,10718099400097923382,1326370504809921685,16908986449959167910,15621818700730741288,948682801768912387,11775602109313462473,15639513639876645710,5756007334659907895,8837886509164769704,12808750118480217901,11348068085147256475,3562302526915199466,6009828677840090154,3086670756891117194,870481913221754358,12245862984441377243,4244793211851520732,13952115460324070073,5544993801584185285,16653723066313937090,9145775338650732340,18188734250621702658,13427643555713573844,11494683798358729483,7381145497053006350,7707723438386994051,10719871725717216219,13294205928777507235,13970396126083246793,11718884100073064041,10310245041771063274,4668742116442863641,11041791040371495950],{"siblings":[{"elements":[4980007364458196901,1695687289718372436,15683405046165023045,12745377463045984066]},{"elements":[3560583152441324605,12581631521285452247,3424922011369377233,1328356594502091179]}]}],[[7084960479292912767,10113856666356110536,16930827229542081179,17595795979135813872,11413641985416032712,15917639738875279304,17853461635410360602,10820359551411808993,17853461635410360602,15917639738875279304,10820359551411808993,10227077117407585274,13441166086793643131,6922279639650834894,13208226628096937736,5907712514304296003,7958718539634873768,8531160284099858297,12132886358587202799,9997670503567991906,9083615694236733508,16026069845095812190,16685173385837814215,4321739241022193946,12827769716812395220,15917639738875279304,15428462316217205166,9809487963615016065,15428462316217205166,5771703705112800710,7671681842049620191,7906121383596545151,17795075044569595192,267393143160701019,13055870565147488823,10833675876607962418,10656230445922718995,3191074590368993097,10161275569941155214,5952119697128223413,2921686332779170484,2911641479120257146,5798693304743700997,8548710433550903256,4672046953109140416,4590267044312535736,6761263912919432649,10625469962512286658,10338088260715321929,12665159325225859539,2619789790716391725,16434955727193443599,12233493150380712527,3541018881139668402,5916700112010905077,9690317986464067255,16987669436823757836,14078265152103635253,1058055340552258530,1111528309983511519,2625014102184119528,17111771302692877637,14859633695942916925,12393006655149325854,16986755988351333659,11574842003016317632,6340126814180697654,4145585163176589839,11257768379451857135,16523511744299770784,6135771263550918046,6453934388275991869,5975543667593338027,7779106379135053155,7064553168878251009,16448941160245605637,7181753004963525912,17703095613754890608,4592917794041332013,5969316246903777513,18196369409124055536,158391249579966443,17166217745866129909,8366140937088969407,11603369719285314751,16799375343204680497,15331766206073844023,13571003745490693456,2285841321871463401,3287746584190163190,17659558956511152653,11729878151953388086,6651763396347107628,15031723819765623727,2539009710588176701,49161353515344899,2482042313991817612,10542781243838588650,15546976275562151157,5792107661901290788,16317246737630525595,9947445054920672731,13375261689542031801,14113550991372265461,9857360463981987336,10048171775558884311,10903961737750112547,2458821739998608501,7871027900879415019,6586892564065927186,666768622975746960,10791972611192588215,2655116495804968490,4217857328638599731,5080191983488001789,10871149695634063689,5680368691356147721,3982569629320923951,15021579494148421009,4673240442536839164,12895880157490928898,12528807577770546334,18241785952547653876,6113020987822997859,4249181776089836864,11957777857096516827,2342789664316756156,9460880196498007658,8534902169680737343,9030928585522640995,6647745569884872941,10935858241864339772,10812863755601342140,3329468921200269224,16735387407284607568],{"siblings":[{"elements":[14803494556827238929,450055207592316694,1894967607835298743,16207476689084727230]},{"elements":[15667835261289599201,7767145371646568421,17153930599471857093,6165477178966000037]}]}],[[16785113374046796777,6133923948245467531,23239295031882708,13980775917510137663,16283111736950835377,14564216948085603355,13154310338946657361,5501129881976983068,5195341718979617180,9243946101157853041,7354286834281315714,11562861636924522565,4027153467632671054,12446538990820807040,12810498970398811092,8254627704674859964,8383986220921249707,12904450598717365100,9846439282057451540,11322174034229376378],{"siblings":[{"elements":[18306019676109390948,14680311545793840175,10387309026033973921,17372751179950535074]},{"elements":[8025580057819607054,3703837812573080786,6601034931441644689,6510314298353409485]}]}],[[17937154577149352743,7317852472787022167,11538646634426154470,12277547549630093391,5529422046969641865,446204480539316675,1091548174763461136,0,6313425883616107843,13537378377563851191,14490427032985292512,13980084339088029239,13993134403569842203,9656174682288389994,5576574372334360384,0],{"siblings":[{"elements":[17055561604165617144,8094519159379494467,15342477564410000799,17068795624921149910]},{"elements":[13578991874694845848,15473742535829221740,16190801191990391458,4892732751593728740]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[12636247406473361275,14350381415381781124,1458351756134331555,4972661765935484102,2487701399737401888,16715411561791485140,4361288861355973155,12312370161748739910,10524066690548420034,6334884894812451986,17504504527437219608,12277365708023502186,6429257596042200299,9941519247079737882,6632380250341195570,6251187387280310449,16157461133215383654,6416991881373250085,16324099283358073344,17079503924107734876,16158495481269992315,2665393069540702992,2772262880973099734,1023840575421519135,3044872550380721252,17035311949781708726,15375312227162105774,4824260354927728442,112635815439428027,5352389533749211469,4189774517632737053,16940580658531619975,11217079606885266018,12153398219306049653,6173099005253209308,17710232144675716491,18408538855645184879,16006750809367405352,8875223873044338745,2522299365778434986,503002086744861363,7640796700561109509,3423119005612435990,5508722466038744098,8669645762464151698,9489273049127116035,10107621585968789145,127143188767621141,7892165376777112810,2015665227193963600,10930976630884355030,10122891120425010405,4282910353069759143,6565264306085511498,14004824045797522568,10699640721442431648,8431311056568235546,9680163631258096564,15614839486479052906,11969627558177012016,7499602672534545809,17622095257728190025,7445657985770687034,17495251104498062619,2523805006810190113,12266562637742401972,2129820572687361585,2861655842839849302,9123766583282804025,11013358433830558456,3951087794515308668,8646884836252806690,9878356066900874998,8889348156071520863,4935342952159770874,8583413751581501565,13866787431260017713,18183954806742449343,511949415408065919,10047285324934070952,4220363318016497981,16789223801429208904,6923395641366648573,4583370557838421599],{"siblings":[{"elements":[10836200350495573095,861557740432111654,9002082730127854806,2365751284824965413]},{"elements":[1177383515007987379,14946915859623102388,13238033920513089136,4899028354210277908]}]}],[[16757092386725558795,13305012889372971634,8331678260781898686,9612544986800730434,1697294278967449512,1458351756134331555,7440683850868709455,9137978129836158967,7440683850868709455,1458351756134331555,9137978129836158967,16578661980704868422,8725538450426135873,10599017739814122815,15494919183125713906,11438999122068394397,868404662932964345,10448370944796975286,11038533199543927921,16862101861483387926,3642817091406454801,8492997809651300072,6326801610814997637,9078073854644580226,5401813952416727169,1458351756134331555,12671709993543170237,18073523945959897406,12671709993543170237,15164838492288439639,1370093941154906962,17448574788666557086,18234981747850428882,11379528009260462860,17876983909412006414,13389418407941546202,5993273770740861012,2712934566742970249,10506905768177367344,15099233981153555334,10733249917569405478,15025741496435506529,3880971489856276008,13222467651803785403,967658417546313888,14818061005157464542,5797792555001100523,18383578651937825963,17972008957715895429,8154737169285797208,537670487193097630,12028002341729594272,18271461499983682178,13813751746996981257,14841815636726334789,5704540265701369849,15870509293642548814,2860293175735991083,8335188176615447542,13524487335560098062,6924979746067609999,334490957129866396,8588970515375200505,4172225792314899792,14725397256500306521,12967995872551185012,8986872236830976353,8161808757479437420,3976842013468221574,14361194826875124259,9635678544621537027,10756121595252790327,11534177116770847482,565605914676844215,5268335311737702568,9620981178210012450,17154963063165602311,123190531187192479,3225177659102293800,18089119254083261704,4145406127065875212,16680108059873446821,17249657912896080003,8950768025305985009,3171188857896227907,843296556339889973,938172445165057706,13287106011508233743,15063791404236371944,18341744717856460370,7280148267580770635,17393090828265504452,12244521843336547568,5298037996966475748,14968171010683624861,8375555571168441094,10793125598872539264,15312362352975243575,268014486886088334,2301741172514175362,9022984528164793119,2181569578516309574,512189887405488012,15967585532422252649,6565950651684948730,483027265772625012,9733864576114687932,10083980061722028803,4630619916875645456,160050115378575548,7000133982020012295,6416789628586849172,11217457589022283189,3356601045964328097,4938340237912252396,7066733916723965419,5588106083514674311,8263156153373139197,17637058749961187844,4838828506157983939,9789269614126327299,10750673077303290746,15960064657532958941,7456306111603903968,3660999931769039536,13625552244206074477,6112447053232911810,14970500643444601024,10090460136834589207,7674539053786871418,7096138921955969813,4434916709823301361,14405906478328692587,17352194650350991699,7237357978237274720],{"siblings":[{"elements":[8120578815374887852,11306981159749700135,5631698953335558928,10616319040736929375]},{"elements":[5324587543041107508,5257399738283507402,5820289997033749449,15522687460628161978]}]}],[[18419977591919235908,5442974836154723385,17351393603465254463,1373362331513381240,11927774907196859535,5711354287678637096,10137086273291195135,16104264092723948211,15306519340207108095,7192834005793633563,8689437589161149700,11855543471182096558,18041984970555202599,5471891147620346783,7448141261176799140,6244637955256912424,3437993460453282128,13531714528367969827,3415189400954711547,8080220316415790249],{"siblings":[{"elements":[921294506159624910,15066961268448583220,16884148568461144006,14502086554877062327]},{"elements":[17013473248337738601,4446877816464931397,13510654481467417161,10838828505252002852]}]}],[[614901463730193484,14632391933736588555,10446096668772210570,9992182915040205136,15408393777211243863,15098453636855160630,4041188612157477128,0,13099924684155492126,1517536326613154,12711884081486459417,8680044889723566559,18369330860096271037,8190218316323858101,5105698335468045288,0],{"siblings":[{"elements":[13126348455416281680,16505502408747636393,9617224500807532673,827871521682081125]},{"elements":[13995571004322444229,17758962009406094042,5311190421933980083,4507553832132042740]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[5268519634013649652,12952845650223350053,16768531882050438388,14462689093185687107,18277220295645319725,3852081186223516493,17100627758382860344,9715203018448532958,7953222902470522603,3825331082672791050,5465265629793606444,6176358672966577768,17306807916396830372,16588126998322903513,6467743780679619813,18379340274211873176,7884974251905549053,12613644379350971727,395505592059137818,3588224288551760639,3904668345611071699,3339470090609407310,6216287519318568739,882940143888277297,4162710549574314231,12180761427257355996,1890381727484826650,17010461562491177503,3962332100974049080,7918836822795597611,907486615081043684,1026841857427498009,13046435817655837341,12980820035208013381,2159562618664935406,12030338451283004916,1920968325701278683,10398171293207209612,1574763909011715605,15688152896670340951,558932655124037633,7564549072577692099,17872355376553966121,17450459230322024190,13831731954964285721,10886158955087757835,4398553647749525875,5996830362659087199,5849098922998238321,17078048874655163299,9389700541469394263,9929326601092594419,5714277294271540440,15730025807840719637,2749747243393585201,7119831539676257287,14048939970932445937,7306854533913743350,16655498606991465004,13030518484788664841,10856711318942555949,904125913628094079,15757756965103250997,596940250449274825,1714506698269187976,12537262499547518122,102386843593201426,12854247983785862108,2906655064868026793,15327684198403983371,6023138564887027653,1646580939255352275,6009552509419456655,515341885868353376,17755087942133871510,5837604297379767581,3581712833910489633,16397882613028559999,701121412127849996,12877267663904526155,2349261106082594930,2238087291372346966,106018565186860409,16663491380101968212],{"siblings":[{"elements":[9234506234901857685,930441051602006944,5595362472696224727,836883163510895538]},{"elements":[17200885959217346968,18203122369288440933,1093813852588954452,1807294838185915938]}]}],[[12801899079137100435,4644617254182515851,4203760268706214634,5341943230017763951,6138849682060443795,16768531882050438388,17561022140727661064,5253127753373520538,17561022140727661064,16768531882050438388,5253127753373520538,4367405824686597281,14572437911721481406,751171740133657331,1568911397227005698,9328476919845500390,6556626643597285779,13384410403879642569,13575832712174167511,13446178705846024262,17406700155589523823,5413926130196215975,226569376799179114,552296959425146459,13987939402746715100,16768531882050438388,5161728911392248598,702924244724379377,5161728911392248598,7686587867526412547,13775487223046110263,15475433684247983550,13830456970254041334,2526871905217062628,6776131571028322492,15572476089630018158,7946496835492151424,11903090303536749372,14423289149900471580,8139862492426176293,1121802652055412438,852510397542718596,12637167995840834493,14679798708456148502,7386881768544337469,3055106570855277260,9098675436744690014,3702130735105602072,3322359306980811539,13219311582862607895,14297260183093272325,12956085954941208223,11323213642752018344,14289044999841654360,14920117955189959269,3667982753238177454,4480163795095895991,13414540457771919061,7233458232763568077,10347652420421847238,5720940576366876548,1145447581662120821,8762061362326210454,11895831450913848708,634624826830689833,1834172846288291292,13593980852070479504,10968128489554995371,14010764789756318257,6293125899544130931,3462516977325291716,6790296269648422099,12854899216181858285,16745485788921178480,8129399203703604985,4348045024110151490,16394921933847734583,10583798062097623004,8452333493097572263,11421859961065058126,242691562078153096,3532568941424005237,16959867297455596067,8923575292628039713,15239114643925183309,7928781076571717945,13180605458198843356,6212482027027322350,17423671048824127770,9893219710050221032,9956726498654539347,4366326548977571260,14062188703070728132,11490132547201097929,16040799290220726621,4871464564005925045,4562125716726787878,6067459316709163598,18255499552544155958,8410716229441820393,9842986620601503897,3728629196115285248,949172643711658101,14220314898870285412,12923910561988157531,15560543793043963241,18446624951485698749,6575229000911724753,12574984068013806961,13196067073363906412,9132240991046738730,3706681300530699591,425051054205526047,2913752927757089765,9822477882480155225,8150547223206604080,15228403388531190841,14877173832897357766,7522885474127836449,5037066355241041327,2563700894772518833,7029824265786430483,2497148481711399783,10505371986145073188,5594627438926975614,3740608580352793432,18000815436541870877,7098852060973230500,10915655022094973099,11857728758813560002,2324680056335990518,8710411882429733335,10244773471657262268,4633435133748927611,7795044804922755571],{"siblings":[{"elements":[16847520311838574656,13578415394588802662,3700412213892200870,12349386662778369582]},{"elements":[5672650627284989775,11218623580893195195,791677742975974359,1664938430405218890]}]}],[[5062843589696509541,7259992147327830590,11127118778975722732,9256159079679599644,18236397392591152535,17108351450528552177,15501117547047117482,16140249754219532876,16425255339890000692,11218813435152661745,11889165668500594195,7288797616683862994,3426087995209108873,14319604932249748139,3218018412111923301,17995166589429820978,13222494430705095017,17198329287958132421,15754815826458081524,13871667366581724019],{"siblings":[{"elements":[4340803297323203164,10275173360130999210,1673169835704910230,13974946870381975674]},{"elements":[657553025296085630,8312555740385137213,7554374797952768178,3537704074756004062]}]}],[[8956236186013337562,18330107564678353831,7134625396275484563,15659101398182165519,1291632951671562497,16003362443426181153,2533264995251514350,0,14372642535431477781,7434838007197584072,12841747635525757836,3491229225728052241,10455189847142429851,14612817971347385534,9397783250569875375,0],{"siblings":[{"elements":[5726095140961381987,3360234919089993134,1227891956612369238,14292900071967453727]},{"elements":[15124046445069906725,3973995633108195233,5146047201303758715,15396423355846249340]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[1378578396624103287,4469550363019109345,15413597128689811362,1805144975167355224,6452842945118347818,17061466042700525835,9908442364377620888,15557126284828876835,6899480873189727568,12971330971533533346,728087363132436065,3204431996140256238,13511333333486447248,6061673480195229898,14143816356008065891,1818432731357414224,3931833595148317400,3113204864077687682,5014242697766007980,17498814194817113368,17311377860557701340,8282734130308373953,5890521087855310378,6106682907563760123,4103854807982442127,1254540041483963115,12935174769028627692,15430869945408104449,12896469002554472325,5331356288418194792,11484351612989676249,8456647540373465481,12372119994208242190,16992808387778761139,14492583082823698275,12992268080647866781,6202154336508741380,13981801581159561008,6132666943793528869,991440255466054370,4850097939918506333,15678134098977100309,4031564655424526311,818068419515164961,5189645943730998982,11842070038265827069,13692845301045488507,8827403897965133335,8787664043284139107,6377550908376354008,4423636113428645285,17734567326342336827,14552896584348117004,1702153397520986778,14272468428791344710,5610838339090108759,3371431548606222630,10139868107266119037,12592960625135564613,5499681482704576029,15133245799952602032,14567897988115088438,1484931179986933694,15313230342259256114,13284093008880950783,2496313854275467022,5098157751613025341,2705121421207377961,686818305346538974,16904485625070999818,10485443601004438918,1742619884980803369,7290528959142072005,4833033083385056818,14191175330164828274,15066184151212832423,17046653095088947697,17553341742847539104,1225471260958366274,595291968017247255,14785935603072475232,13108696271497115881,3085093188467307699,16176612129916464983],{"siblings":[{"elements":[8666308870474411867,15887861559861194766,12876980660469857901,2656114809566731166]},{"elements":[16360478778702248201,14213185250312606651,9086499200688171136,6646506645725327276]}]}],[[14151110958039928206,7394957063411508535,12242808867165814310,13976352360198370829,9730405472028585194,15413597128689811362,1579060068004460396,11309465540033045590,1579060068004460396,15413597128689811362,11309465540033045590,12888525608037505986,16547326051220291570,4274927800655763002,3121283270468370288,577542687887903379,5696365283852088763,11169520791487999889,8912379173499424821,17330094462244822106,16769704904010981477,9411855531344263895,1157536920058867649,15381797910990233828,193028617278888920,15413597128689811362,5944275695934856175,6137304313213745095,5944275695934856175,8996271031570341611,6570442543066273298,7611819675994313932,10534295743546521943,1331487254028825072,10196791628412025141,15441860425725544654,8052969032706882455,5867667407760738914,6427717164929771354,11646045603940553125,1651660475798712954,14453110603546168042,6702480046212256465,2515167476706338212,8408790910518680052,13726532425353449138,2298298534390186647,10313968174462873000,10493388062110618682,12074769082133067769,7381482354570955863,1265223135347065882,8099429127087925102,1156976121577905901,16859850340394106066,10415273072391660724,14182129822556818895,16915057393051886321,3101462726258575580,4823016207540037510,8339251899462823863,15124635515634125381,17139119355117614465,16187662320977464984,988049424955803048,11970898299076925761,3049146126377734131,6189179014534844601,2992319029155877019,3287539059167030767,1456751749121236081,15255993500612140682,3562091901483409100,6382968262506972813,10118732147714434815,6565331561510176204,10057381849171086287,15913827937953698835,15024483420572498193,16813605096465161202,9331266366565408692,1101315823369584759,3197107650307163365,15969829189172044313,14099241623905315562,10961752644378287391,2543612655353394500,2299087276369389335,7900896679024274007,14475105730052509059,1134482989356651075,1199508703836224381,12865960276769595356,15804622854916570365,17142965598948477851,8781606262333289968,13532386421161973677,8888748173017908989,9393364460999692375,16307858586919388167,10490958219829679062,11746522735730466271,16837186399574943561,9926120943598710092,5650950788243384049,13299009035329247894,4898609385965295940,17921951389996105451,15976218508721314503,16519367972819967643,356701787644699508,3823992709874492751,13655979623604649909,814691128406149016,2589815402137204559,8017411099053767081,6670506440608384006,16625892828742160013,6980196619490882343,17384384046071181817,2023944507412081016,15079293339612944111,11492091039257939737,1877402569728882265,11896797140477366943,1111118824048114488,17142084384381596014,7020557176362306018,1188383490488442084,4368649678832425827,18332984063091202717,13658935803422495926,18386018023850975407,17379077957778142364,14643855309430344807],{"siblings":[{"elements":[15192652526827466958,15586316092843326388,9191814238353642666,14473217775880180809]},{"elements":[8871695588031639576,5579372016518937853,14746829833672601330,4076645109767800603]}]}],[[7278455094172970082,15494979249592802837,3710995277314941903,16641655468308008974,16729439745299282621,8205253729651154232,4782274135408530254,16617112148563384944,6593599024015268713,7210393926410457677,11892789375809678642,16040480417739690731,16417059662749310161,9734629505397807571,4791381836375285910,7281877705664384670,18285845018725182317,3622888342816986436,2820733510738891763,10506027441424428604],{"siblings":[{"elements":[6582185766262852557,1315531333553653553,9170159245233791485,4933541803088299158]},{"elements":[9777955592616378163,16357911707549003248,6884124452025635339,10206596147644096507]}]}],[[3835143660440699485,10656853454232428193,10933967931993736450,13088149247015020650,15933133983891283263,8834179470125682815,7842223523025843251,0,5633349148138865360,4515557714134109471,9724363595095838748,15146199087203412896,6085653447340013960,2527256595231817515,13079920954816725645,0],{"siblings":[{"elements":[2495875557577567799,3361292954337349894,11715751049776544961,1414520745410752021]},{"elements":[10917695442368160527,16000301251105568901,141408838667129508,14071022423379583171]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[10012935419466238577,7687981581886084074,16691476774783491,145485011789036548,15168412053950061181,691136674232252020,15619028640102623808,4059841558137313994,11221094138731007451,9647692249680977507,1731380067292760758,12050742724543570870,4318946795225655072,13445284368723671452,6526125951637107733,12837226377147962554,6200021417364185498,6231435401537232377,12389719809556874887,3374111251463901066,12141217630282975102,14465792413110705719,11023937824779326741,17774017186467066410,5207900634379992722,15595245240556739197,15843721754649588827,8096232151492915937,1459042434150359834,15740105734539224688,3589661780789903725,14631890640933874724,10536888583905911439,13062014467609786480,4148455259947965818,8568720716864665140,8583370790698260948,2431818726303992780,17646025720604979999,5378803794799483225,3660142930433849591,9625635920878019344,14383371796671376583,1787062723350198525,7352998930330731195,15828271121064875052,2170785863873326871,11092974659643096053,1016357294328403998,3386178682721298592,10075031584945038749,15580465637828448050,5303646519772868826,13647626671420818152,6469360450517991518,17147767722741349383,5801886078594869736,6534170801082628856,775935246617636436,17104283438042248432,3036702298271073781,8811634396995210406,18346120187486650736,4932236222573786686,4658310730087341386,16765483636386552940,16656476462835642909,17936221904913283325,5877156874468569260,3130651501490620518,18105588846974400902,10168135683153458111,17741186566292372016,8869418827244045071,10989794044775905426,8651371415957867828,3056889389710013227,17540622419485826949,16818380837613850762,17687093779267761351,7067130542631280624,14008375672721013694,9557087022363310990,5987878486782106282],{"siblings":[{"elements":[15910947226590530155,646193018130629436,12362342674696131851,4390055708897877233]},{"elements":[15236420770846088491,24658089369011782,7263309267073018658,11070078437783786852]}]}],[[3281502619423060773,13545277545568238510,14663410797119126073,12720666465524029624,13682173814698425719,16691476774783491,16489346451889468861,11724776197173310259,16489346451889468861,16691476774783491,11724776197173310259,9767378579648194799,1032313673007693040,1596861470371372754,10402304517817430120,2483969113131166390,2191573589675933140,3270934629869449125,4004025053419597578,13535726016122901115,11585055584175554204,9356925691288661246,1274251599650797677,3963690156608994393,12812789287055115536,16691476774783491,15858199994462036273,10224245212102567488,15858199994462036273,9666704721558120003,13288638059712923210,17997353280929735173,9277415697485205720,854712207881975533,8130996485278862663,15854896505072261359,17000244497067016231,2348777487253830422,4811735444750600163,6951081803906996268,1721908509034235995,15628863770982970563,16827942614142089535,4419047655569476290,11080946226472434827,1957930303320344339,5929201243063801329,12443586456361428539,16266721283900368025,5058376878399477309,9574560602197325960,15824528355524026,6101273388259452009,15849884611510702000,1606896951414439592,4180721637370893178,6161806321092149042,10401276542651193375,16060973236122602911,4092563047770096097,4247546638576962008,13579302796063414788,4791774262882724304,13344469290162487133,13489853806087439002,6544450601066153378,6569615748812327759,1664337139640120460,14896068121207753524,5172285105153063193,4817899746001312958,8728594972401084927,11758911437188549324,14170632718102110201,4270041282401155237,17282629990245181624,12714060659886445457,18257893603707371348,11229975094882262471,538023369343449307,4468526873109874303,12433213819931711185,12343038594947158749,9267709560076220374,16816545725133678438,9451077140007607984,17161662087688430433,6830845383854831388,15680354330461708110,13971383237457892553,4875983121348075287,1966337443589459860,11712497432242931409,1816773826562020757,9935064948934430015,331954054948368695,1951285132483711636,10086843698765423584,16770710786916756992,5695060998640727328,12115688110455730018,17630235123352566075,15670067398131370950,11538072254343002463,9258826701978312318,14480866584263446305,18213896243965518191,7881405308220506691,18296271643255591161,14690751298301158462,10983340880121533383,16868941510753203400,2740397812020102557,8605774599849155261,17491524524630257862,5477557146469030019,13294900860178931738,9193369807492517796,18038666124266344469,4596457482361029888,1448021320616291819,15484044170240129549,276479322016609527,17467243206172826267,4433588343729822947,15625395583631046805,3280449840745512209,3159581411382378956,11709890911701605073,5315504839673323189,2847897273926513665,13943415907675036757,11833093186080535472,4221399845521263166,11516214591349475180],{"siblings":[{"elements":[5596782909573735476,4613168985651126418,18248605611113826275,6426047860788210688]},{"elements":[7533082028729651755,9173976881958298193,10974710225955313053,7929308049463793587]}]}],[[7128160881784772332,163492447469616214,11567415283410768558,16440166413097431660,1552835679834409733,240529633252257515,6996760015057114578,6033622720545297183,13268949281722220335,5251220633447562801,18316859167594218671,3539236855029735617,301129820133703243,2238033707138801462,2753074751617756,16422223776809456906,10085553989973316183,3040567807808910208,8453808169622126524,13325856205613073543],{"siblings":[{"elements":[6910832638292671769,13797549870767981045,14520730855061546087,17271623587622979848]},{"elements":[4364406433148324181,10507593487465816,13297078403476875204,1223091553251716553]}]}],[[16766689885902870901,12513251243906979434,1365722227491458902,2031017002529446505,10970578395783212558,15957097447633837072,12930067460079142685,0,1648752056665406897,18317960341948288106,3007170439699875743,2699251381565382958,7133585733568542289,10694030110129296289,7602129396212687189,0],{"siblings":[{"elements":[11029012393760639120,12578194553431982703,2328526666186161018,10313936083431865438]},{"elements":[4343434637314689175,3232038597189067117,15659045028322891025,2730056811535509216]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[9720118099857617667,6907118851416898818,3093070796856912387,2235836106412122627,9776807275298159137,4463155122670423471,18049106092813588929,12696594783596716152,8598999163594193455,12036132876534883927,7956960896994515494,248019902995950327,5027583077203714791,11153823857017262041,12283001839736928859,213933753310079164,5989180219774727712,6635268733439933855,16639455780993560759,18042165182356710344,7491622469494033088,12571655204247379598,1506582651816982435,10136387582059057128,1810081575953731313,5670847835698465642,1743109407316299519,6211156965959444929,16520876663818552666,2008530284052777544,16241527278739088573,8018667181643143161,8808137967728637964,7881009893512375363,17936777579534993500,12865838725775282758,8370556967346119698,14392083173264317538,11502310449879588286,11029208386439748604,9202987005551069329,4640056994109975505,2271518247258746149,10051596231907897569,15619149238860026692,17390169001056841942,12125811190947129054,5541310016585771301,17793373452488747220,8813942452273184319,5110527927842800116,4582875774521598260,17677138730719372105,3860380289387333732,3292748589864505051,9225269255265166944,15298732803668485805,8507551972866961390,10682902555234538063,13778598594164647344,4790019403597034694,6086602011629454043,8674778631853683073,7403108128968585391,8515032791194268311,4110126945968375011,1769440711627359864,10648078807328822668,5601302746078787043,17853464202680373997,5676012651936639634,17296680257303941283,1051466731935720234,14381077385498589114,14409254071908532336,5708397534533713912,15814429937280814178,10266941507679448728,2130761593164817371,11077261556718581918,13890119462896028250,12349168555694263847,13485222354589623597,1438319735464843866],{"siblings":[{"elements":[16294515965246207366,9889431618541528844,16148585462734608141,16618130477107477453]},{"elements":[18161808293962363183,5378725722484264021,7687383671526977091,16433811244973155751]}]}],[[10127538253577746896,16397315088477277375,6309691233247695356,14994689443059177744,5997537832511934284,3093070796856912387,13353642756333234282,904436519430584245,13353642756333234282,3093070796856912387,904436519430584245,14258079275763818527,10581548958909357400,13565433966720819365,4892557830904861375,11297530951076201822,10145504546170081731,8805732974585420091,16602374987479140494,946160588292314793,3257966888035396330,17795523947181217600,15956645078348130634,2825828279730804253,10973851001543636978,3093070796856912387,7689622727323455429,216729659452508086,7689622727323455429,4671727006263835322,8755976340624686480,14940787421656193237,8824672457088913139,17069826511276497080,15921301791095147434,988804020161410903,11956281042513577447,12684236217232577836,6966973702148237388,5126683162866440094,11588582752568035375,1957343221759293819,11962868251283958415,15178388750084365944,6911210671217509847,7876512374323469606,586749078258936320,3849506412261967726,429009891332572678,12706097635235497073,12008781943864442256,2042690404649654218,16893658046339461570,9043662799303870263,15533498072449143947,5337473283315328333,296518838138847521,8511562175609488902,10032769994951752437,39545485178047279,7008083159441636309,6828876903914297029,16388706690875216813,10474310918028189515,11492192093825779201,224517722848927936,17940777468114640643,6240509147872329567,8414334019631803799,14339206021849195569,3719347127417926084,1112626075528436704,3312753050051697017,8234904107917736376,9295287285673599866,3602511319602857538,16042492518986195428,13772178647388060008,10626833185282053299,7120925450321401442,16246701639529233640,965784064143614560,14642932570226928186,11434360916850904955,703609304101083674,3440131132421443865,12795576040387178323,15412583825953637303,18236216402167246300,13416471402555648676,8970302898269706208,15645256046116868086,16784858829211760651,5322883767591214418,17351867203610734727,1611657377586734768,13533872148731750982,14278139563958559662,15880589024635401554,16402058059700081925,15947480289398548060,5236620638426269132,5359047435080246038,2783069417564818809,8340403031912728292,7308227567543713445,13114664076687084456,11930790153061056533,3474442203677710308,11615680045539779061,10677756292271235678,5227208655973162809,8280113923817168740,10520831315444158327,6361363019282561836,6382173582638324951,15729732530417226071,16234920038572309497,13963873163764101147,1135953976877136554,15274354301341772706,11701301518243446728,2970815036725812862,4432324204505195463,12007423584013923041,17083270276247046337,9280539510869335219,3674873720015177187,10412230326565519463,18424546253278351669,4636272582752391719,15020339038621459884,11000172160967630572,629896806960344523,18072482365217608385],{"siblings":[{"elements":[12713574046380760609,9805961692872793585,4122102971378149195,18412256971007999982]},{"elements":[15514428744505251117,14504379719601574378,3632924971737213774,16395490620190777807]}]}],[[5461180489265098833,6665361733031312786,1238602632155412334,6097219616063576791,1190005475291183758,17684942416269497453,13139973184301611216,16708502281570584935,12417707602078445294,9661682217280585030,17893654359438496312,557761743061829284,12676713174739411229,4869456485413128961,13967429103110084737,5168097153607548048,14490693664595317206,4958977940197465137,7539559833283670301,4519786500600694259],{"siblings":[{"elements":[12941262491942198920,12422435020566611727,13894878595072038265,13599999653125574507]},{"elements":[5535385119025328892,16343452629861501643,12612476530665357379,2681822078582656625]}]}],[[8487471773418068048,11827834959199760948,912603382658647578,15767929452361712366,2710723610110433928,2359038275123683180,12018775851429141664,0,12116425937289382101,9648013512135753122,12513616341731509531,366437372814971581,10818109162819884218,467898916587671270,5010505622804515896,0],{"siblings":[{"elements":[17018269257663422633,15708082243845125499,5797415517042781782,124605696851825361]},{"elements":[9542696544762021952,12217973700515652523,15963717726976776929,104204118884853244]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[3738945624800370731,17300446361735488265,15917639738875279304,4136774869151029450,7117564556375305386,15670713401097966322,8381165688216271533,6616103561609861786,13525601900549725401,8799482595755943457,17712624366892731318,17118545599583281469,991100146237581491,6035752930321192712,8266024908831034613,18064514353010328935,3964240644054969232,1994624446628148135,7737696342131683957,13493604657617510761,12370590996382281203,8394073097020065040,18283562745012062460,6603194942422814209,2531030556376411593,10324982144450082508,14030009636665866801,8517901130048984070,12939125815664675574,16304843600861358605,2298466883715219055,12488184336251324402,10985612231923603660,3938570370374081443,3042511045280239076,8171478540730367577,16057693655131392951,11774495727902372291,158368229678630360,10831030505909419154,827360893993244461,10152328350452690919,11307238070099807940,13841850883366080465,12691891050419428514,7591453740245008478,13518080200785327749,11697901946292834344,17655953453569148143,1697289746656046530,9087743985318104710,10718099400097923382,1326370504809921685,16908986449959167910,15621818700730741288,948682801768912387,11775602109313462473,15639513639876645710,5756007334659907895,8837886509164769704,12808750118480217901,11348068085147256475,3562302526915199466,6009828677840090154,3086670756891117194,870481913221754358,12245862984441377243,4244793211851520732,13952115460324070073,5544993801584185285,16653723066313937090,9145775338650732340,18188734250621702658,13427643555713573844,11494683798358729483,7381145497053006350,7707723438386994051,10719871725717216219,13294205928777507235,13970396126083246793,11718884100073064041,10310245041771063274,4668742116442863641,11041791040371495950],{"siblings":[{"elements":[4980007364458196901,1695687289718372436,15683405046165023045,12745377463045984066]},{"elements":[3560583152441324605,12581631521285452247,3424922011369377233,1328356594502091179]}]}],[[7084960479292912767,10113856666356110536,16930827229542081179,17595795979135813872,11413641985416032712,15917639738875279304,17853461635410360602,10820359551411808993,17853461635410360602,15917639738875279304,10820359551411808993,10227077117407585274,13441166086793643131,6922279639650834894,13208226628096937736,5907712514304296003,7958718539634873768,8531160284099858297,12132886358587202799,9997670503567991906,9083615694236733508,16026069845095812190,16685173385837814215,4321739241022193946,12827769716812395220,15917639738875279304,15428462316217205166,9809487963615016065,15428462316217205166,5771703705112800710,7671681842049620191,7906121383596545151,17795075044569595192,267393143160701019,13055870565147488823,10833675876607962418,10656230445922718995,3191074590368993097,10161275569941155214,5952119697128223413,2921686332779170484,2911641479120257146,5798693304743700997,8548710433550903256,4672046953109140416,4590267044312535736,6761263912919432649,10625469962512286658,10338088260715321929,12665159325225859539,2619789790716391725,16434955727193443599,12233493150380712527,3541018881139668402,5916700112010905077,9690317986464067255,16987669436823757836,14078265152103635253,1058055340552258530,1111528309983511519,2625014102184119528,17111771302692877637,14859633695942916925,12393006655149325854,16986755988351333659,11574842003016317632,6340126814180697654,4145585163176589839,11257768379451857135,16523511744299770784,6135771263550918046,6453934388275991869,5975543667593338027,7779106379135053155,7064553168878251009,16448941160245605637,7181753004963525912,17703095613754890608,4592917794041332013,5969316246903777513,18196369409124055536,158391249579966443,17166217745866129909,8366140937088969407,11603369719285314751,16799375343204680497,15331766206073844023,13571003745490693456,2285841321871463401,3287746584190163190,17659558956511152653,11729878151953388086,6651763396347107628,15031723819765623727,2539009710588176701,49161353515344899,2482042313991817612,10542781243838588650,15546976275562151157,5792107661901290788,16317246737630525595,9947445054920672731,13375261689542031801,14113550991372265461,9857360463981987336,10048171775558884311,10903961737750112547,2458821739998608501,7871027900879415019,6586892564065927186,666768622975746960,10791972611192588215,2655116495804968490,4217857328638599731,5080191983488001789,10871149695634063689,5680368691356147721,3982569629320923951,15021579494148421009,4673240442536839164,12895880157490928898,12528807577770546334,18241785952547653876,6113020987822997859,4249181776089836864,11957777857096516827,2342789664316756156,9460880196498007658,8534902169680737343,9030928585522640995,6647745569884872941,10935858241864339772,10812863755601342140,3329468921200269224,16735387407284607568],{"siblings":[{"elements":[14803494556827238929,450055207592316694,1894967607835298743,16207476689084727230]},{"elements":[15667835261289599201,7767145371646568421,17153930599471857093,6165477178966000037]}]}],[[16785113374046796777,6133923948245467531,23239295031882708,13980775917510137663,16283111736950835377,14564216948085603355,13154310338946657361,5501129881976983068,5195341718979617180,9243946101157853041,7354286834281315714,11562861636924522565,4027153467632671054,12446538990820807040,12810498970398811092,8254627704674859964,8383986220921249707,12904450598717365100,9846439282057451540,11322174034229376378],{"siblings":[{"elements":[18306019676109390948,14680311545793840175,10387309026033973921,17372751179950535074]},{"elements":[8025580057819607054,3703837812573080786,6601034931441644689,6510314298353409485]}]}],[[17937154577149352743,7317852472787022167,11538646634426154470,12277547549630093391,5529422046969641865,446204480539316675,1091548174763461136,0,6313425883616107843,13537378377563851191,14490427032985292512,13980084339088029239,13993134403569842203,9656174682288389994,5576574372334360384,0],{"siblings":[{"elements":[17055561604165617144,8094519159379494467,15342477564410000799,17068795624921149910]},{"elements":[13578991874694845848,15473742535829221740,16190801191990391458,4892732751593728740]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[5476891376197235655,7044817592391507668,13974119857005811796,13974119857005931896,8542463872071985231,6501044494244072249,17280822819241372308,10053665788850614925,17448962655787859727,12336908644746128088,9143020989718619471,4743203533871311592,11333677962792045232,13893424625045704083,767953711050007881,3472634815196335700,2902869279664059623,4226328250494368377,2418764480316296736,1501861828709332135,568975573703484830,8801800562606935721,9514012360554107037,6115575755227527047,1051291325387837076,11601191339553618576,6074519755155606439,18335853116697904652,10165784017796992404,18323605521630460587,11994117291089446449,10451983568470879546,10434065730445324857,17938995950366848123,2508123549594798968,7640613494747113386,1513372534219473739,16828618817162538109,8366075947957833522,9049395889722424712,18045617055697920423,7144267989314336719,16890803523690545074,15781761522575987695,14571475745262949915,16362201857573628110,8875795807742385116,2397097127390260361,11086508766290873299,12528536250631072701,4796334215621772761,46053206664818609,55855699141615696,12822704619433111871,5230152393175782857,18340028855156558604,4982325153117195849,18144683475374954843,13809928813137301377,2031187538284433977,9072535653736593441,12622276487432996162,8839987604652581340,6940845095475718033,16000102712351353061,16532084347876329880,11054558944075828190,7559179555829355370,10125459834434143139,14588025940297167409,15578052907891230592,16440693311745855827,16867123057370125982,13930038904617907751,11354803143482232725,16519077024003978008,7359228380659898187,18264912276873600757,6663799581497061960,14594092587359944947,7904080859246436117,10453773933582997036,10399628085621807446,12434936933788275446],{"siblings":[{"elements":[4295791253590603064,17929487105087721335,2967055119325542947,16462733433019204129]},{"elements":[10866503738528739597,488999660478424691,4680620550068726076,4667412765909904450]}]}],[[16428349751610191944,3347881533532107938,9468737643308213580,9194454772744592800,12741552808537566884,13974119857005811796,10045247018444647662,4340055757567630225,10045247018444647662,13974119857005811796,4340055757567630225,14385302776012277887,15202997972538187494,12414035098264397106,6391149555208523887,15712637695103593820,16554806991031947314,15363932162293809841,16307837251216160766,6820178166180814956,17457607970083055920,16464291619833470086,13749084992526879831,9636357227791350456,14663917240177601678,13974119857005811796,14942531704342925469,11159704875105942826,14942531704342925469,13714252095155089725,11813664378122801899,12391017937545841995,3476544466855521376,4541244746607206727,8878509548685829859,18213591479499389571,11906513154856102562,2661560206398423305,2184127630907116305,1470388346871513421,4220268753331067933,10121067713976682072,14528380587817187057,16760633056567525176,16239739171151052007,13336769264731776731,6597861866224831980,1283028978560633880,2343950577965466019,14930493770682231745,96390668912837594,9674660986690554615,3312989674635627754,2217725399410485058,17217178624402525406,1270496295808607583,12290224265072685290,14803910390123085278,10223203367692759106,11308771395676367576,1041038867464915568,813178057614178183,18268779348647234996,13701728595724581165,4019666490957492362,1234706480593541580,5634977730404901600,9636573169392748071,16107612655947242065,17723319666782197456,9218105179571351311,7480356268302484853,3953131694299149827,17397482431922805387,5468481439749014787,3320365679890891465,15526222117613994762,15333645379253332801,18074859146242913422,956580594101134221,12459586433819507902,6251016581514000324,9061286157704019153,8285114808851066511,18196592430429844596,17763244861005544579,16619520955079787148,15533162835159325494,2463578269926271449,16128653967389374961,9702427179903687789,2069753350137081705,9618213279997531696,9260163586230802185,5458992430299660279,14734687379245443572,142881319041189151,3921278602338897690,1751283496631235262,13106448210476421032,17623768063489438275,16612612992753432848,6545797981497976720,9814538168567253074,8995293668772951989,7142564581237122052,3547619286584280037,11256682631544360243,456800540290985258,7670894929460168942,13668116004985323929,3029202510962705921,12132687131942077218,4898917753423723492,16116725979714905071,6407348810037865596,17895095959158463658,7249739482952358425,14259627781104667467,11093952195928251986,1607619966941010464,10905336922186469824,1872294433562059216,17731987557902592659,5781022924291843377,8720737205215412068,17707746869708051401,6069659458516403762,5534361090266582195,9462663519886507369,15792770371188132287,9616736522457323016,5331923174174154450,16132487996478428137,10413918624073677918],{"siblings":[{"elements":[18107004279715648445,9022046471554739761,10628535777396098425,3646342173473337268]},{"elements":[11198870833902175989,2627056551053426442,12173347194088488972,13515738457566135127]}]}],[[8626224241936856583,14856559883591434424,14510433262357032853,70609650142157792,16174034659731933660,14418454390764949067,10317363115329315494,15862461097024542753,13507945798989789416,16720387057277569375,2349995305872814827,3843878831202225839,13433895994438247307,4673286750299125403,5081943357741855398,16269570186101974226,9763937331882937659,14015753040899098033,14715263016006203738,15703534227015491822],{"siblings":[{"elements":[6670728329057245338,3890032036868815775,5204852498836459869,17184037003328687604]},{"elements":[6710758790062067915,5345434817371747415,15430985111769744306,16778886434308867610]}]}],[[5540625561717446836,13565743830487665087,9260613781534821868,8768391500546086928,38972992258622645,2249673905236889908,8161822641480250141,0,15511403783085944620,10198203317176541484,15978182780622619471,6024821142813512820,14756831660052634436,8779059317447151472,12681658076852896265,0],{"siblings":[{"elements":[10351626402015523140,1090234583376457042,17933840713314322934,5450821526290370143]},{"elements":[5825481590089362135,3334376167476817684,16556829564046151855,3266684785706209384]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[17309154467538374970,5921660986947282287,5210575628930753728,1025394299355899254,3722453491818617290,207600025366364278,5211061426160591707,9913630428600148791,10055951231783184813,16941959178671694115,15272671038975857647,8235483371591765252,364913908695182646,2573314931579142310,16002698654255164620,11940940374165065722,15062831020487452015,3286951869681444525,10384279020982067906,12255155936332499396,4897047366900862140,14712212207746871095,7606126797224126094,14490146945575736656,7234755711879785663,16953361940723108701,33811414688273904,283501411437681650,14882959922343448377,11504602547610978975,7394230388887306220,16604102362948606094,766530298238879286,7774844900327790438,7779368941592117418,3035839434686514013,14211583199505317907,17744351508880093107,10159830515114587766,2586575263559338418,13981477664701885178,10655916542828352718,7157407024044753804,12261200482671209762,14900410684097432479,17668339122261007012,11015536106475880553,16585568177312646567,7649301923056383660,12617616964548481833,14117940177489875760,13875491930991442649,11463568190865768265,5344569902157425951,10505510638600302083,236336947714516523,1485074702149797333,11825206836843605256,7031900389588534476,14042689380116642093,5442754464648622580,2782492432450949637,4822011887726623161,14295786839612110826,7758668475817115312,3042977186650554235,11542010908677840294,13240232797551256166,15798244397578284223,1277573659805327119,5358599474788895752,6058915319237269483,5078991869075055447,5294841669769415433,8616722586173428815,11421354789991583735,1361647766167892066,12760383721194360762,16729049693123540836,6424449087463077689,15911108247672030108,11878782419534744626,10832481317469825558,9979281903250902130],{"siblings":[{"elements":[1332641778139015931,86381625027850098,1824106329716150824,14206591193121844462]},{"elements":[17064536494791320770,12263744633261512961,12108241189491567152,10005497132141205270]}]}],[[14853019790872164471,13038136897149478763,1687936362749303249,14473762595183510898,6592877338517447456,5210575628930753728,8241107693307356656,14833985031824804112,8241107693307356656,5210575628930753728,14833985031824804112,4628348655717576447,4785858247843223089,15235334089740473328,5535215212106848261,13250178523394986063,8065838272441785228,8814114251480177172,15947485844459006674,5606772513718025115,15507401231823676402,17884195331596240948,18167399615029406769,1851984932924160691,5643938273845372685,5210575628930753728,6659527891973168923,12303466165818541608,6659527891973168923,13012958934211313003,8044033475909319185,10736621635965562861,14206757399855096673,13241346492443123164,4487457230180305158,4562049434841762386,9386108526734710323,15597841190097223293,15008777248005004789,7491659037461242097,13401938796334459173,16363027968004695165,18402991349408734448,6070473981467140010,11549000582076203328,3984804320978124598,15737527035636670861,15265515348159393160,15900602852861942882,14294666289891341710,16300877123187675287,1035801681536715967,13833806576462073168,11129865477860414573,3969414444300110460,12168681863153739953,10618471197780514108,16749846027702379131,5681591360763246216,15381174010894060433,3806143283664917712,14243749049398988947,9802841359090634509,13319998928944814202,8847406754958713293,1157835713880879125,8137768755051572272,7910325768558638996,6797875917830245241,17473096118169956027,116326766215465926,6669354759444671561,5975377123124139157,5182626927238413269,7862960260219696214,10873539548259020852,9368866842288533407,11519401504177287115,1805532781261202852,16729740132781897583,4036555032075209697,2999925835847257877,7878489162815184075,14637586034792124390,1497418015554139821,14563169561618755560,3730892323612595069,5357416192677001794,304120418340515926,3045286119215125835,2651510498201630862,3276433067518006550,11328090861429820572,10735631162512376150,1252316214388154217,1288907972183346617,10714857650395448328,3734625475290146228,12930089272065154125,12102766002632416634,9269238878551878586,18279288072828398200,10921167717281821569,11838119576569491327,12339876896166024394,6161141319881920834,14220563090071759874,1193625398735772051,7986275589435788665,16818754449638982808,9222148036751963611,7960810770330221857,8635201694741496159,5640486677353291402,12247601408298504825,16379722981537883924,3233733468832514749,13374464912739087927,12432870351250251598,12904181177893289816,15135318883878560494,123610193246322436,70015266581237473,4065529580581237251,3645735508679017451,4765904875154843211,14195989790700727122,18211303920704730715,3297386665464992778,535618161355671529,1111581605265427434,9642302402030779435,11924584620999715593,9058416478959385131,8466357516413605173],{"siblings":[{"elements":[2678415218004980302,3671305582021552230,15057316491148050789,15316613326330812553]},{"elements":[9944776084518157686,4653909707046425785,6023823242874418186,17177728323428333719]}]}],[[17806805360634627850,404794502518004202,6126634538626572509,10206057224657349428,16078494862711041398,6353254151846952211,3573990744142476016,7689284720130457285,13277641387966050753,16790031630083612401,5169781981993111665,5894048338374789006,7637301216066144469,66149748051604496,18192845560375736995,10097303312875537849,3860284202557798624,6339925434112849861,15100754907470484162,13201237428359964057],{"siblings":[{"elements":[5758598442106065527,3901499523444079054,4545700145382531106,12119457425484593277]},{"elements":[13433233575325704221,16077167776597953837,11961939325101763758,2405411677467043536]}]}],[[11043708363579827502,4747217426795697001,10771981870264437476,12090407396709169326,12801478379211809025,5289099748260060536,1079402135226056795,0,10430601805877029969,4409921427286407691,9664708818696224996,8795641841035552846,6501250606703466514,12569844554600869343,17791021840545847050,0],{"siblings":[{"elements":[122861332043394140,16262474340535897618,2993019457448670560,13558586549795738921]},{"elements":[6823273978858373266,530797965608506463,9913130057188594913,1918887752350721338]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[11478853722654892596,11054649085732609431,4994009559595819210,4186791003624108490,18024865371818158892,18345183498407461526,9694238634292017590,6724859886830687063,11243260270601353574,14381814419105033411,7818933522528881030,4546529647928812664,14925540237646974265,16878266396497955220,12920668997211098573,17268828363658179930,15016004026910537377,13817031165285279441,595208874785186131,5264621933065972184,12842607752779588909,1036458340443929803,723974238512284296,3865120520076342236,10591874432022570118,16672770104321157989,4268204143023668522,1442101787761795173,17261059111713346750,1886389845452355019,10015188874733823167,12945251435542942346,15729006941700819727,9769721924531241974,10360965788706053704,17231683844444576182,4860556932014059440,11290628573575307583,10467853112375278596,15672706883929365300,11854941895739424568,10532167184289139234,8849900270380063794,17258070778068654781,389392563654780465,15694034380242781064,16408125286346615923,5240758237683744215,12594341864398680415,13125157218336151182,12110224318087305788,2381073337923353293,4801286650727974296,6463610664988967714,4579934330236307092,16913166904864701304,17120949083165668392,5417444260846067353,2162861526281072576,7230041798647740383,8052962025075942004,2329101354125768248,9495441095357060775,944189234100813522,2974037460852383196,2808898223350514185,16825144225291284340,16495574607473979160,1773988643127921369,11103048928261281020,17248516975848621671,715115511911425973,16595596184784813139,2875296451261385175,748823176798831426,1445145643777419320,1059249732834213379,18281412487205604006,6977248505445028194,3497756901944121467,17667695280482817497,519454644348557937,6789904627007533608,5570494389550069031],{"siblings":[{"elements":[2788283718956080627,7243963918501585343,886762250337169434,13103212312216094922]},{"elements":[12080961203814882388,3507164343688256046,217812273724800610,1252946754184999199]}]}],[[13928294621723921177,12780940283369458641,7876240315475227901,6066626702537238528,9898862770710249753,4994009559595819210,2759606787637752471,12658469558348002224,2759606787637752471,4994009559595819210,12658469558348002224,15418076345985754695,15817189505417289729,14607965607124354080,7813626309410363076,17485223674943332504,1780965341182078330,3037496677795679112,16925233897322526943,6585072227811472298,7220549427393497823,8894639681782314697,17983750126720184772,6175119053087603624,6601134111490342972,4994009559595819210,16230935946409515570,4385325988485274221,16230935946409515570,13422869145706374791,12056456469944566203,1994640404655837046,2041498014949327818,15222292150707478314,12055070835694701410,5791770988338043396,4794260121078486195,5088243394091940716,4433164256239424632,16575794680504753952,6531940195923791990,3563770336607741715,9089170961919497076,7225839869417248569,17163966810386791910,2469899024815155209,2292818910579514321,5604300214587810177,3962901446771858307,8115703962873436186,12227137774487342913,10055717802038525292,5040779641845779271,4020234766528670622,13990080084821656167,17049289946649598037,15589022999347861836,7996890106800872437,17070531954983798077,6288597808130522527,2882600362492917400,18282210778658487071,5290766639320332586,11934186339991570015,18048571945567604936,8633311260728093051,5726096325067463398,1560335555488445862,6346689089155476274,5352700878563443229,8260947291255614337,13895445167245764314,2722730527913789344,9984369258246511722,17449942811566287633,9039783389603156730,15770212808645548611,15604002583816624789,12632678186351784833,12443316506322579603,2689703002348580295,12186133393983573364,2557705900584619282,15747072224155822779,14575316556591232559,15576542984462621081,15488569866082674263,6342231580381115232,18245380729150306293,13138358927956389182,11355807333367714725,3843203266552571735,13372082698841656458,4282403972695807428,12967650405676443931,3279701706996147601,4269604628439986552,12810591614434266971,4918284573306406547,15398346437346008377,4864334928906697631,15200787090238653652,1507872707864375709,14520207539783615626,9587587554881518399,2926367496026552554,6912410705983260971,15369938598553995963,2075689248982218282,5152237836296205242,12303021952179647682,9220651996076525198,6997453282729167405,2510802550350257881,15986784152557061449,10403886028616317914,725801823863716254,10813943364079801174,2773230474526954969,16627196588714671373,7358925652655215606,11951672684069344790,574312075589763984,10650483314780928148,8856081240889135347,9165158582390167601,3679942570959956785,1512278236454150868,5802207444257996574,7437036756859590485,8786061085156095007,12159539347118920345,11662310128932183807,14874933086469731455,2830306178053176220],{"siblings":[{"elements":[3130019963986597337,15339088729883962328,18303565295965347353,21834830375555995]},{"elements":[16309815517466357069,8510292391200766341,17673219715638047263,11467102716297814818]}]}],[[14393707687977351890,5395759378561854107,5409290631715187380,18269267548769095791,9186964420238791173,17640637849157171543,14995774147364421266,9331041043858206168,3411428870226617527,17560497840100500287,3753010258310225575,11923399645796005386,9045073224408277745,8804251622054969505,14910801900960256726,5507540851517785143,6688158057127554320,7514416946928353437,8168263254633714718,11561981135248276710],{"siblings":[{"elements":[5961412138188166647,7451353975148100747,7162172803661996819,15009676543936908241]},{"elements":[12120557316448912964,16236756757775036770,4330590734690888424,16297279059547606298]}]}],[[16738398983419453787,14945021469295934363,17272261392555541853,17618800308322676354,18356568810638687139,4605602934651251843,5429965338374636590,0,13918740402746853272,16206909774235036932,4357755745903631702,15752947647526785950,1558610378433578160,17157161315224738078,11074493186396577588,0],{"siblings":[{"elements":[11629474635422842091,6096594950133507153,11847459307579208577,17876362510188473360]},{"elements":[1366783961324110165,10346394090458862286,6472186877476067268,3924128370144446595]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[16974736857611946164,414052696649986525,12761092839875154637,9431536526695835908,8066269832405000049,6617940434292386206,2115246544883577496,13041377711437924946,4023632190306725276,2174746142942924835,14679982990769819478,8695652588240814272,15830145196305377007,1136917561635165992,13357988256480513568,5491733491994559067,16208148765543623035,2536919017071227737,14053697728524065720,7077964211021427779,6879148849024430641,7690941439041135414,13204069662445639939,14995635571442170071,7000444381605001746,759581653767223693,11464948277725630061,14923327604796330200,2626204616781702775,15974631892474823435,4798663252677969529,7332596312866058818,5409933776576278994,4310253519130264076,10822170365104222825,7369904969893779784,2743172691778502610,295276490182242395,11015396879504278857,4714270146378897545,870000179178164013,7982578289809786197,13783656218674203664,11108506904592816772,4388350362923766940,3385711543549478,1099720506998725390,15979897623278725727,3338357744236775649,8129093416062296678,2544535377654103487,16953273179299667168,9510017786568737935,1298066524944112260,3557154771275062036,11291486369927858242,14930291685698976858,17604722729163370332,18332845761885992134,12591736226763271493,5606610490706100355,7448609692439487721,3231324665068923828,16991894757525736895,13795361582114982346,9216868284477811072,10778011676360696208,11788175343648351164,10757554058893756551,12054611803137782993,15670849622784377366,6103597617718796350,3445598223491429551,181494422334166544,12798786768952625247,8023089027650085476,8739991505188576143,3618727145606412232,5596523746288584789,9503448711294795701,2786485897656100838,17426839895816794114,1040875946713990989,4740138127690375870],{"siblings":[{"elements":[12146490599842533130,13873232037030011879,6924226746478176370,12732554613912801029]},{"elements":[17237443820363366542,2420429222455719364,3676425687366728082,12257612414054404205]}]}],[[7084471115499804056,10471190737973324631,14237245124059206935,17373564301520418090,5592391293065741633,12761092839875154637,9518142461496258184,15110533754561999817,9518142461496258184,12761092839875154637,15110533754561999817,6181932146643673680,17881967084318446715,2137362022686801543,1185021752346791514,4486768518517032638,2880975909205686278,13952276460013350167,3294891866730315682,10539606590453484421,2571273826201259148,177901758764486882,2079999632658664162,5839235108795559079,9027653978434762856,12761092839875154637,11873375810225852032,2454285719246030567,11873375810225852032,11213344687880749255,17293178506215553958,2236143043443285169,15340603978557237759,4149034775925044179,4147694159202424792,13007597522571736748,797524548591913104,1440568461233905235,2260204341266722987,8426071074595930454,17767091134474629035,16914879160092116708,2757450955201818714,13462515372089515167,12542264479442237246,7681040941324886076,7013446396595945863,5599748232279858138,7630963574137052379,17462603074185490587,6205775352123708552,3448882959252987461,7244936097675915991,612106526785378007,5251857097881192979,3841177803388519749,2274449050486464955,15270249601554803119,8395534563648153836,12126959719146336579,16493647744841764664,2613267469636019668,2074939277537916245,9833911923092855344,12148297722247407006,10256871700223008055,9398127902325054002,5665258780775441003,7823007368028548991,9726916912914006778,16119723271662172879,3116350485392257954,5294210918569907953,3615027278797562928,5733355700504312925,3881391371502020852,16255081286400621305,8883585670726765655,17712768628298121851,8981785319566442106,7644018712234980506,13258135980344218615,7491150117824668568,15529437600752462635,15655321953091493424,9813528484457983688,5424656882682454565,1424277097287406003,453357785205227562,12280433548005485643,11625521342378992358,9551790503679336123,12185907235227959023,2844383736016047966,15796083397499710080,17717856662826897629,7060643842289079501,16824631940684951065,7567699348663789121,8137432891283283381,4589297911637402290,18307419010955513123,10739707719567446371,2812786701574580837,5009545188859636472,2734046742201856521,3981642213242213392,12231114788127715713,4584572752883283884,3896261973954783497,13258031428792930923,7787584070029261008,3707427910219845726,5635927718121511395,13270585127782515150,6001014861338038165,9168579923454830866,14146843869636697508,17786217532367090289,9445062102832951629,12763371280136489671,16447690299157621472,5728167144879692429,891785299698586159,3779135634335193328,2637248843531941272,6050470267261091314,8166697253723286372,8014872454615431633,5033790495663167627,9418966051588644856,613680670022375676,10378808034570718611,11973524979724363711,6619431694584962824],{"siblings":[{"elements":[15138820325720989761,4526242898992923877,1792182972993992413,18151497779571086812]},{"elements":[16426133333479361662,11816804671268155106,16700607488075962603,8126155144001045287]}]}],[[12592431077295614437,16897946993006499128,9180634390649558991,8917161721540816059,4349717581948581025,12406904719013826782,2423775671005458882,2884439322613308042,2975952486836258585,11286777084892720722,17245873274249427953,1467619121806549478,11990907714371847111,13012052903821059021,10180760623383327833,15957891539082150180,14776074176626696296,17837859041960194000,1025371103506743365,2577329270513608850],{"siblings":[{"elements":[12129111482647884280,17805052612309110011,3692398404854287683,14267370159282252352]},{"elements":[14308602126751222637,6405755411086704593,6035514811573381427,3405369785854115576]}]}],[[3095755280417724692,14652927580039906836,10318716838058743267,14774078561941634954,4619180097174412154,12069737991825850697,11632688690573607411,0,15044853820879095226,15481473847857859173,1591351196345239066,755002846136570833,272203493909851954,6260671474364150221,6235945141100068366,0],{"siblings":[{"elements":[3828471956353803154,10895964371463325577,18413181241531627786,12355903391564622527]},{"elements":[9783981144647943940,3893189499499427499,2172674127799639564,2004189571481519937]}]}]]},"steps":[]}],"final_poly":{"coeffs":[[0,0],[9255761781780966339,5030780759633044547],[12532454325207481924,11996068759880603459],[7511215173093035965,6968701883909781286],[11034929143020720217,12892063367274170736],[12777759772144091600,10436926147798376387],[7074056986070496662,10597365921391975890],[3434884762331691063,5574489659803587019]]},"pow_witness":1729382256507644364}},"public_inputs":[0,1,3736710860384812976]} \ No newline at end of file +{"proof":{"wires_cap":[{"elements":[13884351014873073118,5174249846243191862,2208632528791973868,1071582828677910652]},{"elements":[11475361245556894879,14867351574926692044,17013374066934071379,1027671036932569748]},{"elements":[5604634992452399010,3684464596850094189,5565599237356852406,4136295609943151014]},{"elements":[8463721840990025805,5922588965472526198,8096699027533803435,2210089353004111478]},{"elements":[17531628199677307555,11513452064460680964,1482441508929181375,5139566233781982440]},{"elements":[13271417993289093233,17257193898955790413,16883807866578566670,7423179920948669117]},{"elements":[13462567520785358202,15555103598281658890,5859961276885232601,4464568704709749394]},{"elements":[153012620162729043,14072764618167122665,3025694603779494447,15948104906680148838]},{"elements":[18050235253694287284,11467396424826912141,11302553396166323353,10976271719722841224]},{"elements":[15208241660644051470,8520722208187871063,10775022596056682771,16048513824198271730]},{"elements":[6929477084755896240,11382029470138215117,13205948643259905511,9421863267852221772]},{"elements":[15449187573546292268,10216729601353604194,9493934392442974211,9848643714440191835]},{"elements":[2172475758127444753,16681095938683502188,9983383760611275566,2603547977557388755]},{"elements":[17440301588003279095,11799356585691460705,1386003375936412946,11059100806278290279]},{"elements":[10758265002546797581,1374136260999724547,7200401521491969338,219493657547391496]},{"elements":[5995963332181008902,4442996285152250372,2005936434281221193,6869325719052666642]}],"plonk_zs_partial_products_cap":[{"elements":[15664680364476180944,8822125722323081501,1515493944014958888,947815081717447158]},{"elements":[10037151755940667434,11949718559165021995,15928759330468082414,418840513000355827]},{"elements":[4161325524387973626,16365963892177732678,18172371282801122338,567761389574432991]},{"elements":[14261960611216430479,4961706922451790904,5837508846364221974,2496934636118037961]},{"elements":[2268074920164158624,1603793544646573865,12725635986147157826,15183158543695142576]},{"elements":[12920137987121475725,14038284593794054077,5500255468202520981,16477234960171405851]},{"elements":[10060477178655432860,2386219747357014594,17226595442036371584,14113214704489839208]},{"elements":[17356067684144936182,14910758592434722301,16921079055641057614,6252234565363173327]},{"elements":[6168512725748334393,6913883079661406117,10501571227616463415,1759912320778482174]},{"elements":[2516240519880426606,8354489090385082736,11228741529454001895,3898276725474912647]},{"elements":[3150970879837517798,7321559733305167606,14491889646728789185,11305012649385509934]},{"elements":[14991754416746124019,9687288789913675937,16219387862412589234,17460315789956127541]},{"elements":[9540799947392529115,12014884309935443424,4611822682640082013,6664663134811580775]},{"elements":[419279371365114248,15409640520057063238,9046735251831703003,11942336533527375105]},{"elements":[1577288469125335151,13080447669023420177,5624936637565297046,1990913922457378896]},{"elements":[9993080054082545872,8098015705753527414,8741600873648916001,13754140924787167756]}],"quotient_polys_cap":[{"elements":[4576109620711153376,3236809381130372551,11542714748533654785,17013478368384610971]},{"elements":[8496588690979700002,17378213129253526288,15096474045464070180,11273428144794620768]},{"elements":[1953106270094550680,3284247222289334158,7969600929177415591,1131115579073775169]},{"elements":[12046205032802251105,15385161005881612837,45273121269778659,2526622365807933407]},{"elements":[10819773638945561745,9602736003205008780,1586245922421927981,6904080076884549069]},{"elements":[10815804568912264316,4697494075044275696,4715991239510292514,15216100103446066942]},{"elements":[5807467854252254494,5604315347932862878,3590072204111149148,47123716216107783]},{"elements":[3952923454719749025,14460893275170740676,5786567623313182363,14120971507107684015]},{"elements":[14321518189774569244,4049827320000367959,2059092713086332206,18334869038217957151]},{"elements":[7227605969516706238,1575963278451522460,3722741694880927780,10214252531789410910]},{"elements":[10191770544115369912,15744707020806767409,10283106068135455963,5248578594404077450]},{"elements":[6021368727767440933,11641661276464638649,5754952712336913630,1544596549651236166]},{"elements":[10427037595001916280,7750356224228650360,11930779773209797721,10221804234486712445]},{"elements":[12171037509449284689,12665572893215828465,10088306432112485056,14080894905770761137]},{"elements":[6310775711507422307,15567903011365914755,6497398411776069056,12952108814335807601]},{"elements":[1981475397795893783,5166127072795119314,5143903907992348164,5313875283753552078]}],"openings":{"constants":[[5088805902097621642,5875175418000912997],[1794208372159249226,7127190752448180007],[12086635612553309906,12230577676752327332],[13112939486917538172,5447648837496222306]],"plonk_sigmas":[[1129215034193227251,5360072613900804104],[8161540016488675494,10471236347212139882],[1955530884000425639,17490761643957890073],[14144160552701040250,13749356951275024624],[4949830616417747033,5182189734107507576],[5165488313664566627,9712409739391753265],[424949489610406050,8959899038155040307],[4265472432260508125,12910798880693896863],[16344518898190489680,11187513079941083903],[6125426462023807715,2811280539565007521],[5732800736782788395,3814005672846458821],[10538449239815038848,6516315853326708951],[2176816465932106384,16591338830438312857],[8468443022278436817,2965118459486706740],[8358466348559167181,3071180523375209498],[15442785566661048963,4690529148553714396],[5359711175108844396,15356734922464714754],[17630112880210914981,4421264637865825144],[17305845281726596791,16065444218817124147],[1845186943599539912,7883098304665089361],[11285915054370123059,14925898147440650996],[13070130149350437007,8578555602460186169],[9266877103915004299,989720234019261736],[3075274922995091672,959614281516042415],[15331696195251492465,4400579433619080576],[3470826516191323786,10545620040230889533],[2998578785936630773,15135040995180635048],[5037462345381376072,16637625312609382611],[15247821060976346173,13301223753151671617],[13972890069390881415,11100853357556080321],[5357477962162600783,17594356751388222199],[12329725794131218617,9737465292552594046],[11678133685671868509,4924247160518092766],[12728338411791981837,16050475257489091197],[5923970770439208246,1006641123723404709],[15094144368062648533,7629431470499969739],[147993787988122189,17201227978606765726],[12932347761996755061,1942732224241317428],[1014142305894487155,421864966584160258],[11635275388175521289,648099741745112586],[4844947640604273690,16335149285004797728],[4696707729463489218,15920564910927895736],[18432203359353113104,16773605020181226124],[7925685915745952895,6560978099190236022],[11270521359673007460,2915541721113078482],[5834632029526592287,3622639310858949024],[1981243281236776625,4183349923086350981],[10978748139596465944,17835724945116263009],[17594978813110296874,8899670084373977623],[7872754207678581448,9540528678067391433],[16151892409952506128,9194391568794834757],[18023752047088321156,8682608112897275568],[2500211318424699384,6778240199831629105],[13016925555739711944,14399965896307688272],[5637642386510970586,13428249656555403641],[17413822281858862811,2121280627878356038],[7815552977963316659,4526450572078109983],[4853805742742537770,5119730951828523518],[14515967131950069693,14765536122245333254],[10265237449681537825,1893424377507574642],[4803981495291043802,2875566674351904114],[14092080524230479219,6942465110171808932],[6937536687967550524,15856872165628662213],[1985039947487664969,8212889319698972476],[5144526809680967977,5153303157867241660],[3756715371032960105,11448834841143603869],[18062437198133750582,16717054472130519190],[6820944008920835751,18024590462456860048],[11137087605647202028,13762355531475730590],[17862499975820063457,3003790158062251179],[18063149594861993032,15979436608655677015],[14824575848190345424,980113512306158182],[10815184577199388099,5297002751708627679],[674920060246678966,10155731249700737139],[10575048347295858127,8555970419633807299],[15478479446545053540,15857093830612152767],[3441085912072359086,15587349675492362467],[6440599673764896863,5963198334560124588],[14574010888890980497,9267638211447773333],[18034025279779742904,17196054557963214442]],"wires":[[17786024268249969346,10152962710055496364],[11582280142098236499,5857126199417892393],[7284648393420107390,9290582871581852991],[7082148022651860410,735070515455947688],[14223808714271819511,1235743386758137227],[12086635612553309906,12230577676752327332],[17375278174735869842,5628268297185507415],[13152342819593105032,6864011683943644642],[17375278174735869842,5628268297185507415],[12086635612553309906,12230577676752327332],[13152342819593105032,6864011683943644642],[12080876924914390553,12492279981129152057],[5966190344015303089,17882694987329300737],[3387869178064058769,1573338254360904937],[5848984227534595414,12142607598424812230],[9934768038632033233,11485935817790432788],[9836097071900208118,13731683396012714446],[14085543342396021916,9577263646340498409],[4278928526737163510,14026489673257909647],[5670075090900480145,12266119561131231147],[18243025986462673930,4182733206748106981],[7911616071019465745,14416632301868982107],[9343740764053825616,15504592588394803214],[13733267395170627314,9939052134940267101],[420608530592717496,13401827576787364435],[12086635612553309906,12230577676752327332],[7207084205685628760,14311375172445576813],[7627692736278346256,9266458679818356927],[7207084205685628760,14311375172445576813],[14028771127160781358,448279915590868206],[8781135741979467963,5183531214275899208],[10890941229776509651,9499442283008551855],[17243726231049097658,7711635639898779391],[2860419209660244608,694862723431756893],[3773708392184809213,8721371150404762431],[1869543146099150390,8309443204928953552],[14766101747931121514,17180911652461393748],[4330414500460787316,6905133061216167620],[1091601379907579551,5974882487011958481],[15398559045066476775,17870031772136171524],[1646346514776062950,16870010500846975710],[17540237143115505726,10158277649810673281],[5610680250582151427,1723488894819975703],[16335471884217678849,15678561531546197244],[2213907769070233537,16555588476938895333],[11592878212762830124,7201601626908405978],[8527251120088292794,1662991873569423345],[15725404311489939868,8063953732495421854],[9299684219689316237,3887845932564837017],[3666752571429310198,18052663483418096842],[7311685225063780980,1513277054234391851],[10446368893145148290,11976931154909254516],[14376648831588278968,12337021495363298817],[8382087763407245473,7518260443126880475],[2934000738813595009,14039090616028539228],[4640360670619114622,9903446147385211135],[15008617039700239667,3497243043133913581],[12071977196837232691,1685141670511224003],[12898249445644912891,17536896577070363392],[106034160304661559,17323244383456049028],[12600730857640302838,11631359524957269610],[10934040583541030106,12439797212565892638],[15360830231489266952,13268105119768288866],[7399479613824993069,10812450938293503937],[4497944240488080179,3450525588351839404],[6049267072524152757,10321666228060849986],[14446949288541270185,11429233440093895063],[14386931760038565334,8224009803622143323],[15885764677433802154,575237039167613525],[861459577692495586,9081072297324730986],[15540260066513879825,13535752805949717000],[16738709124717838986,12291036760587479271],[9291726814176640008,6882102809087576317],[12022756148687786727,3850555800465767040],[431856781150901582,6167238804694909137],[15368071208972560992,4265723603083257133],[13734025124748042663,9469205694067804860],[14153678950113288707,3401276453262866720],[3139924291608719664,2846765516609427628],[11714738450018091476,13658689656471220026],[5224251029056060469,16561789999895023852],[4938398523216727544,6757985712371492859],[6406668624009647277,16012654103714105936],[10519048052731470027,4281491170609131354],[18019800153176661644,142002163470802730],[5098178840841442233,11257981945365430387],[16326576784354781858,2862610627406782826],[3995068207358085298,10246122010142412692],[9449484113690020726,15379177148533958645],[11811767085068021157,18266933427552213833],[6029124543240916728,9357999031565430668],[16756265887886931560,11224600958117656179],[17076235020556226283,12798374319947891034],[3425265560152920091,13812955208860797885],[11261772654219870245,9516087639444351211],[13603242370281559559,9708133953737532071],[13196132116780763938,14307563134912674127],[3352613300565623127,7887225523482554338],[17768978636877181296,7425538460846653856],[11537877365603489616,17074015768847718738],[16930063663704267336,1902548449079020718],[6697615223565313539,3693022799835248431],[15583071951055880129,4715827203473886785],[13162458314307622295,10260332022823291615],[10480116713139205144,6895904335506682179],[4420961685576314043,9762524219000684956],[4129761063961725294,7360710558607087620],[1018472424995782250,7917084377864994321],[3958686219635917234,17639322066965223988],[9589831852567867740,18338002671891199766],[12410256632445301440,9410320109941796599],[10353033613223853873,16496204542141430077],[11017390270818216584,18127812746201168396],[11021369001166789606,12412239028810886440],[16651850666530852649,3620694197060470288],[7049009780663101271,5957254018122385353],[14111881006966701178,3798383768554439798],[6051350269920443349,12135249934232321379],[13546541227059856964,11078967769230906384],[15845640105157871539,9115229057354580427],[13085196206196960519,5499060942098350722],[425834548849661336,16726425102813991589],[9861225658136170270,16612235982817252304],[18422557038577581507,9025771989098749881],[15589727935332958783,1200707060244244223],[7434314937719472995,2476926976935644539],[16860956502004709735,13161881528812580710],[16377493819007174005,4173821560658563434],[7680563923966558764,11361938862977692878],[4811788100892402189,312680559128426049],[18296782483249732278,15935154486883212267],[485027549978128171,7583910064546325127],[3344593723796832700,17521049647025326857],[13991792716633317425,2843729796926836724],[2906983559822512641,17427354358769440962]],"plonk_zs":[[3394341723658746971,9325206367028002496],[5511054500653110234,16902955087133138960]],"plonk_zs_next":[[3135710540594181364,9689053630461908713],[2299865919309064919,15544427064650397816]],"partial_products":[[7838036843238850469,2443672586601366018],[12800311730613890821,14274077796420119050],[9014652142477293607,15607168891455633711],[380549992259537435,341858811276355026],[9906122770558343006,10865023981311356131],[406111236208107948,17341746477531583574],[5243253299947571745,11021685168439417012],[5808227775808966311,17839041066469034014],[10880129308801009179,3706258433060663552],[2594992268654452149,4320319917827438065],[5568867142173928768,1159184476288311116],[9450680359887534693,11897083573933825932],[3085136057178366488,7464307750793960653],[29783476437919808,15895521615391451677],[7068874184928182684,15616652387527854480],[13983927517483812460,9326087089209443376],[10490241817390037038,9878018062238501284],[12749990034140002553,14544827886876873431]],"quotient_polys":[[2245385281316321526,12637759879234767420],[12847542627003777826,11755921209537405913],[4490087456162292687,12155308394829487842],[6415761723824852632,5254256167870620386],[3330086014911494740,9770897717649187330],[2473827973928552273,11276355736742263207],[17520836475887763540,14964360773838284512],[18446744069414584321,18446744069414584321],[6362521447518416291,13801897454399339500],[18403307675709195624,17285181716082643697],[4980851430887218379,252231299797043791],[11219666910956443254,11846876024889599878],[9377559432043226268,12630137466496025788],[5759341094622983106,17364459288652461536],[11211865086672137796,16181099976006683292],[18446744069414584321,18446744069414584321]]},"opening_proof":{"commit_phase_merkle_caps":[],"query_round_proofs":[{"initial_trees_proof":{"evals_proofs":[[[2957113517849714127,534309029635191400,11544311873258053432,17882777603096976953,14832734722440621137,15934930592501534930,14760340415644908738,5968928275597906994,1467764478271860482,2009382118976922185,8495360564230345231,9001316726400759960,1476228686992828229,9926265546383658404,13708518013943224926,3323385141244140172,128236646007518263,563126779725380055,10710544815496082143,18322692329841349080,4935454013116701158,6105517679507515402,5809925625105293329,10724329006479231394,7215392929036346276,12633157382364529328,3892909400383536253,15905967723289449199,16107352555606493024,5763624939658292804,12822971197090877027,5468279929777982329,17871739753081572991,3405428058622781654,337992362254510078,13705078043166119698,2920441690533620745,4525146002637897051,18309666788251571475,15347705875649550555,2217752593681366765,18190039517815238703,2918841177068674532,11693900813645993518,12161685437561318317,10841669970067038096,16821663833760093673,1111379915033100156,17457617770852883295,2493716186979991565,8892096909459830204,12092029998773332332,4737742107837213983,10667486448634427561,7041791300378260407,16235605865629792199,12124454157766831447,8554194823817536413,10123344624443999171,3719464704114399526,1852291261948245709,7395622727472578340,11788503871034458814,2210624982014450562,1685999208823125948,11122373884830477538,6892391871763264000,13495033894710099235,8247149182531434849,12381029035073056251,1903453838714728063,9093795306938195559,8048800776126096016,9146017383512717520,13846881608659751976,11704297841154285416,11429622801686750329,13748299616283334071,7681621835781065820,7990061028613800144,9864223101603136716,16243622272869597474,6178613610167304399,5903143289022110685],{"siblings":[{"elements":[8832389127426069113,6131364286917185572,18048574911583960267,2163811129510967340]},{"elements":[12080961203814882388,3507164343688256046,217812273724800610,1252946754184999199]}]}],[[6187766128046441829,16637209301529445836,5986576867832645474,5922508019418421225,13024012733771890914,11544311873258053432,6210682176616774155,787950840974080748,6210682176616774155,11544311873258053432,787950840974080748,6998633017590854903,3570316141473543079,1943958605314396905,10012081067387175718,200135141029109430,1606688486842780675,5820930093413040774,17509314506128466161,9790027289576767334,15366548375832808996,14786056233877230488,9005494907928687056,11206757380457375960,14785216876155790554,11544311873258053432,4125056665306141884,463529472047348117,4125056665306141884,10848272876028751353,10489293662354674460,9840627866261471554,8760301363947944309,12436788214163474656,12162445533604174369,4641779691962012860,14290962744495491524,14603819910351056481,3581942472941140804,12162439553350628665,15360440997232862807,3345499793346946965,10659041795656156776,6456922015436530220,7092823725420751510,12623532074738499020,18875304311094731,6571719940573427938,3713560266347595562,12395682377278584280,8286981031646296110,1154665288160202273,2615624649935557189,4218899092448517100,3701380497663798802,5442340759908477206,3536390696218620675,7023214025948903247,15227668798241529446,2213699054839117061,12499528351979889110,15436117670064463049,1608563158385631682,8027804073737091288,727351301626253057,3907441864946588385,14640110801260533133,6872658797796774942,2549418678947479395,16206149660994701994,3406469869107928585,8535732365763792506,3989750107491371324,14138311324097500082,589493845356780193,15906224454643410077,11027800454373938688,801409311039359302,2253747981612168453,10964883184328692247,100451497126742636,12437443202817183106,17472637185780293340,18194565832602603547,10174383473030179576,2051335116486710384,15544141683221798716,8573231947314422590,16985842955076178707,15370338645100846421,16849835302258141136,4901875136230200497,921457640403058815,11000130208360453061,5813803419095504633,3315072954495503238,911606307560010812,10433009819612042023,2554151131254948525,11247651751131640956,16166950492447762244,10680491820422109990,15901973788078735241,1382180046724549077,3183786581747146552,17697888516455301726,16329696358798189448,9010504481955775056,9516962715434021530,14612713247187470197,12226491450154831611,12414910653309646466,4785911206589617380,15303424953973325883,13481906293956861078,13680648795977347332,14887549806036031812,17604090014004185050,4917548402019381930,7693983817510042471,15046259598927765094,5866455520921265789,11273520892964518390,14627176346756110435,11290828999713261086,8925281728085521215,5469901212277294639,7496825047880373200,2528402610082364956,3660515735724586607,5583026199400217829,8903714959695549915,1159177440670368470,3334508865887652368,15726690606425682166],{"siblings":[{"elements":[13464730518151764077,14583257702327574163,9271441173660870474,11158534083718624774]},{"elements":[16309815517466357069,8510292391200766341,17673219715638047263,11467102716297814818]}]}],[[9060977665440604273,10027552640135290426,2799080757703150530,14894914322379659061,7660713294407500354,1803155524926314437,4424677487910650243,12698940450839451967,8181376997541351584,8922931551248940622,6461036366206726792,17651950904552271883,210554361390159443,941392763699484177,473957984774065904,1541372654049837982,1962561552937683738,8120916818858829800,4385546586624398265,9932743748708723826],{"siblings":[{"elements":[6895347304360288912,5774648020166790174,10463284502844539400,15375706275817089772]},{"elements":[16797056608379864644,8931178218740982433,7364886258755014106,5391368024239178414]}]}],[[1386365264043604065,15760570738254498630,472284532852436712,4891783598495995135,16614137300705013434,8148571595689348138,14167114736189018431,0,16234850624555465057,8812224052037296448,18100002652933071451,9802527377320507834,11334877761320381912,15668717620245915762,12104500635409977877,0],{"siblings":[{"elements":[1454207239496146487,2454491367688711449,2494683180404599353,9127835247598302520]},{"elements":[15034931409752898245,3811931642580193527,4560100671637359881,470326193191708804]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[7577016485919276766,6735275202698696973,9760540244161035389,5466375874027570449,14857735554974388722,11596941429152010609,7755282478930922302,15898875264011386162,15556894694773296581,10235400558406416706,6119712351401069584,3329660208144285841,3141628165757217455,4133640273580195534,9821076459958951668,12128749612756273358,13970461391875760833,17765185769461661500,15487582972326530152,9982395814599538498,9641611303332563339,6103693158931419215,2405316792204658885,6000825777172017560,17291676255595838405,8252483479157584341,1334724356621090412,1075572777223806859,1418446335104705970,2409702906096441987,13386456238514991679,18352812465733047840,3565310531641632975,11865783810792318314,6653259754289134097,14277892463020505292,1021338263193648031,7974086536238080290,18043050004595529232,7169322739935537674,17262952765223792059,16508173524706835413,8407986048421700324,2731681821418783781,16962409397168348693,12518371718584705105,6836490320947230750,10173908584322424226,14780801403217615446,6864407245519098196,15257782884735569381,4065363053230925622,15615323641249036563,8499342504130969943,17149728462152206596,2609078087137312613,8608113588501447491,4822411645928574117,3365274694095832524,10950247685143498994,7727368247640986371,12501830351562085650,350638120505957526,4934393113758427169,14433372824351034166,4042073163038955383,11778644211147725481,4668173569820498687,11542788906243677728,2030283944460521737,1666092553131115788,11111091004364664640,7226571630364574786,4771316324262429793,15791501074258793652,3737577106070872474,11059059255634799446,3364036573675630186,17462173752139631963,2478747308715538992,16256143857234363082,11157135593420104396,8718964465724306791,4143119419741543474],{"siblings":[{"elements":[9388587184167042950,4839542192624419900,13665916779219735183,7189877172786009175]},{"elements":[5146134359815002436,4633941153658423848,8230102747931661415,3646387604866439705]}]}],[[4923639440429335008,7819842526462637132,1651138263502417622,17470236648626681580,18022612107408790895,9760540244161035389,13423332462307572403,12999200500301778977,13423332462307572403,9760540244161035389,12999200500301778977,7975788893194767059,14295467680348371279,16423757532985143603,18196853624715043583,478549981417335070,4964493517039626893,9165809384236307439,1943557728639213172,5557452327359554012,10326294208732822670,1164788856511022339,13341552322097965713,3925277302720438195,10504034217276728774,9760540244161035389,13032279541358690489,5089569689220834942,13032279541358690489,14393715946685135969,14244160880527240463,2650618403753071968,9165858133831591008,2590986217975279170,17717035435223363169,5661012230586968125,11266006175271787497,15396778584378577210,10450771346452875010,15236130478233144437,5798139479774870735,13366167621016388539,18396649254688107367,18065849127026078776,16214919764149559310,4794935110728572493,5580101177204543320,13850889169606520998,17765724882767678184,6224228989990729660,15110437484514367166,5724712452484168937,11019035725029779740,421127629443875491,5302763463633568143,7194254642076459567,13003597021687123224,9508505890161135326,14885900540306882,8687898601104319335,13973165682000114903,8912652203272071954,3795981264745269050,17539569164478449810,18301295559970548502,7828648721117643408,16193910630638137955,7542548270005535291,14870753365779819059,1794278463012187941,3224900833186757046,10251743818122397958,15848977138949083558,18138573734311471911,6697554527460399943,9254648893704800796,10229144004327795476,2050708876426452494,307255685760945654,16476099494635260258,14476407627318521697,14542782151328153676,4832193292981007004,2313064125527661170,9577985120643299159,12175524835967028788,13553769084571394734,6146145653098870046,2477565018000936014,4196933359455590597,11057464525089983091,16388557864899109375,14189498192522600353,6764992368544473412,10228031414300083872,16052476779780257824,6308362080359537657,5835189155392266638,6244833897917034405,611496340026804406,6116372827904888140,9129907861133400642,7139993204913732828,15506475401374459931,2149759306135021777,3038935102147286064,8798339537690056812,10949602915689453399,3912264997933599372,18390167459215272523,11127062412999371846,16376544420381442169,12988670565417720682,14561353173553898752,7412946552048321268,2143833565471213961,10552664395620109514,8899882483303504979,9273090974524167584,3680065478240480930,13904232799865236214,13331617251635583290,18197116857214450574,10798534299552884098,8293682947927702468,3217982783547004114,1707237671246392733,4863728749339965933,11767468162174721983,14872727024290710640,7605177396297395612,13539062125792055046,8269657116421277238,14463056174007449925,7249182052717605922],{"siblings":[{"elements":[14998292580821025134,5854020674865254698,11804338233953879258,11647335449616989534]},{"elements":[10142563739654869567,14245358600781036015,450538954486675373,18063093301621843209]}]}],[[10813528245206784909,8167218413661095961,14129427191077537150,2992526391066214665,4517837200903421149,5066683056508304046,3929273118661497047,16468521179879645373,16061231449945590521,5205678856459718400,10358324265048034639,2045294479401005948,6077014009711295797,4195992067059091114,8859577534214411877,4822086659744033342,10447537402899016783,6551580759935391540,12102039869734356254,5795332441720777073],{"siblings":[{"elements":[10689383196326562457,10884305731114026882,15878271627953946243,3079310490843017069]},{"elements":[1418588521819482976,1077996264781382214,6381114541326529076,1010884375625234420]}]}],[[10864393895334730976,10079984501341378811,6821441933394780276,7864632359951177477,2255379866009581496,5715628818991336404,12029157689827191043,0,10529721526692583483,4711743613777592460,10106660489093597846,14820049274629393792,909931763584679717,6256816529464047133,16053055676847160168,0],{"siblings":[{"elements":[12724261835463995535,16802010119766994593,18126244493583112689,10137151175752107657]},{"elements":[11968131827385035396,16507480595686394074,9581348907411459599,5537305183579279542]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[15034545801107465666,9328134685786232648,110829080910733876,4250821939350695176,1394630806331531697,12201247022097191778,16228921593346724793,5540981308967052515,16262683837062736705,3444943174443116075,14321882309394080023,11976399724076258415,15741084224719728653,7167218740187920267,2108479466400960879,10523500992781693864,18084559524611127881,16392309362668639626,9910431870163626642,4306965461073664163,8761340433466990759,16828932137000128833,2348349595557829210,18309601238814102288,6690141621618686419,7896548919369665043,12130437762899715305,2761456977705156545,14222367477428627391,14807796117787670576,16218927186002388767,7877082550245093306,7861505246478234400,6642657046293066409,567443057547927936,4962531988520098681,4454913783121034017,11032692175451594665,15818464105310318903,16889379664350046036,15583177082558352958,18416173649350290030,16733021994861153485,5457109531204194878,5211202449828449170,387397703287744593,17423970546079450668,5331695136917034168,5204602975018287532,7804682123145551743,16184475773898398161,17806383633492102915,7806008025234779015,15596547216666649128,10083322942939404535,12021095180947227158,333294063486744879,419406305018384698,7930166925575659383,11941804889882528314,7029051446847328676,10870358600754106564,3290908671307159311,6033256737686447080,16428444435506081682,16034886258387630270,6265258099047416323,5155332694710747095,5556269241720840184,1407033520462800343,8788279239960369908,188529423317695704,3606487184992817701,2533317928314692800,16029983803978270205,9937287719837361600,7652762612315253552,17700302266760805118,15472687335725666131,6385298406622369122,12382980318690581425,7179451047645296592,13902948853468039715,11531705951801209834],{"siblings":[{"elements":[14107875915397983130,4898796723405732069,8183032881835579560,10330461968446653528]},{"elements":[608309216059009087,15657505314169978897,10976396690985755658,16681478498527425210]}]}],[[10590361711545904926,6467492479015847751,6498300686270535597,11235217016121196403,2050901983807334484,110829080910733876,457242200587969681,2508144184395304165,457242200587969681,110829080910733876,2508144184395304165,2965386384983273846,11881551527102582958,13252799754300043757,5542346299697481738,12941079563792721653,7629536697092816871,946522021654598871,12278464848326872548,15635598563846490229,5829216383525741455,4699317963129637005,17140824973063371511,14528036162963310089,8438916954361851857,110829080910733876,13912447523740429868,3904620408687697404,13912447523740429868,10858094054096997470,1129321940144333268,15512231662819526723,1215549820600439430,3458343838277692402,2903272703156588727,6649801311208103544,10630545905148286914,5177893075383648019,1498880294391033069,11616941586839624703,18206644320516320506,4747450833104484769,14768049486874569440,14037397727859129226,2645876608246238685,13180997555396826036,7271099602821356640,9269412218528362283,4487839141304141996,11836427138015445663,2400175033297146545,8041667181982169897,7238299764299447244,9109542469240195000,11538605155690031110,14777857662292006784,16373952745741192265,6449973465824329538,4872432625908382346,4727533735447793884,7377811649585784188,8790483486939521102,13822336377080202315,11324433051905664726,3883933170046591917,1347850836508112699,14774786343624762725,162550115389646241,5198535412457955594,1810879615721090595,14529292925087437104,901573947567293056,10398930790373150755,2440334104529491862,17181202655789893950,14929365801843940792,8870021205360466355,5714791681228629465,3834323554628492897,6711030840184034546,11281595561079380425,15721973904010260697,10537732998263177477,681925608398007009,18125046351628766408,2921797340631939475,1659393951957676651,4583079679507530593,11810555073590278097,16256144961183589074,15518167787841152639,2480463166045767428,5082572631562647411,16111515311953055863,2390065558855966886,14275533876396805542,3921382209782463383,5743265965284400903,17469830917999768495,16572716749928881552,17813468024803325027,8083084680750935408,12016785000603048107,11669045793692424204,12696375324439579180,12646965674726689285,2060520681933962166,16163008826279362177,8578621219445781658,2119880391859457420,9685741318322805911,12797568880876578858,14335363283221448753,10471668531838958757,7057428691420713199,16445403751963552397,10777132041965659341,7961496270085302387,194286872592472848,10404000052706966856,3333947120896600522,7849470502408677588,6337231606403825399,12282988631151493263,7617558447599872869,1845648988468028904,5123652400347227722,7578591360549995288,13839756351623329299,12296124092835508116,4448810410722431067,4473975626433411615,2500186167623149551,1012548268544035707,2726071433488304004],{"siblings":[{"elements":[14311481270996416571,4201960485605959975,7717021996621825206,14919681022557420509]},{"elements":[5673898759496293924,4636452871475736473,18104237363360020046,14791632146812083222]}]}],[[17785072076061664511,993741286788086326,7865916735404912455,247760509458695932,17748501974684380912,18110815466739453174,12568880596071824394,13806593611340548873,10488818944467126014,117026882898941462,14290703128354822274,452927647305573927,10555988498411384076,9428020669565985868,15880164876549719241,13188644033285038713,10531941623516941933,876506558037732753,3924217702418299143,6638842188140107254],{"siblings":[{"elements":[14469078809657960520,17088512888237620162,6633511284776989343,3355871571932375762]},{"elements":[4359409371571848320,7871270597332206518,4059018556858203473,18371896080309768692]}]}],[[11969602554963299014,10375790739468116747,9077652031226033269,12360422714763496228,13804313655922209329,8351425246582741964,14662244372116845635,0,3213429693170017515,17978395573898655359,11993493245852249344,12927188907957042090,8182728957808175988,11518650002856583229,10273680791646713200,0],{"siblings":[{"elements":[10918425936304058279,6724520426490126151,11605114710490044849,10348324329998908669]},{"elements":[14652760857554324672,15304368083049420521,12783349036748574602,14041648391144364018]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[15034545801107465666,9328134685786232648,110829080910733876,4250821939350695176,1394630806331531697,12201247022097191778,16228921593346724793,5540981308967052515,16262683837062736705,3444943174443116075,14321882309394080023,11976399724076258415,15741084224719728653,7167218740187920267,2108479466400960879,10523500992781693864,18084559524611127881,16392309362668639626,9910431870163626642,4306965461073664163,8761340433466990759,16828932137000128833,2348349595557829210,18309601238814102288,6690141621618686419,7896548919369665043,12130437762899715305,2761456977705156545,14222367477428627391,14807796117787670576,16218927186002388767,7877082550245093306,7861505246478234400,6642657046293066409,567443057547927936,4962531988520098681,4454913783121034017,11032692175451594665,15818464105310318903,16889379664350046036,15583177082558352958,18416173649350290030,16733021994861153485,5457109531204194878,5211202449828449170,387397703287744593,17423970546079450668,5331695136917034168,5204602975018287532,7804682123145551743,16184475773898398161,17806383633492102915,7806008025234779015,15596547216666649128,10083322942939404535,12021095180947227158,333294063486744879,419406305018384698,7930166925575659383,11941804889882528314,7029051446847328676,10870358600754106564,3290908671307159311,6033256737686447080,16428444435506081682,16034886258387630270,6265258099047416323,5155332694710747095,5556269241720840184,1407033520462800343,8788279239960369908,188529423317695704,3606487184992817701,2533317928314692800,16029983803978270205,9937287719837361600,7652762612315253552,17700302266760805118,15472687335725666131,6385298406622369122,12382980318690581425,7179451047645296592,13902948853468039715,11531705951801209834],{"siblings":[{"elements":[14107875915397983130,4898796723405732069,8183032881835579560,10330461968446653528]},{"elements":[608309216059009087,15657505314169978897,10976396690985755658,16681478498527425210]}]}],[[10590361711545904926,6467492479015847751,6498300686270535597,11235217016121196403,2050901983807334484,110829080910733876,457242200587969681,2508144184395304165,457242200587969681,110829080910733876,2508144184395304165,2965386384983273846,11881551527102582958,13252799754300043757,5542346299697481738,12941079563792721653,7629536697092816871,946522021654598871,12278464848326872548,15635598563846490229,5829216383525741455,4699317963129637005,17140824973063371511,14528036162963310089,8438916954361851857,110829080910733876,13912447523740429868,3904620408687697404,13912447523740429868,10858094054096997470,1129321940144333268,15512231662819526723,1215549820600439430,3458343838277692402,2903272703156588727,6649801311208103544,10630545905148286914,5177893075383648019,1498880294391033069,11616941586839624703,18206644320516320506,4747450833104484769,14768049486874569440,14037397727859129226,2645876608246238685,13180997555396826036,7271099602821356640,9269412218528362283,4487839141304141996,11836427138015445663,2400175033297146545,8041667181982169897,7238299764299447244,9109542469240195000,11538605155690031110,14777857662292006784,16373952745741192265,6449973465824329538,4872432625908382346,4727533735447793884,7377811649585784188,8790483486939521102,13822336377080202315,11324433051905664726,3883933170046591917,1347850836508112699,14774786343624762725,162550115389646241,5198535412457955594,1810879615721090595,14529292925087437104,901573947567293056,10398930790373150755,2440334104529491862,17181202655789893950,14929365801843940792,8870021205360466355,5714791681228629465,3834323554628492897,6711030840184034546,11281595561079380425,15721973904010260697,10537732998263177477,681925608398007009,18125046351628766408,2921797340631939475,1659393951957676651,4583079679507530593,11810555073590278097,16256144961183589074,15518167787841152639,2480463166045767428,5082572631562647411,16111515311953055863,2390065558855966886,14275533876396805542,3921382209782463383,5743265965284400903,17469830917999768495,16572716749928881552,17813468024803325027,8083084680750935408,12016785000603048107,11669045793692424204,12696375324439579180,12646965674726689285,2060520681933962166,16163008826279362177,8578621219445781658,2119880391859457420,9685741318322805911,12797568880876578858,14335363283221448753,10471668531838958757,7057428691420713199,16445403751963552397,10777132041965659341,7961496270085302387,194286872592472848,10404000052706966856,3333947120896600522,7849470502408677588,6337231606403825399,12282988631151493263,7617558447599872869,1845648988468028904,5123652400347227722,7578591360549995288,13839756351623329299,12296124092835508116,4448810410722431067,4473975626433411615,2500186167623149551,1012548268544035707,2726071433488304004],{"siblings":[{"elements":[14311481270996416571,4201960485605959975,7717021996621825206,14919681022557420509]},{"elements":[5673898759496293924,4636452871475736473,18104237363360020046,14791632146812083222]}]}],[[17785072076061664511,993741286788086326,7865916735404912455,247760509458695932,17748501974684380912,18110815466739453174,12568880596071824394,13806593611340548873,10488818944467126014,117026882898941462,14290703128354822274,452927647305573927,10555988498411384076,9428020669565985868,15880164876549719241,13188644033285038713,10531941623516941933,876506558037732753,3924217702418299143,6638842188140107254],{"siblings":[{"elements":[14469078809657960520,17088512888237620162,6633511284776989343,3355871571932375762]},{"elements":[4359409371571848320,7871270597332206518,4059018556858203473,18371896080309768692]}]}],[[11969602554963299014,10375790739468116747,9077652031226033269,12360422714763496228,13804313655922209329,8351425246582741964,14662244372116845635,0,3213429693170017515,17978395573898655359,11993493245852249344,12927188907957042090,8182728957808175988,11518650002856583229,10273680791646713200,0],{"siblings":[{"elements":[10918425936304058279,6724520426490126151,11605114710490044849,10348324329998908669]},{"elements":[14652760857554324672,15304368083049420521,12783349036748574602,14041648391144364018]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[5476891376197235655,7044817592391507668,13974119857005811796,13974119857005931896,8542463872071985231,6501044494244072249,17280822819241372308,10053665788850614925,17448962655787859727,12336908644746128088,9143020989718619471,4743203533871311592,11333677962792045232,13893424625045704083,767953711050007881,3472634815196335700,2902869279664059623,4226328250494368377,2418764480316296736,1501861828709332135,568975573703484830,8801800562606935721,9514012360554107037,6115575755227527047,1051291325387837076,11601191339553618576,6074519755155606439,18335853116697904652,10165784017796992404,18323605521630460587,11994117291089446449,10451983568470879546,10434065730445324857,17938995950366848123,2508123549594798968,7640613494747113386,1513372534219473739,16828618817162538109,8366075947957833522,9049395889722424712,18045617055697920423,7144267989314336719,16890803523690545074,15781761522575987695,14571475745262949915,16362201857573628110,8875795807742385116,2397097127390260361,11086508766290873299,12528536250631072701,4796334215621772761,46053206664818609,55855699141615696,12822704619433111871,5230152393175782857,18340028855156558604,4982325153117195849,18144683475374954843,13809928813137301377,2031187538284433977,9072535653736593441,12622276487432996162,8839987604652581340,6940845095475718033,16000102712351353061,16532084347876329880,11054558944075828190,7559179555829355370,10125459834434143139,14588025940297167409,15578052907891230592,16440693311745855827,16867123057370125982,13930038904617907751,11354803143482232725,16519077024003978008,7359228380659898187,18264912276873600757,6663799581497061960,14594092587359944947,7904080859246436117,10453773933582997036,10399628085621807446,12434936933788275446],{"siblings":[{"elements":[4295791253590603064,17929487105087721335,2967055119325542947,16462733433019204129]},{"elements":[10866503738528739597,488999660478424691,4680620550068726076,4667412765909904450]}]}],[[16428349751610191944,3347881533532107938,9468737643308213580,9194454772744592800,12741552808537566884,13974119857005811796,10045247018444647662,4340055757567630225,10045247018444647662,13974119857005811796,4340055757567630225,14385302776012277887,15202997972538187494,12414035098264397106,6391149555208523887,15712637695103593820,16554806991031947314,15363932162293809841,16307837251216160766,6820178166180814956,17457607970083055920,16464291619833470086,13749084992526879831,9636357227791350456,14663917240177601678,13974119857005811796,14942531704342925469,11159704875105942826,14942531704342925469,13714252095155089725,11813664378122801899,12391017937545841995,3476544466855521376,4541244746607206727,8878509548685829859,18213591479499389571,11906513154856102562,2661560206398423305,2184127630907116305,1470388346871513421,4220268753331067933,10121067713976682072,14528380587817187057,16760633056567525176,16239739171151052007,13336769264731776731,6597861866224831980,1283028978560633880,2343950577965466019,14930493770682231745,96390668912837594,9674660986690554615,3312989674635627754,2217725399410485058,17217178624402525406,1270496295808607583,12290224265072685290,14803910390123085278,10223203367692759106,11308771395676367576,1041038867464915568,813178057614178183,18268779348647234996,13701728595724581165,4019666490957492362,1234706480593541580,5634977730404901600,9636573169392748071,16107612655947242065,17723319666782197456,9218105179571351311,7480356268302484853,3953131694299149827,17397482431922805387,5468481439749014787,3320365679890891465,15526222117613994762,15333645379253332801,18074859146242913422,956580594101134221,12459586433819507902,6251016581514000324,9061286157704019153,8285114808851066511,18196592430429844596,17763244861005544579,16619520955079787148,15533162835159325494,2463578269926271449,16128653967389374961,9702427179903687789,2069753350137081705,9618213279997531696,9260163586230802185,5458992430299660279,14734687379245443572,142881319041189151,3921278602338897690,1751283496631235262,13106448210476421032,17623768063489438275,16612612992753432848,6545797981497976720,9814538168567253074,8995293668772951989,7142564581237122052,3547619286584280037,11256682631544360243,456800540290985258,7670894929460168942,13668116004985323929,3029202510962705921,12132687131942077218,4898917753423723492,16116725979714905071,6407348810037865596,17895095959158463658,7249739482952358425,14259627781104667467,11093952195928251986,1607619966941010464,10905336922186469824,1872294433562059216,17731987557902592659,5781022924291843377,8720737205215412068,17707746869708051401,6069659458516403762,5534361090266582195,9462663519886507369,15792770371188132287,9616736522457323016,5331923174174154450,16132487996478428137,10413918624073677918],{"siblings":[{"elements":[18107004279715648445,9022046471554739761,10628535777396098425,3646342173473337268]},{"elements":[11198870833902175989,2627056551053426442,12173347194088488972,13515738457566135127]}]}],[[10389994304159048865,6649191615891136629,11403608210651883819,4519118413793949304,2185698229693972676,17179409027569724423,9574052691782549116,14769559996847512451,16314679765100333798,7508244338581389907,12607987506138791424,22145534889104171,13843820450570263784,2678823418594540255,1323887373182876776,784024881853698007,15639778007162745068,12896850576571956744,3917733862452052922,1323379203368626624],{"siblings":[{"elements":[8321799032949870492,9041736777206633545,5275857463905943750,11845804001535745851]},{"elements":[6175371435905559461,1090507109993953169,13482089804287186601,14807728910252899539]}]}],[[4427670386441416504,17196830264177892837,63378352210450339,4474850086631122106,5285776790310024011,7442855528783351039,14473813801611186907,0,5587192636016021819,11796884131600238570,11519044807326916887,16293454228443205923,10554000137989328552,6710814315668780462,2535376180897248814,0],{"siblings":[{"elements":[13416860306928031322,13872475067050356340,9029853368848041601,11813207410514222083]},{"elements":[13286374031914984217,175261073292850250,12104851526530982961,1649197002724185016]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[15034545801107465666,9328134685786232648,110829080910733876,4250821939350695176,1394630806331531697,12201247022097191778,16228921593346724793,5540981308967052515,16262683837062736705,3444943174443116075,14321882309394080023,11976399724076258415,15741084224719728653,7167218740187920267,2108479466400960879,10523500992781693864,18084559524611127881,16392309362668639626,9910431870163626642,4306965461073664163,8761340433466990759,16828932137000128833,2348349595557829210,18309601238814102288,6690141621618686419,7896548919369665043,12130437762899715305,2761456977705156545,14222367477428627391,14807796117787670576,16218927186002388767,7877082550245093306,7861505246478234400,6642657046293066409,567443057547927936,4962531988520098681,4454913783121034017,11032692175451594665,15818464105310318903,16889379664350046036,15583177082558352958,18416173649350290030,16733021994861153485,5457109531204194878,5211202449828449170,387397703287744593,17423970546079450668,5331695136917034168,5204602975018287532,7804682123145551743,16184475773898398161,17806383633492102915,7806008025234779015,15596547216666649128,10083322942939404535,12021095180947227158,333294063486744879,419406305018384698,7930166925575659383,11941804889882528314,7029051446847328676,10870358600754106564,3290908671307159311,6033256737686447080,16428444435506081682,16034886258387630270,6265258099047416323,5155332694710747095,5556269241720840184,1407033520462800343,8788279239960369908,188529423317695704,3606487184992817701,2533317928314692800,16029983803978270205,9937287719837361600,7652762612315253552,17700302266760805118,15472687335725666131,6385298406622369122,12382980318690581425,7179451047645296592,13902948853468039715,11531705951801209834],{"siblings":[{"elements":[14107875915397983130,4898796723405732069,8183032881835579560,10330461968446653528]},{"elements":[608309216059009087,15657505314169978897,10976396690985755658,16681478498527425210]}]}],[[10590361711545904926,6467492479015847751,6498300686270535597,11235217016121196403,2050901983807334484,110829080910733876,457242200587969681,2508144184395304165,457242200587969681,110829080910733876,2508144184395304165,2965386384983273846,11881551527102582958,13252799754300043757,5542346299697481738,12941079563792721653,7629536697092816871,946522021654598871,12278464848326872548,15635598563846490229,5829216383525741455,4699317963129637005,17140824973063371511,14528036162963310089,8438916954361851857,110829080910733876,13912447523740429868,3904620408687697404,13912447523740429868,10858094054096997470,1129321940144333268,15512231662819526723,1215549820600439430,3458343838277692402,2903272703156588727,6649801311208103544,10630545905148286914,5177893075383648019,1498880294391033069,11616941586839624703,18206644320516320506,4747450833104484769,14768049486874569440,14037397727859129226,2645876608246238685,13180997555396826036,7271099602821356640,9269412218528362283,4487839141304141996,11836427138015445663,2400175033297146545,8041667181982169897,7238299764299447244,9109542469240195000,11538605155690031110,14777857662292006784,16373952745741192265,6449973465824329538,4872432625908382346,4727533735447793884,7377811649585784188,8790483486939521102,13822336377080202315,11324433051905664726,3883933170046591917,1347850836508112699,14774786343624762725,162550115389646241,5198535412457955594,1810879615721090595,14529292925087437104,901573947567293056,10398930790373150755,2440334104529491862,17181202655789893950,14929365801843940792,8870021205360466355,5714791681228629465,3834323554628492897,6711030840184034546,11281595561079380425,15721973904010260697,10537732998263177477,681925608398007009,18125046351628766408,2921797340631939475,1659393951957676651,4583079679507530593,11810555073590278097,16256144961183589074,15518167787841152639,2480463166045767428,5082572631562647411,16111515311953055863,2390065558855966886,14275533876396805542,3921382209782463383,5743265965284400903,17469830917999768495,16572716749928881552,17813468024803325027,8083084680750935408,12016785000603048107,11669045793692424204,12696375324439579180,12646965674726689285,2060520681933962166,16163008826279362177,8578621219445781658,2119880391859457420,9685741318322805911,12797568880876578858,14335363283221448753,10471668531838958757,7057428691420713199,16445403751963552397,10777132041965659341,7961496270085302387,194286872592472848,10404000052706966856,3333947120896600522,7849470502408677588,6337231606403825399,12282988631151493263,7617558447599872869,1845648988468028904,5123652400347227722,7578591360549995288,13839756351623329299,12296124092835508116,4448810410722431067,4473975626433411615,2500186167623149551,1012548268544035707,2726071433488304004],{"siblings":[{"elements":[14311481270996416571,4201960485605959975,7717021996621825206,14919681022557420509]},{"elements":[5673898759496293924,4636452871475736473,18104237363360020046,14791632146812083222]}]}],[[17785072076061664511,993741286788086326,7865916735404912455,247760509458695932,17748501974684380912,18110815466739453174,12568880596071824394,13806593611340548873,10488818944467126014,117026882898941462,14290703128354822274,452927647305573927,10555988498411384076,9428020669565985868,15880164876549719241,13188644033285038713,10531941623516941933,876506558037732753,3924217702418299143,6638842188140107254],{"siblings":[{"elements":[14469078809657960520,17088512888237620162,6633511284776989343,3355871571932375762]},{"elements":[4359409371571848320,7871270597332206518,4059018556858203473,18371896080309768692]}]}],[[11969602554963299014,10375790739468116747,9077652031226033269,12360422714763496228,13804313655922209329,8351425246582741964,14662244372116845635,0,3213429693170017515,17978395573898655359,11993493245852249344,12927188907957042090,8182728957808175988,11518650002856583229,10273680791646713200,0],{"siblings":[{"elements":[10918425936304058279,6724520426490126151,11605114710490044849,10348324329998908669]},{"elements":[14652760857554324672,15304368083049420521,12783349036748574602,14041648391144364018]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[11478853722654892596,11054649085732609431,4994009559595819210,4186791003624108490,18024865371818158892,18345183498407461526,9694238634292017590,6724859886830687063,11243260270601353574,14381814419105033411,7818933522528881030,4546529647928812664,14925540237646974265,16878266396497955220,12920668997211098573,17268828363658179930,15016004026910537377,13817031165285279441,595208874785186131,5264621933065972184,12842607752779588909,1036458340443929803,723974238512284296,3865120520076342236,10591874432022570118,16672770104321157989,4268204143023668522,1442101787761795173,17261059111713346750,1886389845452355019,10015188874733823167,12945251435542942346,15729006941700819727,9769721924531241974,10360965788706053704,17231683844444576182,4860556932014059440,11290628573575307583,10467853112375278596,15672706883929365300,11854941895739424568,10532167184289139234,8849900270380063794,17258070778068654781,389392563654780465,15694034380242781064,16408125286346615923,5240758237683744215,12594341864398680415,13125157218336151182,12110224318087305788,2381073337923353293,4801286650727974296,6463610664988967714,4579934330236307092,16913166904864701304,17120949083165668392,5417444260846067353,2162861526281072576,7230041798647740383,8052962025075942004,2329101354125768248,9495441095357060775,944189234100813522,2974037460852383196,2808898223350514185,16825144225291284340,16495574607473979160,1773988643127921369,11103048928261281020,17248516975848621671,715115511911425973,16595596184784813139,2875296451261385175,748823176798831426,1445145643777419320,1059249732834213379,18281412487205604006,6977248505445028194,3497756901944121467,17667695280482817497,519454644348557937,6789904627007533608,5570494389550069031],{"siblings":[{"elements":[2788283718956080627,7243963918501585343,886762250337169434,13103212312216094922]},{"elements":[12080961203814882388,3507164343688256046,217812273724800610,1252946754184999199]}]}],[[13928294621723921177,12780940283369458641,7876240315475227901,6066626702537238528,9898862770710249753,4994009559595819210,2759606787637752471,12658469558348002224,2759606787637752471,4994009559595819210,12658469558348002224,15418076345985754695,15817189505417289729,14607965607124354080,7813626309410363076,17485223674943332504,1780965341182078330,3037496677795679112,16925233897322526943,6585072227811472298,7220549427393497823,8894639681782314697,17983750126720184772,6175119053087603624,6601134111490342972,4994009559595819210,16230935946409515570,4385325988485274221,16230935946409515570,13422869145706374791,12056456469944566203,1994640404655837046,2041498014949327818,15222292150707478314,12055070835694701410,5791770988338043396,4794260121078486195,5088243394091940716,4433164256239424632,16575794680504753952,6531940195923791990,3563770336607741715,9089170961919497076,7225839869417248569,17163966810386791910,2469899024815155209,2292818910579514321,5604300214587810177,3962901446771858307,8115703962873436186,12227137774487342913,10055717802038525292,5040779641845779271,4020234766528670622,13990080084821656167,17049289946649598037,15589022999347861836,7996890106800872437,17070531954983798077,6288597808130522527,2882600362492917400,18282210778658487071,5290766639320332586,11934186339991570015,18048571945567604936,8633311260728093051,5726096325067463398,1560335555488445862,6346689089155476274,5352700878563443229,8260947291255614337,13895445167245764314,2722730527913789344,9984369258246511722,17449942811566287633,9039783389603156730,15770212808645548611,15604002583816624789,12632678186351784833,12443316506322579603,2689703002348580295,12186133393983573364,2557705900584619282,15747072224155822779,14575316556591232559,15576542984462621081,15488569866082674263,6342231580381115232,18245380729150306293,13138358927956389182,11355807333367714725,3843203266552571735,13372082698841656458,4282403972695807428,12967650405676443931,3279701706996147601,4269604628439986552,12810591614434266971,4918284573306406547,15398346437346008377,4864334928906697631,15200787090238653652,1507872707864375709,14520207539783615626,9587587554881518399,2926367496026552554,6912410705983260971,15369938598553995963,2075689248982218282,5152237836296205242,12303021952179647682,9220651996076525198,6997453282729167405,2510802550350257881,15986784152557061449,10403886028616317914,725801823863716254,10813943364079801174,2773230474526954969,16627196588714671373,7358925652655215606,11951672684069344790,574312075589763984,10650483314780928148,8856081240889135347,9165158582390167601,3679942570959956785,1512278236454150868,5802207444257996574,7437036756859590485,8786061085156095007,12159539347118920345,11662310128932183807,14874933086469731455,2830306178053176220],{"siblings":[{"elements":[3130019963986597337,15339088729883962328,18303565295965347353,21834830375555995]},{"elements":[16309815517466357069,8510292391200766341,17673219715638047263,11467102716297814818]}]}],[[15531630122643591742,17784016984143438318,7646180558607222372,4712330286021420959,1836647799604344458,1032754306025135816,8637247467245429010,6541396555005357954,14995728355250084691,11850706188047767084,5243644779211300540,667565067084877433,10143284626864465235,7148000449592874166,4088733073017965808,14990811180692992880,3515424358072231766,1173108353474018284,17956057759339140415,4263651585633506075],{"siblings":[{"elements":[16472373462185368851,17266439060219580842,4142781204592553313,17093433461272410760]},{"elements":[16797056608379864644,8931178218740982433,7364886258755014106,5391368024239178414]}]}],[[18081026362303235730,7815813789196414801,1844246062747457760,4169053919895915248,1069199924533317474,6538299808166224020,1564324924398477003,0,16875165989786123395,2169810174040431028,9111251229515091251,7236049840713979275,4367180581066605885,10968746493371305328,14608468633572722376,0],{"siblings":[{"elements":[15597975023014902719,13454537365034314486,1765676213090225665,8086601349331273540]},{"elements":[15034931409752898245,3811931642580193527,4560100671637359881,470326193191708804]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[17730780067944809742,17518963256923921102,9717963889501765181,9889333779175288446,17354124086167775810,9341046780105547782,9463782532206378426,5697696929613651984,15477029259429788513,5284028284360742872,15659165034173660700,8373222624828423792,16588480323682393975,14038735062324207145,3190833584036494502,1516159312330509216,1680633347890878490,18066968257243839877,6417415178374158875,2392895987843567788,9518381980183289956,17344412373544896756,16231594649760017448,11962230288889464129,16565976484823794958,9632744212580298659,12535279470199806696,18181151614510170253,3239896109492477120,14448535428822926046,10566430734548849545,7948558204012273967,7441822548969899197,11054714104426912966,5727098206734316170,10554880058789606853,11367680883410349269,15950592910845777768,7938462655227805025,14887413847621781320,11067322404078384110,1932890836035370572,4762211496694261432,13337385683847119543,9329632235198825870,10738135897864078801,15535224595294003533,17962066482630225808,6099696443075548176,12162825799478904764,757744944612985671,16880734573288606831,17103112778625804023,1748882665563358221,11564693213149332613,3146989962103247994,2121482963690760677,11656376260512447754,4478580302598200708,11204574619333446305,2379232663091112881,3248648188462642397,17066258138991825086,6830807813140638287,12493706632655472092,15478303205849811735,5867213549580254545,1614081641107065718,2983768137674386946,11663441444425153241,12314007578863325622,1593765721002081508,6690599623344340798,1765410693453932363,14248197648680736180,8155473757178746261,15462355259073896728,5166316952982031985,6848724932534938178,2838500778340260384,13076234229555688944,14294583243378430366,6644658304540038648,3737332012452178544],{"siblings":[{"elements":[11018653891288600245,7457833601627035013,9915728460678587024,17276883179053765539]},{"elements":[16272487173950120557,17194161083645730615,2985732629437659869,14431043807897268535]}]}],[[7989529141045576704,1481927600417149098,1637221502741196772,15918394835760212531,4886905902603890365,9717963889501765181,17191301083388750914,3631462916578056958,17191301083388750914,9717963889501765181,3631462916578056958,2376019930552223551,13154382002108610458,11942637006922578807,18238654591764300335,10054387033449389686,2446377057876747046,7767513416118110165,5385749249401275861,7310810065932566576,1826146359467610312,12873645198247819897,2437328272890438966,17431368158774566826,8383502777682504060,9717963889501765181,14390985624812784569,4327744333080704308,14390985624812784569,15659183209967909754,7587533364484830025,1576889021307456247,2176080728489564716,16614052675057426327,13404887337289300662,6800129607780396393,9546791959802769063,8398046164664065631,4339092994799150929,7884324493664583491,10367210371562241108,16024031608622407423,940651131963071557,14875440255208051044,17944324327851098861,5137042798855307485,16625165027628711736,16488556424740040797,664361067234530299,15957267201192211887,15195683370294912193,15166999026897443931,16243427441587546200,10866278215791452497,6411914887501379580,5335376663264915548,15140474908442067525,14493991912214263196,17067962147219254906,11010652854048922565,18038168616867940486,3015920215655325691,14482522042232798499,5584184048471098709,15078102481145945353,16696103479395424205,12762508413419179805,15674440772590996079,8475552319426210596,13009067420684581361,5233706664624849044,5698331818670542495,13784371837620102417,2783780178626945907,15847592608250109049,4116001761933842464,8774836830048133554,1122631275405281979,5456497616219595258,12008914457567020898,2430713432696378181,545850204667661772,14937837884531364322,2264639140794252346,94079676740597952,17659586681280881089,9140676728032430901,11873089452916494799,5630995334229911251,12345108454160565355,2648550277102781784,10588527724598376990,2342786786472099236,14400722085920042660,13322718986751429215,3491228538005377953,6510905911889264261,8931535993760748060,4233246009677506104,12262979903463807759,322600932739821527,13424341356026568726,3468103607908939356,7885800363841418618,4645595799625512268,4585463119717268160,5144347990366566315,18082228608628675513,4398759149791023126,18094988208460111233,12555981489149039538,818009129411818091,2433354194001644145,15040688246812880329,11011447301898015351,17257753645757311225,12663327921480164120,8623246417442233944,8077395383220828571,15260864238789041642,5083039833094159257,4876442205301302786,14157119118630650015,12494414964761743413,12518562440533560129,6865301472451471578,17877924610050305896,7307614885176145665,6948761063468110087,1174357126761300031,1369869052351427610,8377347277300097754,6806991754193965215,11304997448075487122,3509844693016716057],{"siblings":[{"elements":[180278596016008821,3190538166425734593,17822691823027954640,8603837459543446917]},{"elements":[10171860954903476202,17170767904445474228,1666266425404431967,2871003251187555371]}]}],[[9969308533833169979,8140035154566822045,13777418961736591511,12624353662831536136,5740186130652495666,10428504976359145479,6198864924908621764,5763745677428061242,2720229500793308687,10821525747712815407,3071363266517415621,2378148514680807869,5935441837134611765,4229483959236544422,16261192539385599868,14881419370608925816,3866652223368021785,2665098606364025765,15298126166091821316,15078075591704279206],{"siblings":[{"elements":[11882637916940290615,14285470749572505935,11578998856112823729,9726818215617860437]},{"elements":[6118065580064522853,10859396399423868824,652533740523273924,16148992833321448507]}]}],[[13058505267181793522,9256272094537100515,6022350630787211656,1226541948110000398,2536475846735116451,4840040337964846079,10040086054826291320,0,18046665472712899602,13920247072627124401,10489805400836704055,4162882088000690136,15278963875621481251,448833842910087508,8012359347427125159,0],{"siblings":[{"elements":[1319615273016134883,1350489192622808690,14629951103584670233,13571923543065320537]},{"elements":[6196810223008549796,17601670362477624784,11542138709433169716,10662246883412141095]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[15916944138056518912,15217869849634763520,13445295225810556415,12588083425695960575,14568133142830206927,6242163245932282002,6790057154541981624,1298431965565921871,4075964094566768642,16653829043500889071,13768516204449262239,6481109966902479644,4129979189246610933,11749135024230435864,1642034491743532607,17586074769544879190,10107323655533980453,4103499892747457534,9882249843507953187,9569897848229230342,16196796671002479154,6916478379084898390,2697495575402703229,15074573306376922154,2772308751008700086,4394925709715145490,1879708177371356158,1538644419575653952,12162755309511433101,679021320922089878,12173780931467561034,4936437518228274552,10366984644773366511,7016713425454376830,9605410500912478170,9576788701924065270,6472382460578743882,5251599140443283757,4160525922629684920,9226562829108649304,8031781402484062400,9963336794163209314,9734198680583375259,16884469392365793704,7459594825993206955,14991328824564282898,18233040201820246473,12114290566428930067,17145429877543107585,4582828350989227827,3405847849603187940,14342996598476200971,11491117117063691434,9111405354043757311,5533064146593389737,15910399413744188385,12289814295119573139,17092532802778883326,3231285992228047417,16108768711606767915,11500355588174777460,13612449094063335822,10685158185416433397,12778107074881027099,16024639363422537244,14306527912840476131,14090546698584380007,3299699352892338876,13697726848103613559,2136061480027184829,73999994748752093,8924940515648967567,16144230599986895137,488762248016333191,11653290767022516404,12112313482838731686,5688380728493565516,1898419248402645547,4268860499612043974,6028066473843399719,17229779635198417770,9887633263469385022,14689397429408208591,9877889464589055432],{"siblings":[{"elements":[2605804542398966656,9831943560435629810,12598265065446142915,9334340792435918298]},{"elements":[18161808293962363183,5378725722484264021,7687383671526977091,16433811244973155751]}]}],[[13550589260461760847,6123192505492659602,8511683709331379849,2754016258586381137,15990568318576643399,13445295225810556415,440941536704853721,16431509855281497120,440941536704853721,13445295225810556415,16431509855281497120,16872451391986350841,17076650684580081997,4305189266780371909,12558734481779503500,14599551521578716910,17828062681307740676,2758092929343706336,195812535140578698,316582426598552467,4225317080354884906,16885024645087454672,87498454641301235,4450012893846976915,13282924500425030160,13445295225810556415,9693397608863709479,4529578039874155318,9693397608863709479,7401624283299489837,179729400108411392,6083457418669740762,7563006768971860231,4538815436417417090,3689259167377059799,15817369277618938159,18182319706336622590,9165574501991711626,10066999233279865151,10112586369376517392,1766625937581045667,17058928868020298708,9338549103976712992,5627839139462694317,393291366245477071,14993974268935965851,9574194913184888161,17102953684715233731,18172159533116603268,558551364131766892,11497990697017203926,17909097026448565887,6904517352004982728,6463303731541186545,13889352452457976050,17758108010803768011,1805507395188539029,13806527984394061516,854166660125917585,6892822917297508921,16639699064584549588,5085868400554242708,3063635245833431071,2854657521439430007,11345681505090274580,8334926602366134966,18109817213643527539,5773241807831761582,10096023355978838021,17884386388026292158,15443427843489246321,5128187187324441521,17875887447586775626,2720037671565860755,15511961438355230703,8191821525647731278,10637825109331078771,11432622590315903759,13617667222720482008,16803350958650242853,7232028132440143683,6213300294081102411,12044241946330545805,13060120107399783211,1276690224901044533,12527171455104485805,3312604278614423131,9635986154123715170,7364662449949344527,18111392558290655278,3057586069139924990,18259978201194736572,6038122340458006529,8963339483566220311,17143969340400022060,8715924390899255001,4591606957131700263,16939054164423210389,2288488872936665725,1093470537313338795,7212080042431431311,10187371546249529580,2816835704927294312,7564235588936821649,16543205062286821631,12785044550779303777,11942357380094556223,9403866575930876452,14989024735776848144,11842425111351402530,15469245675016416502,7727178204830711249,6700922284726006023,10539652258050722193,17641051999405782822,5344609990686444149,5967780587205037557,4771676816454404164,4620273691467190274,1305513203086114725,12086336728404868773,9388567333609702465,10036317839469499162,15052883535832013821,5719626657444817355,10977148188770914727,14146314951628650850,3934340395217262010,9302629254164507314,14755915401122585280,1538867776811131736,8380053563673931054,10571608314418953676,14799388375995690425,13502661537290896773],{"siblings":[{"elements":[12664549484344903474,15853717815540961956,8073348100809005013,13548306548983532102]},{"elements":[15514428744505251117,14504379719601574378,3632924971737213774,16395490620190777807]}]}],[[6472316918344045539,7348737103991399565,199649958490245267,8975087053425023472,6928632270534938262,18348893127498953206,6559564126195642612,6409265276986924130,10619178439103950690,5586144462703934226,1568560248770727666,16196305634599688015,16358532318341593375,9455525351201204000,9815801212691136524,16940636980416095943,8285248051536855369,17471441698029204981,5709859373028673645,14449870084657520553],{"siblings":[{"elements":[13516645845116104941,12858973629400899818,6298803105891457122,15506342116640319375]},{"elements":[11401017871127626637,18073598116114047479,5632277518610515708,650460509947357987]}]}],[[8030868133116812716,3856269901348743137,6091909979183300390,5084025029299432005,15816876569588404458,399462967915183729,13020125895768346939,18446744069414584321,14374183051509916308,2683660944341301546,9148965268429096346,3473984844111668967,13041490560627161019,12820213110379138361,1988109236447019001,18446744069414584321],{"siblings":[{"elements":[3004868077555964759,6246164959790546087,9998649444505941570,5577108650397927394]},{"elements":[10338080588869032781,17713883863731623074,7725612730410270183,13268609474477435317]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[5779238018441521607,1633659970024625107,15132631210249071149,9192233637020066511,16987576514335488814,14537832941490526695,8017871923137398435,14314804699542886826,10901130489318013461,15285483815663082328,2430396967900556168,16276049452254364183,15227487508322773600,9872687341452455059,6211993994226713932,4889758649110072149,14915335055951661270,14174469351279425813,15222693756012869232,2507712364049933061,6240539615301533451,14664011484904827783,8048592190500641310,16905018051986877068,4779431974339347199,11903890813464622515,10928808714970001223,6111390108406334068,4234631642081657820,7235279605367545286,8799657935434031961,8286115099013562073,11454656292809441737,13520163168352385625,6456743497411690816,9372245902640639235,16981095607738972247,14088949113824064986,7376118977218819576,16181391623796515936,4306160775041015637,14684943054646970993,1187357664384853816,2678278548320182310,8915342001311324677,6820357556106716762,10047165498188026782,11079858360482382602,7513024627572737117,13416502641490652835,13349862424590596035,2534975422370036520,16303174984092936300,5007697021193232369,11025232868888114458,17497190273059442911,18378965578806711459,14650158696056524998,506378590434313023,7517599558713930394,3284540675228517227,15536832927518804372,16776631120837587358,8840840584683410056,9422443583642356960,4619350616359800110,11449017599009673815,13102563998095575306,7578815223018683414,4567644161714887189,3442591794496191525,7557521075610042401,8245698025078736508,9547655045181054115,1521555487622075717,12458682305175417258,4564571732197379275,10911026568935082680,14535719776674318142,8814423602300100352,6881176102900919739,14757102652154963074,2882892600394869839,13505407566117981947],{"siblings":[{"elements":[12028397558684416584,7195669060619656539,4877302621055009322,13144368516691639632]},{"elements":[3831638896680269617,11622239582132795001,17114360658120078056,13946956494708067730]}]}],[[3343692549667880505,16198634626183854616,17828341602867283893,17343923561744772965,7239721626809504850,15132631210249071149,3836379348225604529,11076100975035109379,3836379348225604529,15132631210249071149,11076100975035109379,14912480323260713908,14489809805973717524,4880220434856361330,13947179735898410800,13229685593822343426,15911368050061407645,6084143457799909927,3192353477317781124,4504565059227164154,4834107503583495614,6021179220503470448,17815725382551011814,353005752735087093,4007573482727368553,15132631210249071149,11549410711608607519,15556984194335976072,11549410711608607519,2706309929532775409,12268361366747451445,12099257585775883867,140131054861831523,8903974312821521182,10043570134653716969,18211956115240107150,2292372264651693774,14102742245736635927,16852559829722837042,16825505233759180266,8908756795421598266,16103162896097380358,8926793518491301862,12202061379809903409,12327521766857249950,2050769331733499182,17325107096621126508,6803231158122982594,6784867343172638177,18300290432345207817,10636474538463621607,4386574529135542745,1250494435896400910,123003052125317854,5448854097786247668,12602965604509595567,5743240162770844343,13132869005104318057,7119134903727636269,10562651625673869862,17670943082149306501,5165082877823307327,10034586095009347150,18403871672691024829,8521489955487896999,12635031104158178731,18028376459515519782,11908702605864831038,304061409946482865,15736258225763026909,4040701803252043684,17707666159320046017,14575644205272956477,3502139250412121130,6633713801200532995,7601434306551380489,13748955194333374731,17475212960816482520,7844896550427291036,17656717192009621493,12201019913972285654,1522224513466690172,15190450450888432188,860651136548303685,5110376993438385147,17377095422621159214,6464894716463618461,14702226779224557781,3702730735062817256,4998351497105793254,16054975751433575430,5880669708305179454,13997899952030131900,7728388812875819361,6361030057295611778,16190373931251736680,4223270819633636417,9714918360415963083,10221734355966291900,5199806404189904673,16625684062012507466,1746105439999395602,13909194948784929858,11627413399083340388,6820265889710087077,3485410948531934651,9053644199614520267,11848782656068851405,338159767400977261,9214092049969436447,4130836369973881198,16497171921411889070,2322484766562628158,11144784294901467454,17160963806669865311,18045676676463249733,10232219943606011622,129054393174406105,5131068677522791732,16448039553334225819,9137703767322409787,14571149809596542628,12024475215792790589,3373968061732934391,1170074000405821622,7745939968264153742,13365774650994659942,15268151864672701217,13358174864854562580,776628099070901061,7076599693818849408,9228233082293520279,247806449564806791,15141646506993617642,3335398960777298349],{"siblings":[{"elements":[16694149547239299418,11916098023714376913,6683167713856718248,12883762631643920858]},{"elements":[16680612008794498936,8640953519412144738,10181843617211023742,8267313235995818586]}]}],[[2407409934291764350,9258994182503114094,13139096448477754621,10231532414294393307,16869825209268617560,4033977720048296461,11970062223168088613,5114324180131030933,4035241937297597768,18384282130646381560,3119460359662332373,10263420363880015098,8264307291697762303,7684985082558235520,4271006438160629142,3582960565310600054,13811906650129963757,15000759657348015204,1423919909923382610,9186062269551114500],{"siblings":[{"elements":[13406981661575413696,5172026295240874364,6949218394557698042,5665430393736599705]},{"elements":[15038980373507792589,13371167328767946914,13237656934183842649,3552342384838824807]}]}],[[718450441488193160,3384984396605666432,16112609702389701215,11191055637634313168,13625870787139354873,11265718301513146911,5660733189084386917,18446744069414584321,1517354566020000005,5872976568146552498,4737258158776434239,15542363834192310254,10995560238825993108,535712946360398860,11220538357659625724,18446744069414584321],{"siblings":[{"elements":[4606284367567892898,4098215502233871532,10640429447122513029,17948520172198090941]},{"elements":[2266699753608788951,14951315295450771117,11343886449762297073,17586657642109796121]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[6813457186201347913,16292758647703992019,8844653506261590739,8418148810775012109,257598705366079431,14188566667344261135,13054907711083636310,14937929170921287560,11113063179581523791,8042596091691475662,8088975227728187573,18101369027756630910,14943143602927915893,14978919543577864696,15654760751235657081,7292731374006035884,8439357553690963193,18422874179104399619,2911351474793379705,10768295678929100273,17410446462012088096,5954031235807853625,17423240168171036552,11752735854791789047,2159893997575447110,17849087447768289171,14430838415796105645,13247105220186075038,1783455347200879002,3872488841582921888,5457673965860298807,4112857996022796834,9744446854218927641,686697655644955304,6686902746222567697,5963971313932586699,5945416961952347013,7000849025639680335,6586153289696681227,4821726886423231203,15612959990111498080,4054663324186167904,4494381073432862930,10857722779233749136,2932987207271549808,13812516789503200337,18110420774186651466,4143022857424029963,13892794212034462707,15053718859175984300,4144507211974925269,4602827260634992144,4885625593176507139,6807348898367619461,8166762537334621850,1788555205280129465,16704565138532596904,629459479332617455,17954650422138512948,14676423773407282993,4439290709458852650,17145940255033179454,17521517402100614292,4812307369030413083,14965665358490059433,12716533470726248903,10586804178322663212,6688205588492027337,16751822584437025646,3035428332586564848,17750248568831761995,9714277578669276867,7223953909504756266,1599519121581393253,6368013417370768485,7295962644899175923,4773911471210532926,9441616541018779515,14141070459922059146,15925789236233281616,8288430442049947536,1914476272459174394,14112709828200927890,15156166554177497045],{"siblings":[{"elements":[11704025310434077720,9532838675057870925,12303433490119470095,948351445506016995]},{"elements":[17064536494791320770,12263744633261512961,12108241189491567152,10005497132141205270]}]}],[[12367740132420226342,4751018808570050720,9396418264939515539,13376264054680686305,7439030988334819681,8844653506261590739,2554964752008412981,9993995740343232662,2554964752008412981,8844653506261590739,9993995740343232662,12548960492351645643,6420846025834267734,6615064001910728658,8114015836825849550,14297549126973211413,494153145088044597,15723621681367703175,4898715300372730635,3412323707579416104,16973933549387962223,1470128548272414734,13622689500868544651,9846141791119170547,16645172655631939627,8844653506261590739,2294640749497649290,493069335715004596,2294640749497649290,2610546392002425426,395896090848647352,14608962927904112372,16132423052844426083,14688001811914787625,13519062450554433751,8012432559003429632,4908768588388340840,4323513915312329465,6346560911298181565,15267631182363045416,6602510710670491593,7468700863523979621,14447965303859983141,6075836865358353280,13618042121522330022,10998296561448228548,15841976902483551142,282228183290158921,11153843798638039885,8817234269794247540,5432109581401063923,6851967163551660819,13961530939099050215,13165497795046165607,13406473761113700261,11121825770698491750,15081394468024970566,16804268035437399121,4112588416057775932,7782800348696418249,7863993831091031610,16633415074935114657,13812656208135323415,3185124745078016436,12792804257447045537,13078819109720497537,1712980502548834326,14524287319744069067,416842844511225767,11899242984944305692,14601389627328965198,3603914039456544347,6358903273201005509,10166129907502591836,4393951967068143470,12319116725392069352,10670405552191781189,17335901113408808302,5324042788877993127,13223048771728507680,959484811878635640,17170214233896579731,5019405521970766042,12089807679105517343,3409529301504229380,16045138115202189229,6756083024957438061,15219069925892696729,6826346430147236476,1592345270438109817,7150337625988558460,9136358875864277964,5574367546693046823,15531224765175193990,10442199907150465853,15908552582612086054,340796202086519729,927193260190283122,8882985940662791023,13241178301756843471,7884606198056229166,6957749215262219428,12763181553462278681,1198709508699066062,11717878732949707259,5058360101168249492,8285046083618332294,6615306328692676507,5239028164168684145,18075848712768454098,10842688530051432368,2350955680415612488,9143650641010618677,9444271226993681608,3716239260973373369,14939577589645647275,10795695687702435344,18163015095844741383,18424317073793106812,1788189022282645092,15816691296695615772,7971404229944155685,5110474832432724353,18407389716800671392,15576183282773938862,13848063926721314556,13486790584952370022,11877754292595911998,6527123780383560120,17282665349881407080,16403284060680509552,18204326557693803480,12765853527212446780,14560573099211998051,16102739329883255080],{"siblings":[{"elements":[18097718126307589757,13597214077345636009,7630146090470413103,8642598067241196414]},{"elements":[9944776084518157686,4653909707046425785,6023823242874418186,17177728323428333719]}]}],[[12648137476508967541,1911381761529786931,14420971025315732948,4603307933275467383,17490582432640226536,13366272432379484557,2497223794013650288,16843930209423097710,8696516839042457312,4517010667149369196,8226587771096723318,15146962025994716654,18240699741528031948,2554796400805651337,13727152386157172283,1740050648665867150,16737482292656320544,8610903963298014987,3166036325305768588,15423860959384836152],{"siblings":[{"elements":[7311092168956144123,2737022805689873671,11761979561503611665,8478714860887618510]},{"elements":[4596059680650727571,6771115085036167242,8395755362072069468,11948753560074645208]}]}],[[6110425605441857132,7169468867908892253,5015317776562358371,8380029409245703953,9630999129111154903,11104755439569279971,10661190661324421607,0,9031757385531708895,4874249127923693183,1310019134661541436,3648961669254992843,11541027429362993877,16476838800911891527,1589119771308685024,0],{"siblings":[{"elements":[6941560159717284311,2305021389328112036,7741042536800547708,556069848774739886]},{"elements":[13589310221869782017,5847021125471704143,15424063190731956555,11770972783687690470]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[3738945624800370731,17300446361735488265,15917639738875279304,4136774869151029450,7117564556375305386,15670713401097966322,8381165688216271533,6616103561609861786,13525601900549725401,8799482595755943457,17712624366892731318,17118545599583281469,991100146237581491,6035752930321192712,8266024908831034613,18064514353010328935,3964240644054969232,1994624446628148135,7737696342131683957,13493604657617510761,12370590996382281203,8394073097020065040,18283562745012062460,6603194942422814209,2531030556376411593,10324982144450082508,14030009636665866801,8517901130048984070,12939125815664675574,16304843600861358605,2298466883715219055,12488184336251324402,10985612231923603660,3938570370374081443,3042511045280239076,8171478540730367577,16057693655131392951,11774495727902372291,158368229678630360,10831030505909419154,827360893993244461,10152328350452690919,11307238070099807940,13841850883366080465,12691891050419428514,7591453740245008478,13518080200785327749,11697901946292834344,17655953453569148143,1697289746656046530,9087743985318104710,10718099400097923382,1326370504809921685,16908986449959167910,15621818700730741288,948682801768912387,11775602109313462473,15639513639876645710,5756007334659907895,8837886509164769704,12808750118480217901,11348068085147256475,3562302526915199466,6009828677840090154,3086670756891117194,870481913221754358,12245862984441377243,4244793211851520732,13952115460324070073,5544993801584185285,16653723066313937090,9145775338650732340,18188734250621702658,13427643555713573844,11494683798358729483,7381145497053006350,7707723438386994051,10719871725717216219,13294205928777507235,13970396126083246793,11718884100073064041,10310245041771063274,4668742116442863641,11041791040371495950],{"siblings":[{"elements":[4980007364458196901,1695687289718372436,15683405046165023045,12745377463045984066]},{"elements":[3560583152441324605,12581631521285452247,3424922011369377233,1328356594502091179]}]}],[[7084960479292912767,10113856666356110536,16930827229542081179,17595795979135813872,11413641985416032712,15917639738875279304,17853461635410360602,10820359551411808993,17853461635410360602,15917639738875279304,10820359551411808993,10227077117407585274,13441166086793643131,6922279639650834894,13208226628096937736,5907712514304296003,7958718539634873768,8531160284099858297,12132886358587202799,9997670503567991906,9083615694236733508,16026069845095812190,16685173385837814215,4321739241022193946,12827769716812395220,15917639738875279304,15428462316217205166,9809487963615016065,15428462316217205166,5771703705112800710,7671681842049620191,7906121383596545151,17795075044569595192,267393143160701019,13055870565147488823,10833675876607962418,10656230445922718995,3191074590368993097,10161275569941155214,5952119697128223413,2921686332779170484,2911641479120257146,5798693304743700997,8548710433550903256,4672046953109140416,4590267044312535736,6761263912919432649,10625469962512286658,10338088260715321929,12665159325225859539,2619789790716391725,16434955727193443599,12233493150380712527,3541018881139668402,5916700112010905077,9690317986464067255,16987669436823757836,14078265152103635253,1058055340552258530,1111528309983511519,2625014102184119528,17111771302692877637,14859633695942916925,12393006655149325854,16986755988351333659,11574842003016317632,6340126814180697654,4145585163176589839,11257768379451857135,16523511744299770784,6135771263550918046,6453934388275991869,5975543667593338027,7779106379135053155,7064553168878251009,16448941160245605637,7181753004963525912,17703095613754890608,4592917794041332013,5969316246903777513,18196369409124055536,158391249579966443,17166217745866129909,8366140937088969407,11603369719285314751,16799375343204680497,15331766206073844023,13571003745490693456,2285841321871463401,3287746584190163190,17659558956511152653,11729878151953388086,6651763396347107628,15031723819765623727,2539009710588176701,49161353515344899,2482042313991817612,10542781243838588650,15546976275562151157,5792107661901290788,16317246737630525595,9947445054920672731,13375261689542031801,14113550991372265461,9857360463981987336,10048171775558884311,10903961737750112547,2458821739998608501,7871027900879415019,6586892564065927186,666768622975746960,10791972611192588215,2655116495804968490,4217857328638599731,5080191983488001789,10871149695634063689,5680368691356147721,3982569629320923951,15021579494148421009,4673240442536839164,12895880157490928898,12528807577770546334,18241785952547653876,6113020987822997859,4249181776089836864,11957777857096516827,2342789664316756156,9460880196498007658,8534902169680737343,9030928585522640995,6647745569884872941,10935858241864339772,10812863755601342140,3329468921200269224,16735387407284607568],{"siblings":[{"elements":[14803494556827238929,450055207592316694,1894967607835298743,16207476689084727230]},{"elements":[15667835261289599201,7767145371646568421,17153930599471857093,6165477178966000037]}]}],[[4055058735454322339,1042050902873381884,16512589428607771031,13284335760382542016,11149247968870870567,5508304264185612215,14053696817082367211,13688152193331548255,8236596020497170691,2722621029745442235,14477387259138863875,8228452716253115535,8085729909585213180,5785785268588690194,923558169511783462,10776234928716960429,3392077181021990968,13453684223777806793,8861579224458920883,10838427064909424589],{"siblings":[{"elements":[17869135965739075295,9376404687590749651,1642698169842254420,1955885905818994004]},{"elements":[13908776069736708650,10556751953500789912,16164279508763320885,7246542079035228993]}]}],[[1757799454902788245,5813524803345845276,13566161605899632364,1744810345027932040,4159995784313551117,7205868377375573659,5541955222937210324,0,12033495322573387312,13700989764195597261,13345513379416333756,10581871095274283035,14917637282561279731,9165842903158019719,14901465888027634999,0],{"siblings":[{"elements":[2639149994205435275,6430970741260353955,17308244016615504146,7639089845157934058]},{"elements":[12933891440736029649,3211003802891024321,14688639299288241241,6716388689767701808]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[17206109735828519157,7800246827495717315,8020745982839718295,15714867855057488863,3032318802615629789,1169567726971474766,18077249475269052531,10285922619335735314,11648103021583209605,3996410113584517854,18021569007658151356,1121227614355612584,1592147969364196194,3073766620843520534,12172344610021173011,4468130253357913066,5363309130729316017,9060428272251534424,4327366249438306814,12824951185045586379,970387560941176564,1824699754772168200,16516673390223370778,15495504148671108555,5610781073527305718,9225766756719364123,14479804754371532149,16069417019529649419,17028164268165101450,14973099585692074123,12345388468971828985,10528414744792439808,17230049879188214051,16154658027059712015,15806738521538973459,6684427148667459238,11749556303403888769,12277889060912305273,7026639429275326762,642243559881271168,5613002337837507560,1314612325939215515,10637190245129486168,10947029513521575725,10695442475209097230,1990958710162532624,9599986486111589104,15654307118935242621,1889638351941074398,2585149121863491085,9584210455109621775,9973723166009271144,17569386003946470953,8837034270941763229,8599448158215233488,3035519488129568086,14838852793737000347,3963604704401543679,5368414199855749489,1818383580332167691,7422759722975509296,16541699519595447964,13735133402274667031,12507375995692726335,2491323809709365610,780565099070518451,13723646817613359804,17357164720707240068,4923388621861509606,11015651857441784430,4591101115229292098,3357641610537422129,15139876664150598566,14395858246625084437,10527568225023487661,470348566177183452,10758053878856044596,18226941559918030836,15711582105394125640,11670821929750316582,12032761100378838568,8846227178474138162,6522102506143216099,8814827997238842364],{"siblings":[{"elements":[7403663046154704761,5184547189845195558,12550045180944025872,8146440534872139040]},{"elements":[2620616561727944075,13455578190656343205,3162853890679506371,3383643176103145107]}]}],[[12568851523521900434,13486339453494873041,16022602508437282783,6591834744224042068,8039069810456956987,8020745982839718295,860433738748881564,8899503549205838551,860433738748881564,8020745982839718295,8899503549205838551,9759937287954720115,14430330712937488925,5863108893575766496,3322597498079814696,5706193147191073646,105358956737704948,12769588227789528966,13601670405085104246,2554884428510903638,7100903673656153138,6363610724913829497,8271416998525464854,17540171555591851626,9972634055700694460,8020745982839718295,10185330823446668805,1711220809732778944,10185330823446668805,3971764544672310909,5986529989165736038,9914527832269484662,1340903002693636992,6198421651233978626,6992813725274413055,2089309534103086646,12903310228154195229,7896635047501888854,13801279900528182318,12519011564256559243,17453426628531599715,15468329301889803682,608968401601237151,760632167360965859,9132193120217266183,16477194334095282085,5980128023560968978,1637676992879171536,6406876268973330994,13423400050036037185,13673926583421653935,14565762864550634624,6822569992851249172,9864974683426286226,9390921115147158558,13800711046810456077,4226929932992628774,9283738585426243188,14082604664369984384,2331894460239110062,5296908088139183614,2245949430881952098,13638926972022084603,9411902587925494976,16506063017972121743,7278868702807602665,5296470587804110171,605051741125854562,5512343330020760753,5439520614893866553,9151340321706373260,12696461699666028,7796612574877181487,8233860263178259333,8440818945990497827,7759118584134343147,14050819452224445471,12955884946349458147,6935765213750314259,7508056181359164885,17728082411186894417,7789069528794252307,10831744070061436559,8090037797974398294,1086216888430392902,968269130841448726,8469793033662018788,932570630753568794,17045041799724396242,12346098282641661392,925484480992273718,616625149005621190,15625310514265274125,2969754306971991516,15112960016435292198,2714593646548223803,14691258473219880051,7058741741062656858,10792319589945326776,12001679155981212862,13709029598600613382,10302719946634747239,9157983673641190243,10077419301323658001,3486969186309065250,13127085754760621363,4344106637635468357,2505089471075765343,12609944992958393185,11769065904163729364,15764836287148034143,6432754146905244912,9384485014784054787,9844068387680180554,14189002165756040621,3970970379159128000,14921374687629128892,6663265284232690864,4272896423447095704,13267452049507920317,5305092573447486029,9882847417808530032,1955458632087781447,5153072873659439121,12496258585073509253,14932326074991487457,893494028453933052,92619923863484465,13106798075134962979,12307506967155615648,4792639378940841311,8368230480654297493,7090766842476516498,9039749853692084017,5966382359206431257],{"siblings":[{"elements":[16692448271281130410,3187497018166977368,8034596417268007797,16605404827894224620]},{"elements":[12635072478538248330,3090966620156030405,16060771121752955262,17224937196647426864]}]}],[[13628433969114016972,12778526840259038002,7004323718209487468,13436056313352377902,3554030956914896677,4132359909270322999,7018018891731266510,5447018842539175394,8947609248115287326,15983184040504519326,14053658429640673383,1871383641961483664,6204044611104548522,5050916011512960568,13164524452572468375,8699943086749654446,10629612803883739279,11435065672278460052,2398305399662753961,13082243461322413212],{"siblings":[{"elements":[361023892814720883,2802851863423616804,16229132839017315226,18012565281455339549]},{"elements":[951928689791545203,5032565514753380370,8083889197327567118,12066974764625898819]}]}],[[7335795537476390350,5088158658773565447,17682321437586743488,15239205214676544730,1547342429330501536,18035791690937514161,7876542526594800286,0,7117381763791308846,7971559057159021496,3624022328145637872,13218240939827917196,14933722151847312305,5549661642461740022,6134676901123040341,0],{"siblings":[{"elements":[6439594996995205453,17569676438462802795,15426043897010723851,17647546004276170206]},{"elements":[13291872964328558996,11725562798893749458,5092116570918893300,12021871462687511016]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[3412195693253472434,2739263090806628184,18335914988503821622,4024542375942561801,16580221342493760501,7385706574569255146,10931305237197132803,10735123968659643735,4556138549252194217,17925413718308533465,9835162965092258302,6318678569775413724,5097667531440628027,2664423714563628572,2393870335844252222,16273841429939868128,12000692774708689325,15107021233822851232,13539184862091635673,7131472704068150364,14171567647552209080,13682585575509055440,5243676816688081766,9854578753073605541,10137857772360513156,16683523239282020060,9388581527337813244,12117689140229804419,1787375472294384527,9257922817067603169,62994313467558582,4056228224960935802,16317659344360610250,18392824204155686285,3675394080291480814,17569843549720923435,16262426442662696767,18112356068702490132,7077521599674128976,15937420198197409629,12775437951874514331,8791149344503562335,3678072886751511735,7198695906132637475,15337879083669767229,4474360742768703111,13509335910208370297,17916421652411653019,6546517339600812113,6935094988368094689,6539446379457846779,17967961634982846368,1562185240324041821,12199916459840290747,3031554006478859208,12588251302515987070,6117715926863795058,17016581915592766120,10744006206394735934,8624591639795837272,5027661145962814742,15721809654341767426,7810692512172096776,10397681266641681910,7243790059580049608,6026614052344069060,11580747199986689040,6387995288745679597,15507019663160678426,7652989257075705396,6130714560261813293,8332366594857141646,6824679170157741048,1870113101842672080,17790635865190012656,9741623006587688082,5345953908585379200,11386056799211077554,16357766999893083607,2682905442587942448,9894630896923956439,17210516826061373659,10333063588815395180,4989576425065773290],{"siblings":[{"elements":[1993637377174882501,5362507902811136506,16460030588141874603,15030293418421424676]},{"elements":[608309216059009087,15657505314169978897,10976396690985755658,16681478498527425210]}]}],[[11693288843916162630,3674506074255259215,751222720383876059,16040782561202035488,8621679501448010289,18335914988503821622,5815756889360225356,14437436390808235645,5815756889360225356,18335914988503821622,14437436390808235645,1806449210753876680,15115347863096762490,17659254146093247659,16660205509325383109,15393093355862057463,14000369862602112133,5639406821515897160,11101279493030559036,13652996396934053259,14108022785173841730,9854589435957110942,6428573313012750687,8805076281337866453,18050334812315989005,18335914988503821622,15847476344463517009,15451067087364921693,15847476344463517009,10059056777128563688,4397617671565720098,17549659015090827999,15207497466109520406,8710595139470515262,15288477075265269211,10898315358550631415,258298414599144696,17457865472398178986,3282185036862206637,7447901491516988299,543518491870935078,5880890341848776910,3824195435578098017,6476562627334640290,17252045850910669635,12759377224837141959,17542176464021429027,12116667821082211085,3754789954007189525,13942545125479339719,16036891427057703826,17937748658360515634,6076268593287472458,18328184232513322863,15677273916839560872,13242815842710527516,17010181874806006077,5599181311580982436,16101976053758066591,4287485815817063166,7449789780210289060,2848253173006765824,16641601147982422906,3678150475605606981,12437466727980491815,3024534940898329364,13136713137037396123,1287016450398248651,12888625757963969235,16446517429809124422,12864528776588550636,17535129722125721845,14588652702651228197,12615636963362815353,5035003209328742430,10865042546074740428,7013335195204026295,4037461492533105045,14937951114010401518,14347724525273471710,11914730085209341724,2651790977785076205,14152286708133134596,16882439508337390337,10502269455947499872,10080738405122791829,7312381029862736244,364124545931287393,17650666050325788365,4230947073431754809,6558315871399248505,14199927468595195797,16310649984108737386,6816798647958498459,5877214958259044253,18085776411590100720,7412293771161484475,19123733122639839,16374097645412217907,3850954203357604287,3319305794099569471,16978530799581284006,12168136528712517473,15104650545886298877,5572296457562635697,2298655441410878619,4815456833795846750,5354687803505299970,6165756058863798901,10555297903237701761,13561796253427612545,1967823748985276582,2033797124429034693,11564141750608094494,5870406619571941175,15176190026505111509,16068297991123355568,9861947678572387226,504669524917305704,6246570233982615614,16504831019220837448,6533819608572308175,17154432986070783251,16362383099655421488,589247448809253482,8182341988620718073,13265570648945627085,9650403981326218984,1532086222632796252,8818113279883235701,12372017263745539443,5900258201043044070,5600963957567841127,335435714521202301,6071746849000108140],{"siblings":[{"elements":[17295251543282291103,10481237248280172517,1552216229042299880,13527247474817289753]},{"elements":[5673898759496293924,4636452871475736473,18104237363360020046,14791632146812083222]}]}],[[7149902472396788361,7055092939325704708,13428205209392956360,5151013407149054801,18041214399945167420,15209321776222459744,7465168663832130225,1413295923059415612,3636445619407208758,11081068671129385317,13649099947354963193,10214652796903580546,16582006078318926824,7777314018496634636,10833224180548648194,3469953146976414921,17506210724829479517,14855518495746897214,6552913806606232487,15202812763685360133],{"siblings":[{"elements":[16500474586841518989,5211959586037462156,4013171024482799871,14272892486458278288]},{"elements":[4359409371571848320,7871270597332206518,4059018556858203473,18371896080309768692]}]}],[[14063288933699853690,3167048715921901565,12882640912818776164,8836228009216620384,15524936544255522435,6461111184770076795,7799870899964226454,0,12646722730335704170,7612898736546948436,16002449304043360784,16343969006814157348,15111092178499025348,7335014960431901073,10297527550813252049,0],{"siblings":[{"elements":[18366802444923405891,2211370819493708938,7063409738940940665,10057038069816686293]},{"elements":[14652760857554324672,15304368083049420521,12783349036748574602,14041648391144364018]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[15758775234507621717,386873473794195,5809584622623378771,14306751210974713097,11302554983959589528,1327832789599027380,236502180870392261,13264905772134066913,5857506752267947624,17058040426918110216,1342694698541376124,11247410261659140067,14350114415645219099,4583230930005435996,14076503119706401870,15880020041488722480,10627821187628142573,1044749384776247668,13803094214927487198,12544379753173392690,13057050371697995823,15330579406842572521,9707896952003541119,5786715142615771477,8959768511509209644,7466737346920902526,10422822089882229296,3504773151285322564,3419470529597640908,15847878555525589235,11410879681056200420,3245040583009025788,11698930509459870103,13570140684066883333,4107171135279491735,6816442511716333526,13187679564150780741,4957755858430971647,10756562738671628321,4016481060180503199,9005810410597864305,5421891320356037402,1065438370161549321,14370621258975165237,3366746491579372093,13006491237563855897,12466845178667283423,8450232994099053767,3884423878484462695,16694495941341337565,12276393389691729961,16037686545199925788,10895977186829848590,17156636392074348353,16170249794752475724,8130522156784339061,3758135148585897412,1504470367743606760,12820235152408801940,4728472998567873843,2824641811007953243,15118259416555888165,12215493150006810512,8316066871495739628,12009914754943290636,14195274612200124758,17522726866577553243,7499475354690611506,3544346123845523313,11718047683762303071,13490728387453084563,2218114863523928610,6026027352978102532,3747782856048583946,17203016452260552408,13031495329552308162,6244324079390071668,12856980774624272255,8466864435764048595,15680223617309057078,7581596273487594510,4663524874409993864,13442298349819084674,14052760883976538360],{"siblings":[{"elements":[17239242580999488077,11539643569776883494,6361888208514807188,10670222042682017864]},{"elements":[7372999055943322391,3141364051179517969,11032666934607065725,18114007743554457067]}]}],[[9107796823381699083,16818241499348717087,16299777022319025518,8287169742405572123,14699099314920656807,5809584622623378771,10697299198877963402,6949654444384035888,10697299198877963402,5809584622623378771,6949654444384035888,17646953643261999290,686931869734721296,12277077101639136446,9373775484345173593,16927838833764677579,6731040120382520735,17178901376583782787,732272106152784086,323922801612545150,4938180598924907329,12610176006145251842,14090513865260612094,13325115935048046377,5350073592078865826,5809584622623378771,11499937610310316683,16850011202389182509,11499937610310316683,2823612234805332942,4454988068108764491,17992362047514041692,3075187846353868654,333169487511157941,1657672102874724837,1391804069625105559,18151133019842123768,1824056599270830216,16026355332001614367,2478860401263113184,6478622013900954698,12312665062271454661,10751244645681367385,17583015034177307944,7085969178387337840,10046314382640585154,7692317382467061601,10415098639067884902,8515670898749819086,16097968506620855260,13675850829352187894,10605925066695767811,12729444118303673603,18326325472211029923,4305842772090829641,7443549265999355704,4661595261570924313,12061374068825047802,4223456727895216986,5256778920416722124,12285444181740762369,16391412819737916128,105302417215243149,6855855986647499852,2185474606920837302,14886235409468280164,4355137943232737784,7740942529190427803,6403361374815893621,15979611646585807779,13476601533329594076,9182543593801672088,18382739651893550844,12232941317970144654,5630799685241771440,13300669121904750266,13519373685706170885,2532523041632905735,15815424794799502730,2764240616555594803,8906150180724756856,9359919687261925330,12085625784283981308,2169954057456848182,12848913780891347344,6334951066928742904,16222249722907194557,1008688325753771903,6391221410536133007,15825015942030080667,4907721460363181304,7790425883532150709,7170057247673480894,11882566560372160182,5504823681602105830,4090052634325766907,6462815598968796558,17383144396858425738,7599177732939090331,14590305675929119245,14798772097639128559,12885809360299891957,12914723663073765058,3104865079131596208,4713981446923115913,13245155655860233196,12928537471888237786,8316642678987068554,10650948371019096650,503266753556309915,1449000362419955944,16200087917480322012,2484111521637008457,5103151636169875473,16950738430385370372,15681202601550737384,278843953556347560,6200410933691527772,18081305117116532570,166722311021798858,8021257065370994999,3639174307801632297,7712174943299924978,4782016823639109445,9366088105873599886,606223089282100779,16803289687860378701,8241881421783347042,14296993055739669854,6098754487210997243,6341912025926170554,3087952809115552557,6044847693496260898,13961137801513430290,7991716930112076614],{"siblings":[{"elements":[10376632350556093054,14216402888718437442,4209674996809242111,10245531211584641005]},{"elements":[15883353273624607840,8151446226799292463,3640610432309867923,7890534674171304911]}]}],[[17564223931525120751,7887772035407015165,11297309314104610991,276705538354932340,12445421676552130221,7565784270918899682,18428797228710100292,2748137881251995849,7058106410888604458,8215728730188987041,8330217421702341739,2510863598825344021,17316944038358566315,9855609960628164493,8216889891598238320,18040959329479238426,10219450620496282742,5686573232371170317,17240106342241077094,8986614965683243476],{"siblings":[{"elements":[6161650872761446993,11530488184150616916,10060406989234682147,8745351266936470938]},{"elements":[17660913871007520747,4191763233548592744,5545394357684083149,14697840016045487574]}]}],[[10373340152758143730,11478285927660861791,17195770629166242886,3386712628216159612,8708198068089452076,1437414520354065298,8814444408539718713,0,4230668865696359600,18341893636228038524,11599117766980568906,15032184600703900460,4233691484353327800,9910305576808316993,2354289037701443659,0],{"siblings":[{"elements":[2167644689988817793,4745666844121304494,12692876240113977440,18434217390641289598]},{"elements":[8589949087777298060,13576087668975451645,16067660253268944134,15206352539425536852]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[18346899977516615095,10490764803150076522,1931605832967235824,38239881933906693,13140370817260528805,5954262104438106856,9460715029756156361,14452166319600211276,2018534208476214406,7468225848654968180,4984915189116051431,14017727622073273034,12045243994706045572,975027149602640168,15291212086988845823,9016088194959256918,5810707897866622600,10685499327079018530,18065216075082972452,14689121230864581956,7866766934974941056,11132228203515475943,16740179830807628444,16227017628881870682,17088227863713715073,17594504128339642335,16163190584151242906,1545852341769421530,18094809352095552133,1360493184083151245,14317814568263390243,3795914636049645009,8060273454446325223,1470434697264714428,10788577081029383420,1299470864393012035,2082035309727907694,7185590874393736317,4144898093473204736,2529797676557145786,18345879914768606624,4897984516724556982,9105269014703622117,5065422576308790577,16079581666811729997,9484852438571101305,2359182047114282532,5675263973195107838,16486988799653323265,9848523351617181191,1245665811114972785,12611676413490690140,16994079073345790720,16025414312769524390,2471073241886996783,9528050881814155379,17032717627597584989,15558380230219751105,11642007488597708942,2887521161702506939,17570166039082703253,1014192193089153080,5642714960003923427,15409283217250040164,16711717155830752647,105238444331414708,8248472019115256613,11967145441104870159,3164540172916207272,12869831937337117735,11224931413882151380,11535688014285463962,16449142642419504141,2170165276990944060,367239316337770399,8624074108107906941,18359175902018995601,17518045983053812851,4720115108167000512,17998162632163301461,2687527003086175211,8077392948074537619,682277279617773654,14453648997109414865],{"siblings":[{"elements":[14336277518864796310,17635039444687382691,4047653584043719415,13143979430889367491]},{"elements":[9386819466575501464,4695457175289524053,6799857909187713340,3125732624066090898]}]}],[[3827810868900587620,11596638952977689391,1518645946936762903,6981872052976935479,12321181102274866869,1931605832967235824,2325333026075784629,14646514128350651498,2325333026075784629,1931605832967235824,14646514128350651498,16971847154426436127,3598425527841223583,6824655156519568443,7112935303665307818,1959320299402071591,177848541394620476,16335736199265030097,8762091084130540208,8215273849454148916,3620489357013989394,1328295604890822364,7114667030001195213,5003022290956087269,11696720298374355110,1931605832967235824,6421593442322274093,18118313740696629203,6421593442322274093,10448357018059646132,13392640520873055527,9472148818174659647,14866246095761165759,759077334290313296,6290653902663300229,10569952503842517982,6684050847772799423,9819273825760179993,10060118139706087828,14817379018744771314,9854518487925100082,1657613351387159916,3881272306595697032,8100870093634606180,12800450494757209202,9061193462027288938,14135103144099397615,17818635447624548385,15000104262624711812,13298119827230439480,6185530691432540085,11690906390564561926,5728364427306364855,10362111924003303428,2420538809136353058,14256983615105605897,4405648456824418266,9986620246923081203,9158201467742061845,14103116889057652492,18132360039148194351,10539499247304137630,16970695073790329094,6288699485322830446,12347625222029566779,16352990786833875505,16297541420202851542,16284883156646865191,9448823324087618413,12761830211638221754,15293275929641461159,2991102580919173096,12255559925097457146,13232543818248228775,7270696533643874625,5839878971494322301,9609442929325197107,15176845693692536530,7768524644628890903,4163326289229997559,5156611380121513777,3632291204927971057,7157802913394290107,1301566320222840741,15747144940179957667,7489082998003230502,17484637906078364320,2491268008720053287,17027254058648490187,10812511387064226805,12288322432216086522,3461109380053669694,13804501673642590414,7812118655081306816,7164799545944327511,3939317187827396062,11328608733144692902,13002057476523195873,5849016547512087281,13425866663808280082,10333338360932671454,11140842592310673864,2154202892302981718,14354704761045139761,11091383892023736593,8835255701152451598,1779540750426266890,15564885717321426659,6977007863200029077,16947585206451233909,3186272392156805064,16547063915915696925,14701414775076215952,14783894496990849847,3421105353354460600,1041910451557210930,11550908500177656084,2295550561820228569,16029250400943598000,12537305352845336557,5889828171066508552,17066388027648585975,5924216790238852104,2457799645277470472,17516665792810773031,1546608078217599540,6528571744026726204,18390894037780888957,13921699485990112848,15896790750016384607,6227563769634590296,11656450477771171568,17821267130437980274,18250153438555683775,282358681852813977],{"siblings":[{"elements":[4046453698834187955,17293718353703763772,16214756183322911551,17603946120414989820]},{"elements":[13406319966535674044,7820873334114663443,6199986413930180714,11127142303304301945]}]}],[[14516055666494514825,13289933922300040511,7259285159318432577,759116758778734090,14322254731393486960,6892306176626242757,10584797002867159288,497199632014436681,8474272240405827452,8489966499264984760,7811820436633858260,8068848244406171567,4133618909968392538,14275026868520297773,1462198529447284716,16578461284279816402,13091457028934935966,6494861795930815471,3288442164247196278,12962155174519846642],{"siblings":[{"elements":[10661792643538587680,1007169402045686361,1067969381110983065,15077788361169662138]},{"elements":[6781834578833045044,12221812894053650321,5635446760870259233,9808817511833323868]}]}],[[13618255759363743740,443594770647103939,4009570430826751808,18281218736317408495,6441221425617642623,1105233377292468808,12629156791752456936,0,1486852813743198448,9616032275172512247,6651234864162374360,13675655985376603171,15785041321535901747,6876030560955259236,16776643558873918943,0],{"siblings":[{"elements":[14437034261709329579,16872438732666838320,2200243178972610694,639446699754941019]},{"elements":[10018415284260915499,12768350176002431690,3732528635447738590,6808535991266744970]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[8851675123942984855,13286979971740557537,9834126998565970596,5809584622623288696,13247656080055627728,4777901864804610876,17333284365170677963,16436158487933390318,11490477147555676912,3072761297569234820,552643525674882018,8370546490309277392,2333494491959714090,17448991767313658741,17178276216956238427,11133046799753326189,8461253717621928418,5097960703174945929,16493020866127033924,10035082652103005473,9849864816006832510,2833206780844870255,18116694173237948464,1496777866531997447,799526242907756988,14127663263966452127,760194264724433146,15095308076896511973,11135461737293715266,15403897199445574929,17445510800734720088,14429340298281640729,6211456952353734328,17482060761998425245,12562394992956522618,1860693813630035491,8738934514331990160,8085131640039682970,1883824595765440983,3413781727385808209,8233761986726001183,6426306711136105278,3610557426250641538,6135560633250071285,12799631786109032592,8084371407196280122,17425411872350286189,10979313040582867127,18087042872504358927,4600987654125867230,1198356080759899761,933335246022977218,3354397481034292093,15818404046285795272,18007619145258756406,8881893302003597577,11127937698576551337,16588820276979915454,15572213127903066703,989673867378307301,7293001769981663329,3237039162689456015,15780235461315319557,15023714690249036613,4537127851533132300,6051776393843892874,17179768109940645344,8554315582424560258,10064970576445902910,12727538989908929847,1703492756478929188,7685564142936830185,759623113507426400,11012935820788927071,13355668965285845447,6295437776744953185,16074176728701522942,5160986149245930884,13748435125283087031,11766589459837687649,14728034349945049849,11470525794731213732,14104781483456996739,11380647532262937607],{"siblings":[{"elements":[14290926262318189984,4469540445357943395,11387126795916258084,5986630170827251557]},{"elements":[14780924131161078489,11232344161552745537,12663829209753110762,1955609769005186945]}]}],[[1751796706371789864,8389492722321835306,18398241455822516898,12481551404849230620,6158673682509727996,9834126998565970596,15494272243325544912,3206201856420688587,15494272243325544912,9834126998565970596,3206201856420688587,253730030331649178,16315798795845081075,12345617286940064661,6792866361253310123,1049802430279946486,3281935705472392958,5741482234814583292,5904146009442348725,9026802151100024690,14244077047937655833,972805788427491644,3540528314901970846,11800677258934604790,3713661917083986943,9834126998565970596,7173593803836324708,10887255720920311651,7173593803836324708,13931231699291943066,1718686147229955264,1830367441635091798,17520153745630452257,12130934728161762798,9938929652248734945,10798081127531041144,6103847516307323445,7603934984614081470,13006415652243995197,3411961269942585983,1371941760253594284,15965446912809833923,4159911122735153866,11181996571038500351,8473339972526576558,4827834245025146423,16725826774134689346,11325156676813835069,9017372153698496177,228539907038475916,3631134741339283217,3975876326832343084,17608149845613724184,2421402232079489497,7237394485313025860,10756671975684144627,7060868958077016543,4747469664346490019,5604287061948371019,7596074273049743302,6170398362668888879,10101736652279867004,11376953623689775699,7005821086886662529,11373537094418394787,3263697219215796197,14422506754818159561,8338759560122554993,5834752075531293196,16838489116045593730,2277099745118148376,15168794685146392055,15659983735717132908,17530559943477288011,12887899587968767652,4694206512985591318,9787155363835424205,2549846858199500109,7520539563797704360,14325852401310341857,14187559961810996798,5481782358744452159,7690003988671768202,14702676442768744427,1117714596634099755,1939228665833066226,7350040844208542555,5073313149510311520,6398160991995155259,6263996512973563020,369809165169082222,6745657874209489329,7874256562363327719,8366070543551441211,3199319356027163291,13065321376847202778,464862030320585609,8335120598956940083,16785710171545428949,15173809620505641152,9975280026350935446,10668951428963860956,6955401300152655140,26081216993243462,10898999547843426977,15473192981392820742,7829034777326749580,12457092208548965403,2513597787081685726,11603578282034171009,7964014775087083857,11627859349186817015,9028441345127897938,7752578369789577275,15262599263886190641,1088713222677499125,2486580434354573426,7807016469258081214,11615083690340405707,9219585280574812160,15243260007799502516,15751517811300718846,13909240223419813949,17467328089855141036,10933531786569619037,17173487636745223952,9685389296147657319,6048710545853374136,8511594098420698907,11415795460813232274,4051737336937745749,7670601768762309539,3198463740018638617,18015823197165584178,10068917897446064358],{"siblings":[{"elements":[10834109707999347800,5137985358532195499,8044026911785387189,6052233661381983820]},{"elements":[5619320613158431863,1528630147896630354,16652983296762980585,5010093636639889931]}]}],[[543999246645417931,7832449733635770231,18317925805877893854,8008823797246879158,18406022554899805630,3387165976728519255,17943377347328959293,17289759839008045660,17565703771353674395,18134317074321065052,2919777094572016528,17129855064533691110,13881099474227710250,960403457951904061,11052618280122855343,5847351931708347748,10986889443977264112,12086543538419102254,5228996014904945642,708834349919269458],{"siblings":[{"elements":[16912218003626974228,7893909105721772622,1826738757198229904,17714265052893406038]},{"elements":[6108805020812753779,3238620560412546451,3231179656789038909,6108187043030766903]}]}],[[1238678717488428450,15129214126485461972,10727324889156019944,16771230449954654591,16789500407338786883,15993360167019080828,7587373205283019723,18446744069414584321,16979503115099244163,7286923233158666210,11121300499875402987,8285838861778610135,8405509282176162101,10280129127103404520,7731246893292818696,18446744069414584321],{"siblings":[{"elements":[10975739273648614802,16335846137353776587,1277929282730576027,15073199802553549159]},{"elements":[15989553076184932837,12245656146888829078,1685863180610181493,12107995823179721805]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[9595066366564495294,11539115561636369853,8612617070848643751,4361795131498038651,8707796704569096444,13195197378162339931,5885244333503146473,7493274817038693156,16795934710077801910,3499234697230127792,3538015482856514358,10821355231555160607,1042827209683717074,8393956465900962537,9272902407782185898,16695386737328026034,8664116946917984565,12963490037289354029,1001619700841149898,14055163877067822309,16833947769469238252,13623661507294481959,7061230033175645404,9096967242861555052,1492338408286795741,4334043941993182426,1455509862721624005,873371923725843788,9844464102038836705,2075849575805447782,8244551275262799336,12483909021902906715,7470033179270143450,3493932766942357912,1811225424132229303,16353192859594085411,5314427956638463438,14110765914380064978,13767387029055241068,9344676171163636723,13241371923472948827,11726848981359198822,17377628440113285357,5326698555757237587,8793956657221348544,6432954316780697776,15597543765622992376,5809592268820511934,11214718578173390920,5598528490448283499,2812120349198523146,3092520960623406858,12739708918433074581,12837223032511295411,392629019916212060,9551710552136969016,3339446068431264763,16109905137264465741,1918329278681355689,4354157398534296413,12123084177537100649,15506665079013507325,12669324829703513360,13474770592190961927,17009712799779184032,5973322632799927547,367945653486032031,15781838166733272014,17675806655345758459,8827499417494022930,16440542757477443344,2581119749029910280,12100419831622121759,17963909715206254422,16157596225545606325,17609254166928834745,17932850466158622105,12626730733881765623,3545666113718723900,6441169949848482743,17860148745037688574,15345669789290268651,4337301300904067954,16795262536983274900],{"siblings":[{"elements":[11066942346539207429,2281517773770593240,3110504150316556963,5708250715759567868]},{"elements":[14780924131161078489,11232344161552745537,12663829209753110762,1955609769005186945]}]}],[[3677775789541532366,12126848940377820297,16748382904521113303,16997086421638419103,10223759194876436158,8612617070848643751,14962632218850972497,6739647344312824334,14962632218850972497,8612617070848643751,6739647344312824334,3255535493749212510,10850544767605353637,12445193221504665067,8972870829743023232,7329855551952944506,5464371923881536580,1478637669536097505,11714509197796201964,8404284071399006622,11373445153959431996,8309653001870688614,4264714784499836729,3397708215490287024,13250718331811249354,8612617070848643751,4799157100458701877,18049875432269951231,4799157100458701877,17948473456644096755,2130077438777908378,4401098455489824347,16485388791577771477,17358894815686725218,12573168261969771130,13514573077680596163,16558331727819978574,5141547200131823995,8263669158640520609,3588018599289365264,15954469463579694721,16130783788780831737,15034645806970366418,3143666833596138578,11885665665193509987,13554275641029902035,8144254728386200519,10677753941600998869,16614053460040360964,5785455081096563310,10489713048253857522,642242137507931170,12742856495439589372,7385423969714211969,14107726995673362398,1513896259291586798,11515183052470703448,6218377662140956159,1581730791669903654,6462125825741716760,5457410919896037733,16476668901955851544,2851295197359011444,7886670295950051131,13430841895541268379,6784520784572181282,6834628880162834567,1221046786359825338,9653410342887851886,6325902756800380232,12348870366281467569,7257538484753249204,4570920670976555197,1750698782069266335,13283841397899450013,4808722708854170649,6957970988510958270,13217236330618340235,17554344151773800787,8221019947560856825,4297536419150456975,17278978471644333289,15349315518525184790,17173337238352666996,18209510328881252100,10547223022119598268,4522091984787282565,16687709274388595640,15726123635392424704,16604535387513548258,7923357127564526431,638537304990734750,17106176772930248561,6540739782332116792,95633051776845358,7633447124257433643,8316332360176031645,14503044745565637870,10095495058303525332,6313261960216929565,6028665422443340205,10381326897018507453,14910518231273281035,13852070204292535109,5100707309402525621,4700474202562819565,14005151803964681698,6700412968650311075,14539822354258828496,7153458771810502016,3781303816239706508,3666052878197141440,3373092617097454919,2688114605584760752,16700775723825382405,429342063341497737,3356693015463270113,11529944876427169219,3747115010710087491,11010194197632163019,16463745367083374927,6991475984872027837,7290429765790287712,11610522082552411567,3608964085498906821,10114791922416269644,3528677220604252093,13080484042800763424,3616199334243213544,5396992527694428341,13647893603117445087,9535863289195205241,8748250292438080773,12600965246449435803,14953805621270191117],{"siblings":[{"elements":[7543020725479353039,9943924048308712501,14860555582331821541,12028863309424831757]},{"elements":[5619320613158431863,1528630147896630354,16652983296762980585,5010093636639889931]}]}],[[13702076710336873613,3514003872662091102,9485243969215319830,11430900306529932544,13915849232523178633,2742740473105652979,2399169087814207864,13793108118500341637,6583015874633323273,10330237182715324336,3609665108114945251,17811197625556765055,15639665183726217346,16352578727720314133,9342324121131674533,5482898594837497946,10416245254947718439,10647084639931326526,13865763862095434576,7952693388408234586],{"siblings":[{"elements":[8736163153397798732,15205660940828957461,17427607733199523740,8439262225863054608]},{"elements":[6108805020812753779,3238620560412546451,3231179656789038909,6108187043030766903]}]}],[[9810466534067095364,9946760102626904000,11081247808285100328,13604837330614753054,14570658495681633540,10051662035892012652,16683336043619972013,0,4712240692534584523,2670062259287302250,9632524426906737481,4990364649265355445,9847094986738371062,14484904682526800319,12569179567737343364,0],{"siblings":[{"elements":[6074671442091050218,14267558371809731933,9105386885882212001,12391953259930752997]},{"elements":[15989553076184932837,12245656146888829078,1685863180610181493,12107995823179721805]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[17565631475122486162,13112428807682437438,814657839979919418,10687100073143457592,7287583176578477569,9119957951894366709,17912065094023049988,12001559769958506954,1247349890501030371,5087308417645836219,7398662816764770087,16524655585167564581,11496023076072991062,2882936815197941317,18421628275382862085,13615285961234747104,1217449957276156110,10461960450316473632,561574932948938915,5261392988226429767,36963788263559132,9164850294867114694,10737997989809144125,4306952301124110220,14963079343147138648,16286627233757869662,11831708559580747688,10815796126821418460,510676066900126240,15541305163140882263,18393128724329928869,14157594831905582813,4329327111404598849,15357188344968816401,396764937644349995,13482615543640014731,9197483402030863726,16014565579788705443,11848667743940537624,16170822526494470097,2404997186846373889,7957316412688043679,3771898163941812242,14195364064937291513,567351891378815016,13136595019898101044,17422897611144875752,11932823705699681826,15599574133270197983,15479028145816002055,13608358995984024845,2916177584086613713,7687033070139185553,13404022303248111561,4486202424414820354,10426377083832067254,9822331989600191753,11935893039680802137,16920228551281010811,1499676085202553257,8480186318221636715,10285648472756480424,5738310774792282369,3607187035486427462,14168641485863246652,14098418211595676526,16413094492990064503,9333103647472289713,3112143557161723528,526758665457109891,5594545399592762047,14434557311662235219,1325332632391540723,10368959042329114463,3273821888404289159,14386742940437405981,9283670432780772711,12361895721614603310,10986471371611471679,2347319240314755218,16019526439705881998,4646599238042603787,1916663449684460034,10224024849529566382],{"siblings":[{"elements":[3586560659949534267,194943118788111503,1282749807679583513,8381895631914176563]},{"elements":[3560583152441324605,12581631521285452247,3424922011369377233,1328356594502091179]}]}],[[4869952380941436289,4133897440024983458,3163655068312267756,3391064538085196635,12063209440740734451,814657839979919418,7256049382203397585,872514753529547715,7256049382203397585,814657839979919418,872514753529547715,8128564135732945300,13873611438731106303,426301338526984141,5293607343814169367,8712904732064140085,3392841556817364531,15654007593825456153,487026586958272624,4222524730672883551,5998765422299476649,17043748020228681736,13965604432429099335,9954565916608868212,17129643024995438315,814657839979919418,7683977844843347009,6366876800424201003,7683977844843347009,5450742817493812778,7138313969662793730,5378221410097012641,13051817110786210059,7204043207789218884,12882432216770618818,16198952365311726338,653656369876723293,13446473516824586546,17443026962410562685,1200316562358463377,2917042644177294500,5280278135943318553,10195175441490280339,18003769932575463342,3028949896307725793,5045631897118975777,14072115036524919573,9156038560056891854,14336161477959252840,8169358867037293193,5510565667084078122,8532400708062928410,15819668646499314130,5711072477230997758,5617694810049100024,5289092139206170560,17948211910083854718,15702610557065776329,17820039369890645112,10305536314437324243,7778653961093424558,10739181826534963569,7486556272629660604,12795161661697279215,13603084336739241988,2260171674282085537,13511350879451225923,10296412648280484263,16525715752985650077,9145232558495639585,1291557989292904253,15002068404721212160,7940534770741127520,11858838484722988647,10686196301744485254,14507392900502644886,15981040131782803232,12574282308881908450,15346155508282545482,3455759589570205326,2378840504360604297,11550255775897922997,10230724852695183555,7514829349970477752,5606460618633080741,12366347042034674808,2993913049214957790,6780596302650478283,8461479796175623500,13033591838541269472,11410692015366294155,1514340744898078083,4766833366200861005,18318180113767556099,3381311218708385099,5395421321393324333,11402980708487079135,499105798705413118,18094279440843882237,8289644188287163397,8215559881366200291,15194418471087936120,14879068192015274451,3576816500412119210,15446834935382641478,2589235890671096011,8518158630665044279,15595369395255982121,14197309754841702680,15653504023967682845,782626445299686704,17739668811006311904,573100047808553338,7688412058319631954,10688691763345252999,11361329736319711671,18246860699666689231,113140348223522613,12433435870977038566,14573027597329857896,4068685141790121336,5336085481003500508,10477970973707274212,1119211224704897966,13921487458920469258,5100631567832983819,7345381407233160607,17523395189533725285,17413036329926855333,8485284379966581687,15840958432560231901,2930895191812502467,16857596240968314830,9745718092886384001,173097042980891760],{"siblings":[{"elements":[13786428917509416630,5757676217252619913,17989467378333371899,13456208089422354095]},{"elements":[15667835261289599201,7767145371646568421,17153930599471857093,6165477178966000037]}]}],[[10420250859703979487,15808973073257544062,9191211987603798147,1502402630053211264,7633373867314067756,13443846420745041512,7130622154433892171,5226026923004743883,1677758001440174789,8037095529204803732,1583289580195231399,1819875565553223145,14156908909661588905,17078393705038960810,11441962064795407425,8746217594735848085,11753243598861846957,11952881700699696348,11942977260967829058,4584254661050579018],{"siblings":[{"elements":[15169288892330851793,8524013976134078981,13604747508478252710,1086429854097792411]},{"elements":[13908776069736708650,10556751953500789912,16164279508763320885,7246542079035228993]}]}],[[17121268286931937814,10489678958893448360,17778634326655846215,18007742914479513499,8609175546586630341,11530014067842135074,11787566454981388069,0,15395083959872122239,7057905258523013132,16983196009406552617,8014646145404792143,16709997700698886860,17677304939703331217,4530981228198333862,0],{"siblings":[{"elements":[4186977713997339629,16944979367557821503,10298392252945049695,2101806341458829302]},{"elements":[12933891440736029649,3211003802891024321,14688639299288241241,6716388689767701808]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[5781702706696590508,13662327354992443691,11623780154007817179,17525937845302915125,14632754469829851216,14641957205239721923,3297827777246699824,5855599112181539124,11509392695817028516,8996949770169885038,10774090543656878621,3499628479670952365,7627006512654314397,539092893415736347,6256210000918350979,5472842802798002508,14700778086780838803,13087758673439392943,1708208512772009863,3003264685825566662,10329840800882214185,7138095256847152944,12320893618285114370,3894156426343985292,9523733624994930761,1541471203865384335,12334834230980935807,15817080528129019666,16614671390066004083,11723546597870924135,8912757174819037402,13411053182561685448,11940604134627218175,16950675630847758610,1306856219590989842,10370290202157120503,3150243369686803341,5054772536895410484,1815291437487276072,14409025738972078674,569262158035250131,16998007480498673187,5083141025107949116,8425669119615294399,1739380305956324777,8018079132253803935,11323771401145591335,12400056117937436183,7287954913439733031,11453932141971801132,16321119902882090502,17936555202059765610,10866369363773071123,15242409446563879642,6124483383322197498,10968382131857424396,6456728266921536429,17131591550754311899,2829580033172488861,11581711535064148729,7339550570358136389,15158782635994417990,5419842102578725133,8446083081242526582,5620333138957443434,811060067622728657,8086319354237098028,6073745776678154603,9849951894760546383,10447095073640151752,9278008499129659536,10135794966727588213,1008602330574766061,14350081475584264313,11278314626909270489,4788287555102580014,5130722616702766410,4026363488073442854,14954435304116927614,5272837384722905337,17792142477660725871,15487834554947005823,5815441041119003321,1355354540002215760],{"siblings":[{"elements":[1208046589097712110,12911529971041109502,6586331158960140467,4153938827141931213]},{"elements":[8911856714153345054,5169399561089888125,17434826530307451963,13454008730270505488]}]}],[[17908633197964131120,10833446896781337258,14107534400347601632,15692398815798615203,16394718000700072202,11623780154007817179,8457951660344462595,6405925591629950476,8457951660344462595,11623780154007817179,6405925591629950476,14863877251974413071,13152960419881731302,16236874508117761308,11534713683907356503,16330602987708947662,16447583353198373568,5053830336050336752,15027012189573804943,14175205111769993424,17568330928996386830,10300255896499646750,14930938789048007279,16787348239376031324,17686936026164192297,11623780154007817179,2063250730939387202,1303442687688995178,2063250730939387202,9858665763957315450,6373340082213699235,10471850585181259183,7870574895395380268,8220280640559093627,9970375385076709636,1717917452596104611,15706946858988983712,6384938418532756162,12033382581780759381,8670277140789359525,4602722378076518033,1763204276269464284,11352589434940811628,14784697511974765391,10609761595169690449,6216147190839537745,3962462011387139970,10750437638141258340,17834780726790671363,4849668869041095480,15226332053115941054,11939956460880937610,3142437969896504660,3486179168401019792,13103934613823639066,6095131596503907251,208412187114192321,11394171058979989863,5815413916273580903,3623907892442964251,3979539956959939676,5235336163142590867,12527245088935978343,11283271002507131967,14172444282854212969,7385143710286782106,3950342721923649113,12835759335085702220,2718855140974140855,5021507642444346541,10688802424436663538,7077148146259170841,11274171114868893973,2685231273118269756,4486607623627818077,12892131627951645039,3645705615010886198,7181111104444205187,4797737493482382554,9229130586835399961,1129659743758419669,819313848501647913,16973110393109980382,1907714374046942274,17456819988852929458,6078572685301012473,11391863037954433791,5666624739899743373,17911173595021250711,13348795744879067206,4781433636146609444,3019246495107184524,8579797034572916362,17517259723723092339,6736290906336599358,11508199799156607824,4160781911314537653,9726515855683983027,14643428843182655157,15654292188126069140,9102471577585560360,12286250533734631164,12521150115775169453,8057842197190443293,9178824312466562212,3412953212479635166,4783220750615747949,17943603213439406464,6145052406970943842,2418738359869487987,3823891343877846798,15276864935598745031,2505516288966942921,16665503051117599403,11797468503108195257,7889816780745507802,18043324202687184539,10743821377386608716,15880746428968256569,4032748692430194028,18395605319453249432,14019757408691048224,15425148350230359643,5492264942691945226,8155989222407887684,11997285953714187152,4487071577846987206,6466830184188861061,8295598829083026807,2442950356943731233,8296055414315148627,15400646977188777842,11483269886869137843,18444094336950078656,9861737569869908435],{"siblings":[{"elements":[12738298243662764171,11897152880198277498,1840139371247566854,17669277521837504621]},{"elements":[13801828655127491771,11961602162819288149,8927753245666227588,2594019178789889626]}]}],[[6222485633048270813,15173260673520690980,4682084931884384758,7745278765911428741,9370902653409180202,9686149391496686186,13109775016338454777,17433922211454444903,3485129017531169767,17744941534786782070,16364312583238160344,13003492589706993206,13423648685399073815,16091410726624098681,14848005413558736385,6589500573216832956,3687040887998293432,2431691969569549199,12747367287911412395,742945012112338850],{"siblings":[{"elements":[11551485724518918176,13108305835518631748,14678402908160501569,11499592655445098885]},{"elements":[6732578065499325079,11964727333841346863,13018187331218345654,842498852857902958]}]}],[[9262302052385533540,15555602510345202664,12480878707318638597,3969982107558138150,3030676246595409117,17966747006315669697,3842518216350670698,0,2045451409909665687,1268005254968609684,4970671085582271006,3982783421899148420,12696398681364721710,596182481091488268,13491008550546989837,0],{"siblings":[{"elements":[13695292259704262523,1821309731733612258,14982465474540173766,17606451615149219520]},{"elements":[8679097208221398698,649047352372385038,16394446030474124055,9447460641531625499]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[5625703781286000170,4638184964133009474,1259374735575416839,8120578532916090674,7349452411640066693,12866562932612721664,17400698262681655041,4651106000932071082,17783232043793577400,4510327606801636199,12022257378550870614,15945891714241651745,12372853726486191986,1057815184367517372,14732241336230466170,15279731560328757280,1550449757089549895,4610037844003765070,9041323241583131901,2910081345530937543,985887998829914860,14395940474841304798,356243686924777175,5040936669774799600,5933844305558785772,13901438080456386765,6790865113319118409,2224834593326525024,12054021840616938638,7192809604801586076,16392123786125344566,10718822516171713855,10745136021587360824,3783412156557244020,10584110425643946273,2684884494939838060,10523378789664457666,8174505741967406088,11282548387232391456,8493992124861254031,13039842955796920617,18099340676038884065,9578383844362102628,10422895088755253726,4538251071856808680,14434679698014564110,13056499822836345862,11586149975187856850,12761822573592891290,14680592572379073272,7637900694687653283,656033748851140782,1094099898907430109,14821593700298872962,2535962946958717409,7163785091349350297,7496199419868718127,2877164516860826553,1421492741067673079,7882531635397475925,12799339425572509952,8989723021790017699,356418461784963294,18045785439390766900,17385085224313500287,1634414102768839729,7210499552625990128,14975764991787341192,15054538560924454985,13518518032092313277,9363488744122204230,4107553992381360363,8775452796445734146,10138976953390357438,13602198090448653252,11675802640258204149,3680436994752389964,2582767331279585752,5641907884405591524,14754028930205496365,3237519569899032163,12973789551492734696,4867394074201964810,12431843342953466789],{"siblings":[{"elements":[12179099493414986875,14815457148289069262,1481145606915669981,16125355293346588636]},{"elements":[14087148344668613763,1774479748128902785,17398878651719132826,6925124511054673158]}]}],[[677049243997162876,5801026658968030527,6337981691534081518,13840899640018391163,10889710862018731972,1259374735575416839,8153051275077286703,596018067681434354,8153051275077286703,1259374735575416839,596018067681434354,8749069342758721057,10068546876829861636,6108393388231628920,4085002990025202106,14312741911242750750,17412587132054654250,418199369050583688,6548136058486799536,10016020337904142862,6207137512335076863,3037831165009840837,2517855181647348800,10554309029341727147,18094156753198876468,1259374735575416839,8992500094224447558,8639912778008739705,8992500094224447558,11726975731589715369,11693901714431209804,15690445360047771471,3053255073263758488,18078492935519819885,15009085375684464435,134971799314184346,16727436030954086759,2103169144056474576,17492132019901559052,18115878763045314005,417218395898249414,4836708747260985468,6826532943011287232,13329997244014494287,2371794786043408934,237661260252705319,1111385230005580269,2593333928491147704,5313583532852901545,5471241558107717634,866092619587626091,13324615693955120218,2386931606091383752,15106518093311586904,4534483670850270495,7327909491198322690,17746538898827697528,9354096480151011321,16997622048226773401,13878917838979755554,1989874339878040110,17134859252572942633,2220366312772631037,15906286780133867673,5699880143505609026,9739803766464705831,5587059227762854304,7405776215900693547,5945171555805040132,7755227332693683839,11315841579847578750,1512009488521933580,13503492353808284677,5964909354522269220,12374140833190426129,12162823195224358226,5494393493481387631,12825155299781468448,10504578735681011408,15011764357226997860,6891342878232295286,18198991302663641948,15361129910774169005,16826418559986800481,3399416781311616951,2888616738093789548,8312698405463403603,2742149178341078562,6174059188496280452,13669727549997416883,2284605092528076770,6798316517304862374,3068040756840738319,4833064908752797006,5426671598804467957,5923414819629823831,6653962064365571413,5905235801548433596,8692682878919158971,13439319942610899533,5408990485590107810,10630157121267496594,1933476323726662388,4119746703374060249,9326719816967118434,5694222756103508914,13888638708889534925,2910573630204831332,8853065873321578343,3504133610104094715,17241176078063469389,16656594948898146977,11690470708670304091,2276737408425278690,15436428256657748158,12566351187629730991,13956229173883931642,2880778908841695960,18118729460589614013,968570380877762051,16257423525827641855,668107035372735117,15390981087628125221,2165364176302807882,17875624239633716650,9277908506044343873,13801518231145448248,3362624802560590600,9334820632328177560,15544462202854260489,883790663001025237,9480605704384012979,9987551395714268941,365852336596845316,5175456345534177868],{"siblings":[{"elements":[2119766644219598913,12872862176793126540,10734922943537894461,10582849057485718584]},{"elements":[10312122007154036091,9036066871401853876,3293924851231173998,15291344002345413233]}]}],[[15495771895988105254,6213233179271152625,15338663658234787775,14243658224563835696,16254687843465483466,8859765506876689519,2737100647039425894,13842513756486489568,10995081302596416325,5965519015057020059,3814117648973433793,5896030780300333283,12902788746442726773,12557110075210265855,9840203041533752347,16464957964123360080,2041278285870530587,4483057148522862823,3494527081849590699,5603596316503595262],{"siblings":[{"elements":[16587947183806920464,1022430153445879446,15889760388618366332,4036304809058418745]},{"elements":[5324367363105241154,11972991276670081786,13693754860999015207,12087428420128603708]}]}],[[4834440363527177236,4109699833218925272,9966364282602858517,15318294534974806269,10838016341220442661,4520240807498405605,13629768396347927224,0,16745563841244091192,17535378565203561238,14963104382247017202,2408847771560215182,2773202816691274327,14630572227587787388,2839404114270593350,0],{"siblings":[{"elements":[11844060130317088173,8956701020074811356,17024114729862611268,10451506362626175700]},{"elements":[6169102223816061198,2376585429332273411,17942399893688347877,5015034387210058098]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[13874923908060168686,10300199960485500921,17220223416712727809,11107917826713906228,16080860504613725480,18134296401397245731,8194394929420644964,577158521334961706,17558309524404453886,7462499894769427250,7806442614678325622,1288552523294564736,5928745459609368726,5673755939833451559,1376743317442148286,15198933849581950858,7573015836263811984,11548290280681219346,3048586463663642501,17924736790130764569,16176421463462789125,7400032287983233044,15731792546871809470,7943532610231399071,9191667656456693420,3262984601497837521,11548794947560432383,16935173460323565878,13440064921123574122,13006542764524135817,3200332762477917120,4727549247137829594,10132168364538911488,16818212172973425485,10153429833011927584,6098139687959497779,14527559769504347610,604659360669510816,10236113364972241143,13365343744988800826,16324715386374244920,12941087553157892178,5845088838124668771,11302395006148649007,14757239247984955116,7234202237939122814,14532807582245635211,1889883654052729616,14382821135875337196,10933403972710030353,10477969708791190600,18158356374030649371,848649292582758684,1386127699829388770,14693104195570201077,8557418020926389248,8465103855599324974,7678674795737258990,7968512843367564125,15134518985828235175,14849136868521925153,8200859219989098311,3125736942597523248,16341012296276127126,13668079212165384181,7587065128463574204,15516306994332084122,16992631783574963080,300488920541911522,9606976928846938977,10676817243288232823,13557774887840421349,2050879513960775803,7921519393270082527,12510688718189386154,12160967257524916705,17327790555543273617,5585739159986358700,13436395299212415907,17518943154379265640,45119396072775821,18248002885183339956,17650535637853523767,10046834664009893652],{"siblings":[{"elements":[8321586574402928751,11350831215799910769,1895653507085351149,12216094806571370138]},{"elements":[17728593759504001074,6650774988450794345,17384983616442277651,10830012975394552271]}]}],[[13988798512629653300,76253716425328447,9720388670929796746,1548769052874448837,10678972000872081822,17220223416712727809,9794176158596115729,2026404090053613230,9794176158596115729,17220223416712727809,2026404090053613230,11820580248649728959,13544866904491253671,1508524044049341257,16177277620117888502,9218068684094851193,7460625435618660115,14581023455585331717,4191273768828006679,12831902645852406743,10150234971378278442,6218710481120351195,13068904388938032076,14349008165164964017,7220820517938486827,17220223416712727809,2621060787227244695,9841881305165731522,2621060787227244695,2498234580914276602,1948421200922764046,9443027978162861716,6994897205817072798,6746497094135840902,14564511350746964211,16831736954435400569,2056373989216916187,12734170832192348800,4208322013663975627,2143482162082291677,10961739692902972349,16585828242741371314,12825332321073349918,12855224242854740518,15289131615815431715,16178865082648242669,6126770563456215444,11314967831051162149,3092712508609066402,14135477514485499165,5151390592540432830,11079589504367893985,4554275035609406280,759087744066793013,4716063733036944965,6328687062166235053,17122492330897146813,13403494676768996262,12165046964736682786,18171768242706016850,4499889398292721615,7639546611040194883,8478711167005028192,15548889025473187202,17829909962550759611,14731588264574577805,8938845596279872123,18321151717924116238,396475399073735456,6880860411668657361,17737202206394749472,8246190175691935529,16651904759104102344,16514590622497487494,14031106047687609343,14375777772587941665,18377248783886467451,10851631974779303762,7085234990686355333,8291914806463373328,7994519542791730516,12403577213146922612,1022843831225411504,12558853282718754101,10908306888185908160,896526436403640225,10927710552230741681,16216487141749341667,12216281139627206753,16224215395098127712,14815843269543878753,9810155420256072347,17703231211938946551,1214139682251219756,5521982296862822201,17218944837144903256,587004852284780707,6924610381785949574,727072259197312807,2427909203453611423,18437579200906443397,18265119955007604457,6497984190564580527,9833062871853791402,1710404546114930790,12025024772491311251,3615092381076884992,5312080124122607782,4744611673253563719,617785055946958333,4109679415990489410,17142601226805912522,1636577031909725305,14081177065677875855,2352124489388707931,15165060059756231778,3540697799400848549,15680242045861976924,11593685844168731596,17198012484597520858,12736666725130690089,9237016735828810625,1933058368617464806,11463052868591004800,9197603278783016781,12167701639262605768,18217540706334970371,4734585903824064381,7609066652971090719,16043948255073396199,4330786213873974863,8942602438630819466,850388319733276359,2401619309511840252,4429291596726907249],{"siblings":[{"elements":[3517731961418074301,15643631915143809542,14704079555053427310,8830626570097046551]},{"elements":[13906333527976971193,9910594232029521532,18227550812091777639,16164470906364818327]}]}],[[10698760992492616208,3084888054791991715,10504979538322072085,8672062314095562484,6538563662751432544,15414676715999535405,12668798161168817843,11732351557754657681,12506388983667251260,10615541933867894029,5076084454517619357,9711770352882639553,2132643363314560060,2389496404696519187,13998888976360429267,1523355177437193668,13885000321591115164,11688271530861571248,3492677459371171696,12564933426684726269],{"siblings":[{"elements":[7263551833103530413,6200736473050355321,1039316657339326374,1927184996573515931]},{"elements":[18228550423246657161,9016844207652041195,6018162798259459120,308819794068585281]}]}],[[11401662304208211593,7404650158923732159,12120616987038837908,7311185782560818244,12055258721168794103,12442120451283053691,3194116495516061990,0,14119196468290952072,6842419539661911785,10303680639419966196,9085484145295887451,14482290967145639534,17580357915848393175,12666759616004103852,0],{"siblings":[{"elements":[2513179685838993961,9259287110854884721,17125931745522127625,4315484801522633362]},{"elements":[11946980664630792345,2678972012831459970,8797827072970100761,9151819555952626709]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[3224450578647075915,12165712751178440782,5633103419006680988,11493295134337342176,17326254976767111726,15040497768065427752,17068747695981096728,2070135021958711056,11266547947368074009,17196201500327856258,17880589677582589285,14237004209817874460,11084311560596369096,4266574937343165060,5722366348059158318,14055573689545109074,13034681062097938582,4756471198169320681,5595050181858555126,10368679253103809395,2243893450744688687,17107979679673729713,1291822591423251229,6630010511335148424,1138906968938915755,13806912379760342367,2613038345576034901,17561849880319681322,1601130326224471768,1597531066573998330,2012084127101128161,15191364035229680637,6884259991631809435,17196068475351035883,16413787052602206780,5252023353830006820,825553712506901819,3947181967997444685,7257381028346369124,10981873135685283577,8352848301710745072,14004197552182932012,11245447532264667700,7080123586924873668,3577968953845760945,14110628317847127950,12732951413930286077,9925444275789517227,12967465905890319680,11396479705777394594,5561421826650650980,16245112556402503616,15228394940253802153,6426318629695872151,15977843601468538897,8098285179979927422,1929505969672845131,8112987869196542195,12021566813041088338,1114467968833865888,2611071761440494960,17968880708511351540,13074193547243221494,1059703104997270543,15737059687084314141,14794946844456905042,13227044856766877073,17143217588648521766,5748454528369563133,12685039917954187917,11288157634772235832,6179411481163140015,3874758693212010225,1206384404526474746,4599443118113865083,5584734463373381931,6136611417086052441,14944258110498715822,12474883356910797772,14308946048563388763,13137334755331465236,13963597645627481639,14465254100735638307,3494334304389204700],{"siblings":[{"elements":[14558427021271812428,2889616159627138166,3028504079954276941,5281229060922485517]},{"elements":[14116771184823831436,6357576774383995688,13501931163075412498,1114208703580065252]}]}],[[13448280129321627798,14184832580226620071,4264760999753648961,8684267825863703316,11540096098169847035,5633103419006680988,17929086713287469260,11022438742042731974,17929086713287469260,5633103419006680988,11022438742042731974,10504781385915616913,10233299991856859622,8096041051817582124,616647339418745235,17702256353323484405,3401807163073704597,2858363794882528563,6468473530378188213,9432439911715600556,15319531969909672148,3978008339442677304,4675777195118948063,8570244683106774459,13585257444459381479,5633103419006680988,16665733503003146045,11804246878047943203,16665733503003146045,4285274222770811137,11760308604722249425,10207862365438598523,12212890942095567435,9993158262681182159,736954933851108145,9672950575386075303,7952857189275572838,18283257144281847970,3593526112719002767,427775632172508153,7754042250414149527,9694557622302150389,7099829167389618045,15777519981516555839,17493605598880637306,6761961629305837681,15352357082232361981,10587216098471322447,1186407845470370944,4963333110095360289,5183020716315664450,5703057399647066411,1654005320245959858,3947216947333041453,6783974214217163215,1689013489307070514,13979456232858178304,3935461540017849252,526852840254096676,3037366594606732801,12264182439110100477,4891678981289992825,10683976087407861194,14381414872760763757,13023867804880331183,9291318119038699956,11309267658680205996,12096665809323843806,13800879323908434913,7174327047092873001,12306753553916010947,14232879251003089683,18164420531977468492,10953775806891900286,16259877793389096518,9625864982490925863,8534134395704118094,13051166443626080651,3427308511623505181,4727337347415394589,3453396440679893252,1684138076566235632,2352317457543417717,12214643506510543508,2611085211896867136,17856202544361752314,7277800217698677022,7038087010169898749,10869326517679843992,12137663335825974799,486491896416270871,4876279596041153562,18185680314122301023,15068514540196733550,11699983284397763417,5313633926205060679,18080277924750706853,6104594111512281074,14622521888511112461,15159579898446946314,6223059643385745080,626293859165316592,11067506214141118923,14049412274224744161,4343276081834489311,12709267438770432401,11738923289356649396,9027046029338967227,869807388680322678,13916569635788552983,8534163457168825665,8348511056798340915,15347654705785397820,17180257060609330311,10358196993038095993,16240222817772121908,7429053970656559990,9003081370840259316,11173882529172024683,7448031355626881647,10524525929540040437,11781343601179760136,6579149689263849340,9735029773692866132,14449081018226222344,9421548752611836587,12647656205192859339,9067851236147233742,5496246895245525662,3746197693689619493,18049022466208770944,15526349738630038124,790129979945703861,1590583770950262649,5500037066238389846],{"siblings":[{"elements":[6721740766564925244,1411408032836159396,13022652891543324015,2237109728225375781]},{"elements":[10383452154226125760,245290251193527986,17653238234088421422,10435157782398094396]}]}],[[7163828245400992899,6208789802991690329,1520393498095234823,17850125557131604925,1566108637863292880,17723991757094781147,15673272288241213978,14517555794516862246,660547752629125656,5196605275958006061,6716167319968777602,215845010327148844,7049858174620698506,15421018691863710164,4096225175798213350,6061796182218412267,2874778639280213280,15165039131876660989,2871311492653310124,6703544107971367030],{"siblings":[{"elements":[15844430972945815991,4510052531366082237,1988094269381573260,15027494130045863020]},{"elements":[18113916164610076962,9934973629108858737,8628759266336919655,8869508532199145062]}]}],[[13477491776046384791,2942914045641199971,15477477595605623277,3046687732765839070,11549530113843620414,6209609535784426207,9803824768471519322,0,16727626258957889097,5572263020212084918,3746522111553263957,5037592574477744612,16516030630447150646,499657902916821434,7878673128992292098,0],{"siblings":[{"elements":[397215759882307479,6720438653306664997,17757036026779907769,13549957236665085332]},{"elements":[11693229686577791316,70134777027805635,3064238334944269458,1614747907148339930]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[5779238018441521607,1633659970024625107,15132631210249071149,9192233637020066511,16987576514335488814,14537832941490526695,8017871923137398435,14314804699542886826,10901130489318013461,15285483815663082328,2430396967900556168,16276049452254364183,15227487508322773600,9872687341452455059,6211993994226713932,4889758649110072149,14915335055951661270,14174469351279425813,15222693756012869232,2507712364049933061,6240539615301533451,14664011484904827783,8048592190500641310,16905018051986877068,4779431974339347199,11903890813464622515,10928808714970001223,6111390108406334068,4234631642081657820,7235279605367545286,8799657935434031961,8286115099013562073,11454656292809441737,13520163168352385625,6456743497411690816,9372245902640639235,16981095607738972247,14088949113824064986,7376118977218819576,16181391623796515936,4306160775041015637,14684943054646970993,1187357664384853816,2678278548320182310,8915342001311324677,6820357556106716762,10047165498188026782,11079858360482382602,7513024627572737117,13416502641490652835,13349862424590596035,2534975422370036520,16303174984092936300,5007697021193232369,11025232868888114458,17497190273059442911,18378965578806711459,14650158696056524998,506378590434313023,7517599558713930394,3284540675228517227,15536832927518804372,16776631120837587358,8840840584683410056,9422443583642356960,4619350616359800110,11449017599009673815,13102563998095575306,7578815223018683414,4567644161714887189,3442591794496191525,7557521075610042401,8245698025078736508,9547655045181054115,1521555487622075717,12458682305175417258,4564571732197379275,10911026568935082680,14535719776674318142,8814423602300100352,6881176102900919739,14757102652154963074,2882892600394869839,13505407566117981947],{"siblings":[{"elements":[12028397558684416584,7195669060619656539,4877302621055009322,13144368516691639632]},{"elements":[3831638896680269617,11622239582132795001,17114360658120078056,13946956494708067730]}]}],[[3343692549667880505,16198634626183854616,17828341602867283893,17343923561744772965,7239721626809504850,15132631210249071149,3836379348225604529,11076100975035109379,3836379348225604529,15132631210249071149,11076100975035109379,14912480323260713908,14489809805973717524,4880220434856361330,13947179735898410800,13229685593822343426,15911368050061407645,6084143457799909927,3192353477317781124,4504565059227164154,4834107503583495614,6021179220503470448,17815725382551011814,353005752735087093,4007573482727368553,15132631210249071149,11549410711608607519,15556984194335976072,11549410711608607519,2706309929532775409,12268361366747451445,12099257585775883867,140131054861831523,8903974312821521182,10043570134653716969,18211956115240107150,2292372264651693774,14102742245736635927,16852559829722837042,16825505233759180266,8908756795421598266,16103162896097380358,8926793518491301862,12202061379809903409,12327521766857249950,2050769331733499182,17325107096621126508,6803231158122982594,6784867343172638177,18300290432345207817,10636474538463621607,4386574529135542745,1250494435896400910,123003052125317854,5448854097786247668,12602965604509595567,5743240162770844343,13132869005104318057,7119134903727636269,10562651625673869862,17670943082149306501,5165082877823307327,10034586095009347150,18403871672691024829,8521489955487896999,12635031104158178731,18028376459515519782,11908702605864831038,304061409946482865,15736258225763026909,4040701803252043684,17707666159320046017,14575644205272956477,3502139250412121130,6633713801200532995,7601434306551380489,13748955194333374731,17475212960816482520,7844896550427291036,17656717192009621493,12201019913972285654,1522224513466690172,15190450450888432188,860651136548303685,5110376993438385147,17377095422621159214,6464894716463618461,14702226779224557781,3702730735062817256,4998351497105793254,16054975751433575430,5880669708305179454,13997899952030131900,7728388812875819361,6361030057295611778,16190373931251736680,4223270819633636417,9714918360415963083,10221734355966291900,5199806404189904673,16625684062012507466,1746105439999395602,13909194948784929858,11627413399083340388,6820265889710087077,3485410948531934651,9053644199614520267,11848782656068851405,338159767400977261,9214092049969436447,4130836369973881198,16497171921411889070,2322484766562628158,11144784294901467454,17160963806669865311,18045676676463249733,10232219943606011622,129054393174406105,5131068677522791732,16448039553334225819,9137703767322409787,14571149809596542628,12024475215792790589,3373968061732934391,1170074000405821622,7745939968264153742,13365774650994659942,15268151864672701217,13358174864854562580,776628099070901061,7076599693818849408,9228233082293520279,247806449564806791,15141646506993617642,3335398960777298349],{"siblings":[{"elements":[16694149547239299418,11916098023714376913,6683167713856718248,12883762631643920858]},{"elements":[16680612008794498936,8640953519412144738,10181843617211023742,8267313235995818586]}]}],[[2407409934291764350,9258994182503114094,13139096448477754621,10231532414294393307,16869825209268617560,4033977720048296461,11970062223168088613,5114324180131030933,4035241937297597768,18384282130646381560,3119460359662332373,10263420363880015098,8264307291697762303,7684985082558235520,4271006438160629142,3582960565310600054,13811906650129963757,15000759657348015204,1423919909923382610,9186062269551114500],{"siblings":[{"elements":[13406981661575413696,5172026295240874364,6949218394557698042,5665430393736599705]},{"elements":[15038980373507792589,13371167328767946914,13237656934183842649,3552342384838824807]}]}],[[718450441488193160,3384984396605666432,16112609702389701215,11191055637634313168,13625870787139354873,11265718301513146911,5660733189084386917,18446744069414584321,1517354566020000005,5872976568146552498,4737258158776434239,15542363834192310254,10995560238825993108,535712946360398860,11220538357659625724,18446744069414584321],{"siblings":[{"elements":[4606284367567892898,4098215502233871532,10640429447122513029,17948520172198090941]},{"elements":[2266699753608788951,14951315295450771117,11343886449762297073,17586657642109796121]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[17565631475122486162,13112428807682437438,814657839979919418,10687100073143457592,7287583176578477569,9119957951894366709,17912065094023049988,12001559769958506954,1247349890501030371,5087308417645836219,7398662816764770087,16524655585167564581,11496023076072991062,2882936815197941317,18421628275382862085,13615285961234747104,1217449957276156110,10461960450316473632,561574932948938915,5261392988226429767,36963788263559132,9164850294867114694,10737997989809144125,4306952301124110220,14963079343147138648,16286627233757869662,11831708559580747688,10815796126821418460,510676066900126240,15541305163140882263,18393128724329928869,14157594831905582813,4329327111404598849,15357188344968816401,396764937644349995,13482615543640014731,9197483402030863726,16014565579788705443,11848667743940537624,16170822526494470097,2404997186846373889,7957316412688043679,3771898163941812242,14195364064937291513,567351891378815016,13136595019898101044,17422897611144875752,11932823705699681826,15599574133270197983,15479028145816002055,13608358995984024845,2916177584086613713,7687033070139185553,13404022303248111561,4486202424414820354,10426377083832067254,9822331989600191753,11935893039680802137,16920228551281010811,1499676085202553257,8480186318221636715,10285648472756480424,5738310774792282369,3607187035486427462,14168641485863246652,14098418211595676526,16413094492990064503,9333103647472289713,3112143557161723528,526758665457109891,5594545399592762047,14434557311662235219,1325332632391540723,10368959042329114463,3273821888404289159,14386742940437405981,9283670432780772711,12361895721614603310,10986471371611471679,2347319240314755218,16019526439705881998,4646599238042603787,1916663449684460034,10224024849529566382],{"siblings":[{"elements":[3586560659949534267,194943118788111503,1282749807679583513,8381895631914176563]},{"elements":[3560583152441324605,12581631521285452247,3424922011369377233,1328356594502091179]}]}],[[4869952380941436289,4133897440024983458,3163655068312267756,3391064538085196635,12063209440740734451,814657839979919418,7256049382203397585,872514753529547715,7256049382203397585,814657839979919418,872514753529547715,8128564135732945300,13873611438731106303,426301338526984141,5293607343814169367,8712904732064140085,3392841556817364531,15654007593825456153,487026586958272624,4222524730672883551,5998765422299476649,17043748020228681736,13965604432429099335,9954565916608868212,17129643024995438315,814657839979919418,7683977844843347009,6366876800424201003,7683977844843347009,5450742817493812778,7138313969662793730,5378221410097012641,13051817110786210059,7204043207789218884,12882432216770618818,16198952365311726338,653656369876723293,13446473516824586546,17443026962410562685,1200316562358463377,2917042644177294500,5280278135943318553,10195175441490280339,18003769932575463342,3028949896307725793,5045631897118975777,14072115036524919573,9156038560056891854,14336161477959252840,8169358867037293193,5510565667084078122,8532400708062928410,15819668646499314130,5711072477230997758,5617694810049100024,5289092139206170560,17948211910083854718,15702610557065776329,17820039369890645112,10305536314437324243,7778653961093424558,10739181826534963569,7486556272629660604,12795161661697279215,13603084336739241988,2260171674282085537,13511350879451225923,10296412648280484263,16525715752985650077,9145232558495639585,1291557989292904253,15002068404721212160,7940534770741127520,11858838484722988647,10686196301744485254,14507392900502644886,15981040131782803232,12574282308881908450,15346155508282545482,3455759589570205326,2378840504360604297,11550255775897922997,10230724852695183555,7514829349970477752,5606460618633080741,12366347042034674808,2993913049214957790,6780596302650478283,8461479796175623500,13033591838541269472,11410692015366294155,1514340744898078083,4766833366200861005,18318180113767556099,3381311218708385099,5395421321393324333,11402980708487079135,499105798705413118,18094279440843882237,8289644188287163397,8215559881366200291,15194418471087936120,14879068192015274451,3576816500412119210,15446834935382641478,2589235890671096011,8518158630665044279,15595369395255982121,14197309754841702680,15653504023967682845,782626445299686704,17739668811006311904,573100047808553338,7688412058319631954,10688691763345252999,11361329736319711671,18246860699666689231,113140348223522613,12433435870977038566,14573027597329857896,4068685141790121336,5336085481003500508,10477970973707274212,1119211224704897966,13921487458920469258,5100631567832983819,7345381407233160607,17523395189533725285,17413036329926855333,8485284379966581687,15840958432560231901,2930895191812502467,16857596240968314830,9745718092886384001,173097042980891760],{"siblings":[{"elements":[13786428917509416630,5757676217252619913,17989467378333371899,13456208089422354095]},{"elements":[15667835261289599201,7767145371646568421,17153930599471857093,6165477178966000037]}]}],[[10420250859703979487,15808973073257544062,9191211987603798147,1502402630053211264,7633373867314067756,13443846420745041512,7130622154433892171,5226026923004743883,1677758001440174789,8037095529204803732,1583289580195231399,1819875565553223145,14156908909661588905,17078393705038960810,11441962064795407425,8746217594735848085,11753243598861846957,11952881700699696348,11942977260967829058,4584254661050579018],{"siblings":[{"elements":[15169288892330851793,8524013976134078981,13604747508478252710,1086429854097792411]},{"elements":[13908776069736708650,10556751953500789912,16164279508763320885,7246542079035228993]}]}],[[17121268286931937814,10489678958893448360,17778634326655846215,18007742914479513499,8609175546586630341,11530014067842135074,11787566454981388069,0,15395083959872122239,7057905258523013132,16983196009406552617,8014646145404792143,16709997700698886860,17677304939703331217,4530981228198333862,0],{"siblings":[{"elements":[4186977713997339629,16944979367557821503,10298392252945049695,2101806341458829302]},{"elements":[12933891440736029649,3211003802891024321,14688639299288241241,6716388689767701808]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[5476891376197235655,7044817592391507668,13974119857005811796,13974119857005931896,8542463872071985231,6501044494244072249,17280822819241372308,10053665788850614925,17448962655787859727,12336908644746128088,9143020989718619471,4743203533871311592,11333677962792045232,13893424625045704083,767953711050007881,3472634815196335700,2902869279664059623,4226328250494368377,2418764480316296736,1501861828709332135,568975573703484830,8801800562606935721,9514012360554107037,6115575755227527047,1051291325387837076,11601191339553618576,6074519755155606439,18335853116697904652,10165784017796992404,18323605521630460587,11994117291089446449,10451983568470879546,10434065730445324857,17938995950366848123,2508123549594798968,7640613494747113386,1513372534219473739,16828618817162538109,8366075947957833522,9049395889722424712,18045617055697920423,7144267989314336719,16890803523690545074,15781761522575987695,14571475745262949915,16362201857573628110,8875795807742385116,2397097127390260361,11086508766290873299,12528536250631072701,4796334215621772761,46053206664818609,55855699141615696,12822704619433111871,5230152393175782857,18340028855156558604,4982325153117195849,18144683475374954843,13809928813137301377,2031187538284433977,9072535653736593441,12622276487432996162,8839987604652581340,6940845095475718033,16000102712351353061,16532084347876329880,11054558944075828190,7559179555829355370,10125459834434143139,14588025940297167409,15578052907891230592,16440693311745855827,16867123057370125982,13930038904617907751,11354803143482232725,16519077024003978008,7359228380659898187,18264912276873600757,6663799581497061960,14594092587359944947,7904080859246436117,10453773933582997036,10399628085621807446,12434936933788275446],{"siblings":[{"elements":[4295791253590603064,17929487105087721335,2967055119325542947,16462733433019204129]},{"elements":[10866503738528739597,488999660478424691,4680620550068726076,4667412765909904450]}]}],[[16428349751610191944,3347881533532107938,9468737643308213580,9194454772744592800,12741552808537566884,13974119857005811796,10045247018444647662,4340055757567630225,10045247018444647662,13974119857005811796,4340055757567630225,14385302776012277887,15202997972538187494,12414035098264397106,6391149555208523887,15712637695103593820,16554806991031947314,15363932162293809841,16307837251216160766,6820178166180814956,17457607970083055920,16464291619833470086,13749084992526879831,9636357227791350456,14663917240177601678,13974119857005811796,14942531704342925469,11159704875105942826,14942531704342925469,13714252095155089725,11813664378122801899,12391017937545841995,3476544466855521376,4541244746607206727,8878509548685829859,18213591479499389571,11906513154856102562,2661560206398423305,2184127630907116305,1470388346871513421,4220268753331067933,10121067713976682072,14528380587817187057,16760633056567525176,16239739171151052007,13336769264731776731,6597861866224831980,1283028978560633880,2343950577965466019,14930493770682231745,96390668912837594,9674660986690554615,3312989674635627754,2217725399410485058,17217178624402525406,1270496295808607583,12290224265072685290,14803910390123085278,10223203367692759106,11308771395676367576,1041038867464915568,813178057614178183,18268779348647234996,13701728595724581165,4019666490957492362,1234706480593541580,5634977730404901600,9636573169392748071,16107612655947242065,17723319666782197456,9218105179571351311,7480356268302484853,3953131694299149827,17397482431922805387,5468481439749014787,3320365679890891465,15526222117613994762,15333645379253332801,18074859146242913422,956580594101134221,12459586433819507902,6251016581514000324,9061286157704019153,8285114808851066511,18196592430429844596,17763244861005544579,16619520955079787148,15533162835159325494,2463578269926271449,16128653967389374961,9702427179903687789,2069753350137081705,9618213279997531696,9260163586230802185,5458992430299660279,14734687379245443572,142881319041189151,3921278602338897690,1751283496631235262,13106448210476421032,17623768063489438275,16612612992753432848,6545797981497976720,9814538168567253074,8995293668772951989,7142564581237122052,3547619286584280037,11256682631544360243,456800540290985258,7670894929460168942,13668116004985323929,3029202510962705921,12132687131942077218,4898917753423723492,16116725979714905071,6407348810037865596,17895095959158463658,7249739482952358425,14259627781104667467,11093952195928251986,1607619966941010464,10905336922186469824,1872294433562059216,17731987557902592659,5781022924291843377,8720737205215412068,17707746869708051401,6069659458516403762,5534361090266582195,9462663519886507369,15792770371188132287,9616736522457323016,5331923174174154450,16132487996478428137,10413918624073677918],{"siblings":[{"elements":[18107004279715648445,9022046471554739761,10628535777396098425,3646342173473337268]},{"elements":[11198870833902175989,2627056551053426442,12173347194088488972,13515738457566135127]}]}],[[10389994304159048865,6649191615891136629,11403608210651883819,4519118413793949304,2185698229693972676,17179409027569724423,9574052691782549116,14769559996847512451,16314679765100333798,7508244338581389907,12607987506138791424,22145534889104171,13843820450570263784,2678823418594540255,1323887373182876776,784024881853698007,15639778007162745068,12896850576571956744,3917733862452052922,1323379203368626624],{"siblings":[{"elements":[8321799032949870492,9041736777206633545,5275857463905943750,11845804001535745851]},{"elements":[6175371435905559461,1090507109993953169,13482089804287186601,14807728910252899539]}]}],[[4427670386441416504,17196830264177892837,63378352210450339,4474850086631122106,5285776790310024011,7442855528783351039,14473813801611186907,0,5587192636016021819,11796884131600238570,11519044807326916887,16293454228443205923,10554000137989328552,6710814315668780462,2535376180897248814,0],{"siblings":[{"elements":[13416860306928031322,13872475067050356340,9029853368848041601,11813207410514222083]},{"elements":[13286374031914984217,175261073292850250,12104851526530982961,1649197002724185016]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[5756954102670259035,15207029631270582200,8620853111407510804,5954306324953404035,3417369321338957957,14769711171700067967,14155220019972620822,4729864867204656869,1367124655399095907,794474731491043177,13549883238830580978,7154687264531141545,16040343449311141534,7519191160292482914,11659862054312770255,16037152217192111346,8213236337446440089,5480175981048843392,16683571355106549973,13543272974080163234,2528876297544953808,1752146986090353874,2467158844090442488,2784818123089147316,2853191568035851399,1047265776414426286,2243538379070846647,8626960408963181514,14880827053630741677,5727935730654045030,286379880044177715,16085096037435206952,5361622991241818307,9949357586496797885,5068561417731073838,11280248597206907899,15876185589640483370,18320739356339610511,13211622228097217499,4056587993176082271,7748353316269364184,11057333087035815647,11151914337748767300,18433647034287595504,9478290392842410216,3792026085406530528,9520680214228437529,5447506798929019025,12539795626444460823,10409804839689727475,3637292357808533410,722279013634395436,2962977808548824151,17049950107688496841,7829006265190333577,197969211212515662,12113251601111822966,3605118529118306942,211835988529495278,14155474385885496437,11848440872102051470,4366619857614921193,10556118585124385811,8391424649412625955,3227178879736556488,6503646705941890065,17861115577426059478,3966059438988839423,823981093346712868,9310258241739710499,14305284080474844674,3988773194277944987,4576989698097073721,14922970355983295368,17596364039560640893,3184267435176651188,13539543829396333126,14743205971784318873,1932903128429215796,17285289794946637186,9174920969369735131,3484178894351822797,13674151874602640207,3637683578065872134],{"siblings":[{"elements":[3661189000515272351,9265824685834336126,14091976876429780110,5616830878271017239]},{"elements":[15569594249511601125,956031005415651622,9670184325097649857,16069782850068809130]}]}],[[6044686351164866592,3269875303912828380,10971909491908020247,4104331182652050903,17633541252553702291,8620853111407510804,5960367447509974877,5147164630649092847,5960367447509974877,8620853111407510804,5147164630649092847,11107532078159067724,10772244505823667663,9198069521813365947,8458507525369628506,10832303736589025131,12518789667262658802,2425329303758391973,10077337605506852249,8506661476829334486,16585683042390534106,10595238455670002882,16886427341380115898,14785990991151309020,8915484717552643974,8620853111407510804,6723437356946220224,15638922074498864198,6723437356946220224,11699093173399831838,14069957904027684361,9229920804021072487,11542153228808062460,18280434867224841414,7302728346131101409,14964670768636554449,4054807757179607380,8801734000681300866,16524832535382886558,13087301078506545656,13292724990562942227,12436702882757014993,5073058539441485438,17936727871947959402,3169166962451356627,6385419142196948937,9855382319286103122,354470657976706188,10353295416272545980,14545834025245092863,4942784179361594051,16334626210695207770,2557017337498841106,9082645367545235816,3832349830839217990,12125913926347782952,653498677921946341,10356519767002417753,13174504632330535833,4789112843134691964,6500305353143094666,12722642965838128011,17819586841383485565,9338302027972475127,7330929394596684321,12444694042977211406,16835706677548563364,17889779048726972060,14467492870091445723,16529388904732112313,17106909407149874316,17144224833964718523,12452395697593419504,8106058970524168458,11815356019942539973,6330504800509976987,13137426907733633551,12844423662641286152,3662903663664052933,13357824166833108824,12752827758354941375,17261057291867951170,4398055965187785965,16221458524274655615,13387491434948380282,11116847357082284059,10564573654274645537,7753405841242812752,6314227317687465416,6741047059828457689,9704074621253918326,6750563444200691503,14974754359508154506,14319671947988003587,10083229324532465762,6834589448799755128,9685310725359694510,13104940428932620915,6339856080991409459,11162242812977481768,4684329802388867596,8511058454237612454,2265541267643867653,11451522802928270890,3070364959402701028,7695390214545256286,6393082986740824403,15060416527451191855,8953332250306296747,3770983766611500479,12377418950624369773,14200127229013268335,3585588327654699149,2910299107614913233,9125876271478117416,5491205323596432104,12458990519426084739,8910313484740722617,15169409468573320740,13330750084292481843,6641252768517887484,12607694605057617088,11717150518477465839,1409029263725692236,1474928178123648326,15722832864670665663,8557233438496535493,18351243950540875533,10387194066645547017,15577555733204774650,729112113977708207,7066174371615559521,9281126879726899847,2800822303765590735,7158215171732762527],{"siblings":[{"elements":[8715682575858527486,11155298795259675507,9843552670646386422,5306928003833288720]},{"elements":[1040533151601578923,15816118616292883445,7353107187080723398,5335048287076543677]}]}],[[3817891809809093638,12731200151540216747,13204517316349357946,7466922279633025394,11511834419055439492,13590249452715142137,17732660675339224486,4166451639178290456,3203680071566183896,9032091634452285657,12503999043638216793,12895512616608208462,9102120496875073553,18288158217194315891,11068059198304829036,7467745845637448473,17286434185604772205,18009808364771908546,1252812341548438628,18159403296672361502],{"siblings":[{"elements":[2571458109090384015,13541329269842715959,10666313766000137444,9526447513187253543]},{"elements":[14877691943474638997,17890686887798413768,13957332300951484465,4897853218909943833]}]}],[[12459445257765241200,17836212554463771331,15944503734392303878,8489504810567863061,15122645481767142856,17909688098392739595,61146688013032556,0,10135343558422228809,751070180850321642,2483644175354532006,10528313770598018966,8998461584776042365,9831743379717941884,17100392099098020283,0],{"siblings":[{"elements":[15428115294112016482,5567812574791378435,15488486025155798844,1460596497361948774]},{"elements":[9656940605791601413,7967601106598428415,9244440830089191498,13951992733771590718]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[1378578396624103287,4469550363019109345,15413597128689811362,1805144975167355224,6452842945118347818,17061466042700525835,9908442364377620888,15557126284828876835,6899480873189727568,12971330971533533346,728087363132436065,3204431996140256238,13511333333486447248,6061673480195229898,14143816356008065891,1818432731357414224,3931833595148317400,3113204864077687682,5014242697766007980,17498814194817113368,17311377860557701340,8282734130308373953,5890521087855310378,6106682907563760123,4103854807982442127,1254540041483963115,12935174769028627692,15430869945408104449,12896469002554472325,5331356288418194792,11484351612989676249,8456647540373465481,12372119994208242190,16992808387778761139,14492583082823698275,12992268080647866781,6202154336508741380,13981801581159561008,6132666943793528869,991440255466054370,4850097939918506333,15678134098977100309,4031564655424526311,818068419515164961,5189645943730998982,11842070038265827069,13692845301045488507,8827403897965133335,8787664043284139107,6377550908376354008,4423636113428645285,17734567326342336827,14552896584348117004,1702153397520986778,14272468428791344710,5610838339090108759,3371431548606222630,10139868107266119037,12592960625135564613,5499681482704576029,15133245799952602032,14567897988115088438,1484931179986933694,15313230342259256114,13284093008880950783,2496313854275467022,5098157751613025341,2705121421207377961,686818305346538974,16904485625070999818,10485443601004438918,1742619884980803369,7290528959142072005,4833033083385056818,14191175330164828274,15066184151212832423,17046653095088947697,17553341742847539104,1225471260958366274,595291968017247255,14785935603072475232,13108696271497115881,3085093188467307699,16176612129916464983],{"siblings":[{"elements":[8666308870474411867,15887861559861194766,12876980660469857901,2656114809566731166]},{"elements":[16360478778702248201,14213185250312606651,9086499200688171136,6646506645725327276]}]}],[[14151110958039928206,7394957063411508535,12242808867165814310,13976352360198370829,9730405472028585194,15413597128689811362,1579060068004460396,11309465540033045590,1579060068004460396,15413597128689811362,11309465540033045590,12888525608037505986,16547326051220291570,4274927800655763002,3121283270468370288,577542687887903379,5696365283852088763,11169520791487999889,8912379173499424821,17330094462244822106,16769704904010981477,9411855531344263895,1157536920058867649,15381797910990233828,193028617278888920,15413597128689811362,5944275695934856175,6137304313213745095,5944275695934856175,8996271031570341611,6570442543066273298,7611819675994313932,10534295743546521943,1331487254028825072,10196791628412025141,15441860425725544654,8052969032706882455,5867667407760738914,6427717164929771354,11646045603940553125,1651660475798712954,14453110603546168042,6702480046212256465,2515167476706338212,8408790910518680052,13726532425353449138,2298298534390186647,10313968174462873000,10493388062110618682,12074769082133067769,7381482354570955863,1265223135347065882,8099429127087925102,1156976121577905901,16859850340394106066,10415273072391660724,14182129822556818895,16915057393051886321,3101462726258575580,4823016207540037510,8339251899462823863,15124635515634125381,17139119355117614465,16187662320977464984,988049424955803048,11970898299076925761,3049146126377734131,6189179014534844601,2992319029155877019,3287539059167030767,1456751749121236081,15255993500612140682,3562091901483409100,6382968262506972813,10118732147714434815,6565331561510176204,10057381849171086287,15913827937953698835,15024483420572498193,16813605096465161202,9331266366565408692,1101315823369584759,3197107650307163365,15969829189172044313,14099241623905315562,10961752644378287391,2543612655353394500,2299087276369389335,7900896679024274007,14475105730052509059,1134482989356651075,1199508703836224381,12865960276769595356,15804622854916570365,17142965598948477851,8781606262333289968,13532386421161973677,8888748173017908989,9393364460999692375,16307858586919388167,10490958219829679062,11746522735730466271,16837186399574943561,9926120943598710092,5650950788243384049,13299009035329247894,4898609385965295940,17921951389996105451,15976218508721314503,16519367972819967643,356701787644699508,3823992709874492751,13655979623604649909,814691128406149016,2589815402137204559,8017411099053767081,6670506440608384006,16625892828742160013,6980196619490882343,17384384046071181817,2023944507412081016,15079293339612944111,11492091039257939737,1877402569728882265,11896797140477366943,1111118824048114488,17142084384381596014,7020557176362306018,1188383490488442084,4368649678832425827,18332984063091202717,13658935803422495926,18386018023850975407,17379077957778142364,14643855309430344807],{"siblings":[{"elements":[15192652526827466958,15586316092843326388,9191814238353642666,14473217775880180809]},{"elements":[8871695588031639576,5579372016518937853,14746829833672601330,4076645109767800603]}]}],[[7355000535335121214,1080458130730343982,9322672680869669119,2804094819013685559,638238206202982689,7634273305301634679,10877928775075107510,5275908199605404742,3347652827715974365,7911249883678444398,5652996455886374043,4615866963040228961,10622754265873815802,1229515617644229601,2903281994878346213,1325667513318877293,12277076855538248724,16450678484623819131,17038516729113727965,14247979878878607921],{"siblings":[{"elements":[7614398799053524303,2764583842848826589,33413866442510526,17875148176744893971]},{"elements":[8455293883966511124,11494785280680832629,7357921799441767283,11578973368757805148]}]}],[[6631823643266079158,8366122243642504746,8406087109249457640,15336788024942948296,12720239164087346734,8137611673240142641,6774618138215374272,0,3139480029147699076,9383563083341285074,8973534838271256955,6716838165676479076,5383259058826815169,2089258522450198822,2463958557597904869,0],{"siblings":[{"elements":[12544435644837708488,16862965110390239833,652581182079729656,2146097000557799403]},{"elements":[16027837574004822952,14738606754892979695,3791444106569094598,12930330184609239516]}]}]]},"steps":[]}],"final_poly":{"coeffs":[[16576266501209756636,16319405776410563724],[12786897888443529365,1909450325805577515],[5671302967046029644,6221607960321962717],[17854653477383562898,2004436935791854642],[18156246526399554667,15274299381540008568],[6715512979966297413,9635789999777282826],[196634509567812852,7260044628256898978],[0,0]]},"pow_witness":9223372034707294072}},"public_inputs":[0,1,3736710860384812976]} \ No newline at end of file diff --git a/plonky2_verifier/data/fibonacci/verifier_only_circuit_data.json b/plonky2_verifier/data/fibonacci/verifier_only_circuit_data.json index f0524f3..6ef839a 100644 --- a/plonky2_verifier/data/fibonacci/verifier_only_circuit_data.json +++ b/plonky2_verifier/data/fibonacci/verifier_only_circuit_data.json @@ -1 +1 @@ -{"constants_sigmas_cap":[{"elements":[2913805118787558759,15605217703384212484,9293436862297178555,10529947991695419448]},{"elements":[1937331278189251620,17537260089483183877,10458485670158100707,4116443229550247591]},{"elements":[8142760542024755709,3845244796524514577,16191049345326767258,7348433903875207214]},{"elements":[18274477257392359471,9341197367296335592,14314312946600883535,17431979896521737468]},{"elements":[12713790163422286570,9838614764658999419,3024549327814176904,6544549858431318793]},{"elements":[17461063081201329467,1929790214678747830,14738190695567211833,4502436664569676311]},{"elements":[17446087997043032816,17518692693064701003,4915378766449394412,10675325761198739044]},{"elements":[11349186227918507635,7105572536043210156,13296927306801261929,6138189381388819111]},{"elements":[17427080957162886576,4310228111529328877,16109317445338921222,11923676504992192083]},{"elements":[11292141569337462929,7213981967192374125,4837353949249389782,13157524938508720907]},{"elements":[17221477633935993097,7905315334616496868,2950048088611741910,16851660641249290423]},{"elements":[1918571898367258879,14473285549490778842,16456257732802770188,16611801325745795527]},{"elements":[7880989808200689690,16935107633380717766,8956194191973051375,1103945341495739535]},{"elements":[4501339912027744074,12142665268233044767,9270990890291324944,45374981263348191]},{"elements":[13657768796246999470,2899654677720502418,7228867285602519410,3363587770111123806]},{"elements":[18227101298896629706,12986849723013952028,16815808278639394978,16460725848109409638]}]} \ No newline at end of file +{"constants_sigmas_cap":[{"elements":[2913805118787558759,15605217703384212484,9293436862297178555,10529947991695419448]},{"elements":[1937331278189251620,17537260089483183877,10458485670158100707,4116443229550247591]},{"elements":[8142760542024755709,3845244796524514577,16191049345326767258,7348433903875207214]},{"elements":[18274477257392359471,9341197367296335592,14314312946600883535,17431979896521737468]},{"elements":[12713790163422286570,9838614764658999419,3024549327814176904,6544549858431318793]},{"elements":[17461063081201329467,1929790214678747830,14738190695567211833,4502436664569676311]},{"elements":[17446087997043032816,17518692693064701003,4915378766449394412,10675325761198739044]},{"elements":[11349186227918507635,7105572536043210156,13296927306801261929,6138189381388819111]},{"elements":[17427080957162886576,4310228111529328877,16109317445338921222,11923676504992192083]},{"elements":[11292141569337462929,7213981967192374125,4837353949249389782,13157524938508720907]},{"elements":[17221477633935993097,7905315334616496868,2950048088611741910,16851660641249290423]},{"elements":[1918571898367258879,14473285549490778842,16456257732802770188,16611801325745795527]},{"elements":[7880989808200689690,16935107633380717766,8956194191973051375,1103945341495739535]},{"elements":[4501339912027744074,12142665268233044767,9270990890291324944,45374981263348191]},{"elements":[13657768796246999470,2899654677720502418,7228867285602519410,3363587770111123806]},{"elements":[18227101298896629706,12986849723013952028,16815808278639394978,16460725848109409638]}],"circuit_digest":{"elements":[15489309507512017401,16244437215982314072,10011620388767144997,15394117319313330212]}} \ No newline at end of file diff --git a/plonky2_verifier/deserialize.go b/plonky2_verifier/deserialize.go index 11b1ee7..b8014a3 100644 --- a/plonky2_verifier/deserialize.go +++ b/plonky2_verifier/deserialize.go @@ -130,7 +130,6 @@ type CommonCircuitDataRaw struct { DegreeBits uint64 `json:"degree_bits"` ReductionArityBits []uint64 `json:"reduction_arity_bits"` } `json:"fri_params"` - DegreeBits uint64 `json:"degree_bits"` Gates []string `json:"gates"` SelectorsInfo struct { SelectorIndices []uint64 `json:"selector_indices"` @@ -156,6 +155,19 @@ type VerifierOnlyCircuitDataRaw struct { } `json:"constants_sigmas_cap"` } +type ProofChallengesRaw struct { + PlonkBetas []uint64 `json:"plonk_betas"` + PlonkGammas []uint64 `json:"plonk_gammas"` + PlonkAlphas []uint64 `json:"plonk_alphas"` + PlonkZeta []uint64 `json:"plonk_zeta"` + FriChallenges struct { + FriAlpha []uint64 `json:"fri_alpha"` + FriBetas [][]uint64 `json:"fri_betas"` + FriPowResponse uint64 `json:"fri_pow_response"` + FriQueryIndices []uint64 `json:"fri_query_indices"` + } `json:"fri_challenges"` +} + func DeserializeMerkleCap(merkleCapRaw []struct{ Elements []uint64 }) MerkleCap { n := len(merkleCapRaw) merkleCap := make([]Hash, n) @@ -341,12 +353,12 @@ func DeserializeCommonCircuitData(path string) CommonCircuitData { commonCircuitData.Config.FriConfig.NumQueryRounds = raw.Config.FriConfig.NumQueryRounds commonCircuitData.FriParams.DegreeBits = raw.FriParams.DegreeBits + commonCircuitData.DegreeBits = raw.FriParams.DegreeBits commonCircuitData.FriParams.Config.RateBits = raw.FriParams.Config.RateBits commonCircuitData.FriParams.Config.CapHeight = raw.FriParams.Config.CapHeight commonCircuitData.FriParams.Config.ProofOfWorkBits = raw.FriParams.Config.ProofOfWorkBits commonCircuitData.FriParams.Config.NumQueryRounds = raw.FriParams.Config.NumQueryRounds commonCircuitData.FriParams.ReductionArityBits = raw.FriParams.ReductionArityBits - commonCircuitData.DegreeBits = raw.DegreeBits commonCircuitData.Gates = []gate{} for _, gate := range raw.Gates { @@ -392,3 +404,32 @@ func DeserializeVerifierOnlyCircuitData(path string) VerifierOnlyCircuitData { ConstantSigmasCap: DeserializeMerkleCap([]struct{ Elements []uint64 }(raw.ConstantsSigmasCap)), } } + +func DeserializeProofChallenges(path string) ProofChallenges { + jsonFile, err := os.Open(path) + if err != nil { + panic(err) + } + + defer jsonFile.Close() + rawBytes, _ := ioutil.ReadAll(jsonFile) + + var raw ProofChallengesRaw + err = json.Unmarshal(rawBytes, &raw) + if err != nil { + panic(err) + } + + var challenges ProofChallenges + challenges.PlonkBetas = utils.Uint64ArrayToFArray(raw.PlonkBetas) + challenges.PlonkGammas = utils.Uint64ArrayToFArray(raw.PlonkGammas) + challenges.PlonkAlphas = utils.Uint64ArrayToFArray(raw.PlonkAlphas) + challenges.PlonkZeta = utils.Uint64ArrayToQuadraticExtension(raw.PlonkZeta) + + challenges.FriChallenges.FriAlpha = utils.Uint64ArrayToQuadraticExtension(raw.FriChallenges.FriAlpha) + challenges.FriChallenges.FriBetas = utils.Uint64ArrayToQuadraticExtensionArray(raw.FriChallenges.FriBetas) + challenges.FriChallenges.FriPowResponse = NewFieldElement(raw.FriChallenges.FriPowResponse) + challenges.FriChallenges.FriQueryIndicies = utils.Uint64ArrayToFArray(raw.FriChallenges.FriQueryIndices) + + return challenges +} diff --git a/plonky2_verifier/deserialize_test.go b/plonky2_verifier/deserialize_test.go index 665e4ca..2d9a8ca 100644 --- a/plonky2_verifier/deserialize_test.go +++ b/plonky2_verifier/deserialize_test.go @@ -12,13 +12,19 @@ func TestDeserializeProofWithPublicInputs(t *testing.T) { } func TestDeserializeCommonCircuitData(t *testing.T) { - proofWithPis := DeserializeCommonCircuitData("./data/fibonacci/common_circuit_data.json") - fmt.Printf("%+v\n", proofWithPis) + commonCircuitData := DeserializeCommonCircuitData("./data/fibonacci/common_circuit_data.json") + fmt.Printf("%+v\n", commonCircuitData) panic("look at stdout") } func TestDeserializeVerifierOnlyCircuitData(t *testing.T) { - proofWithPis := DeserializeVerifierOnlyCircuitData("./data/fibonacci/verifier_only_circuit_data.json") - fmt.Printf("%+v\n", proofWithPis) + verifierOnlyCircuitData := DeserializeVerifierOnlyCircuitData("./data/fibonacci/verifier_only_circuit_data.json") + fmt.Printf("%+v\n", verifierOnlyCircuitData) + panic("look at stdout") +} + +func TestDeserializeProofChallenges(t *testing.T) { + challenges := DeserializeProofChallenges("./data/fibonacci/proof_challenges.json") + fmt.Printf("%+v\n", challenges) panic("look at stdout") } diff --git a/plonky2_verifier/gate.go b/plonky2_verifier/gate.go index d171299..8220f06 100644 --- a/plonky2_verifier/gate.go +++ b/plonky2_verifier/gate.go @@ -62,11 +62,11 @@ func (p *PlonkChip) computeFilter( continue } - product = p.qeAPI.MulExtension(product, p.qeAPI.SubExtension(p.qeAPI.FieldToQE(NewFieldElement(i)), s)) + product = p.qeAPI.MulExtension(product, p.qeAPI.SubExtension(s, p.qeAPI.FieldToQE(NewFieldElement(i)))) } if manySelector { - product = p.qeAPI.MulExtension(product, p.qeAPI.SubExtension(p.qeAPI.FieldToQE(NewFieldElement(UNUSED_SELECTOR)), s)) + product = p.qeAPI.MulExtension(product, p.qeAPI.SubExtension(s, p.qeAPI.FieldToQE(NewFieldElement(UNUSED_SELECTOR)))) } return product diff --git a/plonky2_verifier/plonk.go b/plonky2_verifier/plonk.go index 3e9546a..cca3cb5 100644 --- a/plonky2_verifier/plonk.go +++ b/plonky2_verifier/plonk.go @@ -131,8 +131,8 @@ func (p *PlonkChip) evaluateGateConstraints(vars EvaluationVars) []QuadraticExte p.commonData.SelectorsInfo.NumSelectors(), ) - for j, constraint := range gateConstraints { - if uint64(j) >= p.commonData.NumGateConstraints { + for i, constraint := range gateConstraints { + if uint64(i) >= p.commonData.NumGateConstraints { panic("num_constraints() gave too low of a number") } constraints[i] = p.qeAPI.AddExtension(constraints[i], constraint) @@ -202,7 +202,6 @@ func (p *PlonkChip) evalVanishingPoly(vars EvaluationVars, proofChallenges Proof } vanishingTerms := append(vanishingZ1Terms, vanishingPartialProductsTerms...) - vanishingTerms = append(vanishingTerms, []QuadraticExtension{p.qeAPI.ZERO_QE, p.qeAPI.ZERO_QE, p.qeAPI.ZERO_QE, p.qeAPI.ZERO_QE}...) vanishingTerms = append(vanishingTerms, constraintTerms...) reducedValues := make([]QuadraticExtension, p.commonData.Config.NumChallenges) diff --git a/plonky2_verifier/plonk_test.go b/plonky2_verifier/plonk_test.go index 75348c1..c6e4752 100644 --- a/plonky2_verifier/plonk_test.go +++ b/plonky2_verifier/plonk_test.go @@ -12,27 +12,17 @@ import ( type TestPlonkCircuit struct { proofWithPIsFilename string `gnark:"-"` commonCircuitDataFilename string `gnark:"-"` - - plonkBetas []F - plonkGammas []F - plonkAlphas []F - plonkZeta QuadraticExtension + ProofChallengesFilename string `gnark:"-"` } func (circuit *TestPlonkCircuit) Define(api frontend.API) error { proofWithPis := DeserializeProofWithPublicInputs(circuit.proofWithPIsFilename) commonCircuitData := DeserializeCommonCircuitData(circuit.commonCircuitDataFilename) + proofChallenges := DeserializeProofChallenges(circuit.ProofChallengesFilename) fieldAPI := NewFieldAPI(api) qeAPI := NewQuadraticExtensionAPI(fieldAPI, commonCircuitData.DegreeBits) - proofChallenges := ProofChallenges{ - PlonkBetas: circuit.plonkBetas, - PlonkGammas: circuit.plonkGammas, - PlonkAlphas: circuit.plonkAlphas, - PlonkZeta: circuit.plonkZeta, - } - plonkChip := NewPlonkChip(api, qeAPI, commonCircuitData) poseidonChip := poseidon.NewPoseidonChip(api, fieldAPI, qeAPI) @@ -49,23 +39,7 @@ func TestPlonkFibonacci(t *testing.T) { circuit := TestPlonkCircuit{ proofWithPIsFilename: "./data/fibonacci/proof_with_public_inputs.json", commonCircuitDataFilename: "./data/fibonacci/common_circuit_data.json", - - plonkBetas: []F{ - NewFieldElementFromString("4678728155650926271"), - NewFieldElementFromString("13611962404289024887"), - }, - plonkGammas: []F{ - NewFieldElementFromString("13237663823305715949"), - NewFieldElementFromString("15389314098328235145"), - }, - plonkAlphas: []F{ - NewFieldElementFromString("14505919539124304197"), - NewFieldElementFromString("1695455639263736117"), - }, - plonkZeta: QuadraticExtension{ - NewFieldElementFromString("14887793628029982930"), - NewFieldElementFromString("1136137158284059037"), - }, + ProofChallengesFilename: "./data/fibonacci/proof_challenges.json", } witness := TestPlonkCircuit{} err := test.IsSolved(&circuit, &witness, TEST_CURVE.ScalarField()) @@ -82,23 +56,7 @@ func TestPlonkDummy(t *testing.T) { circuit := TestPlonkCircuit{ proofWithPIsFilename: "./data/dummy_2^14_gates/proof_with_public_inputs.json", commonCircuitDataFilename: "./data/dummy_2^14_gates/common_circuit_data.json", - - plonkBetas: []F{ - NewFieldElementFromString("11216469004148781751"), - NewFieldElementFromString("6201977337075152249"), - }, - plonkGammas: []F{ - NewFieldElementFromString("8369751006669847974"), - NewFieldElementFromString("3610024170884289835"), - }, - plonkAlphas: []F{ - NewFieldElementFromString("970160439138448145"), - NewFieldElementFromString("2402201283787401921"), - }, - plonkZeta: QuadraticExtension{ - NewFieldElementFromString("17377750363769967882"), - NewFieldElementFromString("11921191651424768462"), - }, + ProofChallengesFilename: "./data/dummy_2^14_gates/proof_challenges.json", } witness := TestPlonkCircuit{} err := test.IsSolved(&circuit, &witness, TEST_CURVE.ScalarField()) diff --git a/plonky2_verifier/poseidon_gate.go b/plonky2_verifier/poseidon_gate.go index 34a1dc4..a5e4e5a 100644 --- a/plonky2_verifier/poseidon_gate.go +++ b/plonky2_verifier/poseidon_gate.go @@ -86,8 +86,8 @@ func (g *PoseidonGate) EvalUnfiltered(p *PlonkChip, vars EvaluationVars) []Quadr // Assert that `swap` is binary. swap := vars.localWires[g.WireSwap()] - notSwap := p.qeAPI.SubExtension(p.qeAPI.FieldToQE(ONE_F), swap) - constraints = append(constraints, p.qeAPI.MulExtension(swap, notSwap)) + swapMinusOne := p.qeAPI.SubExtension(swap, p.qeAPI.FieldToQE(ONE_F)) + constraints = append(constraints, p.qeAPI.MulExtension(swap, swapMinusOne)) // Assert that each delta wire is set properly: `delta_i = swap * (rhs - lhs)`. for i := uint64(0); i < 4; i++ { @@ -132,6 +132,7 @@ func (g *PoseidonGate) EvalUnfiltered(p *PlonkChip, vars EvaluationVars) []Quadr // Partial rounds. state = poseidonChip.PartialFirstConstantLayerExtension(state) state = poseidonChip.MdsPartialLayerInitExtension(state) + for r := uint64(0); r < poseidon.N_PARTIAL_ROUNDS-1; r++ { sBoxIn := vars.localWires[g.WirePartialSBox(r)] constraints = append(constraints, p.qeAPI.SubExtension(state[0], sBoxIn)) @@ -147,14 +148,14 @@ func (g *PoseidonGate) EvalUnfiltered(p *PlonkChip, vars EvaluationVars) []Quadr // Second set of full rounds. for r := uint64(0); r < poseidon.HALF_N_FULL_ROUNDS; r++ { - poseidonChip.ConstantLayerExtension(state, &roundCounter) + state = poseidonChip.ConstantLayerExtension(state, &roundCounter) for i := uint64(0); i < poseidon.SPONGE_WIDTH; i++ { sBoxIn := vars.localWires[g.WireFullSBox1(r, i)] constraints = append(constraints, p.qeAPI.SubExtension(state[i], sBoxIn)) state[i] = sBoxIn } - state = poseidonChip.MdsLayerExtension(state) state = poseidonChip.SBoxLayerExtension(state) + state = poseidonChip.MdsLayerExtension(state) roundCounter++ } diff --git a/plonky2_verifier/selectors.go b/plonky2_verifier/selectors.go index 3626965..e62f2a8 100644 --- a/plonky2_verifier/selectors.go +++ b/plonky2_verifier/selectors.go @@ -1,6 +1,6 @@ package plonky2_verifier -const UNUSED_SELECTOR = ^uint64(0) // max uint +const UNUSED_SELECTOR = uint64(^uint32(0)) // max uint32 type Range struct { start uint64 diff --git a/poseidon/poseidon.go b/poseidon/poseidon.go index b9085bd..60b2ddd 100644 --- a/poseidon/poseidon.go +++ b/poseidon/poseidon.go @@ -119,14 +119,14 @@ func (c *PoseidonChip) ConstantLayerExtension(state PoseidonStateExtension, roun func (c *PoseidonChip) SBoxMonomial(x F) F { x2 := c.fieldAPI.Mul(x, x) x4 := c.fieldAPI.Mul(x2, x2) - x3 := c.fieldAPI.Mul(x2, x) + x3 := c.fieldAPI.Mul(x, x2) return c.fieldAPI.Mul(x3, x4).(F) } func (c *PoseidonChip) SBoxMonomialExtension(x QuadraticExtension) QuadraticExtension { - x2 := c.qeAPI.MulExtension(x, x) - x4 := c.qeAPI.MulExtension(x2, x2) - x3 := c.qeAPI.MulExtension(x2, x) + x2 := c.qeAPI.SquareExtension(x) + x4 := c.qeAPI.SquareExtension(x2) + x3 := c.qeAPI.MulExtension(x, x2) return c.qeAPI.MulExtension(x3, x4) } @@ -310,7 +310,7 @@ func (c *PoseidonChip) MdsPartialLayerFast(state PoseidonState, r int) PoseidonS func (c *PoseidonChip) MdsPartialLayerFastExtension(state PoseidonStateExtension, r int) PoseidonStateExtension { s0 := state[0] mds0to0 := c.qeAPI.FieldToQE(NewFieldElement(MDS_MATRIX_CIRC[0] + MDS_MATRIX_DIAG[0])) - d := c.qeAPI.AddExtension(s0, mds0to0) + d := c.qeAPI.MulExtension(s0, mds0to0) for i := 1; i < 12; i++ { if i < SPONGE_WIDTH { t := c.qeAPI.FieldToQE(NewFieldElement(FAST_PARTIAL_ROUND_W_HATS[r][i-1])) @@ -323,7 +323,7 @@ func (c *PoseidonChip) MdsPartialLayerFastExtension(state PoseidonStateExtension for i := 1; i < 12; i++ { if i < SPONGE_WIDTH { t := c.qeAPI.FieldToQE(NewFieldElement(FAST_PARTIAL_ROUND_VS[r][i-1])) - result[i] = c.qeAPI.AddExtension(state[i], c.qeAPI.MulExtension(state[0], t)) + result[i] = c.qeAPI.AddExtension(c.qeAPI.MulExtension(state[0], t), state[i]) } } diff --git a/utils/utils.go b/utils/utils.go index 97952dc..4edd733 100644 --- a/utils/utils.go +++ b/utils/utils.go @@ -33,6 +33,10 @@ func Uint64ArrayToFArray(input []uint64) []F { return output } +func Uint64ArrayToQuadraticExtension(input []uint64) QuadraticExtension { + return [2]F{NewFieldElement(input[0]), NewFieldElement(input[1])} +} + func Uint64ArrayToQuadraticExtensionArray(input [][]uint64) []QuadraticExtension { var output []QuadraticExtension for i := 0; i < len(input); i++ { From 6bfca5badbfbb0977a5a79371d55a43b609e5661 Mon Sep 17 00:00:00 2001 From: Nicholas Ward Date: Wed, 12 Apr 2023 09:16:24 -0700 Subject: [PATCH 17/21] i - s, not s - i --- plonky2_verifier/data/fibonacci/proof_challenges.json | 2 +- plonky2_verifier/data/fibonacci/proof_with_public_inputs.json | 2 +- plonky2_verifier/gate.go | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/plonky2_verifier/data/fibonacci/proof_challenges.json b/plonky2_verifier/data/fibonacci/proof_challenges.json index 4636484..7d7d521 100644 --- a/plonky2_verifier/data/fibonacci/proof_challenges.json +++ b/plonky2_verifier/data/fibonacci/proof_challenges.json @@ -1 +1 @@ -{"plonk_betas":[12973916988745913043,10729509799707823061],"plonk_gammas":[13357786390712427342,13733012568509939467],"plonk_alphas":[4421334860622890213,11104346062293008527],"plonk_zeta":[4417665616040947721,6032065041495623027],"fri_challenges":{"fri_alpha":[13781247504304639195,11230825432264195234],"fri_betas":[],"fri_pow_response":38184296491435,"fri_query_indices":[51,25,2,2,7,2,50,30,48,56,44,52,34,3,4,59,0,1,53,63,60,42,12,56,53,7,37,39]}} \ No newline at end of file +{"plonk_betas":[12973916988745913043,10729509799707823061],"plonk_gammas":[13357786390712427342,13733012568509939467],"plonk_alphas":[4421334860622890213,11104346062293008527],"plonk_zeta":[18168831211174576204,14207073590853934065],"fri_challenges":{"fri_alpha":[3871254635590041629,16336705857054086518],"fri_betas":[],"fri_pow_response":21146135473161,"fri_query_indices":[2,42,42,49,18,2,15,51,2,36,61,47,57,42,30,29,14,54,34,27,51,41,58,15,59,43,41,12]}} \ No newline at end of file diff --git a/plonky2_verifier/data/fibonacci/proof_with_public_inputs.json b/plonky2_verifier/data/fibonacci/proof_with_public_inputs.json index b3301c7..d31b292 100644 --- a/plonky2_verifier/data/fibonacci/proof_with_public_inputs.json +++ b/plonky2_verifier/data/fibonacci/proof_with_public_inputs.json @@ -1 +1 @@ -{"proof":{"wires_cap":[{"elements":[13884351014873073118,5174249846243191862,2208632528791973868,1071582828677910652]},{"elements":[11475361245556894879,14867351574926692044,17013374066934071379,1027671036932569748]},{"elements":[5604634992452399010,3684464596850094189,5565599237356852406,4136295609943151014]},{"elements":[8463721840990025805,5922588965472526198,8096699027533803435,2210089353004111478]},{"elements":[17531628199677307555,11513452064460680964,1482441508929181375,5139566233781982440]},{"elements":[13271417993289093233,17257193898955790413,16883807866578566670,7423179920948669117]},{"elements":[13462567520785358202,15555103598281658890,5859961276885232601,4464568704709749394]},{"elements":[153012620162729043,14072764618167122665,3025694603779494447,15948104906680148838]},{"elements":[18050235253694287284,11467396424826912141,11302553396166323353,10976271719722841224]},{"elements":[15208241660644051470,8520722208187871063,10775022596056682771,16048513824198271730]},{"elements":[6929477084755896240,11382029470138215117,13205948643259905511,9421863267852221772]},{"elements":[15449187573546292268,10216729601353604194,9493934392442974211,9848643714440191835]},{"elements":[2172475758127444753,16681095938683502188,9983383760611275566,2603547977557388755]},{"elements":[17440301588003279095,11799356585691460705,1386003375936412946,11059100806278290279]},{"elements":[10758265002546797581,1374136260999724547,7200401521491969338,219493657547391496]},{"elements":[5995963332181008902,4442996285152250372,2005936434281221193,6869325719052666642]}],"plonk_zs_partial_products_cap":[{"elements":[15664680364476180944,8822125722323081501,1515493944014958888,947815081717447158]},{"elements":[10037151755940667434,11949718559165021995,15928759330468082414,418840513000355827]},{"elements":[4161325524387973626,16365963892177732678,18172371282801122338,567761389574432991]},{"elements":[14261960611216430479,4961706922451790904,5837508846364221974,2496934636118037961]},{"elements":[2268074920164158624,1603793544646573865,12725635986147157826,15183158543695142576]},{"elements":[12920137987121475725,14038284593794054077,5500255468202520981,16477234960171405851]},{"elements":[10060477178655432860,2386219747357014594,17226595442036371584,14113214704489839208]},{"elements":[17356067684144936182,14910758592434722301,16921079055641057614,6252234565363173327]},{"elements":[6168512725748334393,6913883079661406117,10501571227616463415,1759912320778482174]},{"elements":[2516240519880426606,8354489090385082736,11228741529454001895,3898276725474912647]},{"elements":[3150970879837517798,7321559733305167606,14491889646728789185,11305012649385509934]},{"elements":[14991754416746124019,9687288789913675937,16219387862412589234,17460315789956127541]},{"elements":[9540799947392529115,12014884309935443424,4611822682640082013,6664663134811580775]},{"elements":[419279371365114248,15409640520057063238,9046735251831703003,11942336533527375105]},{"elements":[1577288469125335151,13080447669023420177,5624936637565297046,1990913922457378896]},{"elements":[9993080054082545872,8098015705753527414,8741600873648916001,13754140924787167756]}],"quotient_polys_cap":[{"elements":[4576109620711153376,3236809381130372551,11542714748533654785,17013478368384610971]},{"elements":[8496588690979700002,17378213129253526288,15096474045464070180,11273428144794620768]},{"elements":[1953106270094550680,3284247222289334158,7969600929177415591,1131115579073775169]},{"elements":[12046205032802251105,15385161005881612837,45273121269778659,2526622365807933407]},{"elements":[10819773638945561745,9602736003205008780,1586245922421927981,6904080076884549069]},{"elements":[10815804568912264316,4697494075044275696,4715991239510292514,15216100103446066942]},{"elements":[5807467854252254494,5604315347932862878,3590072204111149148,47123716216107783]},{"elements":[3952923454719749025,14460893275170740676,5786567623313182363,14120971507107684015]},{"elements":[14321518189774569244,4049827320000367959,2059092713086332206,18334869038217957151]},{"elements":[7227605969516706238,1575963278451522460,3722741694880927780,10214252531789410910]},{"elements":[10191770544115369912,15744707020806767409,10283106068135455963,5248578594404077450]},{"elements":[6021368727767440933,11641661276464638649,5754952712336913630,1544596549651236166]},{"elements":[10427037595001916280,7750356224228650360,11930779773209797721,10221804234486712445]},{"elements":[12171037509449284689,12665572893215828465,10088306432112485056,14080894905770761137]},{"elements":[6310775711507422307,15567903011365914755,6497398411776069056,12952108814335807601]},{"elements":[1981475397795893783,5166127072795119314,5143903907992348164,5313875283753552078]}],"openings":{"constants":[[5088805902097621642,5875175418000912997],[1794208372159249226,7127190752448180007],[12086635612553309906,12230577676752327332],[13112939486917538172,5447648837496222306]],"plonk_sigmas":[[1129215034193227251,5360072613900804104],[8161540016488675494,10471236347212139882],[1955530884000425639,17490761643957890073],[14144160552701040250,13749356951275024624],[4949830616417747033,5182189734107507576],[5165488313664566627,9712409739391753265],[424949489610406050,8959899038155040307],[4265472432260508125,12910798880693896863],[16344518898190489680,11187513079941083903],[6125426462023807715,2811280539565007521],[5732800736782788395,3814005672846458821],[10538449239815038848,6516315853326708951],[2176816465932106384,16591338830438312857],[8468443022278436817,2965118459486706740],[8358466348559167181,3071180523375209498],[15442785566661048963,4690529148553714396],[5359711175108844396,15356734922464714754],[17630112880210914981,4421264637865825144],[17305845281726596791,16065444218817124147],[1845186943599539912,7883098304665089361],[11285915054370123059,14925898147440650996],[13070130149350437007,8578555602460186169],[9266877103915004299,989720234019261736],[3075274922995091672,959614281516042415],[15331696195251492465,4400579433619080576],[3470826516191323786,10545620040230889533],[2998578785936630773,15135040995180635048],[5037462345381376072,16637625312609382611],[15247821060976346173,13301223753151671617],[13972890069390881415,11100853357556080321],[5357477962162600783,17594356751388222199],[12329725794131218617,9737465292552594046],[11678133685671868509,4924247160518092766],[12728338411791981837,16050475257489091197],[5923970770439208246,1006641123723404709],[15094144368062648533,7629431470499969739],[147993787988122189,17201227978606765726],[12932347761996755061,1942732224241317428],[1014142305894487155,421864966584160258],[11635275388175521289,648099741745112586],[4844947640604273690,16335149285004797728],[4696707729463489218,15920564910927895736],[18432203359353113104,16773605020181226124],[7925685915745952895,6560978099190236022],[11270521359673007460,2915541721113078482],[5834632029526592287,3622639310858949024],[1981243281236776625,4183349923086350981],[10978748139596465944,17835724945116263009],[17594978813110296874,8899670084373977623],[7872754207678581448,9540528678067391433],[16151892409952506128,9194391568794834757],[18023752047088321156,8682608112897275568],[2500211318424699384,6778240199831629105],[13016925555739711944,14399965896307688272],[5637642386510970586,13428249656555403641],[17413822281858862811,2121280627878356038],[7815552977963316659,4526450572078109983],[4853805742742537770,5119730951828523518],[14515967131950069693,14765536122245333254],[10265237449681537825,1893424377507574642],[4803981495291043802,2875566674351904114],[14092080524230479219,6942465110171808932],[6937536687967550524,15856872165628662213],[1985039947487664969,8212889319698972476],[5144526809680967977,5153303157867241660],[3756715371032960105,11448834841143603869],[18062437198133750582,16717054472130519190],[6820944008920835751,18024590462456860048],[11137087605647202028,13762355531475730590],[17862499975820063457,3003790158062251179],[18063149594861993032,15979436608655677015],[14824575848190345424,980113512306158182],[10815184577199388099,5297002751708627679],[674920060246678966,10155731249700737139],[10575048347295858127,8555970419633807299],[15478479446545053540,15857093830612152767],[3441085912072359086,15587349675492362467],[6440599673764896863,5963198334560124588],[14574010888890980497,9267638211447773333],[18034025279779742904,17196054557963214442]],"wires":[[17786024268249969346,10152962710055496364],[11582280142098236499,5857126199417892393],[7284648393420107390,9290582871581852991],[7082148022651860410,735070515455947688],[14223808714271819511,1235743386758137227],[12086635612553309906,12230577676752327332],[17375278174735869842,5628268297185507415],[13152342819593105032,6864011683943644642],[17375278174735869842,5628268297185507415],[12086635612553309906,12230577676752327332],[13152342819593105032,6864011683943644642],[12080876924914390553,12492279981129152057],[5966190344015303089,17882694987329300737],[3387869178064058769,1573338254360904937],[5848984227534595414,12142607598424812230],[9934768038632033233,11485935817790432788],[9836097071900208118,13731683396012714446],[14085543342396021916,9577263646340498409],[4278928526737163510,14026489673257909647],[5670075090900480145,12266119561131231147],[18243025986462673930,4182733206748106981],[7911616071019465745,14416632301868982107],[9343740764053825616,15504592588394803214],[13733267395170627314,9939052134940267101],[420608530592717496,13401827576787364435],[12086635612553309906,12230577676752327332],[7207084205685628760,14311375172445576813],[7627692736278346256,9266458679818356927],[7207084205685628760,14311375172445576813],[14028771127160781358,448279915590868206],[8781135741979467963,5183531214275899208],[10890941229776509651,9499442283008551855],[17243726231049097658,7711635639898779391],[2860419209660244608,694862723431756893],[3773708392184809213,8721371150404762431],[1869543146099150390,8309443204928953552],[14766101747931121514,17180911652461393748],[4330414500460787316,6905133061216167620],[1091601379907579551,5974882487011958481],[15398559045066476775,17870031772136171524],[1646346514776062950,16870010500846975710],[17540237143115505726,10158277649810673281],[5610680250582151427,1723488894819975703],[16335471884217678849,15678561531546197244],[2213907769070233537,16555588476938895333],[11592878212762830124,7201601626908405978],[8527251120088292794,1662991873569423345],[15725404311489939868,8063953732495421854],[9299684219689316237,3887845932564837017],[3666752571429310198,18052663483418096842],[7311685225063780980,1513277054234391851],[10446368893145148290,11976931154909254516],[14376648831588278968,12337021495363298817],[8382087763407245473,7518260443126880475],[2934000738813595009,14039090616028539228],[4640360670619114622,9903446147385211135],[15008617039700239667,3497243043133913581],[12071977196837232691,1685141670511224003],[12898249445644912891,17536896577070363392],[106034160304661559,17323244383456049028],[12600730857640302838,11631359524957269610],[10934040583541030106,12439797212565892638],[15360830231489266952,13268105119768288866],[7399479613824993069,10812450938293503937],[4497944240488080179,3450525588351839404],[6049267072524152757,10321666228060849986],[14446949288541270185,11429233440093895063],[14386931760038565334,8224009803622143323],[15885764677433802154,575237039167613525],[861459577692495586,9081072297324730986],[15540260066513879825,13535752805949717000],[16738709124717838986,12291036760587479271],[9291726814176640008,6882102809087576317],[12022756148687786727,3850555800465767040],[431856781150901582,6167238804694909137],[15368071208972560992,4265723603083257133],[13734025124748042663,9469205694067804860],[14153678950113288707,3401276453262866720],[3139924291608719664,2846765516609427628],[11714738450018091476,13658689656471220026],[5224251029056060469,16561789999895023852],[4938398523216727544,6757985712371492859],[6406668624009647277,16012654103714105936],[10519048052731470027,4281491170609131354],[18019800153176661644,142002163470802730],[5098178840841442233,11257981945365430387],[16326576784354781858,2862610627406782826],[3995068207358085298,10246122010142412692],[9449484113690020726,15379177148533958645],[11811767085068021157,18266933427552213833],[6029124543240916728,9357999031565430668],[16756265887886931560,11224600958117656179],[17076235020556226283,12798374319947891034],[3425265560152920091,13812955208860797885],[11261772654219870245,9516087639444351211],[13603242370281559559,9708133953737532071],[13196132116780763938,14307563134912674127],[3352613300565623127,7887225523482554338],[17768978636877181296,7425538460846653856],[11537877365603489616,17074015768847718738],[16930063663704267336,1902548449079020718],[6697615223565313539,3693022799835248431],[15583071951055880129,4715827203473886785],[13162458314307622295,10260332022823291615],[10480116713139205144,6895904335506682179],[4420961685576314043,9762524219000684956],[4129761063961725294,7360710558607087620],[1018472424995782250,7917084377864994321],[3958686219635917234,17639322066965223988],[9589831852567867740,18338002671891199766],[12410256632445301440,9410320109941796599],[10353033613223853873,16496204542141430077],[11017390270818216584,18127812746201168396],[11021369001166789606,12412239028810886440],[16651850666530852649,3620694197060470288],[7049009780663101271,5957254018122385353],[14111881006966701178,3798383768554439798],[6051350269920443349,12135249934232321379],[13546541227059856964,11078967769230906384],[15845640105157871539,9115229057354580427],[13085196206196960519,5499060942098350722],[425834548849661336,16726425102813991589],[9861225658136170270,16612235982817252304],[18422557038577581507,9025771989098749881],[15589727935332958783,1200707060244244223],[7434314937719472995,2476926976935644539],[16860956502004709735,13161881528812580710],[16377493819007174005,4173821560658563434],[7680563923966558764,11361938862977692878],[4811788100892402189,312680559128426049],[18296782483249732278,15935154486883212267],[485027549978128171,7583910064546325127],[3344593723796832700,17521049647025326857],[13991792716633317425,2843729796926836724],[2906983559822512641,17427354358769440962]],"plonk_zs":[[3394341723658746971,9325206367028002496],[5511054500653110234,16902955087133138960]],"plonk_zs_next":[[3135710540594181364,9689053630461908713],[2299865919309064919,15544427064650397816]],"partial_products":[[7838036843238850469,2443672586601366018],[12800311730613890821,14274077796420119050],[9014652142477293607,15607168891455633711],[380549992259537435,341858811276355026],[9906122770558343006,10865023981311356131],[406111236208107948,17341746477531583574],[5243253299947571745,11021685168439417012],[5808227775808966311,17839041066469034014],[10880129308801009179,3706258433060663552],[2594992268654452149,4320319917827438065],[5568867142173928768,1159184476288311116],[9450680359887534693,11897083573933825932],[3085136057178366488,7464307750793960653],[29783476437919808,15895521615391451677],[7068874184928182684,15616652387527854480],[13983927517483812460,9326087089209443376],[10490241817390037038,9878018062238501284],[12749990034140002553,14544827886876873431]],"quotient_polys":[[2245385281316321526,12637759879234767420],[12847542627003777826,11755921209537405913],[4490087456162292687,12155308394829487842],[6415761723824852632,5254256167870620386],[3330086014911494740,9770897717649187330],[2473827973928552273,11276355736742263207],[17520836475887763540,14964360773838284512],[18446744069414584321,18446744069414584321],[6362521447518416291,13801897454399339500],[18403307675709195624,17285181716082643697],[4980851430887218379,252231299797043791],[11219666910956443254,11846876024889599878],[9377559432043226268,12630137466496025788],[5759341094622983106,17364459288652461536],[11211865086672137796,16181099976006683292],[18446744069414584321,18446744069414584321]]},"opening_proof":{"commit_phase_merkle_caps":[],"query_round_proofs":[{"initial_trees_proof":{"evals_proofs":[[[2957113517849714127,534309029635191400,11544311873258053432,17882777603096976953,14832734722440621137,15934930592501534930,14760340415644908738,5968928275597906994,1467764478271860482,2009382118976922185,8495360564230345231,9001316726400759960,1476228686992828229,9926265546383658404,13708518013943224926,3323385141244140172,128236646007518263,563126779725380055,10710544815496082143,18322692329841349080,4935454013116701158,6105517679507515402,5809925625105293329,10724329006479231394,7215392929036346276,12633157382364529328,3892909400383536253,15905967723289449199,16107352555606493024,5763624939658292804,12822971197090877027,5468279929777982329,17871739753081572991,3405428058622781654,337992362254510078,13705078043166119698,2920441690533620745,4525146002637897051,18309666788251571475,15347705875649550555,2217752593681366765,18190039517815238703,2918841177068674532,11693900813645993518,12161685437561318317,10841669970067038096,16821663833760093673,1111379915033100156,17457617770852883295,2493716186979991565,8892096909459830204,12092029998773332332,4737742107837213983,10667486448634427561,7041791300378260407,16235605865629792199,12124454157766831447,8554194823817536413,10123344624443999171,3719464704114399526,1852291261948245709,7395622727472578340,11788503871034458814,2210624982014450562,1685999208823125948,11122373884830477538,6892391871763264000,13495033894710099235,8247149182531434849,12381029035073056251,1903453838714728063,9093795306938195559,8048800776126096016,9146017383512717520,13846881608659751976,11704297841154285416,11429622801686750329,13748299616283334071,7681621835781065820,7990061028613800144,9864223101603136716,16243622272869597474,6178613610167304399,5903143289022110685],{"siblings":[{"elements":[8832389127426069113,6131364286917185572,18048574911583960267,2163811129510967340]},{"elements":[12080961203814882388,3507164343688256046,217812273724800610,1252946754184999199]}]}],[[6187766128046441829,16637209301529445836,5986576867832645474,5922508019418421225,13024012733771890914,11544311873258053432,6210682176616774155,787950840974080748,6210682176616774155,11544311873258053432,787950840974080748,6998633017590854903,3570316141473543079,1943958605314396905,10012081067387175718,200135141029109430,1606688486842780675,5820930093413040774,17509314506128466161,9790027289576767334,15366548375832808996,14786056233877230488,9005494907928687056,11206757380457375960,14785216876155790554,11544311873258053432,4125056665306141884,463529472047348117,4125056665306141884,10848272876028751353,10489293662354674460,9840627866261471554,8760301363947944309,12436788214163474656,12162445533604174369,4641779691962012860,14290962744495491524,14603819910351056481,3581942472941140804,12162439553350628665,15360440997232862807,3345499793346946965,10659041795656156776,6456922015436530220,7092823725420751510,12623532074738499020,18875304311094731,6571719940573427938,3713560266347595562,12395682377278584280,8286981031646296110,1154665288160202273,2615624649935557189,4218899092448517100,3701380497663798802,5442340759908477206,3536390696218620675,7023214025948903247,15227668798241529446,2213699054839117061,12499528351979889110,15436117670064463049,1608563158385631682,8027804073737091288,727351301626253057,3907441864946588385,14640110801260533133,6872658797796774942,2549418678947479395,16206149660994701994,3406469869107928585,8535732365763792506,3989750107491371324,14138311324097500082,589493845356780193,15906224454643410077,11027800454373938688,801409311039359302,2253747981612168453,10964883184328692247,100451497126742636,12437443202817183106,17472637185780293340,18194565832602603547,10174383473030179576,2051335116486710384,15544141683221798716,8573231947314422590,16985842955076178707,15370338645100846421,16849835302258141136,4901875136230200497,921457640403058815,11000130208360453061,5813803419095504633,3315072954495503238,911606307560010812,10433009819612042023,2554151131254948525,11247651751131640956,16166950492447762244,10680491820422109990,15901973788078735241,1382180046724549077,3183786581747146552,17697888516455301726,16329696358798189448,9010504481955775056,9516962715434021530,14612713247187470197,12226491450154831611,12414910653309646466,4785911206589617380,15303424953973325883,13481906293956861078,13680648795977347332,14887549806036031812,17604090014004185050,4917548402019381930,7693983817510042471,15046259598927765094,5866455520921265789,11273520892964518390,14627176346756110435,11290828999713261086,8925281728085521215,5469901212277294639,7496825047880373200,2528402610082364956,3660515735724586607,5583026199400217829,8903714959695549915,1159177440670368470,3334508865887652368,15726690606425682166],{"siblings":[{"elements":[13464730518151764077,14583257702327574163,9271441173660870474,11158534083718624774]},{"elements":[16309815517466357069,8510292391200766341,17673219715638047263,11467102716297814818]}]}],[[9060977665440604273,10027552640135290426,2799080757703150530,14894914322379659061,7660713294407500354,1803155524926314437,4424677487910650243,12698940450839451967,8181376997541351584,8922931551248940622,6461036366206726792,17651950904552271883,210554361390159443,941392763699484177,473957984774065904,1541372654049837982,1962561552937683738,8120916818858829800,4385546586624398265,9932743748708723826],{"siblings":[{"elements":[6895347304360288912,5774648020166790174,10463284502844539400,15375706275817089772]},{"elements":[16797056608379864644,8931178218740982433,7364886258755014106,5391368024239178414]}]}],[[1386365264043604065,15760570738254498630,472284532852436712,4891783598495995135,16614137300705013434,8148571595689348138,14167114736189018431,0,16234850624555465057,8812224052037296448,18100002652933071451,9802527377320507834,11334877761320381912,15668717620245915762,12104500635409977877,0],{"siblings":[{"elements":[1454207239496146487,2454491367688711449,2494683180404599353,9127835247598302520]},{"elements":[15034931409752898245,3811931642580193527,4560100671637359881,470326193191708804]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[7577016485919276766,6735275202698696973,9760540244161035389,5466375874027570449,14857735554974388722,11596941429152010609,7755282478930922302,15898875264011386162,15556894694773296581,10235400558406416706,6119712351401069584,3329660208144285841,3141628165757217455,4133640273580195534,9821076459958951668,12128749612756273358,13970461391875760833,17765185769461661500,15487582972326530152,9982395814599538498,9641611303332563339,6103693158931419215,2405316792204658885,6000825777172017560,17291676255595838405,8252483479157584341,1334724356621090412,1075572777223806859,1418446335104705970,2409702906096441987,13386456238514991679,18352812465733047840,3565310531641632975,11865783810792318314,6653259754289134097,14277892463020505292,1021338263193648031,7974086536238080290,18043050004595529232,7169322739935537674,17262952765223792059,16508173524706835413,8407986048421700324,2731681821418783781,16962409397168348693,12518371718584705105,6836490320947230750,10173908584322424226,14780801403217615446,6864407245519098196,15257782884735569381,4065363053230925622,15615323641249036563,8499342504130969943,17149728462152206596,2609078087137312613,8608113588501447491,4822411645928574117,3365274694095832524,10950247685143498994,7727368247640986371,12501830351562085650,350638120505957526,4934393113758427169,14433372824351034166,4042073163038955383,11778644211147725481,4668173569820498687,11542788906243677728,2030283944460521737,1666092553131115788,11111091004364664640,7226571630364574786,4771316324262429793,15791501074258793652,3737577106070872474,11059059255634799446,3364036573675630186,17462173752139631963,2478747308715538992,16256143857234363082,11157135593420104396,8718964465724306791,4143119419741543474],{"siblings":[{"elements":[9388587184167042950,4839542192624419900,13665916779219735183,7189877172786009175]},{"elements":[5146134359815002436,4633941153658423848,8230102747931661415,3646387604866439705]}]}],[[4923639440429335008,7819842526462637132,1651138263502417622,17470236648626681580,18022612107408790895,9760540244161035389,13423332462307572403,12999200500301778977,13423332462307572403,9760540244161035389,12999200500301778977,7975788893194767059,14295467680348371279,16423757532985143603,18196853624715043583,478549981417335070,4964493517039626893,9165809384236307439,1943557728639213172,5557452327359554012,10326294208732822670,1164788856511022339,13341552322097965713,3925277302720438195,10504034217276728774,9760540244161035389,13032279541358690489,5089569689220834942,13032279541358690489,14393715946685135969,14244160880527240463,2650618403753071968,9165858133831591008,2590986217975279170,17717035435223363169,5661012230586968125,11266006175271787497,15396778584378577210,10450771346452875010,15236130478233144437,5798139479774870735,13366167621016388539,18396649254688107367,18065849127026078776,16214919764149559310,4794935110728572493,5580101177204543320,13850889169606520998,17765724882767678184,6224228989990729660,15110437484514367166,5724712452484168937,11019035725029779740,421127629443875491,5302763463633568143,7194254642076459567,13003597021687123224,9508505890161135326,14885900540306882,8687898601104319335,13973165682000114903,8912652203272071954,3795981264745269050,17539569164478449810,18301295559970548502,7828648721117643408,16193910630638137955,7542548270005535291,14870753365779819059,1794278463012187941,3224900833186757046,10251743818122397958,15848977138949083558,18138573734311471911,6697554527460399943,9254648893704800796,10229144004327795476,2050708876426452494,307255685760945654,16476099494635260258,14476407627318521697,14542782151328153676,4832193292981007004,2313064125527661170,9577985120643299159,12175524835967028788,13553769084571394734,6146145653098870046,2477565018000936014,4196933359455590597,11057464525089983091,16388557864899109375,14189498192522600353,6764992368544473412,10228031414300083872,16052476779780257824,6308362080359537657,5835189155392266638,6244833897917034405,611496340026804406,6116372827904888140,9129907861133400642,7139993204913732828,15506475401374459931,2149759306135021777,3038935102147286064,8798339537690056812,10949602915689453399,3912264997933599372,18390167459215272523,11127062412999371846,16376544420381442169,12988670565417720682,14561353173553898752,7412946552048321268,2143833565471213961,10552664395620109514,8899882483303504979,9273090974524167584,3680065478240480930,13904232799865236214,13331617251635583290,18197116857214450574,10798534299552884098,8293682947927702468,3217982783547004114,1707237671246392733,4863728749339965933,11767468162174721983,14872727024290710640,7605177396297395612,13539062125792055046,8269657116421277238,14463056174007449925,7249182052717605922],{"siblings":[{"elements":[14998292580821025134,5854020674865254698,11804338233953879258,11647335449616989534]},{"elements":[10142563739654869567,14245358600781036015,450538954486675373,18063093301621843209]}]}],[[10813528245206784909,8167218413661095961,14129427191077537150,2992526391066214665,4517837200903421149,5066683056508304046,3929273118661497047,16468521179879645373,16061231449945590521,5205678856459718400,10358324265048034639,2045294479401005948,6077014009711295797,4195992067059091114,8859577534214411877,4822086659744033342,10447537402899016783,6551580759935391540,12102039869734356254,5795332441720777073],{"siblings":[{"elements":[10689383196326562457,10884305731114026882,15878271627953946243,3079310490843017069]},{"elements":[1418588521819482976,1077996264781382214,6381114541326529076,1010884375625234420]}]}],[[10864393895334730976,10079984501341378811,6821441933394780276,7864632359951177477,2255379866009581496,5715628818991336404,12029157689827191043,0,10529721526692583483,4711743613777592460,10106660489093597846,14820049274629393792,909931763584679717,6256816529464047133,16053055676847160168,0],{"siblings":[{"elements":[12724261835463995535,16802010119766994593,18126244493583112689,10137151175752107657]},{"elements":[11968131827385035396,16507480595686394074,9581348907411459599,5537305183579279542]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[15034545801107465666,9328134685786232648,110829080910733876,4250821939350695176,1394630806331531697,12201247022097191778,16228921593346724793,5540981308967052515,16262683837062736705,3444943174443116075,14321882309394080023,11976399724076258415,15741084224719728653,7167218740187920267,2108479466400960879,10523500992781693864,18084559524611127881,16392309362668639626,9910431870163626642,4306965461073664163,8761340433466990759,16828932137000128833,2348349595557829210,18309601238814102288,6690141621618686419,7896548919369665043,12130437762899715305,2761456977705156545,14222367477428627391,14807796117787670576,16218927186002388767,7877082550245093306,7861505246478234400,6642657046293066409,567443057547927936,4962531988520098681,4454913783121034017,11032692175451594665,15818464105310318903,16889379664350046036,15583177082558352958,18416173649350290030,16733021994861153485,5457109531204194878,5211202449828449170,387397703287744593,17423970546079450668,5331695136917034168,5204602975018287532,7804682123145551743,16184475773898398161,17806383633492102915,7806008025234779015,15596547216666649128,10083322942939404535,12021095180947227158,333294063486744879,419406305018384698,7930166925575659383,11941804889882528314,7029051446847328676,10870358600754106564,3290908671307159311,6033256737686447080,16428444435506081682,16034886258387630270,6265258099047416323,5155332694710747095,5556269241720840184,1407033520462800343,8788279239960369908,188529423317695704,3606487184992817701,2533317928314692800,16029983803978270205,9937287719837361600,7652762612315253552,17700302266760805118,15472687335725666131,6385298406622369122,12382980318690581425,7179451047645296592,13902948853468039715,11531705951801209834],{"siblings":[{"elements":[14107875915397983130,4898796723405732069,8183032881835579560,10330461968446653528]},{"elements":[608309216059009087,15657505314169978897,10976396690985755658,16681478498527425210]}]}],[[10590361711545904926,6467492479015847751,6498300686270535597,11235217016121196403,2050901983807334484,110829080910733876,457242200587969681,2508144184395304165,457242200587969681,110829080910733876,2508144184395304165,2965386384983273846,11881551527102582958,13252799754300043757,5542346299697481738,12941079563792721653,7629536697092816871,946522021654598871,12278464848326872548,15635598563846490229,5829216383525741455,4699317963129637005,17140824973063371511,14528036162963310089,8438916954361851857,110829080910733876,13912447523740429868,3904620408687697404,13912447523740429868,10858094054096997470,1129321940144333268,15512231662819526723,1215549820600439430,3458343838277692402,2903272703156588727,6649801311208103544,10630545905148286914,5177893075383648019,1498880294391033069,11616941586839624703,18206644320516320506,4747450833104484769,14768049486874569440,14037397727859129226,2645876608246238685,13180997555396826036,7271099602821356640,9269412218528362283,4487839141304141996,11836427138015445663,2400175033297146545,8041667181982169897,7238299764299447244,9109542469240195000,11538605155690031110,14777857662292006784,16373952745741192265,6449973465824329538,4872432625908382346,4727533735447793884,7377811649585784188,8790483486939521102,13822336377080202315,11324433051905664726,3883933170046591917,1347850836508112699,14774786343624762725,162550115389646241,5198535412457955594,1810879615721090595,14529292925087437104,901573947567293056,10398930790373150755,2440334104529491862,17181202655789893950,14929365801843940792,8870021205360466355,5714791681228629465,3834323554628492897,6711030840184034546,11281595561079380425,15721973904010260697,10537732998263177477,681925608398007009,18125046351628766408,2921797340631939475,1659393951957676651,4583079679507530593,11810555073590278097,16256144961183589074,15518167787841152639,2480463166045767428,5082572631562647411,16111515311953055863,2390065558855966886,14275533876396805542,3921382209782463383,5743265965284400903,17469830917999768495,16572716749928881552,17813468024803325027,8083084680750935408,12016785000603048107,11669045793692424204,12696375324439579180,12646965674726689285,2060520681933962166,16163008826279362177,8578621219445781658,2119880391859457420,9685741318322805911,12797568880876578858,14335363283221448753,10471668531838958757,7057428691420713199,16445403751963552397,10777132041965659341,7961496270085302387,194286872592472848,10404000052706966856,3333947120896600522,7849470502408677588,6337231606403825399,12282988631151493263,7617558447599872869,1845648988468028904,5123652400347227722,7578591360549995288,13839756351623329299,12296124092835508116,4448810410722431067,4473975626433411615,2500186167623149551,1012548268544035707,2726071433488304004],{"siblings":[{"elements":[14311481270996416571,4201960485605959975,7717021996621825206,14919681022557420509]},{"elements":[5673898759496293924,4636452871475736473,18104237363360020046,14791632146812083222]}]}],[[17785072076061664511,993741286788086326,7865916735404912455,247760509458695932,17748501974684380912,18110815466739453174,12568880596071824394,13806593611340548873,10488818944467126014,117026882898941462,14290703128354822274,452927647305573927,10555988498411384076,9428020669565985868,15880164876549719241,13188644033285038713,10531941623516941933,876506558037732753,3924217702418299143,6638842188140107254],{"siblings":[{"elements":[14469078809657960520,17088512888237620162,6633511284776989343,3355871571932375762]},{"elements":[4359409371571848320,7871270597332206518,4059018556858203473,18371896080309768692]}]}],[[11969602554963299014,10375790739468116747,9077652031226033269,12360422714763496228,13804313655922209329,8351425246582741964,14662244372116845635,0,3213429693170017515,17978395573898655359,11993493245852249344,12927188907957042090,8182728957808175988,11518650002856583229,10273680791646713200,0],{"siblings":[{"elements":[10918425936304058279,6724520426490126151,11605114710490044849,10348324329998908669]},{"elements":[14652760857554324672,15304368083049420521,12783349036748574602,14041648391144364018]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[15034545801107465666,9328134685786232648,110829080910733876,4250821939350695176,1394630806331531697,12201247022097191778,16228921593346724793,5540981308967052515,16262683837062736705,3444943174443116075,14321882309394080023,11976399724076258415,15741084224719728653,7167218740187920267,2108479466400960879,10523500992781693864,18084559524611127881,16392309362668639626,9910431870163626642,4306965461073664163,8761340433466990759,16828932137000128833,2348349595557829210,18309601238814102288,6690141621618686419,7896548919369665043,12130437762899715305,2761456977705156545,14222367477428627391,14807796117787670576,16218927186002388767,7877082550245093306,7861505246478234400,6642657046293066409,567443057547927936,4962531988520098681,4454913783121034017,11032692175451594665,15818464105310318903,16889379664350046036,15583177082558352958,18416173649350290030,16733021994861153485,5457109531204194878,5211202449828449170,387397703287744593,17423970546079450668,5331695136917034168,5204602975018287532,7804682123145551743,16184475773898398161,17806383633492102915,7806008025234779015,15596547216666649128,10083322942939404535,12021095180947227158,333294063486744879,419406305018384698,7930166925575659383,11941804889882528314,7029051446847328676,10870358600754106564,3290908671307159311,6033256737686447080,16428444435506081682,16034886258387630270,6265258099047416323,5155332694710747095,5556269241720840184,1407033520462800343,8788279239960369908,188529423317695704,3606487184992817701,2533317928314692800,16029983803978270205,9937287719837361600,7652762612315253552,17700302266760805118,15472687335725666131,6385298406622369122,12382980318690581425,7179451047645296592,13902948853468039715,11531705951801209834],{"siblings":[{"elements":[14107875915397983130,4898796723405732069,8183032881835579560,10330461968446653528]},{"elements":[608309216059009087,15657505314169978897,10976396690985755658,16681478498527425210]}]}],[[10590361711545904926,6467492479015847751,6498300686270535597,11235217016121196403,2050901983807334484,110829080910733876,457242200587969681,2508144184395304165,457242200587969681,110829080910733876,2508144184395304165,2965386384983273846,11881551527102582958,13252799754300043757,5542346299697481738,12941079563792721653,7629536697092816871,946522021654598871,12278464848326872548,15635598563846490229,5829216383525741455,4699317963129637005,17140824973063371511,14528036162963310089,8438916954361851857,110829080910733876,13912447523740429868,3904620408687697404,13912447523740429868,10858094054096997470,1129321940144333268,15512231662819526723,1215549820600439430,3458343838277692402,2903272703156588727,6649801311208103544,10630545905148286914,5177893075383648019,1498880294391033069,11616941586839624703,18206644320516320506,4747450833104484769,14768049486874569440,14037397727859129226,2645876608246238685,13180997555396826036,7271099602821356640,9269412218528362283,4487839141304141996,11836427138015445663,2400175033297146545,8041667181982169897,7238299764299447244,9109542469240195000,11538605155690031110,14777857662292006784,16373952745741192265,6449973465824329538,4872432625908382346,4727533735447793884,7377811649585784188,8790483486939521102,13822336377080202315,11324433051905664726,3883933170046591917,1347850836508112699,14774786343624762725,162550115389646241,5198535412457955594,1810879615721090595,14529292925087437104,901573947567293056,10398930790373150755,2440334104529491862,17181202655789893950,14929365801843940792,8870021205360466355,5714791681228629465,3834323554628492897,6711030840184034546,11281595561079380425,15721973904010260697,10537732998263177477,681925608398007009,18125046351628766408,2921797340631939475,1659393951957676651,4583079679507530593,11810555073590278097,16256144961183589074,15518167787841152639,2480463166045767428,5082572631562647411,16111515311953055863,2390065558855966886,14275533876396805542,3921382209782463383,5743265965284400903,17469830917999768495,16572716749928881552,17813468024803325027,8083084680750935408,12016785000603048107,11669045793692424204,12696375324439579180,12646965674726689285,2060520681933962166,16163008826279362177,8578621219445781658,2119880391859457420,9685741318322805911,12797568880876578858,14335363283221448753,10471668531838958757,7057428691420713199,16445403751963552397,10777132041965659341,7961496270085302387,194286872592472848,10404000052706966856,3333947120896600522,7849470502408677588,6337231606403825399,12282988631151493263,7617558447599872869,1845648988468028904,5123652400347227722,7578591360549995288,13839756351623329299,12296124092835508116,4448810410722431067,4473975626433411615,2500186167623149551,1012548268544035707,2726071433488304004],{"siblings":[{"elements":[14311481270996416571,4201960485605959975,7717021996621825206,14919681022557420509]},{"elements":[5673898759496293924,4636452871475736473,18104237363360020046,14791632146812083222]}]}],[[17785072076061664511,993741286788086326,7865916735404912455,247760509458695932,17748501974684380912,18110815466739453174,12568880596071824394,13806593611340548873,10488818944467126014,117026882898941462,14290703128354822274,452927647305573927,10555988498411384076,9428020669565985868,15880164876549719241,13188644033285038713,10531941623516941933,876506558037732753,3924217702418299143,6638842188140107254],{"siblings":[{"elements":[14469078809657960520,17088512888237620162,6633511284776989343,3355871571932375762]},{"elements":[4359409371571848320,7871270597332206518,4059018556858203473,18371896080309768692]}]}],[[11969602554963299014,10375790739468116747,9077652031226033269,12360422714763496228,13804313655922209329,8351425246582741964,14662244372116845635,0,3213429693170017515,17978395573898655359,11993493245852249344,12927188907957042090,8182728957808175988,11518650002856583229,10273680791646713200,0],{"siblings":[{"elements":[10918425936304058279,6724520426490126151,11605114710490044849,10348324329998908669]},{"elements":[14652760857554324672,15304368083049420521,12783349036748574602,14041648391144364018]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[5476891376197235655,7044817592391507668,13974119857005811796,13974119857005931896,8542463872071985231,6501044494244072249,17280822819241372308,10053665788850614925,17448962655787859727,12336908644746128088,9143020989718619471,4743203533871311592,11333677962792045232,13893424625045704083,767953711050007881,3472634815196335700,2902869279664059623,4226328250494368377,2418764480316296736,1501861828709332135,568975573703484830,8801800562606935721,9514012360554107037,6115575755227527047,1051291325387837076,11601191339553618576,6074519755155606439,18335853116697904652,10165784017796992404,18323605521630460587,11994117291089446449,10451983568470879546,10434065730445324857,17938995950366848123,2508123549594798968,7640613494747113386,1513372534219473739,16828618817162538109,8366075947957833522,9049395889722424712,18045617055697920423,7144267989314336719,16890803523690545074,15781761522575987695,14571475745262949915,16362201857573628110,8875795807742385116,2397097127390260361,11086508766290873299,12528536250631072701,4796334215621772761,46053206664818609,55855699141615696,12822704619433111871,5230152393175782857,18340028855156558604,4982325153117195849,18144683475374954843,13809928813137301377,2031187538284433977,9072535653736593441,12622276487432996162,8839987604652581340,6940845095475718033,16000102712351353061,16532084347876329880,11054558944075828190,7559179555829355370,10125459834434143139,14588025940297167409,15578052907891230592,16440693311745855827,16867123057370125982,13930038904617907751,11354803143482232725,16519077024003978008,7359228380659898187,18264912276873600757,6663799581497061960,14594092587359944947,7904080859246436117,10453773933582997036,10399628085621807446,12434936933788275446],{"siblings":[{"elements":[4295791253590603064,17929487105087721335,2967055119325542947,16462733433019204129]},{"elements":[10866503738528739597,488999660478424691,4680620550068726076,4667412765909904450]}]}],[[16428349751610191944,3347881533532107938,9468737643308213580,9194454772744592800,12741552808537566884,13974119857005811796,10045247018444647662,4340055757567630225,10045247018444647662,13974119857005811796,4340055757567630225,14385302776012277887,15202997972538187494,12414035098264397106,6391149555208523887,15712637695103593820,16554806991031947314,15363932162293809841,16307837251216160766,6820178166180814956,17457607970083055920,16464291619833470086,13749084992526879831,9636357227791350456,14663917240177601678,13974119857005811796,14942531704342925469,11159704875105942826,14942531704342925469,13714252095155089725,11813664378122801899,12391017937545841995,3476544466855521376,4541244746607206727,8878509548685829859,18213591479499389571,11906513154856102562,2661560206398423305,2184127630907116305,1470388346871513421,4220268753331067933,10121067713976682072,14528380587817187057,16760633056567525176,16239739171151052007,13336769264731776731,6597861866224831980,1283028978560633880,2343950577965466019,14930493770682231745,96390668912837594,9674660986690554615,3312989674635627754,2217725399410485058,17217178624402525406,1270496295808607583,12290224265072685290,14803910390123085278,10223203367692759106,11308771395676367576,1041038867464915568,813178057614178183,18268779348647234996,13701728595724581165,4019666490957492362,1234706480593541580,5634977730404901600,9636573169392748071,16107612655947242065,17723319666782197456,9218105179571351311,7480356268302484853,3953131694299149827,17397482431922805387,5468481439749014787,3320365679890891465,15526222117613994762,15333645379253332801,18074859146242913422,956580594101134221,12459586433819507902,6251016581514000324,9061286157704019153,8285114808851066511,18196592430429844596,17763244861005544579,16619520955079787148,15533162835159325494,2463578269926271449,16128653967389374961,9702427179903687789,2069753350137081705,9618213279997531696,9260163586230802185,5458992430299660279,14734687379245443572,142881319041189151,3921278602338897690,1751283496631235262,13106448210476421032,17623768063489438275,16612612992753432848,6545797981497976720,9814538168567253074,8995293668772951989,7142564581237122052,3547619286584280037,11256682631544360243,456800540290985258,7670894929460168942,13668116004985323929,3029202510962705921,12132687131942077218,4898917753423723492,16116725979714905071,6407348810037865596,17895095959158463658,7249739482952358425,14259627781104667467,11093952195928251986,1607619966941010464,10905336922186469824,1872294433562059216,17731987557902592659,5781022924291843377,8720737205215412068,17707746869708051401,6069659458516403762,5534361090266582195,9462663519886507369,15792770371188132287,9616736522457323016,5331923174174154450,16132487996478428137,10413918624073677918],{"siblings":[{"elements":[18107004279715648445,9022046471554739761,10628535777396098425,3646342173473337268]},{"elements":[11198870833902175989,2627056551053426442,12173347194088488972,13515738457566135127]}]}],[[10389994304159048865,6649191615891136629,11403608210651883819,4519118413793949304,2185698229693972676,17179409027569724423,9574052691782549116,14769559996847512451,16314679765100333798,7508244338581389907,12607987506138791424,22145534889104171,13843820450570263784,2678823418594540255,1323887373182876776,784024881853698007,15639778007162745068,12896850576571956744,3917733862452052922,1323379203368626624],{"siblings":[{"elements":[8321799032949870492,9041736777206633545,5275857463905943750,11845804001535745851]},{"elements":[6175371435905559461,1090507109993953169,13482089804287186601,14807728910252899539]}]}],[[4427670386441416504,17196830264177892837,63378352210450339,4474850086631122106,5285776790310024011,7442855528783351039,14473813801611186907,0,5587192636016021819,11796884131600238570,11519044807326916887,16293454228443205923,10554000137989328552,6710814315668780462,2535376180897248814,0],{"siblings":[{"elements":[13416860306928031322,13872475067050356340,9029853368848041601,11813207410514222083]},{"elements":[13286374031914984217,175261073292850250,12104851526530982961,1649197002724185016]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[15034545801107465666,9328134685786232648,110829080910733876,4250821939350695176,1394630806331531697,12201247022097191778,16228921593346724793,5540981308967052515,16262683837062736705,3444943174443116075,14321882309394080023,11976399724076258415,15741084224719728653,7167218740187920267,2108479466400960879,10523500992781693864,18084559524611127881,16392309362668639626,9910431870163626642,4306965461073664163,8761340433466990759,16828932137000128833,2348349595557829210,18309601238814102288,6690141621618686419,7896548919369665043,12130437762899715305,2761456977705156545,14222367477428627391,14807796117787670576,16218927186002388767,7877082550245093306,7861505246478234400,6642657046293066409,567443057547927936,4962531988520098681,4454913783121034017,11032692175451594665,15818464105310318903,16889379664350046036,15583177082558352958,18416173649350290030,16733021994861153485,5457109531204194878,5211202449828449170,387397703287744593,17423970546079450668,5331695136917034168,5204602975018287532,7804682123145551743,16184475773898398161,17806383633492102915,7806008025234779015,15596547216666649128,10083322942939404535,12021095180947227158,333294063486744879,419406305018384698,7930166925575659383,11941804889882528314,7029051446847328676,10870358600754106564,3290908671307159311,6033256737686447080,16428444435506081682,16034886258387630270,6265258099047416323,5155332694710747095,5556269241720840184,1407033520462800343,8788279239960369908,188529423317695704,3606487184992817701,2533317928314692800,16029983803978270205,9937287719837361600,7652762612315253552,17700302266760805118,15472687335725666131,6385298406622369122,12382980318690581425,7179451047645296592,13902948853468039715,11531705951801209834],{"siblings":[{"elements":[14107875915397983130,4898796723405732069,8183032881835579560,10330461968446653528]},{"elements":[608309216059009087,15657505314169978897,10976396690985755658,16681478498527425210]}]}],[[10590361711545904926,6467492479015847751,6498300686270535597,11235217016121196403,2050901983807334484,110829080910733876,457242200587969681,2508144184395304165,457242200587969681,110829080910733876,2508144184395304165,2965386384983273846,11881551527102582958,13252799754300043757,5542346299697481738,12941079563792721653,7629536697092816871,946522021654598871,12278464848326872548,15635598563846490229,5829216383525741455,4699317963129637005,17140824973063371511,14528036162963310089,8438916954361851857,110829080910733876,13912447523740429868,3904620408687697404,13912447523740429868,10858094054096997470,1129321940144333268,15512231662819526723,1215549820600439430,3458343838277692402,2903272703156588727,6649801311208103544,10630545905148286914,5177893075383648019,1498880294391033069,11616941586839624703,18206644320516320506,4747450833104484769,14768049486874569440,14037397727859129226,2645876608246238685,13180997555396826036,7271099602821356640,9269412218528362283,4487839141304141996,11836427138015445663,2400175033297146545,8041667181982169897,7238299764299447244,9109542469240195000,11538605155690031110,14777857662292006784,16373952745741192265,6449973465824329538,4872432625908382346,4727533735447793884,7377811649585784188,8790483486939521102,13822336377080202315,11324433051905664726,3883933170046591917,1347850836508112699,14774786343624762725,162550115389646241,5198535412457955594,1810879615721090595,14529292925087437104,901573947567293056,10398930790373150755,2440334104529491862,17181202655789893950,14929365801843940792,8870021205360466355,5714791681228629465,3834323554628492897,6711030840184034546,11281595561079380425,15721973904010260697,10537732998263177477,681925608398007009,18125046351628766408,2921797340631939475,1659393951957676651,4583079679507530593,11810555073590278097,16256144961183589074,15518167787841152639,2480463166045767428,5082572631562647411,16111515311953055863,2390065558855966886,14275533876396805542,3921382209782463383,5743265965284400903,17469830917999768495,16572716749928881552,17813468024803325027,8083084680750935408,12016785000603048107,11669045793692424204,12696375324439579180,12646965674726689285,2060520681933962166,16163008826279362177,8578621219445781658,2119880391859457420,9685741318322805911,12797568880876578858,14335363283221448753,10471668531838958757,7057428691420713199,16445403751963552397,10777132041965659341,7961496270085302387,194286872592472848,10404000052706966856,3333947120896600522,7849470502408677588,6337231606403825399,12282988631151493263,7617558447599872869,1845648988468028904,5123652400347227722,7578591360549995288,13839756351623329299,12296124092835508116,4448810410722431067,4473975626433411615,2500186167623149551,1012548268544035707,2726071433488304004],{"siblings":[{"elements":[14311481270996416571,4201960485605959975,7717021996621825206,14919681022557420509]},{"elements":[5673898759496293924,4636452871475736473,18104237363360020046,14791632146812083222]}]}],[[17785072076061664511,993741286788086326,7865916735404912455,247760509458695932,17748501974684380912,18110815466739453174,12568880596071824394,13806593611340548873,10488818944467126014,117026882898941462,14290703128354822274,452927647305573927,10555988498411384076,9428020669565985868,15880164876549719241,13188644033285038713,10531941623516941933,876506558037732753,3924217702418299143,6638842188140107254],{"siblings":[{"elements":[14469078809657960520,17088512888237620162,6633511284776989343,3355871571932375762]},{"elements":[4359409371571848320,7871270597332206518,4059018556858203473,18371896080309768692]}]}],[[11969602554963299014,10375790739468116747,9077652031226033269,12360422714763496228,13804313655922209329,8351425246582741964,14662244372116845635,0,3213429693170017515,17978395573898655359,11993493245852249344,12927188907957042090,8182728957808175988,11518650002856583229,10273680791646713200,0],{"siblings":[{"elements":[10918425936304058279,6724520426490126151,11605114710490044849,10348324329998908669]},{"elements":[14652760857554324672,15304368083049420521,12783349036748574602,14041648391144364018]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[11478853722654892596,11054649085732609431,4994009559595819210,4186791003624108490,18024865371818158892,18345183498407461526,9694238634292017590,6724859886830687063,11243260270601353574,14381814419105033411,7818933522528881030,4546529647928812664,14925540237646974265,16878266396497955220,12920668997211098573,17268828363658179930,15016004026910537377,13817031165285279441,595208874785186131,5264621933065972184,12842607752779588909,1036458340443929803,723974238512284296,3865120520076342236,10591874432022570118,16672770104321157989,4268204143023668522,1442101787761795173,17261059111713346750,1886389845452355019,10015188874733823167,12945251435542942346,15729006941700819727,9769721924531241974,10360965788706053704,17231683844444576182,4860556932014059440,11290628573575307583,10467853112375278596,15672706883929365300,11854941895739424568,10532167184289139234,8849900270380063794,17258070778068654781,389392563654780465,15694034380242781064,16408125286346615923,5240758237683744215,12594341864398680415,13125157218336151182,12110224318087305788,2381073337923353293,4801286650727974296,6463610664988967714,4579934330236307092,16913166904864701304,17120949083165668392,5417444260846067353,2162861526281072576,7230041798647740383,8052962025075942004,2329101354125768248,9495441095357060775,944189234100813522,2974037460852383196,2808898223350514185,16825144225291284340,16495574607473979160,1773988643127921369,11103048928261281020,17248516975848621671,715115511911425973,16595596184784813139,2875296451261385175,748823176798831426,1445145643777419320,1059249732834213379,18281412487205604006,6977248505445028194,3497756901944121467,17667695280482817497,519454644348557937,6789904627007533608,5570494389550069031],{"siblings":[{"elements":[2788283718956080627,7243963918501585343,886762250337169434,13103212312216094922]},{"elements":[12080961203814882388,3507164343688256046,217812273724800610,1252946754184999199]}]}],[[13928294621723921177,12780940283369458641,7876240315475227901,6066626702537238528,9898862770710249753,4994009559595819210,2759606787637752471,12658469558348002224,2759606787637752471,4994009559595819210,12658469558348002224,15418076345985754695,15817189505417289729,14607965607124354080,7813626309410363076,17485223674943332504,1780965341182078330,3037496677795679112,16925233897322526943,6585072227811472298,7220549427393497823,8894639681782314697,17983750126720184772,6175119053087603624,6601134111490342972,4994009559595819210,16230935946409515570,4385325988485274221,16230935946409515570,13422869145706374791,12056456469944566203,1994640404655837046,2041498014949327818,15222292150707478314,12055070835694701410,5791770988338043396,4794260121078486195,5088243394091940716,4433164256239424632,16575794680504753952,6531940195923791990,3563770336607741715,9089170961919497076,7225839869417248569,17163966810386791910,2469899024815155209,2292818910579514321,5604300214587810177,3962901446771858307,8115703962873436186,12227137774487342913,10055717802038525292,5040779641845779271,4020234766528670622,13990080084821656167,17049289946649598037,15589022999347861836,7996890106800872437,17070531954983798077,6288597808130522527,2882600362492917400,18282210778658487071,5290766639320332586,11934186339991570015,18048571945567604936,8633311260728093051,5726096325067463398,1560335555488445862,6346689089155476274,5352700878563443229,8260947291255614337,13895445167245764314,2722730527913789344,9984369258246511722,17449942811566287633,9039783389603156730,15770212808645548611,15604002583816624789,12632678186351784833,12443316506322579603,2689703002348580295,12186133393983573364,2557705900584619282,15747072224155822779,14575316556591232559,15576542984462621081,15488569866082674263,6342231580381115232,18245380729150306293,13138358927956389182,11355807333367714725,3843203266552571735,13372082698841656458,4282403972695807428,12967650405676443931,3279701706996147601,4269604628439986552,12810591614434266971,4918284573306406547,15398346437346008377,4864334928906697631,15200787090238653652,1507872707864375709,14520207539783615626,9587587554881518399,2926367496026552554,6912410705983260971,15369938598553995963,2075689248982218282,5152237836296205242,12303021952179647682,9220651996076525198,6997453282729167405,2510802550350257881,15986784152557061449,10403886028616317914,725801823863716254,10813943364079801174,2773230474526954969,16627196588714671373,7358925652655215606,11951672684069344790,574312075589763984,10650483314780928148,8856081240889135347,9165158582390167601,3679942570959956785,1512278236454150868,5802207444257996574,7437036756859590485,8786061085156095007,12159539347118920345,11662310128932183807,14874933086469731455,2830306178053176220],{"siblings":[{"elements":[3130019963986597337,15339088729883962328,18303565295965347353,21834830375555995]},{"elements":[16309815517466357069,8510292391200766341,17673219715638047263,11467102716297814818]}]}],[[15531630122643591742,17784016984143438318,7646180558607222372,4712330286021420959,1836647799604344458,1032754306025135816,8637247467245429010,6541396555005357954,14995728355250084691,11850706188047767084,5243644779211300540,667565067084877433,10143284626864465235,7148000449592874166,4088733073017965808,14990811180692992880,3515424358072231766,1173108353474018284,17956057759339140415,4263651585633506075],{"siblings":[{"elements":[16472373462185368851,17266439060219580842,4142781204592553313,17093433461272410760]},{"elements":[16797056608379864644,8931178218740982433,7364886258755014106,5391368024239178414]}]}],[[18081026362303235730,7815813789196414801,1844246062747457760,4169053919895915248,1069199924533317474,6538299808166224020,1564324924398477003,0,16875165989786123395,2169810174040431028,9111251229515091251,7236049840713979275,4367180581066605885,10968746493371305328,14608468633572722376,0],{"siblings":[{"elements":[15597975023014902719,13454537365034314486,1765676213090225665,8086601349331273540]},{"elements":[15034931409752898245,3811931642580193527,4560100671637359881,470326193191708804]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[17730780067944809742,17518963256923921102,9717963889501765181,9889333779175288446,17354124086167775810,9341046780105547782,9463782532206378426,5697696929613651984,15477029259429788513,5284028284360742872,15659165034173660700,8373222624828423792,16588480323682393975,14038735062324207145,3190833584036494502,1516159312330509216,1680633347890878490,18066968257243839877,6417415178374158875,2392895987843567788,9518381980183289956,17344412373544896756,16231594649760017448,11962230288889464129,16565976484823794958,9632744212580298659,12535279470199806696,18181151614510170253,3239896109492477120,14448535428822926046,10566430734548849545,7948558204012273967,7441822548969899197,11054714104426912966,5727098206734316170,10554880058789606853,11367680883410349269,15950592910845777768,7938462655227805025,14887413847621781320,11067322404078384110,1932890836035370572,4762211496694261432,13337385683847119543,9329632235198825870,10738135897864078801,15535224595294003533,17962066482630225808,6099696443075548176,12162825799478904764,757744944612985671,16880734573288606831,17103112778625804023,1748882665563358221,11564693213149332613,3146989962103247994,2121482963690760677,11656376260512447754,4478580302598200708,11204574619333446305,2379232663091112881,3248648188462642397,17066258138991825086,6830807813140638287,12493706632655472092,15478303205849811735,5867213549580254545,1614081641107065718,2983768137674386946,11663441444425153241,12314007578863325622,1593765721002081508,6690599623344340798,1765410693453932363,14248197648680736180,8155473757178746261,15462355259073896728,5166316952982031985,6848724932534938178,2838500778340260384,13076234229555688944,14294583243378430366,6644658304540038648,3737332012452178544],{"siblings":[{"elements":[11018653891288600245,7457833601627035013,9915728460678587024,17276883179053765539]},{"elements":[16272487173950120557,17194161083645730615,2985732629437659869,14431043807897268535]}]}],[[7989529141045576704,1481927600417149098,1637221502741196772,15918394835760212531,4886905902603890365,9717963889501765181,17191301083388750914,3631462916578056958,17191301083388750914,9717963889501765181,3631462916578056958,2376019930552223551,13154382002108610458,11942637006922578807,18238654591764300335,10054387033449389686,2446377057876747046,7767513416118110165,5385749249401275861,7310810065932566576,1826146359467610312,12873645198247819897,2437328272890438966,17431368158774566826,8383502777682504060,9717963889501765181,14390985624812784569,4327744333080704308,14390985624812784569,15659183209967909754,7587533364484830025,1576889021307456247,2176080728489564716,16614052675057426327,13404887337289300662,6800129607780396393,9546791959802769063,8398046164664065631,4339092994799150929,7884324493664583491,10367210371562241108,16024031608622407423,940651131963071557,14875440255208051044,17944324327851098861,5137042798855307485,16625165027628711736,16488556424740040797,664361067234530299,15957267201192211887,15195683370294912193,15166999026897443931,16243427441587546200,10866278215791452497,6411914887501379580,5335376663264915548,15140474908442067525,14493991912214263196,17067962147219254906,11010652854048922565,18038168616867940486,3015920215655325691,14482522042232798499,5584184048471098709,15078102481145945353,16696103479395424205,12762508413419179805,15674440772590996079,8475552319426210596,13009067420684581361,5233706664624849044,5698331818670542495,13784371837620102417,2783780178626945907,15847592608250109049,4116001761933842464,8774836830048133554,1122631275405281979,5456497616219595258,12008914457567020898,2430713432696378181,545850204667661772,14937837884531364322,2264639140794252346,94079676740597952,17659586681280881089,9140676728032430901,11873089452916494799,5630995334229911251,12345108454160565355,2648550277102781784,10588527724598376990,2342786786472099236,14400722085920042660,13322718986751429215,3491228538005377953,6510905911889264261,8931535993760748060,4233246009677506104,12262979903463807759,322600932739821527,13424341356026568726,3468103607908939356,7885800363841418618,4645595799625512268,4585463119717268160,5144347990366566315,18082228608628675513,4398759149791023126,18094988208460111233,12555981489149039538,818009129411818091,2433354194001644145,15040688246812880329,11011447301898015351,17257753645757311225,12663327921480164120,8623246417442233944,8077395383220828571,15260864238789041642,5083039833094159257,4876442205301302786,14157119118630650015,12494414964761743413,12518562440533560129,6865301472451471578,17877924610050305896,7307614885176145665,6948761063468110087,1174357126761300031,1369869052351427610,8377347277300097754,6806991754193965215,11304997448075487122,3509844693016716057],{"siblings":[{"elements":[180278596016008821,3190538166425734593,17822691823027954640,8603837459543446917]},{"elements":[10171860954903476202,17170767904445474228,1666266425404431967,2871003251187555371]}]}],[[9969308533833169979,8140035154566822045,13777418961736591511,12624353662831536136,5740186130652495666,10428504976359145479,6198864924908621764,5763745677428061242,2720229500793308687,10821525747712815407,3071363266517415621,2378148514680807869,5935441837134611765,4229483959236544422,16261192539385599868,14881419370608925816,3866652223368021785,2665098606364025765,15298126166091821316,15078075591704279206],{"siblings":[{"elements":[11882637916940290615,14285470749572505935,11578998856112823729,9726818215617860437]},{"elements":[6118065580064522853,10859396399423868824,652533740523273924,16148992833321448507]}]}],[[13058505267181793522,9256272094537100515,6022350630787211656,1226541948110000398,2536475846735116451,4840040337964846079,10040086054826291320,0,18046665472712899602,13920247072627124401,10489805400836704055,4162882088000690136,15278963875621481251,448833842910087508,8012359347427125159,0],{"siblings":[{"elements":[1319615273016134883,1350489192622808690,14629951103584670233,13571923543065320537]},{"elements":[6196810223008549796,17601670362477624784,11542138709433169716,10662246883412141095]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[15916944138056518912,15217869849634763520,13445295225810556415,12588083425695960575,14568133142830206927,6242163245932282002,6790057154541981624,1298431965565921871,4075964094566768642,16653829043500889071,13768516204449262239,6481109966902479644,4129979189246610933,11749135024230435864,1642034491743532607,17586074769544879190,10107323655533980453,4103499892747457534,9882249843507953187,9569897848229230342,16196796671002479154,6916478379084898390,2697495575402703229,15074573306376922154,2772308751008700086,4394925709715145490,1879708177371356158,1538644419575653952,12162755309511433101,679021320922089878,12173780931467561034,4936437518228274552,10366984644773366511,7016713425454376830,9605410500912478170,9576788701924065270,6472382460578743882,5251599140443283757,4160525922629684920,9226562829108649304,8031781402484062400,9963336794163209314,9734198680583375259,16884469392365793704,7459594825993206955,14991328824564282898,18233040201820246473,12114290566428930067,17145429877543107585,4582828350989227827,3405847849603187940,14342996598476200971,11491117117063691434,9111405354043757311,5533064146593389737,15910399413744188385,12289814295119573139,17092532802778883326,3231285992228047417,16108768711606767915,11500355588174777460,13612449094063335822,10685158185416433397,12778107074881027099,16024639363422537244,14306527912840476131,14090546698584380007,3299699352892338876,13697726848103613559,2136061480027184829,73999994748752093,8924940515648967567,16144230599986895137,488762248016333191,11653290767022516404,12112313482838731686,5688380728493565516,1898419248402645547,4268860499612043974,6028066473843399719,17229779635198417770,9887633263469385022,14689397429408208591,9877889464589055432],{"siblings":[{"elements":[2605804542398966656,9831943560435629810,12598265065446142915,9334340792435918298]},{"elements":[18161808293962363183,5378725722484264021,7687383671526977091,16433811244973155751]}]}],[[13550589260461760847,6123192505492659602,8511683709331379849,2754016258586381137,15990568318576643399,13445295225810556415,440941536704853721,16431509855281497120,440941536704853721,13445295225810556415,16431509855281497120,16872451391986350841,17076650684580081997,4305189266780371909,12558734481779503500,14599551521578716910,17828062681307740676,2758092929343706336,195812535140578698,316582426598552467,4225317080354884906,16885024645087454672,87498454641301235,4450012893846976915,13282924500425030160,13445295225810556415,9693397608863709479,4529578039874155318,9693397608863709479,7401624283299489837,179729400108411392,6083457418669740762,7563006768971860231,4538815436417417090,3689259167377059799,15817369277618938159,18182319706336622590,9165574501991711626,10066999233279865151,10112586369376517392,1766625937581045667,17058928868020298708,9338549103976712992,5627839139462694317,393291366245477071,14993974268935965851,9574194913184888161,17102953684715233731,18172159533116603268,558551364131766892,11497990697017203926,17909097026448565887,6904517352004982728,6463303731541186545,13889352452457976050,17758108010803768011,1805507395188539029,13806527984394061516,854166660125917585,6892822917297508921,16639699064584549588,5085868400554242708,3063635245833431071,2854657521439430007,11345681505090274580,8334926602366134966,18109817213643527539,5773241807831761582,10096023355978838021,17884386388026292158,15443427843489246321,5128187187324441521,17875887447586775626,2720037671565860755,15511961438355230703,8191821525647731278,10637825109331078771,11432622590315903759,13617667222720482008,16803350958650242853,7232028132440143683,6213300294081102411,12044241946330545805,13060120107399783211,1276690224901044533,12527171455104485805,3312604278614423131,9635986154123715170,7364662449949344527,18111392558290655278,3057586069139924990,18259978201194736572,6038122340458006529,8963339483566220311,17143969340400022060,8715924390899255001,4591606957131700263,16939054164423210389,2288488872936665725,1093470537313338795,7212080042431431311,10187371546249529580,2816835704927294312,7564235588936821649,16543205062286821631,12785044550779303777,11942357380094556223,9403866575930876452,14989024735776848144,11842425111351402530,15469245675016416502,7727178204830711249,6700922284726006023,10539652258050722193,17641051999405782822,5344609990686444149,5967780587205037557,4771676816454404164,4620273691467190274,1305513203086114725,12086336728404868773,9388567333609702465,10036317839469499162,15052883535832013821,5719626657444817355,10977148188770914727,14146314951628650850,3934340395217262010,9302629254164507314,14755915401122585280,1538867776811131736,8380053563673931054,10571608314418953676,14799388375995690425,13502661537290896773],{"siblings":[{"elements":[12664549484344903474,15853717815540961956,8073348100809005013,13548306548983532102]},{"elements":[15514428744505251117,14504379719601574378,3632924971737213774,16395490620190777807]}]}],[[6472316918344045539,7348737103991399565,199649958490245267,8975087053425023472,6928632270534938262,18348893127498953206,6559564126195642612,6409265276986924130,10619178439103950690,5586144462703934226,1568560248770727666,16196305634599688015,16358532318341593375,9455525351201204000,9815801212691136524,16940636980416095943,8285248051536855369,17471441698029204981,5709859373028673645,14449870084657520553],{"siblings":[{"elements":[13516645845116104941,12858973629400899818,6298803105891457122,15506342116640319375]},{"elements":[11401017871127626637,18073598116114047479,5632277518610515708,650460509947357987]}]}],[[8030868133116812716,3856269901348743137,6091909979183300390,5084025029299432005,15816876569588404458,399462967915183729,13020125895768346939,18446744069414584321,14374183051509916308,2683660944341301546,9148965268429096346,3473984844111668967,13041490560627161019,12820213110379138361,1988109236447019001,18446744069414584321],{"siblings":[{"elements":[3004868077555964759,6246164959790546087,9998649444505941570,5577108650397927394]},{"elements":[10338080588869032781,17713883863731623074,7725612730410270183,13268609474477435317]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[5779238018441521607,1633659970024625107,15132631210249071149,9192233637020066511,16987576514335488814,14537832941490526695,8017871923137398435,14314804699542886826,10901130489318013461,15285483815663082328,2430396967900556168,16276049452254364183,15227487508322773600,9872687341452455059,6211993994226713932,4889758649110072149,14915335055951661270,14174469351279425813,15222693756012869232,2507712364049933061,6240539615301533451,14664011484904827783,8048592190500641310,16905018051986877068,4779431974339347199,11903890813464622515,10928808714970001223,6111390108406334068,4234631642081657820,7235279605367545286,8799657935434031961,8286115099013562073,11454656292809441737,13520163168352385625,6456743497411690816,9372245902640639235,16981095607738972247,14088949113824064986,7376118977218819576,16181391623796515936,4306160775041015637,14684943054646970993,1187357664384853816,2678278548320182310,8915342001311324677,6820357556106716762,10047165498188026782,11079858360482382602,7513024627572737117,13416502641490652835,13349862424590596035,2534975422370036520,16303174984092936300,5007697021193232369,11025232868888114458,17497190273059442911,18378965578806711459,14650158696056524998,506378590434313023,7517599558713930394,3284540675228517227,15536832927518804372,16776631120837587358,8840840584683410056,9422443583642356960,4619350616359800110,11449017599009673815,13102563998095575306,7578815223018683414,4567644161714887189,3442591794496191525,7557521075610042401,8245698025078736508,9547655045181054115,1521555487622075717,12458682305175417258,4564571732197379275,10911026568935082680,14535719776674318142,8814423602300100352,6881176102900919739,14757102652154963074,2882892600394869839,13505407566117981947],{"siblings":[{"elements":[12028397558684416584,7195669060619656539,4877302621055009322,13144368516691639632]},{"elements":[3831638896680269617,11622239582132795001,17114360658120078056,13946956494708067730]}]}],[[3343692549667880505,16198634626183854616,17828341602867283893,17343923561744772965,7239721626809504850,15132631210249071149,3836379348225604529,11076100975035109379,3836379348225604529,15132631210249071149,11076100975035109379,14912480323260713908,14489809805973717524,4880220434856361330,13947179735898410800,13229685593822343426,15911368050061407645,6084143457799909927,3192353477317781124,4504565059227164154,4834107503583495614,6021179220503470448,17815725382551011814,353005752735087093,4007573482727368553,15132631210249071149,11549410711608607519,15556984194335976072,11549410711608607519,2706309929532775409,12268361366747451445,12099257585775883867,140131054861831523,8903974312821521182,10043570134653716969,18211956115240107150,2292372264651693774,14102742245736635927,16852559829722837042,16825505233759180266,8908756795421598266,16103162896097380358,8926793518491301862,12202061379809903409,12327521766857249950,2050769331733499182,17325107096621126508,6803231158122982594,6784867343172638177,18300290432345207817,10636474538463621607,4386574529135542745,1250494435896400910,123003052125317854,5448854097786247668,12602965604509595567,5743240162770844343,13132869005104318057,7119134903727636269,10562651625673869862,17670943082149306501,5165082877823307327,10034586095009347150,18403871672691024829,8521489955487896999,12635031104158178731,18028376459515519782,11908702605864831038,304061409946482865,15736258225763026909,4040701803252043684,17707666159320046017,14575644205272956477,3502139250412121130,6633713801200532995,7601434306551380489,13748955194333374731,17475212960816482520,7844896550427291036,17656717192009621493,12201019913972285654,1522224513466690172,15190450450888432188,860651136548303685,5110376993438385147,17377095422621159214,6464894716463618461,14702226779224557781,3702730735062817256,4998351497105793254,16054975751433575430,5880669708305179454,13997899952030131900,7728388812875819361,6361030057295611778,16190373931251736680,4223270819633636417,9714918360415963083,10221734355966291900,5199806404189904673,16625684062012507466,1746105439999395602,13909194948784929858,11627413399083340388,6820265889710087077,3485410948531934651,9053644199614520267,11848782656068851405,338159767400977261,9214092049969436447,4130836369973881198,16497171921411889070,2322484766562628158,11144784294901467454,17160963806669865311,18045676676463249733,10232219943606011622,129054393174406105,5131068677522791732,16448039553334225819,9137703767322409787,14571149809596542628,12024475215792790589,3373968061732934391,1170074000405821622,7745939968264153742,13365774650994659942,15268151864672701217,13358174864854562580,776628099070901061,7076599693818849408,9228233082293520279,247806449564806791,15141646506993617642,3335398960777298349],{"siblings":[{"elements":[16694149547239299418,11916098023714376913,6683167713856718248,12883762631643920858]},{"elements":[16680612008794498936,8640953519412144738,10181843617211023742,8267313235995818586]}]}],[[2407409934291764350,9258994182503114094,13139096448477754621,10231532414294393307,16869825209268617560,4033977720048296461,11970062223168088613,5114324180131030933,4035241937297597768,18384282130646381560,3119460359662332373,10263420363880015098,8264307291697762303,7684985082558235520,4271006438160629142,3582960565310600054,13811906650129963757,15000759657348015204,1423919909923382610,9186062269551114500],{"siblings":[{"elements":[13406981661575413696,5172026295240874364,6949218394557698042,5665430393736599705]},{"elements":[15038980373507792589,13371167328767946914,13237656934183842649,3552342384838824807]}]}],[[718450441488193160,3384984396605666432,16112609702389701215,11191055637634313168,13625870787139354873,11265718301513146911,5660733189084386917,18446744069414584321,1517354566020000005,5872976568146552498,4737258158776434239,15542363834192310254,10995560238825993108,535712946360398860,11220538357659625724,18446744069414584321],{"siblings":[{"elements":[4606284367567892898,4098215502233871532,10640429447122513029,17948520172198090941]},{"elements":[2266699753608788951,14951315295450771117,11343886449762297073,17586657642109796121]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[6813457186201347913,16292758647703992019,8844653506261590739,8418148810775012109,257598705366079431,14188566667344261135,13054907711083636310,14937929170921287560,11113063179581523791,8042596091691475662,8088975227728187573,18101369027756630910,14943143602927915893,14978919543577864696,15654760751235657081,7292731374006035884,8439357553690963193,18422874179104399619,2911351474793379705,10768295678929100273,17410446462012088096,5954031235807853625,17423240168171036552,11752735854791789047,2159893997575447110,17849087447768289171,14430838415796105645,13247105220186075038,1783455347200879002,3872488841582921888,5457673965860298807,4112857996022796834,9744446854218927641,686697655644955304,6686902746222567697,5963971313932586699,5945416961952347013,7000849025639680335,6586153289696681227,4821726886423231203,15612959990111498080,4054663324186167904,4494381073432862930,10857722779233749136,2932987207271549808,13812516789503200337,18110420774186651466,4143022857424029963,13892794212034462707,15053718859175984300,4144507211974925269,4602827260634992144,4885625593176507139,6807348898367619461,8166762537334621850,1788555205280129465,16704565138532596904,629459479332617455,17954650422138512948,14676423773407282993,4439290709458852650,17145940255033179454,17521517402100614292,4812307369030413083,14965665358490059433,12716533470726248903,10586804178322663212,6688205588492027337,16751822584437025646,3035428332586564848,17750248568831761995,9714277578669276867,7223953909504756266,1599519121581393253,6368013417370768485,7295962644899175923,4773911471210532926,9441616541018779515,14141070459922059146,15925789236233281616,8288430442049947536,1914476272459174394,14112709828200927890,15156166554177497045],{"siblings":[{"elements":[11704025310434077720,9532838675057870925,12303433490119470095,948351445506016995]},{"elements":[17064536494791320770,12263744633261512961,12108241189491567152,10005497132141205270]}]}],[[12367740132420226342,4751018808570050720,9396418264939515539,13376264054680686305,7439030988334819681,8844653506261590739,2554964752008412981,9993995740343232662,2554964752008412981,8844653506261590739,9993995740343232662,12548960492351645643,6420846025834267734,6615064001910728658,8114015836825849550,14297549126973211413,494153145088044597,15723621681367703175,4898715300372730635,3412323707579416104,16973933549387962223,1470128548272414734,13622689500868544651,9846141791119170547,16645172655631939627,8844653506261590739,2294640749497649290,493069335715004596,2294640749497649290,2610546392002425426,395896090848647352,14608962927904112372,16132423052844426083,14688001811914787625,13519062450554433751,8012432559003429632,4908768588388340840,4323513915312329465,6346560911298181565,15267631182363045416,6602510710670491593,7468700863523979621,14447965303859983141,6075836865358353280,13618042121522330022,10998296561448228548,15841976902483551142,282228183290158921,11153843798638039885,8817234269794247540,5432109581401063923,6851967163551660819,13961530939099050215,13165497795046165607,13406473761113700261,11121825770698491750,15081394468024970566,16804268035437399121,4112588416057775932,7782800348696418249,7863993831091031610,16633415074935114657,13812656208135323415,3185124745078016436,12792804257447045537,13078819109720497537,1712980502548834326,14524287319744069067,416842844511225767,11899242984944305692,14601389627328965198,3603914039456544347,6358903273201005509,10166129907502591836,4393951967068143470,12319116725392069352,10670405552191781189,17335901113408808302,5324042788877993127,13223048771728507680,959484811878635640,17170214233896579731,5019405521970766042,12089807679105517343,3409529301504229380,16045138115202189229,6756083024957438061,15219069925892696729,6826346430147236476,1592345270438109817,7150337625988558460,9136358875864277964,5574367546693046823,15531224765175193990,10442199907150465853,15908552582612086054,340796202086519729,927193260190283122,8882985940662791023,13241178301756843471,7884606198056229166,6957749215262219428,12763181553462278681,1198709508699066062,11717878732949707259,5058360101168249492,8285046083618332294,6615306328692676507,5239028164168684145,18075848712768454098,10842688530051432368,2350955680415612488,9143650641010618677,9444271226993681608,3716239260973373369,14939577589645647275,10795695687702435344,18163015095844741383,18424317073793106812,1788189022282645092,15816691296695615772,7971404229944155685,5110474832432724353,18407389716800671392,15576183282773938862,13848063926721314556,13486790584952370022,11877754292595911998,6527123780383560120,17282665349881407080,16403284060680509552,18204326557693803480,12765853527212446780,14560573099211998051,16102739329883255080],{"siblings":[{"elements":[18097718126307589757,13597214077345636009,7630146090470413103,8642598067241196414]},{"elements":[9944776084518157686,4653909707046425785,6023823242874418186,17177728323428333719]}]}],[[12648137476508967541,1911381761529786931,14420971025315732948,4603307933275467383,17490582432640226536,13366272432379484557,2497223794013650288,16843930209423097710,8696516839042457312,4517010667149369196,8226587771096723318,15146962025994716654,18240699741528031948,2554796400805651337,13727152386157172283,1740050648665867150,16737482292656320544,8610903963298014987,3166036325305768588,15423860959384836152],{"siblings":[{"elements":[7311092168956144123,2737022805689873671,11761979561503611665,8478714860887618510]},{"elements":[4596059680650727571,6771115085036167242,8395755362072069468,11948753560074645208]}]}],[[6110425605441857132,7169468867908892253,5015317776562358371,8380029409245703953,9630999129111154903,11104755439569279971,10661190661324421607,0,9031757385531708895,4874249127923693183,1310019134661541436,3648961669254992843,11541027429362993877,16476838800911891527,1589119771308685024,0],{"siblings":[{"elements":[6941560159717284311,2305021389328112036,7741042536800547708,556069848774739886]},{"elements":[13589310221869782017,5847021125471704143,15424063190731956555,11770972783687690470]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[3738945624800370731,17300446361735488265,15917639738875279304,4136774869151029450,7117564556375305386,15670713401097966322,8381165688216271533,6616103561609861786,13525601900549725401,8799482595755943457,17712624366892731318,17118545599583281469,991100146237581491,6035752930321192712,8266024908831034613,18064514353010328935,3964240644054969232,1994624446628148135,7737696342131683957,13493604657617510761,12370590996382281203,8394073097020065040,18283562745012062460,6603194942422814209,2531030556376411593,10324982144450082508,14030009636665866801,8517901130048984070,12939125815664675574,16304843600861358605,2298466883715219055,12488184336251324402,10985612231923603660,3938570370374081443,3042511045280239076,8171478540730367577,16057693655131392951,11774495727902372291,158368229678630360,10831030505909419154,827360893993244461,10152328350452690919,11307238070099807940,13841850883366080465,12691891050419428514,7591453740245008478,13518080200785327749,11697901946292834344,17655953453569148143,1697289746656046530,9087743985318104710,10718099400097923382,1326370504809921685,16908986449959167910,15621818700730741288,948682801768912387,11775602109313462473,15639513639876645710,5756007334659907895,8837886509164769704,12808750118480217901,11348068085147256475,3562302526915199466,6009828677840090154,3086670756891117194,870481913221754358,12245862984441377243,4244793211851520732,13952115460324070073,5544993801584185285,16653723066313937090,9145775338650732340,18188734250621702658,13427643555713573844,11494683798358729483,7381145497053006350,7707723438386994051,10719871725717216219,13294205928777507235,13970396126083246793,11718884100073064041,10310245041771063274,4668742116442863641,11041791040371495950],{"siblings":[{"elements":[4980007364458196901,1695687289718372436,15683405046165023045,12745377463045984066]},{"elements":[3560583152441324605,12581631521285452247,3424922011369377233,1328356594502091179]}]}],[[7084960479292912767,10113856666356110536,16930827229542081179,17595795979135813872,11413641985416032712,15917639738875279304,17853461635410360602,10820359551411808993,17853461635410360602,15917639738875279304,10820359551411808993,10227077117407585274,13441166086793643131,6922279639650834894,13208226628096937736,5907712514304296003,7958718539634873768,8531160284099858297,12132886358587202799,9997670503567991906,9083615694236733508,16026069845095812190,16685173385837814215,4321739241022193946,12827769716812395220,15917639738875279304,15428462316217205166,9809487963615016065,15428462316217205166,5771703705112800710,7671681842049620191,7906121383596545151,17795075044569595192,267393143160701019,13055870565147488823,10833675876607962418,10656230445922718995,3191074590368993097,10161275569941155214,5952119697128223413,2921686332779170484,2911641479120257146,5798693304743700997,8548710433550903256,4672046953109140416,4590267044312535736,6761263912919432649,10625469962512286658,10338088260715321929,12665159325225859539,2619789790716391725,16434955727193443599,12233493150380712527,3541018881139668402,5916700112010905077,9690317986464067255,16987669436823757836,14078265152103635253,1058055340552258530,1111528309983511519,2625014102184119528,17111771302692877637,14859633695942916925,12393006655149325854,16986755988351333659,11574842003016317632,6340126814180697654,4145585163176589839,11257768379451857135,16523511744299770784,6135771263550918046,6453934388275991869,5975543667593338027,7779106379135053155,7064553168878251009,16448941160245605637,7181753004963525912,17703095613754890608,4592917794041332013,5969316246903777513,18196369409124055536,158391249579966443,17166217745866129909,8366140937088969407,11603369719285314751,16799375343204680497,15331766206073844023,13571003745490693456,2285841321871463401,3287746584190163190,17659558956511152653,11729878151953388086,6651763396347107628,15031723819765623727,2539009710588176701,49161353515344899,2482042313991817612,10542781243838588650,15546976275562151157,5792107661901290788,16317246737630525595,9947445054920672731,13375261689542031801,14113550991372265461,9857360463981987336,10048171775558884311,10903961737750112547,2458821739998608501,7871027900879415019,6586892564065927186,666768622975746960,10791972611192588215,2655116495804968490,4217857328638599731,5080191983488001789,10871149695634063689,5680368691356147721,3982569629320923951,15021579494148421009,4673240442536839164,12895880157490928898,12528807577770546334,18241785952547653876,6113020987822997859,4249181776089836864,11957777857096516827,2342789664316756156,9460880196498007658,8534902169680737343,9030928585522640995,6647745569884872941,10935858241864339772,10812863755601342140,3329468921200269224,16735387407284607568],{"siblings":[{"elements":[14803494556827238929,450055207592316694,1894967607835298743,16207476689084727230]},{"elements":[15667835261289599201,7767145371646568421,17153930599471857093,6165477178966000037]}]}],[[4055058735454322339,1042050902873381884,16512589428607771031,13284335760382542016,11149247968870870567,5508304264185612215,14053696817082367211,13688152193331548255,8236596020497170691,2722621029745442235,14477387259138863875,8228452716253115535,8085729909585213180,5785785268588690194,923558169511783462,10776234928716960429,3392077181021990968,13453684223777806793,8861579224458920883,10838427064909424589],{"siblings":[{"elements":[17869135965739075295,9376404687590749651,1642698169842254420,1955885905818994004]},{"elements":[13908776069736708650,10556751953500789912,16164279508763320885,7246542079035228993]}]}],[[1757799454902788245,5813524803345845276,13566161605899632364,1744810345027932040,4159995784313551117,7205868377375573659,5541955222937210324,0,12033495322573387312,13700989764195597261,13345513379416333756,10581871095274283035,14917637282561279731,9165842903158019719,14901465888027634999,0],{"siblings":[{"elements":[2639149994205435275,6430970741260353955,17308244016615504146,7639089845157934058]},{"elements":[12933891440736029649,3211003802891024321,14688639299288241241,6716388689767701808]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[17206109735828519157,7800246827495717315,8020745982839718295,15714867855057488863,3032318802615629789,1169567726971474766,18077249475269052531,10285922619335735314,11648103021583209605,3996410113584517854,18021569007658151356,1121227614355612584,1592147969364196194,3073766620843520534,12172344610021173011,4468130253357913066,5363309130729316017,9060428272251534424,4327366249438306814,12824951185045586379,970387560941176564,1824699754772168200,16516673390223370778,15495504148671108555,5610781073527305718,9225766756719364123,14479804754371532149,16069417019529649419,17028164268165101450,14973099585692074123,12345388468971828985,10528414744792439808,17230049879188214051,16154658027059712015,15806738521538973459,6684427148667459238,11749556303403888769,12277889060912305273,7026639429275326762,642243559881271168,5613002337837507560,1314612325939215515,10637190245129486168,10947029513521575725,10695442475209097230,1990958710162532624,9599986486111589104,15654307118935242621,1889638351941074398,2585149121863491085,9584210455109621775,9973723166009271144,17569386003946470953,8837034270941763229,8599448158215233488,3035519488129568086,14838852793737000347,3963604704401543679,5368414199855749489,1818383580332167691,7422759722975509296,16541699519595447964,13735133402274667031,12507375995692726335,2491323809709365610,780565099070518451,13723646817613359804,17357164720707240068,4923388621861509606,11015651857441784430,4591101115229292098,3357641610537422129,15139876664150598566,14395858246625084437,10527568225023487661,470348566177183452,10758053878856044596,18226941559918030836,15711582105394125640,11670821929750316582,12032761100378838568,8846227178474138162,6522102506143216099,8814827997238842364],{"siblings":[{"elements":[7403663046154704761,5184547189845195558,12550045180944025872,8146440534872139040]},{"elements":[2620616561727944075,13455578190656343205,3162853890679506371,3383643176103145107]}]}],[[12568851523521900434,13486339453494873041,16022602508437282783,6591834744224042068,8039069810456956987,8020745982839718295,860433738748881564,8899503549205838551,860433738748881564,8020745982839718295,8899503549205838551,9759937287954720115,14430330712937488925,5863108893575766496,3322597498079814696,5706193147191073646,105358956737704948,12769588227789528966,13601670405085104246,2554884428510903638,7100903673656153138,6363610724913829497,8271416998525464854,17540171555591851626,9972634055700694460,8020745982839718295,10185330823446668805,1711220809732778944,10185330823446668805,3971764544672310909,5986529989165736038,9914527832269484662,1340903002693636992,6198421651233978626,6992813725274413055,2089309534103086646,12903310228154195229,7896635047501888854,13801279900528182318,12519011564256559243,17453426628531599715,15468329301889803682,608968401601237151,760632167360965859,9132193120217266183,16477194334095282085,5980128023560968978,1637676992879171536,6406876268973330994,13423400050036037185,13673926583421653935,14565762864550634624,6822569992851249172,9864974683426286226,9390921115147158558,13800711046810456077,4226929932992628774,9283738585426243188,14082604664369984384,2331894460239110062,5296908088139183614,2245949430881952098,13638926972022084603,9411902587925494976,16506063017972121743,7278868702807602665,5296470587804110171,605051741125854562,5512343330020760753,5439520614893866553,9151340321706373260,12696461699666028,7796612574877181487,8233860263178259333,8440818945990497827,7759118584134343147,14050819452224445471,12955884946349458147,6935765213750314259,7508056181359164885,17728082411186894417,7789069528794252307,10831744070061436559,8090037797974398294,1086216888430392902,968269130841448726,8469793033662018788,932570630753568794,17045041799724396242,12346098282641661392,925484480992273718,616625149005621190,15625310514265274125,2969754306971991516,15112960016435292198,2714593646548223803,14691258473219880051,7058741741062656858,10792319589945326776,12001679155981212862,13709029598600613382,10302719946634747239,9157983673641190243,10077419301323658001,3486969186309065250,13127085754760621363,4344106637635468357,2505089471075765343,12609944992958393185,11769065904163729364,15764836287148034143,6432754146905244912,9384485014784054787,9844068387680180554,14189002165756040621,3970970379159128000,14921374687629128892,6663265284232690864,4272896423447095704,13267452049507920317,5305092573447486029,9882847417808530032,1955458632087781447,5153072873659439121,12496258585073509253,14932326074991487457,893494028453933052,92619923863484465,13106798075134962979,12307506967155615648,4792639378940841311,8368230480654297493,7090766842476516498,9039749853692084017,5966382359206431257],{"siblings":[{"elements":[16692448271281130410,3187497018166977368,8034596417268007797,16605404827894224620]},{"elements":[12635072478538248330,3090966620156030405,16060771121752955262,17224937196647426864]}]}],[[13628433969114016972,12778526840259038002,7004323718209487468,13436056313352377902,3554030956914896677,4132359909270322999,7018018891731266510,5447018842539175394,8947609248115287326,15983184040504519326,14053658429640673383,1871383641961483664,6204044611104548522,5050916011512960568,13164524452572468375,8699943086749654446,10629612803883739279,11435065672278460052,2398305399662753961,13082243461322413212],{"siblings":[{"elements":[361023892814720883,2802851863423616804,16229132839017315226,18012565281455339549]},{"elements":[951928689791545203,5032565514753380370,8083889197327567118,12066974764625898819]}]}],[[7335795537476390350,5088158658773565447,17682321437586743488,15239205214676544730,1547342429330501536,18035791690937514161,7876542526594800286,0,7117381763791308846,7971559057159021496,3624022328145637872,13218240939827917196,14933722151847312305,5549661642461740022,6134676901123040341,0],{"siblings":[{"elements":[6439594996995205453,17569676438462802795,15426043897010723851,17647546004276170206]},{"elements":[13291872964328558996,11725562798893749458,5092116570918893300,12021871462687511016]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[3412195693253472434,2739263090806628184,18335914988503821622,4024542375942561801,16580221342493760501,7385706574569255146,10931305237197132803,10735123968659643735,4556138549252194217,17925413718308533465,9835162965092258302,6318678569775413724,5097667531440628027,2664423714563628572,2393870335844252222,16273841429939868128,12000692774708689325,15107021233822851232,13539184862091635673,7131472704068150364,14171567647552209080,13682585575509055440,5243676816688081766,9854578753073605541,10137857772360513156,16683523239282020060,9388581527337813244,12117689140229804419,1787375472294384527,9257922817067603169,62994313467558582,4056228224960935802,16317659344360610250,18392824204155686285,3675394080291480814,17569843549720923435,16262426442662696767,18112356068702490132,7077521599674128976,15937420198197409629,12775437951874514331,8791149344503562335,3678072886751511735,7198695906132637475,15337879083669767229,4474360742768703111,13509335910208370297,17916421652411653019,6546517339600812113,6935094988368094689,6539446379457846779,17967961634982846368,1562185240324041821,12199916459840290747,3031554006478859208,12588251302515987070,6117715926863795058,17016581915592766120,10744006206394735934,8624591639795837272,5027661145962814742,15721809654341767426,7810692512172096776,10397681266641681910,7243790059580049608,6026614052344069060,11580747199986689040,6387995288745679597,15507019663160678426,7652989257075705396,6130714560261813293,8332366594857141646,6824679170157741048,1870113101842672080,17790635865190012656,9741623006587688082,5345953908585379200,11386056799211077554,16357766999893083607,2682905442587942448,9894630896923956439,17210516826061373659,10333063588815395180,4989576425065773290],{"siblings":[{"elements":[1993637377174882501,5362507902811136506,16460030588141874603,15030293418421424676]},{"elements":[608309216059009087,15657505314169978897,10976396690985755658,16681478498527425210]}]}],[[11693288843916162630,3674506074255259215,751222720383876059,16040782561202035488,8621679501448010289,18335914988503821622,5815756889360225356,14437436390808235645,5815756889360225356,18335914988503821622,14437436390808235645,1806449210753876680,15115347863096762490,17659254146093247659,16660205509325383109,15393093355862057463,14000369862602112133,5639406821515897160,11101279493030559036,13652996396934053259,14108022785173841730,9854589435957110942,6428573313012750687,8805076281337866453,18050334812315989005,18335914988503821622,15847476344463517009,15451067087364921693,15847476344463517009,10059056777128563688,4397617671565720098,17549659015090827999,15207497466109520406,8710595139470515262,15288477075265269211,10898315358550631415,258298414599144696,17457865472398178986,3282185036862206637,7447901491516988299,543518491870935078,5880890341848776910,3824195435578098017,6476562627334640290,17252045850910669635,12759377224837141959,17542176464021429027,12116667821082211085,3754789954007189525,13942545125479339719,16036891427057703826,17937748658360515634,6076268593287472458,18328184232513322863,15677273916839560872,13242815842710527516,17010181874806006077,5599181311580982436,16101976053758066591,4287485815817063166,7449789780210289060,2848253173006765824,16641601147982422906,3678150475605606981,12437466727980491815,3024534940898329364,13136713137037396123,1287016450398248651,12888625757963969235,16446517429809124422,12864528776588550636,17535129722125721845,14588652702651228197,12615636963362815353,5035003209328742430,10865042546074740428,7013335195204026295,4037461492533105045,14937951114010401518,14347724525273471710,11914730085209341724,2651790977785076205,14152286708133134596,16882439508337390337,10502269455947499872,10080738405122791829,7312381029862736244,364124545931287393,17650666050325788365,4230947073431754809,6558315871399248505,14199927468595195797,16310649984108737386,6816798647958498459,5877214958259044253,18085776411590100720,7412293771161484475,19123733122639839,16374097645412217907,3850954203357604287,3319305794099569471,16978530799581284006,12168136528712517473,15104650545886298877,5572296457562635697,2298655441410878619,4815456833795846750,5354687803505299970,6165756058863798901,10555297903237701761,13561796253427612545,1967823748985276582,2033797124429034693,11564141750608094494,5870406619571941175,15176190026505111509,16068297991123355568,9861947678572387226,504669524917305704,6246570233982615614,16504831019220837448,6533819608572308175,17154432986070783251,16362383099655421488,589247448809253482,8182341988620718073,13265570648945627085,9650403981326218984,1532086222632796252,8818113279883235701,12372017263745539443,5900258201043044070,5600963957567841127,335435714521202301,6071746849000108140],{"siblings":[{"elements":[17295251543282291103,10481237248280172517,1552216229042299880,13527247474817289753]},{"elements":[5673898759496293924,4636452871475736473,18104237363360020046,14791632146812083222]}]}],[[7149902472396788361,7055092939325704708,13428205209392956360,5151013407149054801,18041214399945167420,15209321776222459744,7465168663832130225,1413295923059415612,3636445619407208758,11081068671129385317,13649099947354963193,10214652796903580546,16582006078318926824,7777314018496634636,10833224180548648194,3469953146976414921,17506210724829479517,14855518495746897214,6552913806606232487,15202812763685360133],{"siblings":[{"elements":[16500474586841518989,5211959586037462156,4013171024482799871,14272892486458278288]},{"elements":[4359409371571848320,7871270597332206518,4059018556858203473,18371896080309768692]}]}],[[14063288933699853690,3167048715921901565,12882640912818776164,8836228009216620384,15524936544255522435,6461111184770076795,7799870899964226454,0,12646722730335704170,7612898736546948436,16002449304043360784,16343969006814157348,15111092178499025348,7335014960431901073,10297527550813252049,0],{"siblings":[{"elements":[18366802444923405891,2211370819493708938,7063409738940940665,10057038069816686293]},{"elements":[14652760857554324672,15304368083049420521,12783349036748574602,14041648391144364018]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[15758775234507621717,386873473794195,5809584622623378771,14306751210974713097,11302554983959589528,1327832789599027380,236502180870392261,13264905772134066913,5857506752267947624,17058040426918110216,1342694698541376124,11247410261659140067,14350114415645219099,4583230930005435996,14076503119706401870,15880020041488722480,10627821187628142573,1044749384776247668,13803094214927487198,12544379753173392690,13057050371697995823,15330579406842572521,9707896952003541119,5786715142615771477,8959768511509209644,7466737346920902526,10422822089882229296,3504773151285322564,3419470529597640908,15847878555525589235,11410879681056200420,3245040583009025788,11698930509459870103,13570140684066883333,4107171135279491735,6816442511716333526,13187679564150780741,4957755858430971647,10756562738671628321,4016481060180503199,9005810410597864305,5421891320356037402,1065438370161549321,14370621258975165237,3366746491579372093,13006491237563855897,12466845178667283423,8450232994099053767,3884423878484462695,16694495941341337565,12276393389691729961,16037686545199925788,10895977186829848590,17156636392074348353,16170249794752475724,8130522156784339061,3758135148585897412,1504470367743606760,12820235152408801940,4728472998567873843,2824641811007953243,15118259416555888165,12215493150006810512,8316066871495739628,12009914754943290636,14195274612200124758,17522726866577553243,7499475354690611506,3544346123845523313,11718047683762303071,13490728387453084563,2218114863523928610,6026027352978102532,3747782856048583946,17203016452260552408,13031495329552308162,6244324079390071668,12856980774624272255,8466864435764048595,15680223617309057078,7581596273487594510,4663524874409993864,13442298349819084674,14052760883976538360],{"siblings":[{"elements":[17239242580999488077,11539643569776883494,6361888208514807188,10670222042682017864]},{"elements":[7372999055943322391,3141364051179517969,11032666934607065725,18114007743554457067]}]}],[[9107796823381699083,16818241499348717087,16299777022319025518,8287169742405572123,14699099314920656807,5809584622623378771,10697299198877963402,6949654444384035888,10697299198877963402,5809584622623378771,6949654444384035888,17646953643261999290,686931869734721296,12277077101639136446,9373775484345173593,16927838833764677579,6731040120382520735,17178901376583782787,732272106152784086,323922801612545150,4938180598924907329,12610176006145251842,14090513865260612094,13325115935048046377,5350073592078865826,5809584622623378771,11499937610310316683,16850011202389182509,11499937610310316683,2823612234805332942,4454988068108764491,17992362047514041692,3075187846353868654,333169487511157941,1657672102874724837,1391804069625105559,18151133019842123768,1824056599270830216,16026355332001614367,2478860401263113184,6478622013900954698,12312665062271454661,10751244645681367385,17583015034177307944,7085969178387337840,10046314382640585154,7692317382467061601,10415098639067884902,8515670898749819086,16097968506620855260,13675850829352187894,10605925066695767811,12729444118303673603,18326325472211029923,4305842772090829641,7443549265999355704,4661595261570924313,12061374068825047802,4223456727895216986,5256778920416722124,12285444181740762369,16391412819737916128,105302417215243149,6855855986647499852,2185474606920837302,14886235409468280164,4355137943232737784,7740942529190427803,6403361374815893621,15979611646585807779,13476601533329594076,9182543593801672088,18382739651893550844,12232941317970144654,5630799685241771440,13300669121904750266,13519373685706170885,2532523041632905735,15815424794799502730,2764240616555594803,8906150180724756856,9359919687261925330,12085625784283981308,2169954057456848182,12848913780891347344,6334951066928742904,16222249722907194557,1008688325753771903,6391221410536133007,15825015942030080667,4907721460363181304,7790425883532150709,7170057247673480894,11882566560372160182,5504823681602105830,4090052634325766907,6462815598968796558,17383144396858425738,7599177732939090331,14590305675929119245,14798772097639128559,12885809360299891957,12914723663073765058,3104865079131596208,4713981446923115913,13245155655860233196,12928537471888237786,8316642678987068554,10650948371019096650,503266753556309915,1449000362419955944,16200087917480322012,2484111521637008457,5103151636169875473,16950738430385370372,15681202601550737384,278843953556347560,6200410933691527772,18081305117116532570,166722311021798858,8021257065370994999,3639174307801632297,7712174943299924978,4782016823639109445,9366088105873599886,606223089282100779,16803289687860378701,8241881421783347042,14296993055739669854,6098754487210997243,6341912025926170554,3087952809115552557,6044847693496260898,13961137801513430290,7991716930112076614],{"siblings":[{"elements":[10376632350556093054,14216402888718437442,4209674996809242111,10245531211584641005]},{"elements":[15883353273624607840,8151446226799292463,3640610432309867923,7890534674171304911]}]}],[[17564223931525120751,7887772035407015165,11297309314104610991,276705538354932340,12445421676552130221,7565784270918899682,18428797228710100292,2748137881251995849,7058106410888604458,8215728730188987041,8330217421702341739,2510863598825344021,17316944038358566315,9855609960628164493,8216889891598238320,18040959329479238426,10219450620496282742,5686573232371170317,17240106342241077094,8986614965683243476],{"siblings":[{"elements":[6161650872761446993,11530488184150616916,10060406989234682147,8745351266936470938]},{"elements":[17660913871007520747,4191763233548592744,5545394357684083149,14697840016045487574]}]}],[[10373340152758143730,11478285927660861791,17195770629166242886,3386712628216159612,8708198068089452076,1437414520354065298,8814444408539718713,0,4230668865696359600,18341893636228038524,11599117766980568906,15032184600703900460,4233691484353327800,9910305576808316993,2354289037701443659,0],{"siblings":[{"elements":[2167644689988817793,4745666844121304494,12692876240113977440,18434217390641289598]},{"elements":[8589949087777298060,13576087668975451645,16067660253268944134,15206352539425536852]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[18346899977516615095,10490764803150076522,1931605832967235824,38239881933906693,13140370817260528805,5954262104438106856,9460715029756156361,14452166319600211276,2018534208476214406,7468225848654968180,4984915189116051431,14017727622073273034,12045243994706045572,975027149602640168,15291212086988845823,9016088194959256918,5810707897866622600,10685499327079018530,18065216075082972452,14689121230864581956,7866766934974941056,11132228203515475943,16740179830807628444,16227017628881870682,17088227863713715073,17594504128339642335,16163190584151242906,1545852341769421530,18094809352095552133,1360493184083151245,14317814568263390243,3795914636049645009,8060273454446325223,1470434697264714428,10788577081029383420,1299470864393012035,2082035309727907694,7185590874393736317,4144898093473204736,2529797676557145786,18345879914768606624,4897984516724556982,9105269014703622117,5065422576308790577,16079581666811729997,9484852438571101305,2359182047114282532,5675263973195107838,16486988799653323265,9848523351617181191,1245665811114972785,12611676413490690140,16994079073345790720,16025414312769524390,2471073241886996783,9528050881814155379,17032717627597584989,15558380230219751105,11642007488597708942,2887521161702506939,17570166039082703253,1014192193089153080,5642714960003923427,15409283217250040164,16711717155830752647,105238444331414708,8248472019115256613,11967145441104870159,3164540172916207272,12869831937337117735,11224931413882151380,11535688014285463962,16449142642419504141,2170165276990944060,367239316337770399,8624074108107906941,18359175902018995601,17518045983053812851,4720115108167000512,17998162632163301461,2687527003086175211,8077392948074537619,682277279617773654,14453648997109414865],{"siblings":[{"elements":[14336277518864796310,17635039444687382691,4047653584043719415,13143979430889367491]},{"elements":[9386819466575501464,4695457175289524053,6799857909187713340,3125732624066090898]}]}],[[3827810868900587620,11596638952977689391,1518645946936762903,6981872052976935479,12321181102274866869,1931605832967235824,2325333026075784629,14646514128350651498,2325333026075784629,1931605832967235824,14646514128350651498,16971847154426436127,3598425527841223583,6824655156519568443,7112935303665307818,1959320299402071591,177848541394620476,16335736199265030097,8762091084130540208,8215273849454148916,3620489357013989394,1328295604890822364,7114667030001195213,5003022290956087269,11696720298374355110,1931605832967235824,6421593442322274093,18118313740696629203,6421593442322274093,10448357018059646132,13392640520873055527,9472148818174659647,14866246095761165759,759077334290313296,6290653902663300229,10569952503842517982,6684050847772799423,9819273825760179993,10060118139706087828,14817379018744771314,9854518487925100082,1657613351387159916,3881272306595697032,8100870093634606180,12800450494757209202,9061193462027288938,14135103144099397615,17818635447624548385,15000104262624711812,13298119827230439480,6185530691432540085,11690906390564561926,5728364427306364855,10362111924003303428,2420538809136353058,14256983615105605897,4405648456824418266,9986620246923081203,9158201467742061845,14103116889057652492,18132360039148194351,10539499247304137630,16970695073790329094,6288699485322830446,12347625222029566779,16352990786833875505,16297541420202851542,16284883156646865191,9448823324087618413,12761830211638221754,15293275929641461159,2991102580919173096,12255559925097457146,13232543818248228775,7270696533643874625,5839878971494322301,9609442929325197107,15176845693692536530,7768524644628890903,4163326289229997559,5156611380121513777,3632291204927971057,7157802913394290107,1301566320222840741,15747144940179957667,7489082998003230502,17484637906078364320,2491268008720053287,17027254058648490187,10812511387064226805,12288322432216086522,3461109380053669694,13804501673642590414,7812118655081306816,7164799545944327511,3939317187827396062,11328608733144692902,13002057476523195873,5849016547512087281,13425866663808280082,10333338360932671454,11140842592310673864,2154202892302981718,14354704761045139761,11091383892023736593,8835255701152451598,1779540750426266890,15564885717321426659,6977007863200029077,16947585206451233909,3186272392156805064,16547063915915696925,14701414775076215952,14783894496990849847,3421105353354460600,1041910451557210930,11550908500177656084,2295550561820228569,16029250400943598000,12537305352845336557,5889828171066508552,17066388027648585975,5924216790238852104,2457799645277470472,17516665792810773031,1546608078217599540,6528571744026726204,18390894037780888957,13921699485990112848,15896790750016384607,6227563769634590296,11656450477771171568,17821267130437980274,18250153438555683775,282358681852813977],{"siblings":[{"elements":[4046453698834187955,17293718353703763772,16214756183322911551,17603946120414989820]},{"elements":[13406319966535674044,7820873334114663443,6199986413930180714,11127142303304301945]}]}],[[14516055666494514825,13289933922300040511,7259285159318432577,759116758778734090,14322254731393486960,6892306176626242757,10584797002867159288,497199632014436681,8474272240405827452,8489966499264984760,7811820436633858260,8068848244406171567,4133618909968392538,14275026868520297773,1462198529447284716,16578461284279816402,13091457028934935966,6494861795930815471,3288442164247196278,12962155174519846642],{"siblings":[{"elements":[10661792643538587680,1007169402045686361,1067969381110983065,15077788361169662138]},{"elements":[6781834578833045044,12221812894053650321,5635446760870259233,9808817511833323868]}]}],[[13618255759363743740,443594770647103939,4009570430826751808,18281218736317408495,6441221425617642623,1105233377292468808,12629156791752456936,0,1486852813743198448,9616032275172512247,6651234864162374360,13675655985376603171,15785041321535901747,6876030560955259236,16776643558873918943,0],{"siblings":[{"elements":[14437034261709329579,16872438732666838320,2200243178972610694,639446699754941019]},{"elements":[10018415284260915499,12768350176002431690,3732528635447738590,6808535991266744970]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[8851675123942984855,13286979971740557537,9834126998565970596,5809584622623288696,13247656080055627728,4777901864804610876,17333284365170677963,16436158487933390318,11490477147555676912,3072761297569234820,552643525674882018,8370546490309277392,2333494491959714090,17448991767313658741,17178276216956238427,11133046799753326189,8461253717621928418,5097960703174945929,16493020866127033924,10035082652103005473,9849864816006832510,2833206780844870255,18116694173237948464,1496777866531997447,799526242907756988,14127663263966452127,760194264724433146,15095308076896511973,11135461737293715266,15403897199445574929,17445510800734720088,14429340298281640729,6211456952353734328,17482060761998425245,12562394992956522618,1860693813630035491,8738934514331990160,8085131640039682970,1883824595765440983,3413781727385808209,8233761986726001183,6426306711136105278,3610557426250641538,6135560633250071285,12799631786109032592,8084371407196280122,17425411872350286189,10979313040582867127,18087042872504358927,4600987654125867230,1198356080759899761,933335246022977218,3354397481034292093,15818404046285795272,18007619145258756406,8881893302003597577,11127937698576551337,16588820276979915454,15572213127903066703,989673867378307301,7293001769981663329,3237039162689456015,15780235461315319557,15023714690249036613,4537127851533132300,6051776393843892874,17179768109940645344,8554315582424560258,10064970576445902910,12727538989908929847,1703492756478929188,7685564142936830185,759623113507426400,11012935820788927071,13355668965285845447,6295437776744953185,16074176728701522942,5160986149245930884,13748435125283087031,11766589459837687649,14728034349945049849,11470525794731213732,14104781483456996739,11380647532262937607],{"siblings":[{"elements":[14290926262318189984,4469540445357943395,11387126795916258084,5986630170827251557]},{"elements":[14780924131161078489,11232344161552745537,12663829209753110762,1955609769005186945]}]}],[[1751796706371789864,8389492722321835306,18398241455822516898,12481551404849230620,6158673682509727996,9834126998565970596,15494272243325544912,3206201856420688587,15494272243325544912,9834126998565970596,3206201856420688587,253730030331649178,16315798795845081075,12345617286940064661,6792866361253310123,1049802430279946486,3281935705472392958,5741482234814583292,5904146009442348725,9026802151100024690,14244077047937655833,972805788427491644,3540528314901970846,11800677258934604790,3713661917083986943,9834126998565970596,7173593803836324708,10887255720920311651,7173593803836324708,13931231699291943066,1718686147229955264,1830367441635091798,17520153745630452257,12130934728161762798,9938929652248734945,10798081127531041144,6103847516307323445,7603934984614081470,13006415652243995197,3411961269942585983,1371941760253594284,15965446912809833923,4159911122735153866,11181996571038500351,8473339972526576558,4827834245025146423,16725826774134689346,11325156676813835069,9017372153698496177,228539907038475916,3631134741339283217,3975876326832343084,17608149845613724184,2421402232079489497,7237394485313025860,10756671975684144627,7060868958077016543,4747469664346490019,5604287061948371019,7596074273049743302,6170398362668888879,10101736652279867004,11376953623689775699,7005821086886662529,11373537094418394787,3263697219215796197,14422506754818159561,8338759560122554993,5834752075531293196,16838489116045593730,2277099745118148376,15168794685146392055,15659983735717132908,17530559943477288011,12887899587968767652,4694206512985591318,9787155363835424205,2549846858199500109,7520539563797704360,14325852401310341857,14187559961810996798,5481782358744452159,7690003988671768202,14702676442768744427,1117714596634099755,1939228665833066226,7350040844208542555,5073313149510311520,6398160991995155259,6263996512973563020,369809165169082222,6745657874209489329,7874256562363327719,8366070543551441211,3199319356027163291,13065321376847202778,464862030320585609,8335120598956940083,16785710171545428949,15173809620505641152,9975280026350935446,10668951428963860956,6955401300152655140,26081216993243462,10898999547843426977,15473192981392820742,7829034777326749580,12457092208548965403,2513597787081685726,11603578282034171009,7964014775087083857,11627859349186817015,9028441345127897938,7752578369789577275,15262599263886190641,1088713222677499125,2486580434354573426,7807016469258081214,11615083690340405707,9219585280574812160,15243260007799502516,15751517811300718846,13909240223419813949,17467328089855141036,10933531786569619037,17173487636745223952,9685389296147657319,6048710545853374136,8511594098420698907,11415795460813232274,4051737336937745749,7670601768762309539,3198463740018638617,18015823197165584178,10068917897446064358],{"siblings":[{"elements":[10834109707999347800,5137985358532195499,8044026911785387189,6052233661381983820]},{"elements":[5619320613158431863,1528630147896630354,16652983296762980585,5010093636639889931]}]}],[[543999246645417931,7832449733635770231,18317925805877893854,8008823797246879158,18406022554899805630,3387165976728519255,17943377347328959293,17289759839008045660,17565703771353674395,18134317074321065052,2919777094572016528,17129855064533691110,13881099474227710250,960403457951904061,11052618280122855343,5847351931708347748,10986889443977264112,12086543538419102254,5228996014904945642,708834349919269458],{"siblings":[{"elements":[16912218003626974228,7893909105721772622,1826738757198229904,17714265052893406038]},{"elements":[6108805020812753779,3238620560412546451,3231179656789038909,6108187043030766903]}]}],[[1238678717488428450,15129214126485461972,10727324889156019944,16771230449954654591,16789500407338786883,15993360167019080828,7587373205283019723,18446744069414584321,16979503115099244163,7286923233158666210,11121300499875402987,8285838861778610135,8405509282176162101,10280129127103404520,7731246893292818696,18446744069414584321],{"siblings":[{"elements":[10975739273648614802,16335846137353776587,1277929282730576027,15073199802553549159]},{"elements":[15989553076184932837,12245656146888829078,1685863180610181493,12107995823179721805]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[9595066366564495294,11539115561636369853,8612617070848643751,4361795131498038651,8707796704569096444,13195197378162339931,5885244333503146473,7493274817038693156,16795934710077801910,3499234697230127792,3538015482856514358,10821355231555160607,1042827209683717074,8393956465900962537,9272902407782185898,16695386737328026034,8664116946917984565,12963490037289354029,1001619700841149898,14055163877067822309,16833947769469238252,13623661507294481959,7061230033175645404,9096967242861555052,1492338408286795741,4334043941993182426,1455509862721624005,873371923725843788,9844464102038836705,2075849575805447782,8244551275262799336,12483909021902906715,7470033179270143450,3493932766942357912,1811225424132229303,16353192859594085411,5314427956638463438,14110765914380064978,13767387029055241068,9344676171163636723,13241371923472948827,11726848981359198822,17377628440113285357,5326698555757237587,8793956657221348544,6432954316780697776,15597543765622992376,5809592268820511934,11214718578173390920,5598528490448283499,2812120349198523146,3092520960623406858,12739708918433074581,12837223032511295411,392629019916212060,9551710552136969016,3339446068431264763,16109905137264465741,1918329278681355689,4354157398534296413,12123084177537100649,15506665079013507325,12669324829703513360,13474770592190961927,17009712799779184032,5973322632799927547,367945653486032031,15781838166733272014,17675806655345758459,8827499417494022930,16440542757477443344,2581119749029910280,12100419831622121759,17963909715206254422,16157596225545606325,17609254166928834745,17932850466158622105,12626730733881765623,3545666113718723900,6441169949848482743,17860148745037688574,15345669789290268651,4337301300904067954,16795262536983274900],{"siblings":[{"elements":[11066942346539207429,2281517773770593240,3110504150316556963,5708250715759567868]},{"elements":[14780924131161078489,11232344161552745537,12663829209753110762,1955609769005186945]}]}],[[3677775789541532366,12126848940377820297,16748382904521113303,16997086421638419103,10223759194876436158,8612617070848643751,14962632218850972497,6739647344312824334,14962632218850972497,8612617070848643751,6739647344312824334,3255535493749212510,10850544767605353637,12445193221504665067,8972870829743023232,7329855551952944506,5464371923881536580,1478637669536097505,11714509197796201964,8404284071399006622,11373445153959431996,8309653001870688614,4264714784499836729,3397708215490287024,13250718331811249354,8612617070848643751,4799157100458701877,18049875432269951231,4799157100458701877,17948473456644096755,2130077438777908378,4401098455489824347,16485388791577771477,17358894815686725218,12573168261969771130,13514573077680596163,16558331727819978574,5141547200131823995,8263669158640520609,3588018599289365264,15954469463579694721,16130783788780831737,15034645806970366418,3143666833596138578,11885665665193509987,13554275641029902035,8144254728386200519,10677753941600998869,16614053460040360964,5785455081096563310,10489713048253857522,642242137507931170,12742856495439589372,7385423969714211969,14107726995673362398,1513896259291586798,11515183052470703448,6218377662140956159,1581730791669903654,6462125825741716760,5457410919896037733,16476668901955851544,2851295197359011444,7886670295950051131,13430841895541268379,6784520784572181282,6834628880162834567,1221046786359825338,9653410342887851886,6325902756800380232,12348870366281467569,7257538484753249204,4570920670976555197,1750698782069266335,13283841397899450013,4808722708854170649,6957970988510958270,13217236330618340235,17554344151773800787,8221019947560856825,4297536419150456975,17278978471644333289,15349315518525184790,17173337238352666996,18209510328881252100,10547223022119598268,4522091984787282565,16687709274388595640,15726123635392424704,16604535387513548258,7923357127564526431,638537304990734750,17106176772930248561,6540739782332116792,95633051776845358,7633447124257433643,8316332360176031645,14503044745565637870,10095495058303525332,6313261960216929565,6028665422443340205,10381326897018507453,14910518231273281035,13852070204292535109,5100707309402525621,4700474202562819565,14005151803964681698,6700412968650311075,14539822354258828496,7153458771810502016,3781303816239706508,3666052878197141440,3373092617097454919,2688114605584760752,16700775723825382405,429342063341497737,3356693015463270113,11529944876427169219,3747115010710087491,11010194197632163019,16463745367083374927,6991475984872027837,7290429765790287712,11610522082552411567,3608964085498906821,10114791922416269644,3528677220604252093,13080484042800763424,3616199334243213544,5396992527694428341,13647893603117445087,9535863289195205241,8748250292438080773,12600965246449435803,14953805621270191117],{"siblings":[{"elements":[7543020725479353039,9943924048308712501,14860555582331821541,12028863309424831757]},{"elements":[5619320613158431863,1528630147896630354,16652983296762980585,5010093636639889931]}]}],[[13702076710336873613,3514003872662091102,9485243969215319830,11430900306529932544,13915849232523178633,2742740473105652979,2399169087814207864,13793108118500341637,6583015874633323273,10330237182715324336,3609665108114945251,17811197625556765055,15639665183726217346,16352578727720314133,9342324121131674533,5482898594837497946,10416245254947718439,10647084639931326526,13865763862095434576,7952693388408234586],{"siblings":[{"elements":[8736163153397798732,15205660940828957461,17427607733199523740,8439262225863054608]},{"elements":[6108805020812753779,3238620560412546451,3231179656789038909,6108187043030766903]}]}],[[9810466534067095364,9946760102626904000,11081247808285100328,13604837330614753054,14570658495681633540,10051662035892012652,16683336043619972013,0,4712240692534584523,2670062259287302250,9632524426906737481,4990364649265355445,9847094986738371062,14484904682526800319,12569179567737343364,0],{"siblings":[{"elements":[6074671442091050218,14267558371809731933,9105386885882212001,12391953259930752997]},{"elements":[15989553076184932837,12245656146888829078,1685863180610181493,12107995823179721805]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[17565631475122486162,13112428807682437438,814657839979919418,10687100073143457592,7287583176578477569,9119957951894366709,17912065094023049988,12001559769958506954,1247349890501030371,5087308417645836219,7398662816764770087,16524655585167564581,11496023076072991062,2882936815197941317,18421628275382862085,13615285961234747104,1217449957276156110,10461960450316473632,561574932948938915,5261392988226429767,36963788263559132,9164850294867114694,10737997989809144125,4306952301124110220,14963079343147138648,16286627233757869662,11831708559580747688,10815796126821418460,510676066900126240,15541305163140882263,18393128724329928869,14157594831905582813,4329327111404598849,15357188344968816401,396764937644349995,13482615543640014731,9197483402030863726,16014565579788705443,11848667743940537624,16170822526494470097,2404997186846373889,7957316412688043679,3771898163941812242,14195364064937291513,567351891378815016,13136595019898101044,17422897611144875752,11932823705699681826,15599574133270197983,15479028145816002055,13608358995984024845,2916177584086613713,7687033070139185553,13404022303248111561,4486202424414820354,10426377083832067254,9822331989600191753,11935893039680802137,16920228551281010811,1499676085202553257,8480186318221636715,10285648472756480424,5738310774792282369,3607187035486427462,14168641485863246652,14098418211595676526,16413094492990064503,9333103647472289713,3112143557161723528,526758665457109891,5594545399592762047,14434557311662235219,1325332632391540723,10368959042329114463,3273821888404289159,14386742940437405981,9283670432780772711,12361895721614603310,10986471371611471679,2347319240314755218,16019526439705881998,4646599238042603787,1916663449684460034,10224024849529566382],{"siblings":[{"elements":[3586560659949534267,194943118788111503,1282749807679583513,8381895631914176563]},{"elements":[3560583152441324605,12581631521285452247,3424922011369377233,1328356594502091179]}]}],[[4869952380941436289,4133897440024983458,3163655068312267756,3391064538085196635,12063209440740734451,814657839979919418,7256049382203397585,872514753529547715,7256049382203397585,814657839979919418,872514753529547715,8128564135732945300,13873611438731106303,426301338526984141,5293607343814169367,8712904732064140085,3392841556817364531,15654007593825456153,487026586958272624,4222524730672883551,5998765422299476649,17043748020228681736,13965604432429099335,9954565916608868212,17129643024995438315,814657839979919418,7683977844843347009,6366876800424201003,7683977844843347009,5450742817493812778,7138313969662793730,5378221410097012641,13051817110786210059,7204043207789218884,12882432216770618818,16198952365311726338,653656369876723293,13446473516824586546,17443026962410562685,1200316562358463377,2917042644177294500,5280278135943318553,10195175441490280339,18003769932575463342,3028949896307725793,5045631897118975777,14072115036524919573,9156038560056891854,14336161477959252840,8169358867037293193,5510565667084078122,8532400708062928410,15819668646499314130,5711072477230997758,5617694810049100024,5289092139206170560,17948211910083854718,15702610557065776329,17820039369890645112,10305536314437324243,7778653961093424558,10739181826534963569,7486556272629660604,12795161661697279215,13603084336739241988,2260171674282085537,13511350879451225923,10296412648280484263,16525715752985650077,9145232558495639585,1291557989292904253,15002068404721212160,7940534770741127520,11858838484722988647,10686196301744485254,14507392900502644886,15981040131782803232,12574282308881908450,15346155508282545482,3455759589570205326,2378840504360604297,11550255775897922997,10230724852695183555,7514829349970477752,5606460618633080741,12366347042034674808,2993913049214957790,6780596302650478283,8461479796175623500,13033591838541269472,11410692015366294155,1514340744898078083,4766833366200861005,18318180113767556099,3381311218708385099,5395421321393324333,11402980708487079135,499105798705413118,18094279440843882237,8289644188287163397,8215559881366200291,15194418471087936120,14879068192015274451,3576816500412119210,15446834935382641478,2589235890671096011,8518158630665044279,15595369395255982121,14197309754841702680,15653504023967682845,782626445299686704,17739668811006311904,573100047808553338,7688412058319631954,10688691763345252999,11361329736319711671,18246860699666689231,113140348223522613,12433435870977038566,14573027597329857896,4068685141790121336,5336085481003500508,10477970973707274212,1119211224704897966,13921487458920469258,5100631567832983819,7345381407233160607,17523395189533725285,17413036329926855333,8485284379966581687,15840958432560231901,2930895191812502467,16857596240968314830,9745718092886384001,173097042980891760],{"siblings":[{"elements":[13786428917509416630,5757676217252619913,17989467378333371899,13456208089422354095]},{"elements":[15667835261289599201,7767145371646568421,17153930599471857093,6165477178966000037]}]}],[[10420250859703979487,15808973073257544062,9191211987603798147,1502402630053211264,7633373867314067756,13443846420745041512,7130622154433892171,5226026923004743883,1677758001440174789,8037095529204803732,1583289580195231399,1819875565553223145,14156908909661588905,17078393705038960810,11441962064795407425,8746217594735848085,11753243598861846957,11952881700699696348,11942977260967829058,4584254661050579018],{"siblings":[{"elements":[15169288892330851793,8524013976134078981,13604747508478252710,1086429854097792411]},{"elements":[13908776069736708650,10556751953500789912,16164279508763320885,7246542079035228993]}]}],[[17121268286931937814,10489678958893448360,17778634326655846215,18007742914479513499,8609175546586630341,11530014067842135074,11787566454981388069,0,15395083959872122239,7057905258523013132,16983196009406552617,8014646145404792143,16709997700698886860,17677304939703331217,4530981228198333862,0],{"siblings":[{"elements":[4186977713997339629,16944979367557821503,10298392252945049695,2101806341458829302]},{"elements":[12933891440736029649,3211003802891024321,14688639299288241241,6716388689767701808]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[5781702706696590508,13662327354992443691,11623780154007817179,17525937845302915125,14632754469829851216,14641957205239721923,3297827777246699824,5855599112181539124,11509392695817028516,8996949770169885038,10774090543656878621,3499628479670952365,7627006512654314397,539092893415736347,6256210000918350979,5472842802798002508,14700778086780838803,13087758673439392943,1708208512772009863,3003264685825566662,10329840800882214185,7138095256847152944,12320893618285114370,3894156426343985292,9523733624994930761,1541471203865384335,12334834230980935807,15817080528129019666,16614671390066004083,11723546597870924135,8912757174819037402,13411053182561685448,11940604134627218175,16950675630847758610,1306856219590989842,10370290202157120503,3150243369686803341,5054772536895410484,1815291437487276072,14409025738972078674,569262158035250131,16998007480498673187,5083141025107949116,8425669119615294399,1739380305956324777,8018079132253803935,11323771401145591335,12400056117937436183,7287954913439733031,11453932141971801132,16321119902882090502,17936555202059765610,10866369363773071123,15242409446563879642,6124483383322197498,10968382131857424396,6456728266921536429,17131591550754311899,2829580033172488861,11581711535064148729,7339550570358136389,15158782635994417990,5419842102578725133,8446083081242526582,5620333138957443434,811060067622728657,8086319354237098028,6073745776678154603,9849951894760546383,10447095073640151752,9278008499129659536,10135794966727588213,1008602330574766061,14350081475584264313,11278314626909270489,4788287555102580014,5130722616702766410,4026363488073442854,14954435304116927614,5272837384722905337,17792142477660725871,15487834554947005823,5815441041119003321,1355354540002215760],{"siblings":[{"elements":[1208046589097712110,12911529971041109502,6586331158960140467,4153938827141931213]},{"elements":[8911856714153345054,5169399561089888125,17434826530307451963,13454008730270505488]}]}],[[17908633197964131120,10833446896781337258,14107534400347601632,15692398815798615203,16394718000700072202,11623780154007817179,8457951660344462595,6405925591629950476,8457951660344462595,11623780154007817179,6405925591629950476,14863877251974413071,13152960419881731302,16236874508117761308,11534713683907356503,16330602987708947662,16447583353198373568,5053830336050336752,15027012189573804943,14175205111769993424,17568330928996386830,10300255896499646750,14930938789048007279,16787348239376031324,17686936026164192297,11623780154007817179,2063250730939387202,1303442687688995178,2063250730939387202,9858665763957315450,6373340082213699235,10471850585181259183,7870574895395380268,8220280640559093627,9970375385076709636,1717917452596104611,15706946858988983712,6384938418532756162,12033382581780759381,8670277140789359525,4602722378076518033,1763204276269464284,11352589434940811628,14784697511974765391,10609761595169690449,6216147190839537745,3962462011387139970,10750437638141258340,17834780726790671363,4849668869041095480,15226332053115941054,11939956460880937610,3142437969896504660,3486179168401019792,13103934613823639066,6095131596503907251,208412187114192321,11394171058979989863,5815413916273580903,3623907892442964251,3979539956959939676,5235336163142590867,12527245088935978343,11283271002507131967,14172444282854212969,7385143710286782106,3950342721923649113,12835759335085702220,2718855140974140855,5021507642444346541,10688802424436663538,7077148146259170841,11274171114868893973,2685231273118269756,4486607623627818077,12892131627951645039,3645705615010886198,7181111104444205187,4797737493482382554,9229130586835399961,1129659743758419669,819313848501647913,16973110393109980382,1907714374046942274,17456819988852929458,6078572685301012473,11391863037954433791,5666624739899743373,17911173595021250711,13348795744879067206,4781433636146609444,3019246495107184524,8579797034572916362,17517259723723092339,6736290906336599358,11508199799156607824,4160781911314537653,9726515855683983027,14643428843182655157,15654292188126069140,9102471577585560360,12286250533734631164,12521150115775169453,8057842197190443293,9178824312466562212,3412953212479635166,4783220750615747949,17943603213439406464,6145052406970943842,2418738359869487987,3823891343877846798,15276864935598745031,2505516288966942921,16665503051117599403,11797468503108195257,7889816780745507802,18043324202687184539,10743821377386608716,15880746428968256569,4032748692430194028,18395605319453249432,14019757408691048224,15425148350230359643,5492264942691945226,8155989222407887684,11997285953714187152,4487071577846987206,6466830184188861061,8295598829083026807,2442950356943731233,8296055414315148627,15400646977188777842,11483269886869137843,18444094336950078656,9861737569869908435],{"siblings":[{"elements":[12738298243662764171,11897152880198277498,1840139371247566854,17669277521837504621]},{"elements":[13801828655127491771,11961602162819288149,8927753245666227588,2594019178789889626]}]}],[[6222485633048270813,15173260673520690980,4682084931884384758,7745278765911428741,9370902653409180202,9686149391496686186,13109775016338454777,17433922211454444903,3485129017531169767,17744941534786782070,16364312583238160344,13003492589706993206,13423648685399073815,16091410726624098681,14848005413558736385,6589500573216832956,3687040887998293432,2431691969569549199,12747367287911412395,742945012112338850],{"siblings":[{"elements":[11551485724518918176,13108305835518631748,14678402908160501569,11499592655445098885]},{"elements":[6732578065499325079,11964727333841346863,13018187331218345654,842498852857902958]}]}],[[9262302052385533540,15555602510345202664,12480878707318638597,3969982107558138150,3030676246595409117,17966747006315669697,3842518216350670698,0,2045451409909665687,1268005254968609684,4970671085582271006,3982783421899148420,12696398681364721710,596182481091488268,13491008550546989837,0],{"siblings":[{"elements":[13695292259704262523,1821309731733612258,14982465474540173766,17606451615149219520]},{"elements":[8679097208221398698,649047352372385038,16394446030474124055,9447460641531625499]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[5625703781286000170,4638184964133009474,1259374735575416839,8120578532916090674,7349452411640066693,12866562932612721664,17400698262681655041,4651106000932071082,17783232043793577400,4510327606801636199,12022257378550870614,15945891714241651745,12372853726486191986,1057815184367517372,14732241336230466170,15279731560328757280,1550449757089549895,4610037844003765070,9041323241583131901,2910081345530937543,985887998829914860,14395940474841304798,356243686924777175,5040936669774799600,5933844305558785772,13901438080456386765,6790865113319118409,2224834593326525024,12054021840616938638,7192809604801586076,16392123786125344566,10718822516171713855,10745136021587360824,3783412156557244020,10584110425643946273,2684884494939838060,10523378789664457666,8174505741967406088,11282548387232391456,8493992124861254031,13039842955796920617,18099340676038884065,9578383844362102628,10422895088755253726,4538251071856808680,14434679698014564110,13056499822836345862,11586149975187856850,12761822573592891290,14680592572379073272,7637900694687653283,656033748851140782,1094099898907430109,14821593700298872962,2535962946958717409,7163785091349350297,7496199419868718127,2877164516860826553,1421492741067673079,7882531635397475925,12799339425572509952,8989723021790017699,356418461784963294,18045785439390766900,17385085224313500287,1634414102768839729,7210499552625990128,14975764991787341192,15054538560924454985,13518518032092313277,9363488744122204230,4107553992381360363,8775452796445734146,10138976953390357438,13602198090448653252,11675802640258204149,3680436994752389964,2582767331279585752,5641907884405591524,14754028930205496365,3237519569899032163,12973789551492734696,4867394074201964810,12431843342953466789],{"siblings":[{"elements":[12179099493414986875,14815457148289069262,1481145606915669981,16125355293346588636]},{"elements":[14087148344668613763,1774479748128902785,17398878651719132826,6925124511054673158]}]}],[[677049243997162876,5801026658968030527,6337981691534081518,13840899640018391163,10889710862018731972,1259374735575416839,8153051275077286703,596018067681434354,8153051275077286703,1259374735575416839,596018067681434354,8749069342758721057,10068546876829861636,6108393388231628920,4085002990025202106,14312741911242750750,17412587132054654250,418199369050583688,6548136058486799536,10016020337904142862,6207137512335076863,3037831165009840837,2517855181647348800,10554309029341727147,18094156753198876468,1259374735575416839,8992500094224447558,8639912778008739705,8992500094224447558,11726975731589715369,11693901714431209804,15690445360047771471,3053255073263758488,18078492935519819885,15009085375684464435,134971799314184346,16727436030954086759,2103169144056474576,17492132019901559052,18115878763045314005,417218395898249414,4836708747260985468,6826532943011287232,13329997244014494287,2371794786043408934,237661260252705319,1111385230005580269,2593333928491147704,5313583532852901545,5471241558107717634,866092619587626091,13324615693955120218,2386931606091383752,15106518093311586904,4534483670850270495,7327909491198322690,17746538898827697528,9354096480151011321,16997622048226773401,13878917838979755554,1989874339878040110,17134859252572942633,2220366312772631037,15906286780133867673,5699880143505609026,9739803766464705831,5587059227762854304,7405776215900693547,5945171555805040132,7755227332693683839,11315841579847578750,1512009488521933580,13503492353808284677,5964909354522269220,12374140833190426129,12162823195224358226,5494393493481387631,12825155299781468448,10504578735681011408,15011764357226997860,6891342878232295286,18198991302663641948,15361129910774169005,16826418559986800481,3399416781311616951,2888616738093789548,8312698405463403603,2742149178341078562,6174059188496280452,13669727549997416883,2284605092528076770,6798316517304862374,3068040756840738319,4833064908752797006,5426671598804467957,5923414819629823831,6653962064365571413,5905235801548433596,8692682878919158971,13439319942610899533,5408990485590107810,10630157121267496594,1933476323726662388,4119746703374060249,9326719816967118434,5694222756103508914,13888638708889534925,2910573630204831332,8853065873321578343,3504133610104094715,17241176078063469389,16656594948898146977,11690470708670304091,2276737408425278690,15436428256657748158,12566351187629730991,13956229173883931642,2880778908841695960,18118729460589614013,968570380877762051,16257423525827641855,668107035372735117,15390981087628125221,2165364176302807882,17875624239633716650,9277908506044343873,13801518231145448248,3362624802560590600,9334820632328177560,15544462202854260489,883790663001025237,9480605704384012979,9987551395714268941,365852336596845316,5175456345534177868],{"siblings":[{"elements":[2119766644219598913,12872862176793126540,10734922943537894461,10582849057485718584]},{"elements":[10312122007154036091,9036066871401853876,3293924851231173998,15291344002345413233]}]}],[[15495771895988105254,6213233179271152625,15338663658234787775,14243658224563835696,16254687843465483466,8859765506876689519,2737100647039425894,13842513756486489568,10995081302596416325,5965519015057020059,3814117648973433793,5896030780300333283,12902788746442726773,12557110075210265855,9840203041533752347,16464957964123360080,2041278285870530587,4483057148522862823,3494527081849590699,5603596316503595262],{"siblings":[{"elements":[16587947183806920464,1022430153445879446,15889760388618366332,4036304809058418745]},{"elements":[5324367363105241154,11972991276670081786,13693754860999015207,12087428420128603708]}]}],[[4834440363527177236,4109699833218925272,9966364282602858517,15318294534974806269,10838016341220442661,4520240807498405605,13629768396347927224,0,16745563841244091192,17535378565203561238,14963104382247017202,2408847771560215182,2773202816691274327,14630572227587787388,2839404114270593350,0],{"siblings":[{"elements":[11844060130317088173,8956701020074811356,17024114729862611268,10451506362626175700]},{"elements":[6169102223816061198,2376585429332273411,17942399893688347877,5015034387210058098]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[13874923908060168686,10300199960485500921,17220223416712727809,11107917826713906228,16080860504613725480,18134296401397245731,8194394929420644964,577158521334961706,17558309524404453886,7462499894769427250,7806442614678325622,1288552523294564736,5928745459609368726,5673755939833451559,1376743317442148286,15198933849581950858,7573015836263811984,11548290280681219346,3048586463663642501,17924736790130764569,16176421463462789125,7400032287983233044,15731792546871809470,7943532610231399071,9191667656456693420,3262984601497837521,11548794947560432383,16935173460323565878,13440064921123574122,13006542764524135817,3200332762477917120,4727549247137829594,10132168364538911488,16818212172973425485,10153429833011927584,6098139687959497779,14527559769504347610,604659360669510816,10236113364972241143,13365343744988800826,16324715386374244920,12941087553157892178,5845088838124668771,11302395006148649007,14757239247984955116,7234202237939122814,14532807582245635211,1889883654052729616,14382821135875337196,10933403972710030353,10477969708791190600,18158356374030649371,848649292582758684,1386127699829388770,14693104195570201077,8557418020926389248,8465103855599324974,7678674795737258990,7968512843367564125,15134518985828235175,14849136868521925153,8200859219989098311,3125736942597523248,16341012296276127126,13668079212165384181,7587065128463574204,15516306994332084122,16992631783574963080,300488920541911522,9606976928846938977,10676817243288232823,13557774887840421349,2050879513960775803,7921519393270082527,12510688718189386154,12160967257524916705,17327790555543273617,5585739159986358700,13436395299212415907,17518943154379265640,45119396072775821,18248002885183339956,17650535637853523767,10046834664009893652],{"siblings":[{"elements":[8321586574402928751,11350831215799910769,1895653507085351149,12216094806571370138]},{"elements":[17728593759504001074,6650774988450794345,17384983616442277651,10830012975394552271]}]}],[[13988798512629653300,76253716425328447,9720388670929796746,1548769052874448837,10678972000872081822,17220223416712727809,9794176158596115729,2026404090053613230,9794176158596115729,17220223416712727809,2026404090053613230,11820580248649728959,13544866904491253671,1508524044049341257,16177277620117888502,9218068684094851193,7460625435618660115,14581023455585331717,4191273768828006679,12831902645852406743,10150234971378278442,6218710481120351195,13068904388938032076,14349008165164964017,7220820517938486827,17220223416712727809,2621060787227244695,9841881305165731522,2621060787227244695,2498234580914276602,1948421200922764046,9443027978162861716,6994897205817072798,6746497094135840902,14564511350746964211,16831736954435400569,2056373989216916187,12734170832192348800,4208322013663975627,2143482162082291677,10961739692902972349,16585828242741371314,12825332321073349918,12855224242854740518,15289131615815431715,16178865082648242669,6126770563456215444,11314967831051162149,3092712508609066402,14135477514485499165,5151390592540432830,11079589504367893985,4554275035609406280,759087744066793013,4716063733036944965,6328687062166235053,17122492330897146813,13403494676768996262,12165046964736682786,18171768242706016850,4499889398292721615,7639546611040194883,8478711167005028192,15548889025473187202,17829909962550759611,14731588264574577805,8938845596279872123,18321151717924116238,396475399073735456,6880860411668657361,17737202206394749472,8246190175691935529,16651904759104102344,16514590622497487494,14031106047687609343,14375777772587941665,18377248783886467451,10851631974779303762,7085234990686355333,8291914806463373328,7994519542791730516,12403577213146922612,1022843831225411504,12558853282718754101,10908306888185908160,896526436403640225,10927710552230741681,16216487141749341667,12216281139627206753,16224215395098127712,14815843269543878753,9810155420256072347,17703231211938946551,1214139682251219756,5521982296862822201,17218944837144903256,587004852284780707,6924610381785949574,727072259197312807,2427909203453611423,18437579200906443397,18265119955007604457,6497984190564580527,9833062871853791402,1710404546114930790,12025024772491311251,3615092381076884992,5312080124122607782,4744611673253563719,617785055946958333,4109679415990489410,17142601226805912522,1636577031909725305,14081177065677875855,2352124489388707931,15165060059756231778,3540697799400848549,15680242045861976924,11593685844168731596,17198012484597520858,12736666725130690089,9237016735828810625,1933058368617464806,11463052868591004800,9197603278783016781,12167701639262605768,18217540706334970371,4734585903824064381,7609066652971090719,16043948255073396199,4330786213873974863,8942602438630819466,850388319733276359,2401619309511840252,4429291596726907249],{"siblings":[{"elements":[3517731961418074301,15643631915143809542,14704079555053427310,8830626570097046551]},{"elements":[13906333527976971193,9910594232029521532,18227550812091777639,16164470906364818327]}]}],[[10698760992492616208,3084888054791991715,10504979538322072085,8672062314095562484,6538563662751432544,15414676715999535405,12668798161168817843,11732351557754657681,12506388983667251260,10615541933867894029,5076084454517619357,9711770352882639553,2132643363314560060,2389496404696519187,13998888976360429267,1523355177437193668,13885000321591115164,11688271530861571248,3492677459371171696,12564933426684726269],{"siblings":[{"elements":[7263551833103530413,6200736473050355321,1039316657339326374,1927184996573515931]},{"elements":[18228550423246657161,9016844207652041195,6018162798259459120,308819794068585281]}]}],[[11401662304208211593,7404650158923732159,12120616987038837908,7311185782560818244,12055258721168794103,12442120451283053691,3194116495516061990,0,14119196468290952072,6842419539661911785,10303680639419966196,9085484145295887451,14482290967145639534,17580357915848393175,12666759616004103852,0],{"siblings":[{"elements":[2513179685838993961,9259287110854884721,17125931745522127625,4315484801522633362]},{"elements":[11946980664630792345,2678972012831459970,8797827072970100761,9151819555952626709]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[3224450578647075915,12165712751178440782,5633103419006680988,11493295134337342176,17326254976767111726,15040497768065427752,17068747695981096728,2070135021958711056,11266547947368074009,17196201500327856258,17880589677582589285,14237004209817874460,11084311560596369096,4266574937343165060,5722366348059158318,14055573689545109074,13034681062097938582,4756471198169320681,5595050181858555126,10368679253103809395,2243893450744688687,17107979679673729713,1291822591423251229,6630010511335148424,1138906968938915755,13806912379760342367,2613038345576034901,17561849880319681322,1601130326224471768,1597531066573998330,2012084127101128161,15191364035229680637,6884259991631809435,17196068475351035883,16413787052602206780,5252023353830006820,825553712506901819,3947181967997444685,7257381028346369124,10981873135685283577,8352848301710745072,14004197552182932012,11245447532264667700,7080123586924873668,3577968953845760945,14110628317847127950,12732951413930286077,9925444275789517227,12967465905890319680,11396479705777394594,5561421826650650980,16245112556402503616,15228394940253802153,6426318629695872151,15977843601468538897,8098285179979927422,1929505969672845131,8112987869196542195,12021566813041088338,1114467968833865888,2611071761440494960,17968880708511351540,13074193547243221494,1059703104997270543,15737059687084314141,14794946844456905042,13227044856766877073,17143217588648521766,5748454528369563133,12685039917954187917,11288157634772235832,6179411481163140015,3874758693212010225,1206384404526474746,4599443118113865083,5584734463373381931,6136611417086052441,14944258110498715822,12474883356910797772,14308946048563388763,13137334755331465236,13963597645627481639,14465254100735638307,3494334304389204700],{"siblings":[{"elements":[14558427021271812428,2889616159627138166,3028504079954276941,5281229060922485517]},{"elements":[14116771184823831436,6357576774383995688,13501931163075412498,1114208703580065252]}]}],[[13448280129321627798,14184832580226620071,4264760999753648961,8684267825863703316,11540096098169847035,5633103419006680988,17929086713287469260,11022438742042731974,17929086713287469260,5633103419006680988,11022438742042731974,10504781385915616913,10233299991856859622,8096041051817582124,616647339418745235,17702256353323484405,3401807163073704597,2858363794882528563,6468473530378188213,9432439911715600556,15319531969909672148,3978008339442677304,4675777195118948063,8570244683106774459,13585257444459381479,5633103419006680988,16665733503003146045,11804246878047943203,16665733503003146045,4285274222770811137,11760308604722249425,10207862365438598523,12212890942095567435,9993158262681182159,736954933851108145,9672950575386075303,7952857189275572838,18283257144281847970,3593526112719002767,427775632172508153,7754042250414149527,9694557622302150389,7099829167389618045,15777519981516555839,17493605598880637306,6761961629305837681,15352357082232361981,10587216098471322447,1186407845470370944,4963333110095360289,5183020716315664450,5703057399647066411,1654005320245959858,3947216947333041453,6783974214217163215,1689013489307070514,13979456232858178304,3935461540017849252,526852840254096676,3037366594606732801,12264182439110100477,4891678981289992825,10683976087407861194,14381414872760763757,13023867804880331183,9291318119038699956,11309267658680205996,12096665809323843806,13800879323908434913,7174327047092873001,12306753553916010947,14232879251003089683,18164420531977468492,10953775806891900286,16259877793389096518,9625864982490925863,8534134395704118094,13051166443626080651,3427308511623505181,4727337347415394589,3453396440679893252,1684138076566235632,2352317457543417717,12214643506510543508,2611085211896867136,17856202544361752314,7277800217698677022,7038087010169898749,10869326517679843992,12137663335825974799,486491896416270871,4876279596041153562,18185680314122301023,15068514540196733550,11699983284397763417,5313633926205060679,18080277924750706853,6104594111512281074,14622521888511112461,15159579898446946314,6223059643385745080,626293859165316592,11067506214141118923,14049412274224744161,4343276081834489311,12709267438770432401,11738923289356649396,9027046029338967227,869807388680322678,13916569635788552983,8534163457168825665,8348511056798340915,15347654705785397820,17180257060609330311,10358196993038095993,16240222817772121908,7429053970656559990,9003081370840259316,11173882529172024683,7448031355626881647,10524525929540040437,11781343601179760136,6579149689263849340,9735029773692866132,14449081018226222344,9421548752611836587,12647656205192859339,9067851236147233742,5496246895245525662,3746197693689619493,18049022466208770944,15526349738630038124,790129979945703861,1590583770950262649,5500037066238389846],{"siblings":[{"elements":[6721740766564925244,1411408032836159396,13022652891543324015,2237109728225375781]},{"elements":[10383452154226125760,245290251193527986,17653238234088421422,10435157782398094396]}]}],[[7163828245400992899,6208789802991690329,1520393498095234823,17850125557131604925,1566108637863292880,17723991757094781147,15673272288241213978,14517555794516862246,660547752629125656,5196605275958006061,6716167319968777602,215845010327148844,7049858174620698506,15421018691863710164,4096225175798213350,6061796182218412267,2874778639280213280,15165039131876660989,2871311492653310124,6703544107971367030],{"siblings":[{"elements":[15844430972945815991,4510052531366082237,1988094269381573260,15027494130045863020]},{"elements":[18113916164610076962,9934973629108858737,8628759266336919655,8869508532199145062]}]}],[[13477491776046384791,2942914045641199971,15477477595605623277,3046687732765839070,11549530113843620414,6209609535784426207,9803824768471519322,0,16727626258957889097,5572263020212084918,3746522111553263957,5037592574477744612,16516030630447150646,499657902916821434,7878673128992292098,0],{"siblings":[{"elements":[397215759882307479,6720438653306664997,17757036026779907769,13549957236665085332]},{"elements":[11693229686577791316,70134777027805635,3064238334944269458,1614747907148339930]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[5779238018441521607,1633659970024625107,15132631210249071149,9192233637020066511,16987576514335488814,14537832941490526695,8017871923137398435,14314804699542886826,10901130489318013461,15285483815663082328,2430396967900556168,16276049452254364183,15227487508322773600,9872687341452455059,6211993994226713932,4889758649110072149,14915335055951661270,14174469351279425813,15222693756012869232,2507712364049933061,6240539615301533451,14664011484904827783,8048592190500641310,16905018051986877068,4779431974339347199,11903890813464622515,10928808714970001223,6111390108406334068,4234631642081657820,7235279605367545286,8799657935434031961,8286115099013562073,11454656292809441737,13520163168352385625,6456743497411690816,9372245902640639235,16981095607738972247,14088949113824064986,7376118977218819576,16181391623796515936,4306160775041015637,14684943054646970993,1187357664384853816,2678278548320182310,8915342001311324677,6820357556106716762,10047165498188026782,11079858360482382602,7513024627572737117,13416502641490652835,13349862424590596035,2534975422370036520,16303174984092936300,5007697021193232369,11025232868888114458,17497190273059442911,18378965578806711459,14650158696056524998,506378590434313023,7517599558713930394,3284540675228517227,15536832927518804372,16776631120837587358,8840840584683410056,9422443583642356960,4619350616359800110,11449017599009673815,13102563998095575306,7578815223018683414,4567644161714887189,3442591794496191525,7557521075610042401,8245698025078736508,9547655045181054115,1521555487622075717,12458682305175417258,4564571732197379275,10911026568935082680,14535719776674318142,8814423602300100352,6881176102900919739,14757102652154963074,2882892600394869839,13505407566117981947],{"siblings":[{"elements":[12028397558684416584,7195669060619656539,4877302621055009322,13144368516691639632]},{"elements":[3831638896680269617,11622239582132795001,17114360658120078056,13946956494708067730]}]}],[[3343692549667880505,16198634626183854616,17828341602867283893,17343923561744772965,7239721626809504850,15132631210249071149,3836379348225604529,11076100975035109379,3836379348225604529,15132631210249071149,11076100975035109379,14912480323260713908,14489809805973717524,4880220434856361330,13947179735898410800,13229685593822343426,15911368050061407645,6084143457799909927,3192353477317781124,4504565059227164154,4834107503583495614,6021179220503470448,17815725382551011814,353005752735087093,4007573482727368553,15132631210249071149,11549410711608607519,15556984194335976072,11549410711608607519,2706309929532775409,12268361366747451445,12099257585775883867,140131054861831523,8903974312821521182,10043570134653716969,18211956115240107150,2292372264651693774,14102742245736635927,16852559829722837042,16825505233759180266,8908756795421598266,16103162896097380358,8926793518491301862,12202061379809903409,12327521766857249950,2050769331733499182,17325107096621126508,6803231158122982594,6784867343172638177,18300290432345207817,10636474538463621607,4386574529135542745,1250494435896400910,123003052125317854,5448854097786247668,12602965604509595567,5743240162770844343,13132869005104318057,7119134903727636269,10562651625673869862,17670943082149306501,5165082877823307327,10034586095009347150,18403871672691024829,8521489955487896999,12635031104158178731,18028376459515519782,11908702605864831038,304061409946482865,15736258225763026909,4040701803252043684,17707666159320046017,14575644205272956477,3502139250412121130,6633713801200532995,7601434306551380489,13748955194333374731,17475212960816482520,7844896550427291036,17656717192009621493,12201019913972285654,1522224513466690172,15190450450888432188,860651136548303685,5110376993438385147,17377095422621159214,6464894716463618461,14702226779224557781,3702730735062817256,4998351497105793254,16054975751433575430,5880669708305179454,13997899952030131900,7728388812875819361,6361030057295611778,16190373931251736680,4223270819633636417,9714918360415963083,10221734355966291900,5199806404189904673,16625684062012507466,1746105439999395602,13909194948784929858,11627413399083340388,6820265889710087077,3485410948531934651,9053644199614520267,11848782656068851405,338159767400977261,9214092049969436447,4130836369973881198,16497171921411889070,2322484766562628158,11144784294901467454,17160963806669865311,18045676676463249733,10232219943606011622,129054393174406105,5131068677522791732,16448039553334225819,9137703767322409787,14571149809596542628,12024475215792790589,3373968061732934391,1170074000405821622,7745939968264153742,13365774650994659942,15268151864672701217,13358174864854562580,776628099070901061,7076599693818849408,9228233082293520279,247806449564806791,15141646506993617642,3335398960777298349],{"siblings":[{"elements":[16694149547239299418,11916098023714376913,6683167713856718248,12883762631643920858]},{"elements":[16680612008794498936,8640953519412144738,10181843617211023742,8267313235995818586]}]}],[[2407409934291764350,9258994182503114094,13139096448477754621,10231532414294393307,16869825209268617560,4033977720048296461,11970062223168088613,5114324180131030933,4035241937297597768,18384282130646381560,3119460359662332373,10263420363880015098,8264307291697762303,7684985082558235520,4271006438160629142,3582960565310600054,13811906650129963757,15000759657348015204,1423919909923382610,9186062269551114500],{"siblings":[{"elements":[13406981661575413696,5172026295240874364,6949218394557698042,5665430393736599705]},{"elements":[15038980373507792589,13371167328767946914,13237656934183842649,3552342384838824807]}]}],[[718450441488193160,3384984396605666432,16112609702389701215,11191055637634313168,13625870787139354873,11265718301513146911,5660733189084386917,18446744069414584321,1517354566020000005,5872976568146552498,4737258158776434239,15542363834192310254,10995560238825993108,535712946360398860,11220538357659625724,18446744069414584321],{"siblings":[{"elements":[4606284367567892898,4098215502233871532,10640429447122513029,17948520172198090941]},{"elements":[2266699753608788951,14951315295450771117,11343886449762297073,17586657642109796121]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[17565631475122486162,13112428807682437438,814657839979919418,10687100073143457592,7287583176578477569,9119957951894366709,17912065094023049988,12001559769958506954,1247349890501030371,5087308417645836219,7398662816764770087,16524655585167564581,11496023076072991062,2882936815197941317,18421628275382862085,13615285961234747104,1217449957276156110,10461960450316473632,561574932948938915,5261392988226429767,36963788263559132,9164850294867114694,10737997989809144125,4306952301124110220,14963079343147138648,16286627233757869662,11831708559580747688,10815796126821418460,510676066900126240,15541305163140882263,18393128724329928869,14157594831905582813,4329327111404598849,15357188344968816401,396764937644349995,13482615543640014731,9197483402030863726,16014565579788705443,11848667743940537624,16170822526494470097,2404997186846373889,7957316412688043679,3771898163941812242,14195364064937291513,567351891378815016,13136595019898101044,17422897611144875752,11932823705699681826,15599574133270197983,15479028145816002055,13608358995984024845,2916177584086613713,7687033070139185553,13404022303248111561,4486202424414820354,10426377083832067254,9822331989600191753,11935893039680802137,16920228551281010811,1499676085202553257,8480186318221636715,10285648472756480424,5738310774792282369,3607187035486427462,14168641485863246652,14098418211595676526,16413094492990064503,9333103647472289713,3112143557161723528,526758665457109891,5594545399592762047,14434557311662235219,1325332632391540723,10368959042329114463,3273821888404289159,14386742940437405981,9283670432780772711,12361895721614603310,10986471371611471679,2347319240314755218,16019526439705881998,4646599238042603787,1916663449684460034,10224024849529566382],{"siblings":[{"elements":[3586560659949534267,194943118788111503,1282749807679583513,8381895631914176563]},{"elements":[3560583152441324605,12581631521285452247,3424922011369377233,1328356594502091179]}]}],[[4869952380941436289,4133897440024983458,3163655068312267756,3391064538085196635,12063209440740734451,814657839979919418,7256049382203397585,872514753529547715,7256049382203397585,814657839979919418,872514753529547715,8128564135732945300,13873611438731106303,426301338526984141,5293607343814169367,8712904732064140085,3392841556817364531,15654007593825456153,487026586958272624,4222524730672883551,5998765422299476649,17043748020228681736,13965604432429099335,9954565916608868212,17129643024995438315,814657839979919418,7683977844843347009,6366876800424201003,7683977844843347009,5450742817493812778,7138313969662793730,5378221410097012641,13051817110786210059,7204043207789218884,12882432216770618818,16198952365311726338,653656369876723293,13446473516824586546,17443026962410562685,1200316562358463377,2917042644177294500,5280278135943318553,10195175441490280339,18003769932575463342,3028949896307725793,5045631897118975777,14072115036524919573,9156038560056891854,14336161477959252840,8169358867037293193,5510565667084078122,8532400708062928410,15819668646499314130,5711072477230997758,5617694810049100024,5289092139206170560,17948211910083854718,15702610557065776329,17820039369890645112,10305536314437324243,7778653961093424558,10739181826534963569,7486556272629660604,12795161661697279215,13603084336739241988,2260171674282085537,13511350879451225923,10296412648280484263,16525715752985650077,9145232558495639585,1291557989292904253,15002068404721212160,7940534770741127520,11858838484722988647,10686196301744485254,14507392900502644886,15981040131782803232,12574282308881908450,15346155508282545482,3455759589570205326,2378840504360604297,11550255775897922997,10230724852695183555,7514829349970477752,5606460618633080741,12366347042034674808,2993913049214957790,6780596302650478283,8461479796175623500,13033591838541269472,11410692015366294155,1514340744898078083,4766833366200861005,18318180113767556099,3381311218708385099,5395421321393324333,11402980708487079135,499105798705413118,18094279440843882237,8289644188287163397,8215559881366200291,15194418471087936120,14879068192015274451,3576816500412119210,15446834935382641478,2589235890671096011,8518158630665044279,15595369395255982121,14197309754841702680,15653504023967682845,782626445299686704,17739668811006311904,573100047808553338,7688412058319631954,10688691763345252999,11361329736319711671,18246860699666689231,113140348223522613,12433435870977038566,14573027597329857896,4068685141790121336,5336085481003500508,10477970973707274212,1119211224704897966,13921487458920469258,5100631567832983819,7345381407233160607,17523395189533725285,17413036329926855333,8485284379966581687,15840958432560231901,2930895191812502467,16857596240968314830,9745718092886384001,173097042980891760],{"siblings":[{"elements":[13786428917509416630,5757676217252619913,17989467378333371899,13456208089422354095]},{"elements":[15667835261289599201,7767145371646568421,17153930599471857093,6165477178966000037]}]}],[[10420250859703979487,15808973073257544062,9191211987603798147,1502402630053211264,7633373867314067756,13443846420745041512,7130622154433892171,5226026923004743883,1677758001440174789,8037095529204803732,1583289580195231399,1819875565553223145,14156908909661588905,17078393705038960810,11441962064795407425,8746217594735848085,11753243598861846957,11952881700699696348,11942977260967829058,4584254661050579018],{"siblings":[{"elements":[15169288892330851793,8524013976134078981,13604747508478252710,1086429854097792411]},{"elements":[13908776069736708650,10556751953500789912,16164279508763320885,7246542079035228993]}]}],[[17121268286931937814,10489678958893448360,17778634326655846215,18007742914479513499,8609175546586630341,11530014067842135074,11787566454981388069,0,15395083959872122239,7057905258523013132,16983196009406552617,8014646145404792143,16709997700698886860,17677304939703331217,4530981228198333862,0],{"siblings":[{"elements":[4186977713997339629,16944979367557821503,10298392252945049695,2101806341458829302]},{"elements":[12933891440736029649,3211003802891024321,14688639299288241241,6716388689767701808]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[5476891376197235655,7044817592391507668,13974119857005811796,13974119857005931896,8542463872071985231,6501044494244072249,17280822819241372308,10053665788850614925,17448962655787859727,12336908644746128088,9143020989718619471,4743203533871311592,11333677962792045232,13893424625045704083,767953711050007881,3472634815196335700,2902869279664059623,4226328250494368377,2418764480316296736,1501861828709332135,568975573703484830,8801800562606935721,9514012360554107037,6115575755227527047,1051291325387837076,11601191339553618576,6074519755155606439,18335853116697904652,10165784017796992404,18323605521630460587,11994117291089446449,10451983568470879546,10434065730445324857,17938995950366848123,2508123549594798968,7640613494747113386,1513372534219473739,16828618817162538109,8366075947957833522,9049395889722424712,18045617055697920423,7144267989314336719,16890803523690545074,15781761522575987695,14571475745262949915,16362201857573628110,8875795807742385116,2397097127390260361,11086508766290873299,12528536250631072701,4796334215621772761,46053206664818609,55855699141615696,12822704619433111871,5230152393175782857,18340028855156558604,4982325153117195849,18144683475374954843,13809928813137301377,2031187538284433977,9072535653736593441,12622276487432996162,8839987604652581340,6940845095475718033,16000102712351353061,16532084347876329880,11054558944075828190,7559179555829355370,10125459834434143139,14588025940297167409,15578052907891230592,16440693311745855827,16867123057370125982,13930038904617907751,11354803143482232725,16519077024003978008,7359228380659898187,18264912276873600757,6663799581497061960,14594092587359944947,7904080859246436117,10453773933582997036,10399628085621807446,12434936933788275446],{"siblings":[{"elements":[4295791253590603064,17929487105087721335,2967055119325542947,16462733433019204129]},{"elements":[10866503738528739597,488999660478424691,4680620550068726076,4667412765909904450]}]}],[[16428349751610191944,3347881533532107938,9468737643308213580,9194454772744592800,12741552808537566884,13974119857005811796,10045247018444647662,4340055757567630225,10045247018444647662,13974119857005811796,4340055757567630225,14385302776012277887,15202997972538187494,12414035098264397106,6391149555208523887,15712637695103593820,16554806991031947314,15363932162293809841,16307837251216160766,6820178166180814956,17457607970083055920,16464291619833470086,13749084992526879831,9636357227791350456,14663917240177601678,13974119857005811796,14942531704342925469,11159704875105942826,14942531704342925469,13714252095155089725,11813664378122801899,12391017937545841995,3476544466855521376,4541244746607206727,8878509548685829859,18213591479499389571,11906513154856102562,2661560206398423305,2184127630907116305,1470388346871513421,4220268753331067933,10121067713976682072,14528380587817187057,16760633056567525176,16239739171151052007,13336769264731776731,6597861866224831980,1283028978560633880,2343950577965466019,14930493770682231745,96390668912837594,9674660986690554615,3312989674635627754,2217725399410485058,17217178624402525406,1270496295808607583,12290224265072685290,14803910390123085278,10223203367692759106,11308771395676367576,1041038867464915568,813178057614178183,18268779348647234996,13701728595724581165,4019666490957492362,1234706480593541580,5634977730404901600,9636573169392748071,16107612655947242065,17723319666782197456,9218105179571351311,7480356268302484853,3953131694299149827,17397482431922805387,5468481439749014787,3320365679890891465,15526222117613994762,15333645379253332801,18074859146242913422,956580594101134221,12459586433819507902,6251016581514000324,9061286157704019153,8285114808851066511,18196592430429844596,17763244861005544579,16619520955079787148,15533162835159325494,2463578269926271449,16128653967389374961,9702427179903687789,2069753350137081705,9618213279997531696,9260163586230802185,5458992430299660279,14734687379245443572,142881319041189151,3921278602338897690,1751283496631235262,13106448210476421032,17623768063489438275,16612612992753432848,6545797981497976720,9814538168567253074,8995293668772951989,7142564581237122052,3547619286584280037,11256682631544360243,456800540290985258,7670894929460168942,13668116004985323929,3029202510962705921,12132687131942077218,4898917753423723492,16116725979714905071,6407348810037865596,17895095959158463658,7249739482952358425,14259627781104667467,11093952195928251986,1607619966941010464,10905336922186469824,1872294433562059216,17731987557902592659,5781022924291843377,8720737205215412068,17707746869708051401,6069659458516403762,5534361090266582195,9462663519886507369,15792770371188132287,9616736522457323016,5331923174174154450,16132487996478428137,10413918624073677918],{"siblings":[{"elements":[18107004279715648445,9022046471554739761,10628535777396098425,3646342173473337268]},{"elements":[11198870833902175989,2627056551053426442,12173347194088488972,13515738457566135127]}]}],[[10389994304159048865,6649191615891136629,11403608210651883819,4519118413793949304,2185698229693972676,17179409027569724423,9574052691782549116,14769559996847512451,16314679765100333798,7508244338581389907,12607987506138791424,22145534889104171,13843820450570263784,2678823418594540255,1323887373182876776,784024881853698007,15639778007162745068,12896850576571956744,3917733862452052922,1323379203368626624],{"siblings":[{"elements":[8321799032949870492,9041736777206633545,5275857463905943750,11845804001535745851]},{"elements":[6175371435905559461,1090507109993953169,13482089804287186601,14807728910252899539]}]}],[[4427670386441416504,17196830264177892837,63378352210450339,4474850086631122106,5285776790310024011,7442855528783351039,14473813801611186907,0,5587192636016021819,11796884131600238570,11519044807326916887,16293454228443205923,10554000137989328552,6710814315668780462,2535376180897248814,0],{"siblings":[{"elements":[13416860306928031322,13872475067050356340,9029853368848041601,11813207410514222083]},{"elements":[13286374031914984217,175261073292850250,12104851526530982961,1649197002724185016]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[5756954102670259035,15207029631270582200,8620853111407510804,5954306324953404035,3417369321338957957,14769711171700067967,14155220019972620822,4729864867204656869,1367124655399095907,794474731491043177,13549883238830580978,7154687264531141545,16040343449311141534,7519191160292482914,11659862054312770255,16037152217192111346,8213236337446440089,5480175981048843392,16683571355106549973,13543272974080163234,2528876297544953808,1752146986090353874,2467158844090442488,2784818123089147316,2853191568035851399,1047265776414426286,2243538379070846647,8626960408963181514,14880827053630741677,5727935730654045030,286379880044177715,16085096037435206952,5361622991241818307,9949357586496797885,5068561417731073838,11280248597206907899,15876185589640483370,18320739356339610511,13211622228097217499,4056587993176082271,7748353316269364184,11057333087035815647,11151914337748767300,18433647034287595504,9478290392842410216,3792026085406530528,9520680214228437529,5447506798929019025,12539795626444460823,10409804839689727475,3637292357808533410,722279013634395436,2962977808548824151,17049950107688496841,7829006265190333577,197969211212515662,12113251601111822966,3605118529118306942,211835988529495278,14155474385885496437,11848440872102051470,4366619857614921193,10556118585124385811,8391424649412625955,3227178879736556488,6503646705941890065,17861115577426059478,3966059438988839423,823981093346712868,9310258241739710499,14305284080474844674,3988773194277944987,4576989698097073721,14922970355983295368,17596364039560640893,3184267435176651188,13539543829396333126,14743205971784318873,1932903128429215796,17285289794946637186,9174920969369735131,3484178894351822797,13674151874602640207,3637683578065872134],{"siblings":[{"elements":[3661189000515272351,9265824685834336126,14091976876429780110,5616830878271017239]},{"elements":[15569594249511601125,956031005415651622,9670184325097649857,16069782850068809130]}]}],[[6044686351164866592,3269875303912828380,10971909491908020247,4104331182652050903,17633541252553702291,8620853111407510804,5960367447509974877,5147164630649092847,5960367447509974877,8620853111407510804,5147164630649092847,11107532078159067724,10772244505823667663,9198069521813365947,8458507525369628506,10832303736589025131,12518789667262658802,2425329303758391973,10077337605506852249,8506661476829334486,16585683042390534106,10595238455670002882,16886427341380115898,14785990991151309020,8915484717552643974,8620853111407510804,6723437356946220224,15638922074498864198,6723437356946220224,11699093173399831838,14069957904027684361,9229920804021072487,11542153228808062460,18280434867224841414,7302728346131101409,14964670768636554449,4054807757179607380,8801734000681300866,16524832535382886558,13087301078506545656,13292724990562942227,12436702882757014993,5073058539441485438,17936727871947959402,3169166962451356627,6385419142196948937,9855382319286103122,354470657976706188,10353295416272545980,14545834025245092863,4942784179361594051,16334626210695207770,2557017337498841106,9082645367545235816,3832349830839217990,12125913926347782952,653498677921946341,10356519767002417753,13174504632330535833,4789112843134691964,6500305353143094666,12722642965838128011,17819586841383485565,9338302027972475127,7330929394596684321,12444694042977211406,16835706677548563364,17889779048726972060,14467492870091445723,16529388904732112313,17106909407149874316,17144224833964718523,12452395697593419504,8106058970524168458,11815356019942539973,6330504800509976987,13137426907733633551,12844423662641286152,3662903663664052933,13357824166833108824,12752827758354941375,17261057291867951170,4398055965187785965,16221458524274655615,13387491434948380282,11116847357082284059,10564573654274645537,7753405841242812752,6314227317687465416,6741047059828457689,9704074621253918326,6750563444200691503,14974754359508154506,14319671947988003587,10083229324532465762,6834589448799755128,9685310725359694510,13104940428932620915,6339856080991409459,11162242812977481768,4684329802388867596,8511058454237612454,2265541267643867653,11451522802928270890,3070364959402701028,7695390214545256286,6393082986740824403,15060416527451191855,8953332250306296747,3770983766611500479,12377418950624369773,14200127229013268335,3585588327654699149,2910299107614913233,9125876271478117416,5491205323596432104,12458990519426084739,8910313484740722617,15169409468573320740,13330750084292481843,6641252768517887484,12607694605057617088,11717150518477465839,1409029263725692236,1474928178123648326,15722832864670665663,8557233438496535493,18351243950540875533,10387194066645547017,15577555733204774650,729112113977708207,7066174371615559521,9281126879726899847,2800822303765590735,7158215171732762527],{"siblings":[{"elements":[8715682575858527486,11155298795259675507,9843552670646386422,5306928003833288720]},{"elements":[1040533151601578923,15816118616292883445,7353107187080723398,5335048287076543677]}]}],[[3817891809809093638,12731200151540216747,13204517316349357946,7466922279633025394,11511834419055439492,13590249452715142137,17732660675339224486,4166451639178290456,3203680071566183896,9032091634452285657,12503999043638216793,12895512616608208462,9102120496875073553,18288158217194315891,11068059198304829036,7467745845637448473,17286434185604772205,18009808364771908546,1252812341548438628,18159403296672361502],{"siblings":[{"elements":[2571458109090384015,13541329269842715959,10666313766000137444,9526447513187253543]},{"elements":[14877691943474638997,17890686887798413768,13957332300951484465,4897853218909943833]}]}],[[12459445257765241200,17836212554463771331,15944503734392303878,8489504810567863061,15122645481767142856,17909688098392739595,61146688013032556,0,10135343558422228809,751070180850321642,2483644175354532006,10528313770598018966,8998461584776042365,9831743379717941884,17100392099098020283,0],{"siblings":[{"elements":[15428115294112016482,5567812574791378435,15488486025155798844,1460596497361948774]},{"elements":[9656940605791601413,7967601106598428415,9244440830089191498,13951992733771590718]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[1378578396624103287,4469550363019109345,15413597128689811362,1805144975167355224,6452842945118347818,17061466042700525835,9908442364377620888,15557126284828876835,6899480873189727568,12971330971533533346,728087363132436065,3204431996140256238,13511333333486447248,6061673480195229898,14143816356008065891,1818432731357414224,3931833595148317400,3113204864077687682,5014242697766007980,17498814194817113368,17311377860557701340,8282734130308373953,5890521087855310378,6106682907563760123,4103854807982442127,1254540041483963115,12935174769028627692,15430869945408104449,12896469002554472325,5331356288418194792,11484351612989676249,8456647540373465481,12372119994208242190,16992808387778761139,14492583082823698275,12992268080647866781,6202154336508741380,13981801581159561008,6132666943793528869,991440255466054370,4850097939918506333,15678134098977100309,4031564655424526311,818068419515164961,5189645943730998982,11842070038265827069,13692845301045488507,8827403897965133335,8787664043284139107,6377550908376354008,4423636113428645285,17734567326342336827,14552896584348117004,1702153397520986778,14272468428791344710,5610838339090108759,3371431548606222630,10139868107266119037,12592960625135564613,5499681482704576029,15133245799952602032,14567897988115088438,1484931179986933694,15313230342259256114,13284093008880950783,2496313854275467022,5098157751613025341,2705121421207377961,686818305346538974,16904485625070999818,10485443601004438918,1742619884980803369,7290528959142072005,4833033083385056818,14191175330164828274,15066184151212832423,17046653095088947697,17553341742847539104,1225471260958366274,595291968017247255,14785935603072475232,13108696271497115881,3085093188467307699,16176612129916464983],{"siblings":[{"elements":[8666308870474411867,15887861559861194766,12876980660469857901,2656114809566731166]},{"elements":[16360478778702248201,14213185250312606651,9086499200688171136,6646506645725327276]}]}],[[14151110958039928206,7394957063411508535,12242808867165814310,13976352360198370829,9730405472028585194,15413597128689811362,1579060068004460396,11309465540033045590,1579060068004460396,15413597128689811362,11309465540033045590,12888525608037505986,16547326051220291570,4274927800655763002,3121283270468370288,577542687887903379,5696365283852088763,11169520791487999889,8912379173499424821,17330094462244822106,16769704904010981477,9411855531344263895,1157536920058867649,15381797910990233828,193028617278888920,15413597128689811362,5944275695934856175,6137304313213745095,5944275695934856175,8996271031570341611,6570442543066273298,7611819675994313932,10534295743546521943,1331487254028825072,10196791628412025141,15441860425725544654,8052969032706882455,5867667407760738914,6427717164929771354,11646045603940553125,1651660475798712954,14453110603546168042,6702480046212256465,2515167476706338212,8408790910518680052,13726532425353449138,2298298534390186647,10313968174462873000,10493388062110618682,12074769082133067769,7381482354570955863,1265223135347065882,8099429127087925102,1156976121577905901,16859850340394106066,10415273072391660724,14182129822556818895,16915057393051886321,3101462726258575580,4823016207540037510,8339251899462823863,15124635515634125381,17139119355117614465,16187662320977464984,988049424955803048,11970898299076925761,3049146126377734131,6189179014534844601,2992319029155877019,3287539059167030767,1456751749121236081,15255993500612140682,3562091901483409100,6382968262506972813,10118732147714434815,6565331561510176204,10057381849171086287,15913827937953698835,15024483420572498193,16813605096465161202,9331266366565408692,1101315823369584759,3197107650307163365,15969829189172044313,14099241623905315562,10961752644378287391,2543612655353394500,2299087276369389335,7900896679024274007,14475105730052509059,1134482989356651075,1199508703836224381,12865960276769595356,15804622854916570365,17142965598948477851,8781606262333289968,13532386421161973677,8888748173017908989,9393364460999692375,16307858586919388167,10490958219829679062,11746522735730466271,16837186399574943561,9926120943598710092,5650950788243384049,13299009035329247894,4898609385965295940,17921951389996105451,15976218508721314503,16519367972819967643,356701787644699508,3823992709874492751,13655979623604649909,814691128406149016,2589815402137204559,8017411099053767081,6670506440608384006,16625892828742160013,6980196619490882343,17384384046071181817,2023944507412081016,15079293339612944111,11492091039257939737,1877402569728882265,11896797140477366943,1111118824048114488,17142084384381596014,7020557176362306018,1188383490488442084,4368649678832425827,18332984063091202717,13658935803422495926,18386018023850975407,17379077957778142364,14643855309430344807],{"siblings":[{"elements":[15192652526827466958,15586316092843326388,9191814238353642666,14473217775880180809]},{"elements":[8871695588031639576,5579372016518937853,14746829833672601330,4076645109767800603]}]}],[[7355000535335121214,1080458130730343982,9322672680869669119,2804094819013685559,638238206202982689,7634273305301634679,10877928775075107510,5275908199605404742,3347652827715974365,7911249883678444398,5652996455886374043,4615866963040228961,10622754265873815802,1229515617644229601,2903281994878346213,1325667513318877293,12277076855538248724,16450678484623819131,17038516729113727965,14247979878878607921],{"siblings":[{"elements":[7614398799053524303,2764583842848826589,33413866442510526,17875148176744893971]},{"elements":[8455293883966511124,11494785280680832629,7357921799441767283,11578973368757805148]}]}],[[6631823643266079158,8366122243642504746,8406087109249457640,15336788024942948296,12720239164087346734,8137611673240142641,6774618138215374272,0,3139480029147699076,9383563083341285074,8973534838271256955,6716838165676479076,5383259058826815169,2089258522450198822,2463958557597904869,0],{"siblings":[{"elements":[12544435644837708488,16862965110390239833,652581182079729656,2146097000557799403]},{"elements":[16027837574004822952,14738606754892979695,3791444106569094598,12930330184609239516]}]}]]},"steps":[]}],"final_poly":{"coeffs":[[16576266501209756636,16319405776410563724],[12786897888443529365,1909450325805577515],[5671302967046029644,6221607960321962717],[17854653477383562898,2004436935791854642],[18156246526399554667,15274299381540008568],[6715512979966297413,9635789999777282826],[196634509567812852,7260044628256898978],[0,0]]},"pow_witness":9223372034707294072}},"public_inputs":[0,1,3736710860384812976]} \ No newline at end of file +{"proof":{"wires_cap":[{"elements":[13884351014873073118,5174249846243191862,2208632528791973868,1071582828677910652]},{"elements":[11475361245556894879,14867351574926692044,17013374066934071379,1027671036932569748]},{"elements":[5604634992452399010,3684464596850094189,5565599237356852406,4136295609943151014]},{"elements":[8463721840990025805,5922588965472526198,8096699027533803435,2210089353004111478]},{"elements":[17531628199677307555,11513452064460680964,1482441508929181375,5139566233781982440]},{"elements":[13271417993289093233,17257193898955790413,16883807866578566670,7423179920948669117]},{"elements":[13462567520785358202,15555103598281658890,5859961276885232601,4464568704709749394]},{"elements":[153012620162729043,14072764618167122665,3025694603779494447,15948104906680148838]},{"elements":[18050235253694287284,11467396424826912141,11302553396166323353,10976271719722841224]},{"elements":[15208241660644051470,8520722208187871063,10775022596056682771,16048513824198271730]},{"elements":[6929477084755896240,11382029470138215117,13205948643259905511,9421863267852221772]},{"elements":[15449187573546292268,10216729601353604194,9493934392442974211,9848643714440191835]},{"elements":[2172475758127444753,16681095938683502188,9983383760611275566,2603547977557388755]},{"elements":[17440301588003279095,11799356585691460705,1386003375936412946,11059100806278290279]},{"elements":[10758265002546797581,1374136260999724547,7200401521491969338,219493657547391496]},{"elements":[5995963332181008902,4442996285152250372,2005936434281221193,6869325719052666642]}],"plonk_zs_partial_products_cap":[{"elements":[15664680364476180944,8822125722323081501,1515493944014958888,947815081717447158]},{"elements":[10037151755940667434,11949718559165021995,15928759330468082414,418840513000355827]},{"elements":[4161325524387973626,16365963892177732678,18172371282801122338,567761389574432991]},{"elements":[14261960611216430479,4961706922451790904,5837508846364221974,2496934636118037961]},{"elements":[2268074920164158624,1603793544646573865,12725635986147157826,15183158543695142576]},{"elements":[12920137987121475725,14038284593794054077,5500255468202520981,16477234960171405851]},{"elements":[10060477178655432860,2386219747357014594,17226595442036371584,14113214704489839208]},{"elements":[17356067684144936182,14910758592434722301,16921079055641057614,6252234565363173327]},{"elements":[6168512725748334393,6913883079661406117,10501571227616463415,1759912320778482174]},{"elements":[2516240519880426606,8354489090385082736,11228741529454001895,3898276725474912647]},{"elements":[3150970879837517798,7321559733305167606,14491889646728789185,11305012649385509934]},{"elements":[14991754416746124019,9687288789913675937,16219387862412589234,17460315789956127541]},{"elements":[9540799947392529115,12014884309935443424,4611822682640082013,6664663134811580775]},{"elements":[419279371365114248,15409640520057063238,9046735251831703003,11942336533527375105]},{"elements":[1577288469125335151,13080447669023420177,5624936637565297046,1990913922457378896]},{"elements":[9993080054082545872,8098015705753527414,8741600873648916001,13754140924787167756]}],"quotient_polys_cap":[{"elements":[7183911005270754315,14307301628724785648,8766457564743758724,16070319676647146817]},{"elements":[15509119113024039345,8318282602352041510,13576810720823767692,11210484269807483686]},{"elements":[15588943520795762607,13333288684758865150,16279171410028364740,4798883027793809226]},{"elements":[15837644269075168306,14041645641478038189,17517916513429829711,6427923304665289330]},{"elements":[5861721985734768159,14392520776545458492,4038865246800432884,7629895429383136613]},{"elements":[17276288981631404207,18207333530806091831,10160611555313706040,18131018898065538639]},{"elements":[16953926178723712096,7087627390344500667,14191399564490320874,4425753047788941763]},{"elements":[2842812406559357784,7369577970090516212,13500906414731167063,13728077650275393273]},{"elements":[10218583550823772530,11414570159115896600,16805399804844903729,13394291733793941131]},{"elements":[12630205649628973107,10893259699287487275,8251527761882278427,7955391159293054431]},{"elements":[9049574755717500315,6273477365151294141,15498490766977776588,5444049250622975500]},{"elements":[14442316952994850754,1492872284030456673,3857600749417597609,5487727711179003163]},{"elements":[10630434622969915004,16439080552170633019,17739749461824847400,12421215527675283406]},{"elements":[13073213018298356342,17234246804395405540,3345124430971732516,15686007365635592062]},{"elements":[9762568289390365835,13573326246864589356,5335274269603943339,2467266693802483141]},{"elements":[2348455474657155105,7471309838601168346,8967590409163618421,17697602804243792629]}],"openings":{"constants":[[15708885176500031815,10812956464460062598],[4310178694711070979,2617557659907460000],[4428255255930001271,6332759998269113797],[13491932504098742294,17185001908124015010]],"plonk_sigmas":[[16332918474453757075,16966835635996886953],[1674212030723357343,1581851333584996892],[15320941266843729487,17973924992921799969],[4425162010563711089,9467830467435284457],[7216608219842383925,18261239799007855544],[4371018972342571778,12894586147195504465],[6194779993991285035,6366487043377071740],[16292815486581589137,14211137901799992450],[626665172943425061,2095956077796892714],[17065921167030944650,6264790938733729827],[5591045624920406309,12031301673073429952],[2571808843321045744,1768775415757996575],[12591264365966885494,627019067063257570],[1692576061784251626,156389776307520593],[8205376370852798282,2322673700869014096],[14508098476365469884,12878420789029451930],[16820200523985569813,5468508508493548292],[12320133842857919025,2724446450248595076],[10193445534511660945,15888659431410912117],[4156779183132940989,1018966100000152591],[5378690140828042344,14253895539239996861],[10510613430284912462,11248526474113927842],[14080092318759119299,804559268239617089],[738277148901196928,11567388937641240619],[13019538896480207420,9505522010695265678],[836959154923470134,1678746724589302698],[11866522173126960827,13285419824203861305],[1716003847973729312,10951014807669323114],[1536488872791317607,15821995632017654050],[17290571474476685066,9280678606536395920],[9746894501714754003,3872501895654702296],[6501311505471774529,6776254298262139289],[18207713758451294528,6765473549758257111],[9487954035706121216,17689242510483328473],[11822218599431442175,718040481989714912],[3703441912992308563,18205044973147646088],[16384033598407905279,10767211884741121031],[17295458072799987502,7466419878098556731],[14054478475261976477,8467998801749161859],[633391636703217041,9976280084348000839],[9606313785486802507,8187294013598961710],[2773932540540685731,15085635913073335440],[5707916144730798168,3353158504865701717],[8140306032428201119,9174680419419565781],[6329312185582418057,11910492724574763845],[937420779521500250,9653219028249369317],[17222563993024835186,8153155917791058561],[9772814350066090780,2995268145363760907],[15008188455182858674,4639724111402294295],[244515162542813088,8268335642017822941],[12222687694545818225,3731900967457640380],[268798213332706468,15855374016116636838],[8169313327360497361,16590917619914256732],[15231839113442110337,3577257794700151945],[16350084235320487835,13623349199721156695],[18195211851732362754,13119997493757593815],[5632353204851030538,8272759548042864493],[10198965794800794915,11259972797283110680],[1880869290255856747,3584193458439223562],[4813699635667300226,12521856021287313868],[1816641966434014445,14199056160824918297],[8887493203555196948,10714624584382712415],[14961612967153475223,9465757365379478776],[10031037783658057680,15230218034482738159],[8325761026226782689,2350801862477005889],[14435037492768397072,11052394338961964941],[7022030985298337436,894740757360657704],[11520707976963950775,6306755213348195537],[12328396794510416646,18018330635842921584],[15539657776332015034,10380836029505569743],[18019060325792698763,8450246370847366068],[9550492637983913596,16189130329058341117],[11903216278517116162,4397013881654490439],[2583167749657467726,17952992630620236158],[15861765889506801632,6228786104009955137],[5276510316439955143,15745363843515966675],[14349698827382071640,15533740161177117779],[12360072923888431646,1497949473315170794],[229367994114592168,13154489174102026805],[7935035362463829657,18265053446448821050]],"wires":[[12831880274663843095,8375326319329187801],[16706124378021086165,147816809152142562],[15420844593778680874,6881471174393635462],[2460150171803111518,12293154465356737586],[12609229378919897783,4437156539802729635],[4428255255930001271,6332759998269113797],[17689286425094671488,4235168525402717656],[11851771734599984950,8672325065205447291],[17689286425094671488,4235168525402717656],[4428255255930001271,6332759998269113797],[11851771734599984950,8672325065205447291],[11094314090280072117,12907493590608164947],[11248190599009283472,6231645358392350208],[15743527307432717274,13243766762473709841],[10396588746585398137,1053278086117512648],[3145495084030801416,1240380672360792309],[13372437964901485824,1990323854315250763],[17967380280453309159,2854870381524567817],[14746068186440731491,1699095505678210419],[9817016286543934982,13184757331937113426],[5665672147161865956,12414260908049399789],[8480107632202547383,8995628996174186732],[9661904478916216221,7957825869602892857],[3844524362851085653,6852794392687255840],[15593655845745544863,16040568177007192864],[4428255255930001271,6332759998269113797],[1646253531796433288,726898693991636460],[17239909377541978151,16767466870998829324],[1646253531796433288,726898693991636460],[2857961748829592165,11725905808770450879],[14548798437416549388,4869558414259694844],[3334536956570206720,9992975748624505238],[15060687617234296914,17734781871890235747],[12005326218088150203,12306562067676510967],[11590504478234946172,3969592135636087901],[8325718293853506048,13288570399871853026],[12744821452227144178,9972727481525094398],[11654526594812815449,5672593902077008552],[16953520823888438438,17033801531263220052],[3905352517569318576,4734314967261696279],[76063772280795467,12356900466780887109],[5276078115903149383,16983513533287677323],[16234977579233496942,18141825748191659634],[1530100657431071456,14680701506708231070],[6035171418711307858,11182168368800460698],[5996400695447332126,13619070582978485184],[8263120259533904534,1705292455468433909],[188433187336950116,659951089877651942],[12883263103740211213,9990046237410806978],[6894238827237252034,9494406729950259653],[15825925192312103681,14439128375217844324],[15181206558233955348,7541393502789276778],[16913973098651903601,8353365297238162474],[891306467696319604,3347916850021204053],[9373932489627319852,15753998275205900660],[3176852018304300497,1526585005830306705],[11092541406156492814,119469210077747532],[5388718840424973664,8081838500302320059],[18320215430940166107,4377000611017900773],[12337502114620259753,11075725336381625123],[2885269920643066982,340358103662043557],[4713791466134275106,9614528695818099787],[5961964700902400027,8722948238967065658],[13816672884588761197,16374101062582328243],[16376021822486876581,17554694610978355248],[12006562071608218998,2711136182468669606],[16517164560396473051,14238280318436550033],[14180362624530500510,592691809864506590],[17910624156633662012,13598284886569674976],[5043246454532079272,7518081095754397626],[4359665093484759592,11244226060968509469],[9511071698157374977,5445064339117064869],[15244317556672442533,4555233350624889505],[3968776223009226234,1626936916354728623],[6472908951998779668,7443040134084641044],[7204623573033963318,5156730212371880338],[11605695283827419160,8513486856005604750],[13861165842597538423,7590362963890064594],[1023856292977850855,13410088440187137178],[9274488019462934021,376576344632297036],[11593936933753594914,6692163639408334760],[8455988196059368261,17123861569430269742],[17665666853418139086,9155567719537627977],[5892688684583419070,619140548517887767],[17524970734816347268,12416192900921852479],[7755903700510119503,1993809093995893310],[3045053533708397114,5614690539923014011],[543948020073483930,4343165050266346234],[10508835003976807431,8542384433481755837],[18224394333541507229,14884436138014597099],[308305291008684332,14454963445227301238],[17525672926805954901,4583324227030557313],[11087731423032344586,3320343400912847321],[14897620554053382136,11177699561133713953],[1565787329686665795,7162817002806393899],[14502755688624601398,16780651407805301844],[16250050767973291181,839257592496295958],[17397940632468081902,3844684133737309062],[15424765881799486088,445218160557478288],[5572494436787222445,9874495841431129956],[11666902156954978719,4960720059607633078],[5456000479418241111,17403087985304965167],[16153540064240441858,11443880275869540993],[15454902767400818622,846952924277988380],[4158646014472684345,16137485598388050471],[483478000591243293,8846918361282711976],[10669027325267034983,13710085999638292085],[10268966070411241683,14056832438643819401],[11321374244307148319,9644618854165435491],[7129739583408097875,11366800520074479910],[10438057157110732910,9541372438755028307],[12520782506170805830,15513787666241843408],[12480696562074120127,14610420548662872435],[2390738391564924842,6149572029336903933],[1033566292463653039,3861672846706060948],[8110792290666428337,8796781053030172727],[16820782961410748691,18302236667925006536],[1532333149437271591,17492476339105156223],[12262092770632522632,13996757457861107726],[252593302432622304,17773568271535970984],[5258424435082774121,6795741660063113943],[9091704427317706859,10576130301937321349],[14065971817266365647,6859956971040745277],[15889487067276602279,3785945611583922593],[1536121223070360777,14495550633992065396],[10337585198321421651,14597944609069941858],[4691479266344799665,1494819252985960546],[5683581115557514504,5885046574399624728],[15159883394626479045,3072692248733750329],[13000026256748780375,9376435975272710770],[14841753442329977195,7315360928938398063],[11857281343359886871,13115044103933480767],[14269477553527207522,297597232606865306],[17126356136084221635,14277086829383481151],[556205355537202931,5495742325697452776]],"plonk_zs":[[16226931450351231259,10058328243590441783],[13915246981148760843,13606807943681845129]],"plonk_zs_next":[[1949403636718031728,6814172731345349228],[10706515086871257669,2618729029486148733]],"partial_products":[[2718337796028337019,1100046918541576077],[4359540226755296579,16555425246155148375],[9678352411882870177,851205296919676516],[5388606332577621873,11222822260725933526],[14823984462162852397,14374504332317900174],[4654341202821439317,10000069937629491742],[11602104929368563247,1586174754030768841],[6651034784323394893,12871771076397632868],[12271351128299270065,14000810253077652472],[3849572189135597950,13413993711722834638],[14035976118820210721,2734934736684191205],[4134443429269434128,11537521638774495618],[9305187497086862154,4393023246818519741],[10025934964907361507,4336191787835087175],[3842870656218753127,9507295659967183864],[15000840304680477585,3656197583767648882],[12358621638136624910,823404856903751571],[4680614482205510452,6685306188604593519]],"quotient_polys":[[10137541429344015433,3427514616623841913],[7599678287660529681,16402685688198475319],[10280280249754189737,832330158247310167],[2976249428238506467,7117125489138494849],[3472014603549123312,13155120243474827090],[11459552915940578498,2914143918623108304],[2539172442733119963,12612419852483013374],[18446744069414584321,18446744069414584321],[12910308767832658233,13742531037776780726],[10082531792948134495,18333883449223605421],[18398381977864824306,15393923454655717760],[11220451281274466857,8963723840151550200],[3110890483124843719,13438357881982265639],[9366422892016360209,5990052499154370134],[4445679077648937804,200795967727423947],[18446744069414584321,18446744069414584321]]},"opening_proof":{"commit_phase_merkle_caps":[],"query_round_proofs":[{"initial_trees_proof":{"evals_proofs":[[[15034545801107465666,9328134685786232648,110829080910733876,4250821939350695176,1394630806331531697,12201247022097191778,16228921593346724793,5540981308967052515,16262683837062736705,3444943174443116075,14321882309394080023,11976399724076258415,15741084224719728653,7167218740187920267,2108479466400960879,10523500992781693864,18084559524611127881,16392309362668639626,9910431870163626642,4306965461073664163,8761340433466990759,16828932137000128833,2348349595557829210,18309601238814102288,6690141621618686419,7896548919369665043,12130437762899715305,2761456977705156545,14222367477428627391,14807796117787670576,16218927186002388767,7877082550245093306,7861505246478234400,6642657046293066409,567443057547927936,4962531988520098681,4454913783121034017,11032692175451594665,15818464105310318903,16889379664350046036,15583177082558352958,18416173649350290030,16733021994861153485,5457109531204194878,5211202449828449170,387397703287744593,17423970546079450668,5331695136917034168,5204602975018287532,7804682123145551743,16184475773898398161,17806383633492102915,7806008025234779015,15596547216666649128,10083322942939404535,12021095180947227158,333294063486744879,419406305018384698,7930166925575659383,11941804889882528314,7029051446847328676,10870358600754106564,3290908671307159311,6033256737686447080,16428444435506081682,16034886258387630270,6265258099047416323,5155332694710747095,5556269241720840184,1407033520462800343,8788279239960369908,188529423317695704,3606487184992817701,2533317928314692800,16029983803978270205,9937287719837361600,7652762612315253552,17700302266760805118,15472687335725666131,6385298406622369122,12382980318690581425,7179451047645296592,13902948853468039715,11531705951801209834],{"siblings":[{"elements":[14107875915397983130,4898796723405732069,8183032881835579560,10330461968446653528]},{"elements":[608309216059009087,15657505314169978897,10976396690985755658,16681478498527425210]}]}],[[10590361711545904926,6467492479015847751,6498300686270535597,11235217016121196403,2050901983807334484,110829080910733876,457242200587969681,2508144184395304165,457242200587969681,110829080910733876,2508144184395304165,2965386384983273846,11881551527102582958,13252799754300043757,5542346299697481738,12941079563792721653,7629536697092816871,946522021654598871,12278464848326872548,15635598563846490229,5829216383525741455,4699317963129637005,17140824973063371511,14528036162963310089,8438916954361851857,110829080910733876,13912447523740429868,3904620408687697404,13912447523740429868,10858094054096997470,1129321940144333268,15512231662819526723,1215549820600439430,3458343838277692402,2903272703156588727,6649801311208103544,10630545905148286914,5177893075383648019,1498880294391033069,11616941586839624703,18206644320516320506,4747450833104484769,14768049486874569440,14037397727859129226,2645876608246238685,13180997555396826036,7271099602821356640,9269412218528362283,4487839141304141996,11836427138015445663,2400175033297146545,8041667181982169897,7238299764299447244,9109542469240195000,11538605155690031110,14777857662292006784,16373952745741192265,6449973465824329538,4872432625908382346,4727533735447793884,7377811649585784188,8790483486939521102,13822336377080202315,11324433051905664726,3883933170046591917,1347850836508112699,14774786343624762725,162550115389646241,5198535412457955594,1810879615721090595,14529292925087437104,901573947567293056,10398930790373150755,2440334104529491862,17181202655789893950,14929365801843940792,8870021205360466355,5714791681228629465,3834323554628492897,6711030840184034546,11281595561079380425,15721973904010260697,10537732998263177477,681925608398007009,18125046351628766408,2921797340631939475,1659393951957676651,4583079679507530593,11810555073590278097,16256144961183589074,15518167787841152639,2480463166045767428,5082572631562647411,16111515311953055863,2390065558855966886,14275533876396805542,3921382209782463383,5743265965284400903,17469830917999768495,16572716749928881552,17813468024803325027,8083084680750935408,12016785000603048107,11669045793692424204,12696375324439579180,12646965674726689285,2060520681933962166,16163008826279362177,8578621219445781658,2119880391859457420,9685741318322805911,12797568880876578858,14335363283221448753,10471668531838958757,7057428691420713199,16445403751963552397,10777132041965659341,7961496270085302387,194286872592472848,10404000052706966856,3333947120896600522,7849470502408677588,6337231606403825399,12282988631151493263,7617558447599872869,1845648988468028904,5123652400347227722,7578591360549995288,13839756351623329299,12296124092835508116,4448810410722431067,4473975626433411615,2500186167623149551,1012548268544035707,2726071433488304004],{"siblings":[{"elements":[14311481270996416571,4201960485605959975,7717021996621825206,14919681022557420509]},{"elements":[5673898759496293924,4636452871475736473,18104237363360020046,14791632146812083222]}]}],[[17785072076061664511,993741286788086326,7865916735404912455,247760509458695932,17748501974684380912,18110815466739453174,12568880596071824394,13806593611340548873,10488818944467126014,117026882898941462,14290703128354822274,452927647305573927,10555988498411384076,9428020669565985868,15880164876549719241,13188644033285038713,10531941623516941933,876506558037732753,3924217702418299143,6638842188140107254],{"siblings":[{"elements":[14469078809657960520,17088512888237620162,6633511284776989343,3355871571932375762]},{"elements":[4359409371571848320,7871270597332206518,4059018556858203473,18371896080309768692]}]}],[[3876021983055603347,17877184788649392956,17680647657185895658,6181834104039844669,3371382644185686620,1142312022162514913,11845989967580790536,0,7673522442369413322,3160812974839565686,845684151449360758,17608873124659321556,14508968750587345766,13274894557570404510,10166143021451461485,0],{"siblings":[{"elements":[1950321560811089404,7232985790317798934,494018737240041275,4691567852527047191]},{"elements":[11078016210390383970,16414038468917578171,10484699400277887896,8120437785266156526]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[13874923908060168686,10300199960485500921,17220223416712727809,11107917826713906228,16080860504613725480,18134296401397245731,8194394929420644964,577158521334961706,17558309524404453886,7462499894769427250,7806442614678325622,1288552523294564736,5928745459609368726,5673755939833451559,1376743317442148286,15198933849581950858,7573015836263811984,11548290280681219346,3048586463663642501,17924736790130764569,16176421463462789125,7400032287983233044,15731792546871809470,7943532610231399071,9191667656456693420,3262984601497837521,11548794947560432383,16935173460323565878,13440064921123574122,13006542764524135817,3200332762477917120,4727549247137829594,10132168364538911488,16818212172973425485,10153429833011927584,6098139687959497779,14527559769504347610,604659360669510816,10236113364972241143,13365343744988800826,16324715386374244920,12941087553157892178,5845088838124668771,11302395006148649007,14757239247984955116,7234202237939122814,14532807582245635211,1889883654052729616,14382821135875337196,10933403972710030353,10477969708791190600,18158356374030649371,848649292582758684,1386127699829388770,14693104195570201077,8557418020926389248,8465103855599324974,7678674795737258990,7968512843367564125,15134518985828235175,14849136868521925153,8200859219989098311,3125736942597523248,16341012296276127126,13668079212165384181,7587065128463574204,15516306994332084122,16992631783574963080,300488920541911522,9606976928846938977,10676817243288232823,13557774887840421349,2050879513960775803,7921519393270082527,12510688718189386154,12160967257524916705,17327790555543273617,5585739159986358700,13436395299212415907,17518943154379265640,45119396072775821,18248002885183339956,17650535637853523767,10046834664009893652],{"siblings":[{"elements":[8321586574402928751,11350831215799910769,1895653507085351149,12216094806571370138]},{"elements":[17728593759504001074,6650774988450794345,17384983616442277651,10830012975394552271]}]}],[[13988798512629653300,76253716425328447,9720388670929796746,1548769052874448837,10678972000872081822,17220223416712727809,9794176158596115729,2026404090053613230,9794176158596115729,17220223416712727809,2026404090053613230,11820580248649728959,13544866904491253671,1508524044049341257,16177277620117888502,9218068684094851193,7460625435618660115,14581023455585331717,4191273768828006679,12831902645852406743,10150234971378278442,6218710481120351195,13068904388938032076,14349008165164964017,7220820517938486827,17220223416712727809,2621060787227244695,9841881305165731522,2621060787227244695,2498234580914276602,1948421200922764046,9443027978162861716,6994897205817072798,6746497094135840902,14564511350746964211,16831736954435400569,2056373989216916187,12734170832192348800,4208322013663975627,2143482162082291677,10961739692902972349,16585828242741371314,12825332321073349918,12855224242854740518,15289131615815431715,16178865082648242669,6126770563456215444,11314967831051162149,3092712508609066402,14135477514485499165,5151390592540432830,11079589504367893985,4554275035609406280,759087744066793013,4716063733036944965,6328687062166235053,17122492330897146813,13403494676768996262,12165046964736682786,18171768242706016850,4499889398292721615,7639546611040194883,8478711167005028192,15548889025473187202,17829909962550759611,14731588264574577805,8938845596279872123,18321151717924116238,396475399073735456,6880860411668657361,17737202206394749472,8246190175691935529,16651904759104102344,16514590622497487494,14031106047687609343,14375777772587941665,18377248783886467451,10851631974779303762,7085234990686355333,8291914806463373328,7994519542791730516,12403577213146922612,1022843831225411504,12558853282718754101,10908306888185908160,896526436403640225,10927710552230741681,16216487141749341667,12216281139627206753,16224215395098127712,14815843269543878753,9810155420256072347,17703231211938946551,1214139682251219756,5521982296862822201,17218944837144903256,587004852284780707,6924610381785949574,727072259197312807,2427909203453611423,18437579200906443397,18265119955007604457,6497984190564580527,9833062871853791402,1710404546114930790,12025024772491311251,3615092381076884992,5312080124122607782,4744611673253563719,617785055946958333,4109679415990489410,17142601226805912522,1636577031909725305,14081177065677875855,2352124489388707931,15165060059756231778,3540697799400848549,15680242045861976924,11593685844168731596,17198012484597520858,12736666725130690089,9237016735828810625,1933058368617464806,11463052868591004800,9197603278783016781,12167701639262605768,18217540706334970371,4734585903824064381,7609066652971090719,16043948255073396199,4330786213873974863,8942602438630819466,850388319733276359,2401619309511840252,4429291596726907249],{"siblings":[{"elements":[3517731961418074301,15643631915143809542,14704079555053427310,8830626570097046551]},{"elements":[13906333527976971193,9910594232029521532,18227550812091777639,16164470906364818327]}]}],[[10698760992492616208,3084888054791991715,10504979538322072085,8672062314095562484,6538563662751432544,15414676715999535405,12668798161168817843,11732351557754657681,12506388983667251260,10615541933867894029,5076084454517619357,9711770352882639553,2132643363314560060,2389496404696519187,13998888976360429267,1523355177437193668,13885000321591115164,11688271530861571248,3492677459371171696,12564933426684726269],{"siblings":[{"elements":[7263551833103530413,6200736473050355321,1039316657339326374,1927184996573515931]},{"elements":[18228550423246657161,9016844207652041195,6018162798259459120,308819794068585281]}]}],[[9784294101061869642,9137203227838832491,6318193091794681542,15400317955513858394,10947340765512471904,16048632134224818483,377862090980006891,0,2921978985236500424,6626571352099380300,2040319358899837010,7147995217373255896,2982076959904495834,11952814429347424958,12559221845808852137,0],{"siblings":[{"elements":[10175556547943464837,7571288498428198039,5870773167665888501,1004468409750934851]},{"elements":[7102873559898376976,5794705437901675967,18361944348361383610,3734242435928352435]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[13874923908060168686,10300199960485500921,17220223416712727809,11107917826713906228,16080860504613725480,18134296401397245731,8194394929420644964,577158521334961706,17558309524404453886,7462499894769427250,7806442614678325622,1288552523294564736,5928745459609368726,5673755939833451559,1376743317442148286,15198933849581950858,7573015836263811984,11548290280681219346,3048586463663642501,17924736790130764569,16176421463462789125,7400032287983233044,15731792546871809470,7943532610231399071,9191667656456693420,3262984601497837521,11548794947560432383,16935173460323565878,13440064921123574122,13006542764524135817,3200332762477917120,4727549247137829594,10132168364538911488,16818212172973425485,10153429833011927584,6098139687959497779,14527559769504347610,604659360669510816,10236113364972241143,13365343744988800826,16324715386374244920,12941087553157892178,5845088838124668771,11302395006148649007,14757239247984955116,7234202237939122814,14532807582245635211,1889883654052729616,14382821135875337196,10933403972710030353,10477969708791190600,18158356374030649371,848649292582758684,1386127699829388770,14693104195570201077,8557418020926389248,8465103855599324974,7678674795737258990,7968512843367564125,15134518985828235175,14849136868521925153,8200859219989098311,3125736942597523248,16341012296276127126,13668079212165384181,7587065128463574204,15516306994332084122,16992631783574963080,300488920541911522,9606976928846938977,10676817243288232823,13557774887840421349,2050879513960775803,7921519393270082527,12510688718189386154,12160967257524916705,17327790555543273617,5585739159986358700,13436395299212415907,17518943154379265640,45119396072775821,18248002885183339956,17650535637853523767,10046834664009893652],{"siblings":[{"elements":[8321586574402928751,11350831215799910769,1895653507085351149,12216094806571370138]},{"elements":[17728593759504001074,6650774988450794345,17384983616442277651,10830012975394552271]}]}],[[13988798512629653300,76253716425328447,9720388670929796746,1548769052874448837,10678972000872081822,17220223416712727809,9794176158596115729,2026404090053613230,9794176158596115729,17220223416712727809,2026404090053613230,11820580248649728959,13544866904491253671,1508524044049341257,16177277620117888502,9218068684094851193,7460625435618660115,14581023455585331717,4191273768828006679,12831902645852406743,10150234971378278442,6218710481120351195,13068904388938032076,14349008165164964017,7220820517938486827,17220223416712727809,2621060787227244695,9841881305165731522,2621060787227244695,2498234580914276602,1948421200922764046,9443027978162861716,6994897205817072798,6746497094135840902,14564511350746964211,16831736954435400569,2056373989216916187,12734170832192348800,4208322013663975627,2143482162082291677,10961739692902972349,16585828242741371314,12825332321073349918,12855224242854740518,15289131615815431715,16178865082648242669,6126770563456215444,11314967831051162149,3092712508609066402,14135477514485499165,5151390592540432830,11079589504367893985,4554275035609406280,759087744066793013,4716063733036944965,6328687062166235053,17122492330897146813,13403494676768996262,12165046964736682786,18171768242706016850,4499889398292721615,7639546611040194883,8478711167005028192,15548889025473187202,17829909962550759611,14731588264574577805,8938845596279872123,18321151717924116238,396475399073735456,6880860411668657361,17737202206394749472,8246190175691935529,16651904759104102344,16514590622497487494,14031106047687609343,14375777772587941665,18377248783886467451,10851631974779303762,7085234990686355333,8291914806463373328,7994519542791730516,12403577213146922612,1022843831225411504,12558853282718754101,10908306888185908160,896526436403640225,10927710552230741681,16216487141749341667,12216281139627206753,16224215395098127712,14815843269543878753,9810155420256072347,17703231211938946551,1214139682251219756,5521982296862822201,17218944837144903256,587004852284780707,6924610381785949574,727072259197312807,2427909203453611423,18437579200906443397,18265119955007604457,6497984190564580527,9833062871853791402,1710404546114930790,12025024772491311251,3615092381076884992,5312080124122607782,4744611673253563719,617785055946958333,4109679415990489410,17142601226805912522,1636577031909725305,14081177065677875855,2352124489388707931,15165060059756231778,3540697799400848549,15680242045861976924,11593685844168731596,17198012484597520858,12736666725130690089,9237016735828810625,1933058368617464806,11463052868591004800,9197603278783016781,12167701639262605768,18217540706334970371,4734585903824064381,7609066652971090719,16043948255073396199,4330786213873974863,8942602438630819466,850388319733276359,2401619309511840252,4429291596726907249],{"siblings":[{"elements":[3517731961418074301,15643631915143809542,14704079555053427310,8830626570097046551]},{"elements":[13906333527976971193,9910594232029521532,18227550812091777639,16164470906364818327]}]}],[[10698760992492616208,3084888054791991715,10504979538322072085,8672062314095562484,6538563662751432544,15414676715999535405,12668798161168817843,11732351557754657681,12506388983667251260,10615541933867894029,5076084454517619357,9711770352882639553,2132643363314560060,2389496404696519187,13998888976360429267,1523355177437193668,13885000321591115164,11688271530861571248,3492677459371171696,12564933426684726269],{"siblings":[{"elements":[7263551833103530413,6200736473050355321,1039316657339326374,1927184996573515931]},{"elements":[18228550423246657161,9016844207652041195,6018162798259459120,308819794068585281]}]}],[[9784294101061869642,9137203227838832491,6318193091794681542,15400317955513858394,10947340765512471904,16048632134224818483,377862090980006891,0,2921978985236500424,6626571352099380300,2040319358899837010,7147995217373255896,2982076959904495834,11952814429347424958,12559221845808852137,0],{"siblings":[{"elements":[10175556547943464837,7571288498428198039,5870773167665888501,1004468409750934851]},{"elements":[7102873559898376976,5794705437901675967,18361944348361383610,3734242435928352435]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[9720118099857617667,6907118851416898818,3093070796856912387,2235836106412122627,9776807275298159137,4463155122670423471,18049106092813588929,12696594783596716152,8598999163594193455,12036132876534883927,7956960896994515494,248019902995950327,5027583077203714791,11153823857017262041,12283001839736928859,213933753310079164,5989180219774727712,6635268733439933855,16639455780993560759,18042165182356710344,7491622469494033088,12571655204247379598,1506582651816982435,10136387582059057128,1810081575953731313,5670847835698465642,1743109407316299519,6211156965959444929,16520876663818552666,2008530284052777544,16241527278739088573,8018667181643143161,8808137967728637964,7881009893512375363,17936777579534993500,12865838725775282758,8370556967346119698,14392083173264317538,11502310449879588286,11029208386439748604,9202987005551069329,4640056994109975505,2271518247258746149,10051596231907897569,15619149238860026692,17390169001056841942,12125811190947129054,5541310016585771301,17793373452488747220,8813942452273184319,5110527927842800116,4582875774521598260,17677138730719372105,3860380289387333732,3292748589864505051,9225269255265166944,15298732803668485805,8507551972866961390,10682902555234538063,13778598594164647344,4790019403597034694,6086602011629454043,8674778631853683073,7403108128968585391,8515032791194268311,4110126945968375011,1769440711627359864,10648078807328822668,5601302746078787043,17853464202680373997,5676012651936639634,17296680257303941283,1051466731935720234,14381077385498589114,14409254071908532336,5708397534533713912,15814429937280814178,10266941507679448728,2130761593164817371,11077261556718581918,13890119462896028250,12349168555694263847,13485222354589623597,1438319735464843866],{"siblings":[{"elements":[16294515965246207366,9889431618541528844,16148585462734608141,16618130477107477453]},{"elements":[18161808293962363183,5378725722484264021,7687383671526977091,16433811244973155751]}]}],[[10127538253577746896,16397315088477277375,6309691233247695356,14994689443059177744,5997537832511934284,3093070796856912387,13353642756333234282,904436519430584245,13353642756333234282,3093070796856912387,904436519430584245,14258079275763818527,10581548958909357400,13565433966720819365,4892557830904861375,11297530951076201822,10145504546170081731,8805732974585420091,16602374987479140494,946160588292314793,3257966888035396330,17795523947181217600,15956645078348130634,2825828279730804253,10973851001543636978,3093070796856912387,7689622727323455429,216729659452508086,7689622727323455429,4671727006263835322,8755976340624686480,14940787421656193237,8824672457088913139,17069826511276497080,15921301791095147434,988804020161410903,11956281042513577447,12684236217232577836,6966973702148237388,5126683162866440094,11588582752568035375,1957343221759293819,11962868251283958415,15178388750084365944,6911210671217509847,7876512374323469606,586749078258936320,3849506412261967726,429009891332572678,12706097635235497073,12008781943864442256,2042690404649654218,16893658046339461570,9043662799303870263,15533498072449143947,5337473283315328333,296518838138847521,8511562175609488902,10032769994951752437,39545485178047279,7008083159441636309,6828876903914297029,16388706690875216813,10474310918028189515,11492192093825779201,224517722848927936,17940777468114640643,6240509147872329567,8414334019631803799,14339206021849195569,3719347127417926084,1112626075528436704,3312753050051697017,8234904107917736376,9295287285673599866,3602511319602857538,16042492518986195428,13772178647388060008,10626833185282053299,7120925450321401442,16246701639529233640,965784064143614560,14642932570226928186,11434360916850904955,703609304101083674,3440131132421443865,12795576040387178323,15412583825953637303,18236216402167246300,13416471402555648676,8970302898269706208,15645256046116868086,16784858829211760651,5322883767591214418,17351867203610734727,1611657377586734768,13533872148731750982,14278139563958559662,15880589024635401554,16402058059700081925,15947480289398548060,5236620638426269132,5359047435080246038,2783069417564818809,8340403031912728292,7308227567543713445,13114664076687084456,11930790153061056533,3474442203677710308,11615680045539779061,10677756292271235678,5227208655973162809,8280113923817168740,10520831315444158327,6361363019282561836,6382173582638324951,15729732530417226071,16234920038572309497,13963873163764101147,1135953976877136554,15274354301341772706,11701301518243446728,2970815036725812862,4432324204505195463,12007423584013923041,17083270276247046337,9280539510869335219,3674873720015177187,10412230326565519463,18424546253278351669,4636272582752391719,15020339038621459884,11000172160967630572,629896806960344523,18072482365217608385],{"siblings":[{"elements":[12713574046380760609,9805961692872793585,4122102971378149195,18412256971007999982]},{"elements":[15514428744505251117,14504379719601574378,3632924971737213774,16395490620190777807]}]}],[[81231155154529239,13788332085185838762,2547535526162299784,8916126617074044073,16233463604660546932,16422428445913910972,6802421773507722371,1784772599760901734,503175944916314152,16422545938129564242,1663419694421984516,17562396316257773805,1263530597106810624,18297224901035285698,10374903052911862313,11945716775182870006,6280274064442293999,7570448577158573249,2137784598600276072,13120870916519814109],{"siblings":[{"elements":[2139248073710130622,15107916625750887471,14911334168512946871,3490337345753227722]},{"elements":[11401017871127626637,18073598116114047479,5632277518610515708,650460509947357987]}]}],[[17006572594699452043,15941640262416136436,17999545996223383398,8391834731668266296,10930551547376985843,18289248841751685127,12716433609126880872,0,15052920362990111155,3477644741631147347,14944943589852033725,9930325561415368608,14238126426565119402,18320992886033814458,3357841796900166206,0],{"siblings":[{"elements":[1914865825582826287,4858802607113820478,16754277026700494291,5075305786979232745]},{"elements":[6232908927904331152,13175469136321390125,8967740907026083543,3217280414508083840]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[18254225334420079843,8772003796848910518,12275652856241114876,10456656225978629104,4594297269491215535,13262523281343485908,15006356064449103889,5711228853543839148,18160086942283725550,7141048568009784642,2310475694935574267,9467882928327039475,5730725395629234757,8632371305344091233,13428922715938518767,12162991733653704743,15930218933996844433,5610044373071442097,18135951201340008451,7093642372660752199,10073963698704766509,15624682552887982730,2088304618882806827,4729111036639049231,3905365587624343278,12632116364196610137,14951747126266840636,9847996280387846216,2673615651937607488,3264140318484315213,1780891085903278370,14759916291136249415,13050736192270859771,15781419249057074309,14721617219002388219,2363657672718364774,12246167776370133113,1575298408479220575,2641305826390554783,11991642886516435827,17385528487256780960,708944528618814770,14542073354519611880,15013822239210879867,16118812887741350858,5075358827632505238,14278344869194588548,3249284709224797433,685835185504600,11085459332019424578,8255549963909435330,17006589555784053171,1646690280396544600,15982908082807820896,9772332795290666576,10176897823036561198,6100132377382539906,5734642439242583616,17559329266953776985,11242525205873795394,18149791049712947753,7605420838163358550,9139371343693367500,5716445749445879371,6438818403539388751,16785547779199985081,10451897673834609831,808656775105634947,1231456728650730153,14411170257712022417,7434380473063527671,4676789740098154042,5248554384069605993,13574658614220221342,11946000701626899664,13351771771600587674,2652876740962897950,4688372329423925910,14443287306964661360,14883344949568396614,7094464532843784275,13787317827165574573,15288471071033556248,539295333354302189],{"siblings":[{"elements":[14046724197380438952,11174956357335914596,13365787575147766652,7606769774651462501]},{"elements":[7328390293048134264,11928443479975480452,13499502888068976741,6344608598895868495]}]}],[[184100353348879293,13865156546334681171,39858928766549041,10106545199082221032,17561219665431608537,12275652856241114876,12355581258912636390,11470056854929660606,12355581258912636390,12275652856241114876,11470056854929660606,5378894044427712675,4201948982231733530,13753415911550696430,17575299313560534195,748620809355328261,14014040709512858671,2979324641922636612,3112424153830744454,13872967887151186945,10001456971216213684,13711278796042822808,123443879444496272,9249634391496231676,3781100874370501635,12275652856241114876,2183307704313290595,5964408578683792230,2183307704313290595,9561119895260252865,9096817214132100001,3021035903427504534,9582968940169602541,11907493311663610130,181184013770516994,4817679883937084103,9661892018138061812,14298024140716427609,8153168225574169847,4662730885634911994,1373137722989581006,16864248466090689461,16544674418383970477,1476615132589456305,4357286660928364719,16900256537852873373,1869829836676895930,133166698346355890,17386379350937886899,14525923927995645383,17326198145197728432,377775281182029829,5001574981394601409,2242906483384615786,4544024480326889146,11861745039759693790,14000077708196700868,10651855924747421988,6707549556416935857,5400857989461883031,15028144242874500750,15207617961093528580,9506321839375064122,213794282491536855,4750552034460244379,17950740318695853004,3819471905131237296,11645917397181442845,11179119706760207524,16378846970944671035,8581858945549775269,6171290035785189516,12169227061051040121,6474695553480006731,4167436447239655377,17908569181429341595,3304551841462504072,3902030291380795958,12067619502546101153,17649750432800509938,4595350197646877310,3005310045578696318,6701414834378751463,6879111094532397269,13028018113836102987,1696592386259077266,7943522470772365781,4606533261625845142,14420011482775090813,7728962309260783371,15467649311714984383,2025263024797118796,16859799824763365181,1633824213456038262,17935460245546073168,1769918853583689121,7891024607008626393,16203584915416575262,16451930188928924946,10824938386015858449,10188139014504442397,17606227771846263759,8612664093847175555,2094707527301325079,4752882814216082516,373406396195766413,1252595292981831971,3578655260769341308,13834115443803913562,766609903436277340,1124156470091268624,12577961045548863261,10581307417674220697,12158362569079203455,11236411353729683414,16011501241554224288,8110263762751447111,11424155936382897062,4886454578665817990,5967291658595735923,651757741429889776,7877388651353147401,15879269963504727116,1945932177079797215,13964315465057732380,4166351519073055100,15627299862956070859,14791730424694664153,9737566006602078896,10469954834741860700,7051537226009844827,13856216939754480389,7820132227760384838,5065642262387330639,14677270774545371659],{"siblings":[{"elements":[6232410039215266135,13007825802276482287,17469201621719997274,3625317218557836656]},{"elements":[10295204996536602424,13264272328369682889,17753811936117360442,2969861343769605978]}]}],[[6695623509055496106,3856475269410426078,11778057091651762154,3639618084996255614,15727400053400727586,15079554403599304055,1239036252635430545,5067235500751894272,3544080810141523743,17860813223067322342,2214020115670349182,14081996290655340721,5450866511367982923,12046525351166464247,541805334853280611,17525635406173017644,5527860334493938867,13940542350404899435,13994869431157874276,18138548628245253942],{"siblings":[{"elements":[8852904508007499365,6235291087097536436,8321878962752327716,5528684053741064020]},{"elements":[4419531773552732494,3370065519264310320,14051744268342443649,3129934477239029828]}]}],[[16799037282871458860,14861317735359640953,2477438317393655405,16850112924602205945,17193312734585311753,4197464421671095448,593888070249508444,0,2460158867377153209,14073967150699701253,393698587229144042,9897018699562302512,15403760632054852192,569507320599317815,2279572901204912894,0],{"siblings":[{"elements":[16574952103544134720,9848423035457803791,7149039370722168251,15865115470805630655]},{"elements":[14980787586271162610,8399710292919438711,18230020531957475942,16282584811829620742]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[15034545801107465666,9328134685786232648,110829080910733876,4250821939350695176,1394630806331531697,12201247022097191778,16228921593346724793,5540981308967052515,16262683837062736705,3444943174443116075,14321882309394080023,11976399724076258415,15741084224719728653,7167218740187920267,2108479466400960879,10523500992781693864,18084559524611127881,16392309362668639626,9910431870163626642,4306965461073664163,8761340433466990759,16828932137000128833,2348349595557829210,18309601238814102288,6690141621618686419,7896548919369665043,12130437762899715305,2761456977705156545,14222367477428627391,14807796117787670576,16218927186002388767,7877082550245093306,7861505246478234400,6642657046293066409,567443057547927936,4962531988520098681,4454913783121034017,11032692175451594665,15818464105310318903,16889379664350046036,15583177082558352958,18416173649350290030,16733021994861153485,5457109531204194878,5211202449828449170,387397703287744593,17423970546079450668,5331695136917034168,5204602975018287532,7804682123145551743,16184475773898398161,17806383633492102915,7806008025234779015,15596547216666649128,10083322942939404535,12021095180947227158,333294063486744879,419406305018384698,7930166925575659383,11941804889882528314,7029051446847328676,10870358600754106564,3290908671307159311,6033256737686447080,16428444435506081682,16034886258387630270,6265258099047416323,5155332694710747095,5556269241720840184,1407033520462800343,8788279239960369908,188529423317695704,3606487184992817701,2533317928314692800,16029983803978270205,9937287719837361600,7652762612315253552,17700302266760805118,15472687335725666131,6385298406622369122,12382980318690581425,7179451047645296592,13902948853468039715,11531705951801209834],{"siblings":[{"elements":[14107875915397983130,4898796723405732069,8183032881835579560,10330461968446653528]},{"elements":[608309216059009087,15657505314169978897,10976396690985755658,16681478498527425210]}]}],[[10590361711545904926,6467492479015847751,6498300686270535597,11235217016121196403,2050901983807334484,110829080910733876,457242200587969681,2508144184395304165,457242200587969681,110829080910733876,2508144184395304165,2965386384983273846,11881551527102582958,13252799754300043757,5542346299697481738,12941079563792721653,7629536697092816871,946522021654598871,12278464848326872548,15635598563846490229,5829216383525741455,4699317963129637005,17140824973063371511,14528036162963310089,8438916954361851857,110829080910733876,13912447523740429868,3904620408687697404,13912447523740429868,10858094054096997470,1129321940144333268,15512231662819526723,1215549820600439430,3458343838277692402,2903272703156588727,6649801311208103544,10630545905148286914,5177893075383648019,1498880294391033069,11616941586839624703,18206644320516320506,4747450833104484769,14768049486874569440,14037397727859129226,2645876608246238685,13180997555396826036,7271099602821356640,9269412218528362283,4487839141304141996,11836427138015445663,2400175033297146545,8041667181982169897,7238299764299447244,9109542469240195000,11538605155690031110,14777857662292006784,16373952745741192265,6449973465824329538,4872432625908382346,4727533735447793884,7377811649585784188,8790483486939521102,13822336377080202315,11324433051905664726,3883933170046591917,1347850836508112699,14774786343624762725,162550115389646241,5198535412457955594,1810879615721090595,14529292925087437104,901573947567293056,10398930790373150755,2440334104529491862,17181202655789893950,14929365801843940792,8870021205360466355,5714791681228629465,3834323554628492897,6711030840184034546,11281595561079380425,15721973904010260697,10537732998263177477,681925608398007009,18125046351628766408,2921797340631939475,1659393951957676651,4583079679507530593,11810555073590278097,16256144961183589074,15518167787841152639,2480463166045767428,5082572631562647411,16111515311953055863,2390065558855966886,14275533876396805542,3921382209782463383,5743265965284400903,17469830917999768495,16572716749928881552,17813468024803325027,8083084680750935408,12016785000603048107,11669045793692424204,12696375324439579180,12646965674726689285,2060520681933962166,16163008826279362177,8578621219445781658,2119880391859457420,9685741318322805911,12797568880876578858,14335363283221448753,10471668531838958757,7057428691420713199,16445403751963552397,10777132041965659341,7961496270085302387,194286872592472848,10404000052706966856,3333947120896600522,7849470502408677588,6337231606403825399,12282988631151493263,7617558447599872869,1845648988468028904,5123652400347227722,7578591360549995288,13839756351623329299,12296124092835508116,4448810410722431067,4473975626433411615,2500186167623149551,1012548268544035707,2726071433488304004],{"siblings":[{"elements":[14311481270996416571,4201960485605959975,7717021996621825206,14919681022557420509]},{"elements":[5673898759496293924,4636452871475736473,18104237363360020046,14791632146812083222]}]}],[[17785072076061664511,993741286788086326,7865916735404912455,247760509458695932,17748501974684380912,18110815466739453174,12568880596071824394,13806593611340548873,10488818944467126014,117026882898941462,14290703128354822274,452927647305573927,10555988498411384076,9428020669565985868,15880164876549719241,13188644033285038713,10531941623516941933,876506558037732753,3924217702418299143,6638842188140107254],{"siblings":[{"elements":[14469078809657960520,17088512888237620162,6633511284776989343,3355871571932375762]},{"elements":[4359409371571848320,7871270597332206518,4059018556858203473,18371896080309768692]}]}],[[3876021983055603347,17877184788649392956,17680647657185895658,6181834104039844669,3371382644185686620,1142312022162514913,11845989967580790536,0,7673522442369413322,3160812974839565686,845684151449360758,17608873124659321556,14508968750587345766,13274894557570404510,10166143021451461485,0],{"siblings":[{"elements":[1950321560811089404,7232985790317798934,494018737240041275,4691567852527047191]},{"elements":[11078016210390383970,16414038468917578171,10484699400277887896,8120437785266156526]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[2981378304754394248,17294425859019899488,5495097178942910592,2434773629067817120,14381859418018558167,9144484614969746161,11415072490952100139,5771544633465294353,9657779220672379055,5438456994412536637,12643200207107414592,6987214968852664472,15621004487594728131,15887186508389350490,11429703077911227347,1555320983035820293,12342983464597510956,1721151971762748825,6686736854588993319,14604830922575251990,4973761076371083728,1898767195310094849,16572729270203977145,16292509486847123278,6956931455735975241,2594250794135405162,1496020032490744748,11217850761024229958,9228370296094482207,12243405326392877785,13275748543848781674,1813335873883020498,877226986228825447,10752886091866738432,17545245901937676907,387832811290315942,3293170022147285653,10684553461035510153,12218700078866248864,8849376437319360692,11694761466190763465,12638603459987671163,6775818988674452074,15150402107598468021,3177806675025742903,392913243407254318,17159866653110642873,17582899527776021730,11408526068585385530,2600749880673817147,9260327115886749280,10391335369659247282,16902891662267525166,9400968035705469449,5718801599510914475,9598240703334722090,1005928392242417366,11356256834795522466,6465052781254919651,5392586007851921161,17157340750148134036,2084925749293814428,8879965415396668090,16431412192839098540,3195634102903031643,6839081243096090637,14807562193555193335,12681854598294316242,17318692263126481628,3031842894733573747,6081004964115210768,12005175970589167392,3218991306209329294,11437626905964344073,9118359933684856057,10613268959010198790,18059105193303388716,2703911340013550242,8009782073422058388,13426645715014884534,17396958375383482529,9714622499629802944,2559776249118675123,12922931101810206077],{"siblings":[{"elements":[6835977814218543408,1263577615951433585,10078229402860923904,3832086712508612705]},{"elements":[2184362331170239224,940371620984881836,4930719422694198068,1632196321716041953]}]}],[[5861510461696317790,11713819115030107149,13619986345995273642,10734691969379328197,9492386595246112784,5495097178942910592,10790324057111807829,1835966582943336292,10790324057111807829,5495097178942910592,1835966582943336292,12626290640055144121,8047721488773232690,8402841159211253593,9261039610992015760,11436460992288285759,17908434550131585294,17622218482403929882,14919328838644779731,18423027272131634257,6499707754744964194,15130106660846807978,13868582346105651989,18193221705235975235,8641803793639040213,5495097178942910592,4657316947222936305,13299120740861976518,4657316947222936305,1621749939482501244,770265607132408667,16597607401702510030,11283321608159344209,11285261533355591321,9527080756989410467,12989698462223270263,14204049468336898171,16165391984226597272,8637720693610288923,14661964686703582272,11662487706215040980,2344146149802321482,6931905540577180690,7446927616007912775,17818681973769235031,18229787188132544512,10997732918912712060,10794429469704020060,303319084087160256,2990313280731088551,14836264697127645400,7022102193686352643,7953886754610891880,2150984333913025395,11544950442947805446,16046659880394374578,282718062568404659,10723066862093060141,6986523716499349125,8980904574074545779,10268225218213621097,16022799904443332352,2749242135439624053,6200105758290859429,7226281380679404029,7633555436699295754,10826705963246974500,10335642785017519765,8174761030759883662,13390627276727403612,1340691561714257208,6850038983032695964,15600695294518191778,17172959671915095813,893434953262401424,16281114779867554578,2269047410759170967,6343373499016054970,4056382637540990877,14454222475383779918,5714846359509431881,16953150429407308421,4871576350218567938,537264772629464991,16031097163357181706,4036967876926796472,6347368904950649188,14135425811492616888,13139024194487782711,3818180889893842814,5593593565488117397,14008800437699638571,13141759823926591634,2072855713896309271,10295458055253408040,17841899464112965000,15797165573123685937,1509173014513414338,12074263333527239144,2516063687125657402,12499793264475845931,17745439915785303958,17072284872587759274,5603726027335063616,14835259284754155008,148259773203131990,16717408791558629263,1653775399991153246,8569538144944442762,12641128681910517240,11544538168776169768,12119693716437187876,10734413192314912817,5871331386099698226,1634417094340478385,11347541655184428921,7984824763765759560,7780934467469153531,765999228291961966,13027113596104629598,13232445672252302569,15487380705086575765,4426397393273453034,14237217213869079752,17700054626790757355,621954187625899866,4243616713306944418,18078771977705977182,4066946066255277394,5986686376035378791,14417943041578862592,13320070172710355512,13204086623992738973,16133898146518475475,16052876601831132037],{"siblings":[{"elements":[18325547907376053073,16366170982246659688,2929804154867360514,1214956399912043117]},{"elements":[8001705199429838139,13859409494220895514,8636825611379181572,2402042316382225294]}]}],[[12557191246434629585,1108086889465248527,1221974864549476062,163375589598418410,1159438872853427272,8742789177465922127,6463635564765920218,2760517875606163991,3829139372151580529,978966317795662309,10488405804916287432,1501943780297496032,1004602223654566502,1042395347595067686,15475740055062674038,4680808960929009388,6670651247250668278,5098060934423325577,7074333265814124091,1892313074776248757],{"siblings":[{"elements":[5034390179539343939,16872880163481066808,9984446366173922674,17260645953068108256]},{"elements":[14156205204524098501,648881000652320985,14335656466020773723,8178534800257707156]}]}],[[12643696511615720378,1900043037164314529,391582036264402054,14790955526769755900,10255797885570326923,4456452445655440145,7457110732943304070,0,17502974164686302130,14434147647403951961,3834816286310017431,9695055712162013867,16108356966278392543,8147566826276966479,1378266995880355770,0],{"siblings":[{"elements":[1532777645289842775,16526665831649998188,12387254413961466862,17598292685752898]},{"elements":[12935275941217583114,2189684888344320960,3854563705387840261,15040446214725177358]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[2957113517849714127,534309029635191400,11544311873258053432,17882777603096976953,14832734722440621137,15934930592501534930,14760340415644908738,5968928275597906994,1467764478271860482,2009382118976922185,8495360564230345231,9001316726400759960,1476228686992828229,9926265546383658404,13708518013943224926,3323385141244140172,128236646007518263,563126779725380055,10710544815496082143,18322692329841349080,4935454013116701158,6105517679507515402,5809925625105293329,10724329006479231394,7215392929036346276,12633157382364529328,3892909400383536253,15905967723289449199,16107352555606493024,5763624939658292804,12822971197090877027,5468279929777982329,17871739753081572991,3405428058622781654,337992362254510078,13705078043166119698,2920441690533620745,4525146002637897051,18309666788251571475,15347705875649550555,2217752593681366765,18190039517815238703,2918841177068674532,11693900813645993518,12161685437561318317,10841669970067038096,16821663833760093673,1111379915033100156,17457617770852883295,2493716186979991565,8892096909459830204,12092029998773332332,4737742107837213983,10667486448634427561,7041791300378260407,16235605865629792199,12124454157766831447,8554194823817536413,10123344624443999171,3719464704114399526,1852291261948245709,7395622727472578340,11788503871034458814,2210624982014450562,1685999208823125948,11122373884830477538,6892391871763264000,13495033894710099235,8247149182531434849,12381029035073056251,1903453838714728063,9093795306938195559,8048800776126096016,9146017383512717520,13846881608659751976,11704297841154285416,11429622801686750329,13748299616283334071,7681621835781065820,7990061028613800144,9864223101603136716,16243622272869597474,6178613610167304399,5903143289022110685],{"siblings":[{"elements":[8832389127426069113,6131364286917185572,18048574911583960267,2163811129510967340]},{"elements":[12080961203814882388,3507164343688256046,217812273724800610,1252946754184999199]}]}],[[6187766128046441829,16637209301529445836,5986576867832645474,5922508019418421225,13024012733771890914,11544311873258053432,6210682176616774155,787950840974080748,6210682176616774155,11544311873258053432,787950840974080748,6998633017590854903,3570316141473543079,1943958605314396905,10012081067387175718,200135141029109430,1606688486842780675,5820930093413040774,17509314506128466161,9790027289576767334,15366548375832808996,14786056233877230488,9005494907928687056,11206757380457375960,14785216876155790554,11544311873258053432,4125056665306141884,463529472047348117,4125056665306141884,10848272876028751353,10489293662354674460,9840627866261471554,8760301363947944309,12436788214163474656,12162445533604174369,4641779691962012860,14290962744495491524,14603819910351056481,3581942472941140804,12162439553350628665,15360440997232862807,3345499793346946965,10659041795656156776,6456922015436530220,7092823725420751510,12623532074738499020,18875304311094731,6571719940573427938,3713560266347595562,12395682377278584280,8286981031646296110,1154665288160202273,2615624649935557189,4218899092448517100,3701380497663798802,5442340759908477206,3536390696218620675,7023214025948903247,15227668798241529446,2213699054839117061,12499528351979889110,15436117670064463049,1608563158385631682,8027804073737091288,727351301626253057,3907441864946588385,14640110801260533133,6872658797796774942,2549418678947479395,16206149660994701994,3406469869107928585,8535732365763792506,3989750107491371324,14138311324097500082,589493845356780193,15906224454643410077,11027800454373938688,801409311039359302,2253747981612168453,10964883184328692247,100451497126742636,12437443202817183106,17472637185780293340,18194565832602603547,10174383473030179576,2051335116486710384,15544141683221798716,8573231947314422590,16985842955076178707,15370338645100846421,16849835302258141136,4901875136230200497,921457640403058815,11000130208360453061,5813803419095504633,3315072954495503238,911606307560010812,10433009819612042023,2554151131254948525,11247651751131640956,16166950492447762244,10680491820422109990,15901973788078735241,1382180046724549077,3183786581747146552,17697888516455301726,16329696358798189448,9010504481955775056,9516962715434021530,14612713247187470197,12226491450154831611,12414910653309646466,4785911206589617380,15303424953973325883,13481906293956861078,13680648795977347332,14887549806036031812,17604090014004185050,4917548402019381930,7693983817510042471,15046259598927765094,5866455520921265789,11273520892964518390,14627176346756110435,11290828999713261086,8925281728085521215,5469901212277294639,7496825047880373200,2528402610082364956,3660515735724586607,5583026199400217829,8903714959695549915,1159177440670368470,3334508865887652368,15726690606425682166],{"siblings":[{"elements":[13464730518151764077,14583257702327574163,9271441173660870474,11158534083718624774]},{"elements":[16309815517466357069,8510292391200766341,17673219715638047263,11467102716297814818]}]}],[[9060977665440604273,10027552640135290426,2799080757703150530,14894914322379659061,7660713294407500354,1803155524926314437,4424677487910650243,12698940450839451967,8181376997541351584,8922931551248940622,6461036366206726792,17651950904552271883,210554361390159443,941392763699484177,473957984774065904,1541372654049837982,1962561552937683738,8120916818858829800,4385546586624398265,9932743748708723826],{"siblings":[{"elements":[6895347304360288912,5774648020166790174,10463284502844539400,15375706275817089772]},{"elements":[16797056608379864644,8931178218740982433,7364886258755014106,5391368024239178414]}]}],[[879306166419150818,4615160352550806538,3179857122778292939,6988499023064880208,8103033194379355365,13368597490042889219,11350860331652963332,0,4071173422972594856,7395130407499413780,7880068322735498805,1759917902724075412,15772062421094746255,13343144832902701520,11996962865214726162,0],{"siblings":[{"elements":[12523287424936833850,3038258695463984189,12682936203093512568,8887538047431254689]},{"elements":[5376015545114290653,16470824010864277112,8736431771255778341,6197148165205381424]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[15034545801107465666,9328134685786232648,110829080910733876,4250821939350695176,1394630806331531697,12201247022097191778,16228921593346724793,5540981308967052515,16262683837062736705,3444943174443116075,14321882309394080023,11976399724076258415,15741084224719728653,7167218740187920267,2108479466400960879,10523500992781693864,18084559524611127881,16392309362668639626,9910431870163626642,4306965461073664163,8761340433466990759,16828932137000128833,2348349595557829210,18309601238814102288,6690141621618686419,7896548919369665043,12130437762899715305,2761456977705156545,14222367477428627391,14807796117787670576,16218927186002388767,7877082550245093306,7861505246478234400,6642657046293066409,567443057547927936,4962531988520098681,4454913783121034017,11032692175451594665,15818464105310318903,16889379664350046036,15583177082558352958,18416173649350290030,16733021994861153485,5457109531204194878,5211202449828449170,387397703287744593,17423970546079450668,5331695136917034168,5204602975018287532,7804682123145551743,16184475773898398161,17806383633492102915,7806008025234779015,15596547216666649128,10083322942939404535,12021095180947227158,333294063486744879,419406305018384698,7930166925575659383,11941804889882528314,7029051446847328676,10870358600754106564,3290908671307159311,6033256737686447080,16428444435506081682,16034886258387630270,6265258099047416323,5155332694710747095,5556269241720840184,1407033520462800343,8788279239960369908,188529423317695704,3606487184992817701,2533317928314692800,16029983803978270205,9937287719837361600,7652762612315253552,17700302266760805118,15472687335725666131,6385298406622369122,12382980318690581425,7179451047645296592,13902948853468039715,11531705951801209834],{"siblings":[{"elements":[14107875915397983130,4898796723405732069,8183032881835579560,10330461968446653528]},{"elements":[608309216059009087,15657505314169978897,10976396690985755658,16681478498527425210]}]}],[[10590361711545904926,6467492479015847751,6498300686270535597,11235217016121196403,2050901983807334484,110829080910733876,457242200587969681,2508144184395304165,457242200587969681,110829080910733876,2508144184395304165,2965386384983273846,11881551527102582958,13252799754300043757,5542346299697481738,12941079563792721653,7629536697092816871,946522021654598871,12278464848326872548,15635598563846490229,5829216383525741455,4699317963129637005,17140824973063371511,14528036162963310089,8438916954361851857,110829080910733876,13912447523740429868,3904620408687697404,13912447523740429868,10858094054096997470,1129321940144333268,15512231662819526723,1215549820600439430,3458343838277692402,2903272703156588727,6649801311208103544,10630545905148286914,5177893075383648019,1498880294391033069,11616941586839624703,18206644320516320506,4747450833104484769,14768049486874569440,14037397727859129226,2645876608246238685,13180997555396826036,7271099602821356640,9269412218528362283,4487839141304141996,11836427138015445663,2400175033297146545,8041667181982169897,7238299764299447244,9109542469240195000,11538605155690031110,14777857662292006784,16373952745741192265,6449973465824329538,4872432625908382346,4727533735447793884,7377811649585784188,8790483486939521102,13822336377080202315,11324433051905664726,3883933170046591917,1347850836508112699,14774786343624762725,162550115389646241,5198535412457955594,1810879615721090595,14529292925087437104,901573947567293056,10398930790373150755,2440334104529491862,17181202655789893950,14929365801843940792,8870021205360466355,5714791681228629465,3834323554628492897,6711030840184034546,11281595561079380425,15721973904010260697,10537732998263177477,681925608398007009,18125046351628766408,2921797340631939475,1659393951957676651,4583079679507530593,11810555073590278097,16256144961183589074,15518167787841152639,2480463166045767428,5082572631562647411,16111515311953055863,2390065558855966886,14275533876396805542,3921382209782463383,5743265965284400903,17469830917999768495,16572716749928881552,17813468024803325027,8083084680750935408,12016785000603048107,11669045793692424204,12696375324439579180,12646965674726689285,2060520681933962166,16163008826279362177,8578621219445781658,2119880391859457420,9685741318322805911,12797568880876578858,14335363283221448753,10471668531838958757,7057428691420713199,16445403751963552397,10777132041965659341,7961496270085302387,194286872592472848,10404000052706966856,3333947120896600522,7849470502408677588,6337231606403825399,12282988631151493263,7617558447599872869,1845648988468028904,5123652400347227722,7578591360549995288,13839756351623329299,12296124092835508116,4448810410722431067,4473975626433411615,2500186167623149551,1012548268544035707,2726071433488304004],{"siblings":[{"elements":[14311481270996416571,4201960485605959975,7717021996621825206,14919681022557420509]},{"elements":[5673898759496293924,4636452871475736473,18104237363360020046,14791632146812083222]}]}],[[17785072076061664511,993741286788086326,7865916735404912455,247760509458695932,17748501974684380912,18110815466739453174,12568880596071824394,13806593611340548873,10488818944467126014,117026882898941462,14290703128354822274,452927647305573927,10555988498411384076,9428020669565985868,15880164876549719241,13188644033285038713,10531941623516941933,876506558037732753,3924217702418299143,6638842188140107254],{"siblings":[{"elements":[14469078809657960520,17088512888237620162,6633511284776989343,3355871571932375762]},{"elements":[4359409371571848320,7871270597332206518,4059018556858203473,18371896080309768692]}]}],[[3876021983055603347,17877184788649392956,17680647657185895658,6181834104039844669,3371382644185686620,1142312022162514913,11845989967580790536,0,7673522442369413322,3160812974839565686,845684151449360758,17608873124659321556,14508968750587345766,13274894557570404510,10166143021451461485,0],{"siblings":[{"elements":[1950321560811089404,7232985790317798934,494018737240041275,4691567852527047191]},{"elements":[11078016210390383970,16414038468917578171,10484699400277887896,8120437785266156526]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[3105268577218919683,11989912106583026105,4277456366353513620,11137240172336086859,18349201232108609543,15273013952608518976,6704822519098359798,9050015166762925667,13226842686320519153,3347193472407645136,14960021788921891982,6062915076509555002,16799974262098921572,12277857055411791901,3201612051266975795,7382115164084804607,662146889887619116,13016842780887284098,3444811500233607939,15511441150823011242,9780556256131350880,12462620422518845672,6163736458104095804,12629343512035302775,410370606607622247,2132753877292689810,4842492237437399962,15053266348599923372,8239677878365373096,10993952151908376893,5375098356009186532,5720871005245331333,2190160153970881202,17635097469157341063,11337048257262422953,11433695949589795709,1252469900929234517,6591384140304875568,11305363300565636678,3548799676198027661,360948816514830994,17053653383707475671,9016758549240127687,16719006551341042080,18087881259038337828,12496684250686477772,11206483302239167954,2219634723706551584,5367363549117633394,10133029030119024626,11413555469778317536,16680679628030068736,11212520980057922936,16594017827355991948,10531739857082687251,2430412201132474245,7463275843194444997,15716357615649118109,14668021757551569881,6248568984062016809,7536808108301062106,11383013220707643264,3085811368877815492,5611202298845305436,18067080004557481926,10986776116052097463,11888724840386683571,6373548854931797506,10763783748826365655,405435378230429633,7715266384065309384,10539967146555409797,18403083751685888255,14219651521703164141,3823542448565172700,15974999712143818506,5852041549888251460,3399245960160961247,1076541560644855318,3099393187520493392,5549855333064892703,17361777203301722675,6477943894625696788,750182178165592683],{"siblings":[{"elements":[5425364553312560299,11537798991506700872,5015953739612256619,15826017064500090616]},{"elements":[15569594249511601125,956031005415651622,9670184325097649857,16069782850068809130]}]}],[[2879513735513739429,994299828695178941,1585596748559221593,11914602724680674780,3807059785668497986,4277456366353513620,913629680776207250,4720689466444705236,913629680776207250,4277456366353513620,4720689466444705236,5634319147220912486,6021432992260096772,17379177844709113555,18148389716978836646,16086409619140778226,5561421469775701799,10737090890048392254,16640090887050047542,10338127824406836382,427514973818059446,6898494281116593291,7876038991696360585,7429905847524102033,15989327760886530208,4277456366353513620,7897592305137563609,5440175996609509496,7897592305137563609,15615498811104146521,8763023278943770359,12094583620031157503,9866179977770847747,1139582433066975912,6914861059940787973,3645459706818631990,253608244444498730,9865313422699807597,15998323436467822822,5645659636913978640,13961812535297334411,5340070966498700555,307005429536758436,1286163319256780481,6058032770838451585,17272243230435409580,17369398293348642232,6158043189624147927,9708925955789211418,2790956839591196168,4138429296095107972,3535328407368277795,9700135768842174734,14319448145147282097,5881964376254836102,16711696053928320405,8498470451708153560,4922306519501733665,5403924585400744194,1769543598813232880,17460763794129666485,10387565085847724445,11591232742567061402,8003502727671701281,7632934201367840557,13979327468251353427,6486363691816042793,11342745268988153639,14098728287839280305,2178870046227241566,3483795873055764607,17443152305351061577,5305966124689838106,8624589050824803220,15809000059948617052,8102549516373065848,9896973536687845728,17046125982790774617,8199651181304142433,9336801064005548626,9544510767751113928,7524811952683170563,923190170727242743,3576209337232563684,20751220296815597,3770132006122172958,14246130156717634868,7125139312319162551,9814096259339725589,12086810276296916505,6105656054275187093,2162659368083199059,17626340052096547734,4831945688695906665,11120593372181605069,5666586433724345573,16466562864157760960,10637637320741191439,2794096152712308941,14424263854861774376,18252756052167574301,10907767536250833311,1746358447736881742,13783579048639022759,4749906662811750936,8202038189754867132,11868157637501866599,8275096542294687408,12199741612882419089,10385106192363125537,2999054943796773432,6212234577346842074,10095809519972331895,273466366345632596,4712599394738610872,3245476177148798163,1258465224357745031,233715189298476963,16132038213933690710,17483951636993470013,7744314804120440611,9755307473551826170,13822875898275801396,17915295845797304310,6177448900958199179,11323943430685288579,8586833157922900668,15473352249742527417,5434700312390917470,5961109338171990300,13737302363921510737,18026912553578067542,18247360964550724187,13769413730460830378,9821240592270828885],{"siblings":[{"elements":[11450418504506616211,17278388181238955575,11320954799920840864,11299090040262335043]},{"elements":[1040533151601578923,15816118616292883445,7353107187080723398,5335048287076543677]}]}],[[18436873134994699104,2765760054538534389,9309111706854554888,13526182235106470779,1639448531824830196,6739802991455815165,16129461168137018689,3397298042310455410,12578119759355526929,10022048361694374558,651752951789394720,7527737847089470137,17749088045456320744,7704817469132424041,8540509194238024595,8387072645177631386,288292975405847240,14668414383571516826,5595535913707147927,13814169895178089435],{"siblings":[{"elements":[17178441947422335797,6231855797333268908,1786282390581704074,1226511904030354586]},{"elements":[14877691943474638997,17890686887798413768,13957332300951484465,4897853218909943833]}]}],[[18053572586631467369,1280230726666662559,7083005395636071046,17086535957007414999,7648616930257435415,8617927733960858346,6733843007080666846,0,1820868122490321725,13138417964402594663,929904113341389536,1711678583644467336,6553606248147614968,5680882065797510211,133903590387358485,0],{"siblings":[{"elements":[6503383797764222287,1875883959911254229,16363507733609684626,14694297628848234914]},{"elements":[15003440957933230408,9364541467493196252,5007313390468073760,8149918120513618562]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[16924866050735876177,13816519302097419917,7464139112843182046,14437952329152815507,16102384223791600321,14810813990558044111,16662440353177875149,1061409571699162904,7373177684445197294,8117396090517610097,16950522942534043099,15190423556831993418,2013849530758379249,10106276030980799921,4688167895664468573,11199520023691915745,12916963807333958703,8891629328669208614,12116546715121470819,15688770843053582561,14350605526805601296,13147171646478491,15311619194950304883,6242159665686022641,15732692263219784389,13119615053780272570,17283500801830056651,8669172947497892389,5600112933692439337,11603617635739004623,10958013080565881122,6756936642788511901,6350951779140749038,5702398593327775113,5132363453483332176,8716842319797456142,11624620380491791092,3974923074366480131,379613444538228148,10530635117553576928,789756536524334219,6823617666578700574,7561420934971151619,12015542148157684358,14637549114638859077,2797283815309201126,3375500561784065355,17055717231604849835,3707972013117512372,1663599290483210682,6456202370538400436,17451983052281845536,11510162037317562450,9805177456638634146,6076873354448617196,9655526888190138945,2676435616420129592,4185640816350990950,17645109193608274006,13809507359805699769,6654978868455806684,14694826297195400326,12182790477580287390,7828078155477120532,3723899049361826298,12103278845470960974,12790586648153874605,16430188636519558554,12857487921086130134,6350598647806992999,14816410711584616461,9744095875078809856,9425670397198882701,10776752048143541453,8879552683345551973,5102716046529545228,15326394572236987555,14429893580759812947,9222186179475572142,7229097401750883501,2013355818261223436,4799155268953746556,2985183418454777881,17703115347578512655],{"siblings":[{"elements":[16260818643770995991,4039943982022423016,10581615478270533321,6703349476043001264]},{"elements":[14087148344668613763,1774479748128902785,17398878651719132826,6925124511054673158]}]}],[[6209288695096023806,11754821224810616127,1614401657169185710,9181154449473058981,12642126230284430873,7464139112843182046,9476504716966664158,3671886877836510710,9476504716966664158,7464139112843182046,3671886877836510710,13148391594803174868,17495545822936180570,6516191687701385061,15066359775844306552,3030073430126252107,8532181287732933903,1313587481002533767,9493742606884344751,17586085591202738522,6264447597434696140,10877981861721575981,1334618530452748190,10992830512929337081,11521925998028276125,7464139112843182046,9895460401253377382,2970642329867069186,9895460401253377382,16109328827144183626,5497643781745126277,18057142950217783128,14522847474529632700,13097711878235570421,12086037474820255139,6230733845585932320,12841778136991378628,3190325277210246329,1491664684286716652,148002031095872490,1257155954830697150,2420770718573646411,16100497144476352366,2106675872820833925,218278728670810803,2078117589628614433,341091188445453196,4895215051089187126,16337842601121009721,6259784910713888535,14190605946294603852,6539098626808445903,7830616390870530920,16822428877294974674,10102893894732968923,14209786379330379938,10855009487586136434,15140597654258361365,1375687589456746099,10201020788966058586,1728908101569222789,12918241202878528324,12883847894566567679,221714051413769091,6062654389835083725,4770464236727018557,17600367944571616168,16380085720501177475,891641706955494415,4318758021934464691,4558515869586306492,7919362439101658228,16830015098922605767,6893386434790817780,16253125507764647955,5165552683792036451,9699655801784875799,8163094508941873657,7345269500024208647,5161192913695844322,5691823223255311048,17857459491484385213,15182905265162505036,13725918933279176663,14969180915198911426,8167851283476377406,16597940880904810030,15085522102398235017,1932188458993012808,5895149836013298768,18186382947906068743,15443854059314999204,6821367289761224106,921585207307297636,14521370332338096144,9567458359470015266,962036983586204935,634064343577065117,15633725671053459130,15134450685511717877,3993977412179616028,5431260913294195491,12987751788041203714,13118196984385849144,16896172574270096526,17314786986733413771,6931759068944620513,2874434921947727690,6464011890456421655,10839122201233847554,16094644073133247963,11312728599684610361,15467129955427747502,15240547486693684363,3299165558757344059,10897258757856540221,13501692416240673099,2465868526057759935,16657200791062653650,15677148550969248183,10520872540137266405,2526848215015180692,8497622302926869767,13203218526721114609,3206274377006568104,7251698218920279120,4062608499715320317,181200523706944538,6665834494798638239,538973105167938072,12116368697115266565,7020367120134230457,7728589306877813577,6680082688451913681,13312889033346115014],{"siblings":[{"elements":[3091959662085467772,17571289695295820888,5894829594436045533,10045585331434762498]},{"elements":[10312122007154036091,9036066871401853876,3293924851231173998,15291344002345413233]}]}],[[6759056800257447282,18396177709304008835,7707799377628775398,11420607561670603928,1892249039274222213,2714859003830370210,4677749501114317407,13610249451246361570,16888043080685995356,14341074270556463384,7659964319457556060,7748899168303107853,6705607689186373741,4574758948909418614,18148445072724367553,11038304348291435761,10422099210876131554,12973161442718050679,12334146660450537022,5464813747006494712],{"siblings":[{"elements":[9932534018978071549,12220219867622618205,15471373475010629404,7546347704860986867]},{"elements":[5324367363105241154,11972991276670081786,13693754860999015207,12087428420128603708]}]}],[[7588528695988820963,477801822571568256,2545945447082261224,7404425582520305658,16564779897001786854,4559767838103373090,18094565392160207277,0,13622122121734382650,6563709294450341718,5240000350480613829,12473749089176861722,10655260651354830084,12737562749512991094,7083112709274098271,0],{"siblings":[{"elements":[696921929360244642,1435320513774278743,4481537871074035127,17597806107322409344]},{"elements":[9797903964146478349,16764650289818944191,9565340431800858722,15241205176551155980]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[5268519634013649652,12952845650223350053,16768531882050438388,14462689093185687107,18277220295645319725,3852081186223516493,17100627758382860344,9715203018448532958,7953222902470522603,3825331082672791050,5465265629793606444,6176358672966577768,17306807916396830372,16588126998322903513,6467743780679619813,18379340274211873176,7884974251905549053,12613644379350971727,395505592059137818,3588224288551760639,3904668345611071699,3339470090609407310,6216287519318568739,882940143888277297,4162710549574314231,12180761427257355996,1890381727484826650,17010461562491177503,3962332100974049080,7918836822795597611,907486615081043684,1026841857427498009,13046435817655837341,12980820035208013381,2159562618664935406,12030338451283004916,1920968325701278683,10398171293207209612,1574763909011715605,15688152896670340951,558932655124037633,7564549072577692099,17872355376553966121,17450459230322024190,13831731954964285721,10886158955087757835,4398553647749525875,5996830362659087199,5849098922998238321,17078048874655163299,9389700541469394263,9929326601092594419,5714277294271540440,15730025807840719637,2749747243393585201,7119831539676257287,14048939970932445937,7306854533913743350,16655498606991465004,13030518484788664841,10856711318942555949,904125913628094079,15757756965103250997,596940250449274825,1714506698269187976,12537262499547518122,102386843593201426,12854247983785862108,2906655064868026793,15327684198403983371,6023138564887027653,1646580939255352275,6009552509419456655,515341885868353376,17755087942133871510,5837604297379767581,3581712833910489633,16397882613028559999,701121412127849996,12877267663904526155,2349261106082594930,2238087291372346966,106018565186860409,16663491380101968212],{"siblings":[{"elements":[9234506234901857685,930441051602006944,5595362472696224727,836883163510895538]},{"elements":[17200885959217346968,18203122369288440933,1093813852588954452,1807294838185915938]}]}],[[12801899079137100435,4644617254182515851,4203760268706214634,5341943230017763951,6138849682060443795,16768531882050438388,17561022140727661064,5253127753373520538,17561022140727661064,16768531882050438388,5253127753373520538,4367405824686597281,14572437911721481406,751171740133657331,1568911397227005698,9328476919845500390,6556626643597285779,13384410403879642569,13575832712174167511,13446178705846024262,17406700155589523823,5413926130196215975,226569376799179114,552296959425146459,13987939402746715100,16768531882050438388,5161728911392248598,702924244724379377,5161728911392248598,7686587867526412547,13775487223046110263,15475433684247983550,13830456970254041334,2526871905217062628,6776131571028322492,15572476089630018158,7946496835492151424,11903090303536749372,14423289149900471580,8139862492426176293,1121802652055412438,852510397542718596,12637167995840834493,14679798708456148502,7386881768544337469,3055106570855277260,9098675436744690014,3702130735105602072,3322359306980811539,13219311582862607895,14297260183093272325,12956085954941208223,11323213642752018344,14289044999841654360,14920117955189959269,3667982753238177454,4480163795095895991,13414540457771919061,7233458232763568077,10347652420421847238,5720940576366876548,1145447581662120821,8762061362326210454,11895831450913848708,634624826830689833,1834172846288291292,13593980852070479504,10968128489554995371,14010764789756318257,6293125899544130931,3462516977325291716,6790296269648422099,12854899216181858285,16745485788921178480,8129399203703604985,4348045024110151490,16394921933847734583,10583798062097623004,8452333493097572263,11421859961065058126,242691562078153096,3532568941424005237,16959867297455596067,8923575292628039713,15239114643925183309,7928781076571717945,13180605458198843356,6212482027027322350,17423671048824127770,9893219710050221032,9956726498654539347,4366326548977571260,14062188703070728132,11490132547201097929,16040799290220726621,4871464564005925045,4562125716726787878,6067459316709163598,18255499552544155958,8410716229441820393,9842986620601503897,3728629196115285248,949172643711658101,14220314898870285412,12923910561988157531,15560543793043963241,18446624951485698749,6575229000911724753,12574984068013806961,13196067073363906412,9132240991046738730,3706681300530699591,425051054205526047,2913752927757089765,9822477882480155225,8150547223206604080,15228403388531190841,14877173832897357766,7522885474127836449,5037066355241041327,2563700894772518833,7029824265786430483,2497148481711399783,10505371986145073188,5594627438926975614,3740608580352793432,18000815436541870877,7098852060973230500,10915655022094973099,11857728758813560002,2324680056335990518,8710411882429733335,10244773471657262268,4633435133748927611,7795044804922755571],{"siblings":[{"elements":[16847520311838574656,13578415394588802662,3700412213892200870,12349386662778369582]},{"elements":[5672650627284989775,11218623580893195195,791677742975974359,1664938430405218890]}]}],[[15079619390590437198,9125389662476788495,3139939670955726519,17392704992737876960,3509035160048470769,8237358780362968290,6460464385360156220,3387033370185977739,168545959223646934,14250992820719754157,3511183825642569738,3179544178986684253,1766586935148896398,16098273357949919273,3735630240179885909,16979501425513757505,10930268689169319692,14420976637946220970,10872103952755192294,14701062069717336095],{"siblings":[{"elements":[17788304615091130288,689775010867881865,16214533857353246979,1518894274854165020]},{"elements":[1945314271965971852,11029190310194464955,834256103115707255,16524362285752993760]}]}],[[14937219796938933060,18379952926206871118,11313327308395853218,14510511413529619467,12677818951089446968,11246774683564465134,4640574398080722378,0,10737885461351673565,3505481606060423047,11450014057697967775,5523748485460673122,17401701726844320660,3375697453900137550,14629051661665427452,0],{"siblings":[{"elements":[8748881746227216100,12762231996596137639,9515869977905569356,1474393882878635954]},{"elements":[15981538083517757134,8919587827222302308,2154728587501871963,14914506589212157648]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[3430217909794797529,13715012292105753095,17149129451905260791,13366296804138279992,699049416298609888,381124555680706084,12720086397835211981,184816522750562530,2526850830423630847,8075458743275693986,11473812685406665838,9058823084191947996,15248823105676241825,1648425650213139015,7635362025430285785,12715371066928823432,14263617062173108175,11523773671388184819,5239746610556536197,10442841379838494618,15452174458367118897,1223199841746333763,816445260219771662,10186983240865572688,4268550946723402166,3870512996028457924,4930198429725822436,17010869343915798563,18157394098520078427,14389436548791562061,13043481276951119075,2005925057942663069,17366921320141611880,16732255704438659549,13273860163087306338,1625862003127520888,8336492783049558420,15584107241671510332,13011243693635395171,11431670862700360357,1201856787165778135,7444514480519304144,9658398899692550118,17133310124078331830,7966071156358148059,17831008533531627016,2258462907680341821,838333117551688000,15709990502404133103,15805247967600840696,17673429002027506168,2142711675413197011,14542318388913228179,3447819423818562799,6391674214498371068,16455881369831582173,14866672448267322447,14073093490635504591,17165467327069363517,16092116349003766112,430773972620534112,13509079917742631240,4260801221360431203,9689272603902866738,1270640374685680936,5924808469218370922,10687518030715604569,2599250438992209157,7094768166913514371,3025457074664072231,1309791192479779658,5800808558164685459,8193592689686676488,14552016988505788478,8862161343471624288,449575745398624704,8586869941763361502,1400244177096550360,872585710081118377,13481463732948528887,1695748498598770422,6150042556290884133,16420448207004826568,16034576465314606917],{"siblings":[{"elements":[14419406449888381483,8816956723976101965,12067085973342547030,17282885891460544483]},{"elements":[3831638896680269617,11622239582132795001,17114360658120078056,13946956494708067730]}]}],[[9322154256070381583,9298915447726607414,6211700909309924453,13274187522243721116,12776130354906699145,17149129451905260791,8422276395964265213,2751662681456380037,8422276395964265213,17149129451905260791,2751662681456380037,11173939077420645250,12126572889870170558,8563840656267963465,4428457150031590518,13630251491383420110,12780147952262047315,14251343962796158511,2108160714387751950,11404920232125352609,10660268257765535634,7596121331102842990,14938060673647139204,1093638595392282063,6652796766883086216,17149129451905260791,2131654456345527182,8784451223228613398,2131654456345527182,8594308326016225784,14051420455024637463,14337745878283924601,1942072978790237438,3836909626327382246,2532693077648834247,8235589428191026302,11120611407530275034,14015954836981045661,11935089581262481585,16952019268176903091,6897234485289248990,7849819108554316033,6173291398847785673,5460277836870679496,8519137401275758689,184883196954861291,8990527448326605097,10025699571349936723,1493557664418643745,10752618541087708234,6776692080973862869,14851573908424384620,14875391851856058250,6663517347899499259,1057787578783021613,699240894827788998,7247975343473288245,13445572698745469359,12297453983525100299,4657168302234687467,3954612152370786819,16649386921279368140,4109529949503344154,16453397825852737573,10518400286472512739,6750129799405489795,10215470765856925675,9166400046794218514,13135397338281579657,10455771379020032240,17565732518231535978,16173498772941136144,380614095218770449,9442135384726322865,532112445392260871,15194719198513013390,9919219349513947056,8044310636009110033,17533633789105288937,8726282767908002370,16961631948140832037,4940275246009362230,546152817674226786,12849720161133231832,9542825298921586837,8238469240444308995,4178029113525500779,16205899249957816012,956493212245880531,11390321902993255777,503703771027062517,2325064042319739001,15323069447419425338,1028552983047103300,8388181016526700694,2398896553839426813,9349717433158561125,1946309112323953351,844914238916802771,488201364774484232,11148497801694420274,635923929243942049,5522524995921545950,10485690782770224755,11637747710383696378,1826736295147059475,5367509264261071666,13321600350956088117,11749514538726378845,15785435463117234020,1074964262657112829,12109262675228802686,6935193387829803650,17359133012810824603,7568446304507437160,4468109424747621696,310744480900600356,2579912627235345369,11090713705795283584,6534490506751438035,12816425008089545734,5633995913016735776,2023310221170308978,9275147642236515587,9321949897356815608,13865945720568872329,15627292909522621561,9050548506146046913,16498025583541417198,10478970245343767897,17766178442144355111,11654650616248662628,12835517056692115624,7082800746342139854,4448965128423652808],{"siblings":[{"elements":[8119404659243000173,5265541261827604459,4472916974978895628,11746788677482055768]},{"elements":[16680612008794498936,8640953519412144738,10181843617211023742,8267313235995818586]}]}],[[14478101300876821220,10385377098962883722,4492660713764918130,16102362373083595280,5666436387049180041,5896003504312180401,5833126470045851214,8180281291161807370,17194412764412859607,5521598444774470730,15082581768606045150,8603784172261635569,5858447224261508368,13343782347812923182,12712847952668858867,16211631899098508125,13048888496825187100,16001905847770027040,13555264721702702071,10464598589579141728],{"siblings":[{"elements":[12658691693935975431,14091726673043127160,12637313250391534279,2658167426979410405]},{"elements":[15038980373507792589,13371167328767946914,13237656934183842649,3552342384838824807]}]}],[[3638719848580139228,11104148664950140749,9077522314767261731,15041011094787932856,4658369530970078509,17387218676426408169,7436340825314121525,0,157367359697699289,2207674223807939344,1557753675226850370,13752554373432577879,14578005422862011070,8969556831679256274,2679494001381565882,0],{"siblings":[{"elements":[8869631336124654529,17964708875679223980,15343473544614844822,13214607641495831925]},{"elements":[1517538850251500314,2069342038532515874,8402108130312599243,18039642967389072816]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[13874923908060168686,10300199960485500921,17220223416712727809,11107917826713906228,16080860504613725480,18134296401397245731,8194394929420644964,577158521334961706,17558309524404453886,7462499894769427250,7806442614678325622,1288552523294564736,5928745459609368726,5673755939833451559,1376743317442148286,15198933849581950858,7573015836263811984,11548290280681219346,3048586463663642501,17924736790130764569,16176421463462789125,7400032287983233044,15731792546871809470,7943532610231399071,9191667656456693420,3262984601497837521,11548794947560432383,16935173460323565878,13440064921123574122,13006542764524135817,3200332762477917120,4727549247137829594,10132168364538911488,16818212172973425485,10153429833011927584,6098139687959497779,14527559769504347610,604659360669510816,10236113364972241143,13365343744988800826,16324715386374244920,12941087553157892178,5845088838124668771,11302395006148649007,14757239247984955116,7234202237939122814,14532807582245635211,1889883654052729616,14382821135875337196,10933403972710030353,10477969708791190600,18158356374030649371,848649292582758684,1386127699829388770,14693104195570201077,8557418020926389248,8465103855599324974,7678674795737258990,7968512843367564125,15134518985828235175,14849136868521925153,8200859219989098311,3125736942597523248,16341012296276127126,13668079212165384181,7587065128463574204,15516306994332084122,16992631783574963080,300488920541911522,9606976928846938977,10676817243288232823,13557774887840421349,2050879513960775803,7921519393270082527,12510688718189386154,12160967257524916705,17327790555543273617,5585739159986358700,13436395299212415907,17518943154379265640,45119396072775821,18248002885183339956,17650535637853523767,10046834664009893652],{"siblings":[{"elements":[8321586574402928751,11350831215799910769,1895653507085351149,12216094806571370138]},{"elements":[17728593759504001074,6650774988450794345,17384983616442277651,10830012975394552271]}]}],[[13988798512629653300,76253716425328447,9720388670929796746,1548769052874448837,10678972000872081822,17220223416712727809,9794176158596115729,2026404090053613230,9794176158596115729,17220223416712727809,2026404090053613230,11820580248649728959,13544866904491253671,1508524044049341257,16177277620117888502,9218068684094851193,7460625435618660115,14581023455585331717,4191273768828006679,12831902645852406743,10150234971378278442,6218710481120351195,13068904388938032076,14349008165164964017,7220820517938486827,17220223416712727809,2621060787227244695,9841881305165731522,2621060787227244695,2498234580914276602,1948421200922764046,9443027978162861716,6994897205817072798,6746497094135840902,14564511350746964211,16831736954435400569,2056373989216916187,12734170832192348800,4208322013663975627,2143482162082291677,10961739692902972349,16585828242741371314,12825332321073349918,12855224242854740518,15289131615815431715,16178865082648242669,6126770563456215444,11314967831051162149,3092712508609066402,14135477514485499165,5151390592540432830,11079589504367893985,4554275035609406280,759087744066793013,4716063733036944965,6328687062166235053,17122492330897146813,13403494676768996262,12165046964736682786,18171768242706016850,4499889398292721615,7639546611040194883,8478711167005028192,15548889025473187202,17829909962550759611,14731588264574577805,8938845596279872123,18321151717924116238,396475399073735456,6880860411668657361,17737202206394749472,8246190175691935529,16651904759104102344,16514590622497487494,14031106047687609343,14375777772587941665,18377248783886467451,10851631974779303762,7085234990686355333,8291914806463373328,7994519542791730516,12403577213146922612,1022843831225411504,12558853282718754101,10908306888185908160,896526436403640225,10927710552230741681,16216487141749341667,12216281139627206753,16224215395098127712,14815843269543878753,9810155420256072347,17703231211938946551,1214139682251219756,5521982296862822201,17218944837144903256,587004852284780707,6924610381785949574,727072259197312807,2427909203453611423,18437579200906443397,18265119955007604457,6497984190564580527,9833062871853791402,1710404546114930790,12025024772491311251,3615092381076884992,5312080124122607782,4744611673253563719,617785055946958333,4109679415990489410,17142601226805912522,1636577031909725305,14081177065677875855,2352124489388707931,15165060059756231778,3540697799400848549,15680242045861976924,11593685844168731596,17198012484597520858,12736666725130690089,9237016735828810625,1933058368617464806,11463052868591004800,9197603278783016781,12167701639262605768,18217540706334970371,4734585903824064381,7609066652971090719,16043948255073396199,4330786213873974863,8942602438630819466,850388319733276359,2401619309511840252,4429291596726907249],{"siblings":[{"elements":[3517731961418074301,15643631915143809542,14704079555053427310,8830626570097046551]},{"elements":[13906333527976971193,9910594232029521532,18227550812091777639,16164470906364818327]}]}],[[10698760992492616208,3084888054791991715,10504979538322072085,8672062314095562484,6538563662751432544,15414676715999535405,12668798161168817843,11732351557754657681,12506388983667251260,10615541933867894029,5076084454517619357,9711770352882639553,2132643363314560060,2389496404696519187,13998888976360429267,1523355177437193668,13885000321591115164,11688271530861571248,3492677459371171696,12564933426684726269],{"siblings":[{"elements":[7263551833103530413,6200736473050355321,1039316657339326374,1927184996573515931]},{"elements":[18228550423246657161,9016844207652041195,6018162798259459120,308819794068585281]}]}],[[9784294101061869642,9137203227838832491,6318193091794681542,15400317955513858394,10947340765512471904,16048632134224818483,377862090980006891,0,2921978985236500424,6626571352099380300,2040319358899837010,7147995217373255896,2982076959904495834,11952814429347424958,12559221845808852137,0],{"siblings":[{"elements":[10175556547943464837,7571288498428198039,5870773167665888501,1004468409750934851]},{"elements":[7102873559898376976,5794705437901675967,18361944348361383610,3734242435928352435]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[17730780067944809742,17518963256923921102,9717963889501765181,9889333779175288446,17354124086167775810,9341046780105547782,9463782532206378426,5697696929613651984,15477029259429788513,5284028284360742872,15659165034173660700,8373222624828423792,16588480323682393975,14038735062324207145,3190833584036494502,1516159312330509216,1680633347890878490,18066968257243839877,6417415178374158875,2392895987843567788,9518381980183289956,17344412373544896756,16231594649760017448,11962230288889464129,16565976484823794958,9632744212580298659,12535279470199806696,18181151614510170253,3239896109492477120,14448535428822926046,10566430734548849545,7948558204012273967,7441822548969899197,11054714104426912966,5727098206734316170,10554880058789606853,11367680883410349269,15950592910845777768,7938462655227805025,14887413847621781320,11067322404078384110,1932890836035370572,4762211496694261432,13337385683847119543,9329632235198825870,10738135897864078801,15535224595294003533,17962066482630225808,6099696443075548176,12162825799478904764,757744944612985671,16880734573288606831,17103112778625804023,1748882665563358221,11564693213149332613,3146989962103247994,2121482963690760677,11656376260512447754,4478580302598200708,11204574619333446305,2379232663091112881,3248648188462642397,17066258138991825086,6830807813140638287,12493706632655472092,15478303205849811735,5867213549580254545,1614081641107065718,2983768137674386946,11663441444425153241,12314007578863325622,1593765721002081508,6690599623344340798,1765410693453932363,14248197648680736180,8155473757178746261,15462355259073896728,5166316952982031985,6848724932534938178,2838500778340260384,13076234229555688944,14294583243378430366,6644658304540038648,3737332012452178544],{"siblings":[{"elements":[11018653891288600245,7457833601627035013,9915728460678587024,17276883179053765539]},{"elements":[16272487173950120557,17194161083645730615,2985732629437659869,14431043807897268535]}]}],[[7989529141045576704,1481927600417149098,1637221502741196772,15918394835760212531,4886905902603890365,9717963889501765181,17191301083388750914,3631462916578056958,17191301083388750914,9717963889501765181,3631462916578056958,2376019930552223551,13154382002108610458,11942637006922578807,18238654591764300335,10054387033449389686,2446377057876747046,7767513416118110165,5385749249401275861,7310810065932566576,1826146359467610312,12873645198247819897,2437328272890438966,17431368158774566826,8383502777682504060,9717963889501765181,14390985624812784569,4327744333080704308,14390985624812784569,15659183209967909754,7587533364484830025,1576889021307456247,2176080728489564716,16614052675057426327,13404887337289300662,6800129607780396393,9546791959802769063,8398046164664065631,4339092994799150929,7884324493664583491,10367210371562241108,16024031608622407423,940651131963071557,14875440255208051044,17944324327851098861,5137042798855307485,16625165027628711736,16488556424740040797,664361067234530299,15957267201192211887,15195683370294912193,15166999026897443931,16243427441587546200,10866278215791452497,6411914887501379580,5335376663264915548,15140474908442067525,14493991912214263196,17067962147219254906,11010652854048922565,18038168616867940486,3015920215655325691,14482522042232798499,5584184048471098709,15078102481145945353,16696103479395424205,12762508413419179805,15674440772590996079,8475552319426210596,13009067420684581361,5233706664624849044,5698331818670542495,13784371837620102417,2783780178626945907,15847592608250109049,4116001761933842464,8774836830048133554,1122631275405281979,5456497616219595258,12008914457567020898,2430713432696378181,545850204667661772,14937837884531364322,2264639140794252346,94079676740597952,17659586681280881089,9140676728032430901,11873089452916494799,5630995334229911251,12345108454160565355,2648550277102781784,10588527724598376990,2342786786472099236,14400722085920042660,13322718986751429215,3491228538005377953,6510905911889264261,8931535993760748060,4233246009677506104,12262979903463807759,322600932739821527,13424341356026568726,3468103607908939356,7885800363841418618,4645595799625512268,4585463119717268160,5144347990366566315,18082228608628675513,4398759149791023126,18094988208460111233,12555981489149039538,818009129411818091,2433354194001644145,15040688246812880329,11011447301898015351,17257753645757311225,12663327921480164120,8623246417442233944,8077395383220828571,15260864238789041642,5083039833094159257,4876442205301302786,14157119118630650015,12494414964761743413,12518562440533560129,6865301472451471578,17877924610050305896,7307614885176145665,6948761063468110087,1174357126761300031,1369869052351427610,8377347277300097754,6806991754193965215,11304997448075487122,3509844693016716057],{"siblings":[{"elements":[180278596016008821,3190538166425734593,17822691823027954640,8603837459543446917]},{"elements":[10171860954903476202,17170767904445474228,1666266425404431967,2871003251187555371]}]}],[[9969308533833169979,8140035154566822045,13777418961736591511,12624353662831536136,5740186130652495666,10428504976359145479,6198864924908621764,5763745677428061242,2720229500793308687,10821525747712815407,3071363266517415621,2378148514680807869,5935441837134611765,4229483959236544422,16261192539385599868,14881419370608925816,3866652223368021785,2665098606364025765,15298126166091821316,15078075591704279206],{"siblings":[{"elements":[11882637916940290615,14285470749572505935,11578998856112823729,9726818215617860437]},{"elements":[6118065580064522853,10859396399423868824,652533740523273924,16148992833321448507]}]}],[[1977252650022196265,7412612418362998524,8387436487201870102,2053041528113071702,17406383480039276644,6356335956064022974,7223831650290236221,0,13174201829924627686,14574130811658191996,18331710105872336017,5067083852937537260,1875983027785097635,4890261172648184608,7904821577231873444,0],{"siblings":[{"elements":[16027713268121007125,16678121002938509461,14376504467888048390,18423667831707248941]},{"elements":[1062309410470407545,9903906975068990945,9437018736964977703,7125320249212483963]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[2075855741644996291,9157067040989208112,5294998378757727296,18146573039130488112,11796760360434000413,12137940671652044236,60092273779548801,1796905377868388397,2733633831238396526,6532289241715518362,9205494970344250449,15689422995177277563,68762038141037454,4294010356562914312,3194028637873311491,1778551678138317793,763080260502308314,9991794465023108716,3850292501224842372,10995806390610363130,13391148702922245120,6432730835747473748,17937578682530406517,17835094304873103336,17919866796104645938,5061950529677392271,13425758741866242103,7168440889070900695,6647497964193582081,15785624080622359453,8784849953568480516,614357895425397202,6012695052281117472,11671098996728851319,7796267177051840013,17780525432626520643,11126958244758111250,1704449705218433320,13839005715079369719,5275787110927945049,4941333151907014442,15653302888835266379,4866652889900333198,12698421719591218443,2884461095163956839,7562566695966314102,8044592711268133205,14889346065622183351,8062063458191250064,6126472711169187038,1326059077718041118,17976641102812395974,6379834301292450935,7605956193794374401,11027865661708221106,14980909491850006755,7184579789069708505,18070936649269043332,6827714151510374871,16459498642841377126,2470368653733780370,1576843631870717140,12632944136259188223,6330444776106863944,9950291332725101329,4419025891602067335,5251621040734299699,17727538304377433361,2115919981081595234,3203325823177686760,10015919392892486056,7180900670771471214,7469255487899468559,17339768573158833224,12114939887655650193,12083549689080629000,3447190975648050147,2815566408580707135,3823441941367331783,17482051856852143558,6196020286283934532,1852384701033602959,17535449727704879548,1152492433505230309],{"siblings":[{"elements":[13692170119849387599,13778521954473055577,4370705135912326605,1484315758506010359]},{"elements":[14379065715719750302,5773497642325633605,11512610239832849658,5628990104839659425]}]}],[[13823778537223644569,6534423753809855158,3414197425943290709,15839984044827517458,5362168030315091836,5294998378757727296,17889679387492144103,4805103348392651618,17889679387492144103,5294998378757727296,4805103348392651618,4248038666470211400,5279433330624669249,564909350181224637,10496736453722402755,5284462028497423781,13583492437266895823,14277143415867888242,517491638926480195,5369271515099845732,17253839144578130497,1057463524039817154,12347862974397443670,6502940849833126144,13301180681333074418,5294998378757727296,3907578626781353115,17208759308114427533,3907578626781353115,1891052798847044170,4140931138236727884,13276561415500372012,11499908944774268545,4560671349644175517,8566194374829318081,8237434220684689514,16790033361413876754,4364625914589664011,2171790168847775897,13884843277437378170,5874310783980831161,12190607088347560260,9476054394043359420,4656294956656645644,4995114152527092979,672045186773041717,4425465650207884560,10532755370430835859,6704136848452603069,13653319421086383287,3979923098310867466,1598163850625662182,4874838384749483130,964509508371235545,4397907371050842962,15107703206651413999,13131453057644934323,15344916406070572598,5391637856411472339,9031651940523126709,7705449886977557281,805707315655482553,7910840415933629773,17768323082865812963,17356863424971191756,11751515765955992205,10050299751643223231,5879895712444064604,5314923419035354854,1506457422581721489,1170442865005477908,8403436998426414346,17927478428622476525,2022399449282115876,2900915264383122000,17854449491879490806,13526918969076401586,10198340105288042519,3692404319379661642,5954997208431241596,13508594420150428156,11725570370380794943,14963174344945496763,1198869675471915084,5168332099307348310,2382287904743485695,3459284473244734741,1868024257942322321,13425330121233677878,11180945560428279590,13433994174725961253,14530244961466797199,9054895185318136348,2145527700201011625,1369296537371705850,16117342009957098834,4442317356566280577,3239244267966383374,14930374112294987452,10165751376455030252,15305901376808163830,15184233092942252996,273887937657409334,17692050356877688734,8226490326704396076,506511790686705594,943014684133224309,1532219471549822054,11326843945526310356,7874735457215743312,9937950737308421108,14415102566446749266,18050758812793942488,8947780731570030861,601456936670175762,742526661162924748,862832857666271665,14949380753773083586,17645504197790431335,9697605041918750519,6723718367768856846,10251023699567198980,12014930321816773206,7965652360884577466,12887276540417852835,6108441058753485065,14869433883738921447,1564759890937828769,15287651210951449783,1740399011912065575,17887618795253574734,12667729604543272438,10985001721525531137,14365955222531829459,12005433932946610786],{"siblings":[{"elements":[7921486733976605061,1746438619769193253,12187459959093585039,14367661231767837970]},{"elements":[1410813527331434582,9368373922662061483,10511869349053166658,3212429785859426119]}]}],[[16512571115507401139,15305090289410763221,3756450865008213710,1606933523836501236,7726202497647979283,6797401632777636989,15708591265271632878,15820435968839502181,7746950746258983954,6104504424816728965,10583469308698268600,8100718786277950812,4287962732116845423,3061699467445139582,14455261492174108913,16240832210597206629,14657182486644813572,13294209194934952123,9697582409126224942,6832082294566891010],{"siblings":[{"elements":[7598098576059932429,15973779062051961138,420683157235719245,14992760274065341253]},{"elements":[14498175754340189482,53382376825666331,5771875289893756741,13118613385151242948]}]}],[[13538726247116342111,12724640189887173038,12789659605729025186,4917994906798337262,5477700795426636904,1225639489108631343,9959354054354032643,0,18426031188056418011,10624089149117925795,9801748015085379393,15381995045584352511,10511081687809628885,14205023898652042404,7194097252645429538,0],{"siblings":[{"elements":[8884475687051294499,7713158655601014928,14159919427357321349,11010166367619818748]},{"elements":[2983177467934199153,6202611793952066994,14728374713486374737,16400562755444153914]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[6585508045033738043,905835199593025760,8171019480820564802,6756273257040537442,13443501840570177547,15970449789638496895,10766469730078580452,1466867718611381555,16704430145542863168,5740988760524701218,7867790665892912846,9566797709149548858,5659865237881593686,4396194167113136631,1099461728349398542,13580547558544276161,9082315148229277145,16464674257926269266,17316838633954153084,8609267716560805443,4678907999597756930,14952442569512302212,9029337624333534688,8537823166696368605,18437712830147121762,3450650318256522346,4515354462680208713,4980762118377839974,4480545509699131199,2423326966761792617,13127296148820123486,5319689244543137566,11861347649943952424,7683665329470012302,11599182757006469618,7426980113180945834,15769608408726162721,1736386642915216102,13500998825925812429,12624480692962493348,10110958912789666429,100169951737804356,4968851086450990032,3377637754784489145,497154258396129593,700381220078662583,13614789727005595466,11587602764555920226,13075753966573756249,2961599092141688572,1479643537791297054,4144181021571306558,16973611669380823828,8802953507579297787,10849272909304037022,7383579378246096739,4783968846541245939,14369412218194939042,2301629225599828570,653036461462737858,12434389369660051877,5547326080775959572,10635293910227684591,18414042141208514094,8136972240987125299,580701825749052610,5046886386886002727,13716390724298306578,1768381100043046960,10759278417381492535,16510105377325232951,5615965135201080793,3131885238001357130,7585782952545527135,17156749855357193843,17809118945148429663,11831620189522650483,18282763411073909396,13108927381339670518,4488672853843462701,6848920543354497396,17737982424777701077,3383063426715895896,7156726380526660333],{"siblings":[{"elements":[8325907241208732680,17653120459707896817,17462569636756050513,15767870941559226621]},{"elements":[2184362331170239224,940371620984881836,4930719422694198068,1632196321716041953]}]}],[[453760564531938794,9651654950506562323,10933537921093851551,24220830234809191,2017495629020389511,8171019480820564802,6107152728670673359,8124648357691062870,6107152728670673359,8171019480820564802,8124648357691062870,14231801086361736229,691607103100777401,11205449103351846447,11670930324003113729,6081566510570235757,12599100786983152802,18016396963717924676,5142743298055961971,1601297962091563280,5394462341590766955,12313999545370722835,16032761435457205197,1609257047292795003,18141506460999951007,8171019480820564802,3604467766223581464,3299230157808948150,3604467766223581464,14621352387898450660,3485848720762963036,13883373091449440774,13969861933331271374,484666335980465623,1364718120048959979,3586637179787044972,16189911962797206572,8688020266113077318,5281923628407348719,5466940619187178478,14605163746493467041,5324451934397346978,16041349577215335686,1363224150828259981,15766086536054848440,10138384300571433989,13524534262210378280,100474110313136066,1001025702982180212,12769729455067264544,16896349528260550339,9508530281329142890,938716799966011302,12885875651844675208,58588001755278466,12164925123449305925,6446023272148083863,1377503146619294061,11330366022954323973,8665689768091740394,8556495737847017982,11663911118174871266,13779420432114643747,10708631566836360683,9457097214327518875,8160265319394160567,1894152497042975996,10009702937440963339,3443212373036446644,4699707402827870714,6559084908095311390,13504521939542250173,1359715569772658314,13630857176247996884,8159643057465297171,10241248246023630740,17176358921166971939,10557402593559175260,4913093239916935391,15899637080842276833,11304061692000456094,5209472918689612052,15489470608995089570,5641495893230505251,4832540365931795894,7222563455496685333,10117659831570396508,9893356260704881820,18275334172957699059,11078830071256873457,8346238016109091640,15101786055156954602,2334915519058644617,906637799056180270,11408636462160588015,11669117433976031413,16137847495082569750,14547635021983576640,11340620082541586450,15929569184968640313,12051274055839066683,15723452914223682251,14420193069152542175,1536551346306261914,17719875063762459561,12485836992210672396,3252664935925149902,14029256990443028887,546027336580187362,6635130562713142017,8347972868037804527,7847485915331880543,8196234675883021089,9737366710745397495,15954856846020956285,13918849311137892577,664915302454629068,8676474075918702823,17507094058146116449,2033306987861080270,5388925600108832248,9790235955347971598,10594178988110038301,14307238146998098455,1588137769060161798,4127934396507714609,2383173338253646814,13833883024388593440,3263655399201503700,18095568615736629407,14576225832216025098,12524829075809111843,8098117690573747699,1805082285934022589,9991651435945712038],{"siblings":[{"elements":[10230026756657693588,10270687125588384408,18421075664859215373,9332450249749917760]},{"elements":[8001705199429838139,13859409494220895514,8636825611379181572,2402042316382225294]}]}],[[16959901397053164208,14385672000599817165,10445620416025857341,5940827201224818018,9081382839255925361,16555079556430341583,15782951561388733204,18203259318263265716,15097905273679490007,8089090025761878240,2944451107707255546,5883834669424471404,18049174029286349249,11625353513726825337,9206134821786227338,1347314419217277249,8069031233754363547,17529552625843842563,13512605454617093146,6196539774674354985],{"siblings":[{"elements":[513493580432671028,15338177276262648598,18171529983572781887,15737482512765058440]},{"elements":[14156205204524098501,648881000652320985,14335656466020773723,8178534800257707156]}]}],[[12370520503901228761,5973329291036673896,7523432906809371347,17881606055395691061,10134008100521671201,3813945103684772759,3014772868284540534,0,5292390117778606422,17058047157513509452,489830247782621908,462656581591672066,16561740655677228303,5927460219554301640,4659894245050392370,0],{"siblings":[{"elements":[3224379794421287859,4331034067904756854,7481175609205825361,6652716902556323985]},{"elements":[12935275941217583114,2189684888344320960,3854563705387840261,15040446214725177358]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[16974736857611946164,414052696649986525,12761092839875154637,9431536526695835908,8066269832405000049,6617940434292386206,2115246544883577496,13041377711437924946,4023632190306725276,2174746142942924835,14679982990769819478,8695652588240814272,15830145196305377007,1136917561635165992,13357988256480513568,5491733491994559067,16208148765543623035,2536919017071227737,14053697728524065720,7077964211021427779,6879148849024430641,7690941439041135414,13204069662445639939,14995635571442170071,7000444381605001746,759581653767223693,11464948277725630061,14923327604796330200,2626204616781702775,15974631892474823435,4798663252677969529,7332596312866058818,5409933776576278994,4310253519130264076,10822170365104222825,7369904969893779784,2743172691778502610,295276490182242395,11015396879504278857,4714270146378897545,870000179178164013,7982578289809786197,13783656218674203664,11108506904592816772,4388350362923766940,3385711543549478,1099720506998725390,15979897623278725727,3338357744236775649,8129093416062296678,2544535377654103487,16953273179299667168,9510017786568737935,1298066524944112260,3557154771275062036,11291486369927858242,14930291685698976858,17604722729163370332,18332845761885992134,12591736226763271493,5606610490706100355,7448609692439487721,3231324665068923828,16991894757525736895,13795361582114982346,9216868284477811072,10778011676360696208,11788175343648351164,10757554058893756551,12054611803137782993,15670849622784377366,6103597617718796350,3445598223491429551,181494422334166544,12798786768952625247,8023089027650085476,8739991505188576143,3618727145606412232,5596523746288584789,9503448711294795701,2786485897656100838,17426839895816794114,1040875946713990989,4740138127690375870],{"siblings":[{"elements":[12146490599842533130,13873232037030011879,6924226746478176370,12732554613912801029]},{"elements":[17237443820363366542,2420429222455719364,3676425687366728082,12257612414054404205]}]}],[[7084471115499804056,10471190737973324631,14237245124059206935,17373564301520418090,5592391293065741633,12761092839875154637,9518142461496258184,15110533754561999817,9518142461496258184,12761092839875154637,15110533754561999817,6181932146643673680,17881967084318446715,2137362022686801543,1185021752346791514,4486768518517032638,2880975909205686278,13952276460013350167,3294891866730315682,10539606590453484421,2571273826201259148,177901758764486882,2079999632658664162,5839235108795559079,9027653978434762856,12761092839875154637,11873375810225852032,2454285719246030567,11873375810225852032,11213344687880749255,17293178506215553958,2236143043443285169,15340603978557237759,4149034775925044179,4147694159202424792,13007597522571736748,797524548591913104,1440568461233905235,2260204341266722987,8426071074595930454,17767091134474629035,16914879160092116708,2757450955201818714,13462515372089515167,12542264479442237246,7681040941324886076,7013446396595945863,5599748232279858138,7630963574137052379,17462603074185490587,6205775352123708552,3448882959252987461,7244936097675915991,612106526785378007,5251857097881192979,3841177803388519749,2274449050486464955,15270249601554803119,8395534563648153836,12126959719146336579,16493647744841764664,2613267469636019668,2074939277537916245,9833911923092855344,12148297722247407006,10256871700223008055,9398127902325054002,5665258780775441003,7823007368028548991,9726916912914006778,16119723271662172879,3116350485392257954,5294210918569907953,3615027278797562928,5733355700504312925,3881391371502020852,16255081286400621305,8883585670726765655,17712768628298121851,8981785319566442106,7644018712234980506,13258135980344218615,7491150117824668568,15529437600752462635,15655321953091493424,9813528484457983688,5424656882682454565,1424277097287406003,453357785205227562,12280433548005485643,11625521342378992358,9551790503679336123,12185907235227959023,2844383736016047966,15796083397499710080,17717856662826897629,7060643842289079501,16824631940684951065,7567699348663789121,8137432891283283381,4589297911637402290,18307419010955513123,10739707719567446371,2812786701574580837,5009545188859636472,2734046742201856521,3981642213242213392,12231114788127715713,4584572752883283884,3896261973954783497,13258031428792930923,7787584070029261008,3707427910219845726,5635927718121511395,13270585127782515150,6001014861338038165,9168579923454830866,14146843869636697508,17786217532367090289,9445062102832951629,12763371280136489671,16447690299157621472,5728167144879692429,891785299698586159,3779135634335193328,2637248843531941272,6050470267261091314,8166697253723286372,8014872454615431633,5033790495663167627,9418966051588644856,613680670022375676,10378808034570718611,11973524979724363711,6619431694584962824],{"siblings":[{"elements":[15138820325720989761,4526242898992923877,1792182972993992413,18151497779571086812]},{"elements":[16426133333479361662,11816804671268155106,16700607488075962603,8126155144001045287]}]}],[[4611648108893353500,10195873934686217566,17030139410114784531,5704269252238452818,13244247625757782733,13808327998900429319,6356375729048270165,12698709079750700050,9002858971107923232,4040683703428012927,7963189777281482591,8127354012118130669,986573305901981004,11356643050294265648,9405696930646184662,3650763720659877753,5031719244064671200,6958835655391498814,12595755803388473953,12717539233609402053],{"siblings":[{"elements":[7343989762839724077,102117139616777776,11823854276416775655,2971846334259341988]},{"elements":[17173959849096821549,4197542303866042184,13081700959389691795,8188002914152428501]}]}],[[8237668093790821207,5819594826934824417,16315197895746677208,13622765618349567337,13129082854695248728,2506401689877614193,8912424721815652352,0,17132796708072123330,7893763719120278092,15698983924025321166,10694563708232137607,13639956946983499089,10804127281990908116,6827362823231728041,0],{"siblings":[{"elements":[6414295126529395882,17938727199094730323,8053321025011708468,17912107056709770764]},{"elements":[18015593981262230695,13906279470924695168,5044153571974076189,7127672652231164027]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[17206109735828519157,7800246827495717315,8020745982839718295,15714867855057488863,3032318802615629789,1169567726971474766,18077249475269052531,10285922619335735314,11648103021583209605,3996410113584517854,18021569007658151356,1121227614355612584,1592147969364196194,3073766620843520534,12172344610021173011,4468130253357913066,5363309130729316017,9060428272251534424,4327366249438306814,12824951185045586379,970387560941176564,1824699754772168200,16516673390223370778,15495504148671108555,5610781073527305718,9225766756719364123,14479804754371532149,16069417019529649419,17028164268165101450,14973099585692074123,12345388468971828985,10528414744792439808,17230049879188214051,16154658027059712015,15806738521538973459,6684427148667459238,11749556303403888769,12277889060912305273,7026639429275326762,642243559881271168,5613002337837507560,1314612325939215515,10637190245129486168,10947029513521575725,10695442475209097230,1990958710162532624,9599986486111589104,15654307118935242621,1889638351941074398,2585149121863491085,9584210455109621775,9973723166009271144,17569386003946470953,8837034270941763229,8599448158215233488,3035519488129568086,14838852793737000347,3963604704401543679,5368414199855749489,1818383580332167691,7422759722975509296,16541699519595447964,13735133402274667031,12507375995692726335,2491323809709365610,780565099070518451,13723646817613359804,17357164720707240068,4923388621861509606,11015651857441784430,4591101115229292098,3357641610537422129,15139876664150598566,14395858246625084437,10527568225023487661,470348566177183452,10758053878856044596,18226941559918030836,15711582105394125640,11670821929750316582,12032761100378838568,8846227178474138162,6522102506143216099,8814827997238842364],{"siblings":[{"elements":[7403663046154704761,5184547189845195558,12550045180944025872,8146440534872139040]},{"elements":[2620616561727944075,13455578190656343205,3162853890679506371,3383643176103145107]}]}],[[12568851523521900434,13486339453494873041,16022602508437282783,6591834744224042068,8039069810456956987,8020745982839718295,860433738748881564,8899503549205838551,860433738748881564,8020745982839718295,8899503549205838551,9759937287954720115,14430330712937488925,5863108893575766496,3322597498079814696,5706193147191073646,105358956737704948,12769588227789528966,13601670405085104246,2554884428510903638,7100903673656153138,6363610724913829497,8271416998525464854,17540171555591851626,9972634055700694460,8020745982839718295,10185330823446668805,1711220809732778944,10185330823446668805,3971764544672310909,5986529989165736038,9914527832269484662,1340903002693636992,6198421651233978626,6992813725274413055,2089309534103086646,12903310228154195229,7896635047501888854,13801279900528182318,12519011564256559243,17453426628531599715,15468329301889803682,608968401601237151,760632167360965859,9132193120217266183,16477194334095282085,5980128023560968978,1637676992879171536,6406876268973330994,13423400050036037185,13673926583421653935,14565762864550634624,6822569992851249172,9864974683426286226,9390921115147158558,13800711046810456077,4226929932992628774,9283738585426243188,14082604664369984384,2331894460239110062,5296908088139183614,2245949430881952098,13638926972022084603,9411902587925494976,16506063017972121743,7278868702807602665,5296470587804110171,605051741125854562,5512343330020760753,5439520614893866553,9151340321706373260,12696461699666028,7796612574877181487,8233860263178259333,8440818945990497827,7759118584134343147,14050819452224445471,12955884946349458147,6935765213750314259,7508056181359164885,17728082411186894417,7789069528794252307,10831744070061436559,8090037797974398294,1086216888430392902,968269130841448726,8469793033662018788,932570630753568794,17045041799724396242,12346098282641661392,925484480992273718,616625149005621190,15625310514265274125,2969754306971991516,15112960016435292198,2714593646548223803,14691258473219880051,7058741741062656858,10792319589945326776,12001679155981212862,13709029598600613382,10302719946634747239,9157983673641190243,10077419301323658001,3486969186309065250,13127085754760621363,4344106637635468357,2505089471075765343,12609944992958393185,11769065904163729364,15764836287148034143,6432754146905244912,9384485014784054787,9844068387680180554,14189002165756040621,3970970379159128000,14921374687629128892,6663265284232690864,4272896423447095704,13267452049507920317,5305092573447486029,9882847417808530032,1955458632087781447,5153072873659439121,12496258585073509253,14932326074991487457,893494028453933052,92619923863484465,13106798075134962979,12307506967155615648,4792639378940841311,8368230480654297493,7090766842476516498,9039749853692084017,5966382359206431257],{"siblings":[{"elements":[16692448271281130410,3187497018166977368,8034596417268007797,16605404827894224620]},{"elements":[12635072478538248330,3090966620156030405,16060771121752955262,17224937196647426864]}]}],[[13628433969114016972,12778526840259038002,7004323718209487468,13436056313352377902,3554030956914896677,4132359909270322999,7018018891731266510,5447018842539175394,8947609248115287326,15983184040504519326,14053658429640673383,1871383641961483664,6204044611104548522,5050916011512960568,13164524452572468375,8699943086749654446,10629612803883739279,11435065672278460052,2398305399662753961,13082243461322413212],{"siblings":[{"elements":[361023892814720883,2802851863423616804,16229132839017315226,18012565281455339549]},{"elements":[951928689791545203,5032565514753380370,8083889197327567118,12066974764625898819]}]}],[[14400947545862386945,15320284026940704032,9347826491367692195,10664734380241492904,17823944055625338414,11194111072179793113,5060288122058745187,0,1255681137341751863,14571536220118455066,6557149208675385546,18150817853399456174,7363243900386438086,2449382784437173128,6027139130927788626,0],{"siblings":[{"elements":[2583773939372790355,9824448855029866030,17416861738546402092,8530666693346836041]},{"elements":[17932127351126756327,1224206198896562365,2936446475207177152,14873433785129377097]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[10012935419466238577,7687981581886084074,16691476774783491,145485011789036548,15168412053950061181,691136674232252020,15619028640102623808,4059841558137313994,11221094138731007451,9647692249680977507,1731380067292760758,12050742724543570870,4318946795225655072,13445284368723671452,6526125951637107733,12837226377147962554,6200021417364185498,6231435401537232377,12389719809556874887,3374111251463901066,12141217630282975102,14465792413110705719,11023937824779326741,17774017186467066410,5207900634379992722,15595245240556739197,15843721754649588827,8096232151492915937,1459042434150359834,15740105734539224688,3589661780789903725,14631890640933874724,10536888583905911439,13062014467609786480,4148455259947965818,8568720716864665140,8583370790698260948,2431818726303992780,17646025720604979999,5378803794799483225,3660142930433849591,9625635920878019344,14383371796671376583,1787062723350198525,7352998930330731195,15828271121064875052,2170785863873326871,11092974659643096053,1016357294328403998,3386178682721298592,10075031584945038749,15580465637828448050,5303646519772868826,13647626671420818152,6469360450517991518,17147767722741349383,5801886078594869736,6534170801082628856,775935246617636436,17104283438042248432,3036702298271073781,8811634396995210406,18346120187486650736,4932236222573786686,4658310730087341386,16765483636386552940,16656476462835642909,17936221904913283325,5877156874468569260,3130651501490620518,18105588846974400902,10168135683153458111,17741186566292372016,8869418827244045071,10989794044775905426,8651371415957867828,3056889389710013227,17540622419485826949,16818380837613850762,17687093779267761351,7067130542631280624,14008375672721013694,9557087022363310990,5987878486782106282],{"siblings":[{"elements":[15910947226590530155,646193018130629436,12362342674696131851,4390055708897877233]},{"elements":[15236420770846088491,24658089369011782,7263309267073018658,11070078437783786852]}]}],[[3281502619423060773,13545277545568238510,14663410797119126073,12720666465524029624,13682173814698425719,16691476774783491,16489346451889468861,11724776197173310259,16489346451889468861,16691476774783491,11724776197173310259,9767378579648194799,1032313673007693040,1596861470371372754,10402304517817430120,2483969113131166390,2191573589675933140,3270934629869449125,4004025053419597578,13535726016122901115,11585055584175554204,9356925691288661246,1274251599650797677,3963690156608994393,12812789287055115536,16691476774783491,15858199994462036273,10224245212102567488,15858199994462036273,9666704721558120003,13288638059712923210,17997353280929735173,9277415697485205720,854712207881975533,8130996485278862663,15854896505072261359,17000244497067016231,2348777487253830422,4811735444750600163,6951081803906996268,1721908509034235995,15628863770982970563,16827942614142089535,4419047655569476290,11080946226472434827,1957930303320344339,5929201243063801329,12443586456361428539,16266721283900368025,5058376878399477309,9574560602197325960,15824528355524026,6101273388259452009,15849884611510702000,1606896951414439592,4180721637370893178,6161806321092149042,10401276542651193375,16060973236122602911,4092563047770096097,4247546638576962008,13579302796063414788,4791774262882724304,13344469290162487133,13489853806087439002,6544450601066153378,6569615748812327759,1664337139640120460,14896068121207753524,5172285105153063193,4817899746001312958,8728594972401084927,11758911437188549324,14170632718102110201,4270041282401155237,17282629990245181624,12714060659886445457,18257893603707371348,11229975094882262471,538023369343449307,4468526873109874303,12433213819931711185,12343038594947158749,9267709560076220374,16816545725133678438,9451077140007607984,17161662087688430433,6830845383854831388,15680354330461708110,13971383237457892553,4875983121348075287,1966337443589459860,11712497432242931409,1816773826562020757,9935064948934430015,331954054948368695,1951285132483711636,10086843698765423584,16770710786916756992,5695060998640727328,12115688110455730018,17630235123352566075,15670067398131370950,11538072254343002463,9258826701978312318,14480866584263446305,18213896243965518191,7881405308220506691,18296271643255591161,14690751298301158462,10983340880121533383,16868941510753203400,2740397812020102557,8605774599849155261,17491524524630257862,5477557146469030019,13294900860178931738,9193369807492517796,18038666124266344469,4596457482361029888,1448021320616291819,15484044170240129549,276479322016609527,17467243206172826267,4433588343729822947,15625395583631046805,3280449840745512209,3159581411382378956,11709890911701605073,5315504839673323189,2847897273926513665,13943415907675036757,11833093186080535472,4221399845521263166,11516214591349475180],{"siblings":[{"elements":[5596782909573735476,4613168985651126418,18248605611113826275,6426047860788210688]},{"elements":[7533082028729651755,9173976881958298193,10974710225955313053,7929308049463793587]}]}],[[769334346086078735,10280104924938440609,12763209827610308045,9304700843707547670,3365492782648046364,5411328928332176145,14844206778305833297,3655439335061567274,7299045890445682293,10312364695723668377,12539766124054687415,960212937841638376,14737851547511796055,1423346303386439168,14483874397374630706,14062191056425864142,5609781097272652953,951237399520046546,13431963330403251061,7171526223673480989],{"siblings":[{"elements":[5851278825311566546,818466605407552664,4003952093958539192,14573761949789681288]},{"elements":[15894871101379049589,13309962305921673936,8968769591403299568,18287293512187069115]}]}],[[4283537160717565455,14508426300572757407,15544587784168070690,13593038666098476631,2856169796567782728,14182836103655450545,13499346500594933230,0,6981793186726528571,2687983824766809679,1977044652018390552,13957269391869653874,2361133319449216070,9375479391535017770,16620481535948892412,0],{"siblings":[{"elements":[4842557370400320550,203806499689996721,17186230093733167099,4201826128981905437]},{"elements":[5047376652112512454,15037726665767999405,2201934134840713771,10607719950697024316]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[2957113517849714127,534309029635191400,11544311873258053432,17882777603096976953,14832734722440621137,15934930592501534930,14760340415644908738,5968928275597906994,1467764478271860482,2009382118976922185,8495360564230345231,9001316726400759960,1476228686992828229,9926265546383658404,13708518013943224926,3323385141244140172,128236646007518263,563126779725380055,10710544815496082143,18322692329841349080,4935454013116701158,6105517679507515402,5809925625105293329,10724329006479231394,7215392929036346276,12633157382364529328,3892909400383536253,15905967723289449199,16107352555606493024,5763624939658292804,12822971197090877027,5468279929777982329,17871739753081572991,3405428058622781654,337992362254510078,13705078043166119698,2920441690533620745,4525146002637897051,18309666788251571475,15347705875649550555,2217752593681366765,18190039517815238703,2918841177068674532,11693900813645993518,12161685437561318317,10841669970067038096,16821663833760093673,1111379915033100156,17457617770852883295,2493716186979991565,8892096909459830204,12092029998773332332,4737742107837213983,10667486448634427561,7041791300378260407,16235605865629792199,12124454157766831447,8554194823817536413,10123344624443999171,3719464704114399526,1852291261948245709,7395622727472578340,11788503871034458814,2210624982014450562,1685999208823125948,11122373884830477538,6892391871763264000,13495033894710099235,8247149182531434849,12381029035073056251,1903453838714728063,9093795306938195559,8048800776126096016,9146017383512717520,13846881608659751976,11704297841154285416,11429622801686750329,13748299616283334071,7681621835781065820,7990061028613800144,9864223101603136716,16243622272869597474,6178613610167304399,5903143289022110685],{"siblings":[{"elements":[8832389127426069113,6131364286917185572,18048574911583960267,2163811129510967340]},{"elements":[12080961203814882388,3507164343688256046,217812273724800610,1252946754184999199]}]}],[[6187766128046441829,16637209301529445836,5986576867832645474,5922508019418421225,13024012733771890914,11544311873258053432,6210682176616774155,787950840974080748,6210682176616774155,11544311873258053432,787950840974080748,6998633017590854903,3570316141473543079,1943958605314396905,10012081067387175718,200135141029109430,1606688486842780675,5820930093413040774,17509314506128466161,9790027289576767334,15366548375832808996,14786056233877230488,9005494907928687056,11206757380457375960,14785216876155790554,11544311873258053432,4125056665306141884,463529472047348117,4125056665306141884,10848272876028751353,10489293662354674460,9840627866261471554,8760301363947944309,12436788214163474656,12162445533604174369,4641779691962012860,14290962744495491524,14603819910351056481,3581942472941140804,12162439553350628665,15360440997232862807,3345499793346946965,10659041795656156776,6456922015436530220,7092823725420751510,12623532074738499020,18875304311094731,6571719940573427938,3713560266347595562,12395682377278584280,8286981031646296110,1154665288160202273,2615624649935557189,4218899092448517100,3701380497663798802,5442340759908477206,3536390696218620675,7023214025948903247,15227668798241529446,2213699054839117061,12499528351979889110,15436117670064463049,1608563158385631682,8027804073737091288,727351301626253057,3907441864946588385,14640110801260533133,6872658797796774942,2549418678947479395,16206149660994701994,3406469869107928585,8535732365763792506,3989750107491371324,14138311324097500082,589493845356780193,15906224454643410077,11027800454373938688,801409311039359302,2253747981612168453,10964883184328692247,100451497126742636,12437443202817183106,17472637185780293340,18194565832602603547,10174383473030179576,2051335116486710384,15544141683221798716,8573231947314422590,16985842955076178707,15370338645100846421,16849835302258141136,4901875136230200497,921457640403058815,11000130208360453061,5813803419095504633,3315072954495503238,911606307560010812,10433009819612042023,2554151131254948525,11247651751131640956,16166950492447762244,10680491820422109990,15901973788078735241,1382180046724549077,3183786581747146552,17697888516455301726,16329696358798189448,9010504481955775056,9516962715434021530,14612713247187470197,12226491450154831611,12414910653309646466,4785911206589617380,15303424953973325883,13481906293956861078,13680648795977347332,14887549806036031812,17604090014004185050,4917548402019381930,7693983817510042471,15046259598927765094,5866455520921265789,11273520892964518390,14627176346756110435,11290828999713261086,8925281728085521215,5469901212277294639,7496825047880373200,2528402610082364956,3660515735724586607,5583026199400217829,8903714959695549915,1159177440670368470,3334508865887652368,15726690606425682166],{"siblings":[{"elements":[13464730518151764077,14583257702327574163,9271441173660870474,11158534083718624774]},{"elements":[16309815517466357069,8510292391200766341,17673219715638047263,11467102716297814818]}]}],[[9060977665440604273,10027552640135290426,2799080757703150530,14894914322379659061,7660713294407500354,1803155524926314437,4424677487910650243,12698940450839451967,8181376997541351584,8922931551248940622,6461036366206726792,17651950904552271883,210554361390159443,941392763699484177,473957984774065904,1541372654049837982,1962561552937683738,8120916818858829800,4385546586624398265,9932743748708723826],{"siblings":[{"elements":[6895347304360288912,5774648020166790174,10463284502844539400,15375706275817089772]},{"elements":[16797056608379864644,8931178218740982433,7364886258755014106,5391368024239178414]}]}],[[879306166419150818,4615160352550806538,3179857122778292939,6988499023064880208,8103033194379355365,13368597490042889219,11350860331652963332,0,4071173422972594856,7395130407499413780,7880068322735498805,1759917902724075412,15772062421094746255,13343144832902701520,11996962865214726162,0],{"siblings":[{"elements":[12523287424936833850,3038258695463984189,12682936203093512568,8887538047431254689]},{"elements":[5376015545114290653,16470824010864277112,8736431771255778341,6197148165205381424]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[375328944584183393,4247706021255337485,11706807446003718147,2904732840066002447,18046556544271250969,10916790744547718956,17417455500052103819,16865149589710501282,7516206176750212153,11918341555123999967,6438631583746773435,15591054111156919402,14898247868915648784,5038022190703638896,782902406581356437,8476475721447534742,3141781225672343719,24960222019956998,13318568201986596120,12553821336735446644,15472379427769897237,11326663298448799758,1496365523529506525,16283290300342903900,15887194343965027864,4817821258470929804,14105272527915808251,7529328033808087701,12791111736960966652,1480310065758090137,16983972150093381616,107421146925935521,15956630495095901670,12449606557574229305,11212738967977910606,18110500866781589748,16429130620582859274,7779952284097961285,7986664839084840667,4336809532421740351,7203799611063838576,11560435871645712433,9815190520949331948,8716032194773025707,11723673122810912199,12703447421820732849,9780264156921829231,8585524933896102493,17254462011759100274,8509313049271687836,18155784473960727319,8832240748451399136,15022854397857957229,10314946459377650889,2382285953043542396,10901101274451940707,6488753551442959274,10655907811367625707,1377911739024153286,16061069529229070329,10445282428636049950,17647374885055453601,6398896971781446227,8932834602516629039,9997920820735837711,17622715642258494985,16060563494318235955,12619271982679341637,5793856278372142490,13756105895004610932,7717844781603297065,9318268434351815355,2203896032917540456,8738369653964913142,10014274937273594781,15708698748232470303,15785571182443519050,16491478051113211775,6969461676564863170,15903387008965589169,12741230739465879464,14561695049829515146,5122083969314654828,14494368093124181245],{"siblings":[{"elements":[11905301557835126433,2811687330353170174,8328158618699204317,7261511355033858346]},{"elements":[15724416129304146158,6744691714555510949,2439391946615683197,2210772101600168795]}]}],[[13342738179486943858,234080634304475044,11298678598732126749,2971828502511703879,15116957524607186152,11706807446003718147,3755623494668458830,425836949861060661,3755623494668458830,11706807446003718147,425836949861060661,4181460444529519491,13630626385943315932,7578648763247464616,4827817121656748535,10839952296266734394,13760331219901616963,13285946383971387299,6080387409411434437,2226931078854748628,14387869644177967493,10778179957656586374,6106965882557134849,17301750264308622897,8788757838920099643,11706807446003718147,13396055233310679795,3738069002816195117,13396055233310679795,8125466657395271904,1944884302073343658,3343872651985960352,2268080571328507982,12246947957241477368,18144865530103905174,14599086113147191462,10065077362693097693,1670053751635867752,8462699268530879041,10890213950593420519,13444402952462059126,11334380561596351060,2272669577735613426,5885992213857508252,3189619597657097170,12349267618550830301,17362400626207377653,7479635251743880924,17484933588108048246,16196997760305296245,16078831246369418220,3581208777314146667,6557942849661890463,17732058671281947719,15819060440461324356,14638680752842710879,16131162396840041291,2169236625557872133,10585360475154522294,3414433706481662099,10822536379285774287,2762366021136323085,14277571886705004324,13732400673598642977,5278694176524523420,2177294429128102046,2337925733540879588,13752677903411265540,12962918645892182672,17363109600122011023,13674485289762506960,230198022769910493,14405834877062323245,8278110392504109743,14758173293901714340,10936549738350606671,1692422452774803184,3067176069376724631,574108836675579678,1366999807668904067,9767670390426829466,16711505038852032451,5638483043786849988,6678457329817486757,16399824905256785090,9238934666237420653,2783441656717104084,16569718624150092831,12044838086742244539,9187900225803990641,12470193447247643677,11379491309419536095,4095873614019633536,4790901897795774478,2272288311959874297,9976891817101663382,327366833506679617,13637884827109200250,3995859414352926089,4388358654271481774,16483804793223895647,15991655823199209898,4988958193288990283,12608208382183972577,14743134734801763607,13206057725958129883,16598333280162803825,14593088858113396840,15059512395150057173,18430740042755385835,5363649494195233355,8841063165695575197,16564601337817376994,7954463730882913019,337829748799299604,13199038940969975178,435050928904051889,10348821891939322217,11389342984804667743,3878418870813532518,14818782790854169294,12591258506628934028,17180262336759524634,5091407071462824566,1222575719423091481,9411014198638927072,11548551293893068812,12469322091753403352,15752963157981115469,1144082667414197632,9364017854923054400,16185462769196391722,14211013369600768872,18093715396762043766,1237203906664613428],{"siblings":[{"elements":[6337283624701027404,4370504859152319321,7010495348472814238,14962108820082049312]},{"elements":[16101034779588015327,6844002570289426033,9868559491919778383,366356878854969441]}]}],[[6073833436856463662,16908957548100780105,13639384892439782024,15169655798226778662,10132544784207835849,9219654460145487257,14164608930864403345,11757109717323880785,15568311400760713875,7833386289296291628,916194290286948070,16064763569008922709,18337282576202845750,8881718473913645850,2575496634064669135,2917220859313710615,16595267538103543024,2916854925160974024,12411898411159671138,2532860205301720830],{"siblings":[{"elements":[13689956775977108112,1097517896385930398,11229788732271793595,15446071656011640816]},{"elements":[10570782977050475606,2405870902656028473,13243401681875001135,16516069414046803012]}]}],[[13027650798610285761,7934681227452148867,7935257253851766156,6128755796944074845,2369208168523981327,994737403623170952,13466392763598337360,0,16830862860921945222,5490740266059427833,10140048978905138066,13182738434857116213,4718701072470177204,1035834086833757258,9880085446426071250,0],{"siblings":[{"elements":[3772465688451026905,6200608477260570223,13500858540825709005,6635953971720257764]},{"elements":[17417798336124797448,3098632452610601349,6582542191892491765,991423848540495231]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[9336884742028234152,11054298581776583364,11903411180683071473,14296717815736915449,16495264431561355793,286425650151711731,7818675907462870013,10010246018977678131,1890820791768704624,12558260456405324124,1496751319024418478,7688284829495190073,15056599560940752836,10403546405752441210,15031567511199407404,10190157062914636311,4095897921107595849,8414315100637562024,16804760610634788622,11504572193580119219,13554043763335795650,9722893617959487903,11267109158602701171,13271616572602256072,3202537321918613406,9536328911281289038,9402284043304896985,7624382939029706505,7876093227326374161,4316325842875837877,14515991081021036402,6973319751057672073,9275917823713873060,14874925803304938596,6995038407358618833,11743851330442668126,6258602953605941613,1800335348522323540,8550112900772085923,10362106327361328038,11256019104394175519,6067059559086088426,16041669564760536171,13206286423688954530,1221807958049390854,12528930597591281557,17693752121809868644,16787392022923963052,528600239668533415,13769531670894575127,18293996673121507302,392455369568546467,14790578723956995587,4080169426939776695,2188382888613763801,1501394793936266896,2197182597671586462,1265693223259570244,15431999847904939037,7733806705132874701,18113357226322563777,13663401662236327200,11169543435273311269,11445365192960330175,11194928790300383980,7516435610290684462,14954655231829338456,13119908939436696206,2117916374172580283,6046200420469927324,8763252541460544190,12309237096812154659,12262595299354571208,17786370988432228618,11281112914140474250,2794270243819254017,1487778964648894092,16389700750866351773,5169264358182164691,2132743633911370694,12898237317466667270,15997841964748494006,7702717202847895371,13732873406948971647],{"siblings":[{"elements":[12804735375140713404,14721018804237750476,14282780542903435223,2453183975775524265]},{"elements":[9386819466575501464,4695457175289524053,6799857909187713340,3125732624066090898]}]}],[[6825141945141655598,15362903820626146731,10919176560316557364,9203621266692922128,6883353629897098473,11903411180683071473,4235966765890326789,11119320395787425262,4235966765890326789,11903411180683071473,11119320395787425262,15355287161677752051,10969706199036674724,13635395529650592323,4178896129482414983,7430047294879929225,11876798705649401262,6789862282155571678,5627386421719387613,13010873827306319325,3809356019044376055,4067706933363091317,9999583931249884247,18256637912050331227,4936406580313760722,11903411180683071473,12964270068364353714,17900676648678114436,12964270068364353714,14269072956570470391,11030822466875270923,1096395500444718189,3723001950964465461,7960623455651360623,4255533382174018735,7481239068602227477,15089913941486511727,12263291119602191452,7543127434756135540,1218608282549420746,683792412447922101,11204744634625067440,6972205441768126834,15850251527254733763,7088417545991250231,3192976132342245175,403055246405629992,15105954062964473340,7107619128813622396,10360919700347776685,7668360635978401047,2046989960402102402,12653342924806551689,9971273856113747955,9593576996684613200,8408507555220802858,12595598512890023121,15363452976520346545,2333488045961253563,7639178120122181769,7169807202695188560,5579792078641660506,9846697511069350493,16860858224266955243,8060996789294637493,2496677481892616959,13665143231564132222,10127061104743887386,5937884579904098053,12167857351062509862,5710157528009057407,12249045299411839564,4712079172042567106,8085240561881842261,263826959496734155,17419719788483941343,13070154732270621384,14899734078944994332,10513604825675949526,3329612567643467492,14996181645983857277,12043035717762874071,3451138546268261320,5661069065706971886,17455488332253471446,3325864688422445403,251485551368051221,7754882612820219374,1974415918569509174,17493964876409787761,11676145359153156650,9595044573325663015,15723135628889837879,3039027993631693564,16472641209958901064,4326610178938427428,15156635952677828800,8354022093617433622,10635396084964882804,994267749513300739,4424676122674993425,11618929781506875150,2009736956495067007,16310402791282387063,10984004694169624530,7347236311578861654,10930924223898663600,17256876263736159692,17704871794439788625,18267622072027842351,1585416393653971303,3684121110759658103,5173698664689436069,16874540805648784702,15619283842612253740,9043920007844657882,13370217469447385086,9705118411958976757,4716199278426740078,3220172529214282210,17813793262703563526,12349867239508916554,7956596930484052113,10644104399358536954,8725045391976164881,8565231618450766817,11520462731545101039,7635192378686530877,9596017962301997609,16045269857037155997,11672082255738685422,7331932164634949465,6846080181945719594,16235114503412189675,5305850181954143959],{"siblings":[{"elements":[16949495584030676752,18412385367762406712,501035874803900254,3470427838893688351]},{"elements":[13406319966535674044,7820873334114663443,6199986413930180714,11127142303304301945]}]}],[[9766590836224056576,11856842845676222597,12162568831471223936,2092978040910662853,18053175125065053059,8735429558229560559,13324469552406813511,11824478133406671599,18362276867812851343,8945363606825772691,2728459001343917069,11267639848035138816,15467188744608813976,714789064433402750,1009714958570138626,10264949312604182333,1507759310397844003,16684354304711380675,4196037639915565870,13193904357773191],{"siblings":[{"elements":[5026836080154406227,6662603518194902606,15836988275612177903,595726935959498319]},{"elements":[6781834578833045044,12221812894053650321,5635446760870259233,9808817511833323868]}]}],[[4510743690203360687,16117180520519599489,10957902351157163772,2730913938997107986,14244298636649261277,7067279912186458002,11037792544745109585,0,11230100297278583903,14380818336175255310,10833402709628386836,7231838216348996966,8585686777742950202,4808302575509597950,16774001068709984157,0],{"siblings":[{"elements":[2525599604021081178,10630062222449944748,2133676330398117736,10518351925216038830]},{"elements":[4921430331028612048,9375327459806997388,1195062939992113916,5653445016384103668]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[2981378304754394248,17294425859019899488,5495097178942910592,2434773629067817120,14381859418018558167,9144484614969746161,11415072490952100139,5771544633465294353,9657779220672379055,5438456994412536637,12643200207107414592,6987214968852664472,15621004487594728131,15887186508389350490,11429703077911227347,1555320983035820293,12342983464597510956,1721151971762748825,6686736854588993319,14604830922575251990,4973761076371083728,1898767195310094849,16572729270203977145,16292509486847123278,6956931455735975241,2594250794135405162,1496020032490744748,11217850761024229958,9228370296094482207,12243405326392877785,13275748543848781674,1813335873883020498,877226986228825447,10752886091866738432,17545245901937676907,387832811290315942,3293170022147285653,10684553461035510153,12218700078866248864,8849376437319360692,11694761466190763465,12638603459987671163,6775818988674452074,15150402107598468021,3177806675025742903,392913243407254318,17159866653110642873,17582899527776021730,11408526068585385530,2600749880673817147,9260327115886749280,10391335369659247282,16902891662267525166,9400968035705469449,5718801599510914475,9598240703334722090,1005928392242417366,11356256834795522466,6465052781254919651,5392586007851921161,17157340750148134036,2084925749293814428,8879965415396668090,16431412192839098540,3195634102903031643,6839081243096090637,14807562193555193335,12681854598294316242,17318692263126481628,3031842894733573747,6081004964115210768,12005175970589167392,3218991306209329294,11437626905964344073,9118359933684856057,10613268959010198790,18059105193303388716,2703911340013550242,8009782073422058388,13426645715014884534,17396958375383482529,9714622499629802944,2559776249118675123,12922931101810206077],{"siblings":[{"elements":[6835977814218543408,1263577615951433585,10078229402860923904,3832086712508612705]},{"elements":[2184362331170239224,940371620984881836,4930719422694198068,1632196321716041953]}]}],[[5861510461696317790,11713819115030107149,13619986345995273642,10734691969379328197,9492386595246112784,5495097178942910592,10790324057111807829,1835966582943336292,10790324057111807829,5495097178942910592,1835966582943336292,12626290640055144121,8047721488773232690,8402841159211253593,9261039610992015760,11436460992288285759,17908434550131585294,17622218482403929882,14919328838644779731,18423027272131634257,6499707754744964194,15130106660846807978,13868582346105651989,18193221705235975235,8641803793639040213,5495097178942910592,4657316947222936305,13299120740861976518,4657316947222936305,1621749939482501244,770265607132408667,16597607401702510030,11283321608159344209,11285261533355591321,9527080756989410467,12989698462223270263,14204049468336898171,16165391984226597272,8637720693610288923,14661964686703582272,11662487706215040980,2344146149802321482,6931905540577180690,7446927616007912775,17818681973769235031,18229787188132544512,10997732918912712060,10794429469704020060,303319084087160256,2990313280731088551,14836264697127645400,7022102193686352643,7953886754610891880,2150984333913025395,11544950442947805446,16046659880394374578,282718062568404659,10723066862093060141,6986523716499349125,8980904574074545779,10268225218213621097,16022799904443332352,2749242135439624053,6200105758290859429,7226281380679404029,7633555436699295754,10826705963246974500,10335642785017519765,8174761030759883662,13390627276727403612,1340691561714257208,6850038983032695964,15600695294518191778,17172959671915095813,893434953262401424,16281114779867554578,2269047410759170967,6343373499016054970,4056382637540990877,14454222475383779918,5714846359509431881,16953150429407308421,4871576350218567938,537264772629464991,16031097163357181706,4036967876926796472,6347368904950649188,14135425811492616888,13139024194487782711,3818180889893842814,5593593565488117397,14008800437699638571,13141759823926591634,2072855713896309271,10295458055253408040,17841899464112965000,15797165573123685937,1509173014513414338,12074263333527239144,2516063687125657402,12499793264475845931,17745439915785303958,17072284872587759274,5603726027335063616,14835259284754155008,148259773203131990,16717408791558629263,1653775399991153246,8569538144944442762,12641128681910517240,11544538168776169768,12119693716437187876,10734413192314912817,5871331386099698226,1634417094340478385,11347541655184428921,7984824763765759560,7780934467469153531,765999228291961966,13027113596104629598,13232445672252302569,15487380705086575765,4426397393273453034,14237217213869079752,17700054626790757355,621954187625899866,4243616713306944418,18078771977705977182,4066946066255277394,5986686376035378791,14417943041578862592,13320070172710355512,13204086623992738973,16133898146518475475,16052876601831132037],{"siblings":[{"elements":[18325547907376053073,16366170982246659688,2929804154867360514,1214956399912043117]},{"elements":[8001705199429838139,13859409494220895514,8636825611379181572,2402042316382225294]}]}],[[12557191246434629585,1108086889465248527,1221974864549476062,163375589598418410,1159438872853427272,8742789177465922127,6463635564765920218,2760517875606163991,3829139372151580529,978966317795662309,10488405804916287432,1501943780297496032,1004602223654566502,1042395347595067686,15475740055062674038,4680808960929009388,6670651247250668278,5098060934423325577,7074333265814124091,1892313074776248757],{"siblings":[{"elements":[5034390179539343939,16872880163481066808,9984446366173922674,17260645953068108256]},{"elements":[14156205204524098501,648881000652320985,14335656466020773723,8178534800257707156]}]}],[[12643696511615720378,1900043037164314529,391582036264402054,14790955526769755900,10255797885570326923,4456452445655440145,7457110732943304070,0,17502974164686302130,14434147647403951961,3834816286310017431,9695055712162013867,16108356966278392543,8147566826276966479,1378266995880355770,0],{"siblings":[{"elements":[1532777645289842775,16526665831649998188,12387254413961466862,17598292685752898]},{"elements":[12935275941217583114,2189684888344320960,3854563705387840261,15040446214725177358]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[18346899977516615095,10490764803150076522,1931605832967235824,38239881933906693,13140370817260528805,5954262104438106856,9460715029756156361,14452166319600211276,2018534208476214406,7468225848654968180,4984915189116051431,14017727622073273034,12045243994706045572,975027149602640168,15291212086988845823,9016088194959256918,5810707897866622600,10685499327079018530,18065216075082972452,14689121230864581956,7866766934974941056,11132228203515475943,16740179830807628444,16227017628881870682,17088227863713715073,17594504128339642335,16163190584151242906,1545852341769421530,18094809352095552133,1360493184083151245,14317814568263390243,3795914636049645009,8060273454446325223,1470434697264714428,10788577081029383420,1299470864393012035,2082035309727907694,7185590874393736317,4144898093473204736,2529797676557145786,18345879914768606624,4897984516724556982,9105269014703622117,5065422576308790577,16079581666811729997,9484852438571101305,2359182047114282532,5675263973195107838,16486988799653323265,9848523351617181191,1245665811114972785,12611676413490690140,16994079073345790720,16025414312769524390,2471073241886996783,9528050881814155379,17032717627597584989,15558380230219751105,11642007488597708942,2887521161702506939,17570166039082703253,1014192193089153080,5642714960003923427,15409283217250040164,16711717155830752647,105238444331414708,8248472019115256613,11967145441104870159,3164540172916207272,12869831937337117735,11224931413882151380,11535688014285463962,16449142642419504141,2170165276990944060,367239316337770399,8624074108107906941,18359175902018995601,17518045983053812851,4720115108167000512,17998162632163301461,2687527003086175211,8077392948074537619,682277279617773654,14453648997109414865],{"siblings":[{"elements":[14336277518864796310,17635039444687382691,4047653584043719415,13143979430889367491]},{"elements":[9386819466575501464,4695457175289524053,6799857909187713340,3125732624066090898]}]}],[[3827810868900587620,11596638952977689391,1518645946936762903,6981872052976935479,12321181102274866869,1931605832967235824,2325333026075784629,14646514128350651498,2325333026075784629,1931605832967235824,14646514128350651498,16971847154426436127,3598425527841223583,6824655156519568443,7112935303665307818,1959320299402071591,177848541394620476,16335736199265030097,8762091084130540208,8215273849454148916,3620489357013989394,1328295604890822364,7114667030001195213,5003022290956087269,11696720298374355110,1931605832967235824,6421593442322274093,18118313740696629203,6421593442322274093,10448357018059646132,13392640520873055527,9472148818174659647,14866246095761165759,759077334290313296,6290653902663300229,10569952503842517982,6684050847772799423,9819273825760179993,10060118139706087828,14817379018744771314,9854518487925100082,1657613351387159916,3881272306595697032,8100870093634606180,12800450494757209202,9061193462027288938,14135103144099397615,17818635447624548385,15000104262624711812,13298119827230439480,6185530691432540085,11690906390564561926,5728364427306364855,10362111924003303428,2420538809136353058,14256983615105605897,4405648456824418266,9986620246923081203,9158201467742061845,14103116889057652492,18132360039148194351,10539499247304137630,16970695073790329094,6288699485322830446,12347625222029566779,16352990786833875505,16297541420202851542,16284883156646865191,9448823324087618413,12761830211638221754,15293275929641461159,2991102580919173096,12255559925097457146,13232543818248228775,7270696533643874625,5839878971494322301,9609442929325197107,15176845693692536530,7768524644628890903,4163326289229997559,5156611380121513777,3632291204927971057,7157802913394290107,1301566320222840741,15747144940179957667,7489082998003230502,17484637906078364320,2491268008720053287,17027254058648490187,10812511387064226805,12288322432216086522,3461109380053669694,13804501673642590414,7812118655081306816,7164799545944327511,3939317187827396062,11328608733144692902,13002057476523195873,5849016547512087281,13425866663808280082,10333338360932671454,11140842592310673864,2154202892302981718,14354704761045139761,11091383892023736593,8835255701152451598,1779540750426266890,15564885717321426659,6977007863200029077,16947585206451233909,3186272392156805064,16547063915915696925,14701414775076215952,14783894496990849847,3421105353354460600,1041910451557210930,11550908500177656084,2295550561820228569,16029250400943598000,12537305352845336557,5889828171066508552,17066388027648585975,5924216790238852104,2457799645277470472,17516665792810773031,1546608078217599540,6528571744026726204,18390894037780888957,13921699485990112848,15896790750016384607,6227563769634590296,11656450477771171568,17821267130437980274,18250153438555683775,282358681852813977],{"siblings":[{"elements":[4046453698834187955,17293718353703763772,16214756183322911551,17603946120414989820]},{"elements":[13406319966535674044,7820873334114663443,6199986413930180714,11127142303304301945]}]}],[[14516055666494514825,13289933922300040511,7259285159318432577,759116758778734090,14322254731393486960,6892306176626242757,10584797002867159288,497199632014436681,8474272240405827452,8489966499264984760,7811820436633858260,8068848244406171567,4133618909968392538,14275026868520297773,1462198529447284716,16578461284279816402,13091457028934935966,6494861795930815471,3288442164247196278,12962155174519846642],{"siblings":[{"elements":[10661792643538587680,1007169402045686361,1067969381110983065,15077788361169662138]},{"elements":[6781834578833045044,12221812894053650321,5635446760870259233,9808817511833323868]}]}],[[2855702237415856833,9856432203394647296,2815103005099860817,2983112291696088685,11308170535296716248,17003255925105739121,9812902387216401837,0,2556068295181732456,12053238837836247428,12487455158526656928,8221990821999376874,2379131633070544031,3384004135892131847,16669105788678667228,0],{"siblings":[{"elements":[17250369960673358978,1850922186945350629,15422874474337912843,4515599987960821396]},{"elements":[4921430331028612048,9375327459806997388,1195062939992113916,5653445016384103668]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[13785137778317904646,8817111776954170042,15061578697055007730,16342027186563859758,10345048983396655347,10562042905643404218,6695639293063784984,1011398994415408419,12323407131782386121,17053549400804131744,14476049080735708988,17874722039992973434,7859760005143684992,12247021299757709045,3328016069360419424,15031221924666553962,3419372367656811332,4624831203519766511,10136816333191741690,14322271876022827407,5047669516173434640,8383125425581192819,15623705162702253378,6385413823949902509,18390398796449256064,2486367089132464208,10285402528260435985,2134269620196353358,2519104017265395886,11469046586135827725,13507905476592978487,14633250863604555641,9430382524114026632,14638701745562560793,3104975268902110969,11834615349169546857,8193467226082981565,6475438860925332488,2561016590476370885,6925586457622149317,8285631829291851379,15370198634643305406,6235058618709915992,7816678208240036896,8211915300813262941,10358782949407637806,10066303227280412461,7505659389696332839,15685971117868266513,5226855956878707498,3959317767164858351,17065982912260849143,12212008326541298552,5895185263859364418,6248763214313975436,5206394168507015402,9155665725883337283,5687117285347793411,6077549133797968863,12106663591670394885,12681221173122890172,4177990753259582271,820911341987042152,14477374272647813310,10484322133995173322,14773768884137746368,15653260752942268926,6509801850322896546,11498533040918132278,17176989399897964606,7461398416879429449,5642015831121687059,11648703400217455262,13478554013417061571,3029107525948731358,6569863572865737045,3272854689600253426,3535173096641532296,6096074521798962910,16857962504293660863,17031812160768944575,6262808765439034887,7538197590046951808,13050030658370154263],{"siblings":[{"elements":[12268251437638401623,731695070208171895,9389170571787889498,7451003503022704724]},{"elements":[17728593759504001074,6650774988450794345,17384983616442277651,10830012975394552271]}]}],[[4899927512989937501,12330601249674470882,4212207656071831791,1338939749026053079,11049784685616513372,15061578697055007730,7551094913173447575,154135529375376626,7551094913173447575,15061578697055007730,154135529375376626,7705230442548824201,1533862149845259792,5670011553538415104,11359776098737250125,14087031130628888035,2294568084129974366,7814355349813691803,3405631273653831237,100279341877582648,8497314884780624091,4706491426229207,1039774143505173882,13214611759813440359,15564596414473025028,15061578697055007730,4977218316982641534,2095070662041082241,4977218316982641534,1912046480175720962,5442407653242395052,801307500523170376,16418719295821285463,16147331330520349605,16404963771969617903,10306306029811684911,17477410299088019627,2907921386011550321,6720743029149619066,2887110247348720343,13005690648015949525,10336767442944006139,17000312181926828149,18422432552718952933,3469279111604294030,451605003312564630,15356832081773874943,10604219375726010545,13747723430953231336,16675237272848574551,17594940662994434618,3597074889108710068,15375838057422100384,6116803035799435556,1642501525782879467,6780336792294460542,2500898502256404867,13273258645168792349,9824404594807671424,1097084610868472528,13532173785975508219,3873217042522943275,6497136277296912897,5910742832561161354,13803541468171209324,6534920658518718785,6537890764802485425,12005338132660294977,7630851736393194170,7667713330722692892,18061334964843000550,378225001949372933,6615831281460518152,17367598353236943252,7437299265814996978,5053876352449380593,44145879467019702,15754520290247688461,13663636844145135029,7991662049713631893,4564570996126078229,6825522495523684773,14963393763662869783,18397943273867798719,16148057048782180493,6140248802121130982,1783300751294379873,12047256178044310832,17020570505461776767,2618147540909089414,14782795927586415575,16951246280493513751,7315116196920936286,9499618116449101402,9172562419814040521,3714160309936441540,10149752293670884245,8289365581128599540,10375140345447138862,4295585822950441517,15763624094877902632,4279351702333757918,1433769570086744752,5037628976660632075,4027771734560095706,14965478263362539064,10178228909446700644,13823930124436069251,12297214658140403234,10075881915291405327,10956093800767129206,11442209444360355858,8465006759364613742,9128543116797738501,7368954652681149482,8472939498357810910,9346143539394417425,1675604986369642303,2538506085360064298,122560117039162322,10227709156642178532,1053614253709691077,11257251395626414582,3831220280983926326,1706696701394208568,13814346375637216593,15241219739018805295,14162100421574720611,7996060788449894888,13795679998423331484,5946607803653235214,14113657638631773904,5925787643134215247,1645884261723905223,7191624696499991958],{"siblings":[{"elements":[526488303982304423,6514985231536653750,5431202322501860371,10304715985869671042]},{"elements":[13906333527976971193,9910594232029521532,18227550812091777639,16164470906364818327]}]}],[[12555075849792637361,3729409088556451535,1184522643617296005,14605587021675573209,4407301377125521442,12946845358414047547,10056225546670624868,4243967571733510604,8392860503277449627,13834311576945685620,13815913823051858159,14046475785993419259,3029762504183468028,6548221752840340878,7601023692318409699,18287084378353147386,8476522953979871966,13835102400445014605,1320214393522227286,2286442957644486940],{"siblings":[{"elements":[7784260890108170991,14823574151483892893,16357984571351628049,16711045757539013381]},{"elements":[18228550423246657161,9016844207652041195,6018162798259459120,308819794068585281]}]}],[[17682695329829834581,13807164629751717791,10010911212594350152,4437631407326904876,2273745948965436739,3307115802778779897,16336801824099848024,0,8104677315820144527,7161549215018615166,17549192681092533125,8238024383810785945,5407234547221911148,6411850909334886484,2109767082087817814,0],{"siblings":[{"elements":[7862348609530204340,12361965221566648533,8674600434291274406,12792226523513906015]},{"elements":[7102873559898376976,5794705437901675967,18361944348361383610,3734242435928352435]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[375328944584183393,4247706021255337485,11706807446003718147,2904732840066002447,18046556544271250969,10916790744547718956,17417455500052103819,16865149589710501282,7516206176750212153,11918341555123999967,6438631583746773435,15591054111156919402,14898247868915648784,5038022190703638896,782902406581356437,8476475721447534742,3141781225672343719,24960222019956998,13318568201986596120,12553821336735446644,15472379427769897237,11326663298448799758,1496365523529506525,16283290300342903900,15887194343965027864,4817821258470929804,14105272527915808251,7529328033808087701,12791111736960966652,1480310065758090137,16983972150093381616,107421146925935521,15956630495095901670,12449606557574229305,11212738967977910606,18110500866781589748,16429130620582859274,7779952284097961285,7986664839084840667,4336809532421740351,7203799611063838576,11560435871645712433,9815190520949331948,8716032194773025707,11723673122810912199,12703447421820732849,9780264156921829231,8585524933896102493,17254462011759100274,8509313049271687836,18155784473960727319,8832240748451399136,15022854397857957229,10314946459377650889,2382285953043542396,10901101274451940707,6488753551442959274,10655907811367625707,1377911739024153286,16061069529229070329,10445282428636049950,17647374885055453601,6398896971781446227,8932834602516629039,9997920820735837711,17622715642258494985,16060563494318235955,12619271982679341637,5793856278372142490,13756105895004610932,7717844781603297065,9318268434351815355,2203896032917540456,8738369653964913142,10014274937273594781,15708698748232470303,15785571182443519050,16491478051113211775,6969461676564863170,15903387008965589169,12741230739465879464,14561695049829515146,5122083969314654828,14494368093124181245],{"siblings":[{"elements":[11905301557835126433,2811687330353170174,8328158618699204317,7261511355033858346]},{"elements":[15724416129304146158,6744691714555510949,2439391946615683197,2210772101600168795]}]}],[[13342738179486943858,234080634304475044,11298678598732126749,2971828502511703879,15116957524607186152,11706807446003718147,3755623494668458830,425836949861060661,3755623494668458830,11706807446003718147,425836949861060661,4181460444529519491,13630626385943315932,7578648763247464616,4827817121656748535,10839952296266734394,13760331219901616963,13285946383971387299,6080387409411434437,2226931078854748628,14387869644177967493,10778179957656586374,6106965882557134849,17301750264308622897,8788757838920099643,11706807446003718147,13396055233310679795,3738069002816195117,13396055233310679795,8125466657395271904,1944884302073343658,3343872651985960352,2268080571328507982,12246947957241477368,18144865530103905174,14599086113147191462,10065077362693097693,1670053751635867752,8462699268530879041,10890213950593420519,13444402952462059126,11334380561596351060,2272669577735613426,5885992213857508252,3189619597657097170,12349267618550830301,17362400626207377653,7479635251743880924,17484933588108048246,16196997760305296245,16078831246369418220,3581208777314146667,6557942849661890463,17732058671281947719,15819060440461324356,14638680752842710879,16131162396840041291,2169236625557872133,10585360475154522294,3414433706481662099,10822536379285774287,2762366021136323085,14277571886705004324,13732400673598642977,5278694176524523420,2177294429128102046,2337925733540879588,13752677903411265540,12962918645892182672,17363109600122011023,13674485289762506960,230198022769910493,14405834877062323245,8278110392504109743,14758173293901714340,10936549738350606671,1692422452774803184,3067176069376724631,574108836675579678,1366999807668904067,9767670390426829466,16711505038852032451,5638483043786849988,6678457329817486757,16399824905256785090,9238934666237420653,2783441656717104084,16569718624150092831,12044838086742244539,9187900225803990641,12470193447247643677,11379491309419536095,4095873614019633536,4790901897795774478,2272288311959874297,9976891817101663382,327366833506679617,13637884827109200250,3995859414352926089,4388358654271481774,16483804793223895647,15991655823199209898,4988958193288990283,12608208382183972577,14743134734801763607,13206057725958129883,16598333280162803825,14593088858113396840,15059512395150057173,18430740042755385835,5363649494195233355,8841063165695575197,16564601337817376994,7954463730882913019,337829748799299604,13199038940969975178,435050928904051889,10348821891939322217,11389342984804667743,3878418870813532518,14818782790854169294,12591258506628934028,17180262336759524634,5091407071462824566,1222575719423091481,9411014198638927072,11548551293893068812,12469322091753403352,15752963157981115469,1144082667414197632,9364017854923054400,16185462769196391722,14211013369600768872,18093715396762043766,1237203906664613428],{"siblings":[{"elements":[6337283624701027404,4370504859152319321,7010495348472814238,14962108820082049312]},{"elements":[16101034779588015327,6844002570289426033,9868559491919778383,366356878854969441]}]}],[[6073833436856463662,16908957548100780105,13639384892439782024,15169655798226778662,10132544784207835849,9219654460145487257,14164608930864403345,11757109717323880785,15568311400760713875,7833386289296291628,916194290286948070,16064763569008922709,18337282576202845750,8881718473913645850,2575496634064669135,2917220859313710615,16595267538103543024,2916854925160974024,12411898411159671138,2532860205301720830],{"siblings":[{"elements":[13689956775977108112,1097517896385930398,11229788732271793595,15446071656011640816]},{"elements":[10570782977050475606,2405870902656028473,13243401681875001135,16516069414046803012]}]}],[[13027650798610285761,7934681227452148867,7935257253851766156,6128755796944074845,2369208168523981327,994737403623170952,13466392763598337360,0,16830862860921945222,5490740266059427833,10140048978905138066,13182738434857116213,4718701072470177204,1035834086833757258,9880085446426071250,0],{"siblings":[{"elements":[3772465688451026905,6200608477260570223,13500858540825709005,6635953971720257764]},{"elements":[17417798336124797448,3098632452610601349,6582542191892491765,991423848540495231]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[3224450578647075915,12165712751178440782,5633103419006680988,11493295134337342176,17326254976767111726,15040497768065427752,17068747695981096728,2070135021958711056,11266547947368074009,17196201500327856258,17880589677582589285,14237004209817874460,11084311560596369096,4266574937343165060,5722366348059158318,14055573689545109074,13034681062097938582,4756471198169320681,5595050181858555126,10368679253103809395,2243893450744688687,17107979679673729713,1291822591423251229,6630010511335148424,1138906968938915755,13806912379760342367,2613038345576034901,17561849880319681322,1601130326224471768,1597531066573998330,2012084127101128161,15191364035229680637,6884259991631809435,17196068475351035883,16413787052602206780,5252023353830006820,825553712506901819,3947181967997444685,7257381028346369124,10981873135685283577,8352848301710745072,14004197552182932012,11245447532264667700,7080123586924873668,3577968953845760945,14110628317847127950,12732951413930286077,9925444275789517227,12967465905890319680,11396479705777394594,5561421826650650980,16245112556402503616,15228394940253802153,6426318629695872151,15977843601468538897,8098285179979927422,1929505969672845131,8112987869196542195,12021566813041088338,1114467968833865888,2611071761440494960,17968880708511351540,13074193547243221494,1059703104997270543,15737059687084314141,14794946844456905042,13227044856766877073,17143217588648521766,5748454528369563133,12685039917954187917,11288157634772235832,6179411481163140015,3874758693212010225,1206384404526474746,4599443118113865083,5584734463373381931,6136611417086052441,14944258110498715822,12474883356910797772,14308946048563388763,13137334755331465236,13963597645627481639,14465254100735638307,3494334304389204700],{"siblings":[{"elements":[14558427021271812428,2889616159627138166,3028504079954276941,5281229060922485517]},{"elements":[14116771184823831436,6357576774383995688,13501931163075412498,1114208703580065252]}]}],[[13448280129321627798,14184832580226620071,4264760999753648961,8684267825863703316,11540096098169847035,5633103419006680988,17929086713287469260,11022438742042731974,17929086713287469260,5633103419006680988,11022438742042731974,10504781385915616913,10233299991856859622,8096041051817582124,616647339418745235,17702256353323484405,3401807163073704597,2858363794882528563,6468473530378188213,9432439911715600556,15319531969909672148,3978008339442677304,4675777195118948063,8570244683106774459,13585257444459381479,5633103419006680988,16665733503003146045,11804246878047943203,16665733503003146045,4285274222770811137,11760308604722249425,10207862365438598523,12212890942095567435,9993158262681182159,736954933851108145,9672950575386075303,7952857189275572838,18283257144281847970,3593526112719002767,427775632172508153,7754042250414149527,9694557622302150389,7099829167389618045,15777519981516555839,17493605598880637306,6761961629305837681,15352357082232361981,10587216098471322447,1186407845470370944,4963333110095360289,5183020716315664450,5703057399647066411,1654005320245959858,3947216947333041453,6783974214217163215,1689013489307070514,13979456232858178304,3935461540017849252,526852840254096676,3037366594606732801,12264182439110100477,4891678981289992825,10683976087407861194,14381414872760763757,13023867804880331183,9291318119038699956,11309267658680205996,12096665809323843806,13800879323908434913,7174327047092873001,12306753553916010947,14232879251003089683,18164420531977468492,10953775806891900286,16259877793389096518,9625864982490925863,8534134395704118094,13051166443626080651,3427308511623505181,4727337347415394589,3453396440679893252,1684138076566235632,2352317457543417717,12214643506510543508,2611085211896867136,17856202544361752314,7277800217698677022,7038087010169898749,10869326517679843992,12137663335825974799,486491896416270871,4876279596041153562,18185680314122301023,15068514540196733550,11699983284397763417,5313633926205060679,18080277924750706853,6104594111512281074,14622521888511112461,15159579898446946314,6223059643385745080,626293859165316592,11067506214141118923,14049412274224744161,4343276081834489311,12709267438770432401,11738923289356649396,9027046029338967227,869807388680322678,13916569635788552983,8534163457168825665,8348511056798340915,15347654705785397820,17180257060609330311,10358196993038095993,16240222817772121908,7429053970656559990,9003081370840259316,11173882529172024683,7448031355626881647,10524525929540040437,11781343601179760136,6579149689263849340,9735029773692866132,14449081018226222344,9421548752611836587,12647656205192859339,9067851236147233742,5496246895245525662,3746197693689619493,18049022466208770944,15526349738630038124,790129979945703861,1590583770950262649,5500037066238389846],{"siblings":[{"elements":[6721740766564925244,1411408032836159396,13022652891543324015,2237109728225375781]},{"elements":[10383452154226125760,245290251193527986,17653238234088421422,10435157782398094396]}]}],[[7163828245400992899,6208789802991690329,1520393498095234823,17850125557131604925,1566108637863292880,17723991757094781147,15673272288241213978,14517555794516862246,660547752629125656,5196605275958006061,6716167319968777602,215845010327148844,7049858174620698506,15421018691863710164,4096225175798213350,6061796182218412267,2874778639280213280,15165039131876660989,2871311492653310124,6703544107971367030],{"siblings":[{"elements":[15844430972945815991,4510052531366082237,1988094269381573260,15027494130045863020]},{"elements":[18113916164610076962,9934973629108858737,8628759266336919655,8869508532199145062]}]}],[[7276572204403270635,7257272762095579258,2422248109556499360,9592078953406538535,857899562719364695,11654219534014360536,6987570363935464223,0,3245626943291012230,5964104782427339077,6066854230964074654,27237648514612632,10376175688294746092,9883018294823949155,7771135358797040383,0],{"siblings":[{"elements":[18439044051224101044,5401075306492653357,4222486334350026793,5977485059265711106]},{"elements":[11750769666821996496,6624622629346917355,6177482558660254567,6121177377877255158]}]}]]},"steps":[]}],"final_poly":{"coeffs":[[13910181726160184000,7043768098439702501],[18060041138806088035,4617277402726990662],[9219529992404360677,746092082563516345],[6610430630768966833,17875742445555215803],[10347276921008415275,218640200373566537],[546329369844128056,13280379759507380358],[12590262975324076375,6385327275169664512],[0,0]]},"pow_witness":6341068273861271870}},"public_inputs":[0,1,3736710860384812976]} \ No newline at end of file diff --git a/plonky2_verifier/gate.go b/plonky2_verifier/gate.go index 8220f06..d171299 100644 --- a/plonky2_verifier/gate.go +++ b/plonky2_verifier/gate.go @@ -62,11 +62,11 @@ func (p *PlonkChip) computeFilter( continue } - product = p.qeAPI.MulExtension(product, p.qeAPI.SubExtension(s, p.qeAPI.FieldToQE(NewFieldElement(i)))) + product = p.qeAPI.MulExtension(product, p.qeAPI.SubExtension(p.qeAPI.FieldToQE(NewFieldElement(i)), s)) } if manySelector { - product = p.qeAPI.MulExtension(product, p.qeAPI.SubExtension(s, p.qeAPI.FieldToQE(NewFieldElement(UNUSED_SELECTOR)))) + product = p.qeAPI.MulExtension(product, p.qeAPI.SubExtension(p.qeAPI.FieldToQE(NewFieldElement(UNUSED_SELECTOR)), s)) } return product From 9a91db901dad8b6be20111e18678ea4c127170bb Mon Sep 17 00:00:00 2001 From: Nicholas Ward Date: Wed, 12 Apr 2023 09:25:51 -0700 Subject: [PATCH 18/21] don't need challenges serialized --- .../dummy_2^14_gates/proof_challenges.json | 18 ------- .../data/fibonacci/proof_challenges.json | 1 - plonky2_verifier/deserialize.go | 42 ---------------- plonky2_verifier/deserialize_test.go | 6 --- plonky2_verifier/plonk_test.go | 50 +++++++++++++++++-- 5 files changed, 46 insertions(+), 71 deletions(-) delete mode 100644 plonky2_verifier/data/dummy_2^14_gates/proof_challenges.json delete mode 100644 plonky2_verifier/data/fibonacci/proof_challenges.json diff --git a/plonky2_verifier/data/dummy_2^14_gates/proof_challenges.json b/plonky2_verifier/data/dummy_2^14_gates/proof_challenges.json deleted file mode 100644 index 4d44275..0000000 --- a/plonky2_verifier/data/dummy_2^14_gates/proof_challenges.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "plonk_betas": [ - 11216469004148781751, - 6201977337075152249 - ], - "plonk_gammas": [ - 8369751006669847974, - 3610024170884289835 - ], - "plonk_alphas": [ - 970160439138448145, - 2402201283787401921 - ], - "plonk_zeta": [ - 17377750363769967882, - 11921191651424768462 - ] -} \ No newline at end of file diff --git a/plonky2_verifier/data/fibonacci/proof_challenges.json b/plonky2_verifier/data/fibonacci/proof_challenges.json deleted file mode 100644 index 7d7d521..0000000 --- a/plonky2_verifier/data/fibonacci/proof_challenges.json +++ /dev/null @@ -1 +0,0 @@ -{"plonk_betas":[12973916988745913043,10729509799707823061],"plonk_gammas":[13357786390712427342,13733012568509939467],"plonk_alphas":[4421334860622890213,11104346062293008527],"plonk_zeta":[18168831211174576204,14207073590853934065],"fri_challenges":{"fri_alpha":[3871254635590041629,16336705857054086518],"fri_betas":[],"fri_pow_response":21146135473161,"fri_query_indices":[2,42,42,49,18,2,15,51,2,36,61,47,57,42,30,29,14,54,34,27,51,41,58,15,59,43,41,12]}} \ No newline at end of file diff --git a/plonky2_verifier/deserialize.go b/plonky2_verifier/deserialize.go index b8014a3..9e7059f 100644 --- a/plonky2_verifier/deserialize.go +++ b/plonky2_verifier/deserialize.go @@ -155,19 +155,6 @@ type VerifierOnlyCircuitDataRaw struct { } `json:"constants_sigmas_cap"` } -type ProofChallengesRaw struct { - PlonkBetas []uint64 `json:"plonk_betas"` - PlonkGammas []uint64 `json:"plonk_gammas"` - PlonkAlphas []uint64 `json:"plonk_alphas"` - PlonkZeta []uint64 `json:"plonk_zeta"` - FriChallenges struct { - FriAlpha []uint64 `json:"fri_alpha"` - FriBetas [][]uint64 `json:"fri_betas"` - FriPowResponse uint64 `json:"fri_pow_response"` - FriQueryIndices []uint64 `json:"fri_query_indices"` - } `json:"fri_challenges"` -} - func DeserializeMerkleCap(merkleCapRaw []struct{ Elements []uint64 }) MerkleCap { n := len(merkleCapRaw) merkleCap := make([]Hash, n) @@ -404,32 +391,3 @@ func DeserializeVerifierOnlyCircuitData(path string) VerifierOnlyCircuitData { ConstantSigmasCap: DeserializeMerkleCap([]struct{ Elements []uint64 }(raw.ConstantsSigmasCap)), } } - -func DeserializeProofChallenges(path string) ProofChallenges { - jsonFile, err := os.Open(path) - if err != nil { - panic(err) - } - - defer jsonFile.Close() - rawBytes, _ := ioutil.ReadAll(jsonFile) - - var raw ProofChallengesRaw - err = json.Unmarshal(rawBytes, &raw) - if err != nil { - panic(err) - } - - var challenges ProofChallenges - challenges.PlonkBetas = utils.Uint64ArrayToFArray(raw.PlonkBetas) - challenges.PlonkGammas = utils.Uint64ArrayToFArray(raw.PlonkGammas) - challenges.PlonkAlphas = utils.Uint64ArrayToFArray(raw.PlonkAlphas) - challenges.PlonkZeta = utils.Uint64ArrayToQuadraticExtension(raw.PlonkZeta) - - challenges.FriChallenges.FriAlpha = utils.Uint64ArrayToQuadraticExtension(raw.FriChallenges.FriAlpha) - challenges.FriChallenges.FriBetas = utils.Uint64ArrayToQuadraticExtensionArray(raw.FriChallenges.FriBetas) - challenges.FriChallenges.FriPowResponse = NewFieldElement(raw.FriChallenges.FriPowResponse) - challenges.FriChallenges.FriQueryIndicies = utils.Uint64ArrayToFArray(raw.FriChallenges.FriQueryIndices) - - return challenges -} diff --git a/plonky2_verifier/deserialize_test.go b/plonky2_verifier/deserialize_test.go index 2d9a8ca..253e641 100644 --- a/plonky2_verifier/deserialize_test.go +++ b/plonky2_verifier/deserialize_test.go @@ -22,9 +22,3 @@ func TestDeserializeVerifierOnlyCircuitData(t *testing.T) { fmt.Printf("%+v\n", verifierOnlyCircuitData) panic("look at stdout") } - -func TestDeserializeProofChallenges(t *testing.T) { - challenges := DeserializeProofChallenges("./data/fibonacci/proof_challenges.json") - fmt.Printf("%+v\n", challenges) - panic("look at stdout") -} diff --git a/plonky2_verifier/plonk_test.go b/plonky2_verifier/plonk_test.go index c6e4752..ff8b7c4 100644 --- a/plonky2_verifier/plonk_test.go +++ b/plonky2_verifier/plonk_test.go @@ -12,17 +12,27 @@ import ( type TestPlonkCircuit struct { proofWithPIsFilename string `gnark:"-"` commonCircuitDataFilename string `gnark:"-"` - ProofChallengesFilename string `gnark:"-"` + + plonkBetas []F + plonkGammas []F + plonkAlphas []F + plonkZeta QuadraticExtension } func (circuit *TestPlonkCircuit) Define(api frontend.API) error { proofWithPis := DeserializeProofWithPublicInputs(circuit.proofWithPIsFilename) commonCircuitData := DeserializeCommonCircuitData(circuit.commonCircuitDataFilename) - proofChallenges := DeserializeProofChallenges(circuit.ProofChallengesFilename) fieldAPI := NewFieldAPI(api) qeAPI := NewQuadraticExtensionAPI(fieldAPI, commonCircuitData.DegreeBits) + proofChallenges := ProofChallenges{ + PlonkBetas: circuit.plonkBetas, + PlonkGammas: circuit.plonkGammas, + PlonkAlphas: circuit.plonkAlphas, + PlonkZeta: circuit.plonkZeta, + } + plonkChip := NewPlonkChip(api, qeAPI, commonCircuitData) poseidonChip := poseidon.NewPoseidonChip(api, fieldAPI, qeAPI) @@ -39,7 +49,23 @@ func TestPlonkFibonacci(t *testing.T) { circuit := TestPlonkCircuit{ proofWithPIsFilename: "./data/fibonacci/proof_with_public_inputs.json", commonCircuitDataFilename: "./data/fibonacci/common_circuit_data.json", - ProofChallengesFilename: "./data/fibonacci/proof_challenges.json", + + plonkBetas: []F{ + NewFieldElementFromString("12973916988745913043"), + NewFieldElementFromString("10729509799707823061"), + }, + plonkGammas: []F{ + NewFieldElementFromString("13357786390712427342"), + NewFieldElementFromString("13733012568509939467"), + }, + plonkAlphas: []F{ + NewFieldElementFromString("4421334860622890213"), + NewFieldElementFromString("11104346062293008527"), + }, + plonkZeta: QuadraticExtension{ + NewFieldElementFromString("18168831211174576204"), + NewFieldElementFromString("14207073590853934065"), + }, } witness := TestPlonkCircuit{} err := test.IsSolved(&circuit, &witness, TEST_CURVE.ScalarField()) @@ -56,7 +82,23 @@ func TestPlonkDummy(t *testing.T) { circuit := TestPlonkCircuit{ proofWithPIsFilename: "./data/dummy_2^14_gates/proof_with_public_inputs.json", commonCircuitDataFilename: "./data/dummy_2^14_gates/common_circuit_data.json", - ProofChallengesFilename: "./data/dummy_2^14_gates/proof_challenges.json", + + plonkBetas: []F{ + NewFieldElementFromString("11216469004148781751"), + NewFieldElementFromString("6201977337075152249"), + }, + plonkGammas: []F{ + NewFieldElementFromString("8369751006669847974"), + NewFieldElementFromString("3610024170884289835"), + }, + plonkAlphas: []F{ + NewFieldElementFromString("970160439138448145"), + NewFieldElementFromString("2402201283787401921"), + }, + plonkZeta: QuadraticExtension{ + NewFieldElementFromString("17377750363769967882"), + NewFieldElementFromString("11921191651424768462"), + }, } witness := TestPlonkCircuit{} err := test.IsSolved(&circuit, &witness, TEST_CURVE.ScalarField()) From d6801149f2b7782c3f95ef6eb1c3cc7a382ce425 Mon Sep 17 00:00:00 2001 From: Nicholas Ward Date: Wed, 26 Apr 2023 16:05:23 -0700 Subject: [PATCH 19/21] deserialize ProofChallenges (now works with plonky2 randomizing PI wires) --- plonky2_verifier/challenger.go | 8 +- .../dummy_2^14_gates/proof_challenges.json | 1 + .../data/fibonacci/challenges.json | 1 - .../data/fibonacci/proof_challenges.json | 1 + .../fibonacci/proof_with_public_inputs.json | 2 +- .../proof_with_public_inputs_randomized.json | 11509 ++++++++++++++++ plonky2_verifier/deserialize.go | 41 + plonky2_verifier/fri.go | 6 +- plonky2_verifier/fri_test.go | 8 +- plonky2_verifier/plonk.go | 1 - plonky2_verifier/plonk_test.go | 50 +- plonky2_verifier/structs.go | 8 +- plonky2_verifier/verifier.go | 4 +- plonky2_verifier/verifier_test.go | 4 +- 14 files changed, 11576 insertions(+), 68 deletions(-) create mode 100644 plonky2_verifier/data/dummy_2^14_gates/proof_challenges.json delete mode 100644 plonky2_verifier/data/fibonacci/challenges.json create mode 100644 plonky2_verifier/data/fibonacci/proof_challenges.json create mode 100644 plonky2_verifier/data/fibonacci/proof_with_public_inputs_randomized.json diff --git a/plonky2_verifier/challenger.go b/plonky2_verifier/challenger.go index cd86ed8..78b8eb5 100644 --- a/plonky2_verifier/challenger.go +++ b/plonky2_verifier/challenger.go @@ -123,10 +123,10 @@ func (c *ChallengerChip) GetFriChallenges(commitPhaseMerkleCaps []MerkleCap, fin friQueryIndices := c.GetNChallenges(numFriQueries) return FriChallenges{ - FriAlpha: friAlpha, - FriBetas: friBetas, - FriPowResponse: friPowResponse, - FriQueryIndicies: friQueryIndices, + FriAlpha: friAlpha, + FriBetas: friBetas, + FriPowResponse: friPowResponse, + FriQueryIndices: friQueryIndices, } } diff --git a/plonky2_verifier/data/dummy_2^14_gates/proof_challenges.json b/plonky2_verifier/data/dummy_2^14_gates/proof_challenges.json new file mode 100644 index 0000000..897fa90 --- /dev/null +++ b/plonky2_verifier/data/dummy_2^14_gates/proof_challenges.json @@ -0,0 +1 @@ +{"plonk_betas":[11216469004148781751,6201977337075152249],"plonk_gammas":[8369751006669847974,3610024170884289835],"plonk_alphas":[970160439138448145,2402201283787401921],"plonk_zeta":[17377750363769967882,11921191651424768462],"fri_challenges":{"fri_alpha":[14107038880704607350,2206343865181400103],"fri_betas":[],"fri_pow_response":189028802052971,"fri_query_indices":[14,19,40,37,6,4,23,18,34,22,43,35,12,45,52,50,23,9,31,61,48,37,10,37,38,7,2,48]}} \ No newline at end of file diff --git a/plonky2_verifier/data/fibonacci/challenges.json b/plonky2_verifier/data/fibonacci/challenges.json deleted file mode 100644 index 4636484..0000000 --- a/plonky2_verifier/data/fibonacci/challenges.json +++ /dev/null @@ -1 +0,0 @@ -{"plonk_betas":[12973916988745913043,10729509799707823061],"plonk_gammas":[13357786390712427342,13733012568509939467],"plonk_alphas":[4421334860622890213,11104346062293008527],"plonk_zeta":[4417665616040947721,6032065041495623027],"fri_challenges":{"fri_alpha":[13781247504304639195,11230825432264195234],"fri_betas":[],"fri_pow_response":38184296491435,"fri_query_indices":[51,25,2,2,7,2,50,30,48,56,44,52,34,3,4,59,0,1,53,63,60,42,12,56,53,7,37,39]}} \ No newline at end of file diff --git a/plonky2_verifier/data/fibonacci/proof_challenges.json b/plonky2_verifier/data/fibonacci/proof_challenges.json new file mode 100644 index 0000000..8225795 --- /dev/null +++ b/plonky2_verifier/data/fibonacci/proof_challenges.json @@ -0,0 +1 @@ +{"plonk_betas":[12971851817998460587,10437175405489723736],"plonk_gammas":[8479625606955782945,3810097167144316198],"plonk_alphas":[9298386058996050960,3314375019423950587],"plonk_zeta":[16024275880526593214,9166642105134614584],"fri_challenges":{"fri_alpha":[9179060524700746859,5307687266418646185],"fri_betas":[],"fri_pow_response":182691749083890,"fri_query_indices":[4,61,0,34,24,53,10,46,44,20,40,53,39,5,29,32,20,13,1,20,50,36,4,33,41,60,14,2]}} \ No newline at end of file diff --git a/plonky2_verifier/data/fibonacci/proof_with_public_inputs.json b/plonky2_verifier/data/fibonacci/proof_with_public_inputs.json index d31b292..95a4b86 100644 --- a/plonky2_verifier/data/fibonacci/proof_with_public_inputs.json +++ b/plonky2_verifier/data/fibonacci/proof_with_public_inputs.json @@ -1 +1 @@ -{"proof":{"wires_cap":[{"elements":[13884351014873073118,5174249846243191862,2208632528791973868,1071582828677910652]},{"elements":[11475361245556894879,14867351574926692044,17013374066934071379,1027671036932569748]},{"elements":[5604634992452399010,3684464596850094189,5565599237356852406,4136295609943151014]},{"elements":[8463721840990025805,5922588965472526198,8096699027533803435,2210089353004111478]},{"elements":[17531628199677307555,11513452064460680964,1482441508929181375,5139566233781982440]},{"elements":[13271417993289093233,17257193898955790413,16883807866578566670,7423179920948669117]},{"elements":[13462567520785358202,15555103598281658890,5859961276885232601,4464568704709749394]},{"elements":[153012620162729043,14072764618167122665,3025694603779494447,15948104906680148838]},{"elements":[18050235253694287284,11467396424826912141,11302553396166323353,10976271719722841224]},{"elements":[15208241660644051470,8520722208187871063,10775022596056682771,16048513824198271730]},{"elements":[6929477084755896240,11382029470138215117,13205948643259905511,9421863267852221772]},{"elements":[15449187573546292268,10216729601353604194,9493934392442974211,9848643714440191835]},{"elements":[2172475758127444753,16681095938683502188,9983383760611275566,2603547977557388755]},{"elements":[17440301588003279095,11799356585691460705,1386003375936412946,11059100806278290279]},{"elements":[10758265002546797581,1374136260999724547,7200401521491969338,219493657547391496]},{"elements":[5995963332181008902,4442996285152250372,2005936434281221193,6869325719052666642]}],"plonk_zs_partial_products_cap":[{"elements":[15664680364476180944,8822125722323081501,1515493944014958888,947815081717447158]},{"elements":[10037151755940667434,11949718559165021995,15928759330468082414,418840513000355827]},{"elements":[4161325524387973626,16365963892177732678,18172371282801122338,567761389574432991]},{"elements":[14261960611216430479,4961706922451790904,5837508846364221974,2496934636118037961]},{"elements":[2268074920164158624,1603793544646573865,12725635986147157826,15183158543695142576]},{"elements":[12920137987121475725,14038284593794054077,5500255468202520981,16477234960171405851]},{"elements":[10060477178655432860,2386219747357014594,17226595442036371584,14113214704489839208]},{"elements":[17356067684144936182,14910758592434722301,16921079055641057614,6252234565363173327]},{"elements":[6168512725748334393,6913883079661406117,10501571227616463415,1759912320778482174]},{"elements":[2516240519880426606,8354489090385082736,11228741529454001895,3898276725474912647]},{"elements":[3150970879837517798,7321559733305167606,14491889646728789185,11305012649385509934]},{"elements":[14991754416746124019,9687288789913675937,16219387862412589234,17460315789956127541]},{"elements":[9540799947392529115,12014884309935443424,4611822682640082013,6664663134811580775]},{"elements":[419279371365114248,15409640520057063238,9046735251831703003,11942336533527375105]},{"elements":[1577288469125335151,13080447669023420177,5624936637565297046,1990913922457378896]},{"elements":[9993080054082545872,8098015705753527414,8741600873648916001,13754140924787167756]}],"quotient_polys_cap":[{"elements":[7183911005270754315,14307301628724785648,8766457564743758724,16070319676647146817]},{"elements":[15509119113024039345,8318282602352041510,13576810720823767692,11210484269807483686]},{"elements":[15588943520795762607,13333288684758865150,16279171410028364740,4798883027793809226]},{"elements":[15837644269075168306,14041645641478038189,17517916513429829711,6427923304665289330]},{"elements":[5861721985734768159,14392520776545458492,4038865246800432884,7629895429383136613]},{"elements":[17276288981631404207,18207333530806091831,10160611555313706040,18131018898065538639]},{"elements":[16953926178723712096,7087627390344500667,14191399564490320874,4425753047788941763]},{"elements":[2842812406559357784,7369577970090516212,13500906414731167063,13728077650275393273]},{"elements":[10218583550823772530,11414570159115896600,16805399804844903729,13394291733793941131]},{"elements":[12630205649628973107,10893259699287487275,8251527761882278427,7955391159293054431]},{"elements":[9049574755717500315,6273477365151294141,15498490766977776588,5444049250622975500]},{"elements":[14442316952994850754,1492872284030456673,3857600749417597609,5487727711179003163]},{"elements":[10630434622969915004,16439080552170633019,17739749461824847400,12421215527675283406]},{"elements":[13073213018298356342,17234246804395405540,3345124430971732516,15686007365635592062]},{"elements":[9762568289390365835,13573326246864589356,5335274269603943339,2467266693802483141]},{"elements":[2348455474657155105,7471309838601168346,8967590409163618421,17697602804243792629]}],"openings":{"constants":[[15708885176500031815,10812956464460062598],[4310178694711070979,2617557659907460000],[4428255255930001271,6332759998269113797],[13491932504098742294,17185001908124015010]],"plonk_sigmas":[[16332918474453757075,16966835635996886953],[1674212030723357343,1581851333584996892],[15320941266843729487,17973924992921799969],[4425162010563711089,9467830467435284457],[7216608219842383925,18261239799007855544],[4371018972342571778,12894586147195504465],[6194779993991285035,6366487043377071740],[16292815486581589137,14211137901799992450],[626665172943425061,2095956077796892714],[17065921167030944650,6264790938733729827],[5591045624920406309,12031301673073429952],[2571808843321045744,1768775415757996575],[12591264365966885494,627019067063257570],[1692576061784251626,156389776307520593],[8205376370852798282,2322673700869014096],[14508098476365469884,12878420789029451930],[16820200523985569813,5468508508493548292],[12320133842857919025,2724446450248595076],[10193445534511660945,15888659431410912117],[4156779183132940989,1018966100000152591],[5378690140828042344,14253895539239996861],[10510613430284912462,11248526474113927842],[14080092318759119299,804559268239617089],[738277148901196928,11567388937641240619],[13019538896480207420,9505522010695265678],[836959154923470134,1678746724589302698],[11866522173126960827,13285419824203861305],[1716003847973729312,10951014807669323114],[1536488872791317607,15821995632017654050],[17290571474476685066,9280678606536395920],[9746894501714754003,3872501895654702296],[6501311505471774529,6776254298262139289],[18207713758451294528,6765473549758257111],[9487954035706121216,17689242510483328473],[11822218599431442175,718040481989714912],[3703441912992308563,18205044973147646088],[16384033598407905279,10767211884741121031],[17295458072799987502,7466419878098556731],[14054478475261976477,8467998801749161859],[633391636703217041,9976280084348000839],[9606313785486802507,8187294013598961710],[2773932540540685731,15085635913073335440],[5707916144730798168,3353158504865701717],[8140306032428201119,9174680419419565781],[6329312185582418057,11910492724574763845],[937420779521500250,9653219028249369317],[17222563993024835186,8153155917791058561],[9772814350066090780,2995268145363760907],[15008188455182858674,4639724111402294295],[244515162542813088,8268335642017822941],[12222687694545818225,3731900967457640380],[268798213332706468,15855374016116636838],[8169313327360497361,16590917619914256732],[15231839113442110337,3577257794700151945],[16350084235320487835,13623349199721156695],[18195211851732362754,13119997493757593815],[5632353204851030538,8272759548042864493],[10198965794800794915,11259972797283110680],[1880869290255856747,3584193458439223562],[4813699635667300226,12521856021287313868],[1816641966434014445,14199056160824918297],[8887493203555196948,10714624584382712415],[14961612967153475223,9465757365379478776],[10031037783658057680,15230218034482738159],[8325761026226782689,2350801862477005889],[14435037492768397072,11052394338961964941],[7022030985298337436,894740757360657704],[11520707976963950775,6306755213348195537],[12328396794510416646,18018330635842921584],[15539657776332015034,10380836029505569743],[18019060325792698763,8450246370847366068],[9550492637983913596,16189130329058341117],[11903216278517116162,4397013881654490439],[2583167749657467726,17952992630620236158],[15861765889506801632,6228786104009955137],[5276510316439955143,15745363843515966675],[14349698827382071640,15533740161177117779],[12360072923888431646,1497949473315170794],[229367994114592168,13154489174102026805],[7935035362463829657,18265053446448821050]],"wires":[[12831880274663843095,8375326319329187801],[16706124378021086165,147816809152142562],[15420844593778680874,6881471174393635462],[2460150171803111518,12293154465356737586],[12609229378919897783,4437156539802729635],[4428255255930001271,6332759998269113797],[17689286425094671488,4235168525402717656],[11851771734599984950,8672325065205447291],[17689286425094671488,4235168525402717656],[4428255255930001271,6332759998269113797],[11851771734599984950,8672325065205447291],[11094314090280072117,12907493590608164947],[11248190599009283472,6231645358392350208],[15743527307432717274,13243766762473709841],[10396588746585398137,1053278086117512648],[3145495084030801416,1240380672360792309],[13372437964901485824,1990323854315250763],[17967380280453309159,2854870381524567817],[14746068186440731491,1699095505678210419],[9817016286543934982,13184757331937113426],[5665672147161865956,12414260908049399789],[8480107632202547383,8995628996174186732],[9661904478916216221,7957825869602892857],[3844524362851085653,6852794392687255840],[15593655845745544863,16040568177007192864],[4428255255930001271,6332759998269113797],[1646253531796433288,726898693991636460],[17239909377541978151,16767466870998829324],[1646253531796433288,726898693991636460],[2857961748829592165,11725905808770450879],[14548798437416549388,4869558414259694844],[3334536956570206720,9992975748624505238],[15060687617234296914,17734781871890235747],[12005326218088150203,12306562067676510967],[11590504478234946172,3969592135636087901],[8325718293853506048,13288570399871853026],[12744821452227144178,9972727481525094398],[11654526594812815449,5672593902077008552],[16953520823888438438,17033801531263220052],[3905352517569318576,4734314967261696279],[76063772280795467,12356900466780887109],[5276078115903149383,16983513533287677323],[16234977579233496942,18141825748191659634],[1530100657431071456,14680701506708231070],[6035171418711307858,11182168368800460698],[5996400695447332126,13619070582978485184],[8263120259533904534,1705292455468433909],[188433187336950116,659951089877651942],[12883263103740211213,9990046237410806978],[6894238827237252034,9494406729950259653],[15825925192312103681,14439128375217844324],[15181206558233955348,7541393502789276778],[16913973098651903601,8353365297238162474],[891306467696319604,3347916850021204053],[9373932489627319852,15753998275205900660],[3176852018304300497,1526585005830306705],[11092541406156492814,119469210077747532],[5388718840424973664,8081838500302320059],[18320215430940166107,4377000611017900773],[12337502114620259753,11075725336381625123],[2885269920643066982,340358103662043557],[4713791466134275106,9614528695818099787],[5961964700902400027,8722948238967065658],[13816672884588761197,16374101062582328243],[16376021822486876581,17554694610978355248],[12006562071608218998,2711136182468669606],[16517164560396473051,14238280318436550033],[14180362624530500510,592691809864506590],[17910624156633662012,13598284886569674976],[5043246454532079272,7518081095754397626],[4359665093484759592,11244226060968509469],[9511071698157374977,5445064339117064869],[15244317556672442533,4555233350624889505],[3968776223009226234,1626936916354728623],[6472908951998779668,7443040134084641044],[7204623573033963318,5156730212371880338],[11605695283827419160,8513486856005604750],[13861165842597538423,7590362963890064594],[1023856292977850855,13410088440187137178],[9274488019462934021,376576344632297036],[11593936933753594914,6692163639408334760],[8455988196059368261,17123861569430269742],[17665666853418139086,9155567719537627977],[5892688684583419070,619140548517887767],[17524970734816347268,12416192900921852479],[7755903700510119503,1993809093995893310],[3045053533708397114,5614690539923014011],[543948020073483930,4343165050266346234],[10508835003976807431,8542384433481755837],[18224394333541507229,14884436138014597099],[308305291008684332,14454963445227301238],[17525672926805954901,4583324227030557313],[11087731423032344586,3320343400912847321],[14897620554053382136,11177699561133713953],[1565787329686665795,7162817002806393899],[14502755688624601398,16780651407805301844],[16250050767973291181,839257592496295958],[17397940632468081902,3844684133737309062],[15424765881799486088,445218160557478288],[5572494436787222445,9874495841431129956],[11666902156954978719,4960720059607633078],[5456000479418241111,17403087985304965167],[16153540064240441858,11443880275869540993],[15454902767400818622,846952924277988380],[4158646014472684345,16137485598388050471],[483478000591243293,8846918361282711976],[10669027325267034983,13710085999638292085],[10268966070411241683,14056832438643819401],[11321374244307148319,9644618854165435491],[7129739583408097875,11366800520074479910],[10438057157110732910,9541372438755028307],[12520782506170805830,15513787666241843408],[12480696562074120127,14610420548662872435],[2390738391564924842,6149572029336903933],[1033566292463653039,3861672846706060948],[8110792290666428337,8796781053030172727],[16820782961410748691,18302236667925006536],[1532333149437271591,17492476339105156223],[12262092770632522632,13996757457861107726],[252593302432622304,17773568271535970984],[5258424435082774121,6795741660063113943],[9091704427317706859,10576130301937321349],[14065971817266365647,6859956971040745277],[15889487067276602279,3785945611583922593],[1536121223070360777,14495550633992065396],[10337585198321421651,14597944609069941858],[4691479266344799665,1494819252985960546],[5683581115557514504,5885046574399624728],[15159883394626479045,3072692248733750329],[13000026256748780375,9376435975272710770],[14841753442329977195,7315360928938398063],[11857281343359886871,13115044103933480767],[14269477553527207522,297597232606865306],[17126356136084221635,14277086829383481151],[556205355537202931,5495742325697452776]],"plonk_zs":[[16226931450351231259,10058328243590441783],[13915246981148760843,13606807943681845129]],"plonk_zs_next":[[1949403636718031728,6814172731345349228],[10706515086871257669,2618729029486148733]],"partial_products":[[2718337796028337019,1100046918541576077],[4359540226755296579,16555425246155148375],[9678352411882870177,851205296919676516],[5388606332577621873,11222822260725933526],[14823984462162852397,14374504332317900174],[4654341202821439317,10000069937629491742],[11602104929368563247,1586174754030768841],[6651034784323394893,12871771076397632868],[12271351128299270065,14000810253077652472],[3849572189135597950,13413993711722834638],[14035976118820210721,2734934736684191205],[4134443429269434128,11537521638774495618],[9305187497086862154,4393023246818519741],[10025934964907361507,4336191787835087175],[3842870656218753127,9507295659967183864],[15000840304680477585,3656197583767648882],[12358621638136624910,823404856903751571],[4680614482205510452,6685306188604593519]],"quotient_polys":[[10137541429344015433,3427514616623841913],[7599678287660529681,16402685688198475319],[10280280249754189737,832330158247310167],[2976249428238506467,7117125489138494849],[3472014603549123312,13155120243474827090],[11459552915940578498,2914143918623108304],[2539172442733119963,12612419852483013374],[18446744069414584321,18446744069414584321],[12910308767832658233,13742531037776780726],[10082531792948134495,18333883449223605421],[18398381977864824306,15393923454655717760],[11220451281274466857,8963723840151550200],[3110890483124843719,13438357881982265639],[9366422892016360209,5990052499154370134],[4445679077648937804,200795967727423947],[18446744069414584321,18446744069414584321]]},"opening_proof":{"commit_phase_merkle_caps":[],"query_round_proofs":[{"initial_trees_proof":{"evals_proofs":[[[15034545801107465666,9328134685786232648,110829080910733876,4250821939350695176,1394630806331531697,12201247022097191778,16228921593346724793,5540981308967052515,16262683837062736705,3444943174443116075,14321882309394080023,11976399724076258415,15741084224719728653,7167218740187920267,2108479466400960879,10523500992781693864,18084559524611127881,16392309362668639626,9910431870163626642,4306965461073664163,8761340433466990759,16828932137000128833,2348349595557829210,18309601238814102288,6690141621618686419,7896548919369665043,12130437762899715305,2761456977705156545,14222367477428627391,14807796117787670576,16218927186002388767,7877082550245093306,7861505246478234400,6642657046293066409,567443057547927936,4962531988520098681,4454913783121034017,11032692175451594665,15818464105310318903,16889379664350046036,15583177082558352958,18416173649350290030,16733021994861153485,5457109531204194878,5211202449828449170,387397703287744593,17423970546079450668,5331695136917034168,5204602975018287532,7804682123145551743,16184475773898398161,17806383633492102915,7806008025234779015,15596547216666649128,10083322942939404535,12021095180947227158,333294063486744879,419406305018384698,7930166925575659383,11941804889882528314,7029051446847328676,10870358600754106564,3290908671307159311,6033256737686447080,16428444435506081682,16034886258387630270,6265258099047416323,5155332694710747095,5556269241720840184,1407033520462800343,8788279239960369908,188529423317695704,3606487184992817701,2533317928314692800,16029983803978270205,9937287719837361600,7652762612315253552,17700302266760805118,15472687335725666131,6385298406622369122,12382980318690581425,7179451047645296592,13902948853468039715,11531705951801209834],{"siblings":[{"elements":[14107875915397983130,4898796723405732069,8183032881835579560,10330461968446653528]},{"elements":[608309216059009087,15657505314169978897,10976396690985755658,16681478498527425210]}]}],[[10590361711545904926,6467492479015847751,6498300686270535597,11235217016121196403,2050901983807334484,110829080910733876,457242200587969681,2508144184395304165,457242200587969681,110829080910733876,2508144184395304165,2965386384983273846,11881551527102582958,13252799754300043757,5542346299697481738,12941079563792721653,7629536697092816871,946522021654598871,12278464848326872548,15635598563846490229,5829216383525741455,4699317963129637005,17140824973063371511,14528036162963310089,8438916954361851857,110829080910733876,13912447523740429868,3904620408687697404,13912447523740429868,10858094054096997470,1129321940144333268,15512231662819526723,1215549820600439430,3458343838277692402,2903272703156588727,6649801311208103544,10630545905148286914,5177893075383648019,1498880294391033069,11616941586839624703,18206644320516320506,4747450833104484769,14768049486874569440,14037397727859129226,2645876608246238685,13180997555396826036,7271099602821356640,9269412218528362283,4487839141304141996,11836427138015445663,2400175033297146545,8041667181982169897,7238299764299447244,9109542469240195000,11538605155690031110,14777857662292006784,16373952745741192265,6449973465824329538,4872432625908382346,4727533735447793884,7377811649585784188,8790483486939521102,13822336377080202315,11324433051905664726,3883933170046591917,1347850836508112699,14774786343624762725,162550115389646241,5198535412457955594,1810879615721090595,14529292925087437104,901573947567293056,10398930790373150755,2440334104529491862,17181202655789893950,14929365801843940792,8870021205360466355,5714791681228629465,3834323554628492897,6711030840184034546,11281595561079380425,15721973904010260697,10537732998263177477,681925608398007009,18125046351628766408,2921797340631939475,1659393951957676651,4583079679507530593,11810555073590278097,16256144961183589074,15518167787841152639,2480463166045767428,5082572631562647411,16111515311953055863,2390065558855966886,14275533876396805542,3921382209782463383,5743265965284400903,17469830917999768495,16572716749928881552,17813468024803325027,8083084680750935408,12016785000603048107,11669045793692424204,12696375324439579180,12646965674726689285,2060520681933962166,16163008826279362177,8578621219445781658,2119880391859457420,9685741318322805911,12797568880876578858,14335363283221448753,10471668531838958757,7057428691420713199,16445403751963552397,10777132041965659341,7961496270085302387,194286872592472848,10404000052706966856,3333947120896600522,7849470502408677588,6337231606403825399,12282988631151493263,7617558447599872869,1845648988468028904,5123652400347227722,7578591360549995288,13839756351623329299,12296124092835508116,4448810410722431067,4473975626433411615,2500186167623149551,1012548268544035707,2726071433488304004],{"siblings":[{"elements":[14311481270996416571,4201960485605959975,7717021996621825206,14919681022557420509]},{"elements":[5673898759496293924,4636452871475736473,18104237363360020046,14791632146812083222]}]}],[[17785072076061664511,993741286788086326,7865916735404912455,247760509458695932,17748501974684380912,18110815466739453174,12568880596071824394,13806593611340548873,10488818944467126014,117026882898941462,14290703128354822274,452927647305573927,10555988498411384076,9428020669565985868,15880164876549719241,13188644033285038713,10531941623516941933,876506558037732753,3924217702418299143,6638842188140107254],{"siblings":[{"elements":[14469078809657960520,17088512888237620162,6633511284776989343,3355871571932375762]},{"elements":[4359409371571848320,7871270597332206518,4059018556858203473,18371896080309768692]}]}],[[3876021983055603347,17877184788649392956,17680647657185895658,6181834104039844669,3371382644185686620,1142312022162514913,11845989967580790536,0,7673522442369413322,3160812974839565686,845684151449360758,17608873124659321556,14508968750587345766,13274894557570404510,10166143021451461485,0],{"siblings":[{"elements":[1950321560811089404,7232985790317798934,494018737240041275,4691567852527047191]},{"elements":[11078016210390383970,16414038468917578171,10484699400277887896,8120437785266156526]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[13874923908060168686,10300199960485500921,17220223416712727809,11107917826713906228,16080860504613725480,18134296401397245731,8194394929420644964,577158521334961706,17558309524404453886,7462499894769427250,7806442614678325622,1288552523294564736,5928745459609368726,5673755939833451559,1376743317442148286,15198933849581950858,7573015836263811984,11548290280681219346,3048586463663642501,17924736790130764569,16176421463462789125,7400032287983233044,15731792546871809470,7943532610231399071,9191667656456693420,3262984601497837521,11548794947560432383,16935173460323565878,13440064921123574122,13006542764524135817,3200332762477917120,4727549247137829594,10132168364538911488,16818212172973425485,10153429833011927584,6098139687959497779,14527559769504347610,604659360669510816,10236113364972241143,13365343744988800826,16324715386374244920,12941087553157892178,5845088838124668771,11302395006148649007,14757239247984955116,7234202237939122814,14532807582245635211,1889883654052729616,14382821135875337196,10933403972710030353,10477969708791190600,18158356374030649371,848649292582758684,1386127699829388770,14693104195570201077,8557418020926389248,8465103855599324974,7678674795737258990,7968512843367564125,15134518985828235175,14849136868521925153,8200859219989098311,3125736942597523248,16341012296276127126,13668079212165384181,7587065128463574204,15516306994332084122,16992631783574963080,300488920541911522,9606976928846938977,10676817243288232823,13557774887840421349,2050879513960775803,7921519393270082527,12510688718189386154,12160967257524916705,17327790555543273617,5585739159986358700,13436395299212415907,17518943154379265640,45119396072775821,18248002885183339956,17650535637853523767,10046834664009893652],{"siblings":[{"elements":[8321586574402928751,11350831215799910769,1895653507085351149,12216094806571370138]},{"elements":[17728593759504001074,6650774988450794345,17384983616442277651,10830012975394552271]}]}],[[13988798512629653300,76253716425328447,9720388670929796746,1548769052874448837,10678972000872081822,17220223416712727809,9794176158596115729,2026404090053613230,9794176158596115729,17220223416712727809,2026404090053613230,11820580248649728959,13544866904491253671,1508524044049341257,16177277620117888502,9218068684094851193,7460625435618660115,14581023455585331717,4191273768828006679,12831902645852406743,10150234971378278442,6218710481120351195,13068904388938032076,14349008165164964017,7220820517938486827,17220223416712727809,2621060787227244695,9841881305165731522,2621060787227244695,2498234580914276602,1948421200922764046,9443027978162861716,6994897205817072798,6746497094135840902,14564511350746964211,16831736954435400569,2056373989216916187,12734170832192348800,4208322013663975627,2143482162082291677,10961739692902972349,16585828242741371314,12825332321073349918,12855224242854740518,15289131615815431715,16178865082648242669,6126770563456215444,11314967831051162149,3092712508609066402,14135477514485499165,5151390592540432830,11079589504367893985,4554275035609406280,759087744066793013,4716063733036944965,6328687062166235053,17122492330897146813,13403494676768996262,12165046964736682786,18171768242706016850,4499889398292721615,7639546611040194883,8478711167005028192,15548889025473187202,17829909962550759611,14731588264574577805,8938845596279872123,18321151717924116238,396475399073735456,6880860411668657361,17737202206394749472,8246190175691935529,16651904759104102344,16514590622497487494,14031106047687609343,14375777772587941665,18377248783886467451,10851631974779303762,7085234990686355333,8291914806463373328,7994519542791730516,12403577213146922612,1022843831225411504,12558853282718754101,10908306888185908160,896526436403640225,10927710552230741681,16216487141749341667,12216281139627206753,16224215395098127712,14815843269543878753,9810155420256072347,17703231211938946551,1214139682251219756,5521982296862822201,17218944837144903256,587004852284780707,6924610381785949574,727072259197312807,2427909203453611423,18437579200906443397,18265119955007604457,6497984190564580527,9833062871853791402,1710404546114930790,12025024772491311251,3615092381076884992,5312080124122607782,4744611673253563719,617785055946958333,4109679415990489410,17142601226805912522,1636577031909725305,14081177065677875855,2352124489388707931,15165060059756231778,3540697799400848549,15680242045861976924,11593685844168731596,17198012484597520858,12736666725130690089,9237016735828810625,1933058368617464806,11463052868591004800,9197603278783016781,12167701639262605768,18217540706334970371,4734585903824064381,7609066652971090719,16043948255073396199,4330786213873974863,8942602438630819466,850388319733276359,2401619309511840252,4429291596726907249],{"siblings":[{"elements":[3517731961418074301,15643631915143809542,14704079555053427310,8830626570097046551]},{"elements":[13906333527976971193,9910594232029521532,18227550812091777639,16164470906364818327]}]}],[[10698760992492616208,3084888054791991715,10504979538322072085,8672062314095562484,6538563662751432544,15414676715999535405,12668798161168817843,11732351557754657681,12506388983667251260,10615541933867894029,5076084454517619357,9711770352882639553,2132643363314560060,2389496404696519187,13998888976360429267,1523355177437193668,13885000321591115164,11688271530861571248,3492677459371171696,12564933426684726269],{"siblings":[{"elements":[7263551833103530413,6200736473050355321,1039316657339326374,1927184996573515931]},{"elements":[18228550423246657161,9016844207652041195,6018162798259459120,308819794068585281]}]}],[[9784294101061869642,9137203227838832491,6318193091794681542,15400317955513858394,10947340765512471904,16048632134224818483,377862090980006891,0,2921978985236500424,6626571352099380300,2040319358899837010,7147995217373255896,2982076959904495834,11952814429347424958,12559221845808852137,0],{"siblings":[{"elements":[10175556547943464837,7571288498428198039,5870773167665888501,1004468409750934851]},{"elements":[7102873559898376976,5794705437901675967,18361944348361383610,3734242435928352435]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[13874923908060168686,10300199960485500921,17220223416712727809,11107917826713906228,16080860504613725480,18134296401397245731,8194394929420644964,577158521334961706,17558309524404453886,7462499894769427250,7806442614678325622,1288552523294564736,5928745459609368726,5673755939833451559,1376743317442148286,15198933849581950858,7573015836263811984,11548290280681219346,3048586463663642501,17924736790130764569,16176421463462789125,7400032287983233044,15731792546871809470,7943532610231399071,9191667656456693420,3262984601497837521,11548794947560432383,16935173460323565878,13440064921123574122,13006542764524135817,3200332762477917120,4727549247137829594,10132168364538911488,16818212172973425485,10153429833011927584,6098139687959497779,14527559769504347610,604659360669510816,10236113364972241143,13365343744988800826,16324715386374244920,12941087553157892178,5845088838124668771,11302395006148649007,14757239247984955116,7234202237939122814,14532807582245635211,1889883654052729616,14382821135875337196,10933403972710030353,10477969708791190600,18158356374030649371,848649292582758684,1386127699829388770,14693104195570201077,8557418020926389248,8465103855599324974,7678674795737258990,7968512843367564125,15134518985828235175,14849136868521925153,8200859219989098311,3125736942597523248,16341012296276127126,13668079212165384181,7587065128463574204,15516306994332084122,16992631783574963080,300488920541911522,9606976928846938977,10676817243288232823,13557774887840421349,2050879513960775803,7921519393270082527,12510688718189386154,12160967257524916705,17327790555543273617,5585739159986358700,13436395299212415907,17518943154379265640,45119396072775821,18248002885183339956,17650535637853523767,10046834664009893652],{"siblings":[{"elements":[8321586574402928751,11350831215799910769,1895653507085351149,12216094806571370138]},{"elements":[17728593759504001074,6650774988450794345,17384983616442277651,10830012975394552271]}]}],[[13988798512629653300,76253716425328447,9720388670929796746,1548769052874448837,10678972000872081822,17220223416712727809,9794176158596115729,2026404090053613230,9794176158596115729,17220223416712727809,2026404090053613230,11820580248649728959,13544866904491253671,1508524044049341257,16177277620117888502,9218068684094851193,7460625435618660115,14581023455585331717,4191273768828006679,12831902645852406743,10150234971378278442,6218710481120351195,13068904388938032076,14349008165164964017,7220820517938486827,17220223416712727809,2621060787227244695,9841881305165731522,2621060787227244695,2498234580914276602,1948421200922764046,9443027978162861716,6994897205817072798,6746497094135840902,14564511350746964211,16831736954435400569,2056373989216916187,12734170832192348800,4208322013663975627,2143482162082291677,10961739692902972349,16585828242741371314,12825332321073349918,12855224242854740518,15289131615815431715,16178865082648242669,6126770563456215444,11314967831051162149,3092712508609066402,14135477514485499165,5151390592540432830,11079589504367893985,4554275035609406280,759087744066793013,4716063733036944965,6328687062166235053,17122492330897146813,13403494676768996262,12165046964736682786,18171768242706016850,4499889398292721615,7639546611040194883,8478711167005028192,15548889025473187202,17829909962550759611,14731588264574577805,8938845596279872123,18321151717924116238,396475399073735456,6880860411668657361,17737202206394749472,8246190175691935529,16651904759104102344,16514590622497487494,14031106047687609343,14375777772587941665,18377248783886467451,10851631974779303762,7085234990686355333,8291914806463373328,7994519542791730516,12403577213146922612,1022843831225411504,12558853282718754101,10908306888185908160,896526436403640225,10927710552230741681,16216487141749341667,12216281139627206753,16224215395098127712,14815843269543878753,9810155420256072347,17703231211938946551,1214139682251219756,5521982296862822201,17218944837144903256,587004852284780707,6924610381785949574,727072259197312807,2427909203453611423,18437579200906443397,18265119955007604457,6497984190564580527,9833062871853791402,1710404546114930790,12025024772491311251,3615092381076884992,5312080124122607782,4744611673253563719,617785055946958333,4109679415990489410,17142601226805912522,1636577031909725305,14081177065677875855,2352124489388707931,15165060059756231778,3540697799400848549,15680242045861976924,11593685844168731596,17198012484597520858,12736666725130690089,9237016735828810625,1933058368617464806,11463052868591004800,9197603278783016781,12167701639262605768,18217540706334970371,4734585903824064381,7609066652971090719,16043948255073396199,4330786213873974863,8942602438630819466,850388319733276359,2401619309511840252,4429291596726907249],{"siblings":[{"elements":[3517731961418074301,15643631915143809542,14704079555053427310,8830626570097046551]},{"elements":[13906333527976971193,9910594232029521532,18227550812091777639,16164470906364818327]}]}],[[10698760992492616208,3084888054791991715,10504979538322072085,8672062314095562484,6538563662751432544,15414676715999535405,12668798161168817843,11732351557754657681,12506388983667251260,10615541933867894029,5076084454517619357,9711770352882639553,2132643363314560060,2389496404696519187,13998888976360429267,1523355177437193668,13885000321591115164,11688271530861571248,3492677459371171696,12564933426684726269],{"siblings":[{"elements":[7263551833103530413,6200736473050355321,1039316657339326374,1927184996573515931]},{"elements":[18228550423246657161,9016844207652041195,6018162798259459120,308819794068585281]}]}],[[9784294101061869642,9137203227838832491,6318193091794681542,15400317955513858394,10947340765512471904,16048632134224818483,377862090980006891,0,2921978985236500424,6626571352099380300,2040319358899837010,7147995217373255896,2982076959904495834,11952814429347424958,12559221845808852137,0],{"siblings":[{"elements":[10175556547943464837,7571288498428198039,5870773167665888501,1004468409750934851]},{"elements":[7102873559898376976,5794705437901675967,18361944348361383610,3734242435928352435]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[9720118099857617667,6907118851416898818,3093070796856912387,2235836106412122627,9776807275298159137,4463155122670423471,18049106092813588929,12696594783596716152,8598999163594193455,12036132876534883927,7956960896994515494,248019902995950327,5027583077203714791,11153823857017262041,12283001839736928859,213933753310079164,5989180219774727712,6635268733439933855,16639455780993560759,18042165182356710344,7491622469494033088,12571655204247379598,1506582651816982435,10136387582059057128,1810081575953731313,5670847835698465642,1743109407316299519,6211156965959444929,16520876663818552666,2008530284052777544,16241527278739088573,8018667181643143161,8808137967728637964,7881009893512375363,17936777579534993500,12865838725775282758,8370556967346119698,14392083173264317538,11502310449879588286,11029208386439748604,9202987005551069329,4640056994109975505,2271518247258746149,10051596231907897569,15619149238860026692,17390169001056841942,12125811190947129054,5541310016585771301,17793373452488747220,8813942452273184319,5110527927842800116,4582875774521598260,17677138730719372105,3860380289387333732,3292748589864505051,9225269255265166944,15298732803668485805,8507551972866961390,10682902555234538063,13778598594164647344,4790019403597034694,6086602011629454043,8674778631853683073,7403108128968585391,8515032791194268311,4110126945968375011,1769440711627359864,10648078807328822668,5601302746078787043,17853464202680373997,5676012651936639634,17296680257303941283,1051466731935720234,14381077385498589114,14409254071908532336,5708397534533713912,15814429937280814178,10266941507679448728,2130761593164817371,11077261556718581918,13890119462896028250,12349168555694263847,13485222354589623597,1438319735464843866],{"siblings":[{"elements":[16294515965246207366,9889431618541528844,16148585462734608141,16618130477107477453]},{"elements":[18161808293962363183,5378725722484264021,7687383671526977091,16433811244973155751]}]}],[[10127538253577746896,16397315088477277375,6309691233247695356,14994689443059177744,5997537832511934284,3093070796856912387,13353642756333234282,904436519430584245,13353642756333234282,3093070796856912387,904436519430584245,14258079275763818527,10581548958909357400,13565433966720819365,4892557830904861375,11297530951076201822,10145504546170081731,8805732974585420091,16602374987479140494,946160588292314793,3257966888035396330,17795523947181217600,15956645078348130634,2825828279730804253,10973851001543636978,3093070796856912387,7689622727323455429,216729659452508086,7689622727323455429,4671727006263835322,8755976340624686480,14940787421656193237,8824672457088913139,17069826511276497080,15921301791095147434,988804020161410903,11956281042513577447,12684236217232577836,6966973702148237388,5126683162866440094,11588582752568035375,1957343221759293819,11962868251283958415,15178388750084365944,6911210671217509847,7876512374323469606,586749078258936320,3849506412261967726,429009891332572678,12706097635235497073,12008781943864442256,2042690404649654218,16893658046339461570,9043662799303870263,15533498072449143947,5337473283315328333,296518838138847521,8511562175609488902,10032769994951752437,39545485178047279,7008083159441636309,6828876903914297029,16388706690875216813,10474310918028189515,11492192093825779201,224517722848927936,17940777468114640643,6240509147872329567,8414334019631803799,14339206021849195569,3719347127417926084,1112626075528436704,3312753050051697017,8234904107917736376,9295287285673599866,3602511319602857538,16042492518986195428,13772178647388060008,10626833185282053299,7120925450321401442,16246701639529233640,965784064143614560,14642932570226928186,11434360916850904955,703609304101083674,3440131132421443865,12795576040387178323,15412583825953637303,18236216402167246300,13416471402555648676,8970302898269706208,15645256046116868086,16784858829211760651,5322883767591214418,17351867203610734727,1611657377586734768,13533872148731750982,14278139563958559662,15880589024635401554,16402058059700081925,15947480289398548060,5236620638426269132,5359047435080246038,2783069417564818809,8340403031912728292,7308227567543713445,13114664076687084456,11930790153061056533,3474442203677710308,11615680045539779061,10677756292271235678,5227208655973162809,8280113923817168740,10520831315444158327,6361363019282561836,6382173582638324951,15729732530417226071,16234920038572309497,13963873163764101147,1135953976877136554,15274354301341772706,11701301518243446728,2970815036725812862,4432324204505195463,12007423584013923041,17083270276247046337,9280539510869335219,3674873720015177187,10412230326565519463,18424546253278351669,4636272582752391719,15020339038621459884,11000172160967630572,629896806960344523,18072482365217608385],{"siblings":[{"elements":[12713574046380760609,9805961692872793585,4122102971378149195,18412256971007999982]},{"elements":[15514428744505251117,14504379719601574378,3632924971737213774,16395490620190777807]}]}],[[81231155154529239,13788332085185838762,2547535526162299784,8916126617074044073,16233463604660546932,16422428445913910972,6802421773507722371,1784772599760901734,503175944916314152,16422545938129564242,1663419694421984516,17562396316257773805,1263530597106810624,18297224901035285698,10374903052911862313,11945716775182870006,6280274064442293999,7570448577158573249,2137784598600276072,13120870916519814109],{"siblings":[{"elements":[2139248073710130622,15107916625750887471,14911334168512946871,3490337345753227722]},{"elements":[11401017871127626637,18073598116114047479,5632277518610515708,650460509947357987]}]}],[[17006572594699452043,15941640262416136436,17999545996223383398,8391834731668266296,10930551547376985843,18289248841751685127,12716433609126880872,0,15052920362990111155,3477644741631147347,14944943589852033725,9930325561415368608,14238126426565119402,18320992886033814458,3357841796900166206,0],{"siblings":[{"elements":[1914865825582826287,4858802607113820478,16754277026700494291,5075305786979232745]},{"elements":[6232908927904331152,13175469136321390125,8967740907026083543,3217280414508083840]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[18254225334420079843,8772003796848910518,12275652856241114876,10456656225978629104,4594297269491215535,13262523281343485908,15006356064449103889,5711228853543839148,18160086942283725550,7141048568009784642,2310475694935574267,9467882928327039475,5730725395629234757,8632371305344091233,13428922715938518767,12162991733653704743,15930218933996844433,5610044373071442097,18135951201340008451,7093642372660752199,10073963698704766509,15624682552887982730,2088304618882806827,4729111036639049231,3905365587624343278,12632116364196610137,14951747126266840636,9847996280387846216,2673615651937607488,3264140318484315213,1780891085903278370,14759916291136249415,13050736192270859771,15781419249057074309,14721617219002388219,2363657672718364774,12246167776370133113,1575298408479220575,2641305826390554783,11991642886516435827,17385528487256780960,708944528618814770,14542073354519611880,15013822239210879867,16118812887741350858,5075358827632505238,14278344869194588548,3249284709224797433,685835185504600,11085459332019424578,8255549963909435330,17006589555784053171,1646690280396544600,15982908082807820896,9772332795290666576,10176897823036561198,6100132377382539906,5734642439242583616,17559329266953776985,11242525205873795394,18149791049712947753,7605420838163358550,9139371343693367500,5716445749445879371,6438818403539388751,16785547779199985081,10451897673834609831,808656775105634947,1231456728650730153,14411170257712022417,7434380473063527671,4676789740098154042,5248554384069605993,13574658614220221342,11946000701626899664,13351771771600587674,2652876740962897950,4688372329423925910,14443287306964661360,14883344949568396614,7094464532843784275,13787317827165574573,15288471071033556248,539295333354302189],{"siblings":[{"elements":[14046724197380438952,11174956357335914596,13365787575147766652,7606769774651462501]},{"elements":[7328390293048134264,11928443479975480452,13499502888068976741,6344608598895868495]}]}],[[184100353348879293,13865156546334681171,39858928766549041,10106545199082221032,17561219665431608537,12275652856241114876,12355581258912636390,11470056854929660606,12355581258912636390,12275652856241114876,11470056854929660606,5378894044427712675,4201948982231733530,13753415911550696430,17575299313560534195,748620809355328261,14014040709512858671,2979324641922636612,3112424153830744454,13872967887151186945,10001456971216213684,13711278796042822808,123443879444496272,9249634391496231676,3781100874370501635,12275652856241114876,2183307704313290595,5964408578683792230,2183307704313290595,9561119895260252865,9096817214132100001,3021035903427504534,9582968940169602541,11907493311663610130,181184013770516994,4817679883937084103,9661892018138061812,14298024140716427609,8153168225574169847,4662730885634911994,1373137722989581006,16864248466090689461,16544674418383970477,1476615132589456305,4357286660928364719,16900256537852873373,1869829836676895930,133166698346355890,17386379350937886899,14525923927995645383,17326198145197728432,377775281182029829,5001574981394601409,2242906483384615786,4544024480326889146,11861745039759693790,14000077708196700868,10651855924747421988,6707549556416935857,5400857989461883031,15028144242874500750,15207617961093528580,9506321839375064122,213794282491536855,4750552034460244379,17950740318695853004,3819471905131237296,11645917397181442845,11179119706760207524,16378846970944671035,8581858945549775269,6171290035785189516,12169227061051040121,6474695553480006731,4167436447239655377,17908569181429341595,3304551841462504072,3902030291380795958,12067619502546101153,17649750432800509938,4595350197646877310,3005310045578696318,6701414834378751463,6879111094532397269,13028018113836102987,1696592386259077266,7943522470772365781,4606533261625845142,14420011482775090813,7728962309260783371,15467649311714984383,2025263024797118796,16859799824763365181,1633824213456038262,17935460245546073168,1769918853583689121,7891024607008626393,16203584915416575262,16451930188928924946,10824938386015858449,10188139014504442397,17606227771846263759,8612664093847175555,2094707527301325079,4752882814216082516,373406396195766413,1252595292981831971,3578655260769341308,13834115443803913562,766609903436277340,1124156470091268624,12577961045548863261,10581307417674220697,12158362569079203455,11236411353729683414,16011501241554224288,8110263762751447111,11424155936382897062,4886454578665817990,5967291658595735923,651757741429889776,7877388651353147401,15879269963504727116,1945932177079797215,13964315465057732380,4166351519073055100,15627299862956070859,14791730424694664153,9737566006602078896,10469954834741860700,7051537226009844827,13856216939754480389,7820132227760384838,5065642262387330639,14677270774545371659],{"siblings":[{"elements":[6232410039215266135,13007825802276482287,17469201621719997274,3625317218557836656]},{"elements":[10295204996536602424,13264272328369682889,17753811936117360442,2969861343769605978]}]}],[[6695623509055496106,3856475269410426078,11778057091651762154,3639618084996255614,15727400053400727586,15079554403599304055,1239036252635430545,5067235500751894272,3544080810141523743,17860813223067322342,2214020115670349182,14081996290655340721,5450866511367982923,12046525351166464247,541805334853280611,17525635406173017644,5527860334493938867,13940542350404899435,13994869431157874276,18138548628245253942],{"siblings":[{"elements":[8852904508007499365,6235291087097536436,8321878962752327716,5528684053741064020]},{"elements":[4419531773552732494,3370065519264310320,14051744268342443649,3129934477239029828]}]}],[[16799037282871458860,14861317735359640953,2477438317393655405,16850112924602205945,17193312734585311753,4197464421671095448,593888070249508444,0,2460158867377153209,14073967150699701253,393698587229144042,9897018699562302512,15403760632054852192,569507320599317815,2279572901204912894,0],{"siblings":[{"elements":[16574952103544134720,9848423035457803791,7149039370722168251,15865115470805630655]},{"elements":[14980787586271162610,8399710292919438711,18230020531957475942,16282584811829620742]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[15034545801107465666,9328134685786232648,110829080910733876,4250821939350695176,1394630806331531697,12201247022097191778,16228921593346724793,5540981308967052515,16262683837062736705,3444943174443116075,14321882309394080023,11976399724076258415,15741084224719728653,7167218740187920267,2108479466400960879,10523500992781693864,18084559524611127881,16392309362668639626,9910431870163626642,4306965461073664163,8761340433466990759,16828932137000128833,2348349595557829210,18309601238814102288,6690141621618686419,7896548919369665043,12130437762899715305,2761456977705156545,14222367477428627391,14807796117787670576,16218927186002388767,7877082550245093306,7861505246478234400,6642657046293066409,567443057547927936,4962531988520098681,4454913783121034017,11032692175451594665,15818464105310318903,16889379664350046036,15583177082558352958,18416173649350290030,16733021994861153485,5457109531204194878,5211202449828449170,387397703287744593,17423970546079450668,5331695136917034168,5204602975018287532,7804682123145551743,16184475773898398161,17806383633492102915,7806008025234779015,15596547216666649128,10083322942939404535,12021095180947227158,333294063486744879,419406305018384698,7930166925575659383,11941804889882528314,7029051446847328676,10870358600754106564,3290908671307159311,6033256737686447080,16428444435506081682,16034886258387630270,6265258099047416323,5155332694710747095,5556269241720840184,1407033520462800343,8788279239960369908,188529423317695704,3606487184992817701,2533317928314692800,16029983803978270205,9937287719837361600,7652762612315253552,17700302266760805118,15472687335725666131,6385298406622369122,12382980318690581425,7179451047645296592,13902948853468039715,11531705951801209834],{"siblings":[{"elements":[14107875915397983130,4898796723405732069,8183032881835579560,10330461968446653528]},{"elements":[608309216059009087,15657505314169978897,10976396690985755658,16681478498527425210]}]}],[[10590361711545904926,6467492479015847751,6498300686270535597,11235217016121196403,2050901983807334484,110829080910733876,457242200587969681,2508144184395304165,457242200587969681,110829080910733876,2508144184395304165,2965386384983273846,11881551527102582958,13252799754300043757,5542346299697481738,12941079563792721653,7629536697092816871,946522021654598871,12278464848326872548,15635598563846490229,5829216383525741455,4699317963129637005,17140824973063371511,14528036162963310089,8438916954361851857,110829080910733876,13912447523740429868,3904620408687697404,13912447523740429868,10858094054096997470,1129321940144333268,15512231662819526723,1215549820600439430,3458343838277692402,2903272703156588727,6649801311208103544,10630545905148286914,5177893075383648019,1498880294391033069,11616941586839624703,18206644320516320506,4747450833104484769,14768049486874569440,14037397727859129226,2645876608246238685,13180997555396826036,7271099602821356640,9269412218528362283,4487839141304141996,11836427138015445663,2400175033297146545,8041667181982169897,7238299764299447244,9109542469240195000,11538605155690031110,14777857662292006784,16373952745741192265,6449973465824329538,4872432625908382346,4727533735447793884,7377811649585784188,8790483486939521102,13822336377080202315,11324433051905664726,3883933170046591917,1347850836508112699,14774786343624762725,162550115389646241,5198535412457955594,1810879615721090595,14529292925087437104,901573947567293056,10398930790373150755,2440334104529491862,17181202655789893950,14929365801843940792,8870021205360466355,5714791681228629465,3834323554628492897,6711030840184034546,11281595561079380425,15721973904010260697,10537732998263177477,681925608398007009,18125046351628766408,2921797340631939475,1659393951957676651,4583079679507530593,11810555073590278097,16256144961183589074,15518167787841152639,2480463166045767428,5082572631562647411,16111515311953055863,2390065558855966886,14275533876396805542,3921382209782463383,5743265965284400903,17469830917999768495,16572716749928881552,17813468024803325027,8083084680750935408,12016785000603048107,11669045793692424204,12696375324439579180,12646965674726689285,2060520681933962166,16163008826279362177,8578621219445781658,2119880391859457420,9685741318322805911,12797568880876578858,14335363283221448753,10471668531838958757,7057428691420713199,16445403751963552397,10777132041965659341,7961496270085302387,194286872592472848,10404000052706966856,3333947120896600522,7849470502408677588,6337231606403825399,12282988631151493263,7617558447599872869,1845648988468028904,5123652400347227722,7578591360549995288,13839756351623329299,12296124092835508116,4448810410722431067,4473975626433411615,2500186167623149551,1012548268544035707,2726071433488304004],{"siblings":[{"elements":[14311481270996416571,4201960485605959975,7717021996621825206,14919681022557420509]},{"elements":[5673898759496293924,4636452871475736473,18104237363360020046,14791632146812083222]}]}],[[17785072076061664511,993741286788086326,7865916735404912455,247760509458695932,17748501974684380912,18110815466739453174,12568880596071824394,13806593611340548873,10488818944467126014,117026882898941462,14290703128354822274,452927647305573927,10555988498411384076,9428020669565985868,15880164876549719241,13188644033285038713,10531941623516941933,876506558037732753,3924217702418299143,6638842188140107254],{"siblings":[{"elements":[14469078809657960520,17088512888237620162,6633511284776989343,3355871571932375762]},{"elements":[4359409371571848320,7871270597332206518,4059018556858203473,18371896080309768692]}]}],[[3876021983055603347,17877184788649392956,17680647657185895658,6181834104039844669,3371382644185686620,1142312022162514913,11845989967580790536,0,7673522442369413322,3160812974839565686,845684151449360758,17608873124659321556,14508968750587345766,13274894557570404510,10166143021451461485,0],{"siblings":[{"elements":[1950321560811089404,7232985790317798934,494018737240041275,4691567852527047191]},{"elements":[11078016210390383970,16414038468917578171,10484699400277887896,8120437785266156526]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[2981378304754394248,17294425859019899488,5495097178942910592,2434773629067817120,14381859418018558167,9144484614969746161,11415072490952100139,5771544633465294353,9657779220672379055,5438456994412536637,12643200207107414592,6987214968852664472,15621004487594728131,15887186508389350490,11429703077911227347,1555320983035820293,12342983464597510956,1721151971762748825,6686736854588993319,14604830922575251990,4973761076371083728,1898767195310094849,16572729270203977145,16292509486847123278,6956931455735975241,2594250794135405162,1496020032490744748,11217850761024229958,9228370296094482207,12243405326392877785,13275748543848781674,1813335873883020498,877226986228825447,10752886091866738432,17545245901937676907,387832811290315942,3293170022147285653,10684553461035510153,12218700078866248864,8849376437319360692,11694761466190763465,12638603459987671163,6775818988674452074,15150402107598468021,3177806675025742903,392913243407254318,17159866653110642873,17582899527776021730,11408526068585385530,2600749880673817147,9260327115886749280,10391335369659247282,16902891662267525166,9400968035705469449,5718801599510914475,9598240703334722090,1005928392242417366,11356256834795522466,6465052781254919651,5392586007851921161,17157340750148134036,2084925749293814428,8879965415396668090,16431412192839098540,3195634102903031643,6839081243096090637,14807562193555193335,12681854598294316242,17318692263126481628,3031842894733573747,6081004964115210768,12005175970589167392,3218991306209329294,11437626905964344073,9118359933684856057,10613268959010198790,18059105193303388716,2703911340013550242,8009782073422058388,13426645715014884534,17396958375383482529,9714622499629802944,2559776249118675123,12922931101810206077],{"siblings":[{"elements":[6835977814218543408,1263577615951433585,10078229402860923904,3832086712508612705]},{"elements":[2184362331170239224,940371620984881836,4930719422694198068,1632196321716041953]}]}],[[5861510461696317790,11713819115030107149,13619986345995273642,10734691969379328197,9492386595246112784,5495097178942910592,10790324057111807829,1835966582943336292,10790324057111807829,5495097178942910592,1835966582943336292,12626290640055144121,8047721488773232690,8402841159211253593,9261039610992015760,11436460992288285759,17908434550131585294,17622218482403929882,14919328838644779731,18423027272131634257,6499707754744964194,15130106660846807978,13868582346105651989,18193221705235975235,8641803793639040213,5495097178942910592,4657316947222936305,13299120740861976518,4657316947222936305,1621749939482501244,770265607132408667,16597607401702510030,11283321608159344209,11285261533355591321,9527080756989410467,12989698462223270263,14204049468336898171,16165391984226597272,8637720693610288923,14661964686703582272,11662487706215040980,2344146149802321482,6931905540577180690,7446927616007912775,17818681973769235031,18229787188132544512,10997732918912712060,10794429469704020060,303319084087160256,2990313280731088551,14836264697127645400,7022102193686352643,7953886754610891880,2150984333913025395,11544950442947805446,16046659880394374578,282718062568404659,10723066862093060141,6986523716499349125,8980904574074545779,10268225218213621097,16022799904443332352,2749242135439624053,6200105758290859429,7226281380679404029,7633555436699295754,10826705963246974500,10335642785017519765,8174761030759883662,13390627276727403612,1340691561714257208,6850038983032695964,15600695294518191778,17172959671915095813,893434953262401424,16281114779867554578,2269047410759170967,6343373499016054970,4056382637540990877,14454222475383779918,5714846359509431881,16953150429407308421,4871576350218567938,537264772629464991,16031097163357181706,4036967876926796472,6347368904950649188,14135425811492616888,13139024194487782711,3818180889893842814,5593593565488117397,14008800437699638571,13141759823926591634,2072855713896309271,10295458055253408040,17841899464112965000,15797165573123685937,1509173014513414338,12074263333527239144,2516063687125657402,12499793264475845931,17745439915785303958,17072284872587759274,5603726027335063616,14835259284754155008,148259773203131990,16717408791558629263,1653775399991153246,8569538144944442762,12641128681910517240,11544538168776169768,12119693716437187876,10734413192314912817,5871331386099698226,1634417094340478385,11347541655184428921,7984824763765759560,7780934467469153531,765999228291961966,13027113596104629598,13232445672252302569,15487380705086575765,4426397393273453034,14237217213869079752,17700054626790757355,621954187625899866,4243616713306944418,18078771977705977182,4066946066255277394,5986686376035378791,14417943041578862592,13320070172710355512,13204086623992738973,16133898146518475475,16052876601831132037],{"siblings":[{"elements":[18325547907376053073,16366170982246659688,2929804154867360514,1214956399912043117]},{"elements":[8001705199429838139,13859409494220895514,8636825611379181572,2402042316382225294]}]}],[[12557191246434629585,1108086889465248527,1221974864549476062,163375589598418410,1159438872853427272,8742789177465922127,6463635564765920218,2760517875606163991,3829139372151580529,978966317795662309,10488405804916287432,1501943780297496032,1004602223654566502,1042395347595067686,15475740055062674038,4680808960929009388,6670651247250668278,5098060934423325577,7074333265814124091,1892313074776248757],{"siblings":[{"elements":[5034390179539343939,16872880163481066808,9984446366173922674,17260645953068108256]},{"elements":[14156205204524098501,648881000652320985,14335656466020773723,8178534800257707156]}]}],[[12643696511615720378,1900043037164314529,391582036264402054,14790955526769755900,10255797885570326923,4456452445655440145,7457110732943304070,0,17502974164686302130,14434147647403951961,3834816286310017431,9695055712162013867,16108356966278392543,8147566826276966479,1378266995880355770,0],{"siblings":[{"elements":[1532777645289842775,16526665831649998188,12387254413961466862,17598292685752898]},{"elements":[12935275941217583114,2189684888344320960,3854563705387840261,15040446214725177358]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[2957113517849714127,534309029635191400,11544311873258053432,17882777603096976953,14832734722440621137,15934930592501534930,14760340415644908738,5968928275597906994,1467764478271860482,2009382118976922185,8495360564230345231,9001316726400759960,1476228686992828229,9926265546383658404,13708518013943224926,3323385141244140172,128236646007518263,563126779725380055,10710544815496082143,18322692329841349080,4935454013116701158,6105517679507515402,5809925625105293329,10724329006479231394,7215392929036346276,12633157382364529328,3892909400383536253,15905967723289449199,16107352555606493024,5763624939658292804,12822971197090877027,5468279929777982329,17871739753081572991,3405428058622781654,337992362254510078,13705078043166119698,2920441690533620745,4525146002637897051,18309666788251571475,15347705875649550555,2217752593681366765,18190039517815238703,2918841177068674532,11693900813645993518,12161685437561318317,10841669970067038096,16821663833760093673,1111379915033100156,17457617770852883295,2493716186979991565,8892096909459830204,12092029998773332332,4737742107837213983,10667486448634427561,7041791300378260407,16235605865629792199,12124454157766831447,8554194823817536413,10123344624443999171,3719464704114399526,1852291261948245709,7395622727472578340,11788503871034458814,2210624982014450562,1685999208823125948,11122373884830477538,6892391871763264000,13495033894710099235,8247149182531434849,12381029035073056251,1903453838714728063,9093795306938195559,8048800776126096016,9146017383512717520,13846881608659751976,11704297841154285416,11429622801686750329,13748299616283334071,7681621835781065820,7990061028613800144,9864223101603136716,16243622272869597474,6178613610167304399,5903143289022110685],{"siblings":[{"elements":[8832389127426069113,6131364286917185572,18048574911583960267,2163811129510967340]},{"elements":[12080961203814882388,3507164343688256046,217812273724800610,1252946754184999199]}]}],[[6187766128046441829,16637209301529445836,5986576867832645474,5922508019418421225,13024012733771890914,11544311873258053432,6210682176616774155,787950840974080748,6210682176616774155,11544311873258053432,787950840974080748,6998633017590854903,3570316141473543079,1943958605314396905,10012081067387175718,200135141029109430,1606688486842780675,5820930093413040774,17509314506128466161,9790027289576767334,15366548375832808996,14786056233877230488,9005494907928687056,11206757380457375960,14785216876155790554,11544311873258053432,4125056665306141884,463529472047348117,4125056665306141884,10848272876028751353,10489293662354674460,9840627866261471554,8760301363947944309,12436788214163474656,12162445533604174369,4641779691962012860,14290962744495491524,14603819910351056481,3581942472941140804,12162439553350628665,15360440997232862807,3345499793346946965,10659041795656156776,6456922015436530220,7092823725420751510,12623532074738499020,18875304311094731,6571719940573427938,3713560266347595562,12395682377278584280,8286981031646296110,1154665288160202273,2615624649935557189,4218899092448517100,3701380497663798802,5442340759908477206,3536390696218620675,7023214025948903247,15227668798241529446,2213699054839117061,12499528351979889110,15436117670064463049,1608563158385631682,8027804073737091288,727351301626253057,3907441864946588385,14640110801260533133,6872658797796774942,2549418678947479395,16206149660994701994,3406469869107928585,8535732365763792506,3989750107491371324,14138311324097500082,589493845356780193,15906224454643410077,11027800454373938688,801409311039359302,2253747981612168453,10964883184328692247,100451497126742636,12437443202817183106,17472637185780293340,18194565832602603547,10174383473030179576,2051335116486710384,15544141683221798716,8573231947314422590,16985842955076178707,15370338645100846421,16849835302258141136,4901875136230200497,921457640403058815,11000130208360453061,5813803419095504633,3315072954495503238,911606307560010812,10433009819612042023,2554151131254948525,11247651751131640956,16166950492447762244,10680491820422109990,15901973788078735241,1382180046724549077,3183786581747146552,17697888516455301726,16329696358798189448,9010504481955775056,9516962715434021530,14612713247187470197,12226491450154831611,12414910653309646466,4785911206589617380,15303424953973325883,13481906293956861078,13680648795977347332,14887549806036031812,17604090014004185050,4917548402019381930,7693983817510042471,15046259598927765094,5866455520921265789,11273520892964518390,14627176346756110435,11290828999713261086,8925281728085521215,5469901212277294639,7496825047880373200,2528402610082364956,3660515735724586607,5583026199400217829,8903714959695549915,1159177440670368470,3334508865887652368,15726690606425682166],{"siblings":[{"elements":[13464730518151764077,14583257702327574163,9271441173660870474,11158534083718624774]},{"elements":[16309815517466357069,8510292391200766341,17673219715638047263,11467102716297814818]}]}],[[9060977665440604273,10027552640135290426,2799080757703150530,14894914322379659061,7660713294407500354,1803155524926314437,4424677487910650243,12698940450839451967,8181376997541351584,8922931551248940622,6461036366206726792,17651950904552271883,210554361390159443,941392763699484177,473957984774065904,1541372654049837982,1962561552937683738,8120916818858829800,4385546586624398265,9932743748708723826],{"siblings":[{"elements":[6895347304360288912,5774648020166790174,10463284502844539400,15375706275817089772]},{"elements":[16797056608379864644,8931178218740982433,7364886258755014106,5391368024239178414]}]}],[[879306166419150818,4615160352550806538,3179857122778292939,6988499023064880208,8103033194379355365,13368597490042889219,11350860331652963332,0,4071173422972594856,7395130407499413780,7880068322735498805,1759917902724075412,15772062421094746255,13343144832902701520,11996962865214726162,0],{"siblings":[{"elements":[12523287424936833850,3038258695463984189,12682936203093512568,8887538047431254689]},{"elements":[5376015545114290653,16470824010864277112,8736431771255778341,6197148165205381424]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[15034545801107465666,9328134685786232648,110829080910733876,4250821939350695176,1394630806331531697,12201247022097191778,16228921593346724793,5540981308967052515,16262683837062736705,3444943174443116075,14321882309394080023,11976399724076258415,15741084224719728653,7167218740187920267,2108479466400960879,10523500992781693864,18084559524611127881,16392309362668639626,9910431870163626642,4306965461073664163,8761340433466990759,16828932137000128833,2348349595557829210,18309601238814102288,6690141621618686419,7896548919369665043,12130437762899715305,2761456977705156545,14222367477428627391,14807796117787670576,16218927186002388767,7877082550245093306,7861505246478234400,6642657046293066409,567443057547927936,4962531988520098681,4454913783121034017,11032692175451594665,15818464105310318903,16889379664350046036,15583177082558352958,18416173649350290030,16733021994861153485,5457109531204194878,5211202449828449170,387397703287744593,17423970546079450668,5331695136917034168,5204602975018287532,7804682123145551743,16184475773898398161,17806383633492102915,7806008025234779015,15596547216666649128,10083322942939404535,12021095180947227158,333294063486744879,419406305018384698,7930166925575659383,11941804889882528314,7029051446847328676,10870358600754106564,3290908671307159311,6033256737686447080,16428444435506081682,16034886258387630270,6265258099047416323,5155332694710747095,5556269241720840184,1407033520462800343,8788279239960369908,188529423317695704,3606487184992817701,2533317928314692800,16029983803978270205,9937287719837361600,7652762612315253552,17700302266760805118,15472687335725666131,6385298406622369122,12382980318690581425,7179451047645296592,13902948853468039715,11531705951801209834],{"siblings":[{"elements":[14107875915397983130,4898796723405732069,8183032881835579560,10330461968446653528]},{"elements":[608309216059009087,15657505314169978897,10976396690985755658,16681478498527425210]}]}],[[10590361711545904926,6467492479015847751,6498300686270535597,11235217016121196403,2050901983807334484,110829080910733876,457242200587969681,2508144184395304165,457242200587969681,110829080910733876,2508144184395304165,2965386384983273846,11881551527102582958,13252799754300043757,5542346299697481738,12941079563792721653,7629536697092816871,946522021654598871,12278464848326872548,15635598563846490229,5829216383525741455,4699317963129637005,17140824973063371511,14528036162963310089,8438916954361851857,110829080910733876,13912447523740429868,3904620408687697404,13912447523740429868,10858094054096997470,1129321940144333268,15512231662819526723,1215549820600439430,3458343838277692402,2903272703156588727,6649801311208103544,10630545905148286914,5177893075383648019,1498880294391033069,11616941586839624703,18206644320516320506,4747450833104484769,14768049486874569440,14037397727859129226,2645876608246238685,13180997555396826036,7271099602821356640,9269412218528362283,4487839141304141996,11836427138015445663,2400175033297146545,8041667181982169897,7238299764299447244,9109542469240195000,11538605155690031110,14777857662292006784,16373952745741192265,6449973465824329538,4872432625908382346,4727533735447793884,7377811649585784188,8790483486939521102,13822336377080202315,11324433051905664726,3883933170046591917,1347850836508112699,14774786343624762725,162550115389646241,5198535412457955594,1810879615721090595,14529292925087437104,901573947567293056,10398930790373150755,2440334104529491862,17181202655789893950,14929365801843940792,8870021205360466355,5714791681228629465,3834323554628492897,6711030840184034546,11281595561079380425,15721973904010260697,10537732998263177477,681925608398007009,18125046351628766408,2921797340631939475,1659393951957676651,4583079679507530593,11810555073590278097,16256144961183589074,15518167787841152639,2480463166045767428,5082572631562647411,16111515311953055863,2390065558855966886,14275533876396805542,3921382209782463383,5743265965284400903,17469830917999768495,16572716749928881552,17813468024803325027,8083084680750935408,12016785000603048107,11669045793692424204,12696375324439579180,12646965674726689285,2060520681933962166,16163008826279362177,8578621219445781658,2119880391859457420,9685741318322805911,12797568880876578858,14335363283221448753,10471668531838958757,7057428691420713199,16445403751963552397,10777132041965659341,7961496270085302387,194286872592472848,10404000052706966856,3333947120896600522,7849470502408677588,6337231606403825399,12282988631151493263,7617558447599872869,1845648988468028904,5123652400347227722,7578591360549995288,13839756351623329299,12296124092835508116,4448810410722431067,4473975626433411615,2500186167623149551,1012548268544035707,2726071433488304004],{"siblings":[{"elements":[14311481270996416571,4201960485605959975,7717021996621825206,14919681022557420509]},{"elements":[5673898759496293924,4636452871475736473,18104237363360020046,14791632146812083222]}]}],[[17785072076061664511,993741286788086326,7865916735404912455,247760509458695932,17748501974684380912,18110815466739453174,12568880596071824394,13806593611340548873,10488818944467126014,117026882898941462,14290703128354822274,452927647305573927,10555988498411384076,9428020669565985868,15880164876549719241,13188644033285038713,10531941623516941933,876506558037732753,3924217702418299143,6638842188140107254],{"siblings":[{"elements":[14469078809657960520,17088512888237620162,6633511284776989343,3355871571932375762]},{"elements":[4359409371571848320,7871270597332206518,4059018556858203473,18371896080309768692]}]}],[[3876021983055603347,17877184788649392956,17680647657185895658,6181834104039844669,3371382644185686620,1142312022162514913,11845989967580790536,0,7673522442369413322,3160812974839565686,845684151449360758,17608873124659321556,14508968750587345766,13274894557570404510,10166143021451461485,0],{"siblings":[{"elements":[1950321560811089404,7232985790317798934,494018737240041275,4691567852527047191]},{"elements":[11078016210390383970,16414038468917578171,10484699400277887896,8120437785266156526]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[3105268577218919683,11989912106583026105,4277456366353513620,11137240172336086859,18349201232108609543,15273013952608518976,6704822519098359798,9050015166762925667,13226842686320519153,3347193472407645136,14960021788921891982,6062915076509555002,16799974262098921572,12277857055411791901,3201612051266975795,7382115164084804607,662146889887619116,13016842780887284098,3444811500233607939,15511441150823011242,9780556256131350880,12462620422518845672,6163736458104095804,12629343512035302775,410370606607622247,2132753877292689810,4842492237437399962,15053266348599923372,8239677878365373096,10993952151908376893,5375098356009186532,5720871005245331333,2190160153970881202,17635097469157341063,11337048257262422953,11433695949589795709,1252469900929234517,6591384140304875568,11305363300565636678,3548799676198027661,360948816514830994,17053653383707475671,9016758549240127687,16719006551341042080,18087881259038337828,12496684250686477772,11206483302239167954,2219634723706551584,5367363549117633394,10133029030119024626,11413555469778317536,16680679628030068736,11212520980057922936,16594017827355991948,10531739857082687251,2430412201132474245,7463275843194444997,15716357615649118109,14668021757551569881,6248568984062016809,7536808108301062106,11383013220707643264,3085811368877815492,5611202298845305436,18067080004557481926,10986776116052097463,11888724840386683571,6373548854931797506,10763783748826365655,405435378230429633,7715266384065309384,10539967146555409797,18403083751685888255,14219651521703164141,3823542448565172700,15974999712143818506,5852041549888251460,3399245960160961247,1076541560644855318,3099393187520493392,5549855333064892703,17361777203301722675,6477943894625696788,750182178165592683],{"siblings":[{"elements":[5425364553312560299,11537798991506700872,5015953739612256619,15826017064500090616]},{"elements":[15569594249511601125,956031005415651622,9670184325097649857,16069782850068809130]}]}],[[2879513735513739429,994299828695178941,1585596748559221593,11914602724680674780,3807059785668497986,4277456366353513620,913629680776207250,4720689466444705236,913629680776207250,4277456366353513620,4720689466444705236,5634319147220912486,6021432992260096772,17379177844709113555,18148389716978836646,16086409619140778226,5561421469775701799,10737090890048392254,16640090887050047542,10338127824406836382,427514973818059446,6898494281116593291,7876038991696360585,7429905847524102033,15989327760886530208,4277456366353513620,7897592305137563609,5440175996609509496,7897592305137563609,15615498811104146521,8763023278943770359,12094583620031157503,9866179977770847747,1139582433066975912,6914861059940787973,3645459706818631990,253608244444498730,9865313422699807597,15998323436467822822,5645659636913978640,13961812535297334411,5340070966498700555,307005429536758436,1286163319256780481,6058032770838451585,17272243230435409580,17369398293348642232,6158043189624147927,9708925955789211418,2790956839591196168,4138429296095107972,3535328407368277795,9700135768842174734,14319448145147282097,5881964376254836102,16711696053928320405,8498470451708153560,4922306519501733665,5403924585400744194,1769543598813232880,17460763794129666485,10387565085847724445,11591232742567061402,8003502727671701281,7632934201367840557,13979327468251353427,6486363691816042793,11342745268988153639,14098728287839280305,2178870046227241566,3483795873055764607,17443152305351061577,5305966124689838106,8624589050824803220,15809000059948617052,8102549516373065848,9896973536687845728,17046125982790774617,8199651181304142433,9336801064005548626,9544510767751113928,7524811952683170563,923190170727242743,3576209337232563684,20751220296815597,3770132006122172958,14246130156717634868,7125139312319162551,9814096259339725589,12086810276296916505,6105656054275187093,2162659368083199059,17626340052096547734,4831945688695906665,11120593372181605069,5666586433724345573,16466562864157760960,10637637320741191439,2794096152712308941,14424263854861774376,18252756052167574301,10907767536250833311,1746358447736881742,13783579048639022759,4749906662811750936,8202038189754867132,11868157637501866599,8275096542294687408,12199741612882419089,10385106192363125537,2999054943796773432,6212234577346842074,10095809519972331895,273466366345632596,4712599394738610872,3245476177148798163,1258465224357745031,233715189298476963,16132038213933690710,17483951636993470013,7744314804120440611,9755307473551826170,13822875898275801396,17915295845797304310,6177448900958199179,11323943430685288579,8586833157922900668,15473352249742527417,5434700312390917470,5961109338171990300,13737302363921510737,18026912553578067542,18247360964550724187,13769413730460830378,9821240592270828885],{"siblings":[{"elements":[11450418504506616211,17278388181238955575,11320954799920840864,11299090040262335043]},{"elements":[1040533151601578923,15816118616292883445,7353107187080723398,5335048287076543677]}]}],[[18436873134994699104,2765760054538534389,9309111706854554888,13526182235106470779,1639448531824830196,6739802991455815165,16129461168137018689,3397298042310455410,12578119759355526929,10022048361694374558,651752951789394720,7527737847089470137,17749088045456320744,7704817469132424041,8540509194238024595,8387072645177631386,288292975405847240,14668414383571516826,5595535913707147927,13814169895178089435],{"siblings":[{"elements":[17178441947422335797,6231855797333268908,1786282390581704074,1226511904030354586]},{"elements":[14877691943474638997,17890686887798413768,13957332300951484465,4897853218909943833]}]}],[[18053572586631467369,1280230726666662559,7083005395636071046,17086535957007414999,7648616930257435415,8617927733960858346,6733843007080666846,0,1820868122490321725,13138417964402594663,929904113341389536,1711678583644467336,6553606248147614968,5680882065797510211,133903590387358485,0],{"siblings":[{"elements":[6503383797764222287,1875883959911254229,16363507733609684626,14694297628848234914]},{"elements":[15003440957933230408,9364541467493196252,5007313390468073760,8149918120513618562]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[16924866050735876177,13816519302097419917,7464139112843182046,14437952329152815507,16102384223791600321,14810813990558044111,16662440353177875149,1061409571699162904,7373177684445197294,8117396090517610097,16950522942534043099,15190423556831993418,2013849530758379249,10106276030980799921,4688167895664468573,11199520023691915745,12916963807333958703,8891629328669208614,12116546715121470819,15688770843053582561,14350605526805601296,13147171646478491,15311619194950304883,6242159665686022641,15732692263219784389,13119615053780272570,17283500801830056651,8669172947497892389,5600112933692439337,11603617635739004623,10958013080565881122,6756936642788511901,6350951779140749038,5702398593327775113,5132363453483332176,8716842319797456142,11624620380491791092,3974923074366480131,379613444538228148,10530635117553576928,789756536524334219,6823617666578700574,7561420934971151619,12015542148157684358,14637549114638859077,2797283815309201126,3375500561784065355,17055717231604849835,3707972013117512372,1663599290483210682,6456202370538400436,17451983052281845536,11510162037317562450,9805177456638634146,6076873354448617196,9655526888190138945,2676435616420129592,4185640816350990950,17645109193608274006,13809507359805699769,6654978868455806684,14694826297195400326,12182790477580287390,7828078155477120532,3723899049361826298,12103278845470960974,12790586648153874605,16430188636519558554,12857487921086130134,6350598647806992999,14816410711584616461,9744095875078809856,9425670397198882701,10776752048143541453,8879552683345551973,5102716046529545228,15326394572236987555,14429893580759812947,9222186179475572142,7229097401750883501,2013355818261223436,4799155268953746556,2985183418454777881,17703115347578512655],{"siblings":[{"elements":[16260818643770995991,4039943982022423016,10581615478270533321,6703349476043001264]},{"elements":[14087148344668613763,1774479748128902785,17398878651719132826,6925124511054673158]}]}],[[6209288695096023806,11754821224810616127,1614401657169185710,9181154449473058981,12642126230284430873,7464139112843182046,9476504716966664158,3671886877836510710,9476504716966664158,7464139112843182046,3671886877836510710,13148391594803174868,17495545822936180570,6516191687701385061,15066359775844306552,3030073430126252107,8532181287732933903,1313587481002533767,9493742606884344751,17586085591202738522,6264447597434696140,10877981861721575981,1334618530452748190,10992830512929337081,11521925998028276125,7464139112843182046,9895460401253377382,2970642329867069186,9895460401253377382,16109328827144183626,5497643781745126277,18057142950217783128,14522847474529632700,13097711878235570421,12086037474820255139,6230733845585932320,12841778136991378628,3190325277210246329,1491664684286716652,148002031095872490,1257155954830697150,2420770718573646411,16100497144476352366,2106675872820833925,218278728670810803,2078117589628614433,341091188445453196,4895215051089187126,16337842601121009721,6259784910713888535,14190605946294603852,6539098626808445903,7830616390870530920,16822428877294974674,10102893894732968923,14209786379330379938,10855009487586136434,15140597654258361365,1375687589456746099,10201020788966058586,1728908101569222789,12918241202878528324,12883847894566567679,221714051413769091,6062654389835083725,4770464236727018557,17600367944571616168,16380085720501177475,891641706955494415,4318758021934464691,4558515869586306492,7919362439101658228,16830015098922605767,6893386434790817780,16253125507764647955,5165552683792036451,9699655801784875799,8163094508941873657,7345269500024208647,5161192913695844322,5691823223255311048,17857459491484385213,15182905265162505036,13725918933279176663,14969180915198911426,8167851283476377406,16597940880904810030,15085522102398235017,1932188458993012808,5895149836013298768,18186382947906068743,15443854059314999204,6821367289761224106,921585207307297636,14521370332338096144,9567458359470015266,962036983586204935,634064343577065117,15633725671053459130,15134450685511717877,3993977412179616028,5431260913294195491,12987751788041203714,13118196984385849144,16896172574270096526,17314786986733413771,6931759068944620513,2874434921947727690,6464011890456421655,10839122201233847554,16094644073133247963,11312728599684610361,15467129955427747502,15240547486693684363,3299165558757344059,10897258757856540221,13501692416240673099,2465868526057759935,16657200791062653650,15677148550969248183,10520872540137266405,2526848215015180692,8497622302926869767,13203218526721114609,3206274377006568104,7251698218920279120,4062608499715320317,181200523706944538,6665834494798638239,538973105167938072,12116368697115266565,7020367120134230457,7728589306877813577,6680082688451913681,13312889033346115014],{"siblings":[{"elements":[3091959662085467772,17571289695295820888,5894829594436045533,10045585331434762498]},{"elements":[10312122007154036091,9036066871401853876,3293924851231173998,15291344002345413233]}]}],[[6759056800257447282,18396177709304008835,7707799377628775398,11420607561670603928,1892249039274222213,2714859003830370210,4677749501114317407,13610249451246361570,16888043080685995356,14341074270556463384,7659964319457556060,7748899168303107853,6705607689186373741,4574758948909418614,18148445072724367553,11038304348291435761,10422099210876131554,12973161442718050679,12334146660450537022,5464813747006494712],{"siblings":[{"elements":[9932534018978071549,12220219867622618205,15471373475010629404,7546347704860986867]},{"elements":[5324367363105241154,11972991276670081786,13693754860999015207,12087428420128603708]}]}],[[7588528695988820963,477801822571568256,2545945447082261224,7404425582520305658,16564779897001786854,4559767838103373090,18094565392160207277,0,13622122121734382650,6563709294450341718,5240000350480613829,12473749089176861722,10655260651354830084,12737562749512991094,7083112709274098271,0],{"siblings":[{"elements":[696921929360244642,1435320513774278743,4481537871074035127,17597806107322409344]},{"elements":[9797903964146478349,16764650289818944191,9565340431800858722,15241205176551155980]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[5268519634013649652,12952845650223350053,16768531882050438388,14462689093185687107,18277220295645319725,3852081186223516493,17100627758382860344,9715203018448532958,7953222902470522603,3825331082672791050,5465265629793606444,6176358672966577768,17306807916396830372,16588126998322903513,6467743780679619813,18379340274211873176,7884974251905549053,12613644379350971727,395505592059137818,3588224288551760639,3904668345611071699,3339470090609407310,6216287519318568739,882940143888277297,4162710549574314231,12180761427257355996,1890381727484826650,17010461562491177503,3962332100974049080,7918836822795597611,907486615081043684,1026841857427498009,13046435817655837341,12980820035208013381,2159562618664935406,12030338451283004916,1920968325701278683,10398171293207209612,1574763909011715605,15688152896670340951,558932655124037633,7564549072577692099,17872355376553966121,17450459230322024190,13831731954964285721,10886158955087757835,4398553647749525875,5996830362659087199,5849098922998238321,17078048874655163299,9389700541469394263,9929326601092594419,5714277294271540440,15730025807840719637,2749747243393585201,7119831539676257287,14048939970932445937,7306854533913743350,16655498606991465004,13030518484788664841,10856711318942555949,904125913628094079,15757756965103250997,596940250449274825,1714506698269187976,12537262499547518122,102386843593201426,12854247983785862108,2906655064868026793,15327684198403983371,6023138564887027653,1646580939255352275,6009552509419456655,515341885868353376,17755087942133871510,5837604297379767581,3581712833910489633,16397882613028559999,701121412127849996,12877267663904526155,2349261106082594930,2238087291372346966,106018565186860409,16663491380101968212],{"siblings":[{"elements":[9234506234901857685,930441051602006944,5595362472696224727,836883163510895538]},{"elements":[17200885959217346968,18203122369288440933,1093813852588954452,1807294838185915938]}]}],[[12801899079137100435,4644617254182515851,4203760268706214634,5341943230017763951,6138849682060443795,16768531882050438388,17561022140727661064,5253127753373520538,17561022140727661064,16768531882050438388,5253127753373520538,4367405824686597281,14572437911721481406,751171740133657331,1568911397227005698,9328476919845500390,6556626643597285779,13384410403879642569,13575832712174167511,13446178705846024262,17406700155589523823,5413926130196215975,226569376799179114,552296959425146459,13987939402746715100,16768531882050438388,5161728911392248598,702924244724379377,5161728911392248598,7686587867526412547,13775487223046110263,15475433684247983550,13830456970254041334,2526871905217062628,6776131571028322492,15572476089630018158,7946496835492151424,11903090303536749372,14423289149900471580,8139862492426176293,1121802652055412438,852510397542718596,12637167995840834493,14679798708456148502,7386881768544337469,3055106570855277260,9098675436744690014,3702130735105602072,3322359306980811539,13219311582862607895,14297260183093272325,12956085954941208223,11323213642752018344,14289044999841654360,14920117955189959269,3667982753238177454,4480163795095895991,13414540457771919061,7233458232763568077,10347652420421847238,5720940576366876548,1145447581662120821,8762061362326210454,11895831450913848708,634624826830689833,1834172846288291292,13593980852070479504,10968128489554995371,14010764789756318257,6293125899544130931,3462516977325291716,6790296269648422099,12854899216181858285,16745485788921178480,8129399203703604985,4348045024110151490,16394921933847734583,10583798062097623004,8452333493097572263,11421859961065058126,242691562078153096,3532568941424005237,16959867297455596067,8923575292628039713,15239114643925183309,7928781076571717945,13180605458198843356,6212482027027322350,17423671048824127770,9893219710050221032,9956726498654539347,4366326548977571260,14062188703070728132,11490132547201097929,16040799290220726621,4871464564005925045,4562125716726787878,6067459316709163598,18255499552544155958,8410716229441820393,9842986620601503897,3728629196115285248,949172643711658101,14220314898870285412,12923910561988157531,15560543793043963241,18446624951485698749,6575229000911724753,12574984068013806961,13196067073363906412,9132240991046738730,3706681300530699591,425051054205526047,2913752927757089765,9822477882480155225,8150547223206604080,15228403388531190841,14877173832897357766,7522885474127836449,5037066355241041327,2563700894772518833,7029824265786430483,2497148481711399783,10505371986145073188,5594627438926975614,3740608580352793432,18000815436541870877,7098852060973230500,10915655022094973099,11857728758813560002,2324680056335990518,8710411882429733335,10244773471657262268,4633435133748927611,7795044804922755571],{"siblings":[{"elements":[16847520311838574656,13578415394588802662,3700412213892200870,12349386662778369582]},{"elements":[5672650627284989775,11218623580893195195,791677742975974359,1664938430405218890]}]}],[[15079619390590437198,9125389662476788495,3139939670955726519,17392704992737876960,3509035160048470769,8237358780362968290,6460464385360156220,3387033370185977739,168545959223646934,14250992820719754157,3511183825642569738,3179544178986684253,1766586935148896398,16098273357949919273,3735630240179885909,16979501425513757505,10930268689169319692,14420976637946220970,10872103952755192294,14701062069717336095],{"siblings":[{"elements":[17788304615091130288,689775010867881865,16214533857353246979,1518894274854165020]},{"elements":[1945314271965971852,11029190310194464955,834256103115707255,16524362285752993760]}]}],[[14937219796938933060,18379952926206871118,11313327308395853218,14510511413529619467,12677818951089446968,11246774683564465134,4640574398080722378,0,10737885461351673565,3505481606060423047,11450014057697967775,5523748485460673122,17401701726844320660,3375697453900137550,14629051661665427452,0],{"siblings":[{"elements":[8748881746227216100,12762231996596137639,9515869977905569356,1474393882878635954]},{"elements":[15981538083517757134,8919587827222302308,2154728587501871963,14914506589212157648]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[3430217909794797529,13715012292105753095,17149129451905260791,13366296804138279992,699049416298609888,381124555680706084,12720086397835211981,184816522750562530,2526850830423630847,8075458743275693986,11473812685406665838,9058823084191947996,15248823105676241825,1648425650213139015,7635362025430285785,12715371066928823432,14263617062173108175,11523773671388184819,5239746610556536197,10442841379838494618,15452174458367118897,1223199841746333763,816445260219771662,10186983240865572688,4268550946723402166,3870512996028457924,4930198429725822436,17010869343915798563,18157394098520078427,14389436548791562061,13043481276951119075,2005925057942663069,17366921320141611880,16732255704438659549,13273860163087306338,1625862003127520888,8336492783049558420,15584107241671510332,13011243693635395171,11431670862700360357,1201856787165778135,7444514480519304144,9658398899692550118,17133310124078331830,7966071156358148059,17831008533531627016,2258462907680341821,838333117551688000,15709990502404133103,15805247967600840696,17673429002027506168,2142711675413197011,14542318388913228179,3447819423818562799,6391674214498371068,16455881369831582173,14866672448267322447,14073093490635504591,17165467327069363517,16092116349003766112,430773972620534112,13509079917742631240,4260801221360431203,9689272603902866738,1270640374685680936,5924808469218370922,10687518030715604569,2599250438992209157,7094768166913514371,3025457074664072231,1309791192479779658,5800808558164685459,8193592689686676488,14552016988505788478,8862161343471624288,449575745398624704,8586869941763361502,1400244177096550360,872585710081118377,13481463732948528887,1695748498598770422,6150042556290884133,16420448207004826568,16034576465314606917],{"siblings":[{"elements":[14419406449888381483,8816956723976101965,12067085973342547030,17282885891460544483]},{"elements":[3831638896680269617,11622239582132795001,17114360658120078056,13946956494708067730]}]}],[[9322154256070381583,9298915447726607414,6211700909309924453,13274187522243721116,12776130354906699145,17149129451905260791,8422276395964265213,2751662681456380037,8422276395964265213,17149129451905260791,2751662681456380037,11173939077420645250,12126572889870170558,8563840656267963465,4428457150031590518,13630251491383420110,12780147952262047315,14251343962796158511,2108160714387751950,11404920232125352609,10660268257765535634,7596121331102842990,14938060673647139204,1093638595392282063,6652796766883086216,17149129451905260791,2131654456345527182,8784451223228613398,2131654456345527182,8594308326016225784,14051420455024637463,14337745878283924601,1942072978790237438,3836909626327382246,2532693077648834247,8235589428191026302,11120611407530275034,14015954836981045661,11935089581262481585,16952019268176903091,6897234485289248990,7849819108554316033,6173291398847785673,5460277836870679496,8519137401275758689,184883196954861291,8990527448326605097,10025699571349936723,1493557664418643745,10752618541087708234,6776692080973862869,14851573908424384620,14875391851856058250,6663517347899499259,1057787578783021613,699240894827788998,7247975343473288245,13445572698745469359,12297453983525100299,4657168302234687467,3954612152370786819,16649386921279368140,4109529949503344154,16453397825852737573,10518400286472512739,6750129799405489795,10215470765856925675,9166400046794218514,13135397338281579657,10455771379020032240,17565732518231535978,16173498772941136144,380614095218770449,9442135384726322865,532112445392260871,15194719198513013390,9919219349513947056,8044310636009110033,17533633789105288937,8726282767908002370,16961631948140832037,4940275246009362230,546152817674226786,12849720161133231832,9542825298921586837,8238469240444308995,4178029113525500779,16205899249957816012,956493212245880531,11390321902993255777,503703771027062517,2325064042319739001,15323069447419425338,1028552983047103300,8388181016526700694,2398896553839426813,9349717433158561125,1946309112323953351,844914238916802771,488201364774484232,11148497801694420274,635923929243942049,5522524995921545950,10485690782770224755,11637747710383696378,1826736295147059475,5367509264261071666,13321600350956088117,11749514538726378845,15785435463117234020,1074964262657112829,12109262675228802686,6935193387829803650,17359133012810824603,7568446304507437160,4468109424747621696,310744480900600356,2579912627235345369,11090713705795283584,6534490506751438035,12816425008089545734,5633995913016735776,2023310221170308978,9275147642236515587,9321949897356815608,13865945720568872329,15627292909522621561,9050548506146046913,16498025583541417198,10478970245343767897,17766178442144355111,11654650616248662628,12835517056692115624,7082800746342139854,4448965128423652808],{"siblings":[{"elements":[8119404659243000173,5265541261827604459,4472916974978895628,11746788677482055768]},{"elements":[16680612008794498936,8640953519412144738,10181843617211023742,8267313235995818586]}]}],[[14478101300876821220,10385377098962883722,4492660713764918130,16102362373083595280,5666436387049180041,5896003504312180401,5833126470045851214,8180281291161807370,17194412764412859607,5521598444774470730,15082581768606045150,8603784172261635569,5858447224261508368,13343782347812923182,12712847952668858867,16211631899098508125,13048888496825187100,16001905847770027040,13555264721702702071,10464598589579141728],{"siblings":[{"elements":[12658691693935975431,14091726673043127160,12637313250391534279,2658167426979410405]},{"elements":[15038980373507792589,13371167328767946914,13237656934183842649,3552342384838824807]}]}],[[3638719848580139228,11104148664950140749,9077522314767261731,15041011094787932856,4658369530970078509,17387218676426408169,7436340825314121525,0,157367359697699289,2207674223807939344,1557753675226850370,13752554373432577879,14578005422862011070,8969556831679256274,2679494001381565882,0],{"siblings":[{"elements":[8869631336124654529,17964708875679223980,15343473544614844822,13214607641495831925]},{"elements":[1517538850251500314,2069342038532515874,8402108130312599243,18039642967389072816]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[13874923908060168686,10300199960485500921,17220223416712727809,11107917826713906228,16080860504613725480,18134296401397245731,8194394929420644964,577158521334961706,17558309524404453886,7462499894769427250,7806442614678325622,1288552523294564736,5928745459609368726,5673755939833451559,1376743317442148286,15198933849581950858,7573015836263811984,11548290280681219346,3048586463663642501,17924736790130764569,16176421463462789125,7400032287983233044,15731792546871809470,7943532610231399071,9191667656456693420,3262984601497837521,11548794947560432383,16935173460323565878,13440064921123574122,13006542764524135817,3200332762477917120,4727549247137829594,10132168364538911488,16818212172973425485,10153429833011927584,6098139687959497779,14527559769504347610,604659360669510816,10236113364972241143,13365343744988800826,16324715386374244920,12941087553157892178,5845088838124668771,11302395006148649007,14757239247984955116,7234202237939122814,14532807582245635211,1889883654052729616,14382821135875337196,10933403972710030353,10477969708791190600,18158356374030649371,848649292582758684,1386127699829388770,14693104195570201077,8557418020926389248,8465103855599324974,7678674795737258990,7968512843367564125,15134518985828235175,14849136868521925153,8200859219989098311,3125736942597523248,16341012296276127126,13668079212165384181,7587065128463574204,15516306994332084122,16992631783574963080,300488920541911522,9606976928846938977,10676817243288232823,13557774887840421349,2050879513960775803,7921519393270082527,12510688718189386154,12160967257524916705,17327790555543273617,5585739159986358700,13436395299212415907,17518943154379265640,45119396072775821,18248002885183339956,17650535637853523767,10046834664009893652],{"siblings":[{"elements":[8321586574402928751,11350831215799910769,1895653507085351149,12216094806571370138]},{"elements":[17728593759504001074,6650774988450794345,17384983616442277651,10830012975394552271]}]}],[[13988798512629653300,76253716425328447,9720388670929796746,1548769052874448837,10678972000872081822,17220223416712727809,9794176158596115729,2026404090053613230,9794176158596115729,17220223416712727809,2026404090053613230,11820580248649728959,13544866904491253671,1508524044049341257,16177277620117888502,9218068684094851193,7460625435618660115,14581023455585331717,4191273768828006679,12831902645852406743,10150234971378278442,6218710481120351195,13068904388938032076,14349008165164964017,7220820517938486827,17220223416712727809,2621060787227244695,9841881305165731522,2621060787227244695,2498234580914276602,1948421200922764046,9443027978162861716,6994897205817072798,6746497094135840902,14564511350746964211,16831736954435400569,2056373989216916187,12734170832192348800,4208322013663975627,2143482162082291677,10961739692902972349,16585828242741371314,12825332321073349918,12855224242854740518,15289131615815431715,16178865082648242669,6126770563456215444,11314967831051162149,3092712508609066402,14135477514485499165,5151390592540432830,11079589504367893985,4554275035609406280,759087744066793013,4716063733036944965,6328687062166235053,17122492330897146813,13403494676768996262,12165046964736682786,18171768242706016850,4499889398292721615,7639546611040194883,8478711167005028192,15548889025473187202,17829909962550759611,14731588264574577805,8938845596279872123,18321151717924116238,396475399073735456,6880860411668657361,17737202206394749472,8246190175691935529,16651904759104102344,16514590622497487494,14031106047687609343,14375777772587941665,18377248783886467451,10851631974779303762,7085234990686355333,8291914806463373328,7994519542791730516,12403577213146922612,1022843831225411504,12558853282718754101,10908306888185908160,896526436403640225,10927710552230741681,16216487141749341667,12216281139627206753,16224215395098127712,14815843269543878753,9810155420256072347,17703231211938946551,1214139682251219756,5521982296862822201,17218944837144903256,587004852284780707,6924610381785949574,727072259197312807,2427909203453611423,18437579200906443397,18265119955007604457,6497984190564580527,9833062871853791402,1710404546114930790,12025024772491311251,3615092381076884992,5312080124122607782,4744611673253563719,617785055946958333,4109679415990489410,17142601226805912522,1636577031909725305,14081177065677875855,2352124489388707931,15165060059756231778,3540697799400848549,15680242045861976924,11593685844168731596,17198012484597520858,12736666725130690089,9237016735828810625,1933058368617464806,11463052868591004800,9197603278783016781,12167701639262605768,18217540706334970371,4734585903824064381,7609066652971090719,16043948255073396199,4330786213873974863,8942602438630819466,850388319733276359,2401619309511840252,4429291596726907249],{"siblings":[{"elements":[3517731961418074301,15643631915143809542,14704079555053427310,8830626570097046551]},{"elements":[13906333527976971193,9910594232029521532,18227550812091777639,16164470906364818327]}]}],[[10698760992492616208,3084888054791991715,10504979538322072085,8672062314095562484,6538563662751432544,15414676715999535405,12668798161168817843,11732351557754657681,12506388983667251260,10615541933867894029,5076084454517619357,9711770352882639553,2132643363314560060,2389496404696519187,13998888976360429267,1523355177437193668,13885000321591115164,11688271530861571248,3492677459371171696,12564933426684726269],{"siblings":[{"elements":[7263551833103530413,6200736473050355321,1039316657339326374,1927184996573515931]},{"elements":[18228550423246657161,9016844207652041195,6018162798259459120,308819794068585281]}]}],[[9784294101061869642,9137203227838832491,6318193091794681542,15400317955513858394,10947340765512471904,16048632134224818483,377862090980006891,0,2921978985236500424,6626571352099380300,2040319358899837010,7147995217373255896,2982076959904495834,11952814429347424958,12559221845808852137,0],{"siblings":[{"elements":[10175556547943464837,7571288498428198039,5870773167665888501,1004468409750934851]},{"elements":[7102873559898376976,5794705437901675967,18361944348361383610,3734242435928352435]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[17730780067944809742,17518963256923921102,9717963889501765181,9889333779175288446,17354124086167775810,9341046780105547782,9463782532206378426,5697696929613651984,15477029259429788513,5284028284360742872,15659165034173660700,8373222624828423792,16588480323682393975,14038735062324207145,3190833584036494502,1516159312330509216,1680633347890878490,18066968257243839877,6417415178374158875,2392895987843567788,9518381980183289956,17344412373544896756,16231594649760017448,11962230288889464129,16565976484823794958,9632744212580298659,12535279470199806696,18181151614510170253,3239896109492477120,14448535428822926046,10566430734548849545,7948558204012273967,7441822548969899197,11054714104426912966,5727098206734316170,10554880058789606853,11367680883410349269,15950592910845777768,7938462655227805025,14887413847621781320,11067322404078384110,1932890836035370572,4762211496694261432,13337385683847119543,9329632235198825870,10738135897864078801,15535224595294003533,17962066482630225808,6099696443075548176,12162825799478904764,757744944612985671,16880734573288606831,17103112778625804023,1748882665563358221,11564693213149332613,3146989962103247994,2121482963690760677,11656376260512447754,4478580302598200708,11204574619333446305,2379232663091112881,3248648188462642397,17066258138991825086,6830807813140638287,12493706632655472092,15478303205849811735,5867213549580254545,1614081641107065718,2983768137674386946,11663441444425153241,12314007578863325622,1593765721002081508,6690599623344340798,1765410693453932363,14248197648680736180,8155473757178746261,15462355259073896728,5166316952982031985,6848724932534938178,2838500778340260384,13076234229555688944,14294583243378430366,6644658304540038648,3737332012452178544],{"siblings":[{"elements":[11018653891288600245,7457833601627035013,9915728460678587024,17276883179053765539]},{"elements":[16272487173950120557,17194161083645730615,2985732629437659869,14431043807897268535]}]}],[[7989529141045576704,1481927600417149098,1637221502741196772,15918394835760212531,4886905902603890365,9717963889501765181,17191301083388750914,3631462916578056958,17191301083388750914,9717963889501765181,3631462916578056958,2376019930552223551,13154382002108610458,11942637006922578807,18238654591764300335,10054387033449389686,2446377057876747046,7767513416118110165,5385749249401275861,7310810065932566576,1826146359467610312,12873645198247819897,2437328272890438966,17431368158774566826,8383502777682504060,9717963889501765181,14390985624812784569,4327744333080704308,14390985624812784569,15659183209967909754,7587533364484830025,1576889021307456247,2176080728489564716,16614052675057426327,13404887337289300662,6800129607780396393,9546791959802769063,8398046164664065631,4339092994799150929,7884324493664583491,10367210371562241108,16024031608622407423,940651131963071557,14875440255208051044,17944324327851098861,5137042798855307485,16625165027628711736,16488556424740040797,664361067234530299,15957267201192211887,15195683370294912193,15166999026897443931,16243427441587546200,10866278215791452497,6411914887501379580,5335376663264915548,15140474908442067525,14493991912214263196,17067962147219254906,11010652854048922565,18038168616867940486,3015920215655325691,14482522042232798499,5584184048471098709,15078102481145945353,16696103479395424205,12762508413419179805,15674440772590996079,8475552319426210596,13009067420684581361,5233706664624849044,5698331818670542495,13784371837620102417,2783780178626945907,15847592608250109049,4116001761933842464,8774836830048133554,1122631275405281979,5456497616219595258,12008914457567020898,2430713432696378181,545850204667661772,14937837884531364322,2264639140794252346,94079676740597952,17659586681280881089,9140676728032430901,11873089452916494799,5630995334229911251,12345108454160565355,2648550277102781784,10588527724598376990,2342786786472099236,14400722085920042660,13322718986751429215,3491228538005377953,6510905911889264261,8931535993760748060,4233246009677506104,12262979903463807759,322600932739821527,13424341356026568726,3468103607908939356,7885800363841418618,4645595799625512268,4585463119717268160,5144347990366566315,18082228608628675513,4398759149791023126,18094988208460111233,12555981489149039538,818009129411818091,2433354194001644145,15040688246812880329,11011447301898015351,17257753645757311225,12663327921480164120,8623246417442233944,8077395383220828571,15260864238789041642,5083039833094159257,4876442205301302786,14157119118630650015,12494414964761743413,12518562440533560129,6865301472451471578,17877924610050305896,7307614885176145665,6948761063468110087,1174357126761300031,1369869052351427610,8377347277300097754,6806991754193965215,11304997448075487122,3509844693016716057],{"siblings":[{"elements":[180278596016008821,3190538166425734593,17822691823027954640,8603837459543446917]},{"elements":[10171860954903476202,17170767904445474228,1666266425404431967,2871003251187555371]}]}],[[9969308533833169979,8140035154566822045,13777418961736591511,12624353662831536136,5740186130652495666,10428504976359145479,6198864924908621764,5763745677428061242,2720229500793308687,10821525747712815407,3071363266517415621,2378148514680807869,5935441837134611765,4229483959236544422,16261192539385599868,14881419370608925816,3866652223368021785,2665098606364025765,15298126166091821316,15078075591704279206],{"siblings":[{"elements":[11882637916940290615,14285470749572505935,11578998856112823729,9726818215617860437]},{"elements":[6118065580064522853,10859396399423868824,652533740523273924,16148992833321448507]}]}],[[1977252650022196265,7412612418362998524,8387436487201870102,2053041528113071702,17406383480039276644,6356335956064022974,7223831650290236221,0,13174201829924627686,14574130811658191996,18331710105872336017,5067083852937537260,1875983027785097635,4890261172648184608,7904821577231873444,0],{"siblings":[{"elements":[16027713268121007125,16678121002938509461,14376504467888048390,18423667831707248941]},{"elements":[1062309410470407545,9903906975068990945,9437018736964977703,7125320249212483963]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[2075855741644996291,9157067040989208112,5294998378757727296,18146573039130488112,11796760360434000413,12137940671652044236,60092273779548801,1796905377868388397,2733633831238396526,6532289241715518362,9205494970344250449,15689422995177277563,68762038141037454,4294010356562914312,3194028637873311491,1778551678138317793,763080260502308314,9991794465023108716,3850292501224842372,10995806390610363130,13391148702922245120,6432730835747473748,17937578682530406517,17835094304873103336,17919866796104645938,5061950529677392271,13425758741866242103,7168440889070900695,6647497964193582081,15785624080622359453,8784849953568480516,614357895425397202,6012695052281117472,11671098996728851319,7796267177051840013,17780525432626520643,11126958244758111250,1704449705218433320,13839005715079369719,5275787110927945049,4941333151907014442,15653302888835266379,4866652889900333198,12698421719591218443,2884461095163956839,7562566695966314102,8044592711268133205,14889346065622183351,8062063458191250064,6126472711169187038,1326059077718041118,17976641102812395974,6379834301292450935,7605956193794374401,11027865661708221106,14980909491850006755,7184579789069708505,18070936649269043332,6827714151510374871,16459498642841377126,2470368653733780370,1576843631870717140,12632944136259188223,6330444776106863944,9950291332725101329,4419025891602067335,5251621040734299699,17727538304377433361,2115919981081595234,3203325823177686760,10015919392892486056,7180900670771471214,7469255487899468559,17339768573158833224,12114939887655650193,12083549689080629000,3447190975648050147,2815566408580707135,3823441941367331783,17482051856852143558,6196020286283934532,1852384701033602959,17535449727704879548,1152492433505230309],{"siblings":[{"elements":[13692170119849387599,13778521954473055577,4370705135912326605,1484315758506010359]},{"elements":[14379065715719750302,5773497642325633605,11512610239832849658,5628990104839659425]}]}],[[13823778537223644569,6534423753809855158,3414197425943290709,15839984044827517458,5362168030315091836,5294998378757727296,17889679387492144103,4805103348392651618,17889679387492144103,5294998378757727296,4805103348392651618,4248038666470211400,5279433330624669249,564909350181224637,10496736453722402755,5284462028497423781,13583492437266895823,14277143415867888242,517491638926480195,5369271515099845732,17253839144578130497,1057463524039817154,12347862974397443670,6502940849833126144,13301180681333074418,5294998378757727296,3907578626781353115,17208759308114427533,3907578626781353115,1891052798847044170,4140931138236727884,13276561415500372012,11499908944774268545,4560671349644175517,8566194374829318081,8237434220684689514,16790033361413876754,4364625914589664011,2171790168847775897,13884843277437378170,5874310783980831161,12190607088347560260,9476054394043359420,4656294956656645644,4995114152527092979,672045186773041717,4425465650207884560,10532755370430835859,6704136848452603069,13653319421086383287,3979923098310867466,1598163850625662182,4874838384749483130,964509508371235545,4397907371050842962,15107703206651413999,13131453057644934323,15344916406070572598,5391637856411472339,9031651940523126709,7705449886977557281,805707315655482553,7910840415933629773,17768323082865812963,17356863424971191756,11751515765955992205,10050299751643223231,5879895712444064604,5314923419035354854,1506457422581721489,1170442865005477908,8403436998426414346,17927478428622476525,2022399449282115876,2900915264383122000,17854449491879490806,13526918969076401586,10198340105288042519,3692404319379661642,5954997208431241596,13508594420150428156,11725570370380794943,14963174344945496763,1198869675471915084,5168332099307348310,2382287904743485695,3459284473244734741,1868024257942322321,13425330121233677878,11180945560428279590,13433994174725961253,14530244961466797199,9054895185318136348,2145527700201011625,1369296537371705850,16117342009957098834,4442317356566280577,3239244267966383374,14930374112294987452,10165751376455030252,15305901376808163830,15184233092942252996,273887937657409334,17692050356877688734,8226490326704396076,506511790686705594,943014684133224309,1532219471549822054,11326843945526310356,7874735457215743312,9937950737308421108,14415102566446749266,18050758812793942488,8947780731570030861,601456936670175762,742526661162924748,862832857666271665,14949380753773083586,17645504197790431335,9697605041918750519,6723718367768856846,10251023699567198980,12014930321816773206,7965652360884577466,12887276540417852835,6108441058753485065,14869433883738921447,1564759890937828769,15287651210951449783,1740399011912065575,17887618795253574734,12667729604543272438,10985001721525531137,14365955222531829459,12005433932946610786],{"siblings":[{"elements":[7921486733976605061,1746438619769193253,12187459959093585039,14367661231767837970]},{"elements":[1410813527331434582,9368373922662061483,10511869349053166658,3212429785859426119]}]}],[[16512571115507401139,15305090289410763221,3756450865008213710,1606933523836501236,7726202497647979283,6797401632777636989,15708591265271632878,15820435968839502181,7746950746258983954,6104504424816728965,10583469308698268600,8100718786277950812,4287962732116845423,3061699467445139582,14455261492174108913,16240832210597206629,14657182486644813572,13294209194934952123,9697582409126224942,6832082294566891010],{"siblings":[{"elements":[7598098576059932429,15973779062051961138,420683157235719245,14992760274065341253]},{"elements":[14498175754340189482,53382376825666331,5771875289893756741,13118613385151242948]}]}],[[13538726247116342111,12724640189887173038,12789659605729025186,4917994906798337262,5477700795426636904,1225639489108631343,9959354054354032643,0,18426031188056418011,10624089149117925795,9801748015085379393,15381995045584352511,10511081687809628885,14205023898652042404,7194097252645429538,0],{"siblings":[{"elements":[8884475687051294499,7713158655601014928,14159919427357321349,11010166367619818748]},{"elements":[2983177467934199153,6202611793952066994,14728374713486374737,16400562755444153914]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[6585508045033738043,905835199593025760,8171019480820564802,6756273257040537442,13443501840570177547,15970449789638496895,10766469730078580452,1466867718611381555,16704430145542863168,5740988760524701218,7867790665892912846,9566797709149548858,5659865237881593686,4396194167113136631,1099461728349398542,13580547558544276161,9082315148229277145,16464674257926269266,17316838633954153084,8609267716560805443,4678907999597756930,14952442569512302212,9029337624333534688,8537823166696368605,18437712830147121762,3450650318256522346,4515354462680208713,4980762118377839974,4480545509699131199,2423326966761792617,13127296148820123486,5319689244543137566,11861347649943952424,7683665329470012302,11599182757006469618,7426980113180945834,15769608408726162721,1736386642915216102,13500998825925812429,12624480692962493348,10110958912789666429,100169951737804356,4968851086450990032,3377637754784489145,497154258396129593,700381220078662583,13614789727005595466,11587602764555920226,13075753966573756249,2961599092141688572,1479643537791297054,4144181021571306558,16973611669380823828,8802953507579297787,10849272909304037022,7383579378246096739,4783968846541245939,14369412218194939042,2301629225599828570,653036461462737858,12434389369660051877,5547326080775959572,10635293910227684591,18414042141208514094,8136972240987125299,580701825749052610,5046886386886002727,13716390724298306578,1768381100043046960,10759278417381492535,16510105377325232951,5615965135201080793,3131885238001357130,7585782952545527135,17156749855357193843,17809118945148429663,11831620189522650483,18282763411073909396,13108927381339670518,4488672853843462701,6848920543354497396,17737982424777701077,3383063426715895896,7156726380526660333],{"siblings":[{"elements":[8325907241208732680,17653120459707896817,17462569636756050513,15767870941559226621]},{"elements":[2184362331170239224,940371620984881836,4930719422694198068,1632196321716041953]}]}],[[453760564531938794,9651654950506562323,10933537921093851551,24220830234809191,2017495629020389511,8171019480820564802,6107152728670673359,8124648357691062870,6107152728670673359,8171019480820564802,8124648357691062870,14231801086361736229,691607103100777401,11205449103351846447,11670930324003113729,6081566510570235757,12599100786983152802,18016396963717924676,5142743298055961971,1601297962091563280,5394462341590766955,12313999545370722835,16032761435457205197,1609257047292795003,18141506460999951007,8171019480820564802,3604467766223581464,3299230157808948150,3604467766223581464,14621352387898450660,3485848720762963036,13883373091449440774,13969861933331271374,484666335980465623,1364718120048959979,3586637179787044972,16189911962797206572,8688020266113077318,5281923628407348719,5466940619187178478,14605163746493467041,5324451934397346978,16041349577215335686,1363224150828259981,15766086536054848440,10138384300571433989,13524534262210378280,100474110313136066,1001025702982180212,12769729455067264544,16896349528260550339,9508530281329142890,938716799966011302,12885875651844675208,58588001755278466,12164925123449305925,6446023272148083863,1377503146619294061,11330366022954323973,8665689768091740394,8556495737847017982,11663911118174871266,13779420432114643747,10708631566836360683,9457097214327518875,8160265319394160567,1894152497042975996,10009702937440963339,3443212373036446644,4699707402827870714,6559084908095311390,13504521939542250173,1359715569772658314,13630857176247996884,8159643057465297171,10241248246023630740,17176358921166971939,10557402593559175260,4913093239916935391,15899637080842276833,11304061692000456094,5209472918689612052,15489470608995089570,5641495893230505251,4832540365931795894,7222563455496685333,10117659831570396508,9893356260704881820,18275334172957699059,11078830071256873457,8346238016109091640,15101786055156954602,2334915519058644617,906637799056180270,11408636462160588015,11669117433976031413,16137847495082569750,14547635021983576640,11340620082541586450,15929569184968640313,12051274055839066683,15723452914223682251,14420193069152542175,1536551346306261914,17719875063762459561,12485836992210672396,3252664935925149902,14029256990443028887,546027336580187362,6635130562713142017,8347972868037804527,7847485915331880543,8196234675883021089,9737366710745397495,15954856846020956285,13918849311137892577,664915302454629068,8676474075918702823,17507094058146116449,2033306987861080270,5388925600108832248,9790235955347971598,10594178988110038301,14307238146998098455,1588137769060161798,4127934396507714609,2383173338253646814,13833883024388593440,3263655399201503700,18095568615736629407,14576225832216025098,12524829075809111843,8098117690573747699,1805082285934022589,9991651435945712038],{"siblings":[{"elements":[10230026756657693588,10270687125588384408,18421075664859215373,9332450249749917760]},{"elements":[8001705199429838139,13859409494220895514,8636825611379181572,2402042316382225294]}]}],[[16959901397053164208,14385672000599817165,10445620416025857341,5940827201224818018,9081382839255925361,16555079556430341583,15782951561388733204,18203259318263265716,15097905273679490007,8089090025761878240,2944451107707255546,5883834669424471404,18049174029286349249,11625353513726825337,9206134821786227338,1347314419217277249,8069031233754363547,17529552625843842563,13512605454617093146,6196539774674354985],{"siblings":[{"elements":[513493580432671028,15338177276262648598,18171529983572781887,15737482512765058440]},{"elements":[14156205204524098501,648881000652320985,14335656466020773723,8178534800257707156]}]}],[[12370520503901228761,5973329291036673896,7523432906809371347,17881606055395691061,10134008100521671201,3813945103684772759,3014772868284540534,0,5292390117778606422,17058047157513509452,489830247782621908,462656581591672066,16561740655677228303,5927460219554301640,4659894245050392370,0],{"siblings":[{"elements":[3224379794421287859,4331034067904756854,7481175609205825361,6652716902556323985]},{"elements":[12935275941217583114,2189684888344320960,3854563705387840261,15040446214725177358]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[16974736857611946164,414052696649986525,12761092839875154637,9431536526695835908,8066269832405000049,6617940434292386206,2115246544883577496,13041377711437924946,4023632190306725276,2174746142942924835,14679982990769819478,8695652588240814272,15830145196305377007,1136917561635165992,13357988256480513568,5491733491994559067,16208148765543623035,2536919017071227737,14053697728524065720,7077964211021427779,6879148849024430641,7690941439041135414,13204069662445639939,14995635571442170071,7000444381605001746,759581653767223693,11464948277725630061,14923327604796330200,2626204616781702775,15974631892474823435,4798663252677969529,7332596312866058818,5409933776576278994,4310253519130264076,10822170365104222825,7369904969893779784,2743172691778502610,295276490182242395,11015396879504278857,4714270146378897545,870000179178164013,7982578289809786197,13783656218674203664,11108506904592816772,4388350362923766940,3385711543549478,1099720506998725390,15979897623278725727,3338357744236775649,8129093416062296678,2544535377654103487,16953273179299667168,9510017786568737935,1298066524944112260,3557154771275062036,11291486369927858242,14930291685698976858,17604722729163370332,18332845761885992134,12591736226763271493,5606610490706100355,7448609692439487721,3231324665068923828,16991894757525736895,13795361582114982346,9216868284477811072,10778011676360696208,11788175343648351164,10757554058893756551,12054611803137782993,15670849622784377366,6103597617718796350,3445598223491429551,181494422334166544,12798786768952625247,8023089027650085476,8739991505188576143,3618727145606412232,5596523746288584789,9503448711294795701,2786485897656100838,17426839895816794114,1040875946713990989,4740138127690375870],{"siblings":[{"elements":[12146490599842533130,13873232037030011879,6924226746478176370,12732554613912801029]},{"elements":[17237443820363366542,2420429222455719364,3676425687366728082,12257612414054404205]}]}],[[7084471115499804056,10471190737973324631,14237245124059206935,17373564301520418090,5592391293065741633,12761092839875154637,9518142461496258184,15110533754561999817,9518142461496258184,12761092839875154637,15110533754561999817,6181932146643673680,17881967084318446715,2137362022686801543,1185021752346791514,4486768518517032638,2880975909205686278,13952276460013350167,3294891866730315682,10539606590453484421,2571273826201259148,177901758764486882,2079999632658664162,5839235108795559079,9027653978434762856,12761092839875154637,11873375810225852032,2454285719246030567,11873375810225852032,11213344687880749255,17293178506215553958,2236143043443285169,15340603978557237759,4149034775925044179,4147694159202424792,13007597522571736748,797524548591913104,1440568461233905235,2260204341266722987,8426071074595930454,17767091134474629035,16914879160092116708,2757450955201818714,13462515372089515167,12542264479442237246,7681040941324886076,7013446396595945863,5599748232279858138,7630963574137052379,17462603074185490587,6205775352123708552,3448882959252987461,7244936097675915991,612106526785378007,5251857097881192979,3841177803388519749,2274449050486464955,15270249601554803119,8395534563648153836,12126959719146336579,16493647744841764664,2613267469636019668,2074939277537916245,9833911923092855344,12148297722247407006,10256871700223008055,9398127902325054002,5665258780775441003,7823007368028548991,9726916912914006778,16119723271662172879,3116350485392257954,5294210918569907953,3615027278797562928,5733355700504312925,3881391371502020852,16255081286400621305,8883585670726765655,17712768628298121851,8981785319566442106,7644018712234980506,13258135980344218615,7491150117824668568,15529437600752462635,15655321953091493424,9813528484457983688,5424656882682454565,1424277097287406003,453357785205227562,12280433548005485643,11625521342378992358,9551790503679336123,12185907235227959023,2844383736016047966,15796083397499710080,17717856662826897629,7060643842289079501,16824631940684951065,7567699348663789121,8137432891283283381,4589297911637402290,18307419010955513123,10739707719567446371,2812786701574580837,5009545188859636472,2734046742201856521,3981642213242213392,12231114788127715713,4584572752883283884,3896261973954783497,13258031428792930923,7787584070029261008,3707427910219845726,5635927718121511395,13270585127782515150,6001014861338038165,9168579923454830866,14146843869636697508,17786217532367090289,9445062102832951629,12763371280136489671,16447690299157621472,5728167144879692429,891785299698586159,3779135634335193328,2637248843531941272,6050470267261091314,8166697253723286372,8014872454615431633,5033790495663167627,9418966051588644856,613680670022375676,10378808034570718611,11973524979724363711,6619431694584962824],{"siblings":[{"elements":[15138820325720989761,4526242898992923877,1792182972993992413,18151497779571086812]},{"elements":[16426133333479361662,11816804671268155106,16700607488075962603,8126155144001045287]}]}],[[4611648108893353500,10195873934686217566,17030139410114784531,5704269252238452818,13244247625757782733,13808327998900429319,6356375729048270165,12698709079750700050,9002858971107923232,4040683703428012927,7963189777281482591,8127354012118130669,986573305901981004,11356643050294265648,9405696930646184662,3650763720659877753,5031719244064671200,6958835655391498814,12595755803388473953,12717539233609402053],{"siblings":[{"elements":[7343989762839724077,102117139616777776,11823854276416775655,2971846334259341988]},{"elements":[17173959849096821549,4197542303866042184,13081700959389691795,8188002914152428501]}]}],[[8237668093790821207,5819594826934824417,16315197895746677208,13622765618349567337,13129082854695248728,2506401689877614193,8912424721815652352,0,17132796708072123330,7893763719120278092,15698983924025321166,10694563708232137607,13639956946983499089,10804127281990908116,6827362823231728041,0],{"siblings":[{"elements":[6414295126529395882,17938727199094730323,8053321025011708468,17912107056709770764]},{"elements":[18015593981262230695,13906279470924695168,5044153571974076189,7127672652231164027]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[17206109735828519157,7800246827495717315,8020745982839718295,15714867855057488863,3032318802615629789,1169567726971474766,18077249475269052531,10285922619335735314,11648103021583209605,3996410113584517854,18021569007658151356,1121227614355612584,1592147969364196194,3073766620843520534,12172344610021173011,4468130253357913066,5363309130729316017,9060428272251534424,4327366249438306814,12824951185045586379,970387560941176564,1824699754772168200,16516673390223370778,15495504148671108555,5610781073527305718,9225766756719364123,14479804754371532149,16069417019529649419,17028164268165101450,14973099585692074123,12345388468971828985,10528414744792439808,17230049879188214051,16154658027059712015,15806738521538973459,6684427148667459238,11749556303403888769,12277889060912305273,7026639429275326762,642243559881271168,5613002337837507560,1314612325939215515,10637190245129486168,10947029513521575725,10695442475209097230,1990958710162532624,9599986486111589104,15654307118935242621,1889638351941074398,2585149121863491085,9584210455109621775,9973723166009271144,17569386003946470953,8837034270941763229,8599448158215233488,3035519488129568086,14838852793737000347,3963604704401543679,5368414199855749489,1818383580332167691,7422759722975509296,16541699519595447964,13735133402274667031,12507375995692726335,2491323809709365610,780565099070518451,13723646817613359804,17357164720707240068,4923388621861509606,11015651857441784430,4591101115229292098,3357641610537422129,15139876664150598566,14395858246625084437,10527568225023487661,470348566177183452,10758053878856044596,18226941559918030836,15711582105394125640,11670821929750316582,12032761100378838568,8846227178474138162,6522102506143216099,8814827997238842364],{"siblings":[{"elements":[7403663046154704761,5184547189845195558,12550045180944025872,8146440534872139040]},{"elements":[2620616561727944075,13455578190656343205,3162853890679506371,3383643176103145107]}]}],[[12568851523521900434,13486339453494873041,16022602508437282783,6591834744224042068,8039069810456956987,8020745982839718295,860433738748881564,8899503549205838551,860433738748881564,8020745982839718295,8899503549205838551,9759937287954720115,14430330712937488925,5863108893575766496,3322597498079814696,5706193147191073646,105358956737704948,12769588227789528966,13601670405085104246,2554884428510903638,7100903673656153138,6363610724913829497,8271416998525464854,17540171555591851626,9972634055700694460,8020745982839718295,10185330823446668805,1711220809732778944,10185330823446668805,3971764544672310909,5986529989165736038,9914527832269484662,1340903002693636992,6198421651233978626,6992813725274413055,2089309534103086646,12903310228154195229,7896635047501888854,13801279900528182318,12519011564256559243,17453426628531599715,15468329301889803682,608968401601237151,760632167360965859,9132193120217266183,16477194334095282085,5980128023560968978,1637676992879171536,6406876268973330994,13423400050036037185,13673926583421653935,14565762864550634624,6822569992851249172,9864974683426286226,9390921115147158558,13800711046810456077,4226929932992628774,9283738585426243188,14082604664369984384,2331894460239110062,5296908088139183614,2245949430881952098,13638926972022084603,9411902587925494976,16506063017972121743,7278868702807602665,5296470587804110171,605051741125854562,5512343330020760753,5439520614893866553,9151340321706373260,12696461699666028,7796612574877181487,8233860263178259333,8440818945990497827,7759118584134343147,14050819452224445471,12955884946349458147,6935765213750314259,7508056181359164885,17728082411186894417,7789069528794252307,10831744070061436559,8090037797974398294,1086216888430392902,968269130841448726,8469793033662018788,932570630753568794,17045041799724396242,12346098282641661392,925484480992273718,616625149005621190,15625310514265274125,2969754306971991516,15112960016435292198,2714593646548223803,14691258473219880051,7058741741062656858,10792319589945326776,12001679155981212862,13709029598600613382,10302719946634747239,9157983673641190243,10077419301323658001,3486969186309065250,13127085754760621363,4344106637635468357,2505089471075765343,12609944992958393185,11769065904163729364,15764836287148034143,6432754146905244912,9384485014784054787,9844068387680180554,14189002165756040621,3970970379159128000,14921374687629128892,6663265284232690864,4272896423447095704,13267452049507920317,5305092573447486029,9882847417808530032,1955458632087781447,5153072873659439121,12496258585073509253,14932326074991487457,893494028453933052,92619923863484465,13106798075134962979,12307506967155615648,4792639378940841311,8368230480654297493,7090766842476516498,9039749853692084017,5966382359206431257],{"siblings":[{"elements":[16692448271281130410,3187497018166977368,8034596417268007797,16605404827894224620]},{"elements":[12635072478538248330,3090966620156030405,16060771121752955262,17224937196647426864]}]}],[[13628433969114016972,12778526840259038002,7004323718209487468,13436056313352377902,3554030956914896677,4132359909270322999,7018018891731266510,5447018842539175394,8947609248115287326,15983184040504519326,14053658429640673383,1871383641961483664,6204044611104548522,5050916011512960568,13164524452572468375,8699943086749654446,10629612803883739279,11435065672278460052,2398305399662753961,13082243461322413212],{"siblings":[{"elements":[361023892814720883,2802851863423616804,16229132839017315226,18012565281455339549]},{"elements":[951928689791545203,5032565514753380370,8083889197327567118,12066974764625898819]}]}],[[14400947545862386945,15320284026940704032,9347826491367692195,10664734380241492904,17823944055625338414,11194111072179793113,5060288122058745187,0,1255681137341751863,14571536220118455066,6557149208675385546,18150817853399456174,7363243900386438086,2449382784437173128,6027139130927788626,0],{"siblings":[{"elements":[2583773939372790355,9824448855029866030,17416861738546402092,8530666693346836041]},{"elements":[17932127351126756327,1224206198896562365,2936446475207177152,14873433785129377097]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[10012935419466238577,7687981581886084074,16691476774783491,145485011789036548,15168412053950061181,691136674232252020,15619028640102623808,4059841558137313994,11221094138731007451,9647692249680977507,1731380067292760758,12050742724543570870,4318946795225655072,13445284368723671452,6526125951637107733,12837226377147962554,6200021417364185498,6231435401537232377,12389719809556874887,3374111251463901066,12141217630282975102,14465792413110705719,11023937824779326741,17774017186467066410,5207900634379992722,15595245240556739197,15843721754649588827,8096232151492915937,1459042434150359834,15740105734539224688,3589661780789903725,14631890640933874724,10536888583905911439,13062014467609786480,4148455259947965818,8568720716864665140,8583370790698260948,2431818726303992780,17646025720604979999,5378803794799483225,3660142930433849591,9625635920878019344,14383371796671376583,1787062723350198525,7352998930330731195,15828271121064875052,2170785863873326871,11092974659643096053,1016357294328403998,3386178682721298592,10075031584945038749,15580465637828448050,5303646519772868826,13647626671420818152,6469360450517991518,17147767722741349383,5801886078594869736,6534170801082628856,775935246617636436,17104283438042248432,3036702298271073781,8811634396995210406,18346120187486650736,4932236222573786686,4658310730087341386,16765483636386552940,16656476462835642909,17936221904913283325,5877156874468569260,3130651501490620518,18105588846974400902,10168135683153458111,17741186566292372016,8869418827244045071,10989794044775905426,8651371415957867828,3056889389710013227,17540622419485826949,16818380837613850762,17687093779267761351,7067130542631280624,14008375672721013694,9557087022363310990,5987878486782106282],{"siblings":[{"elements":[15910947226590530155,646193018130629436,12362342674696131851,4390055708897877233]},{"elements":[15236420770846088491,24658089369011782,7263309267073018658,11070078437783786852]}]}],[[3281502619423060773,13545277545568238510,14663410797119126073,12720666465524029624,13682173814698425719,16691476774783491,16489346451889468861,11724776197173310259,16489346451889468861,16691476774783491,11724776197173310259,9767378579648194799,1032313673007693040,1596861470371372754,10402304517817430120,2483969113131166390,2191573589675933140,3270934629869449125,4004025053419597578,13535726016122901115,11585055584175554204,9356925691288661246,1274251599650797677,3963690156608994393,12812789287055115536,16691476774783491,15858199994462036273,10224245212102567488,15858199994462036273,9666704721558120003,13288638059712923210,17997353280929735173,9277415697485205720,854712207881975533,8130996485278862663,15854896505072261359,17000244497067016231,2348777487253830422,4811735444750600163,6951081803906996268,1721908509034235995,15628863770982970563,16827942614142089535,4419047655569476290,11080946226472434827,1957930303320344339,5929201243063801329,12443586456361428539,16266721283900368025,5058376878399477309,9574560602197325960,15824528355524026,6101273388259452009,15849884611510702000,1606896951414439592,4180721637370893178,6161806321092149042,10401276542651193375,16060973236122602911,4092563047770096097,4247546638576962008,13579302796063414788,4791774262882724304,13344469290162487133,13489853806087439002,6544450601066153378,6569615748812327759,1664337139640120460,14896068121207753524,5172285105153063193,4817899746001312958,8728594972401084927,11758911437188549324,14170632718102110201,4270041282401155237,17282629990245181624,12714060659886445457,18257893603707371348,11229975094882262471,538023369343449307,4468526873109874303,12433213819931711185,12343038594947158749,9267709560076220374,16816545725133678438,9451077140007607984,17161662087688430433,6830845383854831388,15680354330461708110,13971383237457892553,4875983121348075287,1966337443589459860,11712497432242931409,1816773826562020757,9935064948934430015,331954054948368695,1951285132483711636,10086843698765423584,16770710786916756992,5695060998640727328,12115688110455730018,17630235123352566075,15670067398131370950,11538072254343002463,9258826701978312318,14480866584263446305,18213896243965518191,7881405308220506691,18296271643255591161,14690751298301158462,10983340880121533383,16868941510753203400,2740397812020102557,8605774599849155261,17491524524630257862,5477557146469030019,13294900860178931738,9193369807492517796,18038666124266344469,4596457482361029888,1448021320616291819,15484044170240129549,276479322016609527,17467243206172826267,4433588343729822947,15625395583631046805,3280449840745512209,3159581411382378956,11709890911701605073,5315504839673323189,2847897273926513665,13943415907675036757,11833093186080535472,4221399845521263166,11516214591349475180],{"siblings":[{"elements":[5596782909573735476,4613168985651126418,18248605611113826275,6426047860788210688]},{"elements":[7533082028729651755,9173976881958298193,10974710225955313053,7929308049463793587]}]}],[[769334346086078735,10280104924938440609,12763209827610308045,9304700843707547670,3365492782648046364,5411328928332176145,14844206778305833297,3655439335061567274,7299045890445682293,10312364695723668377,12539766124054687415,960212937841638376,14737851547511796055,1423346303386439168,14483874397374630706,14062191056425864142,5609781097272652953,951237399520046546,13431963330403251061,7171526223673480989],{"siblings":[{"elements":[5851278825311566546,818466605407552664,4003952093958539192,14573761949789681288]},{"elements":[15894871101379049589,13309962305921673936,8968769591403299568,18287293512187069115]}]}],[[4283537160717565455,14508426300572757407,15544587784168070690,13593038666098476631,2856169796567782728,14182836103655450545,13499346500594933230,0,6981793186726528571,2687983824766809679,1977044652018390552,13957269391869653874,2361133319449216070,9375479391535017770,16620481535948892412,0],{"siblings":[{"elements":[4842557370400320550,203806499689996721,17186230093733167099,4201826128981905437]},{"elements":[5047376652112512454,15037726665767999405,2201934134840713771,10607719950697024316]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[2957113517849714127,534309029635191400,11544311873258053432,17882777603096976953,14832734722440621137,15934930592501534930,14760340415644908738,5968928275597906994,1467764478271860482,2009382118976922185,8495360564230345231,9001316726400759960,1476228686992828229,9926265546383658404,13708518013943224926,3323385141244140172,128236646007518263,563126779725380055,10710544815496082143,18322692329841349080,4935454013116701158,6105517679507515402,5809925625105293329,10724329006479231394,7215392929036346276,12633157382364529328,3892909400383536253,15905967723289449199,16107352555606493024,5763624939658292804,12822971197090877027,5468279929777982329,17871739753081572991,3405428058622781654,337992362254510078,13705078043166119698,2920441690533620745,4525146002637897051,18309666788251571475,15347705875649550555,2217752593681366765,18190039517815238703,2918841177068674532,11693900813645993518,12161685437561318317,10841669970067038096,16821663833760093673,1111379915033100156,17457617770852883295,2493716186979991565,8892096909459830204,12092029998773332332,4737742107837213983,10667486448634427561,7041791300378260407,16235605865629792199,12124454157766831447,8554194823817536413,10123344624443999171,3719464704114399526,1852291261948245709,7395622727472578340,11788503871034458814,2210624982014450562,1685999208823125948,11122373884830477538,6892391871763264000,13495033894710099235,8247149182531434849,12381029035073056251,1903453838714728063,9093795306938195559,8048800776126096016,9146017383512717520,13846881608659751976,11704297841154285416,11429622801686750329,13748299616283334071,7681621835781065820,7990061028613800144,9864223101603136716,16243622272869597474,6178613610167304399,5903143289022110685],{"siblings":[{"elements":[8832389127426069113,6131364286917185572,18048574911583960267,2163811129510967340]},{"elements":[12080961203814882388,3507164343688256046,217812273724800610,1252946754184999199]}]}],[[6187766128046441829,16637209301529445836,5986576867832645474,5922508019418421225,13024012733771890914,11544311873258053432,6210682176616774155,787950840974080748,6210682176616774155,11544311873258053432,787950840974080748,6998633017590854903,3570316141473543079,1943958605314396905,10012081067387175718,200135141029109430,1606688486842780675,5820930093413040774,17509314506128466161,9790027289576767334,15366548375832808996,14786056233877230488,9005494907928687056,11206757380457375960,14785216876155790554,11544311873258053432,4125056665306141884,463529472047348117,4125056665306141884,10848272876028751353,10489293662354674460,9840627866261471554,8760301363947944309,12436788214163474656,12162445533604174369,4641779691962012860,14290962744495491524,14603819910351056481,3581942472941140804,12162439553350628665,15360440997232862807,3345499793346946965,10659041795656156776,6456922015436530220,7092823725420751510,12623532074738499020,18875304311094731,6571719940573427938,3713560266347595562,12395682377278584280,8286981031646296110,1154665288160202273,2615624649935557189,4218899092448517100,3701380497663798802,5442340759908477206,3536390696218620675,7023214025948903247,15227668798241529446,2213699054839117061,12499528351979889110,15436117670064463049,1608563158385631682,8027804073737091288,727351301626253057,3907441864946588385,14640110801260533133,6872658797796774942,2549418678947479395,16206149660994701994,3406469869107928585,8535732365763792506,3989750107491371324,14138311324097500082,589493845356780193,15906224454643410077,11027800454373938688,801409311039359302,2253747981612168453,10964883184328692247,100451497126742636,12437443202817183106,17472637185780293340,18194565832602603547,10174383473030179576,2051335116486710384,15544141683221798716,8573231947314422590,16985842955076178707,15370338645100846421,16849835302258141136,4901875136230200497,921457640403058815,11000130208360453061,5813803419095504633,3315072954495503238,911606307560010812,10433009819612042023,2554151131254948525,11247651751131640956,16166950492447762244,10680491820422109990,15901973788078735241,1382180046724549077,3183786581747146552,17697888516455301726,16329696358798189448,9010504481955775056,9516962715434021530,14612713247187470197,12226491450154831611,12414910653309646466,4785911206589617380,15303424953973325883,13481906293956861078,13680648795977347332,14887549806036031812,17604090014004185050,4917548402019381930,7693983817510042471,15046259598927765094,5866455520921265789,11273520892964518390,14627176346756110435,11290828999713261086,8925281728085521215,5469901212277294639,7496825047880373200,2528402610082364956,3660515735724586607,5583026199400217829,8903714959695549915,1159177440670368470,3334508865887652368,15726690606425682166],{"siblings":[{"elements":[13464730518151764077,14583257702327574163,9271441173660870474,11158534083718624774]},{"elements":[16309815517466357069,8510292391200766341,17673219715638047263,11467102716297814818]}]}],[[9060977665440604273,10027552640135290426,2799080757703150530,14894914322379659061,7660713294407500354,1803155524926314437,4424677487910650243,12698940450839451967,8181376997541351584,8922931551248940622,6461036366206726792,17651950904552271883,210554361390159443,941392763699484177,473957984774065904,1541372654049837982,1962561552937683738,8120916818858829800,4385546586624398265,9932743748708723826],{"siblings":[{"elements":[6895347304360288912,5774648020166790174,10463284502844539400,15375706275817089772]},{"elements":[16797056608379864644,8931178218740982433,7364886258755014106,5391368024239178414]}]}],[[879306166419150818,4615160352550806538,3179857122778292939,6988499023064880208,8103033194379355365,13368597490042889219,11350860331652963332,0,4071173422972594856,7395130407499413780,7880068322735498805,1759917902724075412,15772062421094746255,13343144832902701520,11996962865214726162,0],{"siblings":[{"elements":[12523287424936833850,3038258695463984189,12682936203093512568,8887538047431254689]},{"elements":[5376015545114290653,16470824010864277112,8736431771255778341,6197148165205381424]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[375328944584183393,4247706021255337485,11706807446003718147,2904732840066002447,18046556544271250969,10916790744547718956,17417455500052103819,16865149589710501282,7516206176750212153,11918341555123999967,6438631583746773435,15591054111156919402,14898247868915648784,5038022190703638896,782902406581356437,8476475721447534742,3141781225672343719,24960222019956998,13318568201986596120,12553821336735446644,15472379427769897237,11326663298448799758,1496365523529506525,16283290300342903900,15887194343965027864,4817821258470929804,14105272527915808251,7529328033808087701,12791111736960966652,1480310065758090137,16983972150093381616,107421146925935521,15956630495095901670,12449606557574229305,11212738967977910606,18110500866781589748,16429130620582859274,7779952284097961285,7986664839084840667,4336809532421740351,7203799611063838576,11560435871645712433,9815190520949331948,8716032194773025707,11723673122810912199,12703447421820732849,9780264156921829231,8585524933896102493,17254462011759100274,8509313049271687836,18155784473960727319,8832240748451399136,15022854397857957229,10314946459377650889,2382285953043542396,10901101274451940707,6488753551442959274,10655907811367625707,1377911739024153286,16061069529229070329,10445282428636049950,17647374885055453601,6398896971781446227,8932834602516629039,9997920820735837711,17622715642258494985,16060563494318235955,12619271982679341637,5793856278372142490,13756105895004610932,7717844781603297065,9318268434351815355,2203896032917540456,8738369653964913142,10014274937273594781,15708698748232470303,15785571182443519050,16491478051113211775,6969461676564863170,15903387008965589169,12741230739465879464,14561695049829515146,5122083969314654828,14494368093124181245],{"siblings":[{"elements":[11905301557835126433,2811687330353170174,8328158618699204317,7261511355033858346]},{"elements":[15724416129304146158,6744691714555510949,2439391946615683197,2210772101600168795]}]}],[[13342738179486943858,234080634304475044,11298678598732126749,2971828502511703879,15116957524607186152,11706807446003718147,3755623494668458830,425836949861060661,3755623494668458830,11706807446003718147,425836949861060661,4181460444529519491,13630626385943315932,7578648763247464616,4827817121656748535,10839952296266734394,13760331219901616963,13285946383971387299,6080387409411434437,2226931078854748628,14387869644177967493,10778179957656586374,6106965882557134849,17301750264308622897,8788757838920099643,11706807446003718147,13396055233310679795,3738069002816195117,13396055233310679795,8125466657395271904,1944884302073343658,3343872651985960352,2268080571328507982,12246947957241477368,18144865530103905174,14599086113147191462,10065077362693097693,1670053751635867752,8462699268530879041,10890213950593420519,13444402952462059126,11334380561596351060,2272669577735613426,5885992213857508252,3189619597657097170,12349267618550830301,17362400626207377653,7479635251743880924,17484933588108048246,16196997760305296245,16078831246369418220,3581208777314146667,6557942849661890463,17732058671281947719,15819060440461324356,14638680752842710879,16131162396840041291,2169236625557872133,10585360475154522294,3414433706481662099,10822536379285774287,2762366021136323085,14277571886705004324,13732400673598642977,5278694176524523420,2177294429128102046,2337925733540879588,13752677903411265540,12962918645892182672,17363109600122011023,13674485289762506960,230198022769910493,14405834877062323245,8278110392504109743,14758173293901714340,10936549738350606671,1692422452774803184,3067176069376724631,574108836675579678,1366999807668904067,9767670390426829466,16711505038852032451,5638483043786849988,6678457329817486757,16399824905256785090,9238934666237420653,2783441656717104084,16569718624150092831,12044838086742244539,9187900225803990641,12470193447247643677,11379491309419536095,4095873614019633536,4790901897795774478,2272288311959874297,9976891817101663382,327366833506679617,13637884827109200250,3995859414352926089,4388358654271481774,16483804793223895647,15991655823199209898,4988958193288990283,12608208382183972577,14743134734801763607,13206057725958129883,16598333280162803825,14593088858113396840,15059512395150057173,18430740042755385835,5363649494195233355,8841063165695575197,16564601337817376994,7954463730882913019,337829748799299604,13199038940969975178,435050928904051889,10348821891939322217,11389342984804667743,3878418870813532518,14818782790854169294,12591258506628934028,17180262336759524634,5091407071462824566,1222575719423091481,9411014198638927072,11548551293893068812,12469322091753403352,15752963157981115469,1144082667414197632,9364017854923054400,16185462769196391722,14211013369600768872,18093715396762043766,1237203906664613428],{"siblings":[{"elements":[6337283624701027404,4370504859152319321,7010495348472814238,14962108820082049312]},{"elements":[16101034779588015327,6844002570289426033,9868559491919778383,366356878854969441]}]}],[[6073833436856463662,16908957548100780105,13639384892439782024,15169655798226778662,10132544784207835849,9219654460145487257,14164608930864403345,11757109717323880785,15568311400760713875,7833386289296291628,916194290286948070,16064763569008922709,18337282576202845750,8881718473913645850,2575496634064669135,2917220859313710615,16595267538103543024,2916854925160974024,12411898411159671138,2532860205301720830],{"siblings":[{"elements":[13689956775977108112,1097517896385930398,11229788732271793595,15446071656011640816]},{"elements":[10570782977050475606,2405870902656028473,13243401681875001135,16516069414046803012]}]}],[[13027650798610285761,7934681227452148867,7935257253851766156,6128755796944074845,2369208168523981327,994737403623170952,13466392763598337360,0,16830862860921945222,5490740266059427833,10140048978905138066,13182738434857116213,4718701072470177204,1035834086833757258,9880085446426071250,0],{"siblings":[{"elements":[3772465688451026905,6200608477260570223,13500858540825709005,6635953971720257764]},{"elements":[17417798336124797448,3098632452610601349,6582542191892491765,991423848540495231]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[9336884742028234152,11054298581776583364,11903411180683071473,14296717815736915449,16495264431561355793,286425650151711731,7818675907462870013,10010246018977678131,1890820791768704624,12558260456405324124,1496751319024418478,7688284829495190073,15056599560940752836,10403546405752441210,15031567511199407404,10190157062914636311,4095897921107595849,8414315100637562024,16804760610634788622,11504572193580119219,13554043763335795650,9722893617959487903,11267109158602701171,13271616572602256072,3202537321918613406,9536328911281289038,9402284043304896985,7624382939029706505,7876093227326374161,4316325842875837877,14515991081021036402,6973319751057672073,9275917823713873060,14874925803304938596,6995038407358618833,11743851330442668126,6258602953605941613,1800335348522323540,8550112900772085923,10362106327361328038,11256019104394175519,6067059559086088426,16041669564760536171,13206286423688954530,1221807958049390854,12528930597591281557,17693752121809868644,16787392022923963052,528600239668533415,13769531670894575127,18293996673121507302,392455369568546467,14790578723956995587,4080169426939776695,2188382888613763801,1501394793936266896,2197182597671586462,1265693223259570244,15431999847904939037,7733806705132874701,18113357226322563777,13663401662236327200,11169543435273311269,11445365192960330175,11194928790300383980,7516435610290684462,14954655231829338456,13119908939436696206,2117916374172580283,6046200420469927324,8763252541460544190,12309237096812154659,12262595299354571208,17786370988432228618,11281112914140474250,2794270243819254017,1487778964648894092,16389700750866351773,5169264358182164691,2132743633911370694,12898237317466667270,15997841964748494006,7702717202847895371,13732873406948971647],{"siblings":[{"elements":[12804735375140713404,14721018804237750476,14282780542903435223,2453183975775524265]},{"elements":[9386819466575501464,4695457175289524053,6799857909187713340,3125732624066090898]}]}],[[6825141945141655598,15362903820626146731,10919176560316557364,9203621266692922128,6883353629897098473,11903411180683071473,4235966765890326789,11119320395787425262,4235966765890326789,11903411180683071473,11119320395787425262,15355287161677752051,10969706199036674724,13635395529650592323,4178896129482414983,7430047294879929225,11876798705649401262,6789862282155571678,5627386421719387613,13010873827306319325,3809356019044376055,4067706933363091317,9999583931249884247,18256637912050331227,4936406580313760722,11903411180683071473,12964270068364353714,17900676648678114436,12964270068364353714,14269072956570470391,11030822466875270923,1096395500444718189,3723001950964465461,7960623455651360623,4255533382174018735,7481239068602227477,15089913941486511727,12263291119602191452,7543127434756135540,1218608282549420746,683792412447922101,11204744634625067440,6972205441768126834,15850251527254733763,7088417545991250231,3192976132342245175,403055246405629992,15105954062964473340,7107619128813622396,10360919700347776685,7668360635978401047,2046989960402102402,12653342924806551689,9971273856113747955,9593576996684613200,8408507555220802858,12595598512890023121,15363452976520346545,2333488045961253563,7639178120122181769,7169807202695188560,5579792078641660506,9846697511069350493,16860858224266955243,8060996789294637493,2496677481892616959,13665143231564132222,10127061104743887386,5937884579904098053,12167857351062509862,5710157528009057407,12249045299411839564,4712079172042567106,8085240561881842261,263826959496734155,17419719788483941343,13070154732270621384,14899734078944994332,10513604825675949526,3329612567643467492,14996181645983857277,12043035717762874071,3451138546268261320,5661069065706971886,17455488332253471446,3325864688422445403,251485551368051221,7754882612820219374,1974415918569509174,17493964876409787761,11676145359153156650,9595044573325663015,15723135628889837879,3039027993631693564,16472641209958901064,4326610178938427428,15156635952677828800,8354022093617433622,10635396084964882804,994267749513300739,4424676122674993425,11618929781506875150,2009736956495067007,16310402791282387063,10984004694169624530,7347236311578861654,10930924223898663600,17256876263736159692,17704871794439788625,18267622072027842351,1585416393653971303,3684121110759658103,5173698664689436069,16874540805648784702,15619283842612253740,9043920007844657882,13370217469447385086,9705118411958976757,4716199278426740078,3220172529214282210,17813793262703563526,12349867239508916554,7956596930484052113,10644104399358536954,8725045391976164881,8565231618450766817,11520462731545101039,7635192378686530877,9596017962301997609,16045269857037155997,11672082255738685422,7331932164634949465,6846080181945719594,16235114503412189675,5305850181954143959],{"siblings":[{"elements":[16949495584030676752,18412385367762406712,501035874803900254,3470427838893688351]},{"elements":[13406319966535674044,7820873334114663443,6199986413930180714,11127142303304301945]}]}],[[9766590836224056576,11856842845676222597,12162568831471223936,2092978040910662853,18053175125065053059,8735429558229560559,13324469552406813511,11824478133406671599,18362276867812851343,8945363606825772691,2728459001343917069,11267639848035138816,15467188744608813976,714789064433402750,1009714958570138626,10264949312604182333,1507759310397844003,16684354304711380675,4196037639915565870,13193904357773191],{"siblings":[{"elements":[5026836080154406227,6662603518194902606,15836988275612177903,595726935959498319]},{"elements":[6781834578833045044,12221812894053650321,5635446760870259233,9808817511833323868]}]}],[[4510743690203360687,16117180520519599489,10957902351157163772,2730913938997107986,14244298636649261277,7067279912186458002,11037792544745109585,0,11230100297278583903,14380818336175255310,10833402709628386836,7231838216348996966,8585686777742950202,4808302575509597950,16774001068709984157,0],{"siblings":[{"elements":[2525599604021081178,10630062222449944748,2133676330398117736,10518351925216038830]},{"elements":[4921430331028612048,9375327459806997388,1195062939992113916,5653445016384103668]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[2981378304754394248,17294425859019899488,5495097178942910592,2434773629067817120,14381859418018558167,9144484614969746161,11415072490952100139,5771544633465294353,9657779220672379055,5438456994412536637,12643200207107414592,6987214968852664472,15621004487594728131,15887186508389350490,11429703077911227347,1555320983035820293,12342983464597510956,1721151971762748825,6686736854588993319,14604830922575251990,4973761076371083728,1898767195310094849,16572729270203977145,16292509486847123278,6956931455735975241,2594250794135405162,1496020032490744748,11217850761024229958,9228370296094482207,12243405326392877785,13275748543848781674,1813335873883020498,877226986228825447,10752886091866738432,17545245901937676907,387832811290315942,3293170022147285653,10684553461035510153,12218700078866248864,8849376437319360692,11694761466190763465,12638603459987671163,6775818988674452074,15150402107598468021,3177806675025742903,392913243407254318,17159866653110642873,17582899527776021730,11408526068585385530,2600749880673817147,9260327115886749280,10391335369659247282,16902891662267525166,9400968035705469449,5718801599510914475,9598240703334722090,1005928392242417366,11356256834795522466,6465052781254919651,5392586007851921161,17157340750148134036,2084925749293814428,8879965415396668090,16431412192839098540,3195634102903031643,6839081243096090637,14807562193555193335,12681854598294316242,17318692263126481628,3031842894733573747,6081004964115210768,12005175970589167392,3218991306209329294,11437626905964344073,9118359933684856057,10613268959010198790,18059105193303388716,2703911340013550242,8009782073422058388,13426645715014884534,17396958375383482529,9714622499629802944,2559776249118675123,12922931101810206077],{"siblings":[{"elements":[6835977814218543408,1263577615951433585,10078229402860923904,3832086712508612705]},{"elements":[2184362331170239224,940371620984881836,4930719422694198068,1632196321716041953]}]}],[[5861510461696317790,11713819115030107149,13619986345995273642,10734691969379328197,9492386595246112784,5495097178942910592,10790324057111807829,1835966582943336292,10790324057111807829,5495097178942910592,1835966582943336292,12626290640055144121,8047721488773232690,8402841159211253593,9261039610992015760,11436460992288285759,17908434550131585294,17622218482403929882,14919328838644779731,18423027272131634257,6499707754744964194,15130106660846807978,13868582346105651989,18193221705235975235,8641803793639040213,5495097178942910592,4657316947222936305,13299120740861976518,4657316947222936305,1621749939482501244,770265607132408667,16597607401702510030,11283321608159344209,11285261533355591321,9527080756989410467,12989698462223270263,14204049468336898171,16165391984226597272,8637720693610288923,14661964686703582272,11662487706215040980,2344146149802321482,6931905540577180690,7446927616007912775,17818681973769235031,18229787188132544512,10997732918912712060,10794429469704020060,303319084087160256,2990313280731088551,14836264697127645400,7022102193686352643,7953886754610891880,2150984333913025395,11544950442947805446,16046659880394374578,282718062568404659,10723066862093060141,6986523716499349125,8980904574074545779,10268225218213621097,16022799904443332352,2749242135439624053,6200105758290859429,7226281380679404029,7633555436699295754,10826705963246974500,10335642785017519765,8174761030759883662,13390627276727403612,1340691561714257208,6850038983032695964,15600695294518191778,17172959671915095813,893434953262401424,16281114779867554578,2269047410759170967,6343373499016054970,4056382637540990877,14454222475383779918,5714846359509431881,16953150429407308421,4871576350218567938,537264772629464991,16031097163357181706,4036967876926796472,6347368904950649188,14135425811492616888,13139024194487782711,3818180889893842814,5593593565488117397,14008800437699638571,13141759823926591634,2072855713896309271,10295458055253408040,17841899464112965000,15797165573123685937,1509173014513414338,12074263333527239144,2516063687125657402,12499793264475845931,17745439915785303958,17072284872587759274,5603726027335063616,14835259284754155008,148259773203131990,16717408791558629263,1653775399991153246,8569538144944442762,12641128681910517240,11544538168776169768,12119693716437187876,10734413192314912817,5871331386099698226,1634417094340478385,11347541655184428921,7984824763765759560,7780934467469153531,765999228291961966,13027113596104629598,13232445672252302569,15487380705086575765,4426397393273453034,14237217213869079752,17700054626790757355,621954187625899866,4243616713306944418,18078771977705977182,4066946066255277394,5986686376035378791,14417943041578862592,13320070172710355512,13204086623992738973,16133898146518475475,16052876601831132037],{"siblings":[{"elements":[18325547907376053073,16366170982246659688,2929804154867360514,1214956399912043117]},{"elements":[8001705199429838139,13859409494220895514,8636825611379181572,2402042316382225294]}]}],[[12557191246434629585,1108086889465248527,1221974864549476062,163375589598418410,1159438872853427272,8742789177465922127,6463635564765920218,2760517875606163991,3829139372151580529,978966317795662309,10488405804916287432,1501943780297496032,1004602223654566502,1042395347595067686,15475740055062674038,4680808960929009388,6670651247250668278,5098060934423325577,7074333265814124091,1892313074776248757],{"siblings":[{"elements":[5034390179539343939,16872880163481066808,9984446366173922674,17260645953068108256]},{"elements":[14156205204524098501,648881000652320985,14335656466020773723,8178534800257707156]}]}],[[12643696511615720378,1900043037164314529,391582036264402054,14790955526769755900,10255797885570326923,4456452445655440145,7457110732943304070,0,17502974164686302130,14434147647403951961,3834816286310017431,9695055712162013867,16108356966278392543,8147566826276966479,1378266995880355770,0],{"siblings":[{"elements":[1532777645289842775,16526665831649998188,12387254413961466862,17598292685752898]},{"elements":[12935275941217583114,2189684888344320960,3854563705387840261,15040446214725177358]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[18346899977516615095,10490764803150076522,1931605832967235824,38239881933906693,13140370817260528805,5954262104438106856,9460715029756156361,14452166319600211276,2018534208476214406,7468225848654968180,4984915189116051431,14017727622073273034,12045243994706045572,975027149602640168,15291212086988845823,9016088194959256918,5810707897866622600,10685499327079018530,18065216075082972452,14689121230864581956,7866766934974941056,11132228203515475943,16740179830807628444,16227017628881870682,17088227863713715073,17594504128339642335,16163190584151242906,1545852341769421530,18094809352095552133,1360493184083151245,14317814568263390243,3795914636049645009,8060273454446325223,1470434697264714428,10788577081029383420,1299470864393012035,2082035309727907694,7185590874393736317,4144898093473204736,2529797676557145786,18345879914768606624,4897984516724556982,9105269014703622117,5065422576308790577,16079581666811729997,9484852438571101305,2359182047114282532,5675263973195107838,16486988799653323265,9848523351617181191,1245665811114972785,12611676413490690140,16994079073345790720,16025414312769524390,2471073241886996783,9528050881814155379,17032717627597584989,15558380230219751105,11642007488597708942,2887521161702506939,17570166039082703253,1014192193089153080,5642714960003923427,15409283217250040164,16711717155830752647,105238444331414708,8248472019115256613,11967145441104870159,3164540172916207272,12869831937337117735,11224931413882151380,11535688014285463962,16449142642419504141,2170165276990944060,367239316337770399,8624074108107906941,18359175902018995601,17518045983053812851,4720115108167000512,17998162632163301461,2687527003086175211,8077392948074537619,682277279617773654,14453648997109414865],{"siblings":[{"elements":[14336277518864796310,17635039444687382691,4047653584043719415,13143979430889367491]},{"elements":[9386819466575501464,4695457175289524053,6799857909187713340,3125732624066090898]}]}],[[3827810868900587620,11596638952977689391,1518645946936762903,6981872052976935479,12321181102274866869,1931605832967235824,2325333026075784629,14646514128350651498,2325333026075784629,1931605832967235824,14646514128350651498,16971847154426436127,3598425527841223583,6824655156519568443,7112935303665307818,1959320299402071591,177848541394620476,16335736199265030097,8762091084130540208,8215273849454148916,3620489357013989394,1328295604890822364,7114667030001195213,5003022290956087269,11696720298374355110,1931605832967235824,6421593442322274093,18118313740696629203,6421593442322274093,10448357018059646132,13392640520873055527,9472148818174659647,14866246095761165759,759077334290313296,6290653902663300229,10569952503842517982,6684050847772799423,9819273825760179993,10060118139706087828,14817379018744771314,9854518487925100082,1657613351387159916,3881272306595697032,8100870093634606180,12800450494757209202,9061193462027288938,14135103144099397615,17818635447624548385,15000104262624711812,13298119827230439480,6185530691432540085,11690906390564561926,5728364427306364855,10362111924003303428,2420538809136353058,14256983615105605897,4405648456824418266,9986620246923081203,9158201467742061845,14103116889057652492,18132360039148194351,10539499247304137630,16970695073790329094,6288699485322830446,12347625222029566779,16352990786833875505,16297541420202851542,16284883156646865191,9448823324087618413,12761830211638221754,15293275929641461159,2991102580919173096,12255559925097457146,13232543818248228775,7270696533643874625,5839878971494322301,9609442929325197107,15176845693692536530,7768524644628890903,4163326289229997559,5156611380121513777,3632291204927971057,7157802913394290107,1301566320222840741,15747144940179957667,7489082998003230502,17484637906078364320,2491268008720053287,17027254058648490187,10812511387064226805,12288322432216086522,3461109380053669694,13804501673642590414,7812118655081306816,7164799545944327511,3939317187827396062,11328608733144692902,13002057476523195873,5849016547512087281,13425866663808280082,10333338360932671454,11140842592310673864,2154202892302981718,14354704761045139761,11091383892023736593,8835255701152451598,1779540750426266890,15564885717321426659,6977007863200029077,16947585206451233909,3186272392156805064,16547063915915696925,14701414775076215952,14783894496990849847,3421105353354460600,1041910451557210930,11550908500177656084,2295550561820228569,16029250400943598000,12537305352845336557,5889828171066508552,17066388027648585975,5924216790238852104,2457799645277470472,17516665792810773031,1546608078217599540,6528571744026726204,18390894037780888957,13921699485990112848,15896790750016384607,6227563769634590296,11656450477771171568,17821267130437980274,18250153438555683775,282358681852813977],{"siblings":[{"elements":[4046453698834187955,17293718353703763772,16214756183322911551,17603946120414989820]},{"elements":[13406319966535674044,7820873334114663443,6199986413930180714,11127142303304301945]}]}],[[14516055666494514825,13289933922300040511,7259285159318432577,759116758778734090,14322254731393486960,6892306176626242757,10584797002867159288,497199632014436681,8474272240405827452,8489966499264984760,7811820436633858260,8068848244406171567,4133618909968392538,14275026868520297773,1462198529447284716,16578461284279816402,13091457028934935966,6494861795930815471,3288442164247196278,12962155174519846642],{"siblings":[{"elements":[10661792643538587680,1007169402045686361,1067969381110983065,15077788361169662138]},{"elements":[6781834578833045044,12221812894053650321,5635446760870259233,9808817511833323868]}]}],[[2855702237415856833,9856432203394647296,2815103005099860817,2983112291696088685,11308170535296716248,17003255925105739121,9812902387216401837,0,2556068295181732456,12053238837836247428,12487455158526656928,8221990821999376874,2379131633070544031,3384004135892131847,16669105788678667228,0],{"siblings":[{"elements":[17250369960673358978,1850922186945350629,15422874474337912843,4515599987960821396]},{"elements":[4921430331028612048,9375327459806997388,1195062939992113916,5653445016384103668]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[13785137778317904646,8817111776954170042,15061578697055007730,16342027186563859758,10345048983396655347,10562042905643404218,6695639293063784984,1011398994415408419,12323407131782386121,17053549400804131744,14476049080735708988,17874722039992973434,7859760005143684992,12247021299757709045,3328016069360419424,15031221924666553962,3419372367656811332,4624831203519766511,10136816333191741690,14322271876022827407,5047669516173434640,8383125425581192819,15623705162702253378,6385413823949902509,18390398796449256064,2486367089132464208,10285402528260435985,2134269620196353358,2519104017265395886,11469046586135827725,13507905476592978487,14633250863604555641,9430382524114026632,14638701745562560793,3104975268902110969,11834615349169546857,8193467226082981565,6475438860925332488,2561016590476370885,6925586457622149317,8285631829291851379,15370198634643305406,6235058618709915992,7816678208240036896,8211915300813262941,10358782949407637806,10066303227280412461,7505659389696332839,15685971117868266513,5226855956878707498,3959317767164858351,17065982912260849143,12212008326541298552,5895185263859364418,6248763214313975436,5206394168507015402,9155665725883337283,5687117285347793411,6077549133797968863,12106663591670394885,12681221173122890172,4177990753259582271,820911341987042152,14477374272647813310,10484322133995173322,14773768884137746368,15653260752942268926,6509801850322896546,11498533040918132278,17176989399897964606,7461398416879429449,5642015831121687059,11648703400217455262,13478554013417061571,3029107525948731358,6569863572865737045,3272854689600253426,3535173096641532296,6096074521798962910,16857962504293660863,17031812160768944575,6262808765439034887,7538197590046951808,13050030658370154263],{"siblings":[{"elements":[12268251437638401623,731695070208171895,9389170571787889498,7451003503022704724]},{"elements":[17728593759504001074,6650774988450794345,17384983616442277651,10830012975394552271]}]}],[[4899927512989937501,12330601249674470882,4212207656071831791,1338939749026053079,11049784685616513372,15061578697055007730,7551094913173447575,154135529375376626,7551094913173447575,15061578697055007730,154135529375376626,7705230442548824201,1533862149845259792,5670011553538415104,11359776098737250125,14087031130628888035,2294568084129974366,7814355349813691803,3405631273653831237,100279341877582648,8497314884780624091,4706491426229207,1039774143505173882,13214611759813440359,15564596414473025028,15061578697055007730,4977218316982641534,2095070662041082241,4977218316982641534,1912046480175720962,5442407653242395052,801307500523170376,16418719295821285463,16147331330520349605,16404963771969617903,10306306029811684911,17477410299088019627,2907921386011550321,6720743029149619066,2887110247348720343,13005690648015949525,10336767442944006139,17000312181926828149,18422432552718952933,3469279111604294030,451605003312564630,15356832081773874943,10604219375726010545,13747723430953231336,16675237272848574551,17594940662994434618,3597074889108710068,15375838057422100384,6116803035799435556,1642501525782879467,6780336792294460542,2500898502256404867,13273258645168792349,9824404594807671424,1097084610868472528,13532173785975508219,3873217042522943275,6497136277296912897,5910742832561161354,13803541468171209324,6534920658518718785,6537890764802485425,12005338132660294977,7630851736393194170,7667713330722692892,18061334964843000550,378225001949372933,6615831281460518152,17367598353236943252,7437299265814996978,5053876352449380593,44145879467019702,15754520290247688461,13663636844145135029,7991662049713631893,4564570996126078229,6825522495523684773,14963393763662869783,18397943273867798719,16148057048782180493,6140248802121130982,1783300751294379873,12047256178044310832,17020570505461776767,2618147540909089414,14782795927586415575,16951246280493513751,7315116196920936286,9499618116449101402,9172562419814040521,3714160309936441540,10149752293670884245,8289365581128599540,10375140345447138862,4295585822950441517,15763624094877902632,4279351702333757918,1433769570086744752,5037628976660632075,4027771734560095706,14965478263362539064,10178228909446700644,13823930124436069251,12297214658140403234,10075881915291405327,10956093800767129206,11442209444360355858,8465006759364613742,9128543116797738501,7368954652681149482,8472939498357810910,9346143539394417425,1675604986369642303,2538506085360064298,122560117039162322,10227709156642178532,1053614253709691077,11257251395626414582,3831220280983926326,1706696701394208568,13814346375637216593,15241219739018805295,14162100421574720611,7996060788449894888,13795679998423331484,5946607803653235214,14113657638631773904,5925787643134215247,1645884261723905223,7191624696499991958],{"siblings":[{"elements":[526488303982304423,6514985231536653750,5431202322501860371,10304715985869671042]},{"elements":[13906333527976971193,9910594232029521532,18227550812091777639,16164470906364818327]}]}],[[12555075849792637361,3729409088556451535,1184522643617296005,14605587021675573209,4407301377125521442,12946845358414047547,10056225546670624868,4243967571733510604,8392860503277449627,13834311576945685620,13815913823051858159,14046475785993419259,3029762504183468028,6548221752840340878,7601023692318409699,18287084378353147386,8476522953979871966,13835102400445014605,1320214393522227286,2286442957644486940],{"siblings":[{"elements":[7784260890108170991,14823574151483892893,16357984571351628049,16711045757539013381]},{"elements":[18228550423246657161,9016844207652041195,6018162798259459120,308819794068585281]}]}],[[17682695329829834581,13807164629751717791,10010911212594350152,4437631407326904876,2273745948965436739,3307115802778779897,16336801824099848024,0,8104677315820144527,7161549215018615166,17549192681092533125,8238024383810785945,5407234547221911148,6411850909334886484,2109767082087817814,0],{"siblings":[{"elements":[7862348609530204340,12361965221566648533,8674600434291274406,12792226523513906015]},{"elements":[7102873559898376976,5794705437901675967,18361944348361383610,3734242435928352435]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[375328944584183393,4247706021255337485,11706807446003718147,2904732840066002447,18046556544271250969,10916790744547718956,17417455500052103819,16865149589710501282,7516206176750212153,11918341555123999967,6438631583746773435,15591054111156919402,14898247868915648784,5038022190703638896,782902406581356437,8476475721447534742,3141781225672343719,24960222019956998,13318568201986596120,12553821336735446644,15472379427769897237,11326663298448799758,1496365523529506525,16283290300342903900,15887194343965027864,4817821258470929804,14105272527915808251,7529328033808087701,12791111736960966652,1480310065758090137,16983972150093381616,107421146925935521,15956630495095901670,12449606557574229305,11212738967977910606,18110500866781589748,16429130620582859274,7779952284097961285,7986664839084840667,4336809532421740351,7203799611063838576,11560435871645712433,9815190520949331948,8716032194773025707,11723673122810912199,12703447421820732849,9780264156921829231,8585524933896102493,17254462011759100274,8509313049271687836,18155784473960727319,8832240748451399136,15022854397857957229,10314946459377650889,2382285953043542396,10901101274451940707,6488753551442959274,10655907811367625707,1377911739024153286,16061069529229070329,10445282428636049950,17647374885055453601,6398896971781446227,8932834602516629039,9997920820735837711,17622715642258494985,16060563494318235955,12619271982679341637,5793856278372142490,13756105895004610932,7717844781603297065,9318268434351815355,2203896032917540456,8738369653964913142,10014274937273594781,15708698748232470303,15785571182443519050,16491478051113211775,6969461676564863170,15903387008965589169,12741230739465879464,14561695049829515146,5122083969314654828,14494368093124181245],{"siblings":[{"elements":[11905301557835126433,2811687330353170174,8328158618699204317,7261511355033858346]},{"elements":[15724416129304146158,6744691714555510949,2439391946615683197,2210772101600168795]}]}],[[13342738179486943858,234080634304475044,11298678598732126749,2971828502511703879,15116957524607186152,11706807446003718147,3755623494668458830,425836949861060661,3755623494668458830,11706807446003718147,425836949861060661,4181460444529519491,13630626385943315932,7578648763247464616,4827817121656748535,10839952296266734394,13760331219901616963,13285946383971387299,6080387409411434437,2226931078854748628,14387869644177967493,10778179957656586374,6106965882557134849,17301750264308622897,8788757838920099643,11706807446003718147,13396055233310679795,3738069002816195117,13396055233310679795,8125466657395271904,1944884302073343658,3343872651985960352,2268080571328507982,12246947957241477368,18144865530103905174,14599086113147191462,10065077362693097693,1670053751635867752,8462699268530879041,10890213950593420519,13444402952462059126,11334380561596351060,2272669577735613426,5885992213857508252,3189619597657097170,12349267618550830301,17362400626207377653,7479635251743880924,17484933588108048246,16196997760305296245,16078831246369418220,3581208777314146667,6557942849661890463,17732058671281947719,15819060440461324356,14638680752842710879,16131162396840041291,2169236625557872133,10585360475154522294,3414433706481662099,10822536379285774287,2762366021136323085,14277571886705004324,13732400673598642977,5278694176524523420,2177294429128102046,2337925733540879588,13752677903411265540,12962918645892182672,17363109600122011023,13674485289762506960,230198022769910493,14405834877062323245,8278110392504109743,14758173293901714340,10936549738350606671,1692422452774803184,3067176069376724631,574108836675579678,1366999807668904067,9767670390426829466,16711505038852032451,5638483043786849988,6678457329817486757,16399824905256785090,9238934666237420653,2783441656717104084,16569718624150092831,12044838086742244539,9187900225803990641,12470193447247643677,11379491309419536095,4095873614019633536,4790901897795774478,2272288311959874297,9976891817101663382,327366833506679617,13637884827109200250,3995859414352926089,4388358654271481774,16483804793223895647,15991655823199209898,4988958193288990283,12608208382183972577,14743134734801763607,13206057725958129883,16598333280162803825,14593088858113396840,15059512395150057173,18430740042755385835,5363649494195233355,8841063165695575197,16564601337817376994,7954463730882913019,337829748799299604,13199038940969975178,435050928904051889,10348821891939322217,11389342984804667743,3878418870813532518,14818782790854169294,12591258506628934028,17180262336759524634,5091407071462824566,1222575719423091481,9411014198638927072,11548551293893068812,12469322091753403352,15752963157981115469,1144082667414197632,9364017854923054400,16185462769196391722,14211013369600768872,18093715396762043766,1237203906664613428],{"siblings":[{"elements":[6337283624701027404,4370504859152319321,7010495348472814238,14962108820082049312]},{"elements":[16101034779588015327,6844002570289426033,9868559491919778383,366356878854969441]}]}],[[6073833436856463662,16908957548100780105,13639384892439782024,15169655798226778662,10132544784207835849,9219654460145487257,14164608930864403345,11757109717323880785,15568311400760713875,7833386289296291628,916194290286948070,16064763569008922709,18337282576202845750,8881718473913645850,2575496634064669135,2917220859313710615,16595267538103543024,2916854925160974024,12411898411159671138,2532860205301720830],{"siblings":[{"elements":[13689956775977108112,1097517896385930398,11229788732271793595,15446071656011640816]},{"elements":[10570782977050475606,2405870902656028473,13243401681875001135,16516069414046803012]}]}],[[13027650798610285761,7934681227452148867,7935257253851766156,6128755796944074845,2369208168523981327,994737403623170952,13466392763598337360,0,16830862860921945222,5490740266059427833,10140048978905138066,13182738434857116213,4718701072470177204,1035834086833757258,9880085446426071250,0],{"siblings":[{"elements":[3772465688451026905,6200608477260570223,13500858540825709005,6635953971720257764]},{"elements":[17417798336124797448,3098632452610601349,6582542191892491765,991423848540495231]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[3224450578647075915,12165712751178440782,5633103419006680988,11493295134337342176,17326254976767111726,15040497768065427752,17068747695981096728,2070135021958711056,11266547947368074009,17196201500327856258,17880589677582589285,14237004209817874460,11084311560596369096,4266574937343165060,5722366348059158318,14055573689545109074,13034681062097938582,4756471198169320681,5595050181858555126,10368679253103809395,2243893450744688687,17107979679673729713,1291822591423251229,6630010511335148424,1138906968938915755,13806912379760342367,2613038345576034901,17561849880319681322,1601130326224471768,1597531066573998330,2012084127101128161,15191364035229680637,6884259991631809435,17196068475351035883,16413787052602206780,5252023353830006820,825553712506901819,3947181967997444685,7257381028346369124,10981873135685283577,8352848301710745072,14004197552182932012,11245447532264667700,7080123586924873668,3577968953845760945,14110628317847127950,12732951413930286077,9925444275789517227,12967465905890319680,11396479705777394594,5561421826650650980,16245112556402503616,15228394940253802153,6426318629695872151,15977843601468538897,8098285179979927422,1929505969672845131,8112987869196542195,12021566813041088338,1114467968833865888,2611071761440494960,17968880708511351540,13074193547243221494,1059703104997270543,15737059687084314141,14794946844456905042,13227044856766877073,17143217588648521766,5748454528369563133,12685039917954187917,11288157634772235832,6179411481163140015,3874758693212010225,1206384404526474746,4599443118113865083,5584734463373381931,6136611417086052441,14944258110498715822,12474883356910797772,14308946048563388763,13137334755331465236,13963597645627481639,14465254100735638307,3494334304389204700],{"siblings":[{"elements":[14558427021271812428,2889616159627138166,3028504079954276941,5281229060922485517]},{"elements":[14116771184823831436,6357576774383995688,13501931163075412498,1114208703580065252]}]}],[[13448280129321627798,14184832580226620071,4264760999753648961,8684267825863703316,11540096098169847035,5633103419006680988,17929086713287469260,11022438742042731974,17929086713287469260,5633103419006680988,11022438742042731974,10504781385915616913,10233299991856859622,8096041051817582124,616647339418745235,17702256353323484405,3401807163073704597,2858363794882528563,6468473530378188213,9432439911715600556,15319531969909672148,3978008339442677304,4675777195118948063,8570244683106774459,13585257444459381479,5633103419006680988,16665733503003146045,11804246878047943203,16665733503003146045,4285274222770811137,11760308604722249425,10207862365438598523,12212890942095567435,9993158262681182159,736954933851108145,9672950575386075303,7952857189275572838,18283257144281847970,3593526112719002767,427775632172508153,7754042250414149527,9694557622302150389,7099829167389618045,15777519981516555839,17493605598880637306,6761961629305837681,15352357082232361981,10587216098471322447,1186407845470370944,4963333110095360289,5183020716315664450,5703057399647066411,1654005320245959858,3947216947333041453,6783974214217163215,1689013489307070514,13979456232858178304,3935461540017849252,526852840254096676,3037366594606732801,12264182439110100477,4891678981289992825,10683976087407861194,14381414872760763757,13023867804880331183,9291318119038699956,11309267658680205996,12096665809323843806,13800879323908434913,7174327047092873001,12306753553916010947,14232879251003089683,18164420531977468492,10953775806891900286,16259877793389096518,9625864982490925863,8534134395704118094,13051166443626080651,3427308511623505181,4727337347415394589,3453396440679893252,1684138076566235632,2352317457543417717,12214643506510543508,2611085211896867136,17856202544361752314,7277800217698677022,7038087010169898749,10869326517679843992,12137663335825974799,486491896416270871,4876279596041153562,18185680314122301023,15068514540196733550,11699983284397763417,5313633926205060679,18080277924750706853,6104594111512281074,14622521888511112461,15159579898446946314,6223059643385745080,626293859165316592,11067506214141118923,14049412274224744161,4343276081834489311,12709267438770432401,11738923289356649396,9027046029338967227,869807388680322678,13916569635788552983,8534163457168825665,8348511056798340915,15347654705785397820,17180257060609330311,10358196993038095993,16240222817772121908,7429053970656559990,9003081370840259316,11173882529172024683,7448031355626881647,10524525929540040437,11781343601179760136,6579149689263849340,9735029773692866132,14449081018226222344,9421548752611836587,12647656205192859339,9067851236147233742,5496246895245525662,3746197693689619493,18049022466208770944,15526349738630038124,790129979945703861,1590583770950262649,5500037066238389846],{"siblings":[{"elements":[6721740766564925244,1411408032836159396,13022652891543324015,2237109728225375781]},{"elements":[10383452154226125760,245290251193527986,17653238234088421422,10435157782398094396]}]}],[[7163828245400992899,6208789802991690329,1520393498095234823,17850125557131604925,1566108637863292880,17723991757094781147,15673272288241213978,14517555794516862246,660547752629125656,5196605275958006061,6716167319968777602,215845010327148844,7049858174620698506,15421018691863710164,4096225175798213350,6061796182218412267,2874778639280213280,15165039131876660989,2871311492653310124,6703544107971367030],{"siblings":[{"elements":[15844430972945815991,4510052531366082237,1988094269381573260,15027494130045863020]},{"elements":[18113916164610076962,9934973629108858737,8628759266336919655,8869508532199145062]}]}],[[7276572204403270635,7257272762095579258,2422248109556499360,9592078953406538535,857899562719364695,11654219534014360536,6987570363935464223,0,3245626943291012230,5964104782427339077,6066854230964074654,27237648514612632,10376175688294746092,9883018294823949155,7771135358797040383,0],{"siblings":[{"elements":[18439044051224101044,5401075306492653357,4222486334350026793,5977485059265711106]},{"elements":[11750769666821996496,6624622629346917355,6177482558660254567,6121177377877255158]}]}]]},"steps":[]}],"final_poly":{"coeffs":[[13910181726160184000,7043768098439702501],[18060041138806088035,4617277402726990662],[9219529992404360677,746092082563516345],[6610430630768966833,17875742445555215803],[10347276921008415275,218640200373566537],[546329369844128056,13280379759507380358],[12590262975324076375,6385327275169664512],[0,0]]},"pow_witness":6341068273861271870}},"public_inputs":[0,1,3736710860384812976]} \ No newline at end of file +{"proof":{"wires_cap":[{"elements":[5782752622758829992,14592497371728508018,17437177267279159355,16865765746304100627]},{"elements":[342367288592297317,2449658623891242837,16460533185331898032,4953787606115624032]},{"elements":[10738602989372585494,10451741755277385166,17289901658215747651,2371813896449924308]},{"elements":[1334273605098860999,13863759115782829685,5128197823102041043,6132021174545469901]},{"elements":[17317049290948596069,1326213489817113132,12604560393624022664,10691091182381056533]},{"elements":[17454686918167556229,13482234817880518667,10610857113349413208,2888288858127585171]},{"elements":[16364778214552361137,3508317774895210783,8717939483659126937,152337716220380310]},{"elements":[9684297404507250449,16908189811092684299,2891316693772875025,14254400830266672516]},{"elements":[12916795380572746684,6818895223894934652,15790499083960551133,477009621382321400]},{"elements":[1123739300354773143,13449004130265528843,6451743759196319145,16623178697223751585]},{"elements":[6329982319895025803,3887530779050930751,16641007801745262561,15102932686035116942]},{"elements":[14412566887668761077,9386242970735868280,4223167432488103336,11473983008241458703]},{"elements":[17343592220558106113,1678416771394132536,351023368137211833,11651780666156457588]},{"elements":[9174386875274148839,18369964388243734947,17196039792657551354,8501301308441456531]},{"elements":[631298948755291129,16159527377730110591,15231734953170173690,11947445019824525253]},{"elements":[1337641888973978353,17242754796406388610,6298694888628198659,10257926999153215882]}],"plonk_zs_partial_products_cap":[{"elements":[14111218911372648901,11719361509979348697,847450919892704737,7320508339892045484]},{"elements":[2653026847843760271,8399797984288622080,15132664626114992913,15043773674230887353]},{"elements":[8060756173223710263,100232677867933561,12554271110445360395,5881907925493087588]},{"elements":[17485167052539128247,5649235559742709679,14822293782311439474,13853705766343040946]},{"elements":[11384130300799564624,15528104863202459281,6681942287118016106,13354155864436316838]},{"elements":[9215210709221323180,3095924245291954278,14621315076087967238,16335876883792863556]},{"elements":[5434935883606027816,11743787106492218814,3300185542431027404,5686800431358492986]},{"elements":[7510531972919981228,17948398113582484265,3599838040028711433,5092758770143283836]},{"elements":[10438660467516307235,9328947870601486502,5870326923476556006,15462223171818895855]},{"elements":[12872013097248967849,5189079854631372451,14061843381301397993,12823090699755849637]},{"elements":[7609884646267732103,2686918582611582746,10385186490892309652,12256065780989198454]},{"elements":[13264113533557852160,15691102734702673230,7220429564095913652,11338125202632066904]},{"elements":[8369578038077985556,12988478235518494365,16748052581462659734,7157445722449283390]},{"elements":[13272224140884022437,11368394402817085558,9759316709370222949,15668914481860978627]},{"elements":[6547771034558596662,1582479030840589112,7843948408829635218,11768869865040542341]},{"elements":[16617600247093921214,17824236979722059751,11107947214851539433,17641535386452515685]}],"quotient_polys_cap":[{"elements":[9883815460998909276,4010889561922929909,16584972469975719704,12333329490826856298]},{"elements":[14227755518910973574,12430123657052211696,11248390156659243813,6759035370241602355]},{"elements":[6689606701852344145,9749230907259478086,10376587245568289224,14511964641691068876]},{"elements":[17572731033064191288,4548709397637905604,8377207684865600011,4816022847971393799]},{"elements":[15588273334469916086,17372244863430948668,13793923662139837497,8511328595605534984]},{"elements":[2292419228730529770,3234388258832791386,16806847797741010937,4034035729120351045]},{"elements":[3123452762032443739,1980512936550667666,7153879934557130742,11755142977265746254]},{"elements":[1075933146237370624,9924048404479837306,1541247248766071274,16168565106980999981]},{"elements":[10749326109863997751,2503682912540451367,521803184811093824,5504786850574566763]},{"elements":[12148954356017620500,8811140431081434011,13429305245700107493,13961243570919174025]},{"elements":[10250335415456840831,13171019913620627993,14876733298358826831,13762574743397127409]},{"elements":[17381924915088185099,5854662953227648383,652883838371612536,17636411229976561954]},{"elements":[12462283136335549124,2570180095865899693,5444112227662951898,3814495938379489949]},{"elements":[1322087962881059580,14576325864920076643,12034108268942431778,5071039372623089321]},{"elements":[16164123777197954122,3129834709556649542,1302232070814800335,4789476774337549810]},{"elements":[6048489741637524321,3839712782964653396,9048514642641963965,11659372762133424418]}],"openings":{"constants":[[15728756232078799024,7075052491695435462],[13370334785374354115,1395763030150228935],[13592887080897179671,9002867860608472199],[6162562450241658817,9537222086445226241]],"plonk_sigmas":[[1702907076904477449,1739605292569163287],[18004180997079186592,16696974679532814600],[10470464462365013029,13101354310846722096],[5552162911340453256,12695602851119021579],[8235042533430125206,386569842792820174],[1508526903195359056,10688387313746674024],[5758392729983926955,8310370258672748326],[698865588363489055,10298611731935102048],[5370071413113740870,15442337501092050233],[6411256966798566540,3396939750077541113],[9289636699884962526,12268652036103079725],[15130876014655620,5742006289181710694],[14392017344007806128,4519185862347473848],[4035571826080356359,3654949961646221164],[5542663681789672210,5027680775417210219],[1020617268783348982,146724064946587298],[16238337829178996436,12849616886300392546],[13374699858290926537,2333568103529974727],[12044466894928467527,4092898797405514235],[8118443808152114074,16303679681461639491],[10278909185753772563,8974059946057518234],[15319678975137896797,13533563542850270264],[12717057950596901320,13382167642080819463],[12621846071424848698,1143999891648488729],[3440722567226199066,2581307441883434186],[18188288962823657844,9369760144415914583],[4294704502023018065,14803083785256227802],[15498655512314268816,16625617574662958821],[17168060424706473577,15816092027834233107],[6638587435281395637,10213086126232626484],[18302318623928322947,13775090707713550356],[5189097057342851759,17800374622018242898],[10486828648061685263,11037663974779157289],[1261556136430071093,5896920832553625475],[3722642706363543125,17427416829299301524],[7469787825342656684,16040202701623910662],[17516673314613302619,11906719765413565933],[3730256184608865649,9854217720268591268],[9841008382208231761,6012257715345719096],[4725333176742738272,14171813730772021535],[17402894190701920660,14027593234780691904],[9674225579813027564,11250849375390534946],[16428716831296527281,10076912262866610474],[777354669345233657,10728703583130217611],[2473634651278017595,14943430026824875679],[3364833738117521025,7256032689722959402],[6210291534580723383,10984868140211703243],[3307410087032994036,7962582192892771895],[17791951436438678554,258279395160000934],[17738646885994632748,8008086497457925178],[5940766441332711215,14271129454858491734],[8991669117947422406,7332989222035963339],[14262878194504505039,11386273488480959941],[15405861064252615080,5908360066481489896],[4447059982365947082,9378084212355569237],[6306990976697541236,8313279886834534705],[8013552171848098863,367934970370854619],[3750556094287243475,426330242241897447],[15172945539009206344,11752429179928866417],[16755198130837364416,807925183137591383],[584700207873923260,16414892597936477132],[3074076509354434827,9047987804993632592],[16369446136714982290,12510778874308840408],[15328640816718143036,2920237424825556878],[1912649829781338864,9911795375929484276],[2160071194164291227,12400950088746107575],[11475306399607874560,7080732208582545020],[2812182458165709041,1727310628620022098],[17479712090177700856,1920848061877972586],[2795853682965041826,1636235044265193481],[11221769822532427307,11386744875858433379],[541752650129545955,15202147767806169394],[2445970598480424981,270179215366098736],[11443138466559966869,7793279133389742431],[16792464015616076047,11499709773218937287],[8226014967581264701,12697314442751081740],[1141331417111344703,11511024024372840192],[6681098799535408733,3852302709298604577],[5074324365195136140,10577066197184777451],[14355891667054011344,5369536239845085477]],"wires":[[15993128109709233404,14613308153521200990],[4889056810784954418,3338571623765146650],[10961308602427439714,9573100667128667919],[7986860351125341782,3448155476207287001],[4079570438646132066,3290130783459292287],[4583114047374983489,11953382186349959724],[8333500369460378364,6341517973456943424],[10335936784695461098,18301427045547611621],[11744135446917770870,10575830433848642859],[11618278352426395810,3863937057772189352],[15504354054502989825,17255140692127460527],[12271760337631161196,4222084047502941233],[2336663633217637509,10782669297216481731],[9991480904990312398,16086395312318372979],[15638759237874440452,16599303756805129499],[6761068981827896661,12540005019560597318],[2801267482080539022,15302438264012392418],[15723097835884720376,4113686030424630609],[9854674512907666692,16054174583062778042],[8265133876020597887,15690880630281073176],[9200454885887679021,16189652039795909826],[1994278769538330432,1834347856647845217],[7803360314260548972,14311363677092319006],[15952484239722088339,3032773446452982065],[601458650610587280,9503222669840637908],[17773050400733698104,15295974529214872882],[11556541352499195646,10384035279415929014],[14380575166848176020,8883339856898158462],[5343769557532832934,8023221734714716495],[2107951264448281395,372668598217516752],[8018227743126308518,6194660021696810925],[13370061503049623983,17665123578498708262],[17868038914948129057,2837197974852114908],[7769155984217049615,11756178085345948698],[8362822272734055665,14027001431976104905],[11955194444616647361,2002218552486826237],[7770047417653042502,10940401129936213155],[6894563505739168290,16700636154378671865],[8272964226897922332,1847196791031554194],[14729344578950096170,15819387149469253743],[7182489485698082419,4652782289706036101],[6450070494121603405,805858095684863235],[11002492954761144518,12106496971960249211],[7503303917235686218,16314394332544213226],[10028723570280849560,2283392023349254702],[14632175403650372185,2309562511474810154],[14115818518658065648,8235740016772757265],[5788025266573385503,13053073218677028280],[11125214619037185208,8120067362613595022],[8788475407023433530,7923281827353130104],[16025792785389473776,13289092673418353666],[17805338804739167356,2829661067919302866],[3589654271639657861,4483288498856894709],[10752693642206999113,4896386613544114508],[11193366327241465400,5513110053046667955],[2016591550575641288,1741129297764426968],[9098297283804498633,12133213812089523572],[3930102971678266977,9942470154636525444],[8493851882899261370,784081202182911921],[16857125864436655387,12742855935617584999],[9555134116445947558,9600049584008086593],[3691639569111504582,12708861235168128021],[9454284828652450013,1329143695531335680],[13544619629378269545,16427832902891756957],[4307756514082167624,7279856585573894001],[16485597549628240877,51642686017771329],[15584447680821249160,13756316870097639012],[2883845163187581862,3256935367348530668],[8317148821342530799,11468945325963296338],[5580121861361155495,12781132194112542517],[13346133619824516538,13575185090054375074],[6527085717293331464,16278554464298326263],[4029462734578290104,12230240020985907797],[10911782262885354037,8314538104589375839],[15934248969004098544,5403453845256533202],[2535633480730189281,5577130541880786605],[8369032734264567128,5425471739947679212],[17417753915802796341,13532229148788050398],[13523596649429933665,10116530242521604816],[1726026993646962478,18104703982802776895],[9691439389287184601,11000608960935134981],[18257686578856163705,15953705767286103336],[10702388553767605289,16707990059580893416],[8068578677334972355,3822261960093978609],[10014162008463549462,11516764424596970580],[14762483497918158949,4902240292050030715],[6985484523351306119,17919892693626560943],[3658440167106972529,10077829173009506219],[4811052220744440223,10350068067427122949],[16213917364791418215,2025014132722176485],[14711824299673792563,14990240337363471729],[9659584716263912568,6039062987289066065],[12313652474928464558,11484308560951202201],[18347850540034491599,5563775223218541224],[7202097119571974662,8363647326276447442],[5369764324546697405,5687603335639844002],[9525968358856936806,10237947510765657454],[10310074353868279046,14262353847470650662],[5084966199928069996,5248596821531481046],[12299680676630388729,388927633860997677],[8462294292223264712,11200746291790959157],[898531541405356701,8440423879618654322],[5937618548658962146,17103583693086711200],[2927659756011627878,10726170319879384924],[15019150018221912494,8586531036622658254],[17079100225142246740,11667213459541526758],[10678189649121290303,12024088316880895679],[14525842343352601610,2402019113923584752],[1481490789998948573,11870370092111902500],[8562039026716077894,15439947560099526429],[9685591671628642907,1952070533051552767],[12165002920422235262,4390289143744263643],[18169543128442554326,7617684607621182098],[2943833827727853489,12758458823238805435],[16748364804218387874,16895867629583829468],[17261601815805184820,18327624928839040398],[16825892205696510719,11235864018241636418],[244027264220430950,8610410004489069811],[636708193615349147,4278282176743856904],[4465498287935708990,5784460384413601975],[7187428994503739362,282411305300359386],[16457006489198905542,12597671126360842276],[7647652972923481216,7820376939285866087],[10185169422852819409,15571432719923671640],[11972945065640509753,2196308614007998982],[5496028257468945668,3036506140326866635],[17610840623165159513,9125902305873055543],[993069823945269289,17547650862654603935],[15036621149865765212,5339956620012696027],[9593944585140032990,6052776675645416145],[9887026774527888510,7548364579377116505],[11700469229315801085,12555075390585578031],[1560432699375251502,15851728891571516343],[11333872353346554395,10067692292377870359],[8905934457491977839,6417289199002527688]],"plonk_zs":[[12391580949275933757,8821770099137454012],[6342252218020012565,5238720581665471833]],"plonk_zs_next":[[17163192572795970773,10197764918376509383],[3403409093620189527,6069659688951872901]],"partial_products":[[17875889552424257824,5738848987650643953],[2197364262890000984,16478632417502461074],[15512570278178375888,18083223300248597554],[4948959482186051849,11123312131010617592],[6289272168093105644,13593265709852880862],[12986636488668139883,18344056785564791693],[13305425743236976851,3003108173379630092],[12683775018818436833,13331422921559229760],[17237476864865558075,5521856948775463598],[17318141717691889455,11891023800568338240],[13151106043907717698,12184923758204538466],[9017994596805377345,15508075907346881306],[4668273449237026695,7776809953599391337],[2004952168426870890,9125944762451604082],[10875455452715924231,10516010388862434607],[16991556317626519281,12265076619138673902],[14635420130019169109,5816910077688745890],[18063684300549118955,17407535531326759147]],"quotient_polys":[[10613330159291419535,4159202004671256141],[8703140816634597292,4225244519241827237],[16998905594112670923,15128909767773287628],[7642812693712161228,16274035655115930592],[11164450384971632619,15234495223904402913],[12250723213368654411,17651772954259382578],[7585209075123376854,16729030093352023394],[18446744069414584321,18446744069414584321],[16595494517940101102,5748790251324026675],[15810584717403838846,7734474510451018546],[3144401681464447127,8859455105233566113],[4283628193264940010,12337605019830408818],[15212798773517870647,13955060337398505009],[6892352646692327924,17294197735917839947],[6160318643331329366,3927132849474051738],[18446744069414584321,18446744069414584321]]},"opening_proof":{"commit_phase_merkle_caps":[],"query_round_proofs":[{"initial_trees_proof":{"evals_proofs":[[[15758775234507621717,386873473794195,5809584622623378771,14306751210974713097,11302554983959589528,1327832789599027380,236502180870392261,13264905772134066913,5857506752267947624,17058040426918110216,1342694698541376124,11247410261659140067,14350114415645219099,4583230930005435996,14076503119706401870,15880020041488722480,10627821187628142573,1044749384776247668,13803094214927487198,12544379753173392690,13057050371697995823,15330579406842572521,9707896952003541119,5786715142615771477,8959768511509209644,7466737346920902526,10422822089882229296,3504773151285322564,3419470529597640908,15847878555525589235,11410879681056200420,3245040583009025788,11698930509459870103,13570140684066883333,4107171135279491735,6816442511716333526,13187679564150780741,4957755858430971647,10756562738671628321,4016481060180503199,9005810410597864305,5421891320356037402,1065438370161549321,14370621258975165237,3366746491579372093,13006491237563855897,12466845178667283423,8450232994099053767,3884423878484462695,16694495941341337565,12276393389691729961,16037686545199925788,10895977186829848590,17156636392074348353,16170249794752475724,8130522156784339061,3758135148585897412,1504470367743606760,12820235152408801940,4728472998567873843,2824641811007953243,15118259416555888165,12215493150006810512,8316066871495739628,12009914754943290636,14195274612200124758,17522726866577553243,7499475354690611506,3544346123845523313,11718047683762303071,13490728387453084563,2218114863523928610,6026027352978102532,3747782856048583946,17203016452260552408,13031495329552308162,6244324079390071668,12856980774624272255,8466864435764048595,15680223617309057078,7581596273487594510,4663524874409993864,13442298349819084674,14052760883976538360],{"siblings":[{"elements":[17239242580999488077,11539643569776883494,6361888208514807188,10670222042682017864]},{"elements":[7372999055943322391,3141364051179517969,11032666934607065725,18114007743554457067]}]}],[[9107796823381699083,16818241499348717087,16299777022319025518,8287169742405572123,376258714183598315,13026986149502183025,10301698257265040980,11641150840159593374,17853449352901191962,2629611526615646454,11869193927653075953,3939177903971412578,2564534621613472205,6440130997149293909,17949324353578194713,14659817175362329701,15241406140910536369,6995100056035354242,635130890589199730,2535253958939898103,3975904728006945101,16863220586811790805,1351216244660481530,4071555695364712382,6055555360851423921,9541498917423420728,13112420747012181066,15671167133169760750,12506597918365809118,8485022949556297385,9748033045344531643,7156670229416695335,4241311609079035834,2681250753393461645,4932186409076346716,10699360409517437037,15526658194990367550,3189222375462990201,6532454420792119500,18257197926753371713,18198493468131711267,6522740821564568701,2502102946915708696,11191704500865694380,5001925341503033458,8041638605777938005,13843127350487169426,1554642176948794106,10061535048038697629,2720381934063932208,15808730798371048664,15059593400299396355,16818792853867504932,2029454476490067564,2240969371637390527,4067751554362618070,13961509235570093157,3070708865470863205,3214366109687418846,17176452202648283319,10849591950258172605,8109065214527399582,5030851266726800223,18075191779791575660,14568110306348447608,474861599460179399,17467756037234676326,5720044220413142195,6929562047244907495,15161988023207057485,10568932572365519636,12632981401046128373,4148541605667271505,11024780705968415512,6337414374853957024,9789235407784506339,11463215104855855696,660351453363580548,13504134212855897862,16200686911042369114,4677808870410116049,5063931227814557624,8257632762511860769,17282574532297749629,13662389025224658311,18143852554449017905,14257881207452883426,8424926045059867861,1551572599337458772,4429356077696033658,6732330743209249110,776215472741980953,1331360349410030176,17810744175007887927,10173651623955639597,17984062406572467973,17574315389903586039,14984019783925884679,17542231225497725450,8580909479266687787,8458716678637593367,18277377185170186762,12599781750791111187,13351711232948118207,16406849747846261779,3666907609958002991,6158759824122084042,4245190549527318064,2646542004673882024,12045686992593752880,13505301756028857503,8613916403469057658,3935103314592931169,7924265725053452231,16246727901709903601,17249086803906599782,1245870018102234187,11851724969693094563,3666215700939236110,4158830309255239674,18277386374041423343,18264855912116155930,7107730424048810560,1314045505292449107,675889833354876768,18435693480474735056,16073934374127454996,13081817221608652286,14796392148849930437,949275283130289666,5693480169603240444,11898917273469915071,17862527130534730925,18352825158895626412,6115527763500516579],{"siblings":[{"elements":[4689507950239423834,10455040152057299819,3704180430049165071,15433459521157988482]},{"elements":[6444848530783558746,15753263428135990938,97230722525014282,13121239098415651679]}]}],[[7672738634888759357,7228300772628482534,3032462065517203533,5186302717828799609,16554285787148056024,13189378491363895461,4052340454363243828,7942059330400588685,1475522344971973418,154110418926425965,3189588580504426066,14748704812343066378,13261496501993291215,9721478026725725765,14031354610168069083,18165790650214807091,3740248345047123969,6404207123370215081,10175620813713453593,12730758899532534792],{"siblings":[{"elements":[11008651319496652206,17271621044655441162,13442446460710627860,5678018911057495402]},{"elements":[13249153965122574758,5090773756675721835,9423331643230999862,14143234509677074129]}]}],[[7130148078471576328,10379473006867291287,13984853568096288730,14256973919612549879,4220840666747059324,14670780262996732322,9292314610272843862,0,12271095177976667588,16592079572264341866,1303257653717182843,10521842996837927287,1235559427196663621,2662319354479751752,3870922848792695313,0],{"siblings":[{"elements":[5113187503325397342,2885340301747824507,6592815064973389527,3153294030704309845]},{"elements":[11953638532976524033,370136659460033386,8614773404340959242,5907159334526019519]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[16924866050735876177,13816519302097419917,7464139112843182046,14437952329152815507,16102384223791600321,14810813990558044111,16662440353177875149,1061409571699162904,7373177684445197294,8117396090517610097,16950522942534043099,15190423556831993418,2013849530758379249,10106276030980799921,4688167895664468573,11199520023691915745,12916963807333958703,8891629328669208614,12116546715121470819,15688770843053582561,14350605526805601296,13147171646478491,15311619194950304883,6242159665686022641,15732692263219784389,13119615053780272570,17283500801830056651,8669172947497892389,5600112933692439337,11603617635739004623,10958013080565881122,6756936642788511901,6350951779140749038,5702398593327775113,5132363453483332176,8716842319797456142,11624620380491791092,3974923074366480131,379613444538228148,10530635117553576928,789756536524334219,6823617666578700574,7561420934971151619,12015542148157684358,14637549114638859077,2797283815309201126,3375500561784065355,17055717231604849835,3707972013117512372,1663599290483210682,6456202370538400436,17451983052281845536,11510162037317562450,9805177456638634146,6076873354448617196,9655526888190138945,2676435616420129592,4185640816350990950,17645109193608274006,13809507359805699769,6654978868455806684,14694826297195400326,12182790477580287390,7828078155477120532,3723899049361826298,12103278845470960974,12790586648153874605,16430188636519558554,12857487921086130134,6350598647806992999,14816410711584616461,9744095875078809856,9425670397198882701,10776752048143541453,8879552683345551973,5102716046529545228,15326394572236987555,14429893580759812947,9222186179475572142,7229097401750883501,2013355818261223436,4799155268953746556,2985183418454777881,17703115347578512655],{"siblings":[{"elements":[16260818643770995991,4039943982022423016,10581615478270533321,6703349476043001264]},{"elements":[14087148344668613763,1774479748128902785,17398878651719132826,6925124511054673158]}]}],[[6209288695096023806,11754821224810616127,1614401657169185710,9181154449473058981,14517406965730334709,421890669199208673,9714104680391328922,17888523133337981966,3677260629275869475,2712705186290328012,10843264237944478308,17837014986365969866,16560716173905403756,2709791874544526125,13562372614435410855,7707806001220352482,15162542632027474606,13206764077314701940,5528750523311948654,17776800351104087266,16233788205590489877,7467021167436256320,7133171934849595948,15170917993844420009,16799848466070345767,13038978791040417791,9389098043475229472,3743115210346796878,1259406948462186055,647555795806304910,17809567727648037874,9409046987924607365,900357612823170865,2520965418715058586,16951364619124390249,1904753273981890501,2570201422748521916,7838083160818167288,9115941526736666551,1613905464912189040,2834862830664730807,9236906199595136430,4769944967931345380,11101100094110727373,18056108466162317851,475151028685383330,5580990948808095606,1599115358005786199,16466670251688649696,1203617880014395540,11775552883182953405,4586708587334839181,7650966255550616269,9123105392514467318,13760871317618602099,6187380430054086287,3840338158153349429,13490934875370936716,18111705823504646109,3095668702904401352,10140306983092532948,17804134954039872559,9297416213707550544,14621580627532096200,6896432319106464641,6088998749724584878,730103051256216955,5262214445231281202,1077398998916936845,3011631429382192957,13740361556637458870,2807185630407502106,10715214476597813547,17062920152153564346,3761642593791268176,11795163930921014268,15326555755026814219,6721852160500021582,6416544756102094402,22017835527409158,11287595025063085019,12036034851439834133,15962180538838018483,3162820601875019167,16069721040789007673,8719309806113221190,7063317715566181061,482218899471597641,3817122305554089555,6507196247838022274,1021794000172919816,4793053188492224196,8678631991460561593,8888012136592676688,8472378062434278551,6782092739640867057,2975087940612600015,10290348549310225699,3908424408978431842,11480891385338328139,535251804290271818,1037710052729307394,15334169840488643281,3530216292144975286,16331411928017720319,5652889702168669680,16651431518779171177,15827704458168624030,10982839219327627120,2749294162284812117,3719550241728908732,17126519184019963115,14640826156142915083,16348346382602629533,13444811624597323325,12848647038506081153,215312766352912810,12331510361784429638,335944686971075167,14070485817733973421,1087724452286972094,10296273038821427429,4566382823291850269,11797837963931421646,13471524299337219231,15899108850724268410,14264415824084364113,3235234732392728374,13293933246812281825,15011924080503361725,12980633493300488904,17078831544486982100,13282388424748864325,499531308508936461,5504847955189061171],{"siblings":[{"elements":[566820395294042008,1761561378577597408,527201308512152841,973846767421319128]},{"elements":[2774777527650041750,7617353635091784050,11324987228534005431,13299582699468862202]}]}],[[1924453636364033989,10034907446602622016,3659268270437857121,6242967333957556127,4473239643433552308,5053270898846164558,16453673361723697161,7674298311178965434,14687762130981782422,9857227907909411837,13904281599248227015,5092071987576883153,9663995744100657234,10051480693717713078,16063277187024329332,6008706773411798267,14775171986767137300,13067357912002743277,7573022543235219254,16851983242475559807],{"siblings":[{"elements":[10633173739505056238,10213048887828042697,10973939443125239812,6957116582652844732]},{"elements":[11427885377882389388,3183865215102623611,6645418160864263831,5502024360765194167]}]}],[[16719487813682130713,1172096102568686463,15263096239763819248,11912205106002775104,7325715359253558388,7879487196319315421,12044799378188706020,0,9451067244461604693,5350386988421144989,498919034185752282,15344848339418363992,10427753941389974190,16506658196993015380,10222028555540498095,0],{"siblings":[{"elements":[5602316290589248372,5641873238802308333,5498020839002367055,5113497127240938531]},{"elements":[11505616727214513844,13422125188889298440,6416583308287105305,10395346502999301503]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[8851675123942984855,13286979971740557537,9834126998565970596,5809584622623288696,13247656080055627728,4777901864804610876,17333284365170677963,16436158487933390318,11490477147555676912,3072761297569234820,552643525674882018,8370546490309277392,2333494491959714090,17448991767313658741,17178276216956238427,11133046799753326189,8461253717621928418,5097960703174945929,16493020866127033924,10035082652103005473,9849864816006832510,2833206780844870255,18116694173237948464,1496777866531997447,799526242907756988,14127663263966452127,760194264724433146,15095308076896511973,11135461737293715266,15403897199445574929,17445510800734720088,14429340298281640729,6211456952353734328,17482060761998425245,12562394992956522618,1860693813630035491,8738934514331990160,8085131640039682970,1883824595765440983,3413781727385808209,8233761986726001183,6426306711136105278,3610557426250641538,6135560633250071285,12799631786109032592,8084371407196280122,17425411872350286189,10979313040582867127,18087042872504358927,4600987654125867230,1198356080759899761,933335246022977218,3354397481034292093,15818404046285795272,18007619145258756406,8881893302003597577,11127937698576551337,16588820276979915454,15572213127903066703,989673867378307301,7293001769981663329,3237039162689456015,15780235461315319557,15023714690249036613,4537127851533132300,6051776393843892874,17179768109940645344,8554315582424560258,10064970576445902910,12727538989908929847,1703492756478929188,7685564142936830185,759623113507426400,11012935820788927071,13355668965285845447,6295437776744953185,16074176728701522942,5160986149245930884,13748435125283087031,11766589459837687649,14728034349945049849,11470525794731213732,14104781483456996739,11380647532262937607],{"siblings":[{"elements":[14290926262318189984,4469540445357943395,11387126795916258084,5986630170827251557]},{"elements":[14780924131161078489,11232344161552745537,12663829209753110762,1955609769005186945]}]}],[[1751796706371789864,8389492722321835306,18398241455822516898,12481551404849230620,11278792137604253234,17333986410084892011,1317738802760581908,2720983024656856052,6424095037369343597,1109659732012068431,6374895136424401821,4478003365893973136,17087041742176647862,8791993464518322036,18146606435083680427,6635387850738352029,6152986238299933045,14786683562147922501,15409556706082526229,16181481626643778071,6134371752720742478,10606061668076092293,2414557616516081518,12460272647144153171,9802136161156512262,13800762346648981246,13061768322008871851,9288520445761061261,17942572224014528340,12430439209798728714,9494855137262637072,204542094345032325,9803102879158376480,12671423545891915193,2922973806835326919,2418347338820207167,3341471780642685450,12153767473063754782,2586581093642786840,2052003385471132400,7498039909363847049,14678569889795646413,8334519322937802400,9615829012992636147,5623976278603770175,2347830082651477306,8130487100667973414,13749952856801269538,11014365343989197896,17773546112316213714,3582887759963794194,15432789078334212269,16403224084296878270,17626587750717479057,10906528057625892954,4710284783495176582,14982490777050089489,3229601192955022873,7846247065947317524,15900233438643376711,12064544865459145882,7415054679315525971,17569423856797958544,14330996520932505441,15899001129861388510,12815795045288772652,5498446285833809117,5007223485066345213,15221807740830570484,17775720997110882339,6304773717395031422,5498770622989839136,11132862337157253160,4026970657946832853,8801611861002386340,10304059626273973303,11034195057192561981,13077798928789680253,16472552591643880826,15455483099810901917,3315087258015796935,6030633577684877168,13074259273205512753,10147735686179860354,10505872065646409375,13968315791777871658,9415123383328243977,6640487902755633331,6422575687099967454,849300708473429028,3785137778183097428,15866123099713646697,4087969892502435020,4678241177159895083,1673432034817211536,8558248803929565675,6061747590662355831,13780242189525283614,10755192048830186797,11846591203769661432,9321373845496566302,15487626034100841308,8262945057260863613,11286122729324743392,2341771865291386465,4077068741681694204,1871530944485207532,3289837678450346621,18265675565597774076,2838221433822666708,10433698121094403059,3701376489846909484,1066986107135050841,7668727706408712478,2033220902885136113,10371749774083807183,7633459740963760148,11376053584480971659,11217699052496362245,6848223315965909479,9543072332176768175,15163398185682025335,3489643335277761881,14215469455964251691,16906903150853933363,14175412385806495559,17621304981966525057,6809529984240929711,3608660222563160525,4483192888887353408,14073616356213172319,9691199332179769130,3778366953164211971,1974229805810252043,14398004195382170744],{"siblings":[{"elements":[9916040521395795636,17706695849820786311,10388710891812670808,2660040019813368076]},{"elements":[8192815758639541060,6706296117378705671,16529742212901771218,14816823582778946484]}]}],[[12612275191596419149,1923339754728818791,17420117221524788875,6540743748199180363,8421528176564597766,8531795031875473381,18431474012313579070,7265774171072012857,15467181920591354842,8939754691129633862,14315918983536325542,13406649360227042647,12512061660930766994,6555208145068956090,6571590192802946678,13650927010009446060,9245655285424254671,18000039461003666393,5245666116243801021,821684431411585588],{"siblings":[{"elements":[11142885485448599256,14712891794401184427,16485848838044883015,13330634944011789403]},{"elements":[10163373677421562940,8568843666495184179,8586980723393517185,17999155642592664334]}]}],[[18332968889386812440,9394240689147608883,7996101832867066573,4375128920797490155,4767485535368427762,15342614791945947917,381151511903574286,18446744069414584321,15455115238325009021,17733477553736456153,16745258056089221864,15903415050599727879,12188977486068566629,15700941355530251273,1042891479572994692,18446744069414584321],{"siblings":[{"elements":[17861259107350470270,13346428569057389442,6575395251066611411,9696795917591481410]},{"elements":[10398783662253636214,2332471417925761577,2571958879479269894,8535697520800831288]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[17206109735828519157,7800246827495717315,8020745982839718295,15714867855057488863,3032318802615629789,1169567726971474766,18077249475269052531,10285922619335735314,11648103021583209605,3996410113584517854,18021569007658151356,1121227614355612584,1592147969364196194,3073766620843520534,12172344610021173011,4468130253357913066,5363309130729316017,9060428272251534424,4327366249438306814,12824951185045586379,970387560941176564,1824699754772168200,16516673390223370778,15495504148671108555,5610781073527305718,9225766756719364123,14479804754371532149,16069417019529649419,17028164268165101450,14973099585692074123,12345388468971828985,10528414744792439808,17230049879188214051,16154658027059712015,15806738521538973459,6684427148667459238,11749556303403888769,12277889060912305273,7026639429275326762,642243559881271168,5613002337837507560,1314612325939215515,10637190245129486168,10947029513521575725,10695442475209097230,1990958710162532624,9599986486111589104,15654307118935242621,1889638351941074398,2585149121863491085,9584210455109621775,9973723166009271144,17569386003946470953,8837034270941763229,8599448158215233488,3035519488129568086,14838852793737000347,3963604704401543679,5368414199855749489,1818383580332167691,7422759722975509296,16541699519595447964,13735133402274667031,12507375995692726335,2491323809709365610,780565099070518451,13723646817613359804,17357164720707240068,4923388621861509606,11015651857441784430,4591101115229292098,3357641610537422129,15139876664150598566,14395858246625084437,10527568225023487661,470348566177183452,10758053878856044596,18226941559918030836,15711582105394125640,11670821929750316582,12032761100378838568,8846227178474138162,6522102506143216099,8814827997238842364],{"siblings":[{"elements":[7403663046154704761,5184547189845195558,12550045180944025872,8146440534872139040]},{"elements":[2620616561727944075,13455578190656343205,3162853890679506371,3383643176103145107]}]}],[[12568851523521900434,13486339453494873041,16022602508437282783,6591834744224042068,11674962719399038050,10313346117603081763,14065664931488244378,8484952434786589220,8079777305326511937,11854625019392306355,640464203718081707,16352743416582258880,2201993653893747337,409236969796572700,1113816759348813468,6964243491858166154,7012462978613866980,16048019696976684964,4281460206876859155,13401467091668973405,13818305047957721473,1049228258051572746,4968982890488096823,14837678296967098438,5118134682040056699,15732720115691948281,11283743827736031832,3649110957193920549,10476965321702907307,10417682364631269409,15389410282442915525,16298669698519174532,17535149094031884641,6175446769704403003,1783104863110567415,18358984705370296621,7659838779976882458,1320803654418236419,2271907567534018879,576539580039820827,10477941206633926015,17601055130125181005,9349218331269729442,1225477160713522482,9089714987704391574,9081059468572337199,12286232373620408523,137113551403642627,12154149718655616043,12456573898990511713,8221068022929934981,14695178186239009851,3186444920671083856,630841906313931487,4197650950258841957,9632984107508497005,3214432886183939704,1100395461848401227,10494921722891607178,3664708893561978097,13806533019251522617,16580628740064448487,17794142730867595571,17853647541657092724,5925603542214685338,14485270349131365402,10741962077975054938,18049959169316354951,9302450193979834056,17718871339169081035,8594940029629268027,11521617245439803776,8593397228834482338,915183881481395790,3418683789623563463,9767711440345731233,7907939255543061779,5808635654790548365,12430768076983723223,18239047395564258461,10737663884974606070,7140033604460508515,14064594989537576240,8233714060223427109,2938801565286556123,10138055496784123665,14410434487177650092,7452521588496496493,11917391066648199517,3408394995473359252,1642984233991193367,8248549098059997950,10298419509121255901,3329743833988377063,16801939180807861044,16129652271677676776,12096513098985760092,847490950838389122,17817042185770234913,3206011244135673405,15024959196295407986,10604166932534739288,4703410617912481581,8777942294480965277,12262153563050313819,11229250094002606405,6165875379772293892,9439222096124006280,12712691923697461917,15388302280614585681,9893147976583523883,4414976471337570509,6014199023532452817,10331863982287721175,3605074476431759310,5314516480476730406,6527510784646472785,9985328486167366699,15371406219157198470,2465721177148882677,7371980994114740419,2079330597804087350,7515069968301385650,17754093517966903991,4981303926432219349,1379756871723928600,10824354146228660816,4072351015012298705,11884580964549528556,11606651493765209406,5487579857065745829,2766201542126681675,12545441215445535218,12909823545033276792,3094758225964465165],{"siblings":[{"elements":[9256709042933570165,2688531142818770110,11441784156990234908,7881072948164727327]},{"elements":[16487938095250593750,917282748861945213,12496824388769292131,14495982945175210425]}]}],[[9658546326206520335,9538348909818298140,15352564581476519481,4534594499083000073,7171661744940453013,14342379170931486157,10924909116714732577,7672658862539910048,17972916527778266331,7670895383850657715,10425258085542388798,17017807807686506743,16279099781079527492,2101684466587964116,3509528972812771422,11563076098576743057,4115124359717931011,12064540123723508818,12386231961572095118,18019065757784650255],{"siblings":[{"elements":[3116478993762760223,12810931690871676169,5130427459448843263,16360078904517735910]},{"elements":[9263023543013681760,18179719915934235543,10700840944316430414,3351131312824231106]}]}],[[12332106248040857996,17811959529340387805,2738305515318552001,15174203295129404660,2884481559324690180,10244429679321510231,14780436413776166942,0,2948468875124901233,17328296006373001310,11578153541402571496,17378787233575389485,548045894373726072,17756623419726818195,15650684430658104007,0],{"siblings":[{"elements":[826171933221487477,14644949064028792818,15721062323596627560,10354027832481591618]},{"elements":[13398839180255659300,12639901066313772204,14930789053765785286,9381260246885052364]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[6081383232730957299,12231537100593663735,9028951210196915351,8712088703138035651,9062903963610724137,14941893713098800213,4581001816805602037,10810823613022781678,10527683056002284744,9898414260953408328,5639484381697087866,16770966891222305824,18434929416445638567,6686279143148790080,491853504403074652,1123097094060490,7164474011243401475,14001399934942124440,7396034798703601355,13461294301062095448,7314515545718397699,10285504105011035671,13908696317502368883,14450583084638866566,851471187188601707,13751791254782824573,6173092682790067073,15971135718500101486,3424425730638704583,16825662550870449504,8860043639039832510,14362683875237448848,12481713303323387454,46272622009596114,3868865299622134397,7839318709256588099,11081272550168339750,420101028552763788,10433317477208773734,6525270122192018279,5930444858353148868,12538389806798301654,18163560582674811737,5887848450053799350,16558427387265920577,18034348907535243703,2605978906145645693,6518171407600649464,4050687237046093622,5963396076090729516,3509114124151224074,7290578785591858856,4265931566184849255,3440580828124134820,13667716434038551298,17166286401027176948,4558731884728763100,15139969297728511333,17876202707430743760,6227397794070479034,6596022070911700747,10980467099424598163,13635995082892637114,10119407337406860624,9742580701280146129,3704230525019194654,15500214883749125260,2335077694864807467,1464783755937936701,2526849113256721532,8933147872433173803,17158092337783679004,12064424818214998111,16432666161404741044,13371433052303320001,5000196015846499811,5295799553313080541,10195625500013108630,4083106938202593916,15467334291060108571,8801034538749791717,14170934327562984872,11368817307745930282,4245340193596784670],{"siblings":[{"elements":[3788108192752209309,5764285458124953223,4876025311470937308,1697065922247651157]},{"elements":[5146134359815002436,4633941153658423848,8230102747931661415,3646387604866439705]}]}],[[18043987152862055566,9395661307624582090,14974337014595138413,13008432744902000274,8807001897713298761,16151298400953131204,2314447761474920498,16623889736624410954,12918486580201599783,6960873593310543153,10090759942613392607,8995893098138356801,7790374380488076935,8976497709071348658,15534580228875532001,2078600754494282429,8014848065336659010,12628099723218390123,10328587553377019096,14502198172129672719,626157346135053619,4878968188663430342,14447235021256517258,7799050551812032406,10106222984182715509,1232200860458200958,6095071767320118214,13353091143292265827,13516600083434250745,1594137826777440865,16292229169750792737,6392433869355894269,65069802295473708,18014685906872524691,5628662242293275917,10366226685544060295,7590523037338593959,16327182218481118246,13025528260627825379,13332477632175365855,600153753011968212,6274118460943843262,12191589295565930106,17796705390673758066,11232791987132166633,15259203687626805417,501750659885380256,11575437629101721397,5963665269951629190,8448977635137744711,17563839737645041118,16262645288495954563,13865125489297686208,11573700566794628062,16197759802346724520,17991542572915109140,5380136039372225912,14780874493024046130,8199535279455008666,16210983690098114884,16780330239318021632,6334453186099001427,13062413634039154709,17453312110455612111,11899507377673952413,16747978506690195609,13425872941646262122,10998973512715925,18257949304159267184,17470277217603223104,16156844375819621203,191351167622383500,4468869244590719844,16328574980792256234,13629270441161429037,4398498473213294950,17540839364487480541,9502919177857200532,11564781748295649753,4629987746146543417,8889796680050050208,15584294499184591472,8452974569898538670,6927624804775324662,3729322712528147776,3501754328700548219,2143498522442814779,14298902262600201515,12803504324053580854,9640783035267631613,48074014100573407,15594287936113154069,7247283465458101960,9981878998347017042,16930072603218890796,8672452189663087735,5854058435971246613,16855438855436326297,12449358195552717500,4929887797347487214,12178033719376820291,4754074946673925082,13464795205039438616,2565155582845662077,12837389378484574299,13592402775509245890,6961725240902252253,11239602280267727511,14721075723676148656,11517266100521544715,16356056908284513366,12730752098423984879,12774277278171272762,477895920383909875,3463572692221651641,14530473633980653003,1927582583420253358,11791450343606098433,17693046925414281150,3400306305459558142,109453838235722215,4841548013667600247,6563643495528607596,11691657688117713271,11425899378618289830,3777456674272703378,3895405725732552043,12616522385399311668,6876745232742914676,4244511318338876738,107489375634594971,2268172316042009907,9470667746332193805,3158675776251911142,15398478734856412757],{"siblings":[{"elements":[1421441945257568924,7732571242833086822,16925345642767804316,4457988452868825075]},{"elements":[12450432780342022465,16454403308535983110,8560124957280353222,1661073615384387205]}]}],[[9134795981137221308,9769508190421670777,8491956119676732589,8050183771523162525,2024658396556937263,14682384953540785043,6336570944734293927,2970331673644770533,12590256002164118175,8274519871688774460,1951209962540181368,15287325044952318062,9544298953281569681,6271796393284646931,10501315626873995037,15277970551098417064,4624545434102979264,6509111338546468134,7032488268341603619,16640101809367253675],{"siblings":[{"elements":[2652080519009539954,8413624966738978730,3053849780887272292,8796340232652093917]},{"elements":[601557221461585435,8052217955172876791,15668945336147309607,15182460188567573019]}]}],[[5304399385035097682,10478459625913297306,3109846687610646476,2280140234827503331,11053987714206352875,12464956842060064410,9588654805377424367,18446744069414584321,11132361839171062123,16551788521428088716,11185851480691996718,4282041527254949915,15881456478269174477,13196213102629806479,4008656738807059703,18446744069414584321],{"siblings":[{"elements":[7715250371640021961,2901328870938250249,255526876606397899,7996732718912050502]},{"elements":[4343441375984014013,7797257330453896990,507476921440800661,16110064409382319716]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[17565631475122486162,13112428807682437438,814657839979919418,10687100073143457592,7287583176578477569,9119957951894366709,17912065094023049988,12001559769958506954,1247349890501030371,5087308417645836219,7398662816764770087,16524655585167564581,11496023076072991062,2882936815197941317,18421628275382862085,13615285961234747104,1217449957276156110,10461960450316473632,561574932948938915,5261392988226429767,36963788263559132,9164850294867114694,10737997989809144125,4306952301124110220,14963079343147138648,16286627233757869662,11831708559580747688,10815796126821418460,510676066900126240,15541305163140882263,18393128724329928869,14157594831905582813,4329327111404598849,15357188344968816401,396764937644349995,13482615543640014731,9197483402030863726,16014565579788705443,11848667743940537624,16170822526494470097,2404997186846373889,7957316412688043679,3771898163941812242,14195364064937291513,567351891378815016,13136595019898101044,17422897611144875752,11932823705699681826,15599574133270197983,15479028145816002055,13608358995984024845,2916177584086613713,7687033070139185553,13404022303248111561,4486202424414820354,10426377083832067254,9822331989600191753,11935893039680802137,16920228551281010811,1499676085202553257,8480186318221636715,10285648472756480424,5738310774792282369,3607187035486427462,14168641485863246652,14098418211595676526,16413094492990064503,9333103647472289713,3112143557161723528,526758665457109891,5594545399592762047,14434557311662235219,1325332632391540723,10368959042329114463,3273821888404289159,14386742940437405981,9283670432780772711,12361895721614603310,10986471371611471679,2347319240314755218,16019526439705881998,4646599238042603787,1916663449684460034,10224024849529566382],{"siblings":[{"elements":[3586560659949534267,194943118788111503,1282749807679583513,8381895631914176563]},{"elements":[3560583152441324605,12581631521285452247,3424922011369377233,1328356594502091179]}]}],[[4869952380941436289,4133897440024983458,3163655068312267756,3391064538085196635,3287913934823146391,6928751158405507108,15521928648576117813,15365013406597443388,3827848148850518623,14782781322147411711,17536535945725015358,18006569616593368353,5700715121190851415,5913050461730549265,5397539814759118243,1318442322700803651,10416206125657378399,1310656269619331278,8654045713525353784,251878740014884688,694059065382997642,13422223775811773679,15617572109022153915,10068811470103675166,18362014416310082838,8876356642928996491,6319573854793448718,7475180706351595165,4751528096902087449,12472354050345667183,3098567340739551673,13143722221293035009,4980641919340002011,16579901837700620652,15173955526429261457,10242362294388798146,6280590026400305465,10857758549577732377,5166635296061771712,5221204836318748647,9497544584583980897,15238218244810951903,16259748325274055731,1315464825902461765,7847242499714550730,10745276121137600430,12716809712779311918,9760679498049907006,8396943065316192020,3642071137661709631,12098587030038109596,5084853937552350,16423026582905380398,541262764328525071,3944094823011139094,12158371173727949220,9266491508234560955,14529901605458047314,14107708727711416501,1747549562036009535,6587255549725702757,3280344754099252709,10681835662255538534,7717007364748530623,15400018475067730670,2653973720258224954,9822616871300498325,16328451651364026451,13745641265512253512,4701936230391484844,13217068500253690757,6760215125484944592,12352626395545696000,10073168371401941355,15356471264361166932,4205019972208608034,9748317265242466510,9449684263291691270,9067158955196991055,14347930247506380563,8748674792713101034,18027474092920050156,6225746766238269333,11997310057206389242,17047386578615986455,6367573569089156212,16272075527724564706,4506764962002036603,3983283834620166146,11669830868470751374,7363558026816155414,17180238904374352790,8554379383347091036,3329099007610366736,14017531040398146928,15531468339026271092,15617504950016457463,18436498207659801727,5260319641279508974,1400997834331645423,4454574660744047899,6936963758290217165,18273779559777385603,5247166122186531782,12398313628465495141,7214880500033149773,16044815517627648525,13853148232164521390,1045233374596888091,4382455009756195172,4598579823650283732,8493983326181656156,9955869747376771287,2161319015828536198,2406722771828859141,16639475423740663916,6167018949585208811,10597243581508279585,2341769993880140981,12864570773992457517,10963506502249843706,1012322526962434174,3285471091371618573,9525585567272065277,16153129251834829543,14707050782525833547,2285730865428598835,6799089621260591662,17094603051115802260,13539936263631007403,3926915441004952905,6818157056319385540,7089025223627784601,17790821289554049098,14786619180354077683],{"siblings":[{"elements":[15061691826736957240,9915668045891425051,6533197884414492516,15075383777978312595]},{"elements":[18359342378670632406,6583282831030225065,13761325622341558167,1621486753542556525]}]}],[[15150430742946240514,7062101738039626568,11864591143634874347,6579722616054591299,13118002360614588754,16626378146517657239,5655200947098923266,15571956619046051895,3721928978617443746,16118934338750349177,8189716277221107864,16914098225609802007,4560271526394666911,8079429676231398194,2463256631687868837,493311339551905249,5366517703704040806,14219488885705183003,6245197228394812805,10398108835473000909],{"siblings":[{"elements":[13323669970102024545,11692647813961214575,15608250790838222520,17395270194130061535]},{"elements":[18155623673109240123,3890620461936945848,8147107102465102446,4851216858920105541]}]}],[[16683445314949842958,4807295193686975800,1263540826981003104,2751097400051845714,5279949973617925823,15935738277452329735,5117543745109156527,0,18002327258523289408,15797312438689662792,1812293050436832650,3793855655518560304,3432580166534114985,5830158697187216746,4690997984177347429,0],{"siblings":[{"elements":[18192869065550817848,11564180804614035519,13517811500148457105,14511819963150936018]},{"elements":[8705372437769380595,5063216359043639174,15580412571417882258,7942865370644765714]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[6818451304028355361,18267702754962421473,7978985124536189629,16347180283393459135,6361145633664116926,4455738616292676380,2505258858791711899,695002529304632939,11791669609032402920,17430247769429014874,3041840489985252319,12405233163748057591,9086967946882017330,12809344966787472446,16995109035830011124,7696378616900359798,16768572322336357324,7138310819754603330,976034353398871488,8195190029382218538,12665899120601195284,16894226320065502595,12334585375847502634,1476559969351782938,10589562168234915876,17093929904015393037,8315255999445989029,3445625086030644506,2705443671223680051,16966889162923151933,5552571563239423307,8804488461843683098,4537629726068763647,7089974911085610365,13175105220525480345,18054837406984070753,11269971336496767057,15131729516303742403,15708299505080782151,18262795113895307924,16274373166957089271,9643495967968981554,10482233815547592427,1060415464167394507,4566034843881747793,3370011978221388299,6484480448276403383,406847886701575009,5683682927813364319,11724857305965373301,185561725735355659,17611084360923211917,14378842382509916700,1650941696205621855,2811845824638913555,4276143478404548985,9742406531622732109,16307781734977029161,18180239621708168390,10630789054813230509,1046602408486874681,10993030382099086399,5758863486405800904,12677472606196336166,4135189336602641425,15421928157050864969,10419922868804314075,1484012943339004916,4241287837895696727,5434157764056058322,4449849872981754799,2893471559936029363,729372470717296335,5564734422484916175,3424728838148950540,11249445306522795867,17229359667257574161,10492372424489954310,17635616347314077994,2396688502749791762,6429570616763658580,7144311893038058357,5712475057941560230,16490058840475941762],{"siblings":[{"elements":[1390080232068213182,9763957872728084482,2377482102278502929,15607802779117249212]},{"elements":[3612948930651156118,3695167220766880081,9672970109525569932,3405171955404497759]}]}],[[6781309989439544317,3877683856590928497,17636215601812533715,16779987632556018708,12574076700871997909,2179512248660320893,17065004260907820763,15886207506847621271,5401713255153563221,2654421249055619906,8699953379276247834,10093623179983801210,4100517552622423658,7219299579585340343,10254574599286671070,8330905602983808748,12271193894447463627,18342967073357461689,13207307650013158336,10301686481020339111,12439780721458593821,16372891391364760017,11473902471585036845,12783747263234532765,8514634067401317406,7398284993730628559,10288134077932066181,17276332434256180433,11355668110302492458,16162527478063501340,9953056689589994329,15451997781858385369,13385836350369908374,10900341077708994343,7176295323759567170,16979081616117983758,3663180964304793476,10195313237069541838,14795049336241011198,9452494574965094804,14261336867099853888,1968840624553537092,9221136903934626263,12253123147808947997,16937534502746825520,9951788812239777587,12140858276863223715,3935197618055564794,6276197601660081215,83774128914207272,11861980027922315248,10014693468156040959,10228637999340176316,6370804409135022910,5258360900925415289,3177443660587644655,16235500047009004942,9016287229681568272,16718745048855349958,3551530893837473035,14092471425168098033,7785628945244007341,4418023209513191060,530539457277408091,4652639390555666704,11713679310293919082,10287908354717065106,1390748145792758325,706465894089738673,3463560496158289852,160726746660243093,17340204787752472348,1371664180332750762,2215996554852862947,4686236313981683226,14978960363839461380,12725239428521718263,9504143704860538281,10793138438988887650,14629022825727869375,10893758902016322146,5560542997965390564,6839160092236827720,44435425082105411,2031057054330138475,4167018186601958757,8922024241884954344,11136559125705330532,4679078315547698556,10467592716140454822,8385196003178890395,7204066095526045734,7194204852197865543,616921069336771543,17326375600286285874,11842554690033635091,8565448384843967280,7321785429006618786,8164565621399781374,14117474919028644896,16876828016623713443,13283001273041888525,2859849693242369984,16088205514724696034,4681161628742418499,17416271239297732346,4411098601111115915,10403026337132337848,11232818986841332284,8469639841071321726,6852101042706010126,11054966202893161404,6015665099934560318,16753378334640611910,13742053639486567135,3492309751369220178,12682499421296130255,16401316530589184548,7871653245331342790,18368624226497041214,188650454144148642,194585751051085699,170059574334247406,8594486577933906981,4004468793413932605,13736943184156798185,7864338613429053550,17710035588268344843,17864962663169073711,16941851763982114593,3416902847917575822,17530431616498200654,11352888232425062341,18337457292073996000,477814703630176901],{"siblings":[{"elements":[12395016888907273836,13057213403098412402,10972322914477256480,16380256900976825685]},{"elements":[8845897462926753365,10469948641454447794,4925522377297220444,2080430585954504305]}]}],[[3401651229639823082,15155591173104217549,6558811886677298256,13312906143102884482,9271216141795770225,10280631673403874705,4224470691921731351,15349839368644149637,15231444827246522975,807849432619042976,6545272208111179760,5014747792644780331,11996788011097902059,12660802170378430290,3714844368515681390,12390098113610448986,2232980914182160045,6613060447849902003,9980489250270779490,11764807196180166362],{"siblings":[{"elements":[5532589419285847254,9740429515239606563,12397884417946939774,7448984655725655317]},{"elements":[49878317805500601,3944580471291044719,1531252891739312260,2425362765665968820]}]}],[[13390020704542199945,3866470724177273604,5748554993994581838,4539908977404229605,11902771632351509775,1837898957949154861,378650767182967279,0,4504174963655063811,17193438733773983793,14772452116884174492,14554429581758319811,5756418042683631672,14557013745900433887,13123846606064110346,0],{"siblings":[{"elements":[1480278448776888372,12718392196976371837,7095666899512370668,14973740580362854839]},{"elements":[17364570052461330540,10458571376407664149,15166870048502209015,14939741386096372970]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[7523476272549932176,1705103449660277401,15293099156288760702,12987255935512570175,3039713492757889976,14985757517583705504,16463281396947036536,18264315900295792233,6504680066613424187,9818899453292256352,4505229118076793311,16254154230653914942,550150885087903179,238666642868738914,7263087825434327605,6441484448657763453,15355939849261459330,11880255078065327636,7548728907907222487,1404533471563894457,10182522683244161323,4432022267057361548,36809750190862511,2007323010200318920,6301070494907111198,15960879221924507852,14593233930602551627,4982345373759219139,15717567256471167657,8183579666651717935,7987679558430830848,9121085415234512731,11405823280825644448,2992345704242460070,12251531670671756529,3440871582953478104,10413498251129187284,8838592883873327201,11817494636040018455,15838071642981736217,7471086904416913929,7705834353086640451,2712242372453624757,8470487735690371436,7844422034034383517,18070724207610233209,393279757804776244,9329088897709896094,331608844264232576,1066771209067611817,3480750949123961473,4795143132155156000,2982840093595289173,15666991392123336319,907965401824799260,2370360989828939696,4462365789430587825,3535174951793071400,3309129590422073382,9639563199592239228,15028700162382461645,2452787324455643740,13120196755126932152,12374179175077647894,2077690105363477769,4631007874748221341,13000282569068661005,11146247603951836684,7913044235772356699,14109977482899678499,1787482884378401873,14361596437212612834,17519562661821167990,9833824996951262743,12101781288359334601,5228380011625318485,5893472767372092110,10890259666607746506,620986562010665082,779537309370562226,3709390680188388247,10462282883827954253,2335155504132361143,13820705883305886677],{"siblings":[{"elements":[12177780083273276305,6671666562823518568,10183936486724414571,7643355834372816156]},{"elements":[17200885959217346968,18203122369288440933,1093813852588954452,1807294838185915938]}]}],[[447746370513897016,11537119302688913470,14826674177559618967,6333164933826111738,6109703056955817218,11309331914971402722,3304286640574207145,2853959240428185274,7757392552807779137,14511659323379954049,15388596589542887251,14995908026611543313,9795011849271440144,13639283528168806627,15521977062016899027,754509918283241575,15770734136184167158,8227521076326183858,4686511123725430640,15667229199267782947,8602937385884281478,11483375521398315561,9618018553025527226,13240477538143749143,13331151032236522662,6047535426392782506,4939899072013773369,6289563725987819676,11472091322474350122,2804092270671101876,262617558321465955,8513322178167080230,17647874026070607555,6828339562539568242,8486082982345580588,11586456658181436747,6290234066239302679,5767310717190878608,3386482796262098206,14674294692931415795,8580317341025297068,6978672284387311262,15673003592694865062,10068971958353868660,3963415571327043040,16054820689194921500,10026280778578833000,8178309371086226404,1046719197182223437,15595278345417975628,17730233516580378591,3622102692595521427,59050651863681203,17443070424566486908,328002516751049242,8999424187583818883,8717070448430123465,17742229097386782606,6851913338155318220,15146653268954593679,4591541524751958572,2589095207259908895,15449502506659888355,2525127545314227173,13203523869414387243,456323639684251285,16545854946518416639,4551885262954265621,11404499387083511230,6504263601525144485,7351573512755910894,8390323537090307991,16009965370924078359,2198069951239505056,6990807920966784140,11699873675226314040,14979959180495223366,17256366953432751236,15169367027165373123,14426342611978041367,64645075978528436,7060200000248824193,8934561500855322574,3252208276205200357,5241606914274350562,1529953555985779310,6642144930305604205,16714947037319766283,17662048889613441731,16775977224601092046,2485741543095781620,2537801806113461799,1130775422820256915,12341977217496522581,15268735999595369968,11983783737962544549,887683542390117976,12792271577472965251,14474091584432510684,8592279401513122287,1089566349234836023,12097444027916223128,1134079875951726793,17586353362925269012,5447427204299739786,17838744519866344336,1607182984704766168,8428547901345709313,14218020091427894314,6657488332552204442,2904063538410309004,11040370604564463638,14183314275414505187,13613204850767008086,595884816816779529,3630685707688172330,7756133329551103005,5114511971831520712,18079498368818465849,1003211111949011418,1224173054307858035,6979404760387428656,1612159925421396111,7572742502574565110,16672566027797488105,18173795694977539331,11889021499089615506,3154457626118492830,17219440876820162384,18179111856483538230,13770559830701020116,13159704848690148012,12267364475516680306,5437984530428083297,2017099134698197887],{"siblings":[{"elements":[6821224053636831899,15898129703594029821,12411902311484488206,4187254391153570567]},{"elements":[5834191965800555415,1524056356517930204,587122463915676402,804469421069973164]}]}],[[9935010629867527739,1778167711494919426,7472004449718049100,8950217358078881929,8665439668179477075,18320116974464339488,12712526353904575584,10372700546354927125,5193091096066705270,182002128004212281,2507852689428243856,17477880573186599754,11811319487661412253,6584166579703595624,8363009836877169290,8614228335029773442,17459746809962309155,1762604029886729245,11183399515315905960,892221819552015914],{"siblings":[{"elements":[8155101508023628646,16493572958251132170,5406870897732695160,6839300301800309473]},{"elements":[5029846025263910,16437451622629156004,6004404336352346939,3806765094882751842]}]}],[[7958216573330630588,11323490310233600782,4588430247844450872,5954362452273956457,10947594546174387141,436906963116387056,11361653448318457052,0,15635638669195772550,3351418723072031425,16734512443662839014,10920113819089703149,8322365956905913809,3633366646059854124,15991763753229041695,0],{"siblings":[{"elements":[9873095208686530670,15939824867482881366,14350070879122865690,4560594645632195988]},{"elements":[350904436840669955,15680989548758485442,15816758823924907713,4251371032728476246]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[6813457186201347913,16292758647703992019,8844653506261590739,8418148810775012109,257598705366079431,14188566667344261135,13054907711083636310,14937929170921287560,11113063179581523791,8042596091691475662,8088975227728187573,18101369027756630910,14943143602927915893,14978919543577864696,15654760751235657081,7292731374006035884,8439357553690963193,18422874179104399619,2911351474793379705,10768295678929100273,17410446462012088096,5954031235807853625,17423240168171036552,11752735854791789047,2159893997575447110,17849087447768289171,14430838415796105645,13247105220186075038,1783455347200879002,3872488841582921888,5457673965860298807,4112857996022796834,9744446854218927641,686697655644955304,6686902746222567697,5963971313932586699,5945416961952347013,7000849025639680335,6586153289696681227,4821726886423231203,15612959990111498080,4054663324186167904,4494381073432862930,10857722779233749136,2932987207271549808,13812516789503200337,18110420774186651466,4143022857424029963,13892794212034462707,15053718859175984300,4144507211974925269,4602827260634992144,4885625593176507139,6807348898367619461,8166762537334621850,1788555205280129465,16704565138532596904,629459479332617455,17954650422138512948,14676423773407282993,4439290709458852650,17145940255033179454,17521517402100614292,4812307369030413083,14965665358490059433,12716533470726248903,10586804178322663212,6688205588492027337,16751822584437025646,3035428332586564848,17750248568831761995,9714277578669276867,7223953909504756266,1599519121581393253,6368013417370768485,7295962644899175923,4773911471210532926,9441616541018779515,14141070459922059146,15925789236233281616,8288430442049947536,1914476272459174394,14112709828200927890,15156166554177497045],{"siblings":[{"elements":[11704025310434077720,9532838675057870925,12303433490119470095,948351445506016995]},{"elements":[17064536494791320770,12263744633261512961,12108241189491567152,10005497132141205270]}]}],[[12367740132420226342,4751018808570050720,9396418264939515539,13376264054680686305,16981261787975441512,14438495556604527447,4683165130452854857,16326140955015982615,2740447072047657567,15105155388304724024,4677230076776206640,12172006607714489991,16087184123500556088,10976168133197075013,4140913871559917727,8406186569480951452,15285573560807069415,4437289611314939860,14807395127907291618,5584312741609584861,3978687520266978414,653441384261217320,6173100120891488665,9752085336669757404,12757470045944064114,8367139958616021611,9603373437992945926,13552931833932113608,6824233779511831070,479946487469232179,16992122736021033991,13106165881688051219,8795244989503195522,12643978556284701247,15057227998104713044,8970795084661609159,5236292582420337633,11093757037055307497,1977060394879588681,14608268450573107205,6075028294068405497,14955084232899176622,484795312721957824,2582223499185288730,10897037146554592096,12548176099603806485,17002760512580209462,6217646798910909509,10674991716448418587,4071154966450854805,17041178307919812717,9341236069161471387,15614894790099126288,13643455677923347410,15566168501961640912,13572362136151272627,956301869194846496,440461106330755152,5514377394378863756,18207175726195668252,8878310870408316443,15984402497117905347,11237626825658583156,1037618433141217284,6467929344621527517,10658881549221107670,3816274162259690753,11537257748077608368,4144442449795273107,9400288626084291177,13394032302942578558,5931211343270945839,13596966707826574200,9299226979724140779,7042263299000409339,6136591637277672936,3285246449765000029,16311841969983063676,14806591455198516582,17718442130070849005,13888523110926499820,4787340193937335956,480303295297830317,10438374193032932949,4142161194246933800,8534609702903330590,18026813702128330680,15344334486550030146,637607139165860098,1408281498796382169,8946408740220061355,15745243798888467081,17821442992111136960,9919280140358050752,592564234304459898,3097589514365660938,5533732838929838098,16397926972648861043,9626309359234558742,211642605777293499,4873889552612626704,9723232607868771906,11068447126712898603,3047618303416645681,13306838228175170977,18363327098224465001,5785283025198710117,17757860452631051533,14598805249699506440,6650948731588225348,6327263639677072929,2796403007757921810,16575308223259268887,16702704315268364207,11267988926835895136,12749391553412179520,14240666996503260909,15912265583424512818,10412869046742192305,18180920359414790832,17898793293494012691,394178475728954326,10287638768600801181,4737473781900808190,15761672243214255686,225884788404271444,15850266390113857201,4641181782333751407,15215153907096276456,4487112766468302076,2038988493184826518,6887707575576276123,15236099882752860971,12939525953387728688,7908264762407813494],{"siblings":[{"elements":[12082190918602551205,13867335419599164758,13988950844273197730,15797350669523719999]},{"elements":[5632246949774961961,3376045650481023773,6186677218001726933,1357912867436607074]}]}],[[9701221930964718890,2884571014298400375,10593212514795614031,14720171422554371703,15393425983362545529,13765854519577869917,2343295660472730876,4073627657158552327,9582195039214542497,6610316881677275400,679560752891841977,6820054718397572607,12490545149458827655,12708523869643109358,7901956129110821468,12979901847583268104,18369927660373575678,13081065628928818228,4181343548039313779,1116263304906549168],{"siblings":[{"elements":[9584816414896061944,2417242609953459883,10466797770720183558,16538557937584478737]},{"elements":[12566641883168405607,11692957989385573094,65378010363449135,8665522396277807550]}]}],[[10613867323620499050,13502673603641980654,11004763128355481488,13690592028920046447,8678172609608549738,8540952712494641424,1060419682080693898,0,3476889248392522714,1344706183273610674,14942181304359782308,7591197818775273079,7703130403409085243,7256667790949204368,3605855572679740598,0],{"siblings":[{"elements":[18363003975059497513,11932335778309232653,12612682902962125311,2045240435676065551]},{"elements":[13942007446973689285,16389132086187986730,2949829949934421057,13071762915709538429]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[3637070305041024820,7115771682932846111,8611158289523224770,9518070641769033924,1414236033612072022,6147876731072370645,13504102503993610959,8210849875946775220,6771876429221686474,16410199602681622119,12372775030713107147,5663336987457811785,12580722705930690517,17090657838437182384,7774896984689503137,16212323194997952509,15790659407107605687,1338816195755076046,359989602991365810,10405185517321956368,15148039461417482223,18261045222745213366,18028880292742600857,3220707958064673304,11910186047229120732,15305670882204945070,11279996028369840591,3734042228569772405,7558526080657992474,3001601900221145638,3450170215377475763,317773060535564399,1097735373536301714,12615975359282791648,1270599954170946834,6656611499892164838,16224974003789441732,1403075659235291766,6997718511036935469,7643847128057754052,15085852564262096901,11477237190481183744,14985041832410328959,16813349468570663778,10173398532465637178,15857598709347778091,7934504258760404609,7376050159053236630,2840728545085223374,14741872313157947,13704845647880446937,1022125248820200470,13740675135639706525,16948491354477646426,14789724794749251394,705761185161613777,8582604557658600577,18257069041670641021,146898569877779069,15878895256307505366,1820417402209298820,5758860122156744725,2215328957670442570,14254262983789176580,17390582322684567064,10411845306820428296,6342535375332326122,5775175313759053125,9806327680441202241,3502367619086583741,9863578905882954097,12691132205133728054,6947328166316987045,15916101843251696086,15280311966061103054,15833965922602343683,4678288576301668861,1687226105749041911,13454350750410999397,10729281105222723510,951203192928886881,8511106208627352777,14642340534124220800,10381809804774474872],{"siblings":[{"elements":[488713213671729554,10255131012145408020,539496966595987950,2881937287605504249]},{"elements":[15881389161849586271,14711822840974163933,4971372235232643921,4593900484078443606]}]}],[[5522821425678279806,583489417503378873,2084590777804941646,8233175319507917263,3932863601229287545,9569888005459438605,5066614847593462094,14743220246691612817,4709112968543780045,8195286272803409086,11616762851475655057,16204164862022044366,8840466813726887510,2373680172939449865,6520278598058732639,184607710264618720,18116945710174278607,2812134456841027528,17211294308478401101,7388130170877374490,4710384232892067695,1622196702104558555,16285611580777477946,5914772261214761889,10394515232235573498,16803937591221952146,17043547741670046369,6642437087610095756,7134594096649333290,2050393832707399334,6760294818851118330,18335549483202562599,8837287542053396816,3616062155171005131,13614166146028791860,15161387294535488860,6913521946484981883,5734190028564639260,8838458088133231683,13678530289520729384,1199144361054657768,2529806382427756405,6692780418588024868,16772644028868817865,1169620831335187184,10355018949282434145,5496160769739958959,14288667190838751179,1543639931725580727,10586226513401511361,15597780895201291401,8842832867239604083,1140081634603765568,16226504262715477551,7529925827316095997,2892727279761477217,8839094766651599226,1078627504390079055,1981856827859363417,6125840821168036680,12846480634122040522,2981685085440400267,14904458548903405341,9446188498200215307,16009533018154271666,16455199006131452270,441951818384351999,12580690155521576019,8331922676139894147,3940638231821573112,5333975220516448450,10042731111335100678,4170574384543494693,3353556869880274520,15568378200442535898,7424868175099695323,13829552708343094363,6601512844432977802,13703769569034997731,15830050552508073705,11437147731091675149,4003049051657591636,2588511233480400608,9573794499221399231,8310397536690177282,491476287531242448,9709343147646097411,11400543051530220193,4119446364104300271,2855029394671150203,4176601166520444712,7025224940493935751,4843857236459551139,5120647362068626353,12513354135152637008,15540188980905413074,10859605696430753758,6561329157720909412,7348378956132646393,10553553339567373116,3637277101910860687,7179595900254321911,16935998894851452408,17137705112332674428,7198255808672524262,7038401590432494818,8087405882697880917,12647552697289583520,7410582112811479221,9907139824605083167,14150064781293417370,14290393439917139672,18154850219865624388,18244597535419062291,12475394794051369462,8907833277751755794,10447725647291873755,13604650644796106352,4600402289334924284,5822720608157422748,8672106266341662236,10041714133965397400,5306283078294883542,17261409476793630830,8408461321987381482,13505038221115103086,1378299190759490084,722718442649232340,8338754432744799442,1179599050348908403,9477340161288903324,11741888104051483672,119319419290684268,7259459957057306051,1507164269003235303],{"siblings":[{"elements":[9423107637836157722,12930661620656564354,8562998139717966983,2953609585719566823]},{"elements":[9373252055618863258,17154472301310040304,11593896903434722113,11245781697972110018]}]}],[[13500803519268107895,16676963830573843935,3696874852497441200,9833663173465582623,1702609325721293901,7349595950320675204,14504294571356490826,3772696692201807478,18316330695340168292,14786838441717757300,426178183582582834,13355485559183293557,2068384055542288319,7202111186344776205,110750914732950309,3748296162328247618,4521706089975350235,7298134526384982822,15635796437179319765,7015333128090949881],{"siblings":[{"elements":[17557221494658630188,3227766625044182532,5100918194047535245,12248056684551785409]},{"elements":[9249750410787918236,13926454221438005950,12355458512614451832,8052117305133254879]}]}],[[3181469947265262559,13137609443321458199,12662208839597353077,5133723406822271387,13557308506354221214,9857312505926598446,16123287365534611186,0,17333924400589783552,1842615142898341770,842565247351782977,3190954413276864775,14569991029620225551,13431727866960576299,4162147461873490487,0],{"siblings":[{"elements":[11527183259498892363,9946330918593603782,10404200333219222499,10345076201145684208]},{"elements":[1028094200351164062,8245739913546956393,8798601443111675475,2034456680882900879]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[8836978090687743154,13549589814493198144,2128250613769924367,6538810285485400212,4753053964216583842,7277638844854205377,691005071134789256,4458859453557574153,9501342337623491208,318069987574244243,8636507508877683602,6424083983554774208,590024983173091355,7369533319762470282,2114194793325551598,11919674715980179598,17343749218843871070,3899391382009751699,3869252091973477715,15301139156671757599,7896202519655159261,8929314221882307368,4290950380423181964,16410516446170077035,13976090403259287994,4166838079673009566,9288672662721844446,17851399054217435700,5032790387152266569,6442943672191265984,18436227342330655078,9422655925983738017,15476163271527459840,11136226761807966586,11642826410315056199,8088649184674601271,6525459136458253346,8748298519195091857,7608946003354687484,14871931379574945979,6341671703284195217,12269993593618591359,6802725334166171294,13057468042224634444,7789902318320651192,804339423146692322,7975025901070152809,9962595445968538665,17003723970909594819,12757571756091495738,316844417098369211,13211351809160054649,3296628539462058046,9334631147471294078,4426938607186518450,10502638469620764450,1551917469544694737,18102084809271715584,3755011872030229554,135822669718677643,18358286424480615016,2576599520628456908,13772398870264010506,12515580814497087386,8974123346514710547,6756185775039288573,10964315112954121674,163446531148954877,1073081905585536419,6914008853912245614,1816799148234313207,5053495830934388936,12372229662245721400,16912339839590414635,8703154528744110251,13932636468085936439,6465467294496324590,1145677124120205212,18303888997169833923,13068731546776181900,6131059648139353985,2007287162771660115,9474949152079747824,8070936194190651543],{"siblings":[{"elements":[11422696099124003518,1722648619028289108,11269302443359822907,10435479167988970166]},{"elements":[15724416129304146158,6744691714555510949,2439391946615683197,2210772101600168795]}]}],[[9525183876843723940,2855888622984381895,13397827375969806692,13136159722256745766,12194793062697918804,14289035974855999275,14104113606035733846,11700074726272371724,7657676687168555605,15196840661141196960,12158574790858006609,554517368638945278,6009704505751307862,1923423871360558116,4045737859191173960,1073677276680962366,2013020523755370736,18023490399207731693,14380257634889733038,12281267938104490994,12577556685391295359,17656943027354803905,10596101003668342365,180570151553248663,13947522652770864097,12966005721108000021,13115748014606836355,6459901494058173633,17685966319586755962,14912779109996924058,16729863485875013007,5606934102447123865,7798597546031439886,15200655435618375759,5538767155444601613,9832608252709175166,5309044967728659385,11952410702525291564,507429392472526691,2426525667569546883,4952028219316272521,8151680166917769764,5623408838135963839,15236967851794089028,12740192390300421606,16478572933473864552,12032110997605616384,11171077763560982500,5233834188287376226,3892135191500159914,7949886502485059825,2043427757875378164,12394793315599021301,9444960148926418213,12046405062648411109,4109131952134102115,2154137487647040110,6168122425655327583,2851582790837955521,14248022840591034645,12431626804282884017,1116719066415369675,11689641904664055258,2162315545497202261,4069261009970381556,364248986544923415,15194520070748252328,10154435127317248079,6350810909393814695,2032734260876987670,6860465777160780178,2666870107983421730,7958347331885729004,2611486550118106713,7617192097118544341,2133660715656691992,6970001929999720684,7802758383273051468,5123607673750272282,10970579474653867897,10141886718040170796,17173984168708185113,15208679548825852335,6303683773005881529,14633229333294315469,16761182666176309774,17601834971481853812,15151057515874680441,16604143819467362941,11462211421704018546,12966207812969447891,4303155025451864637,17604967046999687259,12728972398730969129,9573933112707721227,7291272932405433718,3578632395557705177,15705836293015410002,6403457640562379661,17194224226855099433,7264528345648923648,7865209057919604934,13348128871964962242,18150699355758892002,6417423360453671014,5975704486069800244,4017632040695545129,11683314088619591393,7491245645667599066,8554048746919809092,9901115303586045205,14460263531960304800,7654519418243737322,13324959657969144595,13088044668031900310,16283389552896428462,14019398258260794923,8007104644711951073,10948839969498996620,18177300913463366686,18425736795521682536,8630325619514212937,11823461680630577909,16032775339131490607,674281722851841037,12168850551779260339,2545005840851644841,10048973700327397465,9863781880944631231,4645838071152531714,5568697338563783050,3074819480530189178,15170260249296680649,2119312642183552557,3178524278227831391],{"siblings":[{"elements":[4798256028781857630,4342632111468217237,3020807894700357191,7917786072796879675]},{"elements":[6620612365127861797,10763711871947886752,15625697147150807941,2208506166988515486]}]}],[[6570304907838078100,9563661001782048987,9315780027090962233,13984002459343169423,2949348795144505283,3475824402424451122,4500892645913567034,6932864778256999007,14087989928659202119,9409308344681879837,6481456134485211004,16443137896036614355,14746212618917144259,15758718918702290928,14777506735646017748,6604746401745314854,5365823388267459936,1289536223877552834,9363982177168244101,10196210453755479394],{"siblings":[{"elements":[17502587065630573787,11285440413846890447,7064932615788276282,11902931414954341788]},{"elements":[13465335913465318575,16360439256146192806,3023457439489358989,16575754364873660209]}]}],[[17349047449195767496,7512055713966438558,8125354403415385345,17857270836136719355,12878420108096141951,10989515167089791536,5018786577533410646,18446744069414584321,13685177780943369921,11832836727308937493,2908042857234248976,15116982180940889425,6625759309044914832,4430262981804050014,8230373615390047236,18446744069414584321],{"siblings":[{"elements":[9456512157117045527,16480824560909710850,10216753297406972335,8432433274368676749]},{"elements":[7491611630538287097,7662638509464736186,8964323373628608506,14225739950046305488]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[17565631475122486162,13112428807682437438,814657839979919418,10687100073143457592,7287583176578477569,9119957951894366709,17912065094023049988,12001559769958506954,1247349890501030371,5087308417645836219,7398662816764770087,16524655585167564581,11496023076072991062,2882936815197941317,18421628275382862085,13615285961234747104,1217449957276156110,10461960450316473632,561574932948938915,5261392988226429767,36963788263559132,9164850294867114694,10737997989809144125,4306952301124110220,14963079343147138648,16286627233757869662,11831708559580747688,10815796126821418460,510676066900126240,15541305163140882263,18393128724329928869,14157594831905582813,4329327111404598849,15357188344968816401,396764937644349995,13482615543640014731,9197483402030863726,16014565579788705443,11848667743940537624,16170822526494470097,2404997186846373889,7957316412688043679,3771898163941812242,14195364064937291513,567351891378815016,13136595019898101044,17422897611144875752,11932823705699681826,15599574133270197983,15479028145816002055,13608358995984024845,2916177584086613713,7687033070139185553,13404022303248111561,4486202424414820354,10426377083832067254,9822331989600191753,11935893039680802137,16920228551281010811,1499676085202553257,8480186318221636715,10285648472756480424,5738310774792282369,3607187035486427462,14168641485863246652,14098418211595676526,16413094492990064503,9333103647472289713,3112143557161723528,526758665457109891,5594545399592762047,14434557311662235219,1325332632391540723,10368959042329114463,3273821888404289159,14386742940437405981,9283670432780772711,12361895721614603310,10986471371611471679,2347319240314755218,16019526439705881998,4646599238042603787,1916663449684460034,10224024849529566382],{"siblings":[{"elements":[3586560659949534267,194943118788111503,1282749807679583513,8381895631914176563]},{"elements":[3560583152441324605,12581631521285452247,3424922011369377233,1328356594502091179]}]}],[[4869952380941436289,4133897440024983458,3163655068312267756,3391064538085196635,3287913934823146391,6928751158405507108,15521928648576117813,15365013406597443388,3827848148850518623,14782781322147411711,17536535945725015358,18006569616593368353,5700715121190851415,5913050461730549265,5397539814759118243,1318442322700803651,10416206125657378399,1310656269619331278,8654045713525353784,251878740014884688,694059065382997642,13422223775811773679,15617572109022153915,10068811470103675166,18362014416310082838,8876356642928996491,6319573854793448718,7475180706351595165,4751528096902087449,12472354050345667183,3098567340739551673,13143722221293035009,4980641919340002011,16579901837700620652,15173955526429261457,10242362294388798146,6280590026400305465,10857758549577732377,5166635296061771712,5221204836318748647,9497544584583980897,15238218244810951903,16259748325274055731,1315464825902461765,7847242499714550730,10745276121137600430,12716809712779311918,9760679498049907006,8396943065316192020,3642071137661709631,12098587030038109596,5084853937552350,16423026582905380398,541262764328525071,3944094823011139094,12158371173727949220,9266491508234560955,14529901605458047314,14107708727711416501,1747549562036009535,6587255549725702757,3280344754099252709,10681835662255538534,7717007364748530623,15400018475067730670,2653973720258224954,9822616871300498325,16328451651364026451,13745641265512253512,4701936230391484844,13217068500253690757,6760215125484944592,12352626395545696000,10073168371401941355,15356471264361166932,4205019972208608034,9748317265242466510,9449684263291691270,9067158955196991055,14347930247506380563,8748674792713101034,18027474092920050156,6225746766238269333,11997310057206389242,17047386578615986455,6367573569089156212,16272075527724564706,4506764962002036603,3983283834620166146,11669830868470751374,7363558026816155414,17180238904374352790,8554379383347091036,3329099007610366736,14017531040398146928,15531468339026271092,15617504950016457463,18436498207659801727,5260319641279508974,1400997834331645423,4454574660744047899,6936963758290217165,18273779559777385603,5247166122186531782,12398313628465495141,7214880500033149773,16044815517627648525,13853148232164521390,1045233374596888091,4382455009756195172,4598579823650283732,8493983326181656156,9955869747376771287,2161319015828536198,2406722771828859141,16639475423740663916,6167018949585208811,10597243581508279585,2341769993880140981,12864570773992457517,10963506502249843706,1012322526962434174,3285471091371618573,9525585567272065277,16153129251834829543,14707050782525833547,2285730865428598835,6799089621260591662,17094603051115802260,13539936263631007403,3926915441004952905,6818157056319385540,7089025223627784601,17790821289554049098,14786619180354077683],{"siblings":[{"elements":[15061691826736957240,9915668045891425051,6533197884414492516,15075383777978312595]},{"elements":[18359342378670632406,6583282831030225065,13761325622341558167,1621486753542556525]}]}],[[15150430742946240514,7062101738039626568,11864591143634874347,6579722616054591299,13118002360614588754,16626378146517657239,5655200947098923266,15571956619046051895,3721928978617443746,16118934338750349177,8189716277221107864,16914098225609802007,4560271526394666911,8079429676231398194,2463256631687868837,493311339551905249,5366517703704040806,14219488885705183003,6245197228394812805,10398108835473000909],{"siblings":[{"elements":[13323669970102024545,11692647813961214575,15608250790838222520,17395270194130061535]},{"elements":[18155623673109240123,3890620461936945848,8147107102465102446,4851216858920105541]}]}],[[16683445314949842958,4807295193686975800,1263540826981003104,2751097400051845714,5279949973617925823,15935738277452329735,5117543745109156527,0,18002327258523289408,15797312438689662792,1812293050436832650,3793855655518560304,3432580166534114985,5830158697187216746,4690997984177347429,0],{"siblings":[{"elements":[18192869065550817848,11564180804614035519,13517811500148457105,14511819963150936018]},{"elements":[8705372437769380595,5063216359043639174,15580412571417882258,7942865370644765714]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[1378578396624103287,4469550363019109345,15413597128689811362,1805144975167355224,6452842945118347818,17061466042700525835,9908442364377620888,15557126284828876835,6899480873189727568,12971330971533533346,728087363132436065,3204431996140256238,13511333333486447248,6061673480195229898,14143816356008065891,1818432731357414224,3931833595148317400,3113204864077687682,5014242697766007980,17498814194817113368,17311377860557701340,8282734130308373953,5890521087855310378,6106682907563760123,4103854807982442127,1254540041483963115,12935174769028627692,15430869945408104449,12896469002554472325,5331356288418194792,11484351612989676249,8456647540373465481,12372119994208242190,16992808387778761139,14492583082823698275,12992268080647866781,6202154336508741380,13981801581159561008,6132666943793528869,991440255466054370,4850097939918506333,15678134098977100309,4031564655424526311,818068419515164961,5189645943730998982,11842070038265827069,13692845301045488507,8827403897965133335,8787664043284139107,6377550908376354008,4423636113428645285,17734567326342336827,14552896584348117004,1702153397520986778,14272468428791344710,5610838339090108759,3371431548606222630,10139868107266119037,12592960625135564613,5499681482704576029,15133245799952602032,14567897988115088438,1484931179986933694,15313230342259256114,13284093008880950783,2496313854275467022,5098157751613025341,2705121421207377961,686818305346538974,16904485625070999818,10485443601004438918,1742619884980803369,7290528959142072005,4833033083385056818,14191175330164828274,15066184151212832423,17046653095088947697,17553341742847539104,1225471260958366274,595291968017247255,14785935603072475232,13108696271497115881,3085093188467307699,16176612129916464983],{"siblings":[{"elements":[8666308870474411867,15887861559861194766,12876980660469857901,2656114809566731166]},{"elements":[16360478778702248201,14213185250312606651,9086499200688171136,6646506645725327276]}]}],[[14151110958039928206,7394957063411508535,12242808867165814310,13976352360198370829,8358989146661182082,8569464617876553158,13785435848077013753,13630800355789087095,10554230575815556605,14616377016907529220,10688582119194165184,1229864092567004761,13367344668988357727,11336187144649893577,5400756165528579900,5014864135328208240,15839030387932227408,9967062752987708179,5844970810641871144,3674306805203056632,7041787625299570386,13584311873593951632,10472174895092833129,11707522339476272780,3229850729138646939,5203825012088851979,12095531170229994245,16113455278124742464,4478384763183462007,14166408549421613349,731037362174469831,1194162994788624631,17103008501293998156,17581962057194559227,13142915721200998449,1615533323779955822,5992219192888278507,14271810211378588770,2136751723644597559,9324148814894201960,3096381714021267112,18327069242570063018,597431345816533261,15812024774511600022,16527149484239095466,7233018710134092124,11106731782515052939,13251743940819801569,11330477635559125169,9381390107961219648,12353550562043221369,10967567320236112241,14549978549963392558,13503785403089970615,13140030757534479712,1715884339932744292,17992635275612531949,14121703553138073939,12048701869355615603,838459978187592383,13853466623007790672,810501098634394857,12743485059154163044,1513274516563878936,5438189615237560240,13720892076479537886,6304731611991193203,12663528237611814331,9815073643966621831,9441524622697490116,2567826383881988313,3015966532178211509,11807241474556909223,12982235908081366588,2279713625292158652,2359676397270414582,16739800418133953446,13335101666867371783,3629284166095863399,17854922936885822206,13842562782298938121,17085922236760802889,13382884547423244929,5030769081553446181,199011361874410276,14245080294091779772,11367736803157506113,14043882336147617981,5472487469989377512,2678979599928377763,3051497433268885486,10665427887084536838,18400040647051682427,9766123142863329610,7022650634293741781,11846010534352872432,351594811382932240,13770623971097477907,17070992550054449940,5773350015853845246,11882743688796541384,11981786389506707791,8067921414808417335,12145352280342078335,5567183025363984603,2310438985826003694,1270722242752714968,3265309666552359975,18070558934783323798,1823059575891326118,990190310590949656,7022955855131271432,15989282211583041985,15671948822486590198,14551918789675161326,1275557785545619248,9265535616095599915,15096280676419859305,1939032749910125377,11705916268584741720,715220152665353712,14550507325644374474,11141979180151243472,10017501286716643011,1798820704627605949,9640352258189691436,2234174782988434056,3313080362061678283,16093536413995050359,15824544753666626430,6269019698987271488,9342405399470326275,8322589259665528474,17396031689086452350,4191237860554940796],{"siblings":[{"elements":[4043308736688805004,15211107125943304181,9698713125841909005,9522134767540957749]},{"elements":[13348549844444852790,13811746846741042061,9022570625927201932,3617097976418467075]}]}],[[2832397462743032250,9574208264948398573,8093431283246289968,9051171998310052142,8763060644909840327,11635929639995304555,5408467570208121390,16785592628968331789,15270724187886384506,4322248846212455415,2911230047109954316,9234099713739201267,13785575538457744686,5876817544493490009,10651122806381955259,3447504822084318423,10156525349450638899,15383550345790070215,3230222293828720179,12745504482151474148],{"siblings":[{"elements":[10189515537978251149,1820701775066026964,4682797569150175366,5312583881263917199]},{"elements":[14293483896532256845,16569249773156424924,3774451957895315096,4562607317230995715]}]}],[[10447485542520399482,12515085505825817832,18370258251172900672,8921428265472466552,3837038679047655665,5787301317578448812,699221203655424133,0,10149332456891834264,18426080330843974585,5154760379701867944,15067324843242371131,2509469205878971358,14934029371219357999,15862215962545358033,0],{"siblings":[{"elements":[17875179766627958732,9606680552783024216,7586741070809294887,12683946386664149494]},{"elements":[1671064832045564791,11629237591995309183,17247728980632733949,9899707112033562427]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[12859477545421291102,18446228248137782416,4361795131497918551,14311372612561139722,5379242149277978058,8627642225018949945,115730254930675419,942297902353529584,11389209183993738032,17550407117288337621,11598592940402831636,10211085719950329770,16955323756515407070,6164034066388038857,12084849160591017647,9330119569990365620,15300291814466483929,17601380643429101431,9517753525944914742,7001529188715059291,16972712563141389415,3160587271072116436,4317847705941557614,4300240078025938834,2625214765659220326,6958225314757406905,82174954683442812,13146492537526504995,6760197543089082558,12395597912335168400,12834625500800348402,2349479832784719764,2744530828115506479,7232403551014818627,9873231499280697132,14844137344663935459,4130885524324453482,6614756667455677366,1562700575212961447,1664222429132128887,12354578627381029905,17830858864538839706,7355034995159817084,11301333352691244351,978820723201213737,15445892715918509386,5904948948963623487,17787597772238734881,7412059590461973770,7632831397026550576,10682981151259233759,3809730450439746166,13693793783539736326,8811323332065702223,8863487687148049169,16024497145611305671,6700942582117658704,16018616740637405557,12138024807450332656,13356261883336606786,3402311134981020392,17684153610417017393,15988677082620064197,7943589248645343288,15488156408183691310,13694714888300237972,1139266919024164996,17071162292203630895,16874236178655428495,8912515112082110750,5261750303661675888,17642085411126001954,5991088517256647579,725663588230098390,15889535612108131524,4922688737645090538,14589899859249651120,16231102096230460947,3579784397897064166,3586753374366879893,17757803033897646992,5909063142794440143,3808897751270404722,1876435259226598795],{"siblings":[{"elements":[9813827625414474071,16196700304751013892,13797676968924664342,17882575465916706505]},{"elements":[7372999055943322391,3141364051179517969,11032666934607065725,18114007743554457067]}]}],[[5838705715348335037,18143948763217281138,1404446395862158708,6611724637198589391,16205216546200889948,328743867349799531,10141167854934501565,13470807739206175959,8575539538174490709,11429455698883649530,11992242176779870812,11971377474675368306,17725492882465469329,16480256333973433429,6711916020408441712,11510501963922216911,12200687857787449894,16268946526284090822,7332496020845807742,15544615151606264257,14784602101062413853,8817924064737737612,16369129627850634945,436762560677309889,3282095804005644146,2056105766564804946,1537811254179439417,3842268006001434182,7456909319318906174,438257148538989309,12079096619274948903,10476905246890404631,17501084093341550492,5352266406178515487,15910074349145534815,3064848889688620747,13765751706202319881,8920378737863661662,7146059363023527160,1095170577090830844,12151290955187467602,3674810888254369009,13255872975365223206,7777721040462363237,1414769008024994069,12079406145923895199,5213184771067488423,9050275896337535172,17043536773283525146,8081926202917866385,9779772197368136163,13023681929211947403,7351607224655225231,1002621425433549742,17378624426621546808,6578476804007163537,5980747952532242312,11124513074508406652,11074366719431072307,4051895462591525675,69718041513703149,8223291856594051033,13561973566774939315,18233952153265703178,1435633828889047535,5054296231703591928,10072520643614229951,18271581486342716642,8006250314404936897,3649004999861489842,8754660225029856988,1238102184812414431,316809337200995163,13681536961583124842,1020306548227712244,642265793081912318,8113788932818292607,8314316539309901570,17979374631437460888,17824234575052038568,14081161588427446893,3703271625519646975,13682161737483090850,13493183980956966109,6153381932441533155,11338729902031124093,13083536627075938623,7893978192061403627,18400070516752437141,13497714007940869863,4603104326542285455,4222763268788654993,11462453690366360646,16819219520408984995,6019258598601136950,11317730621025591109,9675064206212212631,12108880232403824000,8789500718196900939,2564117892843835168,8770343943717823313,15290507115471903126,5243049338977312626,17488014724660512120,3749361760964395916,17939394673459633441,3347435009408297835,9954189352733762319,12986287909085576340,6523990743618293085,5481579284440331775,1463755804814878495,6307999863952939363,16380060907867978772,13888761327879703937,9821994033822446765,6903866666739020478,2690298625523522248,3154444682773637386,3366888352928535035,17917330812169404686,3314313548410986136,15373064522883190935,12082247199938910139,8558647996358630681,16765885652211476456,3199441951792851726,15476627561320026626,5601554010938033132,8636144509895129157,2832787372392188143,17539750673305351050,3238036597977415892,11377689349609348828,5595433907972232305],{"siblings":[{"elements":[11901083535959271129,9748779260171515499,5695499477989303554,3314459570977600681]},{"elements":[6444848530783558746,15753263428135990938,97230722525014282,13121239098415651679]}]}],[[11031854630821311553,17488588292850592306,9713580179243544372,10965844731932136196,11850696284434853833,7516118971986985958,1446137310368624321,11584007256787992951,7148585723970940887,11158547191551831508,244134248039263530,16514626243726734041,7959961474504913125,11605184290330647138,18118985330290491182,15084632626617281022,9680291525439401417,2376428133966785927,470166382383261946,17539566982922963816],{"siblings":[{"elements":[15498784765821772519,15908904487665361090,1243696986989497044,15867727026455959844]},{"elements":[13249153965122574758,5090773756675721835,9423331643230999862,14143234509677074129]}]}],[[10493782243734578008,489249452318594808,15836451875735089114,4803940500536775444,10788702077167929606,4825259111419137194,3653220609092875999,0,7108264036389625017,1791035797872983868,3701348344249896938,10297147061343376974,7926031964997414141,11377983013244348629,107583205759637740,0],{"siblings":[{"elements":[3863739244326879625,14612161972025749421,2046353794724243100,13704746528523454825]},{"elements":[11953638532976524033,370136659460033386,8614773404340959242,5907159334526019519]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[2075855741644996291,9157067040989208112,5294998378757727296,18146573039130488112,11796760360434000413,12137940671652044236,60092273779548801,1796905377868388397,2733633831238396526,6532289241715518362,9205494970344250449,15689422995177277563,68762038141037454,4294010356562914312,3194028637873311491,1778551678138317793,763080260502308314,9991794465023108716,3850292501224842372,10995806390610363130,13391148702922245120,6432730835747473748,17937578682530406517,17835094304873103336,17919866796104645938,5061950529677392271,13425758741866242103,7168440889070900695,6647497964193582081,15785624080622359453,8784849953568480516,614357895425397202,6012695052281117472,11671098996728851319,7796267177051840013,17780525432626520643,11126958244758111250,1704449705218433320,13839005715079369719,5275787110927945049,4941333151907014442,15653302888835266379,4866652889900333198,12698421719591218443,2884461095163956839,7562566695966314102,8044592711268133205,14889346065622183351,8062063458191250064,6126472711169187038,1326059077718041118,17976641102812395974,6379834301292450935,7605956193794374401,11027865661708221106,14980909491850006755,7184579789069708505,18070936649269043332,6827714151510374871,16459498642841377126,2470368653733780370,1576843631870717140,12632944136259188223,6330444776106863944,9950291332725101329,4419025891602067335,5251621040734299699,17727538304377433361,2115919981081595234,3203325823177686760,10015919392892486056,7180900670771471214,7469255487899468559,17339768573158833224,12114939887655650193,12083549689080629000,3447190975648050147,2815566408580707135,3823441941367331783,17482051856852143558,6196020286283934532,1852384701033602959,17535449727704879548,1152492433505230309],{"siblings":[{"elements":[13692170119849387599,13778521954473055577,4370705135912326605,1484315758506010359]},{"elements":[14379065715719750302,5773497642325633605,11512610239832849658,5628990104839659425]}]}],[[13823778537223644569,6534423753809855158,3414197425943290709,15839984044827517458,14682414582371355913,16786514709509069084,6653237482665240475,6965162956513735886,11946922830987650469,868565839412823367,16399176778010377346,13868207889118787374,8918503848591627091,7428842993496260447,14521424103109485854,2135749355328596594,14849706412592907094,9807259531696557067,15430209391035954407,1444800783206413237,17020391429289551788,798416595690903972,9451688687749667650,17891360837175223733,2020964904866882437,1129927613844617380,9772085247303411648,2527908798897650594,13810433369604292983,13185333133229804425,15967727495526778988,5413792747835691881,5013270101470804598,18046325503924847797,13216112335649344151,2661572436516520560,11248306189096250297,9124781554064409734,5266907702813457988,12062213994202666884,16903306350744105999,7013165664777530831,10746976448222974873,6213781553044992196,8326682468606450965,10067064315499856221,719827519570433529,10999914272463601361,3947270168638340001,12105372054428156782,7040377350063527698,17170507954071548977,268777701264108454,9878029169843318228,3600968290885234381,9293110565187708145,10537970719863046851,16273101446390887709,10816095460419117088,16905533004669133378,18200641808561405155,2328755798589906223,15947804641113036843,4021569776940940650,14337956648836057314,5272402819835329451,4988981636310022929,3522004100861683607,1851372941514423102,2595656729338975548,958093524351444101,11167530072099805740,14085685755639719549,11039617313222031968,13073841327210475478,12135592032339949815,8436195280922228180,7872407303181250621,340464303556585366,15098862629713636867,6093626792942750653,16732160428109043680,12082018414842161293,14212722737622004953,14147145759749742813,11806382335933372408,12091704089775495986,11148263165435559513,16816306375301495961,3293082418668677638,10227510611172195233,8634578327695323408,593262627569145418,13221739021282209434,11211087013472079038,16707625502564828741,7683287454977745721,6500157602626014581,4883553970277698090,14613990614797881207,8641335057363674026,17953744502093144555,6036710684758721812,13306670683152629716,772849925630574716,13658558302967216745,9048462561751309303,10082434772957993213,4710941253914766463,10006151530954339664,8342480233798961531,13983517148069775639,8913052442482894107,17520580041189037769,2220503078165457323,16337955380793771365,6916149611163857099,16605910260708177549,17769213812113724333,1320226839857182403,5328752343663866208,9950283671203166709,14494400769284112878,17816544621327338237,12618787123223813381,4956285865957459713,15981149213530484431,8007972942033638921,15302652207203314663,15121713388417664008,962318253958578151,692132066362192355,16480636584587601001,3217272208864473719,16256982000303564085],{"siblings":[{"elements":[8967022420607044528,9604277016331063822,15053479888876351830,536916284662737841]},{"elements":[13464487324714941373,11595051310106554145,4998535587759967835,7658420254065534001]}]}],[[6357099629691611776,13292915272182005626,3867364745937992333,235718963195135953,4492870016593481436,4915682819165605817,238958318460564061,17858946313914024242,3829545495356442349,15320145196394420366,3896041089813278338,12730802953054349215,1562723977997984921,674924562760907862,2674597583839394234,11633846862209867663,3083476531465031610,8031530644597061648,7934686726499322972,5166238072779239568],{"siblings":[{"elements":[3293815393164281257,10695106405015419729,12064283952025628613,5855554746881917366]},{"elements":[197953483841351267,3129195322176856089,9134968313978198707,3682554741810120565]}]}],[[9053374833748895312,6346684806404176735,8874906233709426360,15206687459479648469,843071682908343693,579694703243778979,251467032790574866,0,1956774179866491704,11171811998695333397,11761267806613334933,3114901072744742647,15142133904726932748,10691566182987128237,10710790337472419003,0],{"siblings":[{"elements":[2829551762098216841,11126882351500936114,16190494169184930320,14269330711240885554]},{"elements":[15509831967320566015,1182397968650836921,18281795383184005963,5964328714956927400]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[10941971085978489724,7222224546851531826,12557767172364168977,3892838391214240515,15351912204405559916,9527570336837530138,17876557154109427567,1246307958281214369,4003328231135468665,6182242846065829798,4374990392724983338,9322821379349977495,12905675182917246369,12382841594731550914,8154557435786515889,12197868254769243692,6699043450796740378,14631758026829139922,15033439997445840681,8761112247922528184,5866643946121440912,2079111831809901297,7153105294260182160,17347998749673269492,10946389674251792789,11326609433635247427,687082893719363309,18243633296803237795,12375065637235278232,4688491841131783073,7925805642293300340,10393124834350767741,10776474764986899608,4555028214514722463,11266211579777681389,13894745427675344149,11980725414298740766,16150253956414715631,7247197284432400403,9570494346932849381,7247715513939622727,1703715442275987289,5241022464240352900,12560560564613884136,6485291511081152824,13890337564022345948,3015481300340805978,15926106214505030022,2132923519938763500,17433957785498753101,9046926907758099346,16927309199558369710,11401264145131306583,3270349480814371152,9853735826230783929,4292203219316414547,17913757518438557740,12242873934106799527,10093821790615114007,12296738845373276229,11571375965581081489,9477013212992840974,14691156125539517334,9679456677901312229,2077124821812667663,9473286807628710781,3291196699695897182,15924700248089001690,6555798430277292193,526187528352117388,6956814260407044594,13551583834674344578,5399339885138129580,8997658853242114760,9007656417115259689,15742992675189173855,14200727487610928238,8098534693976493404,12308146271337653168,12850101888632118164,1854519344194910139,10823112296344047974,15239242971294030837,5140444432936089029],{"siblings":[{"elements":[14941177973413750719,3764610578608574585,9648978245898088610,16071586351439427254]},{"elements":[3233867220909638017,8698185977443146759,3080105169737877659,11915468074270704376]}]}],[[4396239756246541332,448290935397962723,15959097102270256759,1851308883761894433,2075507873810668837,2746197300896623592,9544584757288037836,16975520627677557237,8575029265177668683,3274390391570940886,5670095113893194838,8639669450282284602,6899095129268775904,6308777096436197401,8307346362708792081,5103509550294524266,1578112347030294994,13416882920386313149,12251974727172032684,13451426521000699419,4770288593300682638,12347853461452843137,9899238661914641578,1434999918005862983,8199226113893052438,10595947104539349271,3797241784882054765,3955551902808430755,13981010521331652324,4259066809078588352,8574350669347422283,14874878994523803219,340954489967136538,7967688272649068479,2559983824223427855,2582791892824551407,9783523043603763393,18328846849993017895,787327815030938504,2095342575328604594,3951113658413600925,11117078228167341931,361727102908890045,16616747773640248131,13671419060979292081,385469496294418480,6578590162430321419,15744776713785586768,8128788056955339346,1803332776670759668,2143123215238226071,18105363406070667866,12550135732631899440,270256895594165961,11237312240756111972,9821305997245069950,5659480713440209566,15454344772576396717,143026878689479408,123504402091368351,1887229764689427173,17982633058546236450,684362095082899808,15440686545385637064,8305444519033168409,2107879313624845237,7627251831879475844,49566176578381874,10551463667173986473,13083609627549772570,10553138664248337372,17021873308097713829,12175158360055489458,15135939122016033671,5557150879480049779,7777184837502429795,5613422093995065038,12879677432696176348,10872517000654398780,5699064301516008406,390547697209228616,5310378167350556407,3559721215826992558,7103420183131973767,5455691046410740617,13676942718571812531,38949112593886944,6096991161932640094,3543034384603201960,13607843413503035059,14315181851725070917,11354257536878901147,10105148155482087240,16658321379989455983,12848201393657777003,5029051530684216365,13686254466642789403,491701156550529603,9052872560029254167,7511154334435898748,6433456704022886029,4189618352845323784,13465686338894761971,13944304782704169744,12094068679070982115,4070929485931936386,13074978201077763298,15735264156720951234,9259319105063155709,18389135895131603894,4909815646997886567,3767082337829554045,11393827366120705141,8663041585086512181,17014819619549402778,8930205404563380571,15845552121851227292,10891616389480398842,2180498457340888573,8479140711065860091,7418212621717482833,12487775603387468852,6291578676451598575,7074552875691704553,1179748008257696739,13637059118201200819,13998411462221077900,12493779923523335103,2605185707412287838,17301166229923065695,2214911944774681987,7984446819737495653,9160928213496161258,14925362480388710666,1732437523637134906],{"siblings":[{"elements":[13412956080708876282,17242029059430654924,1754449327401799698,4187713560829701494]},{"elements":[17425144728934582193,14939775513103120459,1160319766018238161,9287853699866130894]}]}],[[4736272582058216070,12164837277180212059,3159789716473720209,6349209988818078765,4716260786987042462,12247675763596894053,9851332096400934208,4321478721066814466,8220966924917821234,17580059681040641593,4866061413116895347,9273793776004005526,13693030848537423431,14621287548928394465,760594932976116929,6138111391504708602,11139711233349580439,2159094812659070697,514070993187019572,11940258961840988047],{"siblings":[{"elements":[12306204791828059261,11233951996211621040,3075879037403152205,8290707409163041832]},{"elements":[9040254179207772056,3725954116024159911,579446427393538168,12460963624415718766]}]}],[[16730659696132907460,9820163324726627891,15933879428146858018,817813004995897300,9587431868569695517,16500083088449442785,14613789109254890173,18446744069414584321,2695358537285559133,3981398664770551406,5770602000961033173,6073580193637692554,9816263514389623007,3731905307651469019,5523725521312659975,18446744069414584321],{"siblings":[{"elements":[7867187041769086764,4777096218685629225,14661171027233186548,11420442120664971805]},{"elements":[7502452631934274601,11782982809276846489,18122091354471366675,17733080852835133650]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[3637070305041024820,7115771682932846111,8611158289523224770,9518070641769033924,1414236033612072022,6147876731072370645,13504102503993610959,8210849875946775220,6771876429221686474,16410199602681622119,12372775030713107147,5663336987457811785,12580722705930690517,17090657838437182384,7774896984689503137,16212323194997952509,15790659407107605687,1338816195755076046,359989602991365810,10405185517321956368,15148039461417482223,18261045222745213366,18028880292742600857,3220707958064673304,11910186047229120732,15305670882204945070,11279996028369840591,3734042228569772405,7558526080657992474,3001601900221145638,3450170215377475763,317773060535564399,1097735373536301714,12615975359282791648,1270599954170946834,6656611499892164838,16224974003789441732,1403075659235291766,6997718511036935469,7643847128057754052,15085852564262096901,11477237190481183744,14985041832410328959,16813349468570663778,10173398532465637178,15857598709347778091,7934504258760404609,7376050159053236630,2840728545085223374,14741872313157947,13704845647880446937,1022125248820200470,13740675135639706525,16948491354477646426,14789724794749251394,705761185161613777,8582604557658600577,18257069041670641021,146898569877779069,15878895256307505366,1820417402209298820,5758860122156744725,2215328957670442570,14254262983789176580,17390582322684567064,10411845306820428296,6342535375332326122,5775175313759053125,9806327680441202241,3502367619086583741,9863578905882954097,12691132205133728054,6947328166316987045,15916101843251696086,15280311966061103054,15833965922602343683,4678288576301668861,1687226105749041911,13454350750410999397,10729281105222723510,951203192928886881,8511106208627352777,14642340534124220800,10381809804774474872],{"siblings":[{"elements":[488713213671729554,10255131012145408020,539496966595987950,2881937287605504249]},{"elements":[15881389161849586271,14711822840974163933,4971372235232643921,4593900484078443606]}]}],[[5522821425678279806,583489417503378873,2084590777804941646,8233175319507917263,3932863601229287545,9569888005459438605,5066614847593462094,14743220246691612817,4709112968543780045,8195286272803409086,11616762851475655057,16204164862022044366,8840466813726887510,2373680172939449865,6520278598058732639,184607710264618720,18116945710174278607,2812134456841027528,17211294308478401101,7388130170877374490,4710384232892067695,1622196702104558555,16285611580777477946,5914772261214761889,10394515232235573498,16803937591221952146,17043547741670046369,6642437087610095756,7134594096649333290,2050393832707399334,6760294818851118330,18335549483202562599,8837287542053396816,3616062155171005131,13614166146028791860,15161387294535488860,6913521946484981883,5734190028564639260,8838458088133231683,13678530289520729384,1199144361054657768,2529806382427756405,6692780418588024868,16772644028868817865,1169620831335187184,10355018949282434145,5496160769739958959,14288667190838751179,1543639931725580727,10586226513401511361,15597780895201291401,8842832867239604083,1140081634603765568,16226504262715477551,7529925827316095997,2892727279761477217,8839094766651599226,1078627504390079055,1981856827859363417,6125840821168036680,12846480634122040522,2981685085440400267,14904458548903405341,9446188498200215307,16009533018154271666,16455199006131452270,441951818384351999,12580690155521576019,8331922676139894147,3940638231821573112,5333975220516448450,10042731111335100678,4170574384543494693,3353556869880274520,15568378200442535898,7424868175099695323,13829552708343094363,6601512844432977802,13703769569034997731,15830050552508073705,11437147731091675149,4003049051657591636,2588511233480400608,9573794499221399231,8310397536690177282,491476287531242448,9709343147646097411,11400543051530220193,4119446364104300271,2855029394671150203,4176601166520444712,7025224940493935751,4843857236459551139,5120647362068626353,12513354135152637008,15540188980905413074,10859605696430753758,6561329157720909412,7348378956132646393,10553553339567373116,3637277101910860687,7179595900254321911,16935998894851452408,17137705112332674428,7198255808672524262,7038401590432494818,8087405882697880917,12647552697289583520,7410582112811479221,9907139824605083167,14150064781293417370,14290393439917139672,18154850219865624388,18244597535419062291,12475394794051369462,8907833277751755794,10447725647291873755,13604650644796106352,4600402289334924284,5822720608157422748,8672106266341662236,10041714133965397400,5306283078294883542,17261409476793630830,8408461321987381482,13505038221115103086,1378299190759490084,722718442649232340,8338754432744799442,1179599050348908403,9477340161288903324,11741888104051483672,119319419290684268,7259459957057306051,1507164269003235303],{"siblings":[{"elements":[9423107637836157722,12930661620656564354,8562998139717966983,2953609585719566823]},{"elements":[9373252055618863258,17154472301310040304,11593896903434722113,11245781697972110018]}]}],[[13500803519268107895,16676963830573843935,3696874852497441200,9833663173465582623,1702609325721293901,7349595950320675204,14504294571356490826,3772696692201807478,18316330695340168292,14786838441717757300,426178183582582834,13355485559183293557,2068384055542288319,7202111186344776205,110750914732950309,3748296162328247618,4521706089975350235,7298134526384982822,15635796437179319765,7015333128090949881],{"siblings":[{"elements":[17557221494658630188,3227766625044182532,5100918194047535245,12248056684551785409]},{"elements":[9249750410787918236,13926454221438005950,12355458512614451832,8052117305133254879]}]}],[[3181469947265262559,13137609443321458199,12662208839597353077,5133723406822271387,13557308506354221214,9857312505926598446,16123287365534611186,0,17333924400589783552,1842615142898341770,842565247351782977,3190954413276864775,14569991029620225551,13431727866960576299,4162147461873490487,0],{"siblings":[{"elements":[11527183259498892363,9946330918593603782,10404200333219222499,10345076201145684208]},{"elements":[1028094200351164062,8245739913546956393,8798601443111675475,2034456680882900879]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[4641675014424756216,7541246472772291698,8032985315810577574,16209146118383471907,10419669492250042717,13707757606554289516,16187333366426779938,11508813347810154936,11293276959732148494,17522599091636357118,4933209484424547934,17637991077178245357,17056870581881488241,13183940753641188438,1826279539176455452,10521220309278344307,13124634654836370507,5693361703730482920,15776388259230054359,4680853045908023627,14257418628542109609,8723243498124554086,8596441637069467172,9237665088636812520,13351878365551255754,7453120211501156151,16596500998285409094,6647506380656506678,6868544434576201801,1599880482129127181,3231706947765101334,4229199912657096213,556080811354941712,4390271153800822813,11695872429882888114,8599752111666630863,6984455065364979400,7950176640047926722,5845230499817025152,6098206436660846864,1586252843458391611,14440744980391871608,14872937305593305992,13525607376927953911,8563798844193887885,10796591490879791649,15472696412307025657,8713749834348935351,12008131581677878291,4940752074888778244,16648274217610364284,3105577555655157737,17709691183005067289,1489295174378845441,16858742130495006598,4007107084541660853,1223450394549700984,15576108286593129888,5683367022912841524,10310449819529276812,4472090276913155545,6685767406742442421,13620354716354685905,18306219604836051151,1483706469198388723,3860203197915893551,14841182964957441093,13088897865818960929,2157627148316549970,8082355349939086809,13017500823253740442,11638625618288091866,15374443671952868090,18207178249019307038,6235023043924961468,15969588416027908272,2104373460253057769,932279075491357949,18073033226271344731,15632048597169114881,8547402059743439342,447349086958603074,12085234537127786213,5280941428547620139],{"siblings":[{"elements":[8457061783738778646,13210996940451333853,15938804603635739927,10568167766166775965]},{"elements":[14116771184823831436,6357576774383995688,13501931163075412498,1114208703580065252]}]}],[[8010188792973257112,3842744482773585374,7546390209090338194,7425741182659883371,9296957850827607233,12385271459845040129,9658746812942225572,14758879113872907864,6997406190493524870,10637456536745163259,1962195752878372044,16562755963843203433,2167871696714299256,5829117171943815299,5716024762923963287,1414005890156753775,10958738010586133511,7469029194849120145,13777902530415761582,8059876479512351861,13923012219721574047,4927775591986441581,5584259479243267602,3322242865436715161,8470388356261933343,7336846680427459508,7386707341472867262,18251920292482199342,9766642782769876097,11524161787663689189,12972285709035230115,8527372221459329060,3735466178746534143,841957750625482067,329690130536153707,9020224799705792159,14673953817666022148,17308442074251641182,5344463355388059438,6264374043157696306,11808265444956194787,8012292661094014072,18114830853420053123,18160583350032375769,4070972401074070176,7331599773721066694,18394726852527900527,10095267884662226182,10670223595043562370,11261882488277558904,2013188026950245159,1781673209218640105,3264234660356436560,2146741337359225943,2218610759534447479,2808073887426009139,2697346286665550169,12773788442423161144,4358356529349608472,3111360579755268642,2829841237583624041,1260706586394413961,4347350959297245871,240861591589733009,13605221753675051073,4308925918647296108,5423277409193072034,16480258780176375147,16403722989533968475,11740567189182798546,301010383743721723,9104702006529827826,13031585891397020909,13537924266896647017,8385576645655918794,14240829753592774114,2258237185264916759,7825729816428386354,159353468090500480,12972052942517868468,8857625503246730220,13358684626560309811,16736336156352938740,16375139599996222612,5559460138081090024,11065603103934518886,12830422340330226630,10410747871654986906,12682208322841694537,15267008692093576369,7723363627950773617,16522344356944150554,11595179258808265143,10046500262287734387,8004562043234597701,2529288443006533310,16120786706838530373,4860887813274164681,3007700036740441573,9324585382315766325,14795821953911936032,1110245027869881347,6498437836050990109,7547458414728311841,6797648775735591781,17536718919193541778,16614586725864167497,7290113380826597983,11101454611712580754,2399060471910756250,5946938094965503368,12163800800000897309,9056974893091723175,11673898491901205475,5004659785112724167,8661178747318144749,14498390932143583705,14595244969555467020,751873543607269684,15790087983119493569,1427674817372754252,9297411115480789719,888394146272244869,11299598098088287754,7787745959006443447,15717191085127723175,635997184356588860,14002052631425674086,10231724276781622215,8886554739006369764,5454401639148073284,12559020584674005187,18221011252160027741,3208308992684951629,3116161282100527013],{"siblings":[{"elements":[141499511281084154,13099301933159528055,8737135468519850057,17281626991456825091]},{"elements":[13868227502310422400,7626620124817407390,10278844259360603639,2965708671723522146]}]}],[[2557532787366249776,10491999326548455803,2224793288049890087,18280898281017409531,13436884916231824684,11279001769095550247,10849979403017860399,8514221724113214857,13162945218744572549,17779709618564583308,14212867389931536854,13592516110078826309,15382451636712422591,5033623536462977771,10579507469264938996,309237919307207701,7490170074289744228,6102111141846195997,16180689940468060721,2103715098102657007],{"siblings":[{"elements":[9432030849288641099,5311330227706656708,7827120213996965010,3013961667892574228]},{"elements":[8953439885797798760,2888687067260511610,662343402912788988,14480680220979535079]}]}],[[17039706732027495742,1323858887778938795,8076973454747732316,16416302184246468271,14743773436980713809,11443475059710354108,6986936526011340207,0,11348571804676834683,12548544788137237764,16912669803810386582,14298945964769325717,7970917088763267792,4512929627617030878,12689811920668980173,0],{"siblings":[{"elements":[13175104040997564788,15904879205722199500,7634466472404444817,11232579531200573250]},{"elements":[1374647436548985351,2593177752118330721,17412767403317856083,5352318043414426042]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[9595066366564495294,11539115561636369853,8612617070848643751,4361795131498038651,8707796704569096444,13195197378162339931,5885244333503146473,7493274817038693156,16795934710077801910,3499234697230127792,3538015482856514358,10821355231555160607,1042827209683717074,8393956465900962537,9272902407782185898,16695386737328026034,8664116946917984565,12963490037289354029,1001619700841149898,14055163877067822309,16833947769469238252,13623661507294481959,7061230033175645404,9096967242861555052,1492338408286795741,4334043941993182426,1455509862721624005,873371923725843788,9844464102038836705,2075849575805447782,8244551275262799336,12483909021902906715,7470033179270143450,3493932766942357912,1811225424132229303,16353192859594085411,5314427956638463438,14110765914380064978,13767387029055241068,9344676171163636723,13241371923472948827,11726848981359198822,17377628440113285357,5326698555757237587,8793956657221348544,6432954316780697776,15597543765622992376,5809592268820511934,11214718578173390920,5598528490448283499,2812120349198523146,3092520960623406858,12739708918433074581,12837223032511295411,392629019916212060,9551710552136969016,3339446068431264763,16109905137264465741,1918329278681355689,4354157398534296413,12123084177537100649,15506665079013507325,12669324829703513360,13474770592190961927,17009712799779184032,5973322632799927547,367945653486032031,15781838166733272014,17675806655345758459,8827499417494022930,16440542757477443344,2581119749029910280,12100419831622121759,17963909715206254422,16157596225545606325,17609254166928834745,17932850466158622105,12626730733881765623,3545666113718723900,6441169949848482743,17860148745037688574,15345669789290268651,4337301300904067954,16795262536983274900],{"siblings":[{"elements":[11066942346539207429,2281517773770593240,3110504150316556963,5708250715759567868]},{"elements":[14780924131161078489,11232344161552745537,12663829209753110762,1955609769005186945]}]}],[[3677775789541532366,12126848940377820297,16748382904521113303,16997086421638419103,13146213187639301486,14543856006382723635,13231090196367517041,471172973517103975,1725576146502765352,327257952154264416,1051775375501393234,12553227843963815731,7351941592702652642,3575672819932485305,7155139378540512880,15857544611404485500,18347570109446948333,9660232481316340788,1452844491252986926,4844552689754701158,3976352150213692400,8958752473576353078,2705468615738808301,11203538478642401706,1596040213852046632,598525572182347112,12224579092409717605,566320726353986696,3611447767807064851,8055038996506256104,10152544133888782389,8476673215915782228,12906882399805268545,7799496971993647986,17931885698086609049,4204594481055876046,2457822078178033081,8894828302591923129,10338306958505703522,14757813392602862797,10042554224500198802,1469030767732842380,7928164935264781205,10535737283323059001,7407560703215486383,9240757206714994022,15799190979664156021,14569350758270691308,12926596664014829192,7601655400834213928,5758871705510520179,10725782958522598315,5127675834823617197,234266647393667326,1308922445335705735,17910299416775238409,10888818373412803754,10520660551946125599,2113702188225719548,8143331926420225624,11826779792798098923,9121330239691896558,7032796893902258866,15949551084451965148,13955886130934631700,10450884668471091033,13639074306418840299,15536468129435732230,15724662670238991512,8154510052999155809,1675002718242360745,4289335593985246792,311387639439689394,5708666889436774892,4744354688791044600,9924383595414455645,5495581671025758359,10285282046174921256,17230676771678110855,10938081370685065103,6960063578105073889,4925211730811309054,18068874040844282257,11493371954389693088,6955847022783267552,8284385193656234935,2150057332723955957,4829371509890578129,1511063633057260515,3375686550230861092,7857725774681976914,6759517189534212348,606384208978669288,14520743195274999558,14944000596141093964,14905703875493461823,1295068935736469714,15466669482713140497,14791144479361319154,10481957308512688185,18132970292761569586,10748527704629281242,10322556073997256220,10513674722774417284,5010068600327445901,164485086280912287,973751253167728429,8183657807878950096,12359975010127861834,3647046748113889852,8241878615734248496,10698152785014802253,1073035448557524456,5310605906279664515,16728756257052202663,13031488072955997682,11980819566596816472,7720229021347014378,13023315438329025703,7564415538898708962,2219720783603539000,3683626456424286893,5318380336754450700,13933667303221770366,15482220530002257686,3254763309015864825,13522224987115802653,5860615132294358374,11435372018096307811,15486275869430599677,10810788483091746513,1243089163007664538,13668791626373853158,8437109511837671459,17022642534433956348],{"siblings":[{"elements":[10232406971073539087,2331372470667120413,3480921091015719851,2154807435971562717]},{"elements":[8192815758639541060,6706296117378705671,16529742212901771218,14816823582778946484]}]}],[[15660598466496751482,16473040576664298819,4105197085526202659,12045708287609063495,8863787812728932692,5695363860623953066,3886962457330195891,10865649755431848696,9115084141047502707,13914480369922855400,17935413553685671,1660264298091255864,929824293681810008,11445220049349835723,2517388264144440852,1987154877831475728,13186197170601723113,422356282056320912,5839149014300767417,12414413905536643009],{"siblings":[{"elements":[7026535443865392910,13272235485427747187,8300723636851999531,10040137944754644794]},{"elements":[10163373677421562940,8568843666495184179,8586980723393517185,17999155642592664334]}]}],[[4231777900432532216,6175732809492136141,15578457369392161357,4381043519367007335,16080826478288230599,5550367126768084595,16841239280292805648,0,718058381172019671,10599373425425018221,16785911118292652370,11161683942944466731,752312895110705102,4732080847005175810,5069526111537302049,0],{"siblings":[{"elements":[11697927707485652814,9011341074783506995,3124669762669649165,13403655072665107142]},{"elements":[10398783662253636214,2332471417925761577,2571958879479269894,8535697520800831288]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[3637070305041024820,7115771682932846111,8611158289523224770,9518070641769033924,1414236033612072022,6147876731072370645,13504102503993610959,8210849875946775220,6771876429221686474,16410199602681622119,12372775030713107147,5663336987457811785,12580722705930690517,17090657838437182384,7774896984689503137,16212323194997952509,15790659407107605687,1338816195755076046,359989602991365810,10405185517321956368,15148039461417482223,18261045222745213366,18028880292742600857,3220707958064673304,11910186047229120732,15305670882204945070,11279996028369840591,3734042228569772405,7558526080657992474,3001601900221145638,3450170215377475763,317773060535564399,1097735373536301714,12615975359282791648,1270599954170946834,6656611499892164838,16224974003789441732,1403075659235291766,6997718511036935469,7643847128057754052,15085852564262096901,11477237190481183744,14985041832410328959,16813349468570663778,10173398532465637178,15857598709347778091,7934504258760404609,7376050159053236630,2840728545085223374,14741872313157947,13704845647880446937,1022125248820200470,13740675135639706525,16948491354477646426,14789724794749251394,705761185161613777,8582604557658600577,18257069041670641021,146898569877779069,15878895256307505366,1820417402209298820,5758860122156744725,2215328957670442570,14254262983789176580,17390582322684567064,10411845306820428296,6342535375332326122,5775175313759053125,9806327680441202241,3502367619086583741,9863578905882954097,12691132205133728054,6947328166316987045,15916101843251696086,15280311966061103054,15833965922602343683,4678288576301668861,1687226105749041911,13454350750410999397,10729281105222723510,951203192928886881,8511106208627352777,14642340534124220800,10381809804774474872],{"siblings":[{"elements":[488713213671729554,10255131012145408020,539496966595987950,2881937287605504249]},{"elements":[15881389161849586271,14711822840974163933,4971372235232643921,4593900484078443606]}]}],[[5522821425678279806,583489417503378873,2084590777804941646,8233175319507917263,3932863601229287545,9569888005459438605,5066614847593462094,14743220246691612817,4709112968543780045,8195286272803409086,11616762851475655057,16204164862022044366,8840466813726887510,2373680172939449865,6520278598058732639,184607710264618720,18116945710174278607,2812134456841027528,17211294308478401101,7388130170877374490,4710384232892067695,1622196702104558555,16285611580777477946,5914772261214761889,10394515232235573498,16803937591221952146,17043547741670046369,6642437087610095756,7134594096649333290,2050393832707399334,6760294818851118330,18335549483202562599,8837287542053396816,3616062155171005131,13614166146028791860,15161387294535488860,6913521946484981883,5734190028564639260,8838458088133231683,13678530289520729384,1199144361054657768,2529806382427756405,6692780418588024868,16772644028868817865,1169620831335187184,10355018949282434145,5496160769739958959,14288667190838751179,1543639931725580727,10586226513401511361,15597780895201291401,8842832867239604083,1140081634603765568,16226504262715477551,7529925827316095997,2892727279761477217,8839094766651599226,1078627504390079055,1981856827859363417,6125840821168036680,12846480634122040522,2981685085440400267,14904458548903405341,9446188498200215307,16009533018154271666,16455199006131452270,441951818384351999,12580690155521576019,8331922676139894147,3940638231821573112,5333975220516448450,10042731111335100678,4170574384543494693,3353556869880274520,15568378200442535898,7424868175099695323,13829552708343094363,6601512844432977802,13703769569034997731,15830050552508073705,11437147731091675149,4003049051657591636,2588511233480400608,9573794499221399231,8310397536690177282,491476287531242448,9709343147646097411,11400543051530220193,4119446364104300271,2855029394671150203,4176601166520444712,7025224940493935751,4843857236459551139,5120647362068626353,12513354135152637008,15540188980905413074,10859605696430753758,6561329157720909412,7348378956132646393,10553553339567373116,3637277101910860687,7179595900254321911,16935998894851452408,17137705112332674428,7198255808672524262,7038401590432494818,8087405882697880917,12647552697289583520,7410582112811479221,9907139824605083167,14150064781293417370,14290393439917139672,18154850219865624388,18244597535419062291,12475394794051369462,8907833277751755794,10447725647291873755,13604650644796106352,4600402289334924284,5822720608157422748,8672106266341662236,10041714133965397400,5306283078294883542,17261409476793630830,8408461321987381482,13505038221115103086,1378299190759490084,722718442649232340,8338754432744799442,1179599050348908403,9477340161288903324,11741888104051483672,119319419290684268,7259459957057306051,1507164269003235303],{"siblings":[{"elements":[9423107637836157722,12930661620656564354,8562998139717966983,2953609585719566823]},{"elements":[9373252055618863258,17154472301310040304,11593896903434722113,11245781697972110018]}]}],[[13500803519268107895,16676963830573843935,3696874852497441200,9833663173465582623,1702609325721293901,7349595950320675204,14504294571356490826,3772696692201807478,18316330695340168292,14786838441717757300,426178183582582834,13355485559183293557,2068384055542288319,7202111186344776205,110750914732950309,3748296162328247618,4521706089975350235,7298134526384982822,15635796437179319765,7015333128090949881],{"siblings":[{"elements":[17557221494658630188,3227766625044182532,5100918194047535245,12248056684551785409]},{"elements":[9249750410787918236,13926454221438005950,12355458512614451832,8052117305133254879]}]}],[[3181469947265262559,13137609443321458199,12662208839597353077,5133723406822271387,13557308506354221214,9857312505926598446,16123287365534611186,0,17333924400589783552,1842615142898341770,842565247351782977,3190954413276864775,14569991029620225551,13431727866960576299,4162147461873490487,0],{"siblings":[{"elements":[11527183259498892363,9946330918593603782,10404200333219222499,10345076201145684208]},{"elements":[1028094200351164062,8245739913546956393,8798601443111675475,2034456680882900879]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[11478853722654892596,11054649085732609431,4994009559595819210,4186791003624108490,18024865371818158892,18345183498407461526,9694238634292017590,6724859886830687063,11243260270601353574,14381814419105033411,7818933522528881030,4546529647928812664,14925540237646974265,16878266396497955220,12920668997211098573,17268828363658179930,15016004026910537377,13817031165285279441,595208874785186131,5264621933065972184,12842607752779588909,1036458340443929803,723974238512284296,3865120520076342236,10591874432022570118,16672770104321157989,4268204143023668522,1442101787761795173,17261059111713346750,1886389845452355019,10015188874733823167,12945251435542942346,15729006941700819727,9769721924531241974,10360965788706053704,17231683844444576182,4860556932014059440,11290628573575307583,10467853112375278596,15672706883929365300,11854941895739424568,10532167184289139234,8849900270380063794,17258070778068654781,389392563654780465,15694034380242781064,16408125286346615923,5240758237683744215,12594341864398680415,13125157218336151182,12110224318087305788,2381073337923353293,4801286650727974296,6463610664988967714,4579934330236307092,16913166904864701304,17120949083165668392,5417444260846067353,2162861526281072576,7230041798647740383,8052962025075942004,2329101354125768248,9495441095357060775,944189234100813522,2974037460852383196,2808898223350514185,16825144225291284340,16495574607473979160,1773988643127921369,11103048928261281020,17248516975848621671,715115511911425973,16595596184784813139,2875296451261385175,748823176798831426,1445145643777419320,1059249732834213379,18281412487205604006,6977248505445028194,3497756901944121467,17667695280482817497,519454644348557937,6789904627007533608,5570494389550069031],{"siblings":[{"elements":[2788283718956080627,7243963918501585343,886762250337169434,13103212312216094922]},{"elements":[12080961203814882388,3507164343688256046,217812273724800610,1252946754184999199]}]}],[[13928294621723921177,12780940283369458641,7876240315475227901,6066626702537238528,10921311343358247013,4660064870837535971,3917750038277051688,13060016292080574429,9936379497420869445,9569686606830495891,14309987984683184876,14933181077210844180,4567504805388681847,4451513967235832192,3164748208325736115,8824786929966249221,15278390620346222611,968137396500300411,8501128264181401305,5914595208898961387,11586676672149264821,3044289833739720688,13264240637275567457,9282450016757742167,7591935353592852986,11561090209630943550,10624913600881235280,11790660754292182132,3055180634608925062,17687356795440217695,1062112122740497467,12410650203683793868,11668367666350933426,15408965282831885699,17448122782909395331,15837423895535944147,18376253569359170750,16342463043235202885,16202315476150519810,8938812232387940909,3354638606602819543,13420056720956319662,6795055450494234003,5735555410062463848,4430989350272774830,14238952392192791690,741650587947696596,4341264100298172861,5406564760666030634,2657466226833493005,12763564032158299619,14116236581912988292,6751009773749335388,1586544350869727374,3278037389016168130,2414040832720535311,18441364551203279608,3243033937774991994,10532988236141586313,9496075198816348245,632471506799531005,10099920573137397080,16491075452639500370,7806145719882893504,13537667783849216730,14646767100238118587,7903592264618681964,10367338164437456338,17819390511292288886,9612159459393537600,3700279457787655281,14972210241743392722,6709156559592085767,11305192576209651673,17809226441043947210,5126446034840662884,9946618029384525527,9642416860413174446,14467412212773980706,4867700418051812450,12744647149692331592,1380091959676633575,17148563304650867054,9376661282592299226,18121944444522255419,16451153074838713283,2521693366550946941,1088740810476829079,16803766051334600380,7099984862993609501,15945620798886296629,17362589647650777960,5100788967197722500,1729647832538791477,8857026702492467586,8328283482263880373,16642100660005070538,18319750921761939843,14384339212447883913,10335981312798406516,1177025081549345724,9581599564425798544,18183086006606418426,14542454731201203397,13779574431143174675,4858397063070170182,14532447381415635569,344841819475885517,10317848199273978628,6009544013465900472,6551841242222119801,12781623033237952997,8673332238196420203,2356345078334660518,7867691687676496974,10389297819478586634,6335409477384459928,13007708500537604732,6300911288931544087,1203459589935480992,13704577378680327047,7310733409323983002,9006921166866309861,7763015821986011467,7697238140201931863,11758851316865416296,6512481414993776951,4887353429020190966,8531631370225096411,12869816394451261243,9089172687849043658,11119564756628837117,9145143881545263653,2175790401278801077,10151349277367535661],{"siblings":[{"elements":[4108951978988732862,13685321873487507640,14791462321119955581,3054841872416154314]},{"elements":[1163636391096424029,3569035311789534588,6189669456893646968,16978108723929732769]}]}],[[6944171901675688904,6816602359732322764,15638317003349100756,9750434234928420702,15682956353414017570,4253046227358858130,10741592312871438580,4947551959998255889,12085879759551696147,4145619502698240865,6727238423423347738,9489898324002551905,6428755055911811639,17503759394454293402,10475334186548825075,12138769206384836500,13989172805164149607,14370498067087645143,15880860159635907892,12858154205053350737],{"siblings":[{"elements":[2116964520700019711,4249803733398205781,9992161834745138972,9252918792683716054]},{"elements":[448807187661595856,15753641593466393456,6340636304161688923,4404327375994235308]}]}],[[3577360935506004240,13688822501728836607,7377648452872554925,1117700242263558865,12977482999782045338,3872089133387447887,4203785800617766369,0,595698781729961810,13815455257663254822,4008022753070269780,5167983418067277619,13512401183256996087,13198000090575324687,7008207672559276839,0],{"siblings":[{"elements":[3316177348809380759,13775169633418367739,12811197016576038825,10954207209289592652]},{"elements":[11844314805173075615,14097965581367964125,10459732165532870619,12180501600980581951]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[3105268577218919683,11989912106583026105,4277456366353513620,11137240172336086859,18349201232108609543,15273013952608518976,6704822519098359798,9050015166762925667,13226842686320519153,3347193472407645136,14960021788921891982,6062915076509555002,16799974262098921572,12277857055411791901,3201612051266975795,7382115164084804607,662146889887619116,13016842780887284098,3444811500233607939,15511441150823011242,9780556256131350880,12462620422518845672,6163736458104095804,12629343512035302775,410370606607622247,2132753877292689810,4842492237437399962,15053266348599923372,8239677878365373096,10993952151908376893,5375098356009186532,5720871005245331333,2190160153970881202,17635097469157341063,11337048257262422953,11433695949589795709,1252469900929234517,6591384140304875568,11305363300565636678,3548799676198027661,360948816514830994,17053653383707475671,9016758549240127687,16719006551341042080,18087881259038337828,12496684250686477772,11206483302239167954,2219634723706551584,5367363549117633394,10133029030119024626,11413555469778317536,16680679628030068736,11212520980057922936,16594017827355991948,10531739857082687251,2430412201132474245,7463275843194444997,15716357615649118109,14668021757551569881,6248568984062016809,7536808108301062106,11383013220707643264,3085811368877815492,5611202298845305436,18067080004557481926,10986776116052097463,11888724840386683571,6373548854931797506,10763783748826365655,405435378230429633,7715266384065309384,10539967146555409797,18403083751685888255,14219651521703164141,3823542448565172700,15974999712143818506,5852041549888251460,3399245960160961247,1076541560644855318,3099393187520493392,5549855333064892703,17361777203301722675,6477943894625696788,750182178165592683],{"siblings":[{"elements":[5425364553312560299,11537798991506700872,5015953739612256619,15826017064500090616]},{"elements":[15569594249511601125,956031005415651622,9670184325097649857,16069782850068809130]}]}],[[2879513735513739429,994299828695178941,1585596748559221593,11914602724680674780,3390733065850369045,11488754354521308380,6578571082813910063,5021455958604112996,4317817715569109176,16512358670585166716,1320602602617581076,11618896952743110225,14398308428303273430,4415901900963910711,12853995790810494078,4155259519872435224,9279000737704436740,11576839996426960112,35634558733824804,3629424296310346307,3547234464884376423,6228100877102197765,10605275713856604729,4449408182605696966,563784577964376268,15291394222029882713,13747866763509994509,2072895455197335495,3477207612072192603,14459557152837838476,13381621248751927071,6512288780221253720,15751635958372534700,4240908302478119126,14896079531189846786,18129706577345247226,17039060676929329601,542934592524871551,13022902895727079151,4232749313367405999,12386964150824000639,9432240100926729959,11458361646095398010,13277693247370621956,7504104469620222234,9536389788694951137,6971017661631909788,6596524412016333249,12924575873927264739,4477980993965874962,17585922922467421079,15467961756667703036,15960687524642147394,517546348353327210,1390775026488442,14157611484914680649,16530458910362190361,8219350039504287447,17172836451249068238,4586811505316822725,15070190489337673616,12846909466573962881,17553310897757751208,13114695924489786875,2604544568270789657,13260828489576763635,5090846813938086545,16024553259819551519,16100589007823272075,513487088633578688,3665041122896175347,13266533417457450907,17666601885007380633,17512776882022336587,12250223279961969976,1445580564526646199,9270738930314169139,48132245707487277,15186378023793143398,12414407724182314883,6582785599032423334,2271652982127001002,14640707937593924154,17478237110886468419,7511694586929234363,5585918053670725128,13742084248294308007,18252990196933197570,1699122239012775145,1152898189585438369,17979878619993273850,17040465928994756770,9417443835596628234,12553975208110709201,11441938685939878674,4685206695148852605,1528742798118649169,17985989196186384208,4528238877600406139,16298589404657118404,3680245445415757000,11678787753140682986,16353942919093085340,3070872341300535422,5814411451879975368,4782642012389889230,10955249799240234054,15283190699927950383,440420197970220261,4571832119779653009,2141039754145005875,3296933548777145865,13193976246799963051,1534458852892905373,9915465093333055274,8528565754187626992,3508268887634506467,4958813104726788992,16846512495042934729,1630199134557488669,10966385379127352319,17239235768004466330,5769905426759919142,5091052673272851336,11054435021722361626,725264921863563715,5199138323467343698,9759242156467430864,16652765857342836582,5519289171672227006,3597471540244138519,7849118798739666638,15836147428376881070,8987727675677515920,17465071054043408900],{"siblings":[{"elements":[8042414911845310040,13576526843857636,7477167201534450216,11038001715373113185]},{"elements":[12944959919039873841,6240539076327042655,18379592036034500426,542918395822923988]}]}],[[2647012469267133866,14953449708598992677,10238081399144617439,17191427320734758133,14951426087385643694,8400400124513552838,17846399811522457957,9113488423980692135,1103588430425993534,6997640593545837948,12912724076890821698,6970183598183291019,4434854995635016978,4376110201431438039,4964152265436534260,8820658879655162992,3738582110085346558,3507541492477157729,6292161149081326925,3469759498036709473],{"siblings":[{"elements":[16588796315614463564,83233759638608395,16437105441860379384,9621372900592583162]},{"elements":[3516755382986089963,7308215005955171395,11234588676899774707,10507147201193349029]}]}],[[17002243542367627735,3178479491092714781,6449146207476102962,8759048617464285536,5691262670807716039,16795005063253900478,12538036523809122351,0,14187251532455276047,9236003726167754591,15600443280763082875,12244283226842140210,11176035467778687353,9371591489983619578,5791735421629594348,0],{"siblings":[{"elements":[5138119328875124104,12429497042463348437,5671601418080417467,2315451081471898865]},{"elements":[4278825114222421620,8705270452145257568,15024687938116310228,11352379782173391642]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[15758775234507621717,386873473794195,5809584622623378771,14306751210974713097,11302554983959589528,1327832789599027380,236502180870392261,13264905772134066913,5857506752267947624,17058040426918110216,1342694698541376124,11247410261659140067,14350114415645219099,4583230930005435996,14076503119706401870,15880020041488722480,10627821187628142573,1044749384776247668,13803094214927487198,12544379753173392690,13057050371697995823,15330579406842572521,9707896952003541119,5786715142615771477,8959768511509209644,7466737346920902526,10422822089882229296,3504773151285322564,3419470529597640908,15847878555525589235,11410879681056200420,3245040583009025788,11698930509459870103,13570140684066883333,4107171135279491735,6816442511716333526,13187679564150780741,4957755858430971647,10756562738671628321,4016481060180503199,9005810410597864305,5421891320356037402,1065438370161549321,14370621258975165237,3366746491579372093,13006491237563855897,12466845178667283423,8450232994099053767,3884423878484462695,16694495941341337565,12276393389691729961,16037686545199925788,10895977186829848590,17156636392074348353,16170249794752475724,8130522156784339061,3758135148585897412,1504470367743606760,12820235152408801940,4728472998567873843,2824641811007953243,15118259416555888165,12215493150006810512,8316066871495739628,12009914754943290636,14195274612200124758,17522726866577553243,7499475354690611506,3544346123845523313,11718047683762303071,13490728387453084563,2218114863523928610,6026027352978102532,3747782856048583946,17203016452260552408,13031495329552308162,6244324079390071668,12856980774624272255,8466864435764048595,15680223617309057078,7581596273487594510,4663524874409993864,13442298349819084674,14052760883976538360],{"siblings":[{"elements":[17239242580999488077,11539643569776883494,6361888208514807188,10670222042682017864]},{"elements":[7372999055943322391,3141364051179517969,11032666934607065725,18114007743554457067]}]}],[[9107796823381699083,16818241499348717087,16299777022319025518,8287169742405572123,376258714183598315,13026986149502183025,10301698257265040980,11641150840159593374,17853449352901191962,2629611526615646454,11869193927653075953,3939177903971412578,2564534621613472205,6440130997149293909,17949324353578194713,14659817175362329701,15241406140910536369,6995100056035354242,635130890589199730,2535253958939898103,3975904728006945101,16863220586811790805,1351216244660481530,4071555695364712382,6055555360851423921,9541498917423420728,13112420747012181066,15671167133169760750,12506597918365809118,8485022949556297385,9748033045344531643,7156670229416695335,4241311609079035834,2681250753393461645,4932186409076346716,10699360409517437037,15526658194990367550,3189222375462990201,6532454420792119500,18257197926753371713,18198493468131711267,6522740821564568701,2502102946915708696,11191704500865694380,5001925341503033458,8041638605777938005,13843127350487169426,1554642176948794106,10061535048038697629,2720381934063932208,15808730798371048664,15059593400299396355,16818792853867504932,2029454476490067564,2240969371637390527,4067751554362618070,13961509235570093157,3070708865470863205,3214366109687418846,17176452202648283319,10849591950258172605,8109065214527399582,5030851266726800223,18075191779791575660,14568110306348447608,474861599460179399,17467756037234676326,5720044220413142195,6929562047244907495,15161988023207057485,10568932572365519636,12632981401046128373,4148541605667271505,11024780705968415512,6337414374853957024,9789235407784506339,11463215104855855696,660351453363580548,13504134212855897862,16200686911042369114,4677808870410116049,5063931227814557624,8257632762511860769,17282574532297749629,13662389025224658311,18143852554449017905,14257881207452883426,8424926045059867861,1551572599337458772,4429356077696033658,6732330743209249110,776215472741980953,1331360349410030176,17810744175007887927,10173651623955639597,17984062406572467973,17574315389903586039,14984019783925884679,17542231225497725450,8580909479266687787,8458716678637593367,18277377185170186762,12599781750791111187,13351711232948118207,16406849747846261779,3666907609958002991,6158759824122084042,4245190549527318064,2646542004673882024,12045686992593752880,13505301756028857503,8613916403469057658,3935103314592931169,7924265725053452231,16246727901709903601,17249086803906599782,1245870018102234187,11851724969693094563,3666215700939236110,4158830309255239674,18277386374041423343,18264855912116155930,7107730424048810560,1314045505292449107,675889833354876768,18435693480474735056,16073934374127454996,13081817221608652286,14796392148849930437,949275283130289666,5693480169603240444,11898917273469915071,17862527130534730925,18352825158895626412,6115527763500516579],{"siblings":[{"elements":[4689507950239423834,10455040152057299819,3704180430049165071,15433459521157988482]},{"elements":[6444848530783558746,15753263428135990938,97230722525014282,13121239098415651679]}]}],[[7672738634888759357,7228300772628482534,3032462065517203533,5186302717828799609,16554285787148056024,13189378491363895461,4052340454363243828,7942059330400588685,1475522344971973418,154110418926425965,3189588580504426066,14748704812343066378,13261496501993291215,9721478026725725765,14031354610168069083,18165790650214807091,3740248345047123969,6404207123370215081,10175620813713453593,12730758899532534792],{"siblings":[{"elements":[11008651319496652206,17271621044655441162,13442446460710627860,5678018911057495402]},{"elements":[13249153965122574758,5090773756675721835,9423331643230999862,14143234509677074129]}]}],[[7130148078471576328,10379473006867291287,13984853568096288730,14256973919612549879,4220840666747059324,14670780262996732322,9292314610272843862,0,12271095177976667588,16592079572264341866,1303257653717182843,10521842996837927287,1235559427196663621,2662319354479751752,3870922848792695313,0],{"siblings":[{"elements":[5113187503325397342,2885340301747824507,6592815064973389527,3153294030704309845]},{"elements":[11953638532976524033,370136659460033386,8614773404340959242,5907159334526019519]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[15921612139218149057,6612836170521824306,10342650837803270423,13459145027299638987,4343149468427784854,6306766087617817187,16342620479075220374,17479160329873392964,18104236740370254805,5607328564894973541,10502145240772145796,4130963703961361294,13544028766188778565,15519457709599501932,17398324273599873710,14463615589572343353,9435912856374078854,8836441558487788512,17898282743241969403,9258704766747623541,7878433485797785859,18067436042201688992,9318002019468232878,6326797520350658645,8206128250534918434,11618630132567531121,15069036612750943026,8970477233728510462,13985355916501110796,4853915339790728169,6691787093014351945,10765509175333716655,2732054177417452813,14355223036935627218,18313469936770660675,4099088726421054934,11067935337126770058,8372590015997438790,12050200771401843732,9797443138979453441,10801284484373487018,14084336817368209221,8037351293758585204,4062288186072702566,16208629453251359213,3610819264137279228,2386159706707875038,13673066109658339478,12736074861155137424,18054084638167379879,10678794287086826728,12274029801127579619,13060818613518735127,16455397185020519450,17257570878613352059,10495273652227504582,18007317123104278548,14929588617642168189,4040499645501908693,899640177916318896,14847057935001729645,3918544086308486086,16699012407426003368,1767011055575303739,8676559830175969473,584875825237088776,9553927391942357035,18289152540364467830,6046097883437006264,2334307118741742780,9676789771270930032,9004364208376575850,17540179572388763558,15307939066305365517,9521457428541346693,18341159027680375959,54442831925297915,12668523912505920177,15836221924220273483,16148908317253873318,9703937035035950680,1223015419868895754,3378796322657212700,14351038870911476040],{"siblings":[{"elements":[12062467960941943310,18264903870078144546,12685394059909223572,12648297952715681361]},{"elements":[3233867220909638017,8698185977443146759,3080105169737877659,11915468074270704376]}]}],[[2967615910498330307,14962416615899272532,8807794038670287091,9623569060591649166,18381370628480357418,7016795173545927937,3576349147410851573,759496440212718504,9410689425777674697,14463462189742615288,6528079282563724547,9849161174349312674,15959732492113215721,8508656359885145845,8498578398657338466,5661970933913568901,2196492928697132283,16279159433034923931,16315676790670051634,11222900618777309780,17234087406214306971,10089101896733952036,8265611069173250772,123156517094847370,6355138491960237618,1166915287691706157,12159073342709858725,15985307709900561020,10534328168929885899,11694695670420273792,18218696112108316853,15028074862442869178,1242413504616973791,14515480823155573227,14872014788278668443,14184970326325301981,16302650226945052690,15600499779661895945,8051865763609867573,12419612577638014239,1672209398160514656,14175393311501611252,17222311824247475039,1386866127455345790,3013927063876618182,12074444015520437135,12906114189815706453,17525348647566472757,13960376463943095963,17123768984186330567,11792880556605504055,4690104906619087012,13434498442284420130,16062344027694941070,5689947337922454243,3691480246645818130,15647857247058953143,15344993509084662596,10021980099097482778,1690418285063843718,16394981508466551966,12880911344985815165,9046532683967566695,899416545208272196,4894439397414501330,13524233483064590693,8742374793645654444,15042084663587295916,2084656067498969069,15702479501319891953,2601996965992107621,6599285733946428816,7382179606479942037,4815721841984389587,7923260127506755332,16862264256060961529,666361015978769220,14640296968077237035,3056264834489483677,8586203937646532060,6124332413100717558,250902810216395383,15794103840155393633,5179402269116940917,4912664400887340138,14297791659946953110,17360881484436713699,14108424585000495095,14701391249527767751,12370626635636642440,7390052938470635652,10912909173982773618,10225265416958622978,5662556795115294666,7183574157580914196,266523515065748806,12023180198231146852,14869906793467486469,9818802452614331248,1956400009350696666,6650248851997257012,2898916084164358642,5352749728212849427,9337212475766392932,6749695080196620336,10184863070236396601,15265479059209445114,13711354740344418882,4352769086229471404,4207280489632671356,7196341168480479436,9326542882817349406,14990920964578523004,2105098344692775273,1751077109913716001,4542004112498571930,11107357627008315704,13423199713165910767,5787324903494545666,4949510880701080179,13209645584888478600,15768367352742589034,13398103178282248151,7357610733662447957,3800119267241047162,16535673442099015123,14051112674593657575,12598965846022379506,15495376781169014418,16231637119685860649,14010153742117135788,18359080580883996965,9656872364327670007,9580424766749263494,1621949755971625908],{"siblings":[{"elements":[10334487489176598482,2661002647420386728,5598175427792185895,5123967144860537165]},{"elements":[17425144728934582193,14939775513103120459,1160319766018238161,9287853699866130894]}]}],[[17190303691202961878,466628773633014750,4679851666314683340,9639548073147952304,16266337369140379652,18354803028036297286,3185633847469078064,14783491706935461053,7969282644072585878,7260637073560946481,4111992703586574162,3593044191912171670,15404517825009127729,7029341135578761960,14325351866240371949,11951341864904607634,4797385995812702331,3886098555824850332,326897463106816115,9430393365519304249],{"siblings":[{"elements":[10983617017963150951,5832693502878524817,18200982514803727566,6488649552517286778]},{"elements":[9040254179207772056,3725954116024159911,579446427393538168,12460963624415718766]}]}],[[11520455466518453630,15800379872011980617,13775155314628389641,12206995835990354059,1624492718449273886,9060649500179574243,10553031128066771118,0,4016615690515928863,3511625367237962859,12227177014238511960,10508008634625455196,17983451713555450278,14646974273154710993,13497586500896135935,0],{"siblings":[{"elements":[15390840970515076136,18199373292570375260,5289438621291781653,4814251856266797592]},{"elements":[7502452631934274601,11782982809276846489,18122091354471366675,17733080852835133650]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[375328944584183393,4247706021255337485,11706807446003718147,2904732840066002447,18046556544271250969,10916790744547718956,17417455500052103819,16865149589710501282,7516206176750212153,11918341555123999967,6438631583746773435,15591054111156919402,14898247868915648784,5038022190703638896,782902406581356437,8476475721447534742,3141781225672343719,24960222019956998,13318568201986596120,12553821336735446644,15472379427769897237,11326663298448799758,1496365523529506525,16283290300342903900,15887194343965027864,4817821258470929804,14105272527915808251,7529328033808087701,12791111736960966652,1480310065758090137,16983972150093381616,107421146925935521,15956630495095901670,12449606557574229305,11212738967977910606,18110500866781589748,16429130620582859274,7779952284097961285,7986664839084840667,4336809532421740351,7203799611063838576,11560435871645712433,9815190520949331948,8716032194773025707,11723673122810912199,12703447421820732849,9780264156921829231,8585524933896102493,17254462011759100274,8509313049271687836,18155784473960727319,8832240748451399136,15022854397857957229,10314946459377650889,2382285953043542396,10901101274451940707,6488753551442959274,10655907811367625707,1377911739024153286,16061069529229070329,10445282428636049950,17647374885055453601,6398896971781446227,8932834602516629039,9997920820735837711,17622715642258494985,16060563494318235955,12619271982679341637,5793856278372142490,13756105895004610932,7717844781603297065,9318268434351815355,2203896032917540456,8738369653964913142,10014274937273594781,15708698748232470303,15785571182443519050,16491478051113211775,6969461676564863170,15903387008965589169,12741230739465879464,14561695049829515146,5122083969314654828,14494368093124181245],{"siblings":[{"elements":[11905301557835126433,2811687330353170174,8328158618699204317,7261511355033858346]},{"elements":[15724416129304146158,6744691714555510949,2439391946615683197,2210772101600168795]}]}],[[13342738179486943858,234080634304475044,11298678598732126749,2971828502511703879,9309008758915026360,7072663701169099913,6707391782006575296,4930891019992563451,15848293256689119765,11677164761086563366,9642437970839644563,15790509726850804731,9985289950457403584,8911509066990618983,10194352198598978839,985365224354732109,2851752088212615625,6453611720888279711,11661308961925345976,7702340764064748717,4061631936944691808,173266809382485119,11270859832502064436,17115908987996708405,15786582231066938801,15897346215755914600,1247211896252699966,11678762051386749380,10974335269197831587,12737393790299584693,11213366565310437930,10326903319856681922,18415271963753324820,8244418083859388714,3948674994952110907,1890106183737059546,7732841779739159780,15256516107793676931,7075819829809178998,13374950885333916537,8675620986431300288,10194383931443125782,2144165332098994954,16414094358983476061,6598915048566240052,10832360229764839577,8068654365213703490,14328009029406499049,11093620887146311144,6409062631817556497,7951787160823922544,2070631726630225916,8019603097561475138,10427844352192271762,6053120303521723375,1302023923739576899,2109798031825286784,6853224168787783294,2065536501188455921,6189343424012906662,17040740265974336036,4238767120048715289,10838903718798291359,9092122650598442114,4488972030202184771,7536676758053288625,14146623154934195877,16931001833265485467,7540140861226977581,2174489222257654858,11973320646851510357,7309045883186994320,14117874724367430751,10518967109812405863,426585804877602495,2115908844409249289,13341680549766191152,11627753973921901373,3667746917697293815,12345062739671030296,251281629005460602,13463196348875284122,4083262048600222510,488258576903563995,18049400610699709898,5996551325524019919,11116326687023558416,8704834082273123963,12116683315763409622,3741530667755127478,10744308627208634789,17672170734892066122,12970061330803577946,5629416708737971321,14834185911290143726,1077922127366817933,2453829876738293706,10574415348177273201,5298224182268336778,757907768411546836,5492071492145391840,13908520303269416846,1036818768848557696,179820880668755004,15890778178960528814,6368189835566625178,11885298953419640723,4310753263484991936,11158671401139861402,16457994809194364675,8810029551633736399,16168513904680586086,10438952037842229799,2090983307378885012,3510351825164125021,8639653581250456006,13328293818359053100,873460109599303491,14427852360778564582,11364421806537636282,7525088580327953229,11166924763348184741,10574706037055868988,4799833112610078038,15849745071631295263,8074556001662449004,6472906657640115600,10971526374004577531,9747075249391171570,12335230136906681894,15778850918132059480,12716381588908274525,9802647329683270019,11378300745839479660,14489095493184551684],{"siblings":[{"elements":[9194871168297055143,4497224224942579350,1318870341696597260,15141389544564323854]},{"elements":[6620612365127861797,10763711871947886752,15625697147150807941,2208506166988515486]}]}],[[12021305697924505939,9066300514280274742,734596672385578953,16581391813957742613,8089651286332259045,2504325394320513307,13907350755523500585,15646346766284032475,11292930098030107862,12190898618696159391,16905946236928810723,1784337821790814143,16406744636444998400,10411835982541836693,299617076720048475,14088646421500504349,5914568947840368883,5404579066469489436,196126961068759521,3551633791218847901],{"siblings":[{"elements":[6840023639383162915,8949066862477646354,3183800674356836435,9189444673140487671]},{"elements":[13465335913465318575,16360439256146192806,3023457439489358989,16575754364873660209]}]}],[[6931409272951874209,15972146802496070713,11862520411413449019,11684210310597055181,599545267026507461,776813884888545860,15313201177421592007,0,9719995395201842231,17572343885429223277,3234841045614451056,20976596376601406,17631394733429354346,15355436510823571965,13234981973355360442,0],{"siblings":[{"elements":[5142180108438067043,13064652286320570354,517505579664554905,10205951130790123007]},{"elements":[7491611630538287097,7662638509464736186,8964323373628608506,14225739950046305488]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[5625703781286000170,4638184964133009474,1259374735575416839,8120578532916090674,7349452411640066693,12866562932612721664,17400698262681655041,4651106000932071082,17783232043793577400,4510327606801636199,12022257378550870614,15945891714241651745,12372853726486191986,1057815184367517372,14732241336230466170,15279731560328757280,1550449757089549895,4610037844003765070,9041323241583131901,2910081345530937543,985887998829914860,14395940474841304798,356243686924777175,5040936669774799600,5933844305558785772,13901438080456386765,6790865113319118409,2224834593326525024,12054021840616938638,7192809604801586076,16392123786125344566,10718822516171713855,10745136021587360824,3783412156557244020,10584110425643946273,2684884494939838060,10523378789664457666,8174505741967406088,11282548387232391456,8493992124861254031,13039842955796920617,18099340676038884065,9578383844362102628,10422895088755253726,4538251071856808680,14434679698014564110,13056499822836345862,11586149975187856850,12761822573592891290,14680592572379073272,7637900694687653283,656033748851140782,1094099898907430109,14821593700298872962,2535962946958717409,7163785091349350297,7496199419868718127,2877164516860826553,1421492741067673079,7882531635397475925,12799339425572509952,8989723021790017699,356418461784963294,18045785439390766900,17385085224313500287,1634414102768839729,7210499552625990128,14975764991787341192,15054538560924454985,13518518032092313277,9363488744122204230,4107553992381360363,8775452796445734146,10138976953390357438,13602198090448653252,11675802640258204149,3680436994752389964,2582767331279585752,5641907884405591524,14754028930205496365,3237519569899032163,12973789551492734696,4867394074201964810,12431843342953466789],{"siblings":[{"elements":[12179099493414986875,14815457148289069262,1481145606915669981,16125355293346588636]},{"elements":[14087148344668613763,1774479748128902785,17398878651719132826,6925124511054673158]}]}],[[677049243997162876,5801026658968030527,6337981691534081518,13840899640018391163,1067976082970761197,16773151079644506936,10286260296313895487,3172551005099516628,12126621952692557448,12529523069084780036,4528649286831203007,9791674036807572737,7688218660630432171,5517774562663970651,8769295304077527430,3837849882547070865,5063824389440179555,5024916676258528766,9507814877056507699,15737238478590075493,5200465022454722542,12218055741284926708,17733666040267184326,13663588984991586334,10772496705187391152,10559200288844690756,6004486750515417511,14758540147075282714,12106995223249359538,17623229566447760989,13086993292565733879,11971119399891739138,13125239103917006493,14267244439901681277,8145042587825899234,13512799315685194727,16335743657840960895,15337842797198173807,2780784035638037239,10806821224697014174,12484596814548271851,12646390398388369440,8044572967695891746,13543659593752727874,6100510243001850265,7957129274935071310,11285941668353459621,17550174760288337998,12638059189724307005,11433373936644134826,9452030353880656283,15235860790270363360,6107394975871446443,697376088763170956,3176579430138203774,15191549599403156456,4272002203939792540,9970100272991880657,15027462507821206639,17700935117390175104,5441248390748687947,9648002897172033383,16355105432384028602,16483999975552898150,8419997573042684304,9569296170803467251,13169424937750110956,6212459127418765359,1848030310084167787,14257420925333819265,11130262122988554187,2633256865989917245,6611007542205780048,1824695186764790926,3371720204204537660,3724608940533903017,2892316397092360909,8795867715247176463,16220238604678724327,7276177693361261031,716466881164532179,16756919868705304799,9503856693326608176,2024532980676111119,4958952423454257245,2644877641051717409,8887769000321343015,178587074991200651,12282584826267213973,13494898858411135053,16871511716104837794,11179227470760463166,13929665939570543854,11248305006008576563,9145788441642071379,1371277926542596838,9050802384578840470,1626431189545248684,9101996775138168749,13610292852713954229,8267905069698913517,10194707120321213820,2313110072357973331,14520641157989114010,7250420297317801843,13312506246174902030,5054198700733447328,18262731400455799674,485956924700430930,13616334052797848857,4807385648071205760,13316578084017522986,10478703559814603046,11044339998436717681,5539344568032703815,10319842326397031901,1516993978862806878,7178688607583968933,9360571362850014570,1517638242952352528,15684449923316748413,4962187043929760528,10081667204271872810,1446841140008818322,9944647261690213770,15861624431731969325,40088405303976511,12254412782770941648,17914863194388741605,6190348818004332998,15163835600610376470,4600615387031073112,7833900212811214776,6239686975066907522,9101431187976501143],{"siblings":[{"elements":[5515641543761313198,15206621609652182759,3719769513775921122,2121095828811102327]},{"elements":[2774777527650041750,7617353635091784050,11324987228534005431,13299582699468862202]}]}],[[5377160153099275980,15108667939855021286,13324900085723140025,11270472142447132422,2246774227264134068,12437158425608200117,4992484732665656061,13072390048348450074,5047195530936936208,3919138319425984302,6669306368723951900,14798990525048318775,4470992782783454514,11862038863745363674,7902622046219604066,437405727514498350,12113687931289547993,9590545585784290970,14859428661723984458,6567073302578912114],{"siblings":[{"elements":[12665865944982604277,2811641163624855179,15720318050145942787,15798156697780191839]},{"elements":[11427885377882389388,3183865215102623611,6645418160864263831,5502024360765194167]}]}],[[486052756153629488,14462696753909083647,5814607916140487684,14522386564018993084,14684071936081075650,1482810185087651429,13859390253174722947,0,7656510182610934499,5384200679962070347,10221741515830574613,10073267218944138959,14556442125920687433,15072311167721351029,10399631768607630454,0],{"siblings":[{"elements":[12327143456019993689,13689256669259716520,5324273535484100645,5543014479623600919]},{"elements":[11505616727214513844,13422125188889298440,6416583308287105305,10395346502999301503]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[6585508045033738043,905835199593025760,8171019480820564802,6756273257040537442,13443501840570177547,15970449789638496895,10766469730078580452,1466867718611381555,16704430145542863168,5740988760524701218,7867790665892912846,9566797709149548858,5659865237881593686,4396194167113136631,1099461728349398542,13580547558544276161,9082315148229277145,16464674257926269266,17316838633954153084,8609267716560805443,4678907999597756930,14952442569512302212,9029337624333534688,8537823166696368605,18437712830147121762,3450650318256522346,4515354462680208713,4980762118377839974,4480545509699131199,2423326966761792617,13127296148820123486,5319689244543137566,11861347649943952424,7683665329470012302,11599182757006469618,7426980113180945834,15769608408726162721,1736386642915216102,13500998825925812429,12624480692962493348,10110958912789666429,100169951737804356,4968851086450990032,3377637754784489145,497154258396129593,700381220078662583,13614789727005595466,11587602764555920226,13075753966573756249,2961599092141688572,1479643537791297054,4144181021571306558,16973611669380823828,8802953507579297787,10849272909304037022,7383579378246096739,4783968846541245939,14369412218194939042,2301629225599828570,653036461462737858,12434389369660051877,5547326080775959572,10635293910227684591,18414042141208514094,8136972240987125299,580701825749052610,5046886386886002727,13716390724298306578,1768381100043046960,10759278417381492535,16510105377325232951,5615965135201080793,3131885238001357130,7585782952545527135,17156749855357193843,17809118945148429663,11831620189522650483,18282763411073909396,13108927381339670518,4488672853843462701,6848920543354497396,17737982424777701077,3383063426715895896,7156726380526660333],{"siblings":[{"elements":[8325907241208732680,17653120459707896817,17462569636756050513,15767870941559226621]},{"elements":[2184362331170239224,940371620984881836,4930719422694198068,1632196321716041953]}]}],[[453760564531938794,9651654950506562323,10933537921093851551,24220830234809191,15396573630386954056,4620249207274841185,10627447107077081478,6662285428255542553,5489814502362850119,1200981101252056406,8599286870387745377,7927208759013477138,12348778975216764631,10984910526212154129,7947932245200205598,8696152297687476837,6627426507475240252,14257047282930529626,6588982274677109333,16429271350587267059,10533647469969752629,9384240460547245538,12998983060780562986,11553239796775698014,15331032303203168024,2283206006416336822,18046373227755881514,5671900998519215953,16122222487820634170,997506120900964129,5482770427843757482,8941026204795638909,6179580184883931343,18338267588760552997,3384511813438659350,16599522900806211271,6335324903299858929,7529883136490131525,15995706131387180989,4389888117485245795,16955869314553215585,13529961429744729404,12380898008648971604,16562824941676727607,12548828277628950655,11164812664623293862,14268214115950733372,665199384828565229,11590796377090914668,7636817069756077635,6587766040840174926,8904729161694339332,988960551281218102,12263580103337515028,8008403678533263570,16599221967501161529,1788381006869703680,11724752655778873213,526758348774588805,16022680306527532161,7338905352580069816,22537203039800196,2050100869926239897,11574027584750518979,11310644167132670317,8836508316134343946,15789825590092745944,13901109152707630206,11589788108679178858,1102343541244450193,7095070428113269598,9358897162062072210,10852304643953064325,2883964502702646232,7904745610249744179,16753811225806018467,6471258132396459895,7564762987913408603,11923308948530324065,13908290377921757131,1330457418321751578,15290519735357109660,13484802682434659069,14535851775725106760,8205014531398696975,4388284751061462693,5036981846167042829,11110006197120830675,17548386098063785560,10212745358675455552,10140536696950651821,2812463311795516584,1156158265588708891,4964718981301710604,3467981227740915213,17795188439349511467,5275190909719585440,4842104755915828199,7700612837957434007,11523535703709282831,8589166842665931240,5102002146482244362,7960307809950814413,3049653521516197991,2269396474693174707,6910057714430105482,14422886208867510619,16915200909933172915,4036349265417579605,3088142790660211818,13823889875364631983,17604167865992980907,13108926515700067477,2295314361535559131,7109179525288373241,10344671662523320546,17723925393517730651,14441458170283421173,1056782040930111416,2809901388119896073,5870204786086784948,16352782269043770882,9778108270267905871,12239967743242169499,14246115795246844410,16781586093694195707,7317656022361995076,2219206584791827043,7888889631071529813,9029119766792963547,2852012905158344170,15391376529536721667,2414846671752082175,17557920790128805019,11998989902923466353],{"siblings":[{"elements":[9386842323758813074,13670050547252460934,18121674644503362786,14528605025231697128]},{"elements":[16949943286699236010,785217203051292623,11784364630894845500,6149227246456720629]}]}],[[7296842580873939718,8266780761921736483,11131792521585444340,12820378810189498178,9737061443182554653,17585870524906435750,8283065173617986636,11241265411001578892,5475878044399915721,2345078481420939543,7206818476097185195,10582592288971753960,8409783114981669543,14829538630644160079,5004675114828214150,17738748198434626324,8224261562060600692,3735697961316136357,17367656686043538639,11453885902358869222],{"siblings":[{"elements":[6168488968486440438,9951369835177873734,15360070027356583991,10006467373925895069]},{"elements":[7029452046900156534,15226929581879663758,5597950320392991369,4455684749611986649]}]}],[[13149210971230588315,17025317917767221381,10545178932136629978,11246592120544127083,9907393782821281257,6690706461259577856,16081170828295171485,0,5432759945064168446,5962396363699027121,2240260218797100805,10046440045871371215,3448027693572767892,9277103033116956605,6388261003825645641,0],{"siblings":[{"elements":[16494717806839278959,13587794772714171952,3508565176902900832,14047607750579705379]},{"elements":[13022291622584553474,10970549143735603412,10471964077520287259,5116688913747553106]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[15034545801107465666,9328134685786232648,110829080910733876,4250821939350695176,1394630806331531697,12201247022097191778,16228921593346724793,5540981308967052515,16262683837062736705,3444943174443116075,14321882309394080023,11976399724076258415,15741084224719728653,7167218740187920267,2108479466400960879,10523500992781693864,18084559524611127881,16392309362668639626,9910431870163626642,4306965461073664163,8761340433466990759,16828932137000128833,2348349595557829210,18309601238814102288,6690141621618686419,7896548919369665043,12130437762899715305,2761456977705156545,14222367477428627391,14807796117787670576,16218927186002388767,7877082550245093306,7861505246478234400,6642657046293066409,567443057547927936,4962531988520098681,4454913783121034017,11032692175451594665,15818464105310318903,16889379664350046036,15583177082558352958,18416173649350290030,16733021994861153485,5457109531204194878,5211202449828449170,387397703287744593,17423970546079450668,5331695136917034168,5204602975018287532,7804682123145551743,16184475773898398161,17806383633492102915,7806008025234779015,15596547216666649128,10083322942939404535,12021095180947227158,333294063486744879,419406305018384698,7930166925575659383,11941804889882528314,7029051446847328676,10870358600754106564,3290908671307159311,6033256737686447080,16428444435506081682,16034886258387630270,6265258099047416323,5155332694710747095,5556269241720840184,1407033520462800343,8788279239960369908,188529423317695704,3606487184992817701,2533317928314692800,16029983803978270205,9937287719837361600,7652762612315253552,17700302266760805118,15472687335725666131,6385298406622369122,12382980318690581425,7179451047645296592,13902948853468039715,11531705951801209834],{"siblings":[{"elements":[14107875915397983130,4898796723405732069,8183032881835579560,10330461968446653528]},{"elements":[608309216059009087,15657505314169978897,10976396690985755658,16681478498527425210]}]}],[[10590361711545904926,6467492479015847751,6498300686270535597,11235217016121196403,13348882831300741762,16718738320006309494,15308110621512707117,13684655047872223933,13757486518252322688,11518725869960899312,17694140868639416235,1410511988176533518,3358550812817788558,18241491219178674060,16895629175994959767,17845731166005312899,1521331733827038408,8663399782848083356,5303485050026234174,15340596313898149769,10404860898834380906,16079091358020308122,17972894297936545684,6394846193316161559,16408802943911038414,17438487723136664682,2483047418309633917,11141911469455518927,11572111300785427950,615407931945004027,6689041291358307440,4720954509454624927,14339636570799414807,5250212244942251808,4641931700135276263,2097996297924603883,13274261284308966477,17290064994915748672,3090256527462830038,9990879805495489485,5040907862301497409,17165743179684404143,3300104379751069278,6879071168917376469,5111810154001198417,15009669527513252906,18167396960542418537,1338024228960007389,10734355416766913281,16999965320444781500,1300582072486752392,15403666370498946885,428054273850798077,4302421469933510844,3760970427453971068,14839855432362370366,11501515203854232196,1316210471306210966,15846811261318837883,15179213114456831126,6501966051118286859,2773442097296149484,2429981492381284137,1766033530446829126,10443399481702915519,10373741558694734531,8150989335098685500,16040447508536615395,12000573733307693728,5842441027317645096,16818367775098718199,5218131884537695409,17528280826473166510,11809599070276275416,7701616655854884956,23893869157741265,5891210621283449143,17923069719553142905,16962845651787825075,14120257702907789522,15601474846251258231,1890042984864118517,12803721057910078382,17120547413886734661,12295340610736032258,8077053299816392593,5311854616362494025,93311373464733012,8969962644678242838,8723614146502379838,5233384647660575556,17828177013469104135,6252179268849717622,15689501155365044616,211799091353506783,11387519390257662457,10999416427860979493,11935540187335481906,17910052242673888544,9978960126345898454,5173260747164604425,12759730302203551898,15600535552139560279,15671602561892835921,4118536920019412776,18199343645492211573,9589641734691532464,12903065620402082785,14098353188070118291,2969933814652585149,17507739970955183889,5390936136890911784,714881082221103199,4569862471384392285,16531606670516337988,4132093951464771002,14612194199905708537,16432747242738643310,14105528163578080701,15283865691530332451,5571888054152113558,11815467956688831197,4506825004052090666,13992445232187856387,10353881150494396668,17155934585944698419,1201307463282385860,12758334855623644120,11423787583225326239,8325693446431733844,17677856811170538894,3320167937191492461,12771546351221885865,9351653018878373454,1966994390083995446],{"siblings":[{"elements":[15962253916689509393,781868751308411798,4078186772613605801,7115279146862910261]},{"elements":[1717527741793732290,14956544091197845992,24630154679028786,16529648899177002833]}]}],[[2294706178936320848,4089708620785012084,16139615279853351004,11435905688043884140,3904987840767306564,5627708237258215010,16845256705175326378,8139714125924519869,1631384176524751513,12510019991445928241,4397876182838234418,2107552620542933821,2969995800202855036,1226391133600801436,10841690416937452056,16549921351317931526,17054197006161290893,4083564125553453882,678846531878364126,14129867789957815404],{"siblings":[{"elements":[4767086661062731869,13409906418762108298,5863398868727804528,5857398280030787535]},{"elements":[10064153012911631249,15993458643815316209,12531918434153288391,525932620503515428]}]}],[[16612055019529247382,8260036816386804906,2666796678838794912,10725479658505563011,10409088140359313063,12751187993502541665,11483768436261294722,0,3895644621541629484,7883413948959644197,5141737965243137316,3365753613298262889,13893642442503372778,6524391154298568028,3171094029533971309,0],{"siblings":[{"elements":[7291889980561265417,17539537541896536748,2646931274408689000,9089161658029581757]},{"elements":[11285351922633211483,3986337549353316321,4281752292945291434,1113329571361528126]}]}]]},"steps":[]}],"final_poly":{"coeffs":[[1184571642067389602,7513794317082853489],[3197717442149773040,9805572144659411237],[12256112477868158947,8074006969565413771],[10905771344652594876,5266649780524051850],[17040883825057365231,4766096005233009534],[12553657348305442044,335771411886163812],[2137921529901507892,14187599642446536365],[0,0]]},"pow_witness":3458764513015237522}},"public_inputs":[0,1,3736710860384812976]} \ No newline at end of file diff --git a/plonky2_verifier/data/fibonacci/proof_with_public_inputs_randomized.json b/plonky2_verifier/data/fibonacci/proof_with_public_inputs_randomized.json new file mode 100644 index 0000000..bb099eb --- /dev/null +++ b/plonky2_verifier/data/fibonacci/proof_with_public_inputs_randomized.json @@ -0,0 +1,11509 @@ +{ + "proof": { + "wires_cap": [ + { + "elements": [ + 18010044785688148000, + 6735310689784818000, + 4945804831027821000, + 12537851656296124000 + ] + }, + { + "elements": [ + 11473730977998690000, + 6432349736241560000, + 17840156130846951000, + 11497677569618545000 + ] + }, + { + "elements": [ + 15632747405950460000, + 3323877912875768300, + 4310525680261895000, + 12485834612035295000 + ] + }, + { + "elements": [ + 9095986050153425000, + 407053333094450100, + 2976747936756778000, + 18151071415310922000 + ] + }, + { + "elements": [ + 8494413746993940000, + 9283034148729483000, + 13730038355872932000, + 17069465821746481000 + ] + }, + { + "elements": [ + 16066159548767908000, + 15155348977128116000, + 10847445270981804000, + 9830933662637957000 + ] + }, + { + "elements": [ + 15193080363959955000, + 914910155453296900, + 10864058815314508000, + 12773639781871444000 + ] + }, + { + "elements": [ + 277820407254776600, + 590682596976528900, + 18299170232820337000, + 13828158197313716000 + ] + }, + { + "elements": [ + 3064862667076027000, + 10047170377219375000, + 6224503520946597000, + 13023721377904300000 + ] + }, + { + "elements": [ + 743054717144043400, + 11197148178495422000, + 15209041048959699000, + 9700651138473144000 + ] + }, + { + "elements": [ + 14175186397099936000, + 2577105429022053400, + 8994800186391422000, + 9220532151486281000 + ] + }, + { + "elements": [ + 15914396636825350000, + 5915195071725072000, + 6554321076507799000, + 2842030001782526500 + ] + }, + { + "elements": [ + 7656590394893474000, + 13914494492523420000, + 4956698709594373000, + 7850211526150963000 + ] + }, + { + "elements": [ + 13652038373704608000, + 6811319773864347000, + 4680909453522103000, + 4875824365558426000 + ] + }, + { + "elements": [ + 10867122245517630000, + 1834903731660332000, + 7207624246131834000, + 15508872921241227000 + ] + }, + { + "elements": [ + 17254165719777430000, + 10147381939169393000, + 12435048914240356000, + 8216263452233925000 + ] + } + ], + "plonk_zs_partial_products_cap": [ + { + "elements": [ + 9799794141292653000, + 3672590661281422000, + 5660193888958627000, + 11564995439093471000 + ] + }, + { + "elements": [ + 12219995276325810000, + 2785184272024876500, + 16545915172024605000, + 15954023495816342000 + ] + }, + { + "elements": [ + 12739595962205188000, + 6624378647057445000, + 9361156565324435000, + 9674660750246062000 + ] + }, + { + "elements": [ + 6559149302419419000, + 13561718907352015000, + 7580880918843716000, + 16574619018544603000 + ] + }, + { + "elements": [ + 14658581984991664000, + 3822636957301654000, + 12133398785875114000, + 17556671611937978000 + ] + }, + { + "elements": [ + 11571699161384225000, + 9458354713972793000, + 7198312185631413000, + 1168816493372437500 + ] + }, + { + "elements": [ + 16656649461387805000, + 11214447089207843000, + 528271361004886500, + 5109678218597736000 + ] + }, + { + "elements": [ + 13231242099524913000, + 6026848819580799000, + 3172870888127859700, + 11180486099320326000 + ] + }, + { + "elements": [ + 1061498087839047800, + 17260902672107334000, + 12241452205959406000, + 6390318429076889000 + ] + }, + { + "elements": [ + 15367506558352523000, + 13324136321216231000, + 3963518856630968300, + 10406671889492030000 + ] + }, + { + "elements": [ + 5686216023168408000, + 13146841472917470000, + 370826494768017340, + 14498169750374894000 + ] + }, + { + "elements": [ + 10179932110424283000, + 1727616299059870500, + 13018953463597687000, + 665168447945600000 + ] + }, + { + "elements": [ + 11387639820302090000, + 16406638193637759000, + 7638517059156436000, + 607371464695636400 + ] + }, + { + "elements": [ + 9895505393733771000, + 15801811452543832000, + 8207123515253872000, + 13425586549724723000 + ] + }, + { + "elements": [ + 17727608659829283000, + 8846226062749448000, + 2215092343125864700, + 916086913394298800 + ] + }, + { + "elements": [ + 14692079137844881000, + 5268007810298185000, + 13804310508381338000, + 1561062199602807000 + ] + } + ], + "quotient_polys_cap": [ + { + "elements": [ + 8291939497190067000, + 5570368107747716000, + 14274592973742705000, + 5947965124449190000 + ] + }, + { + "elements": [ + 13435550635632150000, + 4664160609080881000, + 3339235591636873000, + 5513783802184662000 + ] + }, + { + "elements": [ + 14783841972096393000, + 1128051809987923000, + 3864651834049148400, + 715502535492033900 + ] + }, + { + "elements": [ + 1245881716914649000, + 5719237914906426000, + 10379675406340157000, + 12507379808294009000 + ] + }, + { + "elements": [ + 15456954182362704000, + 3793696952736136700, + 15909089523742495000, + 7977584517107857000 + ] + }, + { + "elements": [ + 10728873984994073000, + 12973580080560845000, + 12965373916782143000, + 9296616408749744000 + ] + }, + { + "elements": [ + 12352368354808367000, + 14436999308745697000, + 11921474281969033000, + 8478918344614842000 + ] + }, + { + "elements": [ + 11152612092087978000, + 6602197016407673000, + 7985582609484808000, + 4638615720396535000 + ] + }, + { + "elements": [ + 5976381111208665000, + 12738834889449787000, + 8012951157219755000, + 302534941158745800 + ] + }, + { + "elements": [ + 18004543318837498000, + 4360040172046899000, + 14100941624319840000, + 15951397790270657000 + ] + }, + { + "elements": [ + 5806060304169394000, + 10939195122203080000, + 5931218041078484000, + 919298963333839200 + ] + }, + { + "elements": [ + 4450314555545620000, + 5901521992646350000, + 13684657755452370000, + 511335036220171970 + ] + }, + { + "elements": [ + 15469183611374168000, + 3086614781802399000, + 6530884925386755000, + 15176273891296733000 + ] + }, + { + "elements": [ + 1977182663510566100, + 15009136679160852000, + 1307114761011348200, + 16668681474991663000 + ] + }, + { + "elements": [ + 5189661667096609000, + 6001328712410299000, + 17253247208433388000, + 14377974332448098000 + ] + }, + { + "elements": [ + 3626516388210967600, + 2178933781370040800, + 12998564684303774000, + 10711022466406453000 + ] + } + ], + "openings": { + "constants": [ + [ + 6591674283047592000, + 2495181099630268400 + ], + [ + 10208411904736970000, + 135200727434060480 + ], + [ + 6500868683024059000, + 1837814641182190300 + ], + [ + 15151653169986853000, + 7913851956861356000 + ] + ], + "plonk_sigmas": [ + [ + 16773984975952476000, + 11871917280274915000 + ], + [ + 10424929433759197000, + 9869897301819881000 + ], + [ + 7582810923669618000, + 9322999731108014000 + ], + [ + 17977429518379026000, + 3751248096113949000 + ], + [ + 2961544634810094600, + 4859619539667620000 + ], + [ + 4705993779610011000, + 6542521477721574000 + ], + [ + 4301570265751561700, + 13254950607994710000 + ], + [ + 11360312612979990000, + 17496581134555204000 + ], + [ + 12276607827080751000, + 6095289725568118000 + ], + [ + 9683694361909506000, + 10414864937687773000 + ], + [ + 16340273266746556000, + 4502890055141085000 + ], + [ + 3522679882388343000, + 1980168927400453400 + ], + [ + 14070512871428125000, + 1883193941520222000 + ], + [ + 7797171891197863000, + 15170258758060212000 + ], + [ + 16229976745042502000, + 14124555632741446000 + ], + [ + 4204018859009197600, + 15715884527605723000 + ], + [ + 4461389015981012000, + 9079756153914276000 + ], + [ + 14496599155209181000, + 3462049862980285400 + ], + [ + 16495057741563510000, + 18087660330034719000 + ], + [ + 3050614789910076000, + 7476452463668458000 + ], + [ + 12683467109950933000, + 14889779569551921000 + ], + [ + 15775256741337235000, + 11346889779102380000 + ], + [ + 17920864530293660000, + 4836913011428974000 + ], + [ + 1168715016501982000, + 2280385727577975600 + ], + [ + 2563028593630709000, + 11302892379067600000 + ], + [ + 5225861442558812000, + 16488113168888360000 + ], + [ + 10188567360268087000, + 10426120779192621000 + ], + [ + 2179656070241838000, + 14969887368002520000 + ], + [ + 9263068545569704000, + 5287603704798843000 + ], + [ + 3507356381791352000, + 1246945537258217500 + ], + [ + 2367595959938247700, + 884288645891420300 + ], + [ + 12925653006325567000, + 8442123354437886000 + ], + [ + 12300974268285665000, + 4176575464787471000 + ], + [ + 9447377027985148000, + 5543695711817608000 + ], + [ + 3000726432041057000, + 1801470802622994000 + ], + [ + 7069343432355808000, + 15013185788149985000 + ], + [ + 1401963021133103400, + 11375661262597910000 + ], + [ + 12103782881813799000, + 10310930026161318000 + ], + [ + 10513976258889870000, + 8793284854795397000 + ], + [ + 2489037224877409000, + 1721165712018728400 + ], + [ + 8805793107127083000, + 11781468763997153000 + ], + [ + 7560789906962736000, + 1012451658952546600 + ], + [ + 8911110635423078000, + 9601720953463955000 + ], + [ + 17880042509747480000, + 448203008100024500 + ], + [ + 2740546663011803600, + 8447843944607396000 + ], + [ + 1860402313577465300, + 14372960051753590000 + ], + [ + 15800259199307624000, + 13748666568139342000 + ], + [ + 4408616375964135000, + 6224266422112948000 + ], + [ + 13011649179748380000, + 10301578715728771000 + ], + [ + 2713890101165127700, + 14065674455098940000 + ], + [ + 9916530821219380000, + 9323289919866245000 + ], + [ + 15103566915330888000, + 2600983267375539700 + ], + [ + 10631971056968415000, + 15453443449233934000 + ], + [ + 4349476394123494000, + 14142719663862210000 + ], + [ + 13290652202917183000, + 9318541398961711000 + ], + [ + 15812067309801224000, + 9961329506540786000 + ], + [ + 15515459780797305000, + 7315398017945321000 + ], + [ + 2235679001853528000, + 14660825210333809000 + ], + [ + 16435443186340895000, + 16364086776591667000 + ], + [ + 1374315977526505200, + 10171831243126338000 + ], + [ + 8642657546283823000, + 2970287004032871400 + ], + [ + 18309503320091190000, + 4253645568447336000 + ], + [ + 3913525926690451500, + 17054226812941595000 + ], + [ + 16212217685342745000, + 17524410910842876000 + ], + [ + 16880434605465310000, + 11215885888894206000 + ], + [ + 2526354123989089300, + 11953539455788696000 + ], + [ + 6983018651750167000, + 13873487841807553000 + ], + [ + 2904676043159186400, + 17534118668490818000 + ], + [ + 2426767218367091000, + 15542421959109350000 + ], + [ + 15244196929819347000, + 15761205408978854000 + ], + [ + 16584167823706763000, + 13871262886610862000 + ], + [ + 1257921386494287600, + 3948956642371639300 + ], + [ + 15943709433791355000, + 18038615465258308000 + ], + [ + 8006065820384496000, + 8805968571083895000 + ], + [ + 14541535427402658000, + 8338323922974666000 + ], + [ + 3622893584154026500, + 14682381295225735000 + ], + [ + 18270858063060462000, + 16398222705547026000 + ], + [ + 8658048532904741000, + 11016530739983590000 + ], + [ + 12000261585524378000, + 3416483265914053000 + ], + [ + 4322470015506727000, + 3086019465080612400 + ] + ], + "wires": [ + [ + 9619389572359778000, + 3128982139180493300 + ], + [ + 8197926451726764000, + 5979419004703722000 + ], + [ + 3808970935004049400, + 9311601689412852000 + ], + [ + 3840345894462923300, + 14032634984950622000 + ], + [ + 7197051717435301000, + 7371110812565991000 + ], + [ + 1798821984176043800, + 3972851064914272000 + ], + [ + 15863864896487492000, + 9585131989011302000 + ], + [ + 4051667079044397000, + 17404971665999604000 + ], + [ + 16267894930951125000, + 16051106123460903000 + ], + [ + 3649895174468333600, + 3036882272278953500 + ], + [ + 14500613427885275000, + 2536894306286480400 + ], + [ + 9243867295792400000, + 17179306735230886000 + ], + [ + 14829457145948985000, + 3618493477214999000 + ], + [ + 13485789664005857000, + 2042817634217968400 + ], + [ + 9681940381712474000, + 18113080202224767000 + ], + [ + 1553124003818788400, + 12212987326000360000 + ], + [ + 6895204494960061000, + 12913787594854013000 + ], + [ + 508180238428328260, + 9845826036304712000 + ], + [ + 1759695065251358000, + 9835878184020498000 + ], + [ + 14109678740648112000, + 10479676886423155000 + ], + [ + 17194627894816438000, + 6356842716386345000 + ], + [ + 1398143114600955000, + 12827975881811067000 + ], + [ + 11873134358075757000, + 210889704350019000 + ], + [ + 8375012075195308000, + 15726525447739730000 + ], + [ + 7427317522725564000, + 18079978910095133000 + ], + [ + 15977521400411621000, + 11110286992779887000 + ], + [ + 16587094738779430000, + 6411173458916004000 + ], + [ + 11380818558701950000, + 15427695860961554000 + ], + [ + 3914187727289851400, + 215231738858675420 + ], + [ + 17193120857762097000, + 11142756529221624000 + ], + [ + 9489072272739092000, + 18429787002558202000 + ], + [ + 10929065849522616000, + 7696873194191711000 + ], + [ + 4884510366574917000, + 16918403211430418000 + ], + [ + 13196741785429969000, + 10671633711966923000 + ], + [ + 440654414671234600, + 17362293185566933000 + ], + [ + 6277156563344458000, + 12359306324739168000 + ], + [ + 4621583365441459000, + 14195347520150510000 + ], + [ + 12200227803639333000, + 282753566498051070 + ], + [ + 8393604239973975000, + 10924645358413494000 + ], + [ + 9451228971201763000, + 17433903051322933000 + ], + [ + 11785656803241744000, + 3902595990677460500 + ], + [ + 16509347059493830000, + 11137912514625913000 + ], + [ + 8345471336712134000, + 8671148632874401000 + ], + [ + 8341751734953946000, + 2748480696614422000 + ], + [ + 7724414603174912000, + 6486764220943601000 + ], + [ + 4080037624090277400, + 8414019741001326000 + ], + [ + 7629502128082419000, + 2157930626679897900 + ], + [ + 13320290729600236000, + 315468016208241500 + ], + [ + 17656954093192420000, + 11915071775866350000 + ], + [ + 10623615189623368000, + 6961753835552157000 + ], + [ + 1008727870099551400, + 18252143456634157000 + ], + [ + 2212459744017120800, + 3580455920724010500 + ], + [ + 3764620589339491300, + 18441095978199380000 + ], + [ + 2868231279578801000, + 17603096771326935000 + ], + [ + 16442583773366510000, + 10588761487236332000 + ], + [ + 9818151375878375000, + 4025428476309250000 + ], + [ + 12667898532037822000, + 13973817377072278000 + ], + [ + 12495357451890125000, + 7121011648682335000 + ], + [ + 13025034987788554000, + 11099362712963514000 + ], + [ + 5816281134923128000, + 17743587396844069000 + ], + [ + 10240666357895066000, + 13556138502330410000 + ], + [ + 3978845565933870000, + 5022329750045184000 + ], + [ + 9664570148748548000, + 1764354115394987800 + ], + [ + 13082985866300213000, + 14929495927980808000 + ], + [ + 9288542541027640000, + 16138525600849002000 + ], + [ + 6357630855876658000, + 168928271223385950 + ], + [ + 9316931174702457000, + 12059207000445020000 + ], + [ + 2685916301714681300, + 6601945065425722000 + ], + [ + 6920186146329464000, + 6983917469642375000 + ], + [ + 13498093403826658, + 6843167733260822000 + ], + [ + 16544843606144492000, + 10042626357431590000 + ], + [ + 389059145999746240, + 16061114780202502000 + ], + [ + 361146791080064700, + 7357967648811655000 + ], + [ + 7256980259009029000, + 3075093697539542500 + ], + [ + 14822593161763736000, + 17536613251454593000 + ], + [ + 9225880712047930000, + 13110911493925505000 + ], + [ + 17801854154826318000, + 742793332166270800 + ], + [ + 15552014628188699000, + 142607222412450020 + ], + [ + 8895435265938367000, + 14858704712474493000 + ], + [ + 11031499847713300000, + 17346496170421928000 + ], + [ + 13864383743909054000, + 12291404980105400000 + ], + [ + 5044959388624897000, + 13314929273991954000 + ], + [ + 1877036569922816300, + 1672004277351531300 + ], + [ + 14367179507850297000, + 9350984280444463000 + ], + [ + 5103286821028818000, + 8385182889603723000 + ], + [ + 99151666221997150, + 17945290037419092000 + ], + [ + 11265587062961797000, + 6660131613806642000 + ], + [ + 3004882376219980300, + 8152399162212713000 + ], + [ + 14132224954879820000, + 8995198236484946000 + ], + [ + 15390485604223599000, + 9168445985278867000 + ], + [ + 7610125341123992000, + 3923115462832083000 + ], + [ + 4005354656280848400, + 11691356131177107000 + ], + [ + 4905810163814315000, + 10760012584879151000 + ], + [ + 11683913804434600000, + 14223930074192173000 + ], + [ + 13726527482216740000, + 8338155854609974000 + ], + [ + 3545161432913614300, + 13237343899671341000 + ], + [ + 1565785136258882600, + 7206160305593690000 + ], + [ + 1237224045091925500, + 2432115362196507000 + ], + [ + 4111649597404569600, + 15285809634539096000 + ], + [ + 16655578317044095000, + 5744740946457091000 + ], + [ + 17788125871254014000, + 15130735214426587000 + ], + [ + 14802382327139010000, + 12593044347506936000 + ], + [ + 4976238438502966000, + 305822018084998400 + ], + [ + 1846083208303057700, + 7347578858176722000 + ], + [ + 15607556435287208000, + 9889549740307853000 + ], + [ + 11452773002873758000, + 16339306070072226000 + ], + [ + 11999409655824052000, + 14298569460370158000 + ], + [ + 1278404575814263800, + 16134450656547432000 + ], + [ + 17432351214096157000, + 7881204282532515000 + ], + [ + 13849776355771290000, + 13403134229550770000 + ], + [ + 13031171677506988000, + 13691846565385728000 + ], + [ + 17596764511766827000, + 12634524451064244000 + ], + [ + 14542552525350089000, + 5218400712663558000 + ], + [ + 5351887685186064000, + 1177383434484285700 + ], + [ + 747819123299038200, + 2369314926444375600 + ], + [ + 8192340833748509000, + 8957498831289181000 + ], + [ + 8353181764653057000, + 11143668285078338000 + ], + [ + 2303279821926799400, + 6326086368359266000 + ], + [ + 4898511081362754000, + 101542283234608980 + ], + [ + 6640491718026094000, + 5257877517234209000 + ], + [ + 450818036044045060, + 1941553760069100000 + ], + [ + 8071715485571744000, + 11797319588983718000 + ], + [ + 4540460156158695400, + 7961781386095674000 + ], + [ + 8205848692122625000, + 14000713589669159000 + ], + [ + 2527617721772738600, + 14537286003632447000 + ], + [ + 18107315658527764000, + 6776642388272961000 + ], + [ + 12378093109670180000, + 8512232774128511000 + ], + [ + 16959484988508785000, + 17595286982568354000 + ], + [ + 16714047174058533000, + 11693135170500575000 + ], + [ + 15527229363001235000, + 9217718179948007000 + ], + [ + 72528697522578460, + 3743816495636133400 + ], + [ + 15666480893682872000, + 7915784051958391000 + ], + [ + 6725351624448241000, + 2574954712143963600 + ], + [ + 10652121726705646000, + 14272893560782051000 + ], + [ + 15774472767122870000, + 915832296166134900 + ] + ], + "plonk_zs": [ + [ + 11274220146616103000, + 13586590607887299000 + ], + [ + 6560124564514996000, + 7627094427640235000 + ] + ], + "plonk_zs_next": [ + [ + 14204430018941166000, + 14592402584912968000 + ], + [ + 962009759987652700, + 5590779289194985000 + ] + ], + "partial_products": [ + [ + 12986280435606909000, + 4378330810162400000 + ], + [ + 7846778902973865000, + 6797320583061051000 + ], + [ + 2891205628567441000, + 12505424181206342000 + ], + [ + 8725423653325668000, + 15817320150916370000 + ], + [ + 14761745346555689000, + 9902067635873090000 + ], + [ + 2575739069978827300, + 13379218597786070000 + ], + [ + 10347540319199050000, + 5681920979259938000 + ], + [ + 12323528848438155000, + 1478207776674442500 + ], + [ + 6150571105318248000, + 1410786119088225500 + ], + [ + 15335422323000674000, + 18353773913339496000 + ], + [ + 6446870315377433000, + 11520873931145644000 + ], + [ + 9225474475274805000, + 4341450910133626400 + ], + [ + 10452545355117090000, + 12414580874408890000 + ], + [ + 11472749946183068000, + 13587529271029654000 + ], + [ + 13704869197736073000, + 385878871112165060 + ], + [ + 18232467620763757000, + 16073637542296308000 + ], + [ + 6920290743637102000, + 1628182731103734800 + ], + [ + 16718122517601372000, + 17104649401203362000 + ] + ], + "quotient_polys": [ + [ + 14619561009735459000, + 11006065735481903000 + ], + [ + 9269923457700467000, + 6974271399488823000 + ], + [ + 6021440343411787000, + 3944349271889374000 + ], + [ + 6465022215060903000, + 8919678698837915000 + ], + [ + 12117087238410803000, + 8848240653253953000 + ], + [ + 14316360203430453000, + 12833200638904082000 + ], + [ + 5107258419920933000, + 10887691378069002000 + ], + [ + 18446744069414584000, + 18446744069414584000 + ], + [ + 4054176320092225500, + 2795662986687714000 + ], + [ + 7282332843283749000, + 13240475719357640000 + ], + [ + 993273722878067100, + 3504102306082569700 + ], + [ + 4181472373908520400, + 15794873029002265000 + ], + [ + 17336908879057631000, + 1048562648248294100 + ], + [ + 14578116550876652000, + 6178700100163744000 + ], + [ + 6699790869604030000, + 12074193657505022000 + ], + [ + 18446744069414584000, + 18446744069414584000 + ] + ] + }, + "opening_proof": { + "commit_phase_merkle_caps": [], + "query_round_proofs": [ + { + "initial_trees_proof": { + "evals_proofs": [ + [ + [ + 2981378304754394000, + 17294425859019899000, + 5495097178942910000, + 2434773629067817000, + 14381859418018558000, + 9144484614969746000, + 11415072490952100000, + 5771544633465295000, + 9657779220672379000, + 5438456994412537000, + 12643200207107414000, + 6987214968852664000, + 15621004487594727000, + 15887186508389351000, + 11429703077911226000, + 1555320983035820300, + 12342983464597510000, + 1721151971762749000, + 6686736854588994000, + 14604830922575251000, + 4973761076371083000, + 1898767195310094800, + 16572729270203978000, + 16292509486847123000, + 6956931455735975000, + 2594250794135405000, + 1496020032490744800, + 11217850761024230000, + 9228370296094482000, + 12243405326392877000, + 13275748543848782000, + 1813335873883020500, + 877226986228825500, + 10752886091866739000, + 17545245901937676000, + 387832811290315970, + 3293170022147285500, + 10684553461035510000, + 12218700078866250000, + 8849376437319360000, + 11694761466190764000, + 12638603459987671000, + 6775818988674452000, + 15150402107598467000, + 3177806675025743000, + 392913243407254340, + 17159866653110643000, + 17582899527776023000, + 11408526068585386000, + 2600749880673817000, + 9260327115886750000, + 10391335369659247000, + 16902891662267525000, + 9400968035705469000, + 5718801599510914000, + 9598240703334722000, + 1005928392242417400, + 11356256834795522000, + 6465052781254919000, + 5392586007851921000, + 17157340750148135000, + 2084925749293814500, + 8879965415396668000, + 16431412192839098000, + 3195634102903032000, + 6839081243096091000, + 14807562193555194000, + 12681854598294317000, + 17318692263126480000, + 3031842894733573600, + 6081004964115211000, + 12005175970589168000, + 3218991306209329000, + 11437626905964343000, + 9118359933684856000, + 10613268959010200000, + 18059105193303388000, + 2703911340013550000, + 8009782073422058000, + 13426645715014885000, + 17396958375383482000, + 9714622499629804000, + 2559776249118675000, + 12922931101810207000 + ], + { + "siblings": [ + { + "elements": [ + 6835977814218543000, + 1263577615951433500, + 10078229402860925000, + 3832086712508612600 + ] + }, + { + "elements": [ + 2184362331170239200, + 940371620984881800, + 4930719422694198000, + 1632196321716042000 + ] + } + ] + } + ], + [ + [ + 5861510461696317000, + 11713819115030108000, + 13619986345995274000, + 10734691969379328000, + 2287766055140309000, + 1905458926300330200, + 17369620065385880000, + 5079079745487884000, + 1812523809390962000, + 9141691564551836000, + 9061915916187304000, + 12319808426636940000, + 13894396528149275000, + 13516108843438553000, + 860757180180271700, + 989336830222048600, + 7257714295828318000, + 3574586509979313700, + 6819047927981688000, + 17696695888499739000, + 4991493736560278000, + 9054089840258697000, + 5899475708938497000, + 5072299173070727000, + 3779240760695791000, + 3224082956502200300, + 16725795655912686000, + 3797854266307409000, + 13069014477806576000, + 13151018646213984000, + 16579614101518545000, + 16918495132645734000, + 12915081560833636000, + 13699885037744765000, + 14857280106369628000, + 4223131298828335600, + 10671892687925390000, + 6004499672912563000, + 3865204099396019000, + 557274992951690500, + 9279332029209000000, + 9400357655685736000, + 6710942370586848000, + 15858090215047395000, + 6984240611489396000, + 8620409624963240000, + 9744343756962185000, + 13077723643049878000, + 13352398637120029000, + 12138074898218488000, + 8131287055106182000, + 6968734527969140000, + 7135653774115091000, + 8385890608615897000, + 7794631813527246000, + 16332106114857142000, + 6939886267575735000, + 8520948943482942000, + 4519170457226835500, + 12923631821829632000, + 6896453357997875000, + 704452943328693800, + 9968998808826073000, + 8292877904972344000, + 14709312924396812000, + 18400010184474884000, + 1763085356384533000, + 17666423568037431000, + 14780950698346254000, + 6091511045300784000, + 8826318597773630000, + 3023130740457199600, + 7897738257911330000, + 11240290633354811000, + 7608120745852947000, + 5551239466918785000, + 10046133018384062000, + 14360345125824973000, + 8902207467150347000, + 147511000776790820, + 16282961666909194000, + 10420570825433900000, + 4742934984990440000, + 17444501541951058000, + 12640624596663462000, + 17803595471104678000, + 10300657271441988000, + 313158088888623300, + 9717275498971054000, + 12236238428174692000, + 5175499930407252000, + 5960115469356935000, + 17069694632511793000, + 13894093997828030000, + 17843944237908611000, + 15346238601430053000, + 7951561014421387000, + 1011251338756271700, + 506235882537314400, + 2122352176596584400, + 6206161697301400000, + 2903710831692825600, + 7060442532199902000, + 4627425109925609000, + 13206266625337848000, + 17317839633797138000, + 1797118842309961700, + 15842198316576723000, + 7230460855980010000, + 16984802556990950000, + 2105279676854122200, + 16186125780266566000, + 3219171999345343000, + 17945559216039279000, + 1426116238893094000, + 11208947324922280000, + 12190447073555675000, + 10965376356944335000, + 16654237797690876000, + 964795508844716700, + 16023628147192187000, + 7617779431430919000, + 2613274830084316700, + 16842265808619786000, + 10347055000570290000, + 11624820756884552000, + 16754113650374842000, + 9287844120237965000, + 15480054570559490000, + 240571459879734900, + 11506353682875961000, + 16958169670643034000, + 8297822953591523000, + 13012849290667848000, + 13966743131300366000 + ], + { + "siblings": [ + { + "elements": [ + 8507090096593990000, + 9686055532432011000, + 11495095211426685000, + 12957965195995791000 + ] + }, + { + "elements": [ + 12058755921729870000, + 16885697570695549000, + 9035403029214658000, + 10706949920324723000 + ] + } + ] + } + ], + [ + [ + 10880387165840476000, + 11012859001117809000, + 5949991558642003000, + 9139147643354250000, + 18064392228683885000, + 4358755788161270000, + 15142545258943062000, + 926313761853758600, + 6770084095471272000, + 884689221169239900, + 15656620856269957000, + 6024945502737409000, + 14428205915194935000, + 9139480076268373000, + 7925415585275261000, + 15155033557861020000, + 5510554620540358000, + 2468187160153430000, + 11876005328639175000, + 18126831924424536000 + ], + { + "siblings": [ + { + "elements": [ + 15820043051594300000, + 7715194151270600000, + 7202093076048891000, + 12344881270384044000 + ] + }, + { + "elements": [ + 6667743832536648000, + 17100450795612029000, + 13227217371733408000, + 1709844918499193600 + ] + } + ] + } + ], + [ + [ + 18121986890631012000, + 5923174073794796000, + 14750715315340894000, + 18348114525013815000, + 7782856893955845000, + 419182363263106940, + 2150125030909512200, + 0, + 11830401986830123000, + 5012348429593731000, + 1378489863807204600, + 15467886990315890000, + 11208273206476863000, + 18212147163395035000, + 6116838007012025000, + 0 + ], + { + "siblings": [ + { + "elements": [ + 16235232346658556000, + 2322050216303267300, + 18377212496307323000, + 11359926759889550000 + ] + }, + { + "elements": [ + 138621883323948300, + 6725594464869300000, + 909138028826554900, + 1475125432876196000 + ] + } + ] + } + ] + ] + }, + "steps": [] + }, + { + "initial_trees_proof": { + "evals_proofs": [ + [ + [ + 8836978090687743000, + 13549589814493198000, + 2128250613769924400, + 6538810285485400000, + 4753053964216584000, + 7277638844854205000, + 691005071134789200, + 4458859453557574000, + 9501342337623490000, + 318069987574244200, + 8636507508877684000, + 6424083983554774000, + 590024983173091300, + 7369533319762470000, + 2114194793325551600, + 11919674715980180000, + 17343749218843871000, + 3899391382009751600, + 3869252091973478000, + 15301139156671758000, + 7896202519655159000, + 8929314221882308000, + 4290950380423182000, + 16410516446170077000, + 13976090403259288000, + 4166838079673009700, + 9288672662721845000, + 17851399054217435000, + 5032790387152266000, + 6442943672191266000, + 18436227342330655000, + 9422655925983738000, + 15476163271527460000, + 11136226761807966000, + 11642826410315057000, + 8088649184674601000, + 6525459136458253000, + 8748298519195092000, + 7608946003354687000, + 14871931379574946000, + 6341671703284195000, + 12269993593618592000, + 6802725334166172000, + 13057468042224634000, + 7789902318320651000, + 804339423146692400, + 7975025901070153000, + 9962595445968540000, + 17003723970909596000, + 12757571756091496000, + 316844417098369200, + 13211351809160055000, + 3296628539462058000, + 9334631147471294000, + 4426938607186518500, + 10502638469620765000, + 1551917469544694800, + 18102084809271716000, + 3755011872030229500, + 135822669718677650, + 18358286424480614000, + 2576599520628457000, + 13772398870264010000, + 12515580814497087000, + 8974123346514711000, + 6756185775039288000, + 10964315112954122000, + 163446531148954880, + 1073081905585536400, + 6914008853912245000, + 1816799148234313200, + 5053495830934389000, + 12372229662245722000, + 16912339839590414000, + 8703154528744110000, + 13932636468085936000, + 6465467294496325000, + 1145677124120205200, + 18303888997169834000, + 13068731546776183000, + 6131059648139354000, + 2007287162771660000, + 9474949152079747000, + 8070936194190651000 + ], + { + "siblings": [ + { + "elements": [ + 11422696099124003000, + 1722648619028289000, + 11269302443359824000, + 10435479167988970000 + ] + }, + { + "elements": [ + 15724416129304146000, + 6744691714555511000, + 2439391946615683000, + 2210772101600168700 + ] + } + ] + } + ], + [ + [ + 9525183876843725000, + 2855888622984382000, + 13397827375969806000, + 13136159722256746000, + 15218892414742512000, + 10808310491132199000, + 1324103723825464000, + 7368347651503864000, + 10309568245824766000, + 12753537859513120000, + 12869311463528160000, + 16396138603871414000, + 16240178727374848000, + 5635161718273932000, + 3791006860006728000, + 17339198666656307000, + 6541193527410268000, + 15683273516082323000, + 5112086031883967000, + 5406065331925881000, + 2657447745450615000, + 9670816444760027000, + 13325659018189715000, + 13435831016294584000, + 11217313374087348000, + 14011701290378144000, + 9826019901901066000, + 7011174818545567000, + 12485250187780780000, + 7160245120079607000, + 13408183746945067000, + 6375600171005056000, + 9927305338831198000, + 8699693128255504000, + 5647846955688317000, + 9833326138640034000, + 5913752655349878000, + 1050590231180777500, + 16214910270445734000, + 16406347712386930000, + 14959414846089605000, + 10268401082552087000, + 5679137952297338000, + 9503603948695472000, + 2836255994339441700, + 10012058807182465000, + 11952601583521884000, + 13961410912560062000, + 17132900654001213000, + 6395855378619758000, + 12371509705931600000, + 293286578201236800, + 4058775969705935000, + 7980532884351755000, + 5110452644557802000, + 3252109426841430500, + 2937174462525584400, + 12567282361328443000, + 16185774428124656000, + 15093306099848930000, + 3062722789886173000, + 11743770168312207000, + 6316120524981477000, + 5612433407342759000, + 3677599971880153600, + 2848302887434351600, + 15046611773585615000, + 2245899189321678800, + 13292440409609648000, + 17172164737153300000, + 4045741939611590000, + 11892497453897820000, + 9985464107907023000, + 14077131981999573000, + 4751046403622145000, + 4882156887676032000, + 13855189746836476000, + 15527773963646263000, + 13909669238906186000, + 15468739355400260000, + 14087375078925662000, + 223595055505301340, + 8600475194750327000, + 2989773475328423400, + 8721028723526505000, + 673992912808887700, + 4598731638685222400, + 10503451749910743000, + 11290046934911678000, + 11874779447683301000, + 13833585501693458000, + 13654224829626920000, + 6605221614668480000, + 10079993882420986000, + 14744327690551290000, + 12295047710239580000, + 9469354987762625000, + 17334865176811334000, + 14945166967432864000, + 13180434473377829000, + 7275991776497636000, + 5680790305817868000, + 7569779988067365000, + 16826269441086867000, + 12254136636772710000, + 760436856983129200, + 1836708535361419800, + 9216530971859576000, + 4090326216743877000, + 9661222676488470000, + 14926408960568338000, + 1712731036489775600, + 2029374860025725700, + 2159722893176012800, + 6991285652535207000, + 11615197863589843000, + 15328622387273320000, + 9151167398547147000, + 2865523304330363000, + 13254629574351729000, + 15196747328954124000, + 2921238693205303000, + 7213067809638433000, + 10821038585981102000, + 4840719814884205000, + 10210717672305598000, + 10624663903376706000, + 16385068466961498000, + 7253199840246788000, + 16869990990081900000, + 3184350693154017300, + 16138869606672183000, + 13580051088471736000, + 9045897544254564000, + 12189673830670938000 + ], + { + "siblings": [ + { + "elements": [ + 2463070886173504000, + 10398819580671062000, + 6177555139904199000, + 16960305390376480000 + ] + }, + { + "elements": [ + 10644193323188558000, + 6778102143933978000, + 11447070136184928000, + 643633414134137000 + ] + } + ] + } + ], + [ + [ + 15294217221118690000, + 1861925535265389600, + 12279907175769868000, + 13685117216635429000, + 16493282691757566000, + 2297880704117006800, + 2687762701516832300, + 2386472088500501500, + 9422328896437561000, + 7286270531197855000, + 4549164967734139400, + 8372954539145192000, + 12338220877197607000, + 18390803194695827000, + 13845697529170450000, + 11229236478837560000, + 367388724478156540, + 2020539044234380800, + 13820869147238345000, + 3329829199647925000 + ], + { + "siblings": [ + { + "elements": [ + 7555436212166367000, + 14286942759330015000, + 1836555048182456600, + 4868050220465069000 + ] + }, + { + "elements": [ + 12231414991072672000, + 7351728200205146000, + 14048106130627269000, + 18194607047935450000 + ] + } + ] + } + ], + [ + [ + 14714802869606963000, + 8951296923929360000, + 15707512759926470000, + 11671879061976170000, + 15392789841190328000, + 2586396596601744400, + 3522902047370193000, + 18446744069414584000, + 16689938700014576000, + 2139710503871210000, + 1303794312109906000, + 11116073464724937000, + 2052975327485881600, + 12085193771771488000, + 3738396792743845000, + 18446744069414584000 + ], + { + "siblings": [ + { + "elements": [ + 11123809250895750000, + 8032076811501191000, + 18341465968211558000, + 9417878454662058000 + ] + }, + { + "elements": [ + 4725137059042561000, + 10769712266507119000, + 14736388342980086000, + 16795270059620840000 + ] + } + ] + } + ] + ] + }, + "steps": [] + }, + { + "initial_trees_proof": { + "evals_proofs": [ + [ + [ + 6081383232730957000, + 12231537100593664000, + 9028951210196915000, + 8712088703138036000, + 9062903963610724000, + 14941893713098801000, + 4581001816805602000, + 10810823613022781000, + 10527683056002286000, + 9898414260953407000, + 5639484381697087000, + 16770966891222307000, + 18434929416445639000, + 6686279143148790000, + 491853504403074600, + 1123097094060490, + 7164474011243401000, + 14001399934942124000, + 7396034798703602000, + 13461294301062095000, + 7314515545718398000, + 10285504105011036000, + 13908696317502370000, + 14450583084638867000, + 851471187188601700, + 13751791254782824000, + 6173092682790067000, + 15971135718500102000, + 3424425730638704600, + 16825662550870450000, + 8860043639039832000, + 14362683875237450000, + 12481713303323388000, + 46272622009596110, + 3868865299622134300, + 7839318709256588000, + 11081272550168340000, + 420101028552763800, + 10433317477208775000, + 6525270122192018000, + 5930444858353149000, + 12538389806798301000, + 18163560582674810000, + 5887848450053799000, + 16558427387265920000, + 18034348907535243000, + 2605978906145645600, + 6518171407600649000, + 4050687237046094000, + 5963396076090729000, + 3509114124151224300, + 7290578785591859000, + 4265931566184849400, + 3440580828124135000, + 13667716434038550000, + 17166286401027176000, + 4558731884728763000, + 15139969297728512000, + 17876202707430744000, + 6227397794070479000, + 6596022070911701000, + 10980467099424598000, + 13635995082892636000, + 10119407337406861000, + 9742580701280145000, + 3704230525019195000, + 15500214883749126000, + 2335077694864807400, + 1464783755937936600, + 2526849113256721400, + 8933147872433174000, + 17158092337783679000, + 12064424818214998000, + 16432666161404742000, + 13371433052303320000, + 5000196015846499000, + 5295799553313080000, + 10195625500013110000, + 4083106938202594000, + 15467334291060110000, + 8801034538749791000, + 14170934327562985000, + 11368817307745931000, + 4245340193596784600 + ], + { + "siblings": [ + { + "elements": [ + 3788108192752209400, + 5764285458124954000, + 4876025311470937000, + 1697065922247651000 + ] + }, + { + "elements": [ + 5146134359815002000, + 4633941153658424000, + 8230102747931661000, + 3646387604866439700 + ] + } + ] + } + ], + [ + [ + 18043987152862056000, + 9395661307624581000, + 14974337014595138000, + 13008432744902000000, + 12142255079148680000, + 17969705692420364000, + 17051654745368234000, + 13358865265722450000, + 10540590534248076, + 1408730457361207800, + 10532720477191131000, + 6610479089450050000, + 4521037226069865500, + 7159283370301952000, + 10629387738070624000, + 3749866226540588000, + 13450148168164650000, + 13908977901863821000, + 8595744272304170000, + 1046552016253622500, + 12722331457385953000, + 7390178243375076000, + 4405262868845996500, + 9530608406714479000, + 13727096424926476000, + 11080597592253917000, + 10330112979421209000, + 4514038334214013400, + 4544771773650146000, + 8204706191967251000, + 14125229133068782000, + 13814590615651162000, + 8960344013652123000, + 2619565968546386400, + 7230605575241425000, + 6772290836131090000, + 12117739223735800000, + 15950638122493536000, + 3651306309176047000, + 11273652234482233000, + 17591752208499538000, + 5124529330349612000, + 441051827983333440, + 10089952651576685000, + 6602027440879528000, + 9922048900287120000, + 6869531686075756000, + 15257976904195877000, + 16662601073732188000, + 2841396390190357500, + 9646666196233406000, + 16105756538737860000, + 8759630292054540000, + 16254313352068480000, + 4697681729982925000, + 7633114896815107000, + 16261770872666999000, + 10754272286444876000, + 5509177107684175000, + 11134291417871288000, + 1119755095202407800, + 2888674545265869300, + 12129001892897702000, + 4692015494681974000, + 8652202636548705000, + 6239563052775753000, + 6785213519729911000, + 2396652707705905000, + 8528527656004976000, + 10900750949254519000, + 9227903884381792000, + 14626482656654653000, + 8958004128089966000, + 9693157507228047000, + 6811873873602898000, + 10185467520317047000, + 243701048828348600, + 11739114494358032000, + 12836473527079086000, + 14781245189493029000, + 2446329392359059000, + 10518056162066612000, + 13054671838344511000, + 15480246440485558000, + 13849523024798323000, + 1755676129806697000, + 9104162199802991000, + 2416275697685444600, + 984297053159827800, + 1252566437339190000, + 9243949684115266000, + 950621778996866200, + 15357629860210416000, + 14879382997018837000, + 607877255900862300, + 4153872975253625000, + 5666731395474772000, + 17706592561949170000, + 15394231548823347000, + 12034286191671237000, + 7561081235474805000, + 7148898834013492000, + 8577472697698886000, + 12249241141511740000, + 11075181738043664000, + 2867260333921756700, + 10530512464308818000, + 17519204944273637000, + 4266612360002193400, + 9740277292338422000, + 8418190345373687000, + 7774091978255843000, + 7574596412930639000, + 10010352267277494000, + 7895450917591858000, + 3011550424796099600, + 12571392071673086000, + 17762337682007742000, + 2985846727467142000, + 8873604907319135000, + 2569280172536818700, + 9942199230782400000, + 21043928173552180, + 13168378824449559000, + 12046428224200163000, + 8838445527383913000, + 11390150483453514000, + 8448912799072067000, + 15404254166756995000, + 6492786562218360000, + 14161032550601839000, + 11637821745544382000, + 15320641775427052000, + 17270880025283893000, + 5167806060496410000 + ], + { + "siblings": [ + { + "elements": [ + 8687671874771869000, + 3098829706829929000, + 11722513450524518000, + 258358786640336770 + ] + }, + { + "elements": [ + 14044994255019723000, + 18144048244892525000, + 11224831422620197000, + 1970368915393741000 + ] + } + ] + } + ], + [ + [ + 5798419105504438000, + 6072520553995844000, + 7925851380983619000, + 15581732600247282000, + 4672960751475472000, + 2014513648879421400, + 4335291510878775300, + 7870521764862061000, + 545417343764276600, + 4588986537259996700, + 2220724882241600000, + 18398593586716879000, + 10601498512244640000, + 14910019298283446000, + 18184884760560808000, + 16120829903254729000, + 6881333193609073000, + 1142749454416890500, + 12240681993224102000, + 7380451952196866000 + ], + { + "siblings": [ + { + "elements": [ + 6556901002709341000, + 11512934398329830000, + 16641583074958428000, + 5922524713221011000 + ] + }, + { + "elements": [ + 13070872139847148000, + 3284933392544127000, + 2769739794318891500, + 6422961320097869000 + ] + } + ] + } + ], + [ + [ + 18305233737799650000, + 12493802616051323000, + 11765106476373320000, + 10799542866202452000, + 1255696009273770500, + 14862442350599176000, + 1478170946435264000, + 18446744069414584000, + 4659442461902055000, + 5362447100307018000, + 17895168711159468000, + 14458497896032813000, + 14753933292523350000, + 14220623635100137000, + 8256060999181025000, + 18446744069414584000 + ], + { + "siblings": [ + { + "elements": [ + 1110258899657298600, + 16758995402484154000, + 12366571950026928000, + 16365419413092278000 + ] + }, + { + "elements": [ + 8576941452274718000, + 9988584003264390000, + 595770861858900000, + 2661627884621169000 + ] + } + ] + } + ] + ] + }, + "steps": [] + }, + { + "initial_trees_proof": { + "evals_proofs": [ + [ + [ + 13874923908060168000, + 10300199960485500000, + 17220223416712729000, + 11107917826713907000, + 16080860504613726000, + 18134296401397246000, + 8194394929420645000, + 577158521334961700, + 17558309524404453000, + 7462499894769427000, + 7806442614678325000, + 1288552523294564900, + 5928745459609369000, + 5673755939833452000, + 1376743317442148400, + 15198933849581950000, + 7573015836263812000, + 11548290280681220000, + 3048586463663642600, + 17924736790130764000, + 16176421463462790000, + 7400032287983233000, + 15731792546871810000, + 7943532610231399000, + 9191667656456694000, + 3262984601497837600, + 11548794947560432000, + 16935173460323566000, + 13440064921123574000, + 13006542764524136000, + 3200332762477917000, + 4727549247137830000, + 10132168364538910000, + 16818212172973425000, + 10153429833011927000, + 6098139687959498000, + 14527559769504348000, + 604659360669510800, + 10236113364972240000, + 13365343744988801000, + 16324715386374244000, + 12941087553157892000, + 5845088838124669000, + 11302395006148649000, + 14757239247984955000, + 7234202237939123000, + 14532807582245636000, + 1889883654052729600, + 14382821135875336000, + 10933403972710031000, + 10477969708791192000, + 18158356374030650000, + 848649292582758700, + 1386127699829388800, + 14693104195570200000, + 8557418020926389000, + 8465103855599325000, + 7678674795737259000, + 7968512843367564000, + 15134518985828235000, + 14849136868521925000, + 8200859219989098000, + 3125736942597523500, + 16341012296276128000, + 13668079212165384000, + 7587065128463574000, + 15516306994332084000, + 16992631783574962000, + 300488920541911550, + 9606976928846938000, + 10676817243288232000, + 13557774887840422000, + 2050879513960775700, + 7921519393270083000, + 12510688718189386000, + 12160967257524916000, + 17327790555543273000, + 5585739159986358000, + 13436395299212415000, + 17518943154379266000, + 45119396072775820, + 18248002885183340000, + 17650535637853524000, + 10046834664009894000 + ], + { + "siblings": [ + { + "elements": [ + 8321586574402929000, + 11350831215799910000, + 1895653507085351200, + 12216094806571370000 + ] + }, + { + "elements": [ + 17728593759504001000, + 6650774988450794000, + 17384983616442278000, + 10830012975394552000 + ] + } + ] + } + ], + [ + [ + 13988798512629654000, + 76253716425328450, + 9720388670929797000, + 1548769052874449000, + 4186341020955588000, + 6862944479202454000, + 14366895565355276000, + 13875514586646538000, + 1035926410631440100, + 18242522356971150000, + 1415928030558151000, + 10555850688989389000, + 10707472348355193000, + 4000176139385105000, + 9705750205557307000, + 9658654884800268000, + 11329389319769317000, + 4939094497246667000, + 1407775169662096600, + 5308822414770047000, + 1604842342262745900, + 2300822367478385200, + 11268072829658104000, + 3997032341131272700, + 17670659555666332000, + 14784892686047267000, + 9624619191424043000, + 14007762269439490000, + 7411666433601970000, + 5115691485937302000, + 14232052711733460000, + 1256801342434752800, + 1906105890470539800, + 11792765408269238000, + 9898356939401122000, + 11065606654443284000, + 2522748716531354000, + 18404801585326131000, + 9118150825369610000, + 267357083944166270, + 5387508141663236000, + 15004830142968674000, + 10356035168955570000, + 15597862579970245000, + 18393018001001880000, + 12675472940990150000, + 8820022755878118000, + 9658957221754080000, + 17151314281851025000, + 9578870844134017000, + 6830451153495818000, + 5369317296643799000, + 13171656258724050000, + 1373711012813919500, + 5471723687400023000, + 2406292471108823000, + 9951689500955058000, + 12060084218234740000, + 4760840034279680000, + 9754253254285644000, + 8616416175249563000, + 4684975461791388000, + 9387937223653000000, + 13301019192521600000, + 6269330021873935000, + 3517210241360379000, + 11003469451619922000, + 3610549887396251600, + 1497516365368399600, + 4894109179828162000, + 7914684816612575000, + 6132931463969841000, + 2144285151439448300, + 1406199608590617900, + 7307131912044299000, + 6508752220412788000, + 7746270055483601000, + 17833179492447668000, + 14526892816727808000, + 9701481970352208000, + 13914690528481690000, + 15643969845997388000, + 5464359663498387000, + 889424567753573000, + 7989677013221700000, + 17355113716812120000, + 13752811320559798000, + 3880688060270935000, + 168554767122808260, + 13454415630159847000, + 6131607221807139000, + 6946351714147378000, + 6127809234463158000, + 4504684932501475000, + 9907230308388893000, + 13962036811876348000, + 17212622489162455000, + 10916775301835252000, + 9940314811256062000, + 5427040662121236000, + 8486653303199714000, + 15998813445430428000, + 10511364647516660000, + 9559140210178089000, + 2060877779061970400, + 16211662036030781000, + 10327470851288457000, + 12196611397930019000, + 8468612061547286000, + 13930407202069133000, + 5719028475464293000, + 18379658372943747000, + 14783191669153559000, + 431943804708486140, + 7695296427112307000, + 12563101117003037000, + 14290426999464892000, + 7934493953338483000, + 6983541108933658000, + 3839840456412217000, + 1929228498814995000, + 17575101248893092000, + 6076046916015587000, + 17675135919326167000, + 11161639531773610000, + 6968817007887067000, + 16202824762796878000, + 12984235721759973000, + 6198537556019399000, + 11136116976404744000, + 14544601807855397000, + 14595378143660394000, + 10133474947915635000, + 17178887028578847000, + 5126690798594809000 + ], + { + "siblings": [ + { + "elements": [ + 304396058218599700, + 11440056226842487000, + 2045029781721057300, + 7418082168888018000 + ] + }, + { + "elements": [ + 5334469149490404000, + 3598138839610647600, + 6796381505852003000, + 15319636773542779000 + ] + } + ] + } + ], + [ + [ + 7282289022858397000, + 3195559267216753000, + 143304174121789760, + 6175111592394332000, + 12987947501802684000, + 10272310107029080000, + 12565278246341462000, + 4183380601714699000, + 12678155825796604000, + 4947373802918938000, + 8260105618528438000, + 3657314852675894300, + 13029478856547070000, + 14094715409386752000, + 9623273493286615000, + 165625991893961280, + 4785200762699550000, + 7610626231165241000, + 926232735949361400, + 3317367731509987000 + ], + { + "siblings": [ + { + "elements": [ + 14360539770997203000, + 6909380758607428000, + 16723185969720052000, + 12190916707907970000 + ] + }, + { + "elements": [ + 15091140755478155000, + 819422060376979800, + 14357482521494936000, + 13588186513070518000 + ] + } + ] + } + ], + [ + [ + 10736366282282220000, + 3240819972574937000, + 4956319036146060000, + 4851014724390187000, + 4263483889230006000, + 2635198511890610700, + 17395756407360655000, + 0, + 5218382838372244000, + 10229631585394414000, + 4197227066387615000, + 511098591589079500, + 5978372796455920000, + 702308498126885800, + 3241535182676742000, + 0 + ], + { + "siblings": [ + { + "elements": [ + 12643384957791336000, + 7750017510520132000, + 5975996947348412000, + 13021379799282520000 + ] + }, + { + "elements": [ + 17604930072073382000, + 18395710422362923000, + 3206971756951438000, + 16666201066758244000 + ] + } + ] + } + ] + ] + }, + "steps": [] + }, + { + "initial_trees_proof": { + "evals_proofs": [ + [ + [ + 5268519634013650000, + 12952845650223350000, + 16768531882050440000, + 14462689093185688000, + 18277220295645320000, + 3852081186223516700, + 17100627758382860000, + 9715203018448534000, + 7953222902470523000, + 3825331082672791000, + 5465265629793607000, + 6176358672966578000, + 17306807916396830000, + 16588126998322903000, + 6467743780679620000, + 18379340274211873000, + 7884974251905549000, + 12613644379350972000, + 395505592059137800, + 3588224288551760400, + 3904668345611071500, + 3339470090609407500, + 6216287519318569000, + 882940143888277200, + 4162710549574314000, + 12180761427257356000, + 1890381727484826600, + 17010461562491177000, + 3962332100974049300, + 7918836822795598000, + 907486615081043700, + 1026841857427498000, + 13046435817655837000, + 12980820035208014000, + 2159562618664935400, + 12030338451283005000, + 1920968325701278700, + 10398171293207210000, + 1574763909011715600, + 15688152896670341000, + 558932655124037600, + 7564549072577692000, + 17872355376553966000, + 17450459230322024000, + 13831731954964285000, + 10886158955087757000, + 4398553647749526000, + 5996830362659087000, + 5849098922998238000, + 17078048874655162000, + 9389700541469395000, + 9929326601092594000, + 5714277294271540000, + 15730025807840719000, + 2749747243393585000, + 7119831539676257000, + 14048939970932445000, + 7306854533913743000, + 16655498606991464000, + 13030518484788664000, + 10856711318942556000, + 904125913628094100, + 15757756965103251000, + 596940250449274900, + 1714506698269188000, + 12537262499547519000, + 102386843593201420, + 12854247983785861000, + 2906655064868027000, + 15327684198403983000, + 6023138564887028000, + 1646580939255352300, + 6009552509419457000, + 515341885868353400, + 17755087942133870000, + 5837604297379767000, + 3581712833910489600, + 16397882613028560000, + 701121412127850000, + 12877267663904526000, + 2349261106082595000, + 2238087291372347000, + 106018565186860420, + 16663491380101968000 + ], + { + "siblings": [ + { + "elements": [ + 9234506234901858000, + 930441051602006900, + 5595362472696225000, + 836883163510895500 + ] + }, + { + "elements": [ + 17200885959217347000, + 18203122369288442000, + 1093813852588954500, + 1807294838185916000 + ] + } + ] + } + ], + [ + [ + 12801899079137100000, + 4644617254182516000, + 4203760268706214400, + 5341943230017764000, + 11592236896415242000, + 8777990016910361000, + 2643560350371403300, + 4858172567165967000, + 10605580997878088000, + 11024877154018632000, + 12804929002873731000, + 10855755443027077000, + 1390759027912675300, + 3701265802790884000, + 10630163908115610000, + 7679469502282218000, + 136572699985217340, + 4354840285355342300, + 14218651197238376000, + 7210030408041293000, + 12816614237432414000, + 13486454982107961000, + 307271398602547140, + 5993380993562533000, + 15613300637887900000, + 6992775533327591000, + 13131408930320456000, + 8951565721700140000, + 3472287256949616000, + 3552052794125125600, + 4359533654720927000, + 13160582020059404000, + 12132343692874842000, + 2494313021504582700, + 17311890069667721000, + 18119125673532008000, + 12911059509300077000, + 17108792508707416000, + 11044654066868732000, + 3337663633246340600, + 10393577962382076000, + 1457336607531784000, + 16141574300291066000, + 9063098743146974000, + 16477547071246610000, + 17804248726694146000, + 12367328285990169000, + 3798408447393984500, + 4755001445754874000, + 6067026561749127000, + 6070841820326178000, + 10807251645208367000, + 16177635020610277000, + 7792161678913316000, + 8433195511324002000, + 907805047975348600, + 16052777764322605000, + 12179365880950245000, + 2129879563614852400, + 13404596204006246000, + 5643471082528695000, + 13393293101291887000, + 2620972285708243000, + 5516011545520526000, + 2056752450533067500, + 15606515277407832000, + 16413444896882416000, + 12038812286509783000, + 11300229691263564000, + 6334516560403513000, + 11870192047151438000, + 6780040819792911000, + 6066254325435706000, + 17530391509208290000, + 4230669755122055700, + 4535644948317245400, + 15901842688700103000, + 8244922321526565000, + 3342769001632167000, + 11435422856273447000, + 10432698159152720000, + 2544553213257801000, + 7362606692024079000, + 8234851928977111000, + 17845663378986996000, + 1071976904164479900, + 9981077394086200000, + 17012625111518620000, + 14306614702046108000, + 12414814393819455000, + 14892787685583923000, + 6090115021574378000, + 1758357977588362500, + 10206976231703675000, + 14631620513401876000, + 9440183270840422000, + 3392346979898457600, + 7860559317323337000, + 2799980268522051600, + 546803925946789570, + 9832662957472620000, + 1116094719340828700, + 13128559497347398000, + 12195273578210726000, + 14097701170444870000, + 6372684539514139000, + 11878758825758003000, + 9053104487771836000, + 7909946639586484000, + 4797460653392788000, + 12760946114986803000, + 4578721756430533000, + 5085446288192478000, + 11593291184176726000, + 17932444724689947000, + 4210005973284048400, + 13930064310624426000, + 4291360433596272600, + 17289791367425740000, + 11417093828357485000, + 14874734674801543000, + 4089374009072722000, + 16615449957779823000, + 4268041348958513700, + 16574264700563147000, + 2413394161869112300, + 18215924613157956000, + 18080867064063042000, + 3486547190294064600, + 5328670427901796000, + 10738367803758940000, + 3824935252124709000, + 8837186888479041000, + 7530893159113046000, + 8954925571744583000 + ], + { + "siblings": [ + { + "elements": [ + 15906798786903472000, + 8822129485157799000, + 11986308576552671000, + 4529032975562550300 + ] + }, + { + "elements": [ + 6078684323714279000, + 7216840294970848000, + 2744130996114422300, + 8572615391987088000 + ] + } + ] + } + ], + [ + [ + 10516323125836902000, + 5446289525453988000, + 6301371394928797000, + 8612301092516171000, + 15705749017098125000, + 11520286091908616000, + 1689555209360736800, + 13064338193860766000, + 6277331725710334000, + 15407675278628720000, + 9916605906106278000, + 7393159741075805000, + 17668428265691800000, + 6495577681156771000, + 13286969770639067000, + 14330727397557484000, + 4171596535456378400, + 18184737146025964000, + 1088286803122283900, + 14904762138047240000 + ], + { + "siblings": [ + { + "elements": [ + 1027709436512224900, + 11364061098574600000, + 11615767351536070000, + 7790414009951576000 + ] + }, + { + "elements": [ + 4034004983931084000, + 5389409114200054000, + 2819410180066133000, + 11871599406273237000 + ] + } + ] + } + ], + [ + [ + 10605254987898180000, + 16225591120293753000, + 18316376347391678000, + 16440585336846027000, + 3784804700849835000, + 3989639258499753500, + 14451046841866154000, + 0, + 15941580684949821000, + 3698456118391159300, + 17905819088443621000, + 2387730117080648700, + 16741861185860119000, + 2140309043963670000, + 15032818531362437000, + 0 + ], + { + "siblings": [ + { + "elements": [ + 5144349401190012000, + 15078115039796978000, + 6452495632665105000, + 12814838705617287000 + ] + }, + { + "elements": [ + 15301081849512760000, + 15347553120612964000, + 5124989024708669000, + 10617165977361992000 + ] + } + ] + } + ] + ] + }, + "steps": [] + }, + { + "initial_trees_proof": { + "evals_proofs": [ + [ + [ + 12859477545421292000, + 18446228248137783000, + 4361795131497918500, + 14311372612561140000, + 5379242149277978000, + 8627642225018950000, + 115730254930675420, + 942297902353529600, + 11389209183993737000, + 17550407117288337000, + 11598592940402831000, + 10211085719950330000, + 16955323756515408000, + 6164034066388039000, + 12084849160591018000, + 9330119569990365000, + 15300291814466484000, + 17601380643429102000, + 9517753525944914000, + 7001529188715059000, + 16972712563141390000, + 3160587271072116000, + 4317847705941558000, + 4300240078025939000, + 2625214765659220500, + 6958225314757407000, + 82174954683442820, + 13146492537526505000, + 6760197543089082000, + 12395597912335167000, + 12834625500800348000, + 2349479832784720000, + 2744530828115506700, + 7232403551014819000, + 9873231499280697000, + 14844137344663935000, + 4130885524324453400, + 6614756667455677000, + 1562700575212961500, + 1664222429132128800, + 12354578627381030000, + 17830858864538840000, + 7355034995159817000, + 11301333352691245000, + 978820723201213700, + 15445892715918510000, + 5904948948963624000, + 17787597772238735000, + 7412059590461974000, + 7632831397026551000, + 10682981151259234000, + 3809730450439746000, + 13693793783539737000, + 8811323332065702000, + 8863487687148049000, + 16024497145611305000, + 6700942582117659000, + 16018616740637405000, + 12138024807450333000, + 13356261883336608000, + 3402311134981020000, + 17684153610417017000, + 15988677082620064000, + 7943589248645343000, + 15488156408183691000, + 13694714888300239000, + 1139266919024165000, + 17071162292203630000, + 16874236178655429000, + 8912515112082110000, + 5261750303661676000, + 17642085411126002000, + 5991088517256648000, + 725663588230098400, + 15889535612108132000, + 4922688737645091000, + 14589899859249652000, + 16231102096230461000, + 3579784397897064000, + 3586753374366880000, + 17757803033897646000, + 5909063142794440000, + 3808897751270404600, + 1876435259226599000 + ], + { + "siblings": [ + { + "elements": [ + 9813827625414474000, + 16196700304751014000, + 13797676968924664000, + 17882575465916707000 + ] + }, + { + "elements": [ + 7372999055943323000, + 3141364051179518000, + 11032666934607065000, + 18114007743554458000 + ] + } + ] + } + ], + [ + [ + 5838705715348335000, + 18143948763217280000, + 1404446395862158600, + 6611724637198589000, + 4230933657379128300, + 3263990577136938000, + 14883494569753235000, + 1888030841855966500, + 6782857795502386000, + 3120577039241623000, + 11735527459557345000, + 3241263400945019400, + 4014200764698283500, + 17071440191429378000, + 11478359870191174000, + 7718100131633118000, + 5902684862000234000, + 11341691680604121000, + 6338479527974377000, + 14923823716799100000, + 11541810684008667000, + 9800633118243215000, + 16709923468425587000, + 14093174394522650000, + 1916681612243633200, + 15913133041732692000, + 3517895618818467300, + 3231581505988694000, + 11192209431754578000, + 4079542765338145300, + 8522131032450131000, + 11816896042385920000, + 7846667942825847000, + 2554760994053882400, + 6343298053444158000, + 6939909125272476000, + 17963726718084194000, + 4267972366367176700, + 7270999755530418000, + 10512345714703512000, + 12339004946437853000, + 2016691370155526400, + 16696469578458245000, + 7958579852176688000, + 14421746655535790000, + 11539547592783065000, + 17123445024170787000, + 17897648915509772000, + 8079842912357115000, + 17672450112784794000, + 8188513980564825000, + 15305561826766143000, + 8299404314394622000, + 12466770904389282000, + 14799486369392396000, + 10264548399505687000, + 12934429895225262000, + 5963509776974466000, + 11178031649436117000, + 7102243338816248000, + 17910575324156908000, + 16323641986857470000, + 5463740064682953000, + 5263044083147253000, + 15512218115155718000, + 14455369695294788000, + 10610636163527950000, + 10702993814571061000, + 3479271742500564500, + 14284477271840694000, + 34818355646755640, + 16812745590840728000, + 14845714662329496000, + 17164309963139390000, + 7568782516279905000, + 5457566446148474000, + 4835013339518636000, + 13651953372056648000, + 15500592488774334000, + 11063485408808804000, + 3841095563411120000, + 15930360923008362000, + 8273130214113797000, + 4287569877589282300, + 14832706588279163000, + 2658231441544361000, + 6651113337112066000, + 12559192887489580000, + 12425578599105130000, + 14651242902708850000, + 5218665004180617000, + 990651561940266200, + 7306677715291736000, + 17745457977634850000, + 6417440168626384000, + 5054311539504586000, + 4734732885655453000, + 3438287498132838000, + 8816468256566108000, + 3968033773752365000, + 13815811320568652000, + 8245536924084791000, + 15092998549047085000, + 16189487859071076000, + 9551494178075193000, + 15385722889733340000, + 1227932515172874500, + 2309362718352658400, + 3985257444626681300, + 13469470974490757000, + 11567538160954501000, + 6727928868390480000, + 6875217129796028000, + 6243759934193155000, + 7368917015501627000, + 14288451991461780000, + 2781223823794465300, + 9561008320134334000, + 12509900864238932000, + 5773869335943025000, + 2128509932748675000, + 9057711094494974000, + 2471683232578645000, + 9894768973699314000, + 12541321713871217000, + 9341548369600960000, + 14804374310746448000, + 16411619650351475000, + 12471166444542970000, + 9720533360520282000, + 7864497643214539000, + 5054365736214455000, + 13326144622013254000, + 13406463037983494000, + 5115679527231270000 + ], + { + "siblings": [ + { + "elements": [ + 5025729848197830000, + 14232209158752060000, + 9553916350274451000, + 3781117013069575000 + ] + }, + { + "elements": [ + 8188670334423518000, + 1566191709544018200, + 16402048886999146000, + 191343565835256600 + ] + } + ] + } + ], + [ + [ + 4550220056502284000, + 11609047217869621000, + 8425354999519554000, + 8297552355975591000, + 15720146422154004000, + 16306651075078793000, + 16153230862275120000, + 10652630296198877000, + 6919181022312869000, + 5330900077895365000, + 11267088444289083000, + 12745170331192113000, + 17563465442549656000, + 16959545086033488000, + 17340080638392990000, + 13887580455630725000, + 11637020016292660000, + 2341035695492146700, + 1500073678592512500, + 8935796769613357000 + ], + { + "siblings": [ + { + "elements": [ + 4106383119467667000, + 11474587324414306000, + 5276882064194905000, + 8043530703363253000 + ] + }, + { + "elements": [ + 11532031438242007000, + 6770962685750792000, + 17457149116491366000, + 11805423938257566000 + ] + } + ] + } + ], + [ + [ + 12039835282579430000, + 7030149156780904000, + 18256011712281010000, + 6630642390124033000, + 7642453323768319000, + 17007529787500335000, + 16957807395924183000, + 0, + 10456155418134626000, + 1600032088112268500, + 3348713460464980500, + 16427238409726577000, + 3893983669579671000, + 14338980818331140000, + 16243751874611122000, + 0 + ], + { + "siblings": [ + { + "elements": [ + 16208930212025553000, + 3256034151008034300, + 12184002992283273000, + 14083915224099066000 + ] + }, + { + "elements": [ + 17538758302094543000, + 7192178956846173000, + 718103195548148000, + 14388698506789708000 + ] + } + ] + } + ] + ] + }, + "steps": [] + }, + { + "initial_trees_proof": { + "evals_proofs": [ + [ + [ + 8117943655843531000, + 3321505716937400000, + 12348903993798373000, + 9554193422348059000, + 2076391541765032700, + 2332709985254552000, + 9983547647567665000, + 7929555782678041000, + 14561373194673373000, + 2805033781646318000, + 3471962382805966300, + 17694014429178833000, + 3704390472367452000, + 1824524396485991200, + 16700105811147397000, + 2703343674576438000, + 11141970420011720000, + 11082113368486849000, + 9674118655743465000, + 2616398679862231600, + 1540270854618735600, + 8533345113891363000, + 7196777356678968000, + 1807436776493534200, + 8841508056667232000, + 12675701402973299000, + 13309984414152489000, + 4670844048548313000, + 15076274001910411000, + 15678098074241864000, + 7511850154067637000, + 17522910429847240000, + 31170377651234224, + 11755574648960287000, + 13483264098347293000, + 13931463797972726000, + 1053100462955032200, + 1616305949335179000, + 17728002378671213000, + 5497581083874818000, + 1290274045234113800, + 6934329776702343000, + 8295143050134560000, + 10270172752010400000, + 17341723014871560000, + 10362643250370253000, + 12601612474741340000, + 13834700839083241000, + 3175594037901040600, + 14495438568116734000, + 3811278014040336000, + 12977389692608664000, + 6095984332174815000, + 12988687132372912000, + 1293453281212178200, + 2161918712166224600, + 8190334505965653000, + 10840327516714322000, + 6528324528789400000, + 7231744405606905000, + 763970827584843100, + 17717229756524087000, + 13221478690365751000, + 5032148543054411000, + 8066294159164546000, + 876821344300355100, + 16370536175082689000, + 18018030476501870000, + 16537747338175435000, + 2319223751890033000, + 14092488520471927000, + 3676331303790441500, + 9738121579031185000, + 15986263394179176000, + 4736314346750933000, + 9327795220678953000, + 9205175305599842000, + 13846435457268290000, + 16834002675993660000, + 15967840985757895000, + 12735654769576692000, + 1268046656697214700, + 7493387054599322000, + 14464450334185296000 + ], + { + "siblings": [ + { + "elements": [ + 1423617203194833700, + 3418732215912469500, + 7687250902006069000, + 15555503910463265000 + ] + }, + { + "elements": [ + 7328390293048135000, + 11928443479975481000, + 13499502888068977000, + 6344608598895869000 + ] + } + ] + } + ], + [ + [ + 459350568365686900, + 15550828377363139000, + 12397043480720232000, + 2084404325896594400, + 14889344219944770000, + 2447950274054361000, + 13420286735328553000, + 11809246922074798000, + 8428380081252477000, + 706325537388111200, + 16478378632678270000, + 10717764424798894000, + 18041799713869179000, + 1241753668140354000, + 7877633425343492000, + 7593402648007026000, + 14593390887220707000, + 8357230049395607000, + 5107933330000899000, + 15740960807777763000, + 14368414619582687000, + 17383962145391006000, + 15440692020714142000, + 3296255906369541600, + 10075453671005188000, + 4776431730363385000, + 2270709377857329000, + 14392834005128710000, + 14894400151070745000, + 16700500041504227000, + 2623989370410552000, + 11235391421829915000, + 2999021923157820400, + 9831424495670426000, + 14854542683282470000, + 18114195311428120000, + 8405418535743554000, + 6236943980832027000, + 11068583589365301000, + 8960807963761409000, + 3999152351450625500, + 16001465441347504000, + 3167749775329904600, + 513574738995333900, + 8209578178452035000, + 1902446857765063400, + 10433187939166560000, + 12358070652472140000, + 3216367292132871000, + 4699898119677148000, + 2746469241117095400, + 10802889741147613000, + 10275890726112598000, + 10181478340128768000, + 10226575824708360000, + 17728050814933047000, + 12584233478926885000, + 16940024879529603000, + 7139162872470108000, + 11213672747902590000, + 5145869028523678000, + 12725979175629560000, + 3758146172883492000, + 17446926057257443000, + 7182304108383850000, + 10011364715654636000, + 14429084084067680000, + 4344579239271860000, + 5419098062563452000, + 7313290092911618000, + 2227733154448920600, + 2565773415236258300, + 11805943701041033000, + 12174911162907679000, + 16892965383262837000, + 2639160672323885600, + 14134189481222701000, + 6857143804379467000, + 3014858314451434000, + 8794822564542431000, + 10543558764782301000, + 9121609098362239000, + 9098615993314967000, + 16047212345699730000, + 3772404201658608000, + 9899797994508057000, + 11805219101209360000, + 15735912668416758000, + 1648012760164840200, + 14765140477616845000, + 13859167615823970000, + 3194103978584841700, + 9042581640481981000, + 11062730515631524000, + 16353301540508883000, + 7397069842543981000, + 12497600541214747000, + 18054138998181663000, + 13264067874551781000, + 9777420705469813000, + 9991568765456595000, + 8734630675050729000, + 16203636204526774000, + 1190366031905124000, + 3470581115064660500, + 7672950234868395000, + 12559772413381695000, + 14592432411966353000, + 9479598373640788000, + 13925793357348348000, + 5535587744123436000, + 15979226273306642000, + 6176627876966315000, + 4482047379122285600, + 6607126309655610000, + 11037908100804610000, + 6907062031014839000, + 17930855732296137000, + 8694456994875092000, + 15661620629978750000, + 2180261880283008000, + 13638161039678448000, + 2433662094057008000, + 12403456674980102000, + 224343942053941200, + 10361850299854647000, + 9351540412859329000, + 9021990461128841000, + 12509136019406014000, + 12534765999545397000, + 7927447299846268000, + 8953215911289624000, + 3467371841917930500, + 4662797113664504000, + 11054476231170204000 + ], + { + "siblings": [ + { + "elements": [ + 7833880571839721000, + 14036919492600797000, + 15188370169391186000, + 4575728284622573600 + ] + }, + { + "elements": [ + 4259243439647474700, + 10955745759050437000, + 2577609038422589000, + 17327518776587692000 + ] + } + ] + } + ], + [ + [ + 14803564994439774000, + 3837007658180997600, + 6097875900702335000, + 15591031645155944000, + 8877869417174934000, + 11633649875789250000, + 1890538954495486700, + 7719676368952099000, + 6563575035550423000, + 12737782293029532000, + 2433113557577326600, + 11147606271543180000, + 8492500700658237000, + 17394764370056120000, + 3242408886636306400, + 4637713302510533000, + 15354354356644571000, + 14573612271849953000, + 1753353675263548000, + 1744928967692360400 + ], + { + "siblings": [ + { + "elements": [ + 12818651835587346000, + 3199424659409415700, + 6303864497256784000, + 17441271650569665000 + ] + }, + { + "elements": [ + 292607053303612400, + 1639232834444630500, + 2289967458176835300, + 9147285471296140000 + ] + } + ] + } + ], + [ + [ + 17743471776052572000, + 6534188231520534000, + 13540647837873402000, + 3001218585530528300, + 13627379085528304000, + 15081248135508150000, + 16808557728079032000, + 0, + 15820612427375577000, + 2356841891638638000, + 8289051217671448000, + 4227586852925725700, + 2357860220735786000, + 2922728400641016300, + 15063061794374676000, + 0 + ], + { + "siblings": [ + { + "elements": [ + 576090494304313300, + 11215338972467280000, + 7397076896456770000, + 16460105132507660000 + ] + }, + { + "elements": [ + 10161413473488585000, + 16325630778765462000, + 10607518226522038000, + 13652613868979427000 + ] + } + ] + } + ] + ] + }, + "steps": [] + }, + { + "initial_trees_proof": { + "evals_proofs": [ + [ + [ + 8836978090687743000, + 13549589814493198000, + 2128250613769924400, + 6538810285485400000, + 4753053964216584000, + 7277638844854205000, + 691005071134789200, + 4458859453557574000, + 9501342337623490000, + 318069987574244200, + 8636507508877684000, + 6424083983554774000, + 590024983173091300, + 7369533319762470000, + 2114194793325551600, + 11919674715980180000, + 17343749218843871000, + 3899391382009751600, + 3869252091973478000, + 15301139156671758000, + 7896202519655159000, + 8929314221882308000, + 4290950380423182000, + 16410516446170077000, + 13976090403259288000, + 4166838079673009700, + 9288672662721845000, + 17851399054217435000, + 5032790387152266000, + 6442943672191266000, + 18436227342330655000, + 9422655925983738000, + 15476163271527460000, + 11136226761807966000, + 11642826410315057000, + 8088649184674601000, + 6525459136458253000, + 8748298519195092000, + 7608946003354687000, + 14871931379574946000, + 6341671703284195000, + 12269993593618592000, + 6802725334166172000, + 13057468042224634000, + 7789902318320651000, + 804339423146692400, + 7975025901070153000, + 9962595445968540000, + 17003723970909596000, + 12757571756091496000, + 316844417098369200, + 13211351809160055000, + 3296628539462058000, + 9334631147471294000, + 4426938607186518500, + 10502638469620765000, + 1551917469544694800, + 18102084809271716000, + 3755011872030229500, + 135822669718677650, + 18358286424480614000, + 2576599520628457000, + 13772398870264010000, + 12515580814497087000, + 8974123346514711000, + 6756185775039288000, + 10964315112954122000, + 163446531148954880, + 1073081905585536400, + 6914008853912245000, + 1816799148234313200, + 5053495830934389000, + 12372229662245722000, + 16912339839590414000, + 8703154528744110000, + 13932636468085936000, + 6465467294496325000, + 1145677124120205200, + 18303888997169834000, + 13068731546776183000, + 6131059648139354000, + 2007287162771660000, + 9474949152079747000, + 8070936194190651000 + ], + { + "siblings": [ + { + "elements": [ + 11422696099124003000, + 1722648619028289000, + 11269302443359824000, + 10435479167988970000 + ] + }, + { + "elements": [ + 15724416129304146000, + 6744691714555511000, + 2439391946615683000, + 2210772101600168700 + ] + } + ] + } + ], + [ + [ + 9525183876843725000, + 2855888622984382000, + 13397827375969806000, + 13136159722256746000, + 15218892414742512000, + 10808310491132199000, + 1324103723825464000, + 7368347651503864000, + 10309568245824766000, + 12753537859513120000, + 12869311463528160000, + 16396138603871414000, + 16240178727374848000, + 5635161718273932000, + 3791006860006728000, + 17339198666656307000, + 6541193527410268000, + 15683273516082323000, + 5112086031883967000, + 5406065331925881000, + 2657447745450615000, + 9670816444760027000, + 13325659018189715000, + 13435831016294584000, + 11217313374087348000, + 14011701290378144000, + 9826019901901066000, + 7011174818545567000, + 12485250187780780000, + 7160245120079607000, + 13408183746945067000, + 6375600171005056000, + 9927305338831198000, + 8699693128255504000, + 5647846955688317000, + 9833326138640034000, + 5913752655349878000, + 1050590231180777500, + 16214910270445734000, + 16406347712386930000, + 14959414846089605000, + 10268401082552087000, + 5679137952297338000, + 9503603948695472000, + 2836255994339441700, + 10012058807182465000, + 11952601583521884000, + 13961410912560062000, + 17132900654001213000, + 6395855378619758000, + 12371509705931600000, + 293286578201236800, + 4058775969705935000, + 7980532884351755000, + 5110452644557802000, + 3252109426841430500, + 2937174462525584400, + 12567282361328443000, + 16185774428124656000, + 15093306099848930000, + 3062722789886173000, + 11743770168312207000, + 6316120524981477000, + 5612433407342759000, + 3677599971880153600, + 2848302887434351600, + 15046611773585615000, + 2245899189321678800, + 13292440409609648000, + 17172164737153300000, + 4045741939611590000, + 11892497453897820000, + 9985464107907023000, + 14077131981999573000, + 4751046403622145000, + 4882156887676032000, + 13855189746836476000, + 15527773963646263000, + 13909669238906186000, + 15468739355400260000, + 14087375078925662000, + 223595055505301340, + 8600475194750327000, + 2989773475328423400, + 8721028723526505000, + 673992912808887700, + 4598731638685222400, + 10503451749910743000, + 11290046934911678000, + 11874779447683301000, + 13833585501693458000, + 13654224829626920000, + 6605221614668480000, + 10079993882420986000, + 14744327690551290000, + 12295047710239580000, + 9469354987762625000, + 17334865176811334000, + 14945166967432864000, + 13180434473377829000, + 7275991776497636000, + 5680790305817868000, + 7569779988067365000, + 16826269441086867000, + 12254136636772710000, + 760436856983129200, + 1836708535361419800, + 9216530971859576000, + 4090326216743877000, + 9661222676488470000, + 14926408960568338000, + 1712731036489775600, + 2029374860025725700, + 2159722893176012800, + 6991285652535207000, + 11615197863589843000, + 15328622387273320000, + 9151167398547147000, + 2865523304330363000, + 13254629574351729000, + 15196747328954124000, + 2921238693205303000, + 7213067809638433000, + 10821038585981102000, + 4840719814884205000, + 10210717672305598000, + 10624663903376706000, + 16385068466961498000, + 7253199840246788000, + 16869990990081900000, + 3184350693154017300, + 16138869606672183000, + 13580051088471736000, + 9045897544254564000, + 12189673830670938000 + ], + { + "siblings": [ + { + "elements": [ + 2463070886173504000, + 10398819580671062000, + 6177555139904199000, + 16960305390376480000 + ] + }, + { + "elements": [ + 10644193323188558000, + 6778102143933978000, + 11447070136184928000, + 643633414134137000 + ] + } + ] + } + ], + [ + [ + 15294217221118690000, + 1861925535265389600, + 12279907175769868000, + 13685117216635429000, + 16493282691757566000, + 2297880704117006800, + 2687762701516832300, + 2386472088500501500, + 9422328896437561000, + 7286270531197855000, + 4549164967734139400, + 8372954539145192000, + 12338220877197607000, + 18390803194695827000, + 13845697529170450000, + 11229236478837560000, + 367388724478156540, + 2020539044234380800, + 13820869147238345000, + 3329829199647925000 + ], + { + "siblings": [ + { + "elements": [ + 7555436212166367000, + 14286942759330015000, + 1836555048182456600, + 4868050220465069000 + ] + }, + { + "elements": [ + 12231414991072672000, + 7351728200205146000, + 14048106130627269000, + 18194607047935450000 + ] + } + ] + } + ], + [ + [ + 14714802869606963000, + 8951296923929360000, + 15707512759926470000, + 11671879061976170000, + 15392789841190328000, + 2586396596601744400, + 3522902047370193000, + 18446744069414584000, + 16689938700014576000, + 2139710503871210000, + 1303794312109906000, + 11116073464724937000, + 2052975327485881600, + 12085193771771488000, + 3738396792743845000, + 18446744069414584000 + ], + { + "siblings": [ + { + "elements": [ + 11123809250895750000, + 8032076811501191000, + 18341465968211558000, + 9417878454662058000 + ] + }, + { + "elements": [ + 4725137059042561000, + 10769712266507119000, + 14736388342980086000, + 16795270059620840000 + ] + } + ] + } + ] + ] + }, + "steps": [] + }, + { + "initial_trees_proof": { + "evals_proofs": [ + [ + [ + 8117943655843531000, + 3321505716937400000, + 12348903993798373000, + 9554193422348059000, + 2076391541765032700, + 2332709985254552000, + 9983547647567665000, + 7929555782678041000, + 14561373194673373000, + 2805033781646318000, + 3471962382805966300, + 17694014429178833000, + 3704390472367452000, + 1824524396485991200, + 16700105811147397000, + 2703343674576438000, + 11141970420011720000, + 11082113368486849000, + 9674118655743465000, + 2616398679862231600, + 1540270854618735600, + 8533345113891363000, + 7196777356678968000, + 1807436776493534200, + 8841508056667232000, + 12675701402973299000, + 13309984414152489000, + 4670844048548313000, + 15076274001910411000, + 15678098074241864000, + 7511850154067637000, + 17522910429847240000, + 31170377651234224, + 11755574648960287000, + 13483264098347293000, + 13931463797972726000, + 1053100462955032200, + 1616305949335179000, + 17728002378671213000, + 5497581083874818000, + 1290274045234113800, + 6934329776702343000, + 8295143050134560000, + 10270172752010400000, + 17341723014871560000, + 10362643250370253000, + 12601612474741340000, + 13834700839083241000, + 3175594037901040600, + 14495438568116734000, + 3811278014040336000, + 12977389692608664000, + 6095984332174815000, + 12988687132372912000, + 1293453281212178200, + 2161918712166224600, + 8190334505965653000, + 10840327516714322000, + 6528324528789400000, + 7231744405606905000, + 763970827584843100, + 17717229756524087000, + 13221478690365751000, + 5032148543054411000, + 8066294159164546000, + 876821344300355100, + 16370536175082689000, + 18018030476501870000, + 16537747338175435000, + 2319223751890033000, + 14092488520471927000, + 3676331303790441500, + 9738121579031185000, + 15986263394179176000, + 4736314346750933000, + 9327795220678953000, + 9205175305599842000, + 13846435457268290000, + 16834002675993660000, + 15967840985757895000, + 12735654769576692000, + 1268046656697214700, + 7493387054599322000, + 14464450334185296000 + ], + { + "siblings": [ + { + "elements": [ + 1423617203194833700, + 3418732215912469500, + 7687250902006069000, + 15555503910463265000 + ] + }, + { + "elements": [ + 7328390293048135000, + 11928443479975481000, + 13499502888068977000, + 6344608598895869000 + ] + } + ] + } + ], + [ + [ + 459350568365686900, + 15550828377363139000, + 12397043480720232000, + 2084404325896594400, + 14889344219944770000, + 2447950274054361000, + 13420286735328553000, + 11809246922074798000, + 8428380081252477000, + 706325537388111200, + 16478378632678270000, + 10717764424798894000, + 18041799713869179000, + 1241753668140354000, + 7877633425343492000, + 7593402648007026000, + 14593390887220707000, + 8357230049395607000, + 5107933330000899000, + 15740960807777763000, + 14368414619582687000, + 17383962145391006000, + 15440692020714142000, + 3296255906369541600, + 10075453671005188000, + 4776431730363385000, + 2270709377857329000, + 14392834005128710000, + 14894400151070745000, + 16700500041504227000, + 2623989370410552000, + 11235391421829915000, + 2999021923157820400, + 9831424495670426000, + 14854542683282470000, + 18114195311428120000, + 8405418535743554000, + 6236943980832027000, + 11068583589365301000, + 8960807963761409000, + 3999152351450625500, + 16001465441347504000, + 3167749775329904600, + 513574738995333900, + 8209578178452035000, + 1902446857765063400, + 10433187939166560000, + 12358070652472140000, + 3216367292132871000, + 4699898119677148000, + 2746469241117095400, + 10802889741147613000, + 10275890726112598000, + 10181478340128768000, + 10226575824708360000, + 17728050814933047000, + 12584233478926885000, + 16940024879529603000, + 7139162872470108000, + 11213672747902590000, + 5145869028523678000, + 12725979175629560000, + 3758146172883492000, + 17446926057257443000, + 7182304108383850000, + 10011364715654636000, + 14429084084067680000, + 4344579239271860000, + 5419098062563452000, + 7313290092911618000, + 2227733154448920600, + 2565773415236258300, + 11805943701041033000, + 12174911162907679000, + 16892965383262837000, + 2639160672323885600, + 14134189481222701000, + 6857143804379467000, + 3014858314451434000, + 8794822564542431000, + 10543558764782301000, + 9121609098362239000, + 9098615993314967000, + 16047212345699730000, + 3772404201658608000, + 9899797994508057000, + 11805219101209360000, + 15735912668416758000, + 1648012760164840200, + 14765140477616845000, + 13859167615823970000, + 3194103978584841700, + 9042581640481981000, + 11062730515631524000, + 16353301540508883000, + 7397069842543981000, + 12497600541214747000, + 18054138998181663000, + 13264067874551781000, + 9777420705469813000, + 9991568765456595000, + 8734630675050729000, + 16203636204526774000, + 1190366031905124000, + 3470581115064660500, + 7672950234868395000, + 12559772413381695000, + 14592432411966353000, + 9479598373640788000, + 13925793357348348000, + 5535587744123436000, + 15979226273306642000, + 6176627876966315000, + 4482047379122285600, + 6607126309655610000, + 11037908100804610000, + 6907062031014839000, + 17930855732296137000, + 8694456994875092000, + 15661620629978750000, + 2180261880283008000, + 13638161039678448000, + 2433662094057008000, + 12403456674980102000, + 224343942053941200, + 10361850299854647000, + 9351540412859329000, + 9021990461128841000, + 12509136019406014000, + 12534765999545397000, + 7927447299846268000, + 8953215911289624000, + 3467371841917930500, + 4662797113664504000, + 11054476231170204000 + ], + { + "siblings": [ + { + "elements": [ + 7833880571839721000, + 14036919492600797000, + 15188370169391186000, + 4575728284622573600 + ] + }, + { + "elements": [ + 4259243439647474700, + 10955745759050437000, + 2577609038422589000, + 17327518776587692000 + ] + } + ] + } + ], + [ + [ + 14803564994439774000, + 3837007658180997600, + 6097875900702335000, + 15591031645155944000, + 8877869417174934000, + 11633649875789250000, + 1890538954495486700, + 7719676368952099000, + 6563575035550423000, + 12737782293029532000, + 2433113557577326600, + 11147606271543180000, + 8492500700658237000, + 17394764370056120000, + 3242408886636306400, + 4637713302510533000, + 15354354356644571000, + 14573612271849953000, + 1753353675263548000, + 1744928967692360400 + ], + { + "siblings": [ + { + "elements": [ + 12818651835587346000, + 3199424659409415700, + 6303864497256784000, + 17441271650569665000 + ] + }, + { + "elements": [ + 292607053303612400, + 1639232834444630500, + 2289967458176835300, + 9147285471296140000 + ] + } + ] + } + ], + [ + [ + 17743471776052572000, + 6534188231520534000, + 13540647837873402000, + 3001218585530528300, + 13627379085528304000, + 15081248135508150000, + 16808557728079032000, + 0, + 15820612427375577000, + 2356841891638638000, + 8289051217671448000, + 4227586852925725700, + 2357860220735786000, + 2922728400641016300, + 15063061794374676000, + 0 + ], + { + "siblings": [ + { + "elements": [ + 576090494304313300, + 11215338972467280000, + 7397076896456770000, + 16460105132507660000 + ] + }, + { + "elements": [ + 10161413473488585000, + 16325630778765462000, + 10607518226522038000, + 13652613868979427000 + ] + } + ] + } + ] + ] + }, + "steps": [] + }, + { + "initial_trees_proof": { + "evals_proofs": [ + [ + [ + 8561463095453669000, + 4776209039443197000, + 7322904599427282000, + 15255763500871932000, + 7562397766783204000, + 16645794912788883000, + 9450057434947582000, + 6766752762185511000, + 10076299737552249000, + 10369144313111820000, + 10557024776423453000, + 8268949222208748000, + 1296674759819510800, + 11657746141206606000, + 1590136817070290400, + 7470589252570909000, + 9967271735478927000, + 13360459367350864000, + 10308080703622656000, + 8925070422780251000, + 12207498686332344000, + 6187354983655965000, + 3564194908140406300, + 4388010879009020400, + 16774763653598345000, + 6210339879231447000, + 16789470306162788000, + 2523256864930313700, + 5944395274507288000, + 6056841947720925000, + 5382413425989156000, + 7807677929700019000, + 10764120079749010000, + 6443189779247925000, + 10453787209753115000, + 4342734684527980000, + 763870227536556300, + 11727129804847274000, + 11971156213393742000, + 4495578332440023600, + 7824753443227800000, + 7107211511651176000, + 2718808210452530000, + 2538295580964624400, + 8447554525900262000, + 1176575265983504100, + 16157856793176343000, + 7022146989250663000, + 9606684399902170000, + 2605371005961828000, + 1511382437525160000, + 18297585815327330000, + 7219157396875332000, + 2049545782804316400, + 13267394892650768000, + 10805913324796760000, + 11704228717376740000, + 14125502048884535000, + 15934873444920326000, + 8875731240116220000, + 7461932703138617000, + 10214819787762874000, + 1083941287853629300, + 4641307345200042000, + 4311928834259002000, + 10059442166679680000, + 1552118349107656200, + 1945517898892733200, + 4317708114281299500, + 5932655334217267000, + 393854185736212860, + 4162225679562719000, + 18193759447817642000, + 3419035867599302700, + 4859952412503221000, + 13815315076798790000, + 1326477836423603000, + 8990168093646116000, + 3435090231412913700, + 11226566123968975000, + 554961563151816260, + 7777007303169989000, + 7369033671229157000, + 12064995664505965000 + ], + { + "siblings": [ + { + "elements": [ + 18327621612708538000, + 9834707417698460000, + 1755797188485612000, + 11282776702394425000 + ] + }, + { + "elements": [ + 8911856714153345000, + 5169399561089888000, + 17434826530307453000, + 13454008730270505000 + ] + } + ] + } + ], + [ + [ + 15666538628641240000, + 5514816996734502000, + 10206108607176817000, + 9896262670257777000, + 6079739796103278000, + 17286875108380252000, + 561425553121134800, + 2353131957614777300, + 5893340839798879000, + 11129222212666780000, + 10924104255256756000, + 17267669508161161000, + 4647408740315859000, + 5785121738159371000, + 6093882889922157000, + 5742299360730802000, + 9211026671714441000, + 4430722085715900400, + 16569439020417477000, + 7710180900186729000, + 7665638673280967000, + 4585609829683470300, + 5557606434017276000, + 2371052838682984400, + 2642911096316514300, + 6356319609341020000, + 6186847707097494000, + 16907299656517782000, + 17095145482208102000, + 2481522152204127700, + 9561063761012744000, + 1689946986591295700, + 12594300294200480000, + 10079031477351827000, + 14000096010987528000, + 11765063538554833000, + 16644113168581917000, + 17350995321653383000, + 17500619418309024000, + 9481705395030575000, + 12497387272119364000, + 1925407000558198500, + 12583198762936048000, + 7443123372605885000, + 838740293651714200, + 1100461639859149000, + 11177974252008989000, + 6380623488710486000, + 12542278262031094000, + 16254701321867160000, + 6823819150713475000, + 17215299214671570000, + 13966147550304143000, + 9223639212731443000, + 6509941738730252000, + 6147349624439435000, + 1113876691227294800, + 14033168695832027000, + 16964868364042297000, + 10034398557373704000, + 7304568305006980000, + 7560503949509186000, + 17787944583253041000, + 5115833476142113000, + 8983275968692755000, + 7203337847219790000, + 10009368020705565000, + 816418556400703700, + 11778171599719125000, + 2627480771747486700, + 12756211416503458000, + 1313539456695336200, + 15441693119630225000, + 3231903959999011000, + 5237584219841790000, + 7291191935368559000, + 11117181368253660000, + 2056167370836882000, + 12864891343344544000, + 10378618540142887000, + 9697654614878642000, + 10276688395281551000, + 14877218708414585000, + 7967577406942339000, + 14631131848272003000, + 16865668483502244000, + 13410837678341452000, + 5276561997161289000, + 5947352761335661000, + 18343785528628541000, + 10526668487761023000, + 18402152563623686000, + 18239225106859882000, + 12230094686820129000, + 2918285366825870300, + 9414321179277285000, + 1511404328072539400, + 1297975720868002300, + 1173324749663009500, + 15050086386432088000, + 15272250077308113000, + 13822444198809063000, + 17096978387127388000, + 3858102420877815300, + 13590567883433314000, + 17012091130277930000, + 2814267957163824000, + 8817102003598338000, + 8688285464408228000, + 9705616124721287000, + 6122981992244657000, + 932254258206415900, + 12037004231200390000, + 5826335529295053000, + 9079364387930631000, + 9531184098211512000, + 8427459440193670000, + 4397355363395553000, + 9882857985213479000, + 558411593687385200, + 10497893678454682000, + 15271595898401878000, + 6149791997045003000, + 11414246566620283000, + 17631978533632549000, + 17304090097926779000, + 13982751415055557000, + 2133351462344169000, + 8277691391752842000, + 9369269337471508000, + 16168092452324184000, + 17731822729212660000, + 16754645600571918000, + 12787329461168712000, + 15321990034574053000 + ], + { + "siblings": [ + { + "elements": [ + 16520904106182216000, + 1611997898553715000, + 11777042533132104000, + 12796324794112590000 + ] + }, + { + "elements": [ + 8073646859878915000, + 15381733691326398000, + 16773339023789599000, + 9293386129925167000 + ] + } + ] + } + ], + [ + [ + 341167061524046000, + 874681621316974600, + 16328320066832468000, + 9753124930177485000, + 9949927884145582000, + 14974788638150461000, + 18245882891539046000, + 11436556485215103000, + 16702378430804566000, + 15733994465628950000, + 11936919022085320000, + 10908692451317127000, + 12299024980739160000, + 1848305228941050600, + 1595460444655932000, + 7531660413816267000, + 15988975325426850000, + 11599399965017418000, + 1141222187261306100, + 16196352434995022000 + ], + { + "siblings": [ + { + "elements": [ + 14862744475044198000, + 4332228133108517400, + 356521522733290200, + 8954832560954449000 + ] + }, + { + "elements": [ + 10676217494185046000, + 3024735325002737700, + 12858103930586368000, + 8960357054274253000 + ] + } + ] + } + ], + [ + [ + 10847921256463004000, + 16587152971988200000, + 11547265145961814000, + 11756238743301657000, + 7304255047521113000, + 7311066441162755000, + 9987338811577874000, + 0, + 2286288030916109600, + 2523776428248326000, + 3637341627992865000, + 16999913088345217000, + 2230414036437496800, + 3255409381275795500, + 6755970406017336000, + 0 + ], + { + "siblings": [ + { + "elements": [ + 8758870939865756000, + 9275196909282898000, + 5992463369292676000, + 15859375535957273000 + ] + }, + { + "elements": [ + 16756977027083407000, + 8595502919250088000, + 7838161333135153000, + 557417010548665500 + ] + } + ] + } + ] + ] + }, + "steps": [] + }, + { + "initial_trees_proof": { + "evals_proofs": [ + [ + [ + 7577016485919277000, + 6735275202698697000, + 9760540244161036000, + 5466375874027570000, + 14857735554974388000, + 11596941429152010000, + 7755282478930922000, + 15898875264011387000, + 15556894694773297000, + 10235400558406416000, + 6119712351401070000, + 3329660208144285700, + 3141628165757217300, + 4133640273580195300, + 9821076459958952000, + 12128749612756273000, + 13970461391875760000, + 17765185769461662000, + 15487582972326531000, + 9982395814599539000, + 9641611303332563000, + 6103693158931419000, + 2405316792204658700, + 6000825777172017000, + 17291676255595837000, + 8252483479157584000, + 1334724356621090300, + 1075572777223806800, + 1418446335104706000, + 2409702906096442000, + 13386456238514991000, + 18352812465733048000, + 3565310531641633000, + 11865783810792319000, + 6653259754289135000, + 14277892463020505000, + 1021338263193648000, + 7974086536238080000, + 18043050004595530000, + 7169322739935538000, + 17262952765223793000, + 16508173524706834000, + 8407986048421701000, + 2731681821418784000, + 16962409397168350000, + 12518371718584705000, + 6836490320947231000, + 10173908584322425000, + 14780801403217615000, + 6864407245519098000, + 15257782884735570000, + 4065363053230926000, + 15615323641249036000, + 8499342504130970000, + 17149728462152206000, + 2609078087137313000, + 8608113588501448000, + 4822411645928574000, + 3365274694095832600, + 10950247685143499000, + 7727368247640987000, + 12501830351562086000, + 350638120505957500, + 4934393113758427000, + 14433372824351033000, + 4042073163038955500, + 11778644211147725000, + 4668173569820499000, + 11542788906243678000, + 2030283944460521700, + 1666092553131115800, + 11111091004364665000, + 7226571630364575000, + 4771316324262430000, + 15791501074258794000, + 3737577106070872600, + 11059059255634799000, + 3364036573675630000, + 17462173752139633000, + 2478747308715539000, + 16256143857234362000, + 11157135593420104000, + 8718964465724306000, + 4143119419741543400 + ], + { + "siblings": [ + { + "elements": [ + 9388587184167043000, + 4839542192624420000, + 13665916779219735000, + 7189877172786009000 + ] + }, + { + "elements": [ + 5146134359815002000, + 4633941153658424000, + 8230102747931661000, + 3646387604866439700 + ] + } + ] + } + ], + [ + [ + 4923639440429335000, + 7819842526462637000, + 1651138263502417700, + 17470236648626682000, + 16467654994799673000, + 4715915064637101000, + 7619684628276360000, + 479460807157053100, + 10017811155891302000, + 4475838480144445400, + 13464156729164425000, + 15346968566604950000, + 4760064035722943000, + 17330991548213540000, + 5816040858379168000, + 14086434138788366000, + 14229306288868307000, + 12545766100846488000, + 10223060941737112000, + 9189624277814114000, + 15027148094895952000, + 6052981885332042000, + 11112745323310210000, + 16441034496291195000, + 6425929374180726000, + 11992472683751080000, + 17742591650177585000, + 4679679183335998000, + 4711001845630079000, + 7441039996296078000, + 2946561664171115000, + 15001718823808657000, + 15994525983351577000, + 9573572129679090000, + 4302238395949622000, + 12314843806004697000, + 15044896749522470000, + 10998328480806834000, + 12927123452134880000, + 2619446224596586500, + 13538349887415134000, + 1003760623639649800, + 2961879147021383000, + 5572468576432806000, + 8727705892663412000, + 14151513236043225000, + 15263522022089239000, + 15345806887739752000, + 11985400906496332000, + 12549155494265730000, + 12728213001284690000, + 3342990365518984700, + 16471613824187548000, + 4400864911451197400, + 11410804617893413000, + 12225546101533889000, + 8719823972469750000, + 239391621818970200, + 8632686660232422000, + 131693590792117280, + 14710775732262697000, + 4609797102274365000, + 9611910857142560000, + 2031548069577929700, + 1795242923235695900, + 18116312127732595000, + 10305189195789474000, + 15148266054788200000, + 9974314119061615000, + 11013010010596327000, + 6588124137520063000, + 605584445809414700, + 11439236061152246000, + 16476052306151502000, + 6231399744525966000, + 6829483727109349000, + 8027584327934175000, + 13575849981376823000, + 15020938002944741000, + 3171703068277778000, + 10938339710951533000, + 3797765861737462300, + 3970500973719166500, + 17185747850814628000, + 11935057180749122000, + 10773921326381040000, + 17788930356382882000, + 5595547725537037000, + 9544632387536243000, + 12671447624183685000, + 10273663091525462000, + 8688320536642202000, + 14185929794197879000, + 15464256995701072000, + 10679549335786471000, + 15606094025985907000, + 12929752765169902000, + 11789964961108144000, + 11630299781812326000, + 9970858882753325000, + 12846990407277206000, + 3790745414673227000, + 176076770827154850, + 18419862372021103000, + 5764825425668739000, + 17832694412874211000, + 8206340311934600000, + 14009952146873570000, + 7692241973072675000, + 9957378567097549000, + 6959263844465934000, + 7271162433083173000, + 16729618924532965000, + 16278339793437090000, + 1552331902258660400, + 13905061274481623000, + 16243969285903620000, + 6440435281688743000, + 9109362145965617000, + 561053648231346500, + 13311769855792065000, + 18299708138533626000, + 3980294647037127700, + 2742093189920240000, + 12675437138535279000, + 9423856944549298000, + 15986188241273915000, + 1384644051209282600, + 16350038838449414000, + 16101328826140574000, + 3128396772048073700, + 890347662269465000, + 11870611503312736000, + 13392397019216509000, + 11285123791438514000 + ], + { + "siblings": [ + { + "elements": [ + 2562325812106036000, + 8336770653495922000, + 13448256121920710000, + 7729123931097107000 + ] + }, + { + "elements": [ + 14044994255019723000, + 18144048244892525000, + 11224831422620197000, + 1970368915393741000 + ] + } + ] + } + ], + [ + [ + 17993648920320540000, + 3581947976676954000, + 11738380982176467000, + 1936553090449155000, + 10498040673385658000, + 17098951593819871000, + 11424228285981012000, + 5220410418481332000, + 8752253283425445000, + 318885645042514700, + 18218937635793553000, + 40585702850031870, + 139597535755612240, + 15413622498803421000, + 9472457106595416000, + 18303426788696732000, + 3466225968184914400, + 10390599698633023000, + 15823119806554876000, + 6824010129408189000 + ], + { + "siblings": [ + { + "elements": [ + 7634763355017470000, + 4067996546731351000, + 15219966460228112000, + 3254878231406569500 + ] + }, + { + "elements": [ + 13070872139847148000, + 3284933392544127000, + 2769739794318891500, + 6422961320097869000 + ] + } + ] + } + ], + [ + [ + 295772079752794100, + 15051242776355768000, + 15323507805006195000, + 14153148496238356000, + 2249137443250800600, + 11869637132449356000, + 11622265245572098000, + 0, + 1894554488767468800, + 16653943429319387000, + 3672568455825918500, + 10073303676218020000, + 11496342172196725000, + 646959549299908100, + 15528799029044070000, + 0 + ], + { + "siblings": [ + { + "elements": [ + 456509175278444700, + 3153747764373963000, + 10805654312643025000, + 17681057249038916000 + ] + }, + { + "elements": [ + 8576941452274718000, + 9988584003264390000, + 595770861858900000, + 2661627884621169000 + ] + } + ] + } + ] + ] + }, + "steps": [] + }, + { + "initial_trees_proof": { + "evals_proofs": [ + [ + [ + 5756954102670259000, + 15207029631270582000, + 8620853111407511000, + 5954306324953404000, + 3417369321338958000, + 14769711171700068000, + 14155220019972620000, + 4729864867204657000, + 1367124655399095800, + 794474731491043200, + 13549883238830582000, + 7154687264531142000, + 16040343449311142000, + 7519191160292483000, + 11659862054312770000, + 16037152217192112000, + 8213236337446440000, + 5480175981048843000, + 16683571355106550000, + 13543272974080164000, + 2528876297544954000, + 1752146986090354000, + 2467158844090442000, + 2784818123089147400, + 2853191568035851300, + 1047265776414426200, + 2243538379070846700, + 8626960408963182000, + 14880827053630743000, + 5727935730654045000, + 286379880044177730, + 16085096037435208000, + 5361622991241818000, + 9949357586496799000, + 5068561417731074000, + 11280248597206907000, + 15876185589640483000, + 18320739356339610000, + 13211622228097217000, + 4056587993176082400, + 7748353316269364000, + 11057333087035816000, + 11151914337748767000, + 18433647034287596000, + 9478290392842410000, + 3792026085406530600, + 9520680214228437000, + 5447506798929019000, + 12539795626444460000, + 10409804839689728000, + 3637292357808533500, + 722279013634395400, + 2962977808548824000, + 17049950107688497000, + 7829006265190333000, + 197969211212515650, + 12113251601111822000, + 3605118529118307000, + 211835988529495260, + 14155474385885497000, + 11848440872102052000, + 4366619857614921000, + 10556118585124387000, + 8391424649412626000, + 3227178879736556500, + 6503646705941890000, + 17861115577426060000, + 3966059438988839400, + 823981093346712800, + 9310258241739710000, + 14305284080474845000, + 3988773194277945000, + 4576989698097073700, + 14922970355983294000, + 17596364039560640000, + 3184267435176651300, + 13539543829396333000, + 14743205971784320000, + 1932903128429215700, + 17285289794946638000, + 9174920969369735000, + 3484178894351823000, + 13674151874602640000, + 3637683578065872400 + ], + { + "siblings": [ + { + "elements": [ + 3661189000515272000, + 9265824685834336000, + 14091976876429780000, + 5616830878271017000 + ] + }, + { + "elements": [ + 15569594249511600000, + 956031005415651600, + 9670184325097650000, + 16069782850068810000 + ] + } + ] + } + ], + [ + [ + 6044686351164867000, + 3269875303912828400, + 10971909491908020000, + 4104331182652051000, + 9962263485473014000, + 16446743957790122000, + 13671241156637750000, + 2754794169995880400, + 13574084646871572000, + 9930761900331660000, + 5673655145443899000, + 7133749487506971000, + 5549898160368759000, + 1878522763132230000, + 4592886094208856600, + 9808770861216324000, + 4212654970129965600, + 12402164420860450000, + 13897817454304200000, + 4631402193680521000, + 2994601267696290300, + 13414062053884695000, + 10850763729672290000, + 3891395258958908000, + 8441149998779430000, + 8258491258459893000, + 4859278776046905000, + 412058613908462800, + 18130171600256752000, + 5303665115226405000, + 4355950416798241000, + 1316029558059520300, + 3222322686669618000, + 10036212599885450000, + 8279945723768004000, + 8582690850383915000, + 12450591930382442000, + 645572692730456400, + 3988227972301049300, + 14398220388808206000, + 3710123732527313400, + 155876302796781380, + 18253343877941807000, + 6379360448246669000, + 8927340654901310000, + 7996185221349065000, + 13315699789613093000, + 5724538733613132000, + 2643030962927255600, + 16310982945642490000, + 15495011173491112000, + 16105521784749690000, + 320429184444725760, + 14767546211211821000, + 5714143105605907000, + 6230909235238971000, + 1194643135911008500, + 7043216867116172000, + 6254336652246266000, + 1243685250140299800, + 7633260962337619000, + 17305236221036489000, + 6257757789704964000, + 884192997621325300, + 10691786353645707000, + 17409080077056240000, + 8785849538114284000, + 4393430396232410000, + 4106702102258839600, + 16107864816356920000, + 1473172468366521900, + 15142409189154666000, + 15488543135840518000, + 1979287315525637400, + 5510212368084663000, + 16319777499194202000, + 4139286759963975000, + 15476014614716250000, + 6720252016819367000, + 4228863568097424400, + 158841757433180670, + 7783622313704054000, + 11445967336651225000, + 15052503046643743000, + 12477614737600060000, + 15222113992316166000, + 8782406919376348000, + 8507158779246719000, + 9106617960222317000, + 5176821442451545000, + 12580750786657436000, + 2130203239654213000, + 4890664253862216000, + 781222784054373500, + 3571757147556619300, + 2800540674275409000, + 13578184034493880000, + 4786421528096834000, + 14031320871056955000, + 2527667043377933300, + 10346380301169246000, + 12883210929164804000, + 10735233441884715000, + 4667648532428278000, + 13235564044260900000, + 4050135268452373500, + 11416884365007462000, + 10221384420185463000, + 967241914944821100, + 5498601594439689000, + 2063778186047920600, + 14754804062416392000, + 16740258473594696000, + 7600763099536968000, + 10185515086535549000, + 9762320781983922000, + 9980971928101437000, + 15046200461621530000, + 2248513160822077700, + 17154755658612374000, + 2983397021772574000, + 12891185378642995000, + 2287214061388242700, + 4983992104852888000, + 17910730577560345000, + 11030007974780905000, + 277344711269542370, + 135187334361126880, + 16561082217658333000, + 14109250246937123000, + 9400618241395597000, + 10338786206419003000, + 9084257847870051000, + 6696963382909331000, + 9443939456169839000 + ], + { + "siblings": [ + { + "elements": [ + 5966489167569134000, + 17836425426273143000, + 1900610409065805300, + 13896019624090335000 + ] + }, + { + "elements": [ + 11682903555287136000, + 1534945260140398300, + 3949878155172492300, + 16743724671186970000 + ] + } + ] + } + ], + [ + [ + 15935967814082777000, + 10793450668145314000, + 16481103734709692000, + 16701983883118963000, + 2665130655150335500, + 6707709384644842000, + 17813783356624787000, + 7761343892943817000, + 16971557261538329000, + 5010112909616985000, + 15660326199261348000, + 11246414234584877000, + 5192117298707085000, + 7025703383278779000, + 11110632653228495000, + 4453409517163462000, + 16930159365184346000, + 15201244810231001000, + 9490946801196866000, + 7210083492277661000 + ], + { + "siblings": [ + { + "elements": [ + 10130226028125923000, + 5751718216431077000, + 6599369552992550000, + 4891312415901708000 + ] + }, + { + "elements": [ + 12125729878269336000, + 8069209626351857000, + 5898711269996956000, + 6463287827490433000 + ] + } + ] + } + ], + [ + [ + 13546547003660833000, + 2420330907520580000, + 15985665495045423000, + 431231977838635700, + 5178226134496181000, + 14240063554572237000, + 3981175117801221600, + 0, + 8915597169147408000, + 3983834709109018000, + 18056539709246183000, + 1077972097091395300, + 6597235717645798000, + 9719282031702532000, + 9499845251513297000, + 0 + ], + { + "siblings": [ + { + "elements": [ + 121101693790730100, + 15828020225574076000, + 2183900173300727600, + 9722581975100004000 + ] + }, + { + "elements": [ + 4049176670251104000, + 656149466774118800, + 6386895970365949000, + 8637870925459206000 + ] + } + ] + } + ] + ] + }, + "steps": [] + }, + { + "initial_trees_proof": { + "evals_proofs": [ + [ + [ + 13881376915414342000, + 9246101625235732000, + 11216898403406643000, + 12638076669838846000, + 13295291973754778000, + 3730730046164001000, + 7126153461830052000, + 17395789122686681000, + 1450122423788373000, + 14238551030137588000, + 11305474509397197000, + 8883203874333873000, + 8565195020243548000, + 4944262735122308000, + 9283770953814219000, + 670302779305459500, + 7143693339266165000, + 7742024039804354000, + 9879403837584380000, + 11085839384579420000, + 1787429175351806000, + 12596896600904989000, + 15461669360327236000, + 10449705905169756000, + 11972825915502440000, + 10935209002373028000, + 8619066483548590000, + 2171943908751935700, + 10448079618910001000, + 5720003920687957000, + 15578525186414529000, + 12855497338484748000, + 12457838479026710000, + 9351825927332878000, + 12488743877921536000, + 4646281571281198000, + 9098051622088686000, + 4046519048694080500, + 9514938090906157000, + 13888634719746767000, + 3476966448065591000, + 12704855402416271000, + 8297198330428612000, + 13345428679833756000, + 10268122430091506000, + 11889874459158782000, + 17536340460761018000, + 379811707716575800, + 8911877911820660000, + 10475501055871678000, + 9283479883123945000, + 8037450826183864000, + 17642489829901664000, + 8765868535820922000, + 5968363527774460000, + 2625137059802434600, + 5893698218011723000, + 17562115373406333000, + 15367432320760519000, + 12614352915272473000, + 2116720205160849700, + 15828812936280680000, + 3716863316834816500, + 15954331659875387000, + 9390593502189285000, + 4687077015871977000, + 14411438193150650000, + 10909627256129737000, + 4893745931852109000, + 1158032765721755400, + 14217971602366126000, + 18085207468203114000, + 17754754229238317000, + 13425060085747018000, + 10873288864087950000, + 17394335823160259000, + 17186104053507275000, + 5352642521201491000, + 7615611071835088000, + 8048269333744275000, + 13924186641653637000, + 14636603887820090000, + 18402712030270867000, + 15592526295484449000 + ], + { + "siblings": [ + { + "elements": [ + 14976813243737582000, + 12855946755038237000, + 7123080335153481000, + 12747852068821440000 + ] + }, + { + "elements": [ + 17237443820363366000, + 2420429222455719400, + 3676425687366728000, + 12257612414054404000 + ] + } + ] + } + ], + [ + [ + 946737145935038700, + 9703602601585523000, + 5727971827857710000, + 8869310667448962000, + 9720847708568044000, + 11976828514130895000, + 3396785601596689000, + 8932590365665836000, + 12586676009701437000, + 3090727109304167000, + 8668434082069031000, + 505777208790222850, + 684866117717790500, + 15044243753362799000, + 5563887805406734000, + 9684570366788352000, + 9265644792644127000, + 6433018967615731000, + 15964418344312967000, + 6801118982337782000, + 2862037578077921000, + 5456224222560622000, + 8160563480466805000, + 4635773301406464000, + 8271809597019318000, + 53881827362949040, + 11780187772192350000, + 17915948239056693000, + 16832447149717932000, + 9651556766500356000, + 11006568691944763000, + 12337871134498087000, + 5949770767192970000, + 12824517216077380000, + 11938373455582374000, + 3107238099129465300, + 13504342093878340000, + 15175284495980120000, + 12894761252755458000, + 17848477394863802000, + 9715104878485494000, + 3520193941779050000, + 66521070122620960, + 17295053087484470000, + 17881970181262322000, + 10536792007544500000, + 8325740421771811000, + 14300637305070733000, + 17787388536820056000, + 12935974663932623000, + 5308476607712040000, + 15475547064531319000, + 815949456896131300, + 1595242357568745500, + 12804036466772378000, + 3261292785959631000, + 2020766735405117000, + 12271125121247494000, + 17175359069908328000, + 16159791714494670000, + 10284543733153276000, + 10928841203635090000, + 7678157695379237000, + 15310054770769285000, + 17656905181695670000, + 4137490686945769000, + 16229614677202317000, + 1878832934107803400, + 17678974028867300000, + 11896073528331141000, + 8775118441303186000, + 16734684290093103000, + 136285451913732430, + 14725769241598925000, + 7704284991048206000, + 11431201813625383000, + 12719167276648718000, + 16652681088786920000, + 6576563537271876000, + 4028057920909656000, + 5601053669074835000, + 17183827247905835000, + 2106664231970518000, + 15641583053999596000, + 3817374328150993000, + 3815176244689755000, + 10014393598102548000, + 15580515139552710000, + 12426230677861868000, + 16706657906189740000, + 3602550900932282000, + 12372884443271197000, + 11642173042521766000, + 13878111047443065000, + 12476992298607778000, + 12266780403627737000, + 15923646132922298000, + 6321114973759954000, + 13953364924042734000, + 8435337355907630000, + 14543631613874055000, + 9163187872381134000, + 8153036405709900000, + 3914032106886031000, + 14433875756206406000, + 13722570269946388000, + 15071572834440657000, + 11013157418821657000, + 11876746130266862000, + 14537039102903579000, + 2389628629174624000, + 15901471446975803000, + 8696906476732180000, + 12816319461377133000, + 18246367632974594000, + 4870567159908453000, + 5238288299813870000, + 11181241146732863000, + 508887682793888260, + 9250838706372469000, + 9100711002327162000, + 17162542173423580000, + 11994299920070742000, + 7052520739734687000, + 2797891950678084000, + 15449517810921908000, + 365745748282139970, + 16042004394900896000, + 11849088964915761000, + 17351930899782146000, + 1439559761280753200, + 16848355091835445000, + 14429886060283924000, + 2297771994205344000, + 10502117869757606000 + ], + { + "siblings": [ + { + "elements": [ + 1336545851051647700, + 5079472190849295000, + 14812519024863439000, + 13520267764506044000 + ] + }, + { + "elements": [ + 4459665030388840000, + 5200830364438282000, + 2166600862040426200, + 9612997303899787000 + ] + } + ] + } + ], + [ + [ + 16081732329533757000, + 3189955206706790400, + 16735741432767967000, + 7134067447011010000, + 10063918291907647000, + 2432787770011788000, + 9091901604890662000, + 9921268418071116000, + 12042488447547000000, + 13734854962076960000, + 8068292725126720000, + 15645489786155145000, + 10618674638231750000, + 5793334970300278000, + 12763037493759105000, + 13477873840371620000, + 37832345765232620, + 9387642487090970000, + 8259569742959887000, + 402784015821926600 + ], + { + "siblings": [ + { + "elements": [ + 4712206755826611000, + 1378486328020749300, + 16079871204836524000, + 10255896476402942000 + ] + }, + { + "elements": [ + 18062540755544183000, + 18303998224689396000, + 4429161528624229400, + 8112038080196375000 + ] + } + ] + } + ], + [ + [ + 8476067831717323000, + 3511017711526923300, + 16119624363779267000, + 9998036386119105000, + 6226407976192919000, + 8765461067093808000, + 10449474239042015000, + 0, + 12179816218951582000, + 14102231261547743000, + 4563677029585343000, + 2633596002388612000, + 1959692715796768500, + 8488443980935863000, + 3956440647769689000, + 0 + ], + { + "siblings": [ + { + "elements": [ + 9590407408725875000, + 2992486455338337300, + 11201544798508540000, + 7071814482495498000 + ] + }, + { + "elements": [ + 10129746741548255000, + 7450179706656984000, + 693943319399647600, + 584524969724286800 + ] + } + ] + } + ] + ] + }, + "steps": [] + }, + { + "initial_trees_proof": { + "evals_proofs": [ + [ + [ + 7094978389134720000, + 5760750182289479000, + 8540718813464513000, + 4568448839146839600, + 11345599669623538000, + 13622253121918816000, + 10995620882402937000, + 12936107445154361000, + 7114379624049708000, + 16430537647794033000, + 13873555713205555000, + 1145131141976625900, + 6348850608265206000, + 10582071945089073000, + 14034222113212856000, + 6066516111902702000, + 6843943244861414000, + 8237795530820656000, + 6913351694485244000, + 7484585433956188000, + 2495692736873892400, + 10802432660227300000, + 7349306852980146000, + 2804783110584915000, + 15413182743889689000, + 518655608837821440, + 10598423644988264000, + 1222663178056905500, + 6536105522842267000, + 9360264168832127000, + 8755099894110232000, + 2581983477711270400, + 4949739171741532000, + 5859992818975464000, + 10153350695455015000, + 1236322661460117000, + 4620570648427534000, + 13423777466176184000, + 10046104090825087000, + 16931659059407510000, + 7496941156345645000, + 4027807021737902000, + 10801423346170120000, + 14736216717101470000, + 14580248706673890000, + 4670766819460436000, + 16542036626965697000, + 801212623457971600, + 13703645044540570000, + 17337483389854542000, + 1589959895036989200, + 5250125703473124000, + 11907076175701533000, + 11442998441453390000, + 17464429684406884000, + 6425614628809272000, + 14883334336188004000, + 7437338571273189000, + 2646402481578204700, + 6422681740471037000, + 3542478731347529000, + 601650433610534800, + 8332398390652521000, + 17827560909782050000, + 1542417965294527700, + 5716653684556579000, + 9817964711294704000, + 7527503344869826000, + 13996720789244240000, + 1307908975894493400, + 16441095176158038000, + 14173087075572005000, + 14605664571461087000, + 4342959322199271000, + 17483953477651487000, + 13786004447891085000, + 940160120945090400, + 658292980636724100, + 5362232508946407000, + 9411444985615960000, + 14088983334674364000, + 2192706756145296100, + 15306018096133085000, + 14945969373132163000 + ], + { + "siblings": [ + { + "elements": [ + 1802789268005185800, + 15115806822093412000, + 8396575671641057000, + 2978875763155440600 + ] + }, + { + "elements": [ + 14379065715719750000, + 5773497642325634000, + 11512610239832850000, + 5628990104839660000 + ] + } + ] + } + ], + [ + [ + 9047403212259006000, + 9936206990536933000, + 4217451650824468500, + 15500585203706395000, + 8126100821287170000, + 9477961819540250000, + 1903591094594698200, + 10774150117358094000, + 3661742495309448000, + 8326078057119239000, + 2391978741247770000, + 4230751662287673300, + 6775112584915800000, + 14347941894044269000, + 13146262892990188000, + 10313036224728322000, + 2864076983520966000, + 15003944205729636000, + 8828860979826774000, + 11926389864491760000, + 11831285584274120000, + 3403425261383844000, + 1526274346353636600, + 15188723390878945000, + 16600337270156325000, + 9093437028995089000, + 15092645985749762000, + 504061766243482700, + 18375004013732323000, + 369950191047809800, + 13615245171656650000, + 2708056513550195000, + 8542259497005662000, + 12644928885237490000, + 13223797586609154000, + 10832141313793518000, + 2752611142474110000, + 10138686908283517000, + 16043552435209850000, + 15585878552470223000, + 792759226081368800, + 3207023815200042500, + 5337047862160770000, + 15788486880600244000, + 3402267049362937300, + 10768799531016774000, + 17594473359335305000, + 18100988022894900000, + 15591127555075213000, + 11187245530173125000, + 11900928364868289000, + 9686867301371690000, + 374584809050738600, + 1181557605669127200, + 14501798616319115000, + 18031382177680402000, + 493184913301191740, + 15100813457131060000, + 7596824362508942000, + 16210605393629151000, + 17633810917074543000, + 15576324267448220000, + 12876729554028180000, + 17195281242804720000, + 12510636420627775000, + 8342484079603109000, + 6265125362946820000, + 14090300358252018000, + 536640166737615000, + 1479158269564192000, + 1757595815544039000, + 18122228973848394000, + 9056187108106965000, + 15885599219981785000, + 7557295645132849000, + 16805006116858728000, + 1749331716728440600, + 14821359858100664000, + 9781278816357718000, + 11728563568156709000, + 10820270640641653000, + 13027506661253988000, + 13309739976554959000, + 10120980225698732000, + 18059965946860792000, + 2933253696893254000, + 8742483202620299000, + 11365978394027436000, + 15273499560340802000, + 10115934088548397000, + 15209970423896977000, + 8062956401386779000, + 11816916484923670000, + 6283273568238070000, + 11935484962828145000, + 15943490643759024000, + 10651567626192472000, + 12101354023636425000, + 4149344905601284600, + 18430331228496378000, + 11837173808883952000, + 9409815992531286000, + 13631564800894605000, + 14174411332204358000, + 1706680636136691200, + 11132923813337820000, + 15130975871619133000, + 10747305435112752, + 16190817622204064000, + 4504505870330249700, + 17884322374346301000, + 8296658118570179000, + 13938072811493712000, + 13079645795176593000, + 15704025400526570000, + 9717107483582600000, + 9453864306395113000, + 900517519826593700, + 6304830963410056000, + 3397929399675255300, + 15268796360057678000, + 4026991550127120000, + 10194571789011642000, + 10611656342426782000, + 2043345157211927300, + 11400075486462431000, + 13988842308662491000, + 10287438239692925000, + 10761240590761705000, + 13862675901006658000, + 8472936225981776000, + 16098996749883277000, + 11345545546847350000, + 17340315420359217000, + 12007248753649885000 + ], + { + "siblings": [ + { + "elements": [ + 13423840408330803000, + 11292107914450326000, + 4051292982295950300, + 5471818296792921000 + ] + }, + { + "elements": [ + 5469113567630359000, + 3792211208593784000, + 8987889082188132000, + 9941090724953342000 + ] + } + ] + } + ], + [ + [ + 9573943508898509000, + 11727699812142901000, + 8629417476697119000, + 7602313003114332000, + 15753916492710290000, + 2507404141959792600, + 18004930976706554000, + 17458308483017824000, + 18030027412973450000, + 5744054988694289000, + 1389758540579415800, + 8352036919858083000, + 3839148787320856000, + 8309989235119557000, + 2225476531397928700, + 17251316765475566000, + 14753628861601430000, + 2227142066363285800, + 5560993067372330000, + 16369328490353553000 + ], + { + "siblings": [ + { + "elements": [ + 8948719671710727000, + 11082952425460294000, + 1846355312881412400, + 6435752020064514000 + ] + }, + { + "elements": [ + 2987555637861934000, + 2202869466214697000, + 11403260430940891000, + 11658774830471885000 + ] + } + ] + } + ], + [ + [ + 14798508648064457000, + 6841835891191849000, + 389932076994633700, + 8384517764358233000, + 6366249534463822000, + 14638322541541718000, + 7182466839123736000, + 0, + 12061279196550290000, + 15044870522331687000, + 15659748185281423000, + 766271998558792400, + 7965565135582803000, + 14230530602719357000, + 9461695981238847000, + 0 + ], + { + "siblings": [ + { + "elements": [ + 15894219427993430000, + 14074153410156410000, + 7868085947078472000, + 3353400005830573000 + ] + }, + { + "elements": [ + 13032422437020631000, + 7623359809066676000, + 2215096085174147300, + 15276328912623827000 + ] + } + ] + } + ] + ] + }, + "steps": [] + }, + { + "initial_trees_proof": { + "evals_proofs": [ + [ + [ + 16924866050735876000, + 13816519302097420000, + 7464139112843182000, + 14437952329152815000, + 16102384223791600000, + 14810813990558044000, + 16662440353177874000, + 1061409571699162900, + 7373177684445197000, + 8117396090517610000, + 16950522942534044000, + 15190423556831994000, + 2013849530758379300, + 10106276030980800000, + 4688167895664469000, + 11199520023691915000, + 12916963807333960000, + 8891629328669209000, + 12116546715121471000, + 15688770843053582000, + 14350605526805602000, + 13147171646478492, + 15311619194950306000, + 6242159665686022000, + 15732692263219784000, + 13119615053780273000, + 17283500801830056000, + 8669172947497893000, + 5600112933692440000, + 11603617635739005000, + 10958013080565880000, + 6756936642788512000, + 6350951779140749000, + 5702398593327775000, + 5132363453483333000, + 8716842319797456000, + 11624620380491790000, + 3974923074366480400, + 379613444538228160, + 10530635117553576000, + 789756536524334200, + 6823617666578700000, + 7561420934971151000, + 12015542148157684000, + 14637549114638858000, + 2797283815309201000, + 3375500561784065500, + 17055717231604850000, + 3707972013117512000, + 1663599290483210800, + 6456202370538401000, + 17451983052281846000, + 11510162037317562000, + 9805177456638634000, + 6076873354448617000, + 9655526888190138000, + 2676435616420130000, + 4185640816350991000, + 17645109193608274000, + 13809507359805700000, + 6654978868455807000, + 14694826297195401000, + 12182790477580288000, + 7828078155477121000, + 3723899049361826300, + 12103278845470962000, + 12790586648153874000, + 16430188636519560000, + 12857487921086130000, + 6350598647806993000, + 14816410711584616000, + 9744095875078810000, + 9425670397198883000, + 10776752048143542000, + 8879552683345552000, + 5102716046529545000, + 15326394572236988000, + 14429893580759812000, + 9222186179475572000, + 7229097401750883000, + 2013355818261223400, + 4799155268953746000, + 2985183418454778000, + 17703115347578513000 + ], + { + "siblings": [ + { + "elements": [ + 16260818643770997000, + 4039943982022423000, + 10581615478270534000, + 6703349476043001000 + ] + }, + { + "elements": [ + 14087148344668615000, + 1774479748128903000, + 17398878651719133000, + 6925124511054673000 + ] + } + ] + } + ], + [ + [ + 6209288695096024000, + 11754821224810617000, + 1614401657169185800, + 9181154449473059000, + 6650982216508016000, + 8430309442035049000, + 14728329489806516000, + 9393925322876686000, + 226347534732962620, + 15290082335681640000, + 17510823588511105000, + 15666280827245537000, + 11871272935492133000, + 4284288064812801500, + 12525079995244184000, + 2224302603687185000, + 6876079741731841000, + 10542492694905932000, + 9835532597478017000, + 17914246695383312000, + 7379976956394124000, + 11253009685437960000, + 1161152258884978000, + 2693907115595941000, + 2539487689803537400, + 16922646728226679000, + 692726208779747100, + 1990842546147400400, + 9092577440910906000, + 17948064671301743000, + 4681197138854775000, + 18294088620324696000, + 5970556870881933000, + 9507526304692097000, + 4458752725299326000, + 16732102839305091000, + 5417088716422731000, + 465509015743972200, + 14026965368124357000, + 14147462566618644000, + 8867408733635490000, + 14214944566512884000, + 6595289838114798000, + 990683964018188800, + 17850193580334574000, + 5286184819466921000, + 10686606700719739000, + 17109137041116120000, + 1058672764562667800, + 14575362798968455000, + 11327155952767812000, + 1754595753282287400, + 3177835265704049000, + 53374447838380910, + 3273775055064375000, + 7455316131267701000, + 11033538904456694000, + 7576364052685977000, + 8471459943224990000, + 11577170331588823000, + 2076201456425886000, + 13767385575701127000, + 3638597609759754000, + 2927181287083207700, + 8216885021841354000, + 6957890541171447000, + 14671280345277501000, + 4243450181137611300, + 4868028619461267000, + 6492681705865834000, + 12545342303759297000, + 16996542099148227000, + 6563956273939974000, + 8982349609188718000, + 16192016123700330000, + 10015306572465193000, + 15522327088121106000, + 1545284412972989000, + 13612323680983482000, + 17688552315344572000, + 16789490021974944000, + 3420826839041662500, + 3528396959138475000, + 17208481131698639000, + 14358163599553247000, + 13434165425813846000, + 4805802433128238000, + 7452941777993104000, + 16318114614878276000, + 16087478240630510000, + 13696238954484120000, + 13579335817532152000, + 12709978408650375000, + 11194775526704007000, + 11274519470329162000, + 9176051158215943000, + 15103786366228197000, + 11862648191897633000, + 17807863563122817000, + 5698942456016126000, + 5972362550007039000, + 17127765444386798000, + 15930343685473480000, + 9684336224437504000, + 10559558355795760000, + 16404361222297262000, + 5426074759018338000, + 8196030430791000000, + 5237459297451959000, + 14746137999436524000, + 15470358576620012000, + 16884616073921122000, + 364564607130619460, + 1330214089997712600, + 11336693361952242000, + 6737852287169542000, + 13547509530522032000, + 4087990557337888300, + 393967995830059000, + 15880036291576467000, + 4917489019877499000, + 12356375230032370000, + 16108091596178973000, + 11698840755905462000, + 5960706883432161000, + 11664486972478440000, + 15076099649723425000, + 17295373391755821000, + 14794164885748908000, + 16082284921032524000, + 6102173998816399000, + 13983849411450483000, + 10516731714381162000, + 9014715645180284000, + 18388468573751880000 + ], + { + "siblings": [ + { + "elements": [ + 17237511505285992000, + 16192246025576290000, + 6999095903182695000, + 6201283243901119000 + ] + }, + { + "elements": [ + 4901086059583293000, + 1693925756475720000, + 909498897347662300, + 14441017942546274000 + ] + } + ] + } + ], + [ + [ + 5832638092582016000, + 6735038275686475000, + 1227922137318466800, + 8257112588898079000, + 16731362819210754000, + 2957846007492755000, + 16177480308991963000, + 14752826291347063000, + 7918057276062619000, + 9636805007832816000, + 15905987721231157000, + 8691499231487570000, + 3094224673981203000, + 7612602956224401000, + 13617705653327225000, + 10438003394639399000, + 6532226038869750000, + 2361974608193372700, + 13776375747794221000, + 5160461928769892000 + ], + { + "siblings": [ + { + "elements": [ + 12147140960822555000, + 16482501411164568000, + 4869178211166902000, + 5483751916007441000 + ] + }, + { + "elements": [ + 15428007721123467000, + 8047626189917613000, + 14066708431325688000, + 4355621110226424300 + ] + } + ] + } + ], + [ + [ + 15209093849865353000, + 12682043205075550000, + 18263275003277957000, + 1822945952546460700, + 3550335365069313500, + 16494444190506721000, + 4629324493661945000, + 0, + 10928788562132360000, + 10769066618073350000, + 8853895493438301000, + 10326223372689486000, + 8183188745147059000, + 6076855381609139000, + 6809150328780896000, + 0 + ], + { + "siblings": [ + { + "elements": [ + 1699849520813851000, + 848049088390005800, + 3172539429741365000, + 10888081840927656000 + ] + }, + { + "elements": [ + 8863409900239373000, + 13707002877187709000, + 1410264500385183200, + 5154696196922119000 + ] + } + ] + } + ] + ] + }, + "steps": [] + }, + { + "initial_trees_proof": { + "evals_proofs": [ + [ + [ + 2567677165572923000, + 13328620337251381000, + 281392357543300900, + 15970554212485804000, + 5017050651129700000, + 10191499307648199000, + 13299335024042590000, + 9255003976555194000, + 15378034648982569000, + 5948118349615336000, + 11274594290534447000, + 4032022539137208000, + 8942831666614371000, + 3652247699534838000, + 8927341742011018000, + 15206620229015433000, + 16954616039900000000, + 16743998276321556000, + 13395614356189917000, + 11666901723371043000, + 4130831228654990300, + 7977466372638589000, + 17845681475112976000, + 8286985003484836000, + 12224214725000487000, + 6176416652914048000, + 14141492565589260000, + 11460886538168430000, + 13439184736850987000, + 16840895906717948000, + 11714562256977359000, + 13493170645256129000, + 5810640284248508000, + 18174815942436497000, + 13826017214809686000, + 4620133367956557000, + 5608806003242826000, + 11183353624538070000, + 10574751881217554000, + 6447030745527933000, + 620043113377913000, + 11219431517684257000, + 7259427288881923000, + 2502545773730350000, + 12983989667202257000, + 5608732614609072000, + 16158519078129687000, + 13420580166830103000, + 18008457711385836000, + 443837003735336900, + 3101528610508246000, + 14797835361211474000, + 17585610399021904000, + 14188234011912538000, + 12732333856220640000, + 1173624576261270800, + 16900137231023063000, + 13260310462680556000, + 4078665765787582000, + 13967509052294423000, + 12839283043702270000, + 17371901155856079000, + 16102146866254983000, + 18255260432607578000, + 2609247937380529700, + 1846334264067864000, + 15325800454658568000, + 1416389761742361600, + 11358058119108168000, + 5829991367441489000, + 14439217222541343000, + 6550909171126867000, + 6409809383952537000, + 15177268610759379000, + 7128444891759696000, + 12106972734380892000, + 5367776978276157000, + 17819540293624418000, + 13837383168942211000, + 1467720147972680200, + 13632213988442702000, + 6387021946092180000, + 4080123795696239600, + 15688564486240788000 + ], + { + "siblings": [ + { + "elements": [ + 1516586498273230300, + 2502406512148236000, + 3393488687492442000, + 499480511920846660 + ] + }, + { + "elements": [ + 1387097763072726000, + 2384297850115292700, + 17237482130465184000, + 5331312880628565000 + ] + } + ] + } + ], + [ + [ + 960549313432837200, + 9765326021820785000, + 17720338926827434000, + 15246376710275510000, + 14486198691738647000, + 6686948266504217000, + 6352737625660163000, + 13282498951155860000, + 13752765699843940000, + 17227038279787450000, + 13092991385297484000, + 8103843669810359000, + 4806126362870305000, + 10860269036123728000, + 9503371928990495000, + 4717636304255025000, + 16772210736731515000, + 15999722538026440000, + 7600974513913521000, + 12853760394355761000, + 14957162267466285000, + 12532457913096251000, + 4270223672242979000, + 12922042573431003000, + 14351725003128748000, + 12760724912917234000, + 6563576309471116000, + 14711759844546712000, + 9332928226864187000, + 4154900035702003700, + 6310857157131506000, + 8673846940049461000, + 16191686131988388000, + 833986814753746400, + 13628661335374445000, + 5907626367101315000, + 3167045257996253700, + 11360803706267222000, + 5191792940232824000, + 106701329921902910, + 16271881569989081000, + 16187600285546168000, + 1523338629506680600, + 18249971532741065000, + 239689870902361060, + 16986930355419187000, + 6104412004690477000, + 12042889693542890000, + 9767068114675718000, + 3103401558348572000, + 15531046012340953000, + 2545811677989609000, + 10718390727101342000, + 17206132509607082000, + 6267320489677439000, + 2038910472569248300, + 6936735118048830000, + 1876698788510645500, + 2141918844291257900, + 17172933315420850000, + 7956976032737099000, + 8867449657489996000, + 13730537887286456000, + 8607166805289796000, + 6023755720199826000, + 9477176901525305000, + 3512030207711942000, + 10370217920981130000, + 1447957293973778700, + 16610981751206332000, + 17386004268040932, + 17289911618658513000, + 15725026226518036000, + 7782623539943811000, + 11581687625840046000, + 7831260487833403000, + 9564077759500847000, + 14688875467381733000, + 11823915802750585000, + 1500230306136400100, + 6410440321508815000, + 6538513946240116000, + 16152666508078897000, + 18108792854165342000, + 4279199156226763300, + 15063825224684927000, + 13514971592874256000, + 3085639041454933000, + 9197124419869499000, + 18080461024379900000, + 1021564068374501400, + 10103311156419942000, + 17547327038718147000, + 296338157762708740, + 14918658543451791000, + 6563708480916190000, + 329126688337733760, + 6118318612081098000, + 16614281249985073000, + 451992056730887040, + 10529643024196745000, + 7628080356105638000, + 11502293550438750000, + 8629981145221654000, + 4975533237749693000, + 15420891037090793000, + 3689278167623803400, + 6717020190036156000, + 8341471415507913000, + 814007457984869500, + 1446472269837298400, + 11836292884536125000, + 6576617222882198000, + 13566391937602523000, + 15924139840784943000, + 17761903098896202000, + 1706955071451595800, + 3620035303735610400, + 16851158787081466000, + 15169196363194343000, + 13362689642499258000, + 5965438171560493000, + 3837025908927799000, + 4506030556180685000, + 2141575116217029400, + 3641076935779868700, + 2286765946129297700, + 11059214072853821000, + 12979813275333880000, + 5672045156744147000, + 2347722346777652700, + 15533352707193876000, + 301804041927252350, + 12025296420158839000, + 14791023486512022000 + ], + { + "siblings": [ + { + "elements": [ + 18396098366800458000, + 2113958264315210800, + 9843689467988074000, + 10073674055825424000 + ] + }, + { + "elements": [ + 17076940524740823000, + 2652725216137325600, + 3271669217796819000, + 5512220722771511000 + ] + } + ] + } + ], + [ + [ + 8076458966407904000, + 3709375387664261600, + 16255400817507010000, + 14596593335137487000, + 10407510620395893000, + 9714862047041590000, + 8731737328401440000, + 3973468372551055400, + 7572940569774813000, + 15093055183352371000, + 15928018687609530000, + 2377523510596509000, + 10401142293466309000, + 15762304254917222000, + 13936369341175593000, + 4643857692767090000, + 15520915517568823000, + 10502997578149329000, + 5249823614987829000, + 4962284590623273000 + ], + { + "siblings": [ + { + "elements": [ + 1854907626129175300, + 10219172050840877000, + 4032405339457676000, + 13401291672910180000 + ] + }, + { + "elements": [ + 1050107632888050400, + 15214852443391120000, + 8162523883944475000, + 13443632640912220000 + ] + } + ] + } + ], + [ + [ + 17587536019939570000, + 13108645035271494000, + 1596385453237087200, + 15613446219469515000, + 13239149846950488000, + 14918845169468051000, + 6376566457056027000, + 0, + 8111695863571094000, + 9918242949605276000, + 7909735325974754000, + 17963938492511367000, + 6907365571189903000, + 12370164045092900000, + 13276778533178042000, + 0 + ], + { + "siblings": [ + { + "elements": [ + 7300003126409828000, + 12762584232102085000, + 2586683532472316000, + 1263556619748766200 + ] + }, + { + "elements": [ + 7690611911250691000, + 5582268686722305000, + 8935265769364597000, + 7923963511657492000 + ] + } + ] + } + ] + ] + }, + "steps": [] + }, + { + "initial_trees_proof": { + "evals_proofs": [ + [ + [ + 15758775234507622000, + 386873473794195, + 5809584622623378000, + 14306751210974714000, + 11302554983959589000, + 1327832789599027500, + 236502180870392260, + 13264905772134066000, + 5857506752267948000, + 17058040426918111000, + 1342694698541376000, + 11247410261659140000, + 14350114415645219000, + 4583230930005436000, + 14076503119706403000, + 15880020041488722000, + 10627821187628143000, + 1044749384776247700, + 13803094214927487000, + 12544379753173393000, + 13057050371697996000, + 15330579406842573000, + 9707896952003540000, + 5786715142615771000, + 8959768511509210000, + 7466737346920903000, + 10422822089882229000, + 3504773151285323000, + 3419470529597640700, + 15847878555525590000, + 11410879681056200000, + 3245040583009025500, + 11698930509459870000, + 13570140684066884000, + 4107171135279491600, + 6816442511716334000, + 13187679564150780000, + 4957755858430972000, + 10756562738671628000, + 4016481060180503000, + 9005810410597864000, + 5421891320356038000, + 1065438370161549300, + 14370621258975164000, + 3366746491579372000, + 13006491237563857000, + 12466845178667282000, + 8450232994099054000, + 3884423878484462600, + 16694495941341338000, + 12276393389691730000, + 16037686545199925000, + 10895977186829849000, + 17156636392074349000, + 16170249794752475000, + 8130522156784339000, + 3758135148585897500, + 1504470367743606800, + 12820235152408801000, + 4728472998567874000, + 2824641811007953400, + 15118259416555889000, + 12215493150006810000, + 8316066871495739000, + 12009914754943291000, + 14195274612200124000, + 17522726866577553000, + 7499475354690611000, + 3544346123845523500, + 11718047683762303000, + 13490728387453084000, + 2218114863523928600, + 6026027352978102000, + 3747782856048584000, + 17203016452260553000, + 13031495329552308000, + 6244324079390072000, + 12856980774624272000, + 8466864435764049000, + 15680223617309057000, + 7581596273487594000, + 4663524874409994000, + 13442298349819085000, + 14052760883976538000 + ], + { + "siblings": [ + { + "elements": [ + 17239242580999487000, + 11539643569776884000, + 6361888208514807000, + 10670222042682018000 + ] + }, + { + "elements": [ + 7372999055943323000, + 3141364051179518000, + 11032666934607065000, + 18114007743554458000 + ] + } + ] + } + ], + [ + [ + 9107796823381700000, + 16818241499348718000, + 16299777022319026000, + 8287169742405573000, + 6365600784625252000, + 7761045025920314000, + 13002214094454116000, + 15945120953402675000, + 18312208426043568000, + 8543832862024905000, + 16480446712339558000, + 6205571589310455000, + 17774875044909613000, + 8491177127306392000, + 911272131595502100, + 11563741978778083000, + 2601207666791843000, + 2309683180155736000, + 15888337585164718000, + 3688896392389118500, + 6243543024310987000, + 14960359946020346000, + 13274746775140712000, + 16032050801199454000, + 15978012582462950000, + 13427240766356244000, + 2532040230841748500, + 9094977243890656000, + 6049702284594704000, + 16597203725198604000, + 3724367398944002000, + 4230433202510454300, + 12986387636378978000, + 7492173129723806000, + 17363553745623870000, + 7633931955069653000, + 14629659330428381000, + 11369810317591724000, + 12511090612198220000, + 10802772579273607000, + 12049678780889092000, + 6919860896844969000, + 7516508836970720000, + 8939037552220092000, + 6570634633792390000, + 635488251650684700, + 16084600517045107000, + 2045618282973581, + 14740529096129510000, + 15889777309175177000, + 11487312374730482000, + 2088710389073378300, + 5890783780438629000, + 16088582991813454000, + 541688420468169900, + 5966077847622246000, + 16207585405939567000, + 5909345481015000000, + 17898224395954538000, + 8966836787779963000, + 14727147708676428000, + 17735895624353850000, + 9730398427785822000, + 5554128360388949000, + 17679442727018113000, + 5665447135485042000, + 13425668593277774000, + 16995964789782413000, + 13055712719189820000, + 14561060380065274000, + 6327719410516302000, + 5048031989018203000, + 2012244523027674400, + 2397156661466910700, + 16583452698891960000, + 5158436032736982000, + 3853742341823591000, + 13425895073126883000, + 11873965524552727000, + 11104560416441557000, + 8214643831157622000, + 14617268023327631000, + 11078188504924300000, + 5894157373012835000, + 2693934722412955600, + 8342693345719818000, + 17148675125408471000, + 16581942131668810000, + 16586038069016170000, + 12984487938883740000, + 10703641304737400000, + 16604773104762155000, + 3007538147667339300, + 12397576047371983000, + 5339697511538942000, + 5728488543364679000, + 1696219530118218500, + 9292952432547731000, + 10677825366165215000, + 1421970439889885400, + 15244675216377936000, + 10449242845213598000, + 16107522569146330000, + 10666241145965853000, + 2139173981804485400, + 2367485615014734300, + 983457486192868500, + 6068037307787761000, + 8087699736000154000, + 6227466075008611000, + 5940708810738756000, + 7956406536783131000, + 12368083184330885000, + 1025810479761647100, + 3378941875718593000, + 9770967053581994000, + 11203416082504145000, + 18008378765925067000, + 1624684959930209800, + 2873013998099962000, + 28093859562777096, + 15208550762997682000, + 17103432373411432000, + 13190221139449651000, + 12522379569913514000, + 3408997982448356400, + 2766757188617063000, + 10223830943430052000, + 15584218638946466000, + 4969511842630875000, + 11929289016595732000, + 14062808527016219000, + 16499719974661364000, + 11512455565557973000, + 2451280316216884700 + ], + { + "siblings": [ + { + "elements": [ + 5071348674809590000, + 7874204515774661000, + 4372959500483615000, + 11182648899365442000 + ] + }, + { + "elements": [ + 8188670334423518000, + 1566191709544018200, + 16402048886999146000, + 191343565835256600 + ] + } + ] + } + ], + [ + [ + 511313225841607230, + 13553218387419270000, + 2074301021681890800, + 10284559489508768000, + 707403733300044400, + 727033242491643300, + 6162410163511088000, + 10561619637211234000, + 1273346789923957800, + 13995947052877638000, + 14649512576807420000, + 6826041947767307000, + 278929962684972320, + 5081911745633943000, + 7894616217316455000, + 3096216634742532600, + 11064459685368359000, + 7285242960496910000, + 4839897994429646000, + 3659345380633862000 + ], + { + "siblings": [ + { + "elements": [ + 10303543188295676000, + 7238900669690116000, + 15195809770368702000, + 2325223950183781400 + ] + }, + { + "elements": [ + 11532031438242007000, + 6770962685750792000, + 17457149116491366000, + 11805423938257566000 + ] + } + ] + } + ], + [ + [ + 3759006305665829400, + 12118449568785396000, + 4251974036559352300, + 17569946235765133000, + 3195764941831388000, + 875808966274015600, + 13690694989132399000, + 0, + 16855510739307753000, + 7148798266176630000, + 11868530556425060000, + 16450829973989505000, + 16242278395865764000, + 237316549549253250, + 14974905742437288000, + 0 + ], + { + "siblings": [ + { + "elements": [ + 204944248986623500, + 16616567898912072000, + 15974934357824039000, + 3836375669830727000 + ] + }, + { + "elements": [ + 17538758302094543000, + 7192178956846173000, + 718103195548148000, + 14388698506789708000 + ] + } + ] + } + ] + ] + }, + "steps": [] + }, + { + "initial_trees_proof": { + "evals_proofs": [ + [ + [ + 5781702706696590000, + 13662327354992443000, + 11623780154007816000, + 17525937845302915000, + 14632754469829851000, + 14641957205239722000, + 3297827777246700000, + 5855599112181539000, + 11509392695817028000, + 8996949770169885000, + 10774090543656878000, + 3499628479670952400, + 7627006512654314000, + 539092893415736300, + 6256210000918351000, + 5472842802798002000, + 14700778086780838000, + 13087758673439394000, + 1708208512772010000, + 3003264685825566700, + 10329840800882215000, + 7138095256847153000, + 12320893618285115000, + 3894156426343985000, + 9523733624994930000, + 1541471203865384400, + 12334834230980936000, + 15817080528129020000, + 16614671390066004000, + 11723546597870924000, + 8912757174819037000, + 13411053182561686000, + 11940604134627217000, + 16950675630847758000, + 1306856219590989800, + 10370290202157120000, + 3150243369686803500, + 5054772536895410000, + 1815291437487276000, + 14409025738972078000, + 569262158035250100, + 16998007480498674000, + 5083141025107950000, + 8425669119615294000, + 1739380305956324900, + 8018079132253804000, + 11323771401145592000, + 12400056117937437000, + 7287954913439733000, + 11453932141971802000, + 16321119902882090000, + 17936555202059766000, + 10866369363773071000, + 15242409446563879000, + 6124483383322197000, + 10968382131857424000, + 6456728266921537000, + 17131591550754312000, + 2829580033172488700, + 11581711535064148000, + 7339550570358137000, + 15158782635994417000, + 5419842102578725000, + 8446083081242527000, + 5620333138957443000, + 811060067622728700, + 8086319354237098000, + 6073745776678154000, + 9849951894760546000, + 10447095073640151000, + 9278008499129660000, + 10135794966727588000, + 1008602330574766100, + 14350081475584264000, + 11278314626909270000, + 4788287555102580000, + 5130722616702766000, + 4026363488073443000, + 14954435304116929000, + 5272837384722905000, + 17792142477660725000, + 15487834554947006000, + 5815441041119004000, + 1355354540002215700 + ], + { + "siblings": [ + { + "elements": [ + 1208046589097712000, + 12911529971041110000, + 6586331158960140000, + 4153938827141931000 + ] + }, + { + "elements": [ + 8911856714153345000, + 5169399561089888000, + 17434826530307453000, + 13454008730270505000 + ] + } + ] + } + ], + [ + [ + 17908633197964130000, + 10833446896781337000, + 14107534400347600000, + 15692398815798616000, + 9563474114303195000, + 10787522745284700000, + 4685940122694630000, + 5941688021832616000, + 13323826559103078000, + 653903055481641300, + 4671521721931080000, + 2089353244091402500, + 6767861455573018000, + 391891071978608500, + 12852335379028285000, + 9275743907655310000, + 5682298375533727000, + 6136353233629912000, + 7397719757726800000, + 8161903895778082000, + 13444160097572956000, + 8606924951351795000, + 1101907317614227300, + 7907038423828165000, + 6158144285585198000, + 15638761923070804000, + 17846768672243274000, + 12735999048438393000, + 2324557266745761300, + 15333253382862180000, + 17843158497197707000, + 897790829008397400, + 13550357540026116000, + 5575744281610489000, + 2082205068150235100, + 4638703595323407000, + 7482951778139814000, + 3813223492577502700, + 15430958670268918000, + 6538949469174036000, + 2657516822852813000, + 10583813664342145000, + 15616491717204724000, + 11752398798662490000, + 9910314732699759000, + 17440748764177211000, + 5722116749694906000, + 1403741777746844200, + 82420847499363860, + 14290511475036223000, + 1658521147764055800, + 4246845882682767400, + 2916163721454673400, + 8421341992182378000, + 5105505002053490000, + 8993027388864222000, + 14362770987071943000, + 4827091866966660000, + 6585435436944571000, + 6275419855073631000, + 12215228394650898000, + 1779988601883196400, + 3825552363587800600, + 16552994669119934000, + 4599489333889283000, + 5128088188326991000, + 8618128689075666000, + 16556134220909780000, + 5620329458704487000, + 3960446053839808000, + 16069155278139670000, + 16714216492424094000, + 732416585704627000, + 14508478901565532000, + 9093426744244901000, + 11432321181665890000, + 7080333714488745000, + 5066985333546641000, + 9427046695479091000, + 12472011488731710000, + 3047094822936622600, + 7073937675020894000, + 6238455354076101000, + 10005567158498450000, + 540176106605693250, + 16213548710223188000, + 15740770472580084000, + 4703215287778322000, + 10357742031525474000, + 2041478110876924200, + 11082029215005210000, + 15359871011883727000, + 1774441812382526000, + 1127489815182550800, + 128425607136967440, + 17367325130207349000, + 3668216316104813600, + 2413645629182368300, + 12742190108062472000, + 9986273452364415000, + 7376790661497671000, + 14454394410154762000, + 15208745647574340000, + 2043557946683660000, + 3898106142916037000, + 11080076151773377000, + 8645837025375565000, + 8342746215021564000, + 3970592042910740500, + 13674221428150907000, + 2842161247425179600, + 5306466346123562000, + 4408652296379400700, + 273571706970421120, + 6861215705810409000, + 5711371861659858000, + 9379689550760847000, + 15135507404975090000, + 4192537940654820000, + 13476534782363101000, + 7925172837822808000, + 12384283596843708000, + 12390717211486235000, + 2072402351487760400, + 1097051212411229400, + 1342969705799722800, + 7259861087798084000, + 10276327813782090000, + 2195431965080000000, + 17506947065840940000, + 6081974088142780000, + 16018896899884886000, + 5827514573584763000, + 16136912983924185000, + 13743862770591867000 + ], + { + "siblings": [ + { + "elements": [ + 696302808799544200, + 8975776068685265000, + 17072221958373726000, + 4853340007775565000 + ] + }, + { + "elements": [ + 8073646859878915000, + 15381733691326398000, + 16773339023789599000, + 9293386129925167000 + ] + } + ] + } + ], + [ + [ + 7552114637031184000, + 17691730006466294000, + 17218110925453300000, + 11734841348465256000, + 13634224110977255000, + 8984620044662596000, + 3561156344009610000, + 7220482901916285000, + 10921937768783434000, + 6626889646456815000, + 645872582180999600, + 4478358452182964700, + 8765115285821677000, + 5922309204212476000, + 2531224511862968300, + 13602503708236790000, + 17167498373962690000, + 4585036715737150000, + 1931958253968373500, + 14965896576729754000 + ], + { + "siblings": [ + { + "elements": [ + 5544199117894751000, + 17722124752269500000, + 18397162229056938000, + 11372175525548255000 + ] + }, + { + "elements": [ + 10676217494185046000, + 3024735325002737700, + 12858103930586368000, + 8960357054274253000 + ] + } + ] + } + ], + [ + [ + 9216878475240301000, + 7184484312779312000, + 16657360805505698000, + 2393555654445638700, + 771882092513986200, + 9163622933321947000, + 3491391438892708000, + 0, + 5224762691547790000, + 12354724724219339000, + 6948313749710133000, + 15672829342195740000, + 217583278097575140, + 17099834278378027000, + 17896352374457199000, + 0 + ], + { + "siblings": [ + { + "elements": [ + 17336961640250868000, + 2572736384480461000, + 15555163478090090000, + 2420068878013336000 + ] + }, + { + "elements": [ + 16756977027083407000, + 8595502919250088000, + 7838161333135153000, + 557417010548665500 + ] + } + ] + } + ] + ] + }, + "steps": [] + }, + { + "initial_trees_proof": { + "evals_proofs": [ + [ + [ + 2225063200035492900, + 17199937087928490000, + 2764166876398039000, + 912084278016676600, + 14488107549479795000, + 10488015958903171000, + 17103248483520370000, + 8004727869119046000, + 2718897247477930500, + 18363818729623560000, + 1332652437567504100, + 5348735465204122000, + 16184300180816920000, + 3810443925313328000, + 8411778590854376000, + 15100895520587231000, + 9396138788459803000, + 15878454156105957000, + 2928711574972902400, + 18348483738431451000, + 12582778330738012000, + 10712269982324324000, + 4693365209549583000, + 11349167237862054000, + 13930730470294348000, + 5398994796771448000, + 16255985785653460000, + 3509547581450477600, + 5299750775671765000, + 13372170319207864000, + 15758164542114632000, + 14708447409545850000, + 7086431005284347000, + 9246255636704774000, + 1080979247918843100, + 7914081460075904000, + 6622811687470418000, + 8826668222418089000, + 12887004535100641000, + 1563194145223310000, + 277473781100598340, + 15968210337888670000, + 6508084368382162000, + 8540096590006757000, + 2131761923611583500, + 7338845027190453000, + 1518341691418788900, + 10439251486621970000, + 8612271363572334000, + 3926323993350498000, + 11529819421838856000, + 13964373114345982000, + 17710186192837260000, + 817688563693129200, + 12980327713214822000, + 10725873418402867000, + 2411969001642356700, + 7915370069257216000, + 9216106187555873000, + 1167356682523133700, + 17306679216533890000, + 4657144789553648000, + 10224817093564756000, + 17365040256441883000, + 11269154576225930000, + 3077733653070079500, + 15616229327580662000, + 3820058839998287000, + 14313331756676065000, + 10940873255427380000, + 10782666470734383000, + 3929472336838705700, + 25346459860257670, + 873131434769374100, + 8400266844592829000, + 8376861278880215000, + 5516617916234913000, + 6700922994543470000, + 4635623642001375000, + 6850459421881748000, + 2751177395596356000, + 14380433484105660000, + 4693772353546818000, + 1537360321780272600 + ], + { + "siblings": [ + { + "elements": [ + 18079572427412040000, + 6799194968654658000, + 6419205294001144000, + 17456323389789075000 + ] + }, + { + "elements": [ + 1387097763072726000, + 2384297850115292700, + 17237482130465184000, + 5331312880628565000 + ] + } + ] + } + ], + [ + [ + 15498744268392655000, + 4618549283888939000, + 8297731553237528000, + 15205315379924298000, + 1284588282996838100, + 13503305564851083000, + 1756451610424758800, + 14324815376801542000, + 12005355228930769000, + 11767360979295689000, + 16436736775675875000, + 1781021816688816600, + 16030872301594022000, + 5585635670722435000, + 3445072572222869000, + 17780290703950109000, + 6067057220272442000, + 13440390329713592000, + 628607472455700500, + 1957151697833328600, + 17656591257383205000, + 12414987654593038000, + 688031211288718700, + 11255024193556705000, + 2388639732380556300, + 11964249893518014000, + 7531218080052525000, + 17689317185648206000, + 1922352094482042400, + 2932744476090432500, + 11794063536328684000, + 16538578770434382000, + 15818746982757845000, + 8973492448815284000, + 7339660168301974000, + 8115897167214432000, + 17445754857097126000, + 3331181700641916000, + 8156870342347308000, + 3446971213507694600, + 13270479426593798000, + 5936532846477458000, + 6266981652276575000, + 307035934621333000, + 10492382581311556000, + 24429077260867628, + 6922185451409233000, + 16774634246606176000, + 11351877184582873000, + 4303392808965298700, + 16692235714789503000, + 11841049791232459000, + 3724987609315396600, + 5940938075282194000, + 16126498245161425000, + 2574027518257602600, + 16409354029955963000, + 509315309716065500, + 15529261695243276000, + 5909871384729718000, + 17029845630330358000, + 14958733337091312000, + 13087574838527007000, + 788320694122895500, + 3768187810798600000, + 5260602187200762000, + 12283675483243810000, + 3231866264216402400, + 4733782775720275000, + 9343789513059807000, + 16130496323040664000, + 726232938788586800, + 13179977253322244000, + 15613356340553296000, + 1991455047302160600, + 15702064685773486000, + 504029860222428600, + 16088630597025233000, + 10869627958123205000, + 2709703908031512000, + 14857753517378978000, + 11292560827460377000, + 7947888621548490000, + 3177840791595464000, + 16208117650781012000, + 9125590073955407000, + 8305831861223828000, + 9452473445968185000, + 11540973639340550000, + 14903018656270268000, + 7650211223669793000, + 1626948979268184600, + 8059974932606568000, + 17955630727493523000, + 7322442887642693000, + 10741897860498815000, + 2839443892779651600, + 9812497460207014000, + 15739847368309998000, + 5001561091037535000, + 10745841805336902000, + 16726411522600268000, + 6632943170328963000, + 13392675076665018000, + 1523388661647622100, + 1682954782673007000, + 18292578703353414000, + 2268895233030745300, + 15099845551991306000, + 5509455678820369000, + 11332990798035300000, + 4215123624166785500, + 3455167460045405000, + 1362695702030622000, + 12315234364954241000, + 13638410126805880000, + 9189322749393132000, + 18069331999920798000, + 11434131693828934000, + 391783175104577860, + 17867193645131938000, + 679063783841983100, + 1254842114521869300, + 630482903642361000, + 11292880481288681000, + 17379252422399332000, + 7527608303548972000, + 944870275766071700, + 3961338830037655000, + 17767222889119087000, + 12457412330901090000, + 15298972477657274000, + 17940387837273530000, + 13386382168378382000, + 7320238554219987000 + ], + { + "siblings": [ + { + "elements": [ + 12067539292691055000, + 18050201281785192000, + 13047554728125580000, + 1603052194564515300 + ] + }, + { + "elements": [ + 17076940524740823000, + 2652725216137325600, + 3271669217796819000, + 5512220722771511000 + ] + } + ] + } + ], + [ + [ + 2648755840907991000, + 87289858999256600, + 10579936436610783000, + 2661819859200637400, + 1302890007699704600, + 7400557606003113000, + 9610574298653979000, + 12805159128123496000, + 10130788247545209000, + 10876836077189820000, + 3764533833675567000, + 14151956681448184000, + 6744458550040143000, + 736900652038920300, + 11424584975578327000, + 4365178170415879000, + 14449630669237508000, + 8313622125268340000, + 293882211222038600, + 904654952757818800 + ], + { + "siblings": [ + { + "elements": [ + 16683725827783289000, + 2997993416037828000, + 17389426318313069000, + 477570068816867260 + ] + }, + { + "elements": [ + 1050107632888050400, + 15214852443391120000, + 8162523883944475000, + 13443632640912220000 + ] + } + ] + } + ], + [ + [ + 15710872159159966000, + 16249251290079476000, + 17940227031491287000, + 3938026330032200000, + 4239888413596097000, + 7755419530563836000, + 13455976947225836000, + 18446744069414584000, + 8681323992367262000, + 15032233520286441000, + 14597800183911029000, + 11039262789514983000, + 16879203502612777000, + 17412899553032817000, + 7652503760120486000, + 18446744069414584000 + ], + { + "siblings": [ + { + "elements": [ + 2719007555501258000, + 12079216287545920000, + 2129551029399066600, + 15767987522431945000 + ] + }, + { + "elements": [ + 7690611911250691000, + 5582268686722305000, + 8935265769364597000, + 7923963511657492000 + ] + } + ] + } + ] + ] + }, + "steps": [] + }, + { + "initial_trees_proof": { + "evals_proofs": [ + [ + [ + 12859477545421292000, + 18446228248137783000, + 4361795131497918500, + 14311372612561140000, + 5379242149277978000, + 8627642225018950000, + 115730254930675420, + 942297902353529600, + 11389209183993737000, + 17550407117288337000, + 11598592940402831000, + 10211085719950330000, + 16955323756515408000, + 6164034066388039000, + 12084849160591018000, + 9330119569990365000, + 15300291814466484000, + 17601380643429102000, + 9517753525944914000, + 7001529188715059000, + 16972712563141390000, + 3160587271072116000, + 4317847705941558000, + 4300240078025939000, + 2625214765659220500, + 6958225314757407000, + 82174954683442820, + 13146492537526505000, + 6760197543089082000, + 12395597912335167000, + 12834625500800348000, + 2349479832784720000, + 2744530828115506700, + 7232403551014819000, + 9873231499280697000, + 14844137344663935000, + 4130885524324453400, + 6614756667455677000, + 1562700575212961500, + 1664222429132128800, + 12354578627381030000, + 17830858864538840000, + 7355034995159817000, + 11301333352691245000, + 978820723201213700, + 15445892715918510000, + 5904948948963624000, + 17787597772238735000, + 7412059590461974000, + 7632831397026551000, + 10682981151259234000, + 3809730450439746000, + 13693793783539737000, + 8811323332065702000, + 8863487687148049000, + 16024497145611305000, + 6700942582117659000, + 16018616740637405000, + 12138024807450333000, + 13356261883336608000, + 3402311134981020000, + 17684153610417017000, + 15988677082620064000, + 7943589248645343000, + 15488156408183691000, + 13694714888300239000, + 1139266919024165000, + 17071162292203630000, + 16874236178655429000, + 8912515112082110000, + 5261750303661676000, + 17642085411126002000, + 5991088517256648000, + 725663588230098400, + 15889535612108132000, + 4922688737645091000, + 14589899859249652000, + 16231102096230461000, + 3579784397897064000, + 3586753374366880000, + 17757803033897646000, + 5909063142794440000, + 3808897751270404600, + 1876435259226599000 + ], + { + "siblings": [ + { + "elements": [ + 9813827625414474000, + 16196700304751014000, + 13797676968924664000, + 17882575465916707000 + ] + }, + { + "elements": [ + 7372999055943323000, + 3141364051179518000, + 11032666934607065000, + 18114007743554458000 + ] + } + ] + } + ], + [ + [ + 5838705715348335000, + 18143948763217280000, + 1404446395862158600, + 6611724637198589000, + 4230933657379128300, + 3263990577136938000, + 14883494569753235000, + 1888030841855966500, + 6782857795502386000, + 3120577039241623000, + 11735527459557345000, + 3241263400945019400, + 4014200764698283500, + 17071440191429378000, + 11478359870191174000, + 7718100131633118000, + 5902684862000234000, + 11341691680604121000, + 6338479527974377000, + 14923823716799100000, + 11541810684008667000, + 9800633118243215000, + 16709923468425587000, + 14093174394522650000, + 1916681612243633200, + 15913133041732692000, + 3517895618818467300, + 3231581505988694000, + 11192209431754578000, + 4079542765338145300, + 8522131032450131000, + 11816896042385920000, + 7846667942825847000, + 2554760994053882400, + 6343298053444158000, + 6939909125272476000, + 17963726718084194000, + 4267972366367176700, + 7270999755530418000, + 10512345714703512000, + 12339004946437853000, + 2016691370155526400, + 16696469578458245000, + 7958579852176688000, + 14421746655535790000, + 11539547592783065000, + 17123445024170787000, + 17897648915509772000, + 8079842912357115000, + 17672450112784794000, + 8188513980564825000, + 15305561826766143000, + 8299404314394622000, + 12466770904389282000, + 14799486369392396000, + 10264548399505687000, + 12934429895225262000, + 5963509776974466000, + 11178031649436117000, + 7102243338816248000, + 17910575324156908000, + 16323641986857470000, + 5463740064682953000, + 5263044083147253000, + 15512218115155718000, + 14455369695294788000, + 10610636163527950000, + 10702993814571061000, + 3479271742500564500, + 14284477271840694000, + 34818355646755640, + 16812745590840728000, + 14845714662329496000, + 17164309963139390000, + 7568782516279905000, + 5457566446148474000, + 4835013339518636000, + 13651953372056648000, + 15500592488774334000, + 11063485408808804000, + 3841095563411120000, + 15930360923008362000, + 8273130214113797000, + 4287569877589282300, + 14832706588279163000, + 2658231441544361000, + 6651113337112066000, + 12559192887489580000, + 12425578599105130000, + 14651242902708850000, + 5218665004180617000, + 990651561940266200, + 7306677715291736000, + 17745457977634850000, + 6417440168626384000, + 5054311539504586000, + 4734732885655453000, + 3438287498132838000, + 8816468256566108000, + 3968033773752365000, + 13815811320568652000, + 8245536924084791000, + 15092998549047085000, + 16189487859071076000, + 9551494178075193000, + 15385722889733340000, + 1227932515172874500, + 2309362718352658400, + 3985257444626681300, + 13469470974490757000, + 11567538160954501000, + 6727928868390480000, + 6875217129796028000, + 6243759934193155000, + 7368917015501627000, + 14288451991461780000, + 2781223823794465300, + 9561008320134334000, + 12509900864238932000, + 5773869335943025000, + 2128509932748675000, + 9057711094494974000, + 2471683232578645000, + 9894768973699314000, + 12541321713871217000, + 9341548369600960000, + 14804374310746448000, + 16411619650351475000, + 12471166444542970000, + 9720533360520282000, + 7864497643214539000, + 5054365736214455000, + 13326144622013254000, + 13406463037983494000, + 5115679527231270000 + ], + { + "siblings": [ + { + "elements": [ + 5025729848197830000, + 14232209158752060000, + 9553916350274451000, + 3781117013069575000 + ] + }, + { + "elements": [ + 8188670334423518000, + 1566191709544018200, + 16402048886999146000, + 191343565835256600 + ] + } + ] + } + ], + [ + [ + 4550220056502284000, + 11609047217869621000, + 8425354999519554000, + 8297552355975591000, + 15720146422154004000, + 16306651075078793000, + 16153230862275120000, + 10652630296198877000, + 6919181022312869000, + 5330900077895365000, + 11267088444289083000, + 12745170331192113000, + 17563465442549656000, + 16959545086033488000, + 17340080638392990000, + 13887580455630725000, + 11637020016292660000, + 2341035695492146700, + 1500073678592512500, + 8935796769613357000 + ], + { + "siblings": [ + { + "elements": [ + 4106383119467667000, + 11474587324414306000, + 5276882064194905000, + 8043530703363253000 + ] + }, + { + "elements": [ + 11532031438242007000, + 6770962685750792000, + 17457149116491366000, + 11805423938257566000 + ] + } + ] + } + ], + [ + [ + 12039835282579430000, + 7030149156780904000, + 18256011712281010000, + 6630642390124033000, + 7642453323768319000, + 17007529787500335000, + 16957807395924183000, + 0, + 10456155418134626000, + 1600032088112268500, + 3348713460464980500, + 16427238409726577000, + 3893983669579671000, + 14338980818331140000, + 16243751874611122000, + 0 + ], + { + "siblings": [ + { + "elements": [ + 16208930212025553000, + 3256034151008034300, + 12184002992283273000, + 14083915224099066000 + ] + }, + { + "elements": [ + 17538758302094543000, + 7192178956846173000, + 718103195548148000, + 14388698506789708000 + ] + } + ] + } + ] + ] + }, + "steps": [] + }, + { + "initial_trees_proof": { + "evals_proofs": [ + [ + [ + 3105268577218920000, + 11989912106583026000, + 4277456366353513500, + 11137240172336087000, + 18349201232108610000, + 15273013952608518000, + 6704822519098360000, + 9050015166762926000, + 13226842686320520000, + 3347193472407645000, + 14960021788921893000, + 6062915076509555000, + 16799974262098921000, + 12277857055411792000, + 3201612051266976000, + 7382115164084805000, + 662146889887619100, + 13016842780887284000, + 3444811500233608000, + 15511441150823010000, + 9780556256131350000, + 12462620422518845000, + 6163736458104096000, + 12629343512035303000, + 410370606607622300, + 2132753877292690000, + 4842492237437400000, + 15053266348599923000, + 8239677878365373000, + 10993952151908377000, + 5375098356009186000, + 5720871005245331000, + 2190160153970881300, + 17635097469157341000, + 11337048257262422000, + 11433695949589795000, + 1252469900929234400, + 6591384140304876000, + 11305363300565637000, + 3548799676198028000, + 360948816514831000, + 17053653383707476000, + 9016758549240127000, + 16719006551341042000, + 18087881259038337000, + 12496684250686478000, + 11206483302239169000, + 2219634723706551600, + 5367363549117634000, + 10133029030119025000, + 11413555469778317000, + 16680679628030069000, + 11212520980057924000, + 16594017827355992000, + 10531739857082687000, + 2430412201132474400, + 7463275843194445000, + 15716357615649118000, + 14668021757551569000, + 6248568984062017000, + 7536808108301062000, + 11383013220707643000, + 3085811368877815300, + 5611202298845306000, + 18067080004557482000, + 10986776116052097000, + 11888724840386683000, + 6373548854931798000, + 10763783748826366000, + 405435378230429630, + 7715266384065310000, + 10539967146555410000, + 18403083751685888000, + 14219651521703164000, + 3823542448565172700, + 15974999712143819000, + 5852041549888252000, + 3399245960160961000, + 1076541560644855300, + 3099393187520493600, + 5549855333064892000, + 17361777203301722000, + 6477943894625697000, + 750182178165592700 + ], + { + "siblings": [ + { + "elements": [ + 5425364553312560000, + 11537798991506700000, + 5015953739612256000, + 15826017064500090000 + ] + }, + { + "elements": [ + 15569594249511600000, + 956031005415651600, + 9670184325097650000, + 16069782850068810000 + ] + } + ] + } + ], + [ + [ + 2879513735513739300, + 994299828695178900, + 1585596748559221500, + 11914602724680675000, + 9021278025785527000, + 7410893910308603000, + 1162674937338235400, + 9806566791899027000, + 6179312540437073000, + 17052364127914310000, + 2600797782262037000, + 12699951430794318000, + 18364288189397137000, + 8679173449979805000, + 18007592990941860000, + 1630046959291916500, + 13146164869786546000, + 13396841895919104000, + 7350897195506588000, + 7012535808535503000, + 1647112301598848300, + 12023387106022550000, + 5268264386417819000, + 16346542656817945000, + 16052711358023686000, + 6727811858529107000, + 959202030230398200, + 9049362546966541000, + 2818906616035375000, + 10820132144956869000, + 17698391442754503000, + 10063346216080890000, + 7312657311215605000, + 14279954095024329000, + 17696182942024520000, + 12789581048608625000, + 2138709419590328600, + 254607020653516830, + 13843668330241930000, + 10020789478007190000, + 10227456037466610000, + 12683590325774557000, + 15666844639358222000, + 9987210999644197000, + 13659071611329833000, + 17400583936978910000, + 1216001874336251000, + 17711483988586553000, + 8037575343705745000, + 6427722987726712000, + 11199443534343307000, + 312732354837839400, + 6086702847581088000, + 14569142013444479000, + 8050999374795451000, + 7566915625037227000, + 8872038515818734000, + 13580228044900284000, + 5472539574087152000, + 484950870457065800, + 474495556781650500, + 5464426088626861000, + 11972686526216720000, + 3468684572509355000, + 3531443834802056000, + 12349506523315161000, + 16722798171734344000, + 355848443278627140, + 12224240925364750000, + 2877370394540268500, + 13757638411801907000, + 6552973162515489000, + 12533781773319246000, + 14613490787411407000, + 354158013493782700, + 17374043390293774000, + 6227637067260890000, + 10730551529838875000, + 7169628633267808000, + 4934395505914104000, + 10183588409336620000, + 4490873153229285400, + 13526679567695663000, + 16034783432303800000, + 5192185576464422000, + 17716944007357315000, + 11511101890846546000, + 14691816385937084000, + 8787502127980247000, + 17200866571276857000, + 3051946484842842600, + 575705347987255360, + 3718290691592114000, + 12549343739482472000, + 5459724103184571000, + 5767482754383580000, + 7741030879833124000, + 4306035720845666000, + 15952069664790804000, + 9428711220279863000, + 11977922699258075000, + 2117204757329802200, + 14000478981346044000, + 9228846763942410000, + 4036348601813685000, + 6175981522702358000, + 16871299051483093000, + 7951575578267620000, + 17413923926864445000, + 6469196870848065000, + 15810042516547570000, + 12473458971267350000, + 13520294763877796000, + 18376502350209278000, + 4233596537843766000, + 16839698553369508000, + 2829026141384445400, + 17919829633686847000, + 17345004276170086000, + 9373271401533153000, + 3246952181856220000, + 4794403517175086000, + 16644235422258848000, + 4321035726982353400, + 12195583763873680000, + 15500742724744405000, + 11950289439756382000, + 4608974336740147700, + 8246122128075681000, + 4169289813104684000, + 8002160806287948000, + 15965987030143343000, + 3776828420883485700, + 6600555069004653000, + 16530349945933697000 + ], + { + "siblings": [ + { + "elements": [ + 8079842181268580000, + 770421317364768600, + 5646764993396890000, + 16821906008275522000 + ] + }, + { + "elements": [ + 11682903555287136000, + 1534945260140398300, + 3949878155172492300, + 16743724671186970000 + ] + } + ] + } + ], + [ + [ + 16734856307264580000, + 12602776616898940000, + 4785043022254026000, + 18301964830996752000, + 13044825427017466000, + 12473804679664316000, + 16356331972763378000, + 23303357084903600, + 13829091220879387000, + 10845510353204720000, + 1778016371949954300, + 5959648097637197000, + 10895907032185991000, + 5995691086656458000, + 855641103211268900, + 14691752365805950000, + 16339932568739437000, + 15442559002395537000, + 5840911125474829000, + 10665947509041983000 + ], + { + "siblings": [ + { + "elements": [ + 3384466642071981600, + 11804033330941207000, + 6092531759317658000, + 18099875693309288000 + ] + }, + { + "elements": [ + 12125729878269336000, + 8069209626351857000, + 5898711269996956000, + 6463287827490433000 + ] + } + ] + } + ], + [ + [ + 10122830566230987000, + 2940286148396776000, + 1748267493588415500, + 3262366229923217000, + 10923181712833145000, + 17254676285630884000, + 2548102912254388700, + 0, + 5645971716620431000, + 9936475028642177000, + 5013810362444832000, + 7707464206639987000, + 15093843597651460000, + 16913760719616227000, + 8345282562661548000, + 0 + ], + { + "siblings": [ + { + "elements": [ + 16755273929081618000, + 14156791361189521000, + 10824121146378693000, + 7485253170404660000 + ] + }, + { + "elements": [ + 4049176670251104000, + 656149466774118800, + 6386895970365949000, + 8637870925459206000 + ] + } + ] + } + ] + ] + }, + "steps": [] + }, + { + "initial_trees_proof": { + "evals_proofs": [ + [ + [ + 5756954102670259000, + 15207029631270582000, + 8620853111407511000, + 5954306324953404000, + 3417369321338958000, + 14769711171700068000, + 14155220019972620000, + 4729864867204657000, + 1367124655399095800, + 794474731491043200, + 13549883238830582000, + 7154687264531142000, + 16040343449311142000, + 7519191160292483000, + 11659862054312770000, + 16037152217192112000, + 8213236337446440000, + 5480175981048843000, + 16683571355106550000, + 13543272974080164000, + 2528876297544954000, + 1752146986090354000, + 2467158844090442000, + 2784818123089147400, + 2853191568035851300, + 1047265776414426200, + 2243538379070846700, + 8626960408963182000, + 14880827053630743000, + 5727935730654045000, + 286379880044177730, + 16085096037435208000, + 5361622991241818000, + 9949357586496799000, + 5068561417731074000, + 11280248597206907000, + 15876185589640483000, + 18320739356339610000, + 13211622228097217000, + 4056587993176082400, + 7748353316269364000, + 11057333087035816000, + 11151914337748767000, + 18433647034287596000, + 9478290392842410000, + 3792026085406530600, + 9520680214228437000, + 5447506798929019000, + 12539795626444460000, + 10409804839689728000, + 3637292357808533500, + 722279013634395400, + 2962977808548824000, + 17049950107688497000, + 7829006265190333000, + 197969211212515650, + 12113251601111822000, + 3605118529118307000, + 211835988529495260, + 14155474385885497000, + 11848440872102052000, + 4366619857614921000, + 10556118585124387000, + 8391424649412626000, + 3227178879736556500, + 6503646705941890000, + 17861115577426060000, + 3966059438988839400, + 823981093346712800, + 9310258241739710000, + 14305284080474845000, + 3988773194277945000, + 4576989698097073700, + 14922970355983294000, + 17596364039560640000, + 3184267435176651300, + 13539543829396333000, + 14743205971784320000, + 1932903128429215700, + 17285289794946638000, + 9174920969369735000, + 3484178894351823000, + 13674151874602640000, + 3637683578065872400 + ], + { + "siblings": [ + { + "elements": [ + 3661189000515272000, + 9265824685834336000, + 14091976876429780000, + 5616830878271017000 + ] + }, + { + "elements": [ + 15569594249511600000, + 956031005415651600, + 9670184325097650000, + 16069782850068810000 + ] + } + ] + } + ], + [ + [ + 6044686351164867000, + 3269875303912828400, + 10971909491908020000, + 4104331182652051000, + 9962263485473014000, + 16446743957790122000, + 13671241156637750000, + 2754794169995880400, + 13574084646871572000, + 9930761900331660000, + 5673655145443899000, + 7133749487506971000, + 5549898160368759000, + 1878522763132230000, + 4592886094208856600, + 9808770861216324000, + 4212654970129965600, + 12402164420860450000, + 13897817454304200000, + 4631402193680521000, + 2994601267696290300, + 13414062053884695000, + 10850763729672290000, + 3891395258958908000, + 8441149998779430000, + 8258491258459893000, + 4859278776046905000, + 412058613908462800, + 18130171600256752000, + 5303665115226405000, + 4355950416798241000, + 1316029558059520300, + 3222322686669618000, + 10036212599885450000, + 8279945723768004000, + 8582690850383915000, + 12450591930382442000, + 645572692730456400, + 3988227972301049300, + 14398220388808206000, + 3710123732527313400, + 155876302796781380, + 18253343877941807000, + 6379360448246669000, + 8927340654901310000, + 7996185221349065000, + 13315699789613093000, + 5724538733613132000, + 2643030962927255600, + 16310982945642490000, + 15495011173491112000, + 16105521784749690000, + 320429184444725760, + 14767546211211821000, + 5714143105605907000, + 6230909235238971000, + 1194643135911008500, + 7043216867116172000, + 6254336652246266000, + 1243685250140299800, + 7633260962337619000, + 17305236221036489000, + 6257757789704964000, + 884192997621325300, + 10691786353645707000, + 17409080077056240000, + 8785849538114284000, + 4393430396232410000, + 4106702102258839600, + 16107864816356920000, + 1473172468366521900, + 15142409189154666000, + 15488543135840518000, + 1979287315525637400, + 5510212368084663000, + 16319777499194202000, + 4139286759963975000, + 15476014614716250000, + 6720252016819367000, + 4228863568097424400, + 158841757433180670, + 7783622313704054000, + 11445967336651225000, + 15052503046643743000, + 12477614737600060000, + 15222113992316166000, + 8782406919376348000, + 8507158779246719000, + 9106617960222317000, + 5176821442451545000, + 12580750786657436000, + 2130203239654213000, + 4890664253862216000, + 781222784054373500, + 3571757147556619300, + 2800540674275409000, + 13578184034493880000, + 4786421528096834000, + 14031320871056955000, + 2527667043377933300, + 10346380301169246000, + 12883210929164804000, + 10735233441884715000, + 4667648532428278000, + 13235564044260900000, + 4050135268452373500, + 11416884365007462000, + 10221384420185463000, + 967241914944821100, + 5498601594439689000, + 2063778186047920600, + 14754804062416392000, + 16740258473594696000, + 7600763099536968000, + 10185515086535549000, + 9762320781983922000, + 9980971928101437000, + 15046200461621530000, + 2248513160822077700, + 17154755658612374000, + 2983397021772574000, + 12891185378642995000, + 2287214061388242700, + 4983992104852888000, + 17910730577560345000, + 11030007974780905000, + 277344711269542370, + 135187334361126880, + 16561082217658333000, + 14109250246937123000, + 9400618241395597000, + 10338786206419003000, + 9084257847870051000, + 6696963382909331000, + 9443939456169839000 + ], + { + "siblings": [ + { + "elements": [ + 5966489167569134000, + 17836425426273143000, + 1900610409065805300, + 13896019624090335000 + ] + }, + { + "elements": [ + 11682903555287136000, + 1534945260140398300, + 3949878155172492300, + 16743724671186970000 + ] + } + ] + } + ], + [ + [ + 15935967814082777000, + 10793450668145314000, + 16481103734709692000, + 16701983883118963000, + 2665130655150335500, + 6707709384644842000, + 17813783356624787000, + 7761343892943817000, + 16971557261538329000, + 5010112909616985000, + 15660326199261348000, + 11246414234584877000, + 5192117298707085000, + 7025703383278779000, + 11110632653228495000, + 4453409517163462000, + 16930159365184346000, + 15201244810231001000, + 9490946801196866000, + 7210083492277661000 + ], + { + "siblings": [ + { + "elements": [ + 10130226028125923000, + 5751718216431077000, + 6599369552992550000, + 4891312415901708000 + ] + }, + { + "elements": [ + 12125729878269336000, + 8069209626351857000, + 5898711269996956000, + 6463287827490433000 + ] + } + ] + } + ], + [ + [ + 13546547003660833000, + 2420330907520580000, + 15985665495045423000, + 431231977838635700, + 5178226134496181000, + 14240063554572237000, + 3981175117801221600, + 0, + 8915597169147408000, + 3983834709109018000, + 18056539709246183000, + 1077972097091395300, + 6597235717645798000, + 9719282031702532000, + 9499845251513297000, + 0 + ], + { + "siblings": [ + { + "elements": [ + 121101693790730100, + 15828020225574076000, + 2183900173300727600, + 9722581975100004000 + ] + }, + { + "elements": [ + 4049176670251104000, + 656149466774118800, + 6386895970365949000, + 8637870925459206000 + ] + } + ] + } + ] + ] + }, + "steps": [] + }, + { + "initial_trees_proof": { + "evals_proofs": [ + [ + [ + 15921612139218150000, + 6612836170521824000, + 10342650837803270000, + 13459145027299640000, + 4343149468427784700, + 6306766087617818000, + 16342620479075220000, + 17479160329873394000, + 18104236740370254000, + 5607328564894974000, + 10502145240772145000, + 4130963703961361400, + 13544028766188780000, + 15519457709599502000, + 17398324273599873000, + 14463615589572344000, + 9435912856374080000, + 8836441558487789000, + 17898282743241970000, + 9258704766747623000, + 7878433485797786000, + 18067436042201688000, + 9318002019468233000, + 6326797520350659000, + 8206128250534918000, + 11618630132567532000, + 15069036612750942000, + 8970477233728510000, + 13985355916501110000, + 4853915339790728000, + 6691787093014352000, + 10765509175333716000, + 2732054177417453000, + 14355223036935627000, + 18313469936770660000, + 4099088726421055000, + 11067935337126770000, + 8372590015997439000, + 12050200771401845000, + 9797443138979453000, + 10801284484373488000, + 14084336817368210000, + 8037351293758585000, + 4062288186072702500, + 16208629453251359000, + 3610819264137279000, + 2386159706707875000, + 13673066109658340000, + 12736074861155138000, + 18054084638167380000, + 10678794287086828000, + 12274029801127580000, + 13060818613518735000, + 16455397185020520000, + 17257570878613352000, + 10495273652227504000, + 18007317123104279000, + 14929588617642168000, + 4040499645501908500, + 899640177916318800, + 14847057935001730000, + 3918544086308486000, + 16699012407426003000, + 1767011055575303700, + 8676559830175969000, + 584875825237088800, + 9553927391942357000, + 18289152540364468000, + 6046097883437006000, + 2334307118741742600, + 9676789771270930000, + 9004364208376576000, + 17540179572388764000, + 15307939066305366000, + 9521457428541346000, + 18341159027680377000, + 54442831925297910, + 12668523912505920000, + 15836221924220273000, + 16148908317253874000, + 9703937035035951000, + 1223015419868895700, + 3378796322657213000, + 14351038870911476000 + ], + { + "siblings": [ + { + "elements": [ + 12062467960941943000, + 18264903870078145000, + 12685394059909224000, + 12648297952715682000 + ] + }, + { + "elements": [ + 3233867220909638000, + 8698185977443147000, + 3080105169737877500, + 11915468074270704000 + ] + } + ] + } + ], + [ + [ + 2967615910498330000, + 14962416615899273000, + 8807794038670287000, + 9623569060591649000, + 18038245963656344000, + 16481353700097518000, + 11124331298040525000, + 15449477679517753000, + 15945583122780590000, + 17030327598337765000, + 1063415941973180300, + 14844863786238116000, + 12380399243376374000, + 8257374879840373000, + 4940485608607924000, + 18155636694728878000, + 16636331294926901000, + 11929339345454862000, + 6444182085752166000, + 1722793165103925800, + 4615252000083976000, + 9212413629713288000, + 5034886424445141000, + 15822984885689793000, + 2044182979955421200, + 2512619378361676300, + 5393533881513586000, + 2273573180758901500, + 10191179425404226000, + 4145273689371467300, + 9176742374191186000, + 17697963070390964000, + 6552137024224664000, + 9982709524780570000, + 2021331190080570000, + 1323972539875004200, + 10279733447116227000, + 1858247991677251000, + 9881233872443440000, + 94925906502391180, + 6178969959159728000, + 13248180553814970000, + 4653267026891428000, + 7299677496526415000, + 11992221607912288000, + 11997096735353682000, + 10343474587618173000, + 10605753917960320000, + 7458148192222355000, + 1015607188987715600, + 721708081187490200, + 5066205596978238000, + 2227671361491362600, + 11763971624911660000, + 7107232182385039000, + 16945378167893694000, + 16263613027543286000, + 13437746198777092000, + 14821841621911990000, + 7891457083551947000, + 17504660798765595000, + 16414396299120069000, + 8250376344195932000, + 1842164792976560000, + 14608068793545447000, + 4472783445198393000, + 11698087120651570000, + 13698917684410388000, + 4960084830035750000, + 16988678424543164000, + 13515937257168488000, + 1706133209282827000, + 1224268099894987300, + 15844564428319212000, + 14431055149436360000, + 17565362376931050000, + 1056894401596939600, + 13920458275348187000, + 6532846284808379000, + 1381783288581590500, + 915056343065738400, + 12439585218773625000, + 10474920644762480000, + 5882523880518225000, + 10162288385261949000, + 6439186148706265000, + 8393865889866733000, + 8890560441099081000, + 5352339137984240000, + 7800043516224976000, + 16229374522951680000, + 12031994637929860000, + 7081963030279907000, + 14281193765041519000, + 16361075939300188000, + 18152394625478724000, + 17894832830074313000, + 14751904341056532000, + 13545912839524057000, + 5390284268909581000, + 15811477988253299000, + 11050320356621120000, + 3729330477874583000, + 10255227472270686000, + 6451711113620420000, + 9065422379054698000, + 9641676265069853000, + 14159840319273810000, + 17835349674628987000, + 6594057084311296000, + 12866771874574780000, + 9725396809544034000, + 14418161095311910000, + 11680630696087517000, + 10800450829546981000, + 17763090428605428000, + 16948245478404235000, + 6434714593414078000, + 8139686580514470000, + 14720299557194930000, + 6119863703224887000, + 16410571195279411000, + 10775141004543293000, + 3082326257204651000, + 18430655658144889000, + 4979420376993114000, + 1418714582152344000, + 4969036763919841000, + 2242996695186848800, + 1743823314459798000, + 8764527881901940000, + 9399302065503703000, + 9566087667987335000, + 16689255434229832000, + 6966972052298911000 + ], + { + "siblings": [ + { + "elements": [ + 134277436386058240, + 12306536098511490000, + 1116615702051722400, + 17027616253984526000 + ] + }, + { + "elements": [ + 13200981895350768000, + 17697478442223157000, + 16530829154112492000, + 11921271620543185000 + ] + } + ] + } + ], + [ + [ + 5619761721412949000, + 42391381101639790, + 5600523062539986000, + 879595347076137300, + 1151106056380575100, + 17877217662203728000, + 10994437718294292000, + 5657205347142930000, + 223166620887463500, + 1391306579423206000, + 10395193798044727000, + 15154204521008540000, + 14387936701259874000, + 18245239964649638000, + 4355942125819392500, + 13694039838194766000, + 5657630378913481000, + 1233986385494086100, + 7910913064099053000, + 2165003528366642200 + ], + { + "siblings": [ + { + "elements": [ + 11752784383965815000, + 2640624514425426000, + 12035003441644861000, + 14787952603413404000 + ] + }, + { + "elements": [ + 3310855993719331000, + 14119555355108164000, + 6752313018410627000, + 9861529090249406000 + ] + } + ] + } + ], + [ + [ + 10125264367362621000, + 11217178967604900000, + 13205536580224090000, + 11768927791778535000, + 978697563986914800, + 11929087789551730000, + 10445921174753229000, + 0, + 17129129459240114000, + 12586289612394541000, + 8572218547767988000, + 15732965254498101000, + 8782787651586309000, + 4189897933599412700, + 12369446468575306000, + 0 + ], + { + "siblings": [ + { + "elements": [ + 7116177330863281000, + 16225222115068248000, + 12928867693728027000, + 13410498819890858000 + ] + }, + { + "elements": [ + 4690155478681118000, + 12026226903269994000, + 10727942319511091000, + 3277417584672590000 + ] + } + ] + } + ] + ] + }, + "steps": [] + }, + { + "initial_trees_proof": { + "evals_proofs": [ + [ + [ + 9720118099857617000, + 6907118851416899000, + 3093070796856912400, + 2235836106412122600, + 9776807275298159000, + 4463155122670423600, + 18049106092813588000, + 12696594783596716000, + 8598999163594194000, + 12036132876534884000, + 7956960896994516000, + 248019902995950340, + 5027583077203715000, + 11153823857017262000, + 12283001839736928000, + 213933753310079170, + 5989180219774728000, + 6635268733439933000, + 16639455780993560000, + 18042165182356710000, + 7491622469494033000, + 12571655204247380000, + 1506582651816982500, + 10136387582059057000, + 1810081575953731300, + 5670847835698466000, + 1743109407316299500, + 6211156965959444000, + 16520876663818553000, + 2008530284052777500, + 16241527278739090000, + 8018667181643143000, + 8808137967728638000, + 7881009893512375000, + 17936777579534993000, + 12865838725775282000, + 8370556967346120000, + 14392083173264318000, + 11502310449879589000, + 11029208386439748000, + 9202987005551069000, + 4640056994109976000, + 2271518247258746000, + 10051596231907897000, + 15619149238860026000, + 17390169001056842000, + 12125811190947130000, + 5541310016585771000, + 17793373452488747000, + 8813942452273185000, + 5110527927842800000, + 4582875774521598500, + 17677138730719371000, + 3860380289387333600, + 3292748589864505000, + 9225269255265167000, + 15298732803668486000, + 8507551972866961000, + 10682902555234537000, + 13778598594164648000, + 4790019403597034000, + 6086602011629454000, + 8674778631853683000, + 7403108128968585000, + 8515032791194269000, + 4110126945968375000, + 1769440711627359700, + 10648078807328823000, + 5601302746078787000, + 17853464202680373000, + 5676012651936640000, + 17296680257303941000, + 1051466731935720200, + 14381077385498590000, + 14409254071908532000, + 5708397534533714000, + 15814429937280815000, + 10266941507679450000, + 2130761593164817400, + 11077261556718582000, + 13890119462896028000, + 12349168555694264000, + 13485222354589624000, + 1438319735464843800 + ], + { + "siblings": [ + { + "elements": [ + 16294515965246208000, + 9889431618541530000, + 16148585462734608000, + 16618130477107476000 + ] + }, + { + "elements": [ + 18161808293962363000, + 5378725722484264000, + 7687383671526978000, + 16433811244973156000 + ] + } + ] + } + ], + [ + [ + 10127538253577746000, + 16397315088477278000, + 6309691233247695000, + 14994689443059177000, + 9908580233446429000, + 14820583439815107000, + 2013776047181682000, + 10556405458698290000, + 349540921658812600, + 4046531601586046000, + 7392473078375384000, + 2738102617927160000, + 15758761106611479000, + 9631768972887341000, + 6627641690444151000, + 14261977120184254000, + 18432750944620532000, + 12026161687245064000, + 16492888808665793000, + 64754139690457650, + 11925969400265243000, + 2013102174373327600, + 8231111202881590000, + 17890379839750466000, + 4283813783499222000, + 10188586567028800000, + 16205462525355194000, + 13299984907816978000, + 7702432301118622000, + 14063206109623486000, + 9125888906911770000, + 3084579655237465600, + 14335322670401333000, + 11614609367231093000, + 8682745921446423000, + 18312285041100325000, + 5347978388057615000, + 3977883836956516400, + 1613390484436004000, + 906345753744153700, + 5577963748127182000, + 12559656627107867000, + 15834727259485100000, + 11026085081687860000, + 13472444868256279000, + 16579694626692240000, + 1814832231765216800, + 16632705938179946000, + 1014764289740809300, + 5740955794154277000, + 2250801289104410600, + 11337247976797040000, + 8365336557065962000, + 14517885144673820000, + 16704789587469122000, + 8546210666647749000, + 4020377797617365500, + 8788526785591370000, + 2294861260304407600, + 10121959471822856000, + 16728954164824867000, + 15194815613411510000, + 8853038540891466000, + 14773389822798322000, + 3172667126772016000, + 1574391030599208200, + 13270304333511225000, + 12014969046618534000, + 12451330374538527000, + 6745829068894032000, + 11186568794104715000, + 8407451209651598000, + 13274559182666000000, + 9769423889790953000, + 6560246587782350000, + 11773580114585004000, + 14252508272004469000, + 16739076507007922000, + 3961379347615173000, + 3033385630712496600, + 129756135403515440, + 14388734338967013000, + 7555258691413358000, + 2305170619242908700, + 6729964569580516000, + 1694258995398945800, + 12246070940881318000, + 11143867008569235000, + 3409397119369474000, + 71641285561582616, + 1751334234194252500, + 9198627177025084000, + 8920235130584867000, + 14635751444447898000, + 17253512982561245000, + 10050161007640800000, + 10145490461960317000, + 4099595899616605700, + 16701575648562237000, + 8737000326256420000, + 3706507516592525000, + 2550967859503237600, + 8700072057373625000, + 15461581927049441000, + 17898993334051908000, + 11826574620724912000, + 5440461777676574000, + 11670150875424817000, + 9516231190023508000, + 5393042647420633000, + 16730282431372683000, + 10720340822884915000, + 11119701144664863000, + 9508617964377833000, + 16189288344387088000, + 3553113657845160400, + 16292917521852123000, + 3793902409678494700, + 11576783529003276000, + 11601786582634025000, + 10369228218244037000, + 11530083420117252000, + 7362174864775889000, + 10331862143704867000, + 16582752247277545000, + 15823754044691106000, + 8886817042177458000, + 13562335147988058000, + 5676171941080199000, + 4299772443896419300, + 17468465542149992000, + 4231030359127826400, + 13249924793254429000, + 4994262518557558000, + 17266569783441210000 + ], + { + "siblings": [ + { + "elements": [ + 610519318861439200, + 4389495207074876400, + 12604476618802223000, + 7811750540001710000 + ] + }, + { + "elements": [ + 3258981662393907700, + 12670691893554676000, + 6862268672650199000, + 858724081883982300 + ] + } + ] + } + ], + [ + [ + 91998931265312380, + 10934260606338292000, + 137533445193528100, + 13295298016189057000, + 11834150649136472000, + 10426015963370918000, + 10977072981525004000, + 18186263761273663000, + 13467282282620850000, + 2277437158426323000, + 3700375550923220500, + 1848053227740824600, + 1965428041870756900, + 2980117529269823500, + 10499673558687990000, + 2227558489119245000, + 12815671728796744000, + 3535413947559930000, + 17399409905461264000, + 12194066303014337000 + ], + { + "siblings": [ + { + "elements": [ + 9716771861519360000, + 9494946224363454000, + 5512520911726511000, + 6742508736341150000 + ] + }, + { + "elements": [ + 13971768294394670000, + 18135428280066554000, + 13266982391671253000, + 5658504070987941000 + ] + } + ] + } + ], + [ + [ + 7231332648597811000, + 6164075130172354000, + 11304534347708020000, + 1464074116655757000, + 6209512281181607000, + 9003083291558580000, + 2121718935813406700, + 0, + 5076128816276513000, + 3411853014592355000, + 7010869622410063000, + 15152252990821180000, + 9279270435013005000, + 16884810756944271000, + 6048712619536715000, + 0 + ], + { + "siblings": [ + { + "elements": [ + 13950067632690864000, + 5521827386682961000, + 5196346423084305000, + 10029116303369347000 + ] + }, + { + "elements": [ + 4990138377610188000, + 17265527575898118000, + 15405950525593577000, + 16786680726621397000 + ] + } + ] + } + ] + ] + }, + "steps": [] + }, + { + "initial_trees_proof": { + "evals_proofs": [ + [ + [ + 10012935419466238000, + 7687981581886084000, + 16691476774783492, + 145485011789036540, + 15168412053950060000, + 691136674232252000, + 15619028640102623000, + 4059841558137314000, + 11221094138731008000, + 9647692249680978000, + 1731380067292760800, + 12050742724543570000, + 4318946795225655300, + 13445284368723671000, + 6526125951637108000, + 12837226377147963000, + 6200021417364185000, + 6231435401537232000, + 12389719809556875000, + 3374111251463901000, + 12141217630282975000, + 14465792413110706000, + 11023937824779327000, + 17774017186467066000, + 5207900634379993000, + 15595245240556739000, + 15843721754649590000, + 8096232151492916000, + 1459042434150359800, + 15740105734539225000, + 3589661780789904000, + 14631890640933876000, + 10536888583905910000, + 13062014467609786000, + 4148455259947966000, + 8568720716864666000, + 8583370790698260000, + 2431818726303993000, + 17646025720604980000, + 5378803794799483000, + 3660142930433849300, + 9625635920878019000, + 14383371796671377000, + 1787062723350198500, + 7352998930330732000, + 15828271121064876000, + 2170785863873326800, + 11092974659643095000, + 1016357294328404000, + 3386178682721298400, + 10075031584945040000, + 15580465637828448000, + 5303646519772869000, + 13647626671420817000, + 6469360450517991000, + 17147767722741350000, + 5801886078594869000, + 6534170801082629000, + 775935246617636500, + 17104283438042250000, + 3036702298271074000, + 8811634396995210000, + 18346120187486650000, + 4932236222573787000, + 4658310730087341000, + 16765483636386554000, + 16656476462835642000, + 17936221904913283000, + 5877156874468569000, + 3130651501490620400, + 18105588846974400000, + 10168135683153457000, + 17741186566292371000, + 8869418827244045000, + 10989794044775905000, + 8651371415957868000, + 3056889389710013400, + 17540622419485827000, + 16818380837613850000, + 17687093779267762000, + 7067130542631281000, + 14008375672721013000, + 9557087022363310000, + 5987878486782107000 + ], + { + "siblings": [ + { + "elements": [ + 15910947226590530000, + 646193018130629400, + 12362342674696133000, + 4390055708897877000 + ] + }, + { + "elements": [ + 15236420770846090000, + 24658089369011784, + 7263309267073019000, + 11070078437783788000 + ] + } + ] + } + ], + [ + [ + 3281502619423061000, + 13545277545568238000, + 14663410797119126000, + 12720666465524030000, + 11137495472725410000, + 17219869585755656000, + 15219507674542633000, + 9580319904710355000, + 4016638132033931300, + 3224986564830229500, + 13879510789419604000, + 7205967210065089000, + 15174217472265800000, + 9419099283449584000, + 7133047578325612000, + 13349855157600797000, + 7919372289316418000, + 441990561274029600, + 4052227835778202600, + 677647751006279800, + 274509351276254900, + 11040051754536092000, + 8501847122023116000, + 15815457283083913000, + 13301114141698880000, + 11310751667811906000, + 13764784238739761000, + 3348588219045873000, + 2515776057944218600, + 6399957795070475000, + 15062954296695663000, + 6986366608068255000, + 17812028767591340000, + 5964651356063139000, + 11337432479333915000, + 1585618528571623400, + 1642531027753219300, + 10099417669341560000, + 15446080496240876000, + 4926403446545558000, + 5507465251232924000, + 11115934788076454000, + 14243845968196800000, + 13861918652022899000, + 3850823771833215000, + 17384662147850770000, + 511647722783485400, + 16006170610662939000, + 16558174986717336000, + 16327262491993557000, + 9504506446049968000, + 15955828840096176000, + 6111064221229311000, + 8063600990936570000, + 8805981192091101000, + 4815690244251631000, + 659785280064413600, + 16611267956984164000, + 3491197500301519000, + 8160940025452168000, + 1724012626812724200, + 5592488635645890000, + 5306889655369267000, + 9946304053859428000, + 4525390369848653000, + 3769324558737713000, + 9094266255746180000, + 1545018939564929300, + 10198148363946932000, + 11919645055700560000, + 9087411979092525000, + 7796524611847130000, + 16579594101783306000, + 11636514306887256000, + 1657024351231551000, + 3529468706042026500, + 9656275542837720000, + 7381645757833537000, + 18177616075124300000, + 5584856048330319000, + 543063733728627600, + 9387314480922184000, + 12417431423261702000, + 4053353597938085400, + 9439118581919924000, + 15397226531211184000, + 8791399022920502000, + 12774139830685219000, + 15690782145859226000, + 11624503983241939000, + 14835947021233873000, + 3736338349725883000, + 13002844830337348000, + 18188991026798162000, + 11835912837254017000, + 14388413528132205000, + 6799380429591791000, + 5206417324333468000, + 8648533645275363000, + 18346231283857924000, + 15645700207894180000, + 7476278961886052000, + 6769748094917422000, + 13690295626045690000, + 7462919929941096000, + 16009517650992097000, + 739959397055038600, + 8110210456874298000, + 18013179999982459000, + 8142590120608150000, + 12747017727741546000, + 5348584160097303000, + 3516116520583736300, + 14406283930788844000, + 2092636650604840200, + 1359592731875339000, + 12091907786352617000, + 14760072766776631000, + 8968193652568757000, + 9346149183387023000, + 12988500629981893000, + 15008800182058752000, + 8097373988235795000, + 7527440505306001000, + 9082183981835536000, + 16704476585816280000, + 11252219561661733000, + 1928492918601760500, + 5903238285545126000, + 294338914003423600, + 3990590818550690000, + 10127946527481174000, + 8574772806538216000, + 5214702647685879000, + 15578030875567946000 + ], + { + "siblings": [ + { + "elements": [ + 509890938699871900, + 12656761137238240000, + 17470764940422357000, + 2609677004642914300 + ] + }, + { + "elements": [ + 18088447010455497000, + 13329050781881952000, + 2242275236646330000, + 164858098666570020 + ] + } + ] + } + ], + [ + [ + 11179627370942323000, + 4121526935786922000, + 11895794903420598000, + 3003086139195858000, + 7524250667739996000, + 6684706636227103000, + 8393203467177735000, + 282880244761233120, + 5545453554162732000, + 15391605467239660000, + 6576937005637791000, + 13141780223778978000, + 17850041414465458000, + 11019269140287822000, + 10595806940900827000, + 17006880238422233000, + 5809892826291719000, + 13850579271297511000, + 15471517322537906000, + 12154113888296282000 + ], + { + "siblings": [ + { + "elements": [ + 13336900500424624000, + 11875990716809808000, + 17478400461347880000, + 3161335150348070000 + ] + }, + { + "elements": [ + 6861296131095795000, + 757500239234520700, + 8422305244320870000, + 2678526064462649000 + ] + } + ] + } + ], + [ + [ + 10634920733757268000, + 17326484413838547000, + 269276328393883100, + 3514487767992190000, + 7411692524139028000, + 13829012429159367000, + 16193926333759848000, + 0, + 5504444995184070000, + 17867871214852278000, + 16606486342353723000, + 15312389023307420000, + 15791049487845384000, + 9320800072134214000, + 11238535673479836000, + 0 + ], + { + "siblings": [ + { + "elements": [ + 13670051601222337000, + 6213711002173208000, + 811366145979297300, + 391468735289524860 + ] + }, + { + "elements": [ + 7216533317589104000, + 17353169442033930000, + 245572242320875500, + 3293708487325352000 + ] + } + ] + } + ] + ] + }, + "steps": [] + }, + { + "initial_trees_proof": { + "evals_proofs": [ + [ + [ + 3738945624800370700, + 17300446361735487000, + 15917639738875280000, + 4136774869151029000, + 7117564556375305000, + 15670713401097966000, + 8381165688216272000, + 6616103561609862000, + 13525601900549726000, + 8799482595755944000, + 17712624366892730000, + 17118545599583281000, + 991100146237581400, + 6035752930321193000, + 8266024908831034000, + 18064514353010330000, + 3964240644054969300, + 1994624446628148200, + 7737696342131684000, + 13493604657617510000, + 12370590996382282000, + 8394073097020065000, + 18283562745012062000, + 6603194942422815000, + 2531030556376411600, + 10324982144450083000, + 14030009636665866000, + 8517901130048984000, + 12939125815664675000, + 16304843600861358000, + 2298466883715219000, + 12488184336251324000, + 10985612231923603000, + 3938570370374081500, + 3042511045280239000, + 8171478540730368000, + 16057693655131392000, + 11774495727902372000, + 158368229678630370, + 10831030505909420000, + 827360893993244400, + 10152328350452690000, + 11307238070099808000, + 13841850883366080000, + 12691891050419430000, + 7591453740245008000, + 13518080200785328000, + 11697901946292834000, + 17655953453569149000, + 1697289746656046600, + 9087743985318105000, + 10718099400097923000, + 1326370504809921800, + 16908986449959168000, + 15621818700730740000, + 948682801768912400, + 11775602109313462000, + 15639513639876645000, + 5756007334659908000, + 8837886509164769000, + 12808750118480218000, + 11348068085147257000, + 3562302526915199500, + 6009828677840090000, + 3086670756891117000, + 870481913221754400, + 12245862984441377000, + 4244793211851520500, + 13952115460324070000, + 5544993801584185000, + 16653723066313937000, + 9145775338650733000, + 18188734250621702000, + 13427643555713573000, + 11494683798358729000, + 7381145497053007000, + 7707723438386994000, + 10719871725717215000, + 13294205928777507000, + 13970396126083246000, + 11718884100073064000, + 10310245041771063000, + 4668742116442864000, + 11041791040371497000 + ], + { + "siblings": [ + { + "elements": [ + 4980007364458197000, + 1695687289718372400, + 15683405046165023000, + 12745377463045984000 + ] + }, + { + "elements": [ + 3560583152441324500, + 12581631521285452000, + 3424922011369377300, + 1328356594502091300 + ] + } + ] + } + ], + [ + [ + 7084960479292913000, + 10113856666356111000, + 16930827229542080000, + 17595795979135814000, + 15540999011564927000, + 16048672525628811000, + 12780865192746684000, + 15860110043231275000, + 13895067038316710000, + 15237338232677966000, + 13582470306826314000, + 16405910891534574000, + 3468283959064404000, + 15690284809706226000, + 25984347326737464, + 3588531022643337000, + 3252667793898594000, + 1853472790089668900, + 873025507434894200, + 13913028748579017000, + 6851250642083097000, + 519491857547013900, + 279621711108509570, + 13954883453420534000, + 10193140494866485000, + 2555396220351547400, + 17864486597470865000, + 18380006690432780000, + 12366762745530292000, + 14725473470799124000, + 9758815736809843000, + 16721848405422973000, + 7918098651205864000, + 7356770647201799000, + 5035153257997594000, + 12697435697387532000, + 4463209394416363500, + 6072719801541283000, + 6829795168974451000, + 13765878043926833000, + 1393002228895684600, + 16994343780488820000, + 18222517078371066000, + 15282561125541216000, + 5111967742986569000, + 42760876288772680, + 5345870030422057000, + 11318010760248125000, + 1772589539532102100, + 17552278908378970000, + 10619968527208020000, + 1918932776019693600, + 1955210522983888000, + 6495356548282904000, + 9782516134065545000, + 12241027249772216000, + 14534630875433177000, + 7742022112025668000, + 8406806308614932000, + 4328086585898071600, + 637307387861813800, + 10630028846134168000, + 12126448639464288000, + 14201842739328498000, + 3486979771979621400, + 2875822407864947000, + 1748554430886658800, + 11481052681621813000, + 4391114922325069300, + 17041462223251302000, + 6718306171591995000, + 14013671755573473000, + 7003499296735670000, + 3012636720604861400, + 4758393043937839000, + 10563310637759359000, + 369022083016273600, + 14906555900464026000, + 13692647756645937000, + 12854459302217128000, + 15991705769288140000, + 9697180358835964000, + 10293824227253991000, + 4813926355286120000, + 10580671277107855000, + 6456343692310364000, + 6660788738102033000, + 881448480752024200, + 8536039042112800000, + 4238811066140371500, + 15353293898863202000, + 7010016986363341000, + 14046136564908919000, + 4233051352114108400, + 16881530775086782000, + 17440906640805800000, + 15619182587871164000, + 1836840762353525000, + 7937171579759129000, + 13254217606202993000, + 8952436842063557000, + 17413609359722433000, + 4810060966416649000, + 18119601042625720000, + 8195958558254793000, + 6814763046045782000, + 4416467939837136400, + 11121578419144217000, + 15937378930102716000, + 6550239733440535000, + 4684421196743192000, + 7170376943265640000, + 3482960962142179300, + 15376422470588074000, + 4855342357541762000, + 8291540666406265000, + 15623368545765034000, + 12250544001364466000, + 14426627235057810000, + 5481477397391868000, + 14960896669481423000, + 4454675098886738000, + 18226855658601396000, + 14726027380725813000, + 3691686072553635300, + 5276049200781951000, + 2482264316327437300, + 6248279040141393000, + 5440716150110881000, + 7226047928374870000, + 8402799367598559000, + 13542315664252324000, + 6254544415433330000, + 89200575152971840, + 9666684248450707000 + ], + { + "siblings": [ + { + "elements": [ + 5538387107506787000, + 7206238702072799000, + 9117181352219496000, + 15540171979736637000 + ] + }, + { + "elements": [ + 10624314855896224000, + 15908152714402920000, + 8823595419497919000, + 11125564908501015000 + ] + } + ] + } + ], + [ + [ + 17743447866622919000, + 1927032330480046000, + 181371779323909980, + 17563609950361870000, + 3507161107294468600, + 15101706587659758000, + 6656364090069289000, + 17363145648557910000, + 4512098528277997000, + 2739009225471744500, + 4279229426618308600, + 6717915592113271000, + 8851553794051817000, + 18332932059418710000, + 1367371054375235000, + 513570238221778900, + 6521802588747937000, + 9547584120198023000, + 14438636500823466000, + 4900122195792474000 + ], + { + "siblings": [ + { + "elements": [ + 5564849649762095000, + 16157643275983772000, + 11558077279831863000, + 7581996868055620000 + ] + }, + { + "elements": [ + 2633118293029223400, + 10102142870978724000, + 3241912507645079600, + 10019762070590770000 + ] + } + ] + } + ], + [ + [ + 15304523504880148000, + 1696606052378332700, + 16005291433111826000, + 320859800112505200, + 219847522612665630, + 9299183102799933000, + 17630050309454119000, + 0, + 7271935242876177000, + 7015925395834706000, + 16946398868979657000, + 7990392766712576000, + 1138280365579873700, + 7307510448435252000, + 17850562726990846000, + 0 + ], + { + "siblings": [ + { + "elements": [ + 2540030968634326500, + 6654959196551541000, + 16426921703954704000, + 6546524244462914000 + ] + }, + { + "elements": [ + 3729081258110109700, + 8148198389405953000, + 6623557005592059000, + 14562035745846473000 + ] + } + ] + } + ] + ] + }, + "steps": [] + }, + { + "initial_trees_proof": { + "evals_proofs": [ + [ + [ + 3430217909794797600, + 13715012292105753000, + 17149129451905262000, + 13366296804138280000, + 699049416298609900, + 381124555680706100, + 12720086397835213000, + 184816522750562530, + 2526850830423631000, + 8075458743275694000, + 11473812685406667000, + 9058823084191948000, + 15248823105676240000, + 1648425650213139000, + 7635362025430285000, + 12715371066928824000, + 14263617062173108000, + 11523773671388185000, + 5239746610556536000, + 10442841379838495000, + 15452174458367120000, + 1223199841746333700, + 816445260219771600, + 10186983240865573000, + 4268550946723402000, + 3870512996028458000, + 4930198429725822000, + 17010869343915799000, + 18157394098520078000, + 14389436548791562000, + 13043481276951120000, + 2005925057942663200, + 17366921320141610000, + 16732255704438660000, + 13273860163087307000, + 1625862003127520800, + 8336492783049558000, + 15584107241671510000, + 13011243693635396000, + 11431670862700360000, + 1201856787165778200, + 7444514480519304000, + 9658398899692550000, + 17133310124078332000, + 7966071156358148000, + 17831008533531628000, + 2258462907680341800, + 838333117551688000, + 15709990502404133000, + 15805247967600840000, + 17673429002027506000, + 2142711675413197000, + 14542318388913228000, + 3447819423818562600, + 6391674214498371000, + 16455881369831582000, + 14866672448267323000, + 14073093490635504000, + 17165467327069364000, + 16092116349003766000, + 430773972620534140, + 13509079917742630000, + 4260801221360431000, + 9689272603902867000, + 1270640374685681000, + 5924808469218371000, + 10687518030715605000, + 2599250438992209400, + 7094768166913514000, + 3025457074664072000, + 1309791192479779600, + 5800808558164686000, + 8193592689686676000, + 14552016988505788000, + 8862161343471624000, + 449575745398624700, + 8586869941763362000, + 1400244177096550400, + 872585710081118300, + 13481463732948530000, + 1695748498598770400, + 6150042556290885000, + 16420448207004826000, + 16034576465314607000 + ], + { + "siblings": [ + { + "elements": [ + 14419406449888380000, + 8816956723976102000, + 12067085973342548000, + 17282885891460545000 + ] + }, + { + "elements": [ + 3831638896680270000, + 11622239582132795000, + 17114360658120077000, + 13946956494708068000 + ] + } + ] + } + ], + [ + [ + 9322154256070382000, + 9298915447726608000, + 6211700909309924000, + 13274187522243721000, + 5364279690009258000, + 15157283762162900000, + 15841253542554587000, + 13144487947945714000, + 10850281300917820000, + 8610972725026559000, + 6593112909860588000, + 10211225076581708000, + 413674388750448500, + 13540414131450503000, + 9581930044282274000, + 4098245201630780000, + 1622379994720174300, + 1078933182757701200, + 11034244027633578000, + 17405104407334220000, + 12787901668411660000, + 1104626963209500800, + 542877307881188900, + 9211552577893066000, + 1425089811797739500, + 17125174448784765000, + 14929664602266536000, + 6856597548918670000, + 489146103472602200, + 9443243737772622000, + 1409334099724516900, + 3850925211191582700, + 3465385813516745000, + 1048160366338124000, + 14331333039105706000, + 12531992996930818000, + 11312274515614320000, + 18098307539104870000, + 1445870795725305000, + 9017551389199285000, + 12396010902471657000, + 13977330180705133000, + 7532679606547935000, + 6430018917687526000, + 12493490438388750000, + 3377516841871910000, + 4859330541493863000, + 4824754140205393000, + 9545164412422892000, + 4583334351660420600, + 2922051529049249000, + 8272604377765969000, + 5424452475972320000, + 1933146907176790800, + 285152714382525280, + 7151450890921244000, + 10955782330801842000, + 11149605592879194000, + 6584443043419662000, + 1335299708725940000, + 12404245858370470000, + 8890910394305972000, + 111188396291074860, + 7237425013564953000, + 4597286797733995500, + 15388070915760970000, + 6537309821548702000, + 2529759791823373000, + 15387015753710332000, + 10047952499859606000, + 14403714120600992000, + 7985982858384360000, + 17448155589058052000, + 13053017055513170000, + 1400110103257980200, + 7771462279546373000, + 2531717624542196700, + 10143858833814694000, + 5127817825476436000, + 14349004188413544000, + 8278787095368231000, + 11854064666485051000, + 11480069196590946000, + 13650915714793992000, + 16159424381741474000, + 6888396488169625000, + 15796749244535482000, + 4892489238277655000, + 17214651395295734000, + 14508918220163725000, + 8258147860165985000, + 12098806420079012000, + 7349259460983461000, + 16224968957479510000, + 785707320188712700, + 2463392051419459000, + 4239513534471943700, + 13285776067340091000, + 8935098037678106000, + 9373846054614764000, + 8892888384353287000, + 8858738982925033000, + 16976899985280236000, + 2202093198520910600, + 8459676670393902000, + 9360996690386563000, + 3392497050808577000, + 12261156353419860000, + 4810378109376490000, + 6866624983757177000, + 10139406970652242000, + 2279402530707086000, + 3571614403394350000, + 11765175258248694000, + 6968544960312133000, + 12854854787306527000, + 7654097326925825000, + 2142836549314080800, + 12137722014816514000, + 13816768249694648000, + 3233600438152064500, + 7456260561148156000, + 9363307932125596000, + 3508166820226922500, + 17091264658875036000, + 9948164036831678000, + 8191292794710505000, + 8385653115542397000, + 858471484471614200, + 15003093565912312000, + 9787637110773540000, + 5917929176820097000, + 16632034354038790000, + 3298661143565506000, + 2613275760343161000 + ], + { + "siblings": [ + { + "elements": [ + 8879356597720493000, + 6917356392980739000, + 3508597646350858000, + 463084935192319170 + ] + }, + { + "elements": [ + 4438224109758513000, + 9823443110140568000, + 10414114904817326000, + 819923835512231400 + ] + } + ] + } + ], + [ + [ + 3113267541849722400, + 9753281945233666000, + 7546430848469015000, + 16208133682505347000, + 14385678822295658000, + 9177012408227821000, + 8797615654863255000, + 14503784013230050000, + 9745478833204030000, + 7775015572163939000, + 14288783729015898000, + 17569633996838640000, + 12882640421341970000, + 3358019421800141300, + 10949043382888580000, + 16385850020097438000, + 6171652909464015000, + 4176235432743492600, + 17160011921756885000, + 18253733387787856000 + ], + { + "siblings": [ + { + "elements": [ + 3404828999404575000, + 12734383482943791000, + 7566732476694397000, + 3550354442679956000 + ] + }, + { + "elements": [ + 4142410262580237000, + 6254359573716296000, + 17782212335968627000, + 10497868304079342000 + ] + } + ] + } + ], + [ + [ + 17271325825563308000, + 9837015219834634000, + 9647144375687750000, + 14367679698982080000, + 8361306716025890000, + 15889133408568200000, + 15447797414175554000, + 0, + 688430162752663400, + 17107416775655037000, + 1146844091750321800, + 477207693966097500, + 11630669371280077000, + 15353450996534542000, + 9566823907763400000, + 0 + ], + { + "siblings": [ + { + "elements": [ + 10529497525610180000, + 9331047723218878000, + 4276570508390796300, + 13208970365386158000 + ] + }, + { + "elements": [ + 8869004094715097000, + 6765398146259183000, + 18173452582168869000, + 13383820280908520000 + ] + } + ] + } + ] + ] + }, + "steps": [] + }, + { + "initial_trees_proof": { + "evals_proofs": [ + [ + [ + 15758775234507622000, + 386873473794195, + 5809584622623378000, + 14306751210974714000, + 11302554983959589000, + 1327832789599027500, + 236502180870392260, + 13264905772134066000, + 5857506752267948000, + 17058040426918111000, + 1342694698541376000, + 11247410261659140000, + 14350114415645219000, + 4583230930005436000, + 14076503119706403000, + 15880020041488722000, + 10627821187628143000, + 1044749384776247700, + 13803094214927487000, + 12544379753173393000, + 13057050371697996000, + 15330579406842573000, + 9707896952003540000, + 5786715142615771000, + 8959768511509210000, + 7466737346920903000, + 10422822089882229000, + 3504773151285323000, + 3419470529597640700, + 15847878555525590000, + 11410879681056200000, + 3245040583009025500, + 11698930509459870000, + 13570140684066884000, + 4107171135279491600, + 6816442511716334000, + 13187679564150780000, + 4957755858430972000, + 10756562738671628000, + 4016481060180503000, + 9005810410597864000, + 5421891320356038000, + 1065438370161549300, + 14370621258975164000, + 3366746491579372000, + 13006491237563857000, + 12466845178667282000, + 8450232994099054000, + 3884423878484462600, + 16694495941341338000, + 12276393389691730000, + 16037686545199925000, + 10895977186829849000, + 17156636392074349000, + 16170249794752475000, + 8130522156784339000, + 3758135148585897500, + 1504470367743606800, + 12820235152408801000, + 4728472998567874000, + 2824641811007953400, + 15118259416555889000, + 12215493150006810000, + 8316066871495739000, + 12009914754943291000, + 14195274612200124000, + 17522726866577553000, + 7499475354690611000, + 3544346123845523500, + 11718047683762303000, + 13490728387453084000, + 2218114863523928600, + 6026027352978102000, + 3747782856048584000, + 17203016452260553000, + 13031495329552308000, + 6244324079390072000, + 12856980774624272000, + 8466864435764049000, + 15680223617309057000, + 7581596273487594000, + 4663524874409994000, + 13442298349819085000, + 14052760883976538000 + ], + { + "siblings": [ + { + "elements": [ + 17239242580999487000, + 11539643569776884000, + 6361888208514807000, + 10670222042682018000 + ] + }, + { + "elements": [ + 7372999055943323000, + 3141364051179518000, + 11032666934607065000, + 18114007743554458000 + ] + } + ] + } + ], + [ + [ + 9107796823381700000, + 16818241499348718000, + 16299777022319026000, + 8287169742405573000, + 6365600784625252000, + 7761045025920314000, + 13002214094454116000, + 15945120953402675000, + 18312208426043568000, + 8543832862024905000, + 16480446712339558000, + 6205571589310455000, + 17774875044909613000, + 8491177127306392000, + 911272131595502100, + 11563741978778083000, + 2601207666791843000, + 2309683180155736000, + 15888337585164718000, + 3688896392389118500, + 6243543024310987000, + 14960359946020346000, + 13274746775140712000, + 16032050801199454000, + 15978012582462950000, + 13427240766356244000, + 2532040230841748500, + 9094977243890656000, + 6049702284594704000, + 16597203725198604000, + 3724367398944002000, + 4230433202510454300, + 12986387636378978000, + 7492173129723806000, + 17363553745623870000, + 7633931955069653000, + 14629659330428381000, + 11369810317591724000, + 12511090612198220000, + 10802772579273607000, + 12049678780889092000, + 6919860896844969000, + 7516508836970720000, + 8939037552220092000, + 6570634633792390000, + 635488251650684700, + 16084600517045107000, + 2045618282973581, + 14740529096129510000, + 15889777309175177000, + 11487312374730482000, + 2088710389073378300, + 5890783780438629000, + 16088582991813454000, + 541688420468169900, + 5966077847622246000, + 16207585405939567000, + 5909345481015000000, + 17898224395954538000, + 8966836787779963000, + 14727147708676428000, + 17735895624353850000, + 9730398427785822000, + 5554128360388949000, + 17679442727018113000, + 5665447135485042000, + 13425668593277774000, + 16995964789782413000, + 13055712719189820000, + 14561060380065274000, + 6327719410516302000, + 5048031989018203000, + 2012244523027674400, + 2397156661466910700, + 16583452698891960000, + 5158436032736982000, + 3853742341823591000, + 13425895073126883000, + 11873965524552727000, + 11104560416441557000, + 8214643831157622000, + 14617268023327631000, + 11078188504924300000, + 5894157373012835000, + 2693934722412955600, + 8342693345719818000, + 17148675125408471000, + 16581942131668810000, + 16586038069016170000, + 12984487938883740000, + 10703641304737400000, + 16604773104762155000, + 3007538147667339300, + 12397576047371983000, + 5339697511538942000, + 5728488543364679000, + 1696219530118218500, + 9292952432547731000, + 10677825366165215000, + 1421970439889885400, + 15244675216377936000, + 10449242845213598000, + 16107522569146330000, + 10666241145965853000, + 2139173981804485400, + 2367485615014734300, + 983457486192868500, + 6068037307787761000, + 8087699736000154000, + 6227466075008611000, + 5940708810738756000, + 7956406536783131000, + 12368083184330885000, + 1025810479761647100, + 3378941875718593000, + 9770967053581994000, + 11203416082504145000, + 18008378765925067000, + 1624684959930209800, + 2873013998099962000, + 28093859562777096, + 15208550762997682000, + 17103432373411432000, + 13190221139449651000, + 12522379569913514000, + 3408997982448356400, + 2766757188617063000, + 10223830943430052000, + 15584218638946466000, + 4969511842630875000, + 11929289016595732000, + 14062808527016219000, + 16499719974661364000, + 11512455565557973000, + 2451280316216884700 + ], + { + "siblings": [ + { + "elements": [ + 5071348674809590000, + 7874204515774661000, + 4372959500483615000, + 11182648899365442000 + ] + }, + { + "elements": [ + 8188670334423518000, + 1566191709544018200, + 16402048886999146000, + 191343565835256600 + ] + } + ] + } + ], + [ + [ + 511313225841607230, + 13553218387419270000, + 2074301021681890800, + 10284559489508768000, + 707403733300044400, + 727033242491643300, + 6162410163511088000, + 10561619637211234000, + 1273346789923957800, + 13995947052877638000, + 14649512576807420000, + 6826041947767307000, + 278929962684972320, + 5081911745633943000, + 7894616217316455000, + 3096216634742532600, + 11064459685368359000, + 7285242960496910000, + 4839897994429646000, + 3659345380633862000 + ], + { + "siblings": [ + { + "elements": [ + 10303543188295676000, + 7238900669690116000, + 15195809770368702000, + 2325223950183781400 + ] + }, + { + "elements": [ + 11532031438242007000, + 6770962685750792000, + 17457149116491366000, + 11805423938257566000 + ] + } + ] + } + ], + [ + [ + 3759006305665829400, + 12118449568785396000, + 4251974036559352300, + 17569946235765133000, + 3195764941831388000, + 875808966274015600, + 13690694989132399000, + 0, + 16855510739307753000, + 7148798266176630000, + 11868530556425060000, + 16450829973989505000, + 16242278395865764000, + 237316549549253250, + 14974905742437288000, + 0 + ], + { + "siblings": [ + { + "elements": [ + 204944248986623500, + 16616567898912072000, + 15974934357824039000, + 3836375669830727000 + ] + }, + { + "elements": [ + 17538758302094543000, + 7192178956846173000, + 718103195548148000, + 14388698506789708000 + ] + } + ] + } + ] + ] + }, + "steps": [] + } + ], + "final_poly": { + "coeffs": [ + [ + 7617280785726816000, + 1190131237865091300 + ], + [ + 2933914758542435000, + 157046815772233860 + ], + [ + 808506469928825300, + 2316021285134910000 + ], + [ + 16517054729148764000, + 1961939323645801500 + ], + [ + 14559687141100732000, + 10750136105046483000 + ], + [ + 252145346392258900, + 6144805172785519000 + ], + [ + 16051781472579936000, + 1992984179413361000 + ], + [ + 0, + 0 + ] + ] + }, + "pow_witness": 14987979556399352000 + } + }, + "public_inputs": [ + 0, + 1, + 3736710860384813000 + ] +} \ No newline at end of file diff --git a/plonky2_verifier/deserialize.go b/plonky2_verifier/deserialize.go index 9e7059f..d01e4b0 100644 --- a/plonky2_verifier/deserialize.go +++ b/plonky2_verifier/deserialize.go @@ -149,6 +149,19 @@ type CommonCircuitDataRaw struct { } `json:"circuit_digest"` } +type ProofChallengesRaw struct { + PlonkBetas []uint64 `json:"plonk_betas"` + PlonkGammas []uint64 `json:"plonk_gammas"` + PlonkAlphas []uint64 `json:"plonk_alphas"` + PlonkZeta []uint64 `json:"plonk_zeta"` + FriChallenges struct { + FriAlpha []uint64 `json:"fri_alpha"` + FriBetas [][]uint64 `json:"fri_betas"` + FriPowResponse uint64 `json:"fri_pow_response"` + FriQueryIndices []uint64 `json:"fri_query_indices"` + } `json:"fri_challenges"` +} + type VerifierOnlyCircuitDataRaw struct { ConstantsSigmasCap []struct { Elements []uint64 `json:"elements"` @@ -289,6 +302,34 @@ func DeserializeProofWithPublicInputs(path string) ProofWithPublicInputs { return proofWithPis } +func DeserializeProofChallenges(path string) ProofChallenges { + jsonFile, err := os.Open(path) + if err != nil { + panic(err) + } + + defer jsonFile.Close() + rawBytes, _ := ioutil.ReadAll(jsonFile) + + var raw ProofChallengesRaw + err = json.Unmarshal(rawBytes, &raw) + if err != nil { + panic(err) + } + + var proofChallenges ProofChallenges + proofChallenges.PlonkBetas = utils.Uint64ArrayToFArray(raw.PlonkBetas) + proofChallenges.PlonkGammas = utils.Uint64ArrayToFArray(raw.PlonkGammas) + proofChallenges.PlonkAlphas = utils.Uint64ArrayToFArray(raw.PlonkAlphas) + proofChallenges.PlonkZeta = utils.Uint64ArrayToQuadraticExtension(raw.PlonkZeta) + proofChallenges.FriChallenges.FriAlpha = utils.Uint64ArrayToQuadraticExtension(raw.FriChallenges.FriAlpha) + proofChallenges.FriChallenges.FriBetas = utils.Uint64ArrayToQuadraticExtensionArray(raw.FriChallenges.FriBetas) + proofChallenges.FriChallenges.FriPowResponse = NewFieldElement(raw.FriChallenges.FriPowResponse) + proofChallenges.FriChallenges.FriQueryIndices = utils.Uint64ArrayToFArray(raw.FriChallenges.FriQueryIndices) + + return proofChallenges +} + func ReductionArityBits( arityBits uint64, finalPolyBits uint64, diff --git a/plonky2_verifier/fri.go b/plonky2_verifier/fri.go index 77bdaf9..d26bbb6 100644 --- a/plonky2_verifier/fri.go +++ b/plonky2_verifier/fri.go @@ -546,15 +546,15 @@ func (f *FriChip) VerifyFriProof( nLog := f.friParams.DegreeBits + f.friParams.Config.RateBits n := uint64(math.Pow(2, float64(nLog))) - if len(friChallenges.FriQueryIndicies) != len(friProof.QueryRoundProofs) { + if len(friChallenges.FriQueryIndices) != len(friProof.QueryRoundProofs) { panic(fmt.Sprintf( "Number of query indices (%d) should equal number of query round proofs (%d)", - len(friChallenges.FriQueryIndicies), + len(friChallenges.FriQueryIndices), len(friProof.QueryRoundProofs), )) } - for idx, xIndex := range friChallenges.FriQueryIndicies { + for idx, xIndex := range friChallenges.FriQueryIndices { roundProof := friProof.QueryRoundProofs[idx] f.verifyQueryRound( diff --git a/plonky2_verifier/fri_test.go b/plonky2_verifier/fri_test.go index 0cf501d..0aab99f 100644 --- a/plonky2_verifier/fri_test.go +++ b/plonky2_verifier/fri_test.go @@ -33,10 +33,10 @@ func (circuit *TestFriCircuit) Define(api frontend.API) error { friChip := NewFriChip(api, fieldAPI, qeAPI, hashAPI, poseidonChip, &commonCircuitData.FriParams) friChallenges := FriChallenges{ - FriAlpha: circuit.friAlpha, - FriBetas: circuit.friBetas, - FriPowResponse: circuit.friPOWResponse, - FriQueryIndicies: circuit.friQueryIndices, + FriAlpha: circuit.friAlpha, + FriBetas: circuit.friBetas, + FriPowResponse: circuit.friPOWResponse, + FriQueryIndices: circuit.friQueryIndices, } initialMerkleCaps := []MerkleCap{ diff --git a/plonky2_verifier/plonk.go b/plonky2_verifier/plonk.go index cca3cb5..f749201 100644 --- a/plonky2_verifier/plonk.go +++ b/plonky2_verifier/plonk.go @@ -169,7 +169,6 @@ func (p *PlonkChip) evalVanishingPoly(vars EvaluationVars, proofChallenges Proof for j := uint64(0); j < p.commonData.Config.NumRoutedWires; j++ { // The numerator is `beta * s_id + wire_value + gamma`, and the denominator is // `beta * s_sigma + wire_value + gamma`. - wireValuePlusGamma := p.qeAPI.AddExtension( openings.Wires[j], p.qeAPI.FieldToQE(proofChallenges.PlonkGammas[i]), diff --git a/plonky2_verifier/plonk_test.go b/plonky2_verifier/plonk_test.go index ff8b7c4..7364b31 100644 --- a/plonky2_verifier/plonk_test.go +++ b/plonky2_verifier/plonk_test.go @@ -12,27 +12,17 @@ import ( type TestPlonkCircuit struct { proofWithPIsFilename string `gnark:"-"` commonCircuitDataFilename string `gnark:"-"` - - plonkBetas []F - plonkGammas []F - plonkAlphas []F - plonkZeta QuadraticExtension + proofChallengesFilename string `gnark:"-"` } func (circuit *TestPlonkCircuit) Define(api frontend.API) error { proofWithPis := DeserializeProofWithPublicInputs(circuit.proofWithPIsFilename) commonCircuitData := DeserializeCommonCircuitData(circuit.commonCircuitDataFilename) + proofChallenges := DeserializeProofChallenges(circuit.proofChallengesFilename) fieldAPI := NewFieldAPI(api) qeAPI := NewQuadraticExtensionAPI(fieldAPI, commonCircuitData.DegreeBits) - proofChallenges := ProofChallenges{ - PlonkBetas: circuit.plonkBetas, - PlonkGammas: circuit.plonkGammas, - PlonkAlphas: circuit.plonkAlphas, - PlonkZeta: circuit.plonkZeta, - } - plonkChip := NewPlonkChip(api, qeAPI, commonCircuitData) poseidonChip := poseidon.NewPoseidonChip(api, fieldAPI, qeAPI) @@ -49,23 +39,7 @@ func TestPlonkFibonacci(t *testing.T) { circuit := TestPlonkCircuit{ proofWithPIsFilename: "./data/fibonacci/proof_with_public_inputs.json", commonCircuitDataFilename: "./data/fibonacci/common_circuit_data.json", - - plonkBetas: []F{ - NewFieldElementFromString("12973916988745913043"), - NewFieldElementFromString("10729509799707823061"), - }, - plonkGammas: []F{ - NewFieldElementFromString("13357786390712427342"), - NewFieldElementFromString("13733012568509939467"), - }, - plonkAlphas: []F{ - NewFieldElementFromString("4421334860622890213"), - NewFieldElementFromString("11104346062293008527"), - }, - plonkZeta: QuadraticExtension{ - NewFieldElementFromString("18168831211174576204"), - NewFieldElementFromString("14207073590853934065"), - }, + proofChallengesFilename: "./data/fibonacci/proof_challenges.json", } witness := TestPlonkCircuit{} err := test.IsSolved(&circuit, &witness, TEST_CURVE.ScalarField()) @@ -82,23 +56,7 @@ func TestPlonkDummy(t *testing.T) { circuit := TestPlonkCircuit{ proofWithPIsFilename: "./data/dummy_2^14_gates/proof_with_public_inputs.json", commonCircuitDataFilename: "./data/dummy_2^14_gates/common_circuit_data.json", - - plonkBetas: []F{ - NewFieldElementFromString("11216469004148781751"), - NewFieldElementFromString("6201977337075152249"), - }, - plonkGammas: []F{ - NewFieldElementFromString("8369751006669847974"), - NewFieldElementFromString("3610024170884289835"), - }, - plonkAlphas: []F{ - NewFieldElementFromString("970160439138448145"), - NewFieldElementFromString("2402201283787401921"), - }, - plonkZeta: QuadraticExtension{ - NewFieldElementFromString("17377750363769967882"), - NewFieldElementFromString("11921191651424768462"), - }, + proofChallengesFilename: "./data/dummy_2^14_gates/proof_challenges.json", } witness := TestPlonkCircuit{} err := test.IsSolved(&circuit, &witness, TEST_CURVE.ScalarField()) diff --git a/plonky2_verifier/structs.go b/plonky2_verifier/structs.go index 5395f97..226d21a 100644 --- a/plonky2_verifier/structs.go +++ b/plonky2_verifier/structs.go @@ -122,8 +122,8 @@ type ProofChallenges struct { } type FriChallenges struct { - FriAlpha QuadraticExtension - FriBetas []QuadraticExtension - FriPowResponse F - FriQueryIndicies []F + FriAlpha QuadraticExtension + FriBetas []QuadraticExtension + FriPowResponse F + FriQueryIndices []F } diff --git a/plonky2_verifier/verifier.go b/plonky2_verifier/verifier.go index c3d8fc6..0fbde39 100644 --- a/plonky2_verifier/verifier.go +++ b/plonky2_verifier/verifier.go @@ -97,8 +97,8 @@ func (c *VerifierChip) Verify(proofWithPis ProofWithPublicInputs, verifierData V proofChallenges.FriChallenges.FriPowResponse = c.fieldAPI.Add(proofChallenges.FriChallenges.FriPowResponse, ZERO_F).(F) - for i := 0; i < len(proofChallenges.FriChallenges.FriQueryIndicies); i++ { - proofChallenges.FriChallenges.FriQueryIndicies[i] = c.fieldAPI.Add(proofChallenges.FriChallenges.FriQueryIndicies[i], ZERO_F).(F) + for i := 0; i < len(proofChallenges.FriChallenges.FriQueryIndices); i++ { + proofChallenges.FriChallenges.FriQueryIndices[i] = c.fieldAPI.Add(proofChallenges.FriChallenges.FriQueryIndices[i], ZERO_F).(F) } c.friChip.VerifyFriProof( diff --git a/plonky2_verifier/verifier_test.go b/plonky2_verifier/verifier_test.go index b2c114e..e870dc7 100644 --- a/plonky2_verifier/verifier_test.go +++ b/plonky2_verifier/verifier_test.go @@ -81,12 +81,12 @@ func (c *TestVerifierChallengesCircuit) GetChallengesSanityCheck( // expectedPowResponse := NewFieldElementFromString("92909863298412") // c.field.AssertIsEqual(proofChallenges.FriChallenges.FriPowResponse, expectedPowResponse) - if len(proofChallenges.FriChallenges.FriQueryIndicies) != int(c.numFriQueries) { + if len(proofChallenges.FriChallenges.FriQueryIndices) != int(c.numFriQueries) { c.t.Errorf("len(expectedFriQueryIndices) should equal num fri queries") } for i := 0; i < int(c.numFriQueries); i++ { - c.fieldAPI.AssertIsEqual(c.expectedFriQueryIndices[i], proofChallenges.FriChallenges.FriQueryIndicies[i]) + c.fieldAPI.AssertIsEqual(c.expectedFriQueryIndices[i], proofChallenges.FriChallenges.FriQueryIndices[i]) } } From 2acec50b96dfe228a3f4e10439f468e2e8aec482 Mon Sep 17 00:00:00 2001 From: Nicholas Ward Date: Thu, 27 Apr 2023 12:05:07 -0700 Subject: [PATCH 20/21] fix --- plonky2_verifier/plonk.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/plonky2_verifier/plonk.go b/plonky2_verifier/plonk.go index f749201..1f7c501 100644 --- a/plonky2_verifier/plonk.go +++ b/plonky2_verifier/plonk.go @@ -118,6 +118,9 @@ func (p *PlonkChip) checkPartialProducts( func (p *PlonkChip) evaluateGateConstraints(vars EvaluationVars) []QuadraticExtension { constraints := make([]QuadraticExtension, p.commonData.NumGateConstraints) + for i, _ := range constraints { + constraints[i] = p.qeAPI.ZERO_QE + } for i, gate := range p.commonData.Gates { selectorIndex := p.commonData.SelectorsInfo.selectorIndices[i] From 2d7f5ecf502fc759db32fa4f27b84f8aa40e357f Mon Sep 17 00:00:00 2001 From: Nicholas Ward Date: Mon, 1 May 2023 10:26:45 -0700 Subject: [PATCH 21/21] generate proof challenges instead of receiving through JSON --- .../dummy_2^14_gates/proof_challenges.json | 1 - .../data/fibonacci/proof_challenges.json | 1 - .../fibonacci/proof_with_public_inputs.json | 2 +- plonky2_verifier/deserialize.go | 15 +++++----- plonky2_verifier/plonk_test.go | 29 ++++++++++--------- plonky2_verifier/structs.go | 2 +- plonky2_verifier/verifier.go | 6 ++-- plonky2_verifier/verifier_test.go | 2 +- 8 files changed, 30 insertions(+), 28 deletions(-) delete mode 100644 plonky2_verifier/data/dummy_2^14_gates/proof_challenges.json delete mode 100644 plonky2_verifier/data/fibonacci/proof_challenges.json diff --git a/plonky2_verifier/data/dummy_2^14_gates/proof_challenges.json b/plonky2_verifier/data/dummy_2^14_gates/proof_challenges.json deleted file mode 100644 index 897fa90..0000000 --- a/plonky2_verifier/data/dummy_2^14_gates/proof_challenges.json +++ /dev/null @@ -1 +0,0 @@ -{"plonk_betas":[11216469004148781751,6201977337075152249],"plonk_gammas":[8369751006669847974,3610024170884289835],"plonk_alphas":[970160439138448145,2402201283787401921],"plonk_zeta":[17377750363769967882,11921191651424768462],"fri_challenges":{"fri_alpha":[14107038880704607350,2206343865181400103],"fri_betas":[],"fri_pow_response":189028802052971,"fri_query_indices":[14,19,40,37,6,4,23,18,34,22,43,35,12,45,52,50,23,9,31,61,48,37,10,37,38,7,2,48]}} \ No newline at end of file diff --git a/plonky2_verifier/data/fibonacci/proof_challenges.json b/plonky2_verifier/data/fibonacci/proof_challenges.json deleted file mode 100644 index 8225795..0000000 --- a/plonky2_verifier/data/fibonacci/proof_challenges.json +++ /dev/null @@ -1 +0,0 @@ -{"plonk_betas":[12971851817998460587,10437175405489723736],"plonk_gammas":[8479625606955782945,3810097167144316198],"plonk_alphas":[9298386058996050960,3314375019423950587],"plonk_zeta":[16024275880526593214,9166642105134614584],"fri_challenges":{"fri_alpha":[9179060524700746859,5307687266418646185],"fri_betas":[],"fri_pow_response":182691749083890,"fri_query_indices":[4,61,0,34,24,53,10,46,44,20,40,53,39,5,29,32,20,13,1,20,50,36,4,33,41,60,14,2]}} \ No newline at end of file diff --git a/plonky2_verifier/data/fibonacci/proof_with_public_inputs.json b/plonky2_verifier/data/fibonacci/proof_with_public_inputs.json index 95a4b86..618a558 100644 --- a/plonky2_verifier/data/fibonacci/proof_with_public_inputs.json +++ b/plonky2_verifier/data/fibonacci/proof_with_public_inputs.json @@ -1 +1 @@ -{"proof":{"wires_cap":[{"elements":[5782752622758829992,14592497371728508018,17437177267279159355,16865765746304100627]},{"elements":[342367288592297317,2449658623891242837,16460533185331898032,4953787606115624032]},{"elements":[10738602989372585494,10451741755277385166,17289901658215747651,2371813896449924308]},{"elements":[1334273605098860999,13863759115782829685,5128197823102041043,6132021174545469901]},{"elements":[17317049290948596069,1326213489817113132,12604560393624022664,10691091182381056533]},{"elements":[17454686918167556229,13482234817880518667,10610857113349413208,2888288858127585171]},{"elements":[16364778214552361137,3508317774895210783,8717939483659126937,152337716220380310]},{"elements":[9684297404507250449,16908189811092684299,2891316693772875025,14254400830266672516]},{"elements":[12916795380572746684,6818895223894934652,15790499083960551133,477009621382321400]},{"elements":[1123739300354773143,13449004130265528843,6451743759196319145,16623178697223751585]},{"elements":[6329982319895025803,3887530779050930751,16641007801745262561,15102932686035116942]},{"elements":[14412566887668761077,9386242970735868280,4223167432488103336,11473983008241458703]},{"elements":[17343592220558106113,1678416771394132536,351023368137211833,11651780666156457588]},{"elements":[9174386875274148839,18369964388243734947,17196039792657551354,8501301308441456531]},{"elements":[631298948755291129,16159527377730110591,15231734953170173690,11947445019824525253]},{"elements":[1337641888973978353,17242754796406388610,6298694888628198659,10257926999153215882]}],"plonk_zs_partial_products_cap":[{"elements":[14111218911372648901,11719361509979348697,847450919892704737,7320508339892045484]},{"elements":[2653026847843760271,8399797984288622080,15132664626114992913,15043773674230887353]},{"elements":[8060756173223710263,100232677867933561,12554271110445360395,5881907925493087588]},{"elements":[17485167052539128247,5649235559742709679,14822293782311439474,13853705766343040946]},{"elements":[11384130300799564624,15528104863202459281,6681942287118016106,13354155864436316838]},{"elements":[9215210709221323180,3095924245291954278,14621315076087967238,16335876883792863556]},{"elements":[5434935883606027816,11743787106492218814,3300185542431027404,5686800431358492986]},{"elements":[7510531972919981228,17948398113582484265,3599838040028711433,5092758770143283836]},{"elements":[10438660467516307235,9328947870601486502,5870326923476556006,15462223171818895855]},{"elements":[12872013097248967849,5189079854631372451,14061843381301397993,12823090699755849637]},{"elements":[7609884646267732103,2686918582611582746,10385186490892309652,12256065780989198454]},{"elements":[13264113533557852160,15691102734702673230,7220429564095913652,11338125202632066904]},{"elements":[8369578038077985556,12988478235518494365,16748052581462659734,7157445722449283390]},{"elements":[13272224140884022437,11368394402817085558,9759316709370222949,15668914481860978627]},{"elements":[6547771034558596662,1582479030840589112,7843948408829635218,11768869865040542341]},{"elements":[16617600247093921214,17824236979722059751,11107947214851539433,17641535386452515685]}],"quotient_polys_cap":[{"elements":[9883815460998909276,4010889561922929909,16584972469975719704,12333329490826856298]},{"elements":[14227755518910973574,12430123657052211696,11248390156659243813,6759035370241602355]},{"elements":[6689606701852344145,9749230907259478086,10376587245568289224,14511964641691068876]},{"elements":[17572731033064191288,4548709397637905604,8377207684865600011,4816022847971393799]},{"elements":[15588273334469916086,17372244863430948668,13793923662139837497,8511328595605534984]},{"elements":[2292419228730529770,3234388258832791386,16806847797741010937,4034035729120351045]},{"elements":[3123452762032443739,1980512936550667666,7153879934557130742,11755142977265746254]},{"elements":[1075933146237370624,9924048404479837306,1541247248766071274,16168565106980999981]},{"elements":[10749326109863997751,2503682912540451367,521803184811093824,5504786850574566763]},{"elements":[12148954356017620500,8811140431081434011,13429305245700107493,13961243570919174025]},{"elements":[10250335415456840831,13171019913620627993,14876733298358826831,13762574743397127409]},{"elements":[17381924915088185099,5854662953227648383,652883838371612536,17636411229976561954]},{"elements":[12462283136335549124,2570180095865899693,5444112227662951898,3814495938379489949]},{"elements":[1322087962881059580,14576325864920076643,12034108268942431778,5071039372623089321]},{"elements":[16164123777197954122,3129834709556649542,1302232070814800335,4789476774337549810]},{"elements":[6048489741637524321,3839712782964653396,9048514642641963965,11659372762133424418]}],"openings":{"constants":[[15728756232078799024,7075052491695435462],[13370334785374354115,1395763030150228935],[13592887080897179671,9002867860608472199],[6162562450241658817,9537222086445226241]],"plonk_sigmas":[[1702907076904477449,1739605292569163287],[18004180997079186592,16696974679532814600],[10470464462365013029,13101354310846722096],[5552162911340453256,12695602851119021579],[8235042533430125206,386569842792820174],[1508526903195359056,10688387313746674024],[5758392729983926955,8310370258672748326],[698865588363489055,10298611731935102048],[5370071413113740870,15442337501092050233],[6411256966798566540,3396939750077541113],[9289636699884962526,12268652036103079725],[15130876014655620,5742006289181710694],[14392017344007806128,4519185862347473848],[4035571826080356359,3654949961646221164],[5542663681789672210,5027680775417210219],[1020617268783348982,146724064946587298],[16238337829178996436,12849616886300392546],[13374699858290926537,2333568103529974727],[12044466894928467527,4092898797405514235],[8118443808152114074,16303679681461639491],[10278909185753772563,8974059946057518234],[15319678975137896797,13533563542850270264],[12717057950596901320,13382167642080819463],[12621846071424848698,1143999891648488729],[3440722567226199066,2581307441883434186],[18188288962823657844,9369760144415914583],[4294704502023018065,14803083785256227802],[15498655512314268816,16625617574662958821],[17168060424706473577,15816092027834233107],[6638587435281395637,10213086126232626484],[18302318623928322947,13775090707713550356],[5189097057342851759,17800374622018242898],[10486828648061685263,11037663974779157289],[1261556136430071093,5896920832553625475],[3722642706363543125,17427416829299301524],[7469787825342656684,16040202701623910662],[17516673314613302619,11906719765413565933],[3730256184608865649,9854217720268591268],[9841008382208231761,6012257715345719096],[4725333176742738272,14171813730772021535],[17402894190701920660,14027593234780691904],[9674225579813027564,11250849375390534946],[16428716831296527281,10076912262866610474],[777354669345233657,10728703583130217611],[2473634651278017595,14943430026824875679],[3364833738117521025,7256032689722959402],[6210291534580723383,10984868140211703243],[3307410087032994036,7962582192892771895],[17791951436438678554,258279395160000934],[17738646885994632748,8008086497457925178],[5940766441332711215,14271129454858491734],[8991669117947422406,7332989222035963339],[14262878194504505039,11386273488480959941],[15405861064252615080,5908360066481489896],[4447059982365947082,9378084212355569237],[6306990976697541236,8313279886834534705],[8013552171848098863,367934970370854619],[3750556094287243475,426330242241897447],[15172945539009206344,11752429179928866417],[16755198130837364416,807925183137591383],[584700207873923260,16414892597936477132],[3074076509354434827,9047987804993632592],[16369446136714982290,12510778874308840408],[15328640816718143036,2920237424825556878],[1912649829781338864,9911795375929484276],[2160071194164291227,12400950088746107575],[11475306399607874560,7080732208582545020],[2812182458165709041,1727310628620022098],[17479712090177700856,1920848061877972586],[2795853682965041826,1636235044265193481],[11221769822532427307,11386744875858433379],[541752650129545955,15202147767806169394],[2445970598480424981,270179215366098736],[11443138466559966869,7793279133389742431],[16792464015616076047,11499709773218937287],[8226014967581264701,12697314442751081740],[1141331417111344703,11511024024372840192],[6681098799535408733,3852302709298604577],[5074324365195136140,10577066197184777451],[14355891667054011344,5369536239845085477]],"wires":[[15993128109709233404,14613308153521200990],[4889056810784954418,3338571623765146650],[10961308602427439714,9573100667128667919],[7986860351125341782,3448155476207287001],[4079570438646132066,3290130783459292287],[4583114047374983489,11953382186349959724],[8333500369460378364,6341517973456943424],[10335936784695461098,18301427045547611621],[11744135446917770870,10575830433848642859],[11618278352426395810,3863937057772189352],[15504354054502989825,17255140692127460527],[12271760337631161196,4222084047502941233],[2336663633217637509,10782669297216481731],[9991480904990312398,16086395312318372979],[15638759237874440452,16599303756805129499],[6761068981827896661,12540005019560597318],[2801267482080539022,15302438264012392418],[15723097835884720376,4113686030424630609],[9854674512907666692,16054174583062778042],[8265133876020597887,15690880630281073176],[9200454885887679021,16189652039795909826],[1994278769538330432,1834347856647845217],[7803360314260548972,14311363677092319006],[15952484239722088339,3032773446452982065],[601458650610587280,9503222669840637908],[17773050400733698104,15295974529214872882],[11556541352499195646,10384035279415929014],[14380575166848176020,8883339856898158462],[5343769557532832934,8023221734714716495],[2107951264448281395,372668598217516752],[8018227743126308518,6194660021696810925],[13370061503049623983,17665123578498708262],[17868038914948129057,2837197974852114908],[7769155984217049615,11756178085345948698],[8362822272734055665,14027001431976104905],[11955194444616647361,2002218552486826237],[7770047417653042502,10940401129936213155],[6894563505739168290,16700636154378671865],[8272964226897922332,1847196791031554194],[14729344578950096170,15819387149469253743],[7182489485698082419,4652782289706036101],[6450070494121603405,805858095684863235],[11002492954761144518,12106496971960249211],[7503303917235686218,16314394332544213226],[10028723570280849560,2283392023349254702],[14632175403650372185,2309562511474810154],[14115818518658065648,8235740016772757265],[5788025266573385503,13053073218677028280],[11125214619037185208,8120067362613595022],[8788475407023433530,7923281827353130104],[16025792785389473776,13289092673418353666],[17805338804739167356,2829661067919302866],[3589654271639657861,4483288498856894709],[10752693642206999113,4896386613544114508],[11193366327241465400,5513110053046667955],[2016591550575641288,1741129297764426968],[9098297283804498633,12133213812089523572],[3930102971678266977,9942470154636525444],[8493851882899261370,784081202182911921],[16857125864436655387,12742855935617584999],[9555134116445947558,9600049584008086593],[3691639569111504582,12708861235168128021],[9454284828652450013,1329143695531335680],[13544619629378269545,16427832902891756957],[4307756514082167624,7279856585573894001],[16485597549628240877,51642686017771329],[15584447680821249160,13756316870097639012],[2883845163187581862,3256935367348530668],[8317148821342530799,11468945325963296338],[5580121861361155495,12781132194112542517],[13346133619824516538,13575185090054375074],[6527085717293331464,16278554464298326263],[4029462734578290104,12230240020985907797],[10911782262885354037,8314538104589375839],[15934248969004098544,5403453845256533202],[2535633480730189281,5577130541880786605],[8369032734264567128,5425471739947679212],[17417753915802796341,13532229148788050398],[13523596649429933665,10116530242521604816],[1726026993646962478,18104703982802776895],[9691439389287184601,11000608960935134981],[18257686578856163705,15953705767286103336],[10702388553767605289,16707990059580893416],[8068578677334972355,3822261960093978609],[10014162008463549462,11516764424596970580],[14762483497918158949,4902240292050030715],[6985484523351306119,17919892693626560943],[3658440167106972529,10077829173009506219],[4811052220744440223,10350068067427122949],[16213917364791418215,2025014132722176485],[14711824299673792563,14990240337363471729],[9659584716263912568,6039062987289066065],[12313652474928464558,11484308560951202201],[18347850540034491599,5563775223218541224],[7202097119571974662,8363647326276447442],[5369764324546697405,5687603335639844002],[9525968358856936806,10237947510765657454],[10310074353868279046,14262353847470650662],[5084966199928069996,5248596821531481046],[12299680676630388729,388927633860997677],[8462294292223264712,11200746291790959157],[898531541405356701,8440423879618654322],[5937618548658962146,17103583693086711200],[2927659756011627878,10726170319879384924],[15019150018221912494,8586531036622658254],[17079100225142246740,11667213459541526758],[10678189649121290303,12024088316880895679],[14525842343352601610,2402019113923584752],[1481490789998948573,11870370092111902500],[8562039026716077894,15439947560099526429],[9685591671628642907,1952070533051552767],[12165002920422235262,4390289143744263643],[18169543128442554326,7617684607621182098],[2943833827727853489,12758458823238805435],[16748364804218387874,16895867629583829468],[17261601815805184820,18327624928839040398],[16825892205696510719,11235864018241636418],[244027264220430950,8610410004489069811],[636708193615349147,4278282176743856904],[4465498287935708990,5784460384413601975],[7187428994503739362,282411305300359386],[16457006489198905542,12597671126360842276],[7647652972923481216,7820376939285866087],[10185169422852819409,15571432719923671640],[11972945065640509753,2196308614007998982],[5496028257468945668,3036506140326866635],[17610840623165159513,9125902305873055543],[993069823945269289,17547650862654603935],[15036621149865765212,5339956620012696027],[9593944585140032990,6052776675645416145],[9887026774527888510,7548364579377116505],[11700469229315801085,12555075390585578031],[1560432699375251502,15851728891571516343],[11333872353346554395,10067692292377870359],[8905934457491977839,6417289199002527688]],"plonk_zs":[[12391580949275933757,8821770099137454012],[6342252218020012565,5238720581665471833]],"plonk_zs_next":[[17163192572795970773,10197764918376509383],[3403409093620189527,6069659688951872901]],"partial_products":[[17875889552424257824,5738848987650643953],[2197364262890000984,16478632417502461074],[15512570278178375888,18083223300248597554],[4948959482186051849,11123312131010617592],[6289272168093105644,13593265709852880862],[12986636488668139883,18344056785564791693],[13305425743236976851,3003108173379630092],[12683775018818436833,13331422921559229760],[17237476864865558075,5521856948775463598],[17318141717691889455,11891023800568338240],[13151106043907717698,12184923758204538466],[9017994596805377345,15508075907346881306],[4668273449237026695,7776809953599391337],[2004952168426870890,9125944762451604082],[10875455452715924231,10516010388862434607],[16991556317626519281,12265076619138673902],[14635420130019169109,5816910077688745890],[18063684300549118955,17407535531326759147]],"quotient_polys":[[10613330159291419535,4159202004671256141],[8703140816634597292,4225244519241827237],[16998905594112670923,15128909767773287628],[7642812693712161228,16274035655115930592],[11164450384971632619,15234495223904402913],[12250723213368654411,17651772954259382578],[7585209075123376854,16729030093352023394],[18446744069414584321,18446744069414584321],[16595494517940101102,5748790251324026675],[15810584717403838846,7734474510451018546],[3144401681464447127,8859455105233566113],[4283628193264940010,12337605019830408818],[15212798773517870647,13955060337398505009],[6892352646692327924,17294197735917839947],[6160318643331329366,3927132849474051738],[18446744069414584321,18446744069414584321]]},"opening_proof":{"commit_phase_merkle_caps":[],"query_round_proofs":[{"initial_trees_proof":{"evals_proofs":[[[15758775234507621717,386873473794195,5809584622623378771,14306751210974713097,11302554983959589528,1327832789599027380,236502180870392261,13264905772134066913,5857506752267947624,17058040426918110216,1342694698541376124,11247410261659140067,14350114415645219099,4583230930005435996,14076503119706401870,15880020041488722480,10627821187628142573,1044749384776247668,13803094214927487198,12544379753173392690,13057050371697995823,15330579406842572521,9707896952003541119,5786715142615771477,8959768511509209644,7466737346920902526,10422822089882229296,3504773151285322564,3419470529597640908,15847878555525589235,11410879681056200420,3245040583009025788,11698930509459870103,13570140684066883333,4107171135279491735,6816442511716333526,13187679564150780741,4957755858430971647,10756562738671628321,4016481060180503199,9005810410597864305,5421891320356037402,1065438370161549321,14370621258975165237,3366746491579372093,13006491237563855897,12466845178667283423,8450232994099053767,3884423878484462695,16694495941341337565,12276393389691729961,16037686545199925788,10895977186829848590,17156636392074348353,16170249794752475724,8130522156784339061,3758135148585897412,1504470367743606760,12820235152408801940,4728472998567873843,2824641811007953243,15118259416555888165,12215493150006810512,8316066871495739628,12009914754943290636,14195274612200124758,17522726866577553243,7499475354690611506,3544346123845523313,11718047683762303071,13490728387453084563,2218114863523928610,6026027352978102532,3747782856048583946,17203016452260552408,13031495329552308162,6244324079390071668,12856980774624272255,8466864435764048595,15680223617309057078,7581596273487594510,4663524874409993864,13442298349819084674,14052760883976538360],{"siblings":[{"elements":[17239242580999488077,11539643569776883494,6361888208514807188,10670222042682017864]},{"elements":[7372999055943322391,3141364051179517969,11032666934607065725,18114007743554457067]}]}],[[9107796823381699083,16818241499348717087,16299777022319025518,8287169742405572123,376258714183598315,13026986149502183025,10301698257265040980,11641150840159593374,17853449352901191962,2629611526615646454,11869193927653075953,3939177903971412578,2564534621613472205,6440130997149293909,17949324353578194713,14659817175362329701,15241406140910536369,6995100056035354242,635130890589199730,2535253958939898103,3975904728006945101,16863220586811790805,1351216244660481530,4071555695364712382,6055555360851423921,9541498917423420728,13112420747012181066,15671167133169760750,12506597918365809118,8485022949556297385,9748033045344531643,7156670229416695335,4241311609079035834,2681250753393461645,4932186409076346716,10699360409517437037,15526658194990367550,3189222375462990201,6532454420792119500,18257197926753371713,18198493468131711267,6522740821564568701,2502102946915708696,11191704500865694380,5001925341503033458,8041638605777938005,13843127350487169426,1554642176948794106,10061535048038697629,2720381934063932208,15808730798371048664,15059593400299396355,16818792853867504932,2029454476490067564,2240969371637390527,4067751554362618070,13961509235570093157,3070708865470863205,3214366109687418846,17176452202648283319,10849591950258172605,8109065214527399582,5030851266726800223,18075191779791575660,14568110306348447608,474861599460179399,17467756037234676326,5720044220413142195,6929562047244907495,15161988023207057485,10568932572365519636,12632981401046128373,4148541605667271505,11024780705968415512,6337414374853957024,9789235407784506339,11463215104855855696,660351453363580548,13504134212855897862,16200686911042369114,4677808870410116049,5063931227814557624,8257632762511860769,17282574532297749629,13662389025224658311,18143852554449017905,14257881207452883426,8424926045059867861,1551572599337458772,4429356077696033658,6732330743209249110,776215472741980953,1331360349410030176,17810744175007887927,10173651623955639597,17984062406572467973,17574315389903586039,14984019783925884679,17542231225497725450,8580909479266687787,8458716678637593367,18277377185170186762,12599781750791111187,13351711232948118207,16406849747846261779,3666907609958002991,6158759824122084042,4245190549527318064,2646542004673882024,12045686992593752880,13505301756028857503,8613916403469057658,3935103314592931169,7924265725053452231,16246727901709903601,17249086803906599782,1245870018102234187,11851724969693094563,3666215700939236110,4158830309255239674,18277386374041423343,18264855912116155930,7107730424048810560,1314045505292449107,675889833354876768,18435693480474735056,16073934374127454996,13081817221608652286,14796392148849930437,949275283130289666,5693480169603240444,11898917273469915071,17862527130534730925,18352825158895626412,6115527763500516579],{"siblings":[{"elements":[4689507950239423834,10455040152057299819,3704180430049165071,15433459521157988482]},{"elements":[6444848530783558746,15753263428135990938,97230722525014282,13121239098415651679]}]}],[[7672738634888759357,7228300772628482534,3032462065517203533,5186302717828799609,16554285787148056024,13189378491363895461,4052340454363243828,7942059330400588685,1475522344971973418,154110418926425965,3189588580504426066,14748704812343066378,13261496501993291215,9721478026725725765,14031354610168069083,18165790650214807091,3740248345047123969,6404207123370215081,10175620813713453593,12730758899532534792],{"siblings":[{"elements":[11008651319496652206,17271621044655441162,13442446460710627860,5678018911057495402]},{"elements":[13249153965122574758,5090773756675721835,9423331643230999862,14143234509677074129]}]}],[[7130148078471576328,10379473006867291287,13984853568096288730,14256973919612549879,4220840666747059324,14670780262996732322,9292314610272843862,0,12271095177976667588,16592079572264341866,1303257653717182843,10521842996837927287,1235559427196663621,2662319354479751752,3870922848792695313,0],{"siblings":[{"elements":[5113187503325397342,2885340301747824507,6592815064973389527,3153294030704309845]},{"elements":[11953638532976524033,370136659460033386,8614773404340959242,5907159334526019519]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[16924866050735876177,13816519302097419917,7464139112843182046,14437952329152815507,16102384223791600321,14810813990558044111,16662440353177875149,1061409571699162904,7373177684445197294,8117396090517610097,16950522942534043099,15190423556831993418,2013849530758379249,10106276030980799921,4688167895664468573,11199520023691915745,12916963807333958703,8891629328669208614,12116546715121470819,15688770843053582561,14350605526805601296,13147171646478491,15311619194950304883,6242159665686022641,15732692263219784389,13119615053780272570,17283500801830056651,8669172947497892389,5600112933692439337,11603617635739004623,10958013080565881122,6756936642788511901,6350951779140749038,5702398593327775113,5132363453483332176,8716842319797456142,11624620380491791092,3974923074366480131,379613444538228148,10530635117553576928,789756536524334219,6823617666578700574,7561420934971151619,12015542148157684358,14637549114638859077,2797283815309201126,3375500561784065355,17055717231604849835,3707972013117512372,1663599290483210682,6456202370538400436,17451983052281845536,11510162037317562450,9805177456638634146,6076873354448617196,9655526888190138945,2676435616420129592,4185640816350990950,17645109193608274006,13809507359805699769,6654978868455806684,14694826297195400326,12182790477580287390,7828078155477120532,3723899049361826298,12103278845470960974,12790586648153874605,16430188636519558554,12857487921086130134,6350598647806992999,14816410711584616461,9744095875078809856,9425670397198882701,10776752048143541453,8879552683345551973,5102716046529545228,15326394572236987555,14429893580759812947,9222186179475572142,7229097401750883501,2013355818261223436,4799155268953746556,2985183418454777881,17703115347578512655],{"siblings":[{"elements":[16260818643770995991,4039943982022423016,10581615478270533321,6703349476043001264]},{"elements":[14087148344668613763,1774479748128902785,17398878651719132826,6925124511054673158]}]}],[[6209288695096023806,11754821224810616127,1614401657169185710,9181154449473058981,14517406965730334709,421890669199208673,9714104680391328922,17888523133337981966,3677260629275869475,2712705186290328012,10843264237944478308,17837014986365969866,16560716173905403756,2709791874544526125,13562372614435410855,7707806001220352482,15162542632027474606,13206764077314701940,5528750523311948654,17776800351104087266,16233788205590489877,7467021167436256320,7133171934849595948,15170917993844420009,16799848466070345767,13038978791040417791,9389098043475229472,3743115210346796878,1259406948462186055,647555795806304910,17809567727648037874,9409046987924607365,900357612823170865,2520965418715058586,16951364619124390249,1904753273981890501,2570201422748521916,7838083160818167288,9115941526736666551,1613905464912189040,2834862830664730807,9236906199595136430,4769944967931345380,11101100094110727373,18056108466162317851,475151028685383330,5580990948808095606,1599115358005786199,16466670251688649696,1203617880014395540,11775552883182953405,4586708587334839181,7650966255550616269,9123105392514467318,13760871317618602099,6187380430054086287,3840338158153349429,13490934875370936716,18111705823504646109,3095668702904401352,10140306983092532948,17804134954039872559,9297416213707550544,14621580627532096200,6896432319106464641,6088998749724584878,730103051256216955,5262214445231281202,1077398998916936845,3011631429382192957,13740361556637458870,2807185630407502106,10715214476597813547,17062920152153564346,3761642593791268176,11795163930921014268,15326555755026814219,6721852160500021582,6416544756102094402,22017835527409158,11287595025063085019,12036034851439834133,15962180538838018483,3162820601875019167,16069721040789007673,8719309806113221190,7063317715566181061,482218899471597641,3817122305554089555,6507196247838022274,1021794000172919816,4793053188492224196,8678631991460561593,8888012136592676688,8472378062434278551,6782092739640867057,2975087940612600015,10290348549310225699,3908424408978431842,11480891385338328139,535251804290271818,1037710052729307394,15334169840488643281,3530216292144975286,16331411928017720319,5652889702168669680,16651431518779171177,15827704458168624030,10982839219327627120,2749294162284812117,3719550241728908732,17126519184019963115,14640826156142915083,16348346382602629533,13444811624597323325,12848647038506081153,215312766352912810,12331510361784429638,335944686971075167,14070485817733973421,1087724452286972094,10296273038821427429,4566382823291850269,11797837963931421646,13471524299337219231,15899108850724268410,14264415824084364113,3235234732392728374,13293933246812281825,15011924080503361725,12980633493300488904,17078831544486982100,13282388424748864325,499531308508936461,5504847955189061171],{"siblings":[{"elements":[566820395294042008,1761561378577597408,527201308512152841,973846767421319128]},{"elements":[2774777527650041750,7617353635091784050,11324987228534005431,13299582699468862202]}]}],[[1924453636364033989,10034907446602622016,3659268270437857121,6242967333957556127,4473239643433552308,5053270898846164558,16453673361723697161,7674298311178965434,14687762130981782422,9857227907909411837,13904281599248227015,5092071987576883153,9663995744100657234,10051480693717713078,16063277187024329332,6008706773411798267,14775171986767137300,13067357912002743277,7573022543235219254,16851983242475559807],{"siblings":[{"elements":[10633173739505056238,10213048887828042697,10973939443125239812,6957116582652844732]},{"elements":[11427885377882389388,3183865215102623611,6645418160864263831,5502024360765194167]}]}],[[16719487813682130713,1172096102568686463,15263096239763819248,11912205106002775104,7325715359253558388,7879487196319315421,12044799378188706020,0,9451067244461604693,5350386988421144989,498919034185752282,15344848339418363992,10427753941389974190,16506658196993015380,10222028555540498095,0],{"siblings":[{"elements":[5602316290589248372,5641873238802308333,5498020839002367055,5113497127240938531]},{"elements":[11505616727214513844,13422125188889298440,6416583308287105305,10395346502999301503]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[8851675123942984855,13286979971740557537,9834126998565970596,5809584622623288696,13247656080055627728,4777901864804610876,17333284365170677963,16436158487933390318,11490477147555676912,3072761297569234820,552643525674882018,8370546490309277392,2333494491959714090,17448991767313658741,17178276216956238427,11133046799753326189,8461253717621928418,5097960703174945929,16493020866127033924,10035082652103005473,9849864816006832510,2833206780844870255,18116694173237948464,1496777866531997447,799526242907756988,14127663263966452127,760194264724433146,15095308076896511973,11135461737293715266,15403897199445574929,17445510800734720088,14429340298281640729,6211456952353734328,17482060761998425245,12562394992956522618,1860693813630035491,8738934514331990160,8085131640039682970,1883824595765440983,3413781727385808209,8233761986726001183,6426306711136105278,3610557426250641538,6135560633250071285,12799631786109032592,8084371407196280122,17425411872350286189,10979313040582867127,18087042872504358927,4600987654125867230,1198356080759899761,933335246022977218,3354397481034292093,15818404046285795272,18007619145258756406,8881893302003597577,11127937698576551337,16588820276979915454,15572213127903066703,989673867378307301,7293001769981663329,3237039162689456015,15780235461315319557,15023714690249036613,4537127851533132300,6051776393843892874,17179768109940645344,8554315582424560258,10064970576445902910,12727538989908929847,1703492756478929188,7685564142936830185,759623113507426400,11012935820788927071,13355668965285845447,6295437776744953185,16074176728701522942,5160986149245930884,13748435125283087031,11766589459837687649,14728034349945049849,11470525794731213732,14104781483456996739,11380647532262937607],{"siblings":[{"elements":[14290926262318189984,4469540445357943395,11387126795916258084,5986630170827251557]},{"elements":[14780924131161078489,11232344161552745537,12663829209753110762,1955609769005186945]}]}],[[1751796706371789864,8389492722321835306,18398241455822516898,12481551404849230620,11278792137604253234,17333986410084892011,1317738802760581908,2720983024656856052,6424095037369343597,1109659732012068431,6374895136424401821,4478003365893973136,17087041742176647862,8791993464518322036,18146606435083680427,6635387850738352029,6152986238299933045,14786683562147922501,15409556706082526229,16181481626643778071,6134371752720742478,10606061668076092293,2414557616516081518,12460272647144153171,9802136161156512262,13800762346648981246,13061768322008871851,9288520445761061261,17942572224014528340,12430439209798728714,9494855137262637072,204542094345032325,9803102879158376480,12671423545891915193,2922973806835326919,2418347338820207167,3341471780642685450,12153767473063754782,2586581093642786840,2052003385471132400,7498039909363847049,14678569889795646413,8334519322937802400,9615829012992636147,5623976278603770175,2347830082651477306,8130487100667973414,13749952856801269538,11014365343989197896,17773546112316213714,3582887759963794194,15432789078334212269,16403224084296878270,17626587750717479057,10906528057625892954,4710284783495176582,14982490777050089489,3229601192955022873,7846247065947317524,15900233438643376711,12064544865459145882,7415054679315525971,17569423856797958544,14330996520932505441,15899001129861388510,12815795045288772652,5498446285833809117,5007223485066345213,15221807740830570484,17775720997110882339,6304773717395031422,5498770622989839136,11132862337157253160,4026970657946832853,8801611861002386340,10304059626273973303,11034195057192561981,13077798928789680253,16472552591643880826,15455483099810901917,3315087258015796935,6030633577684877168,13074259273205512753,10147735686179860354,10505872065646409375,13968315791777871658,9415123383328243977,6640487902755633331,6422575687099967454,849300708473429028,3785137778183097428,15866123099713646697,4087969892502435020,4678241177159895083,1673432034817211536,8558248803929565675,6061747590662355831,13780242189525283614,10755192048830186797,11846591203769661432,9321373845496566302,15487626034100841308,8262945057260863613,11286122729324743392,2341771865291386465,4077068741681694204,1871530944485207532,3289837678450346621,18265675565597774076,2838221433822666708,10433698121094403059,3701376489846909484,1066986107135050841,7668727706408712478,2033220902885136113,10371749774083807183,7633459740963760148,11376053584480971659,11217699052496362245,6848223315965909479,9543072332176768175,15163398185682025335,3489643335277761881,14215469455964251691,16906903150853933363,14175412385806495559,17621304981966525057,6809529984240929711,3608660222563160525,4483192888887353408,14073616356213172319,9691199332179769130,3778366953164211971,1974229805810252043,14398004195382170744],{"siblings":[{"elements":[9916040521395795636,17706695849820786311,10388710891812670808,2660040019813368076]},{"elements":[8192815758639541060,6706296117378705671,16529742212901771218,14816823582778946484]}]}],[[12612275191596419149,1923339754728818791,17420117221524788875,6540743748199180363,8421528176564597766,8531795031875473381,18431474012313579070,7265774171072012857,15467181920591354842,8939754691129633862,14315918983536325542,13406649360227042647,12512061660930766994,6555208145068956090,6571590192802946678,13650927010009446060,9245655285424254671,18000039461003666393,5245666116243801021,821684431411585588],{"siblings":[{"elements":[11142885485448599256,14712891794401184427,16485848838044883015,13330634944011789403]},{"elements":[10163373677421562940,8568843666495184179,8586980723393517185,17999155642592664334]}]}],[[18332968889386812440,9394240689147608883,7996101832867066573,4375128920797490155,4767485535368427762,15342614791945947917,381151511903574286,18446744069414584321,15455115238325009021,17733477553736456153,16745258056089221864,15903415050599727879,12188977486068566629,15700941355530251273,1042891479572994692,18446744069414584321],{"siblings":[{"elements":[17861259107350470270,13346428569057389442,6575395251066611411,9696795917591481410]},{"elements":[10398783662253636214,2332471417925761577,2571958879479269894,8535697520800831288]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[17206109735828519157,7800246827495717315,8020745982839718295,15714867855057488863,3032318802615629789,1169567726971474766,18077249475269052531,10285922619335735314,11648103021583209605,3996410113584517854,18021569007658151356,1121227614355612584,1592147969364196194,3073766620843520534,12172344610021173011,4468130253357913066,5363309130729316017,9060428272251534424,4327366249438306814,12824951185045586379,970387560941176564,1824699754772168200,16516673390223370778,15495504148671108555,5610781073527305718,9225766756719364123,14479804754371532149,16069417019529649419,17028164268165101450,14973099585692074123,12345388468971828985,10528414744792439808,17230049879188214051,16154658027059712015,15806738521538973459,6684427148667459238,11749556303403888769,12277889060912305273,7026639429275326762,642243559881271168,5613002337837507560,1314612325939215515,10637190245129486168,10947029513521575725,10695442475209097230,1990958710162532624,9599986486111589104,15654307118935242621,1889638351941074398,2585149121863491085,9584210455109621775,9973723166009271144,17569386003946470953,8837034270941763229,8599448158215233488,3035519488129568086,14838852793737000347,3963604704401543679,5368414199855749489,1818383580332167691,7422759722975509296,16541699519595447964,13735133402274667031,12507375995692726335,2491323809709365610,780565099070518451,13723646817613359804,17357164720707240068,4923388621861509606,11015651857441784430,4591101115229292098,3357641610537422129,15139876664150598566,14395858246625084437,10527568225023487661,470348566177183452,10758053878856044596,18226941559918030836,15711582105394125640,11670821929750316582,12032761100378838568,8846227178474138162,6522102506143216099,8814827997238842364],{"siblings":[{"elements":[7403663046154704761,5184547189845195558,12550045180944025872,8146440534872139040]},{"elements":[2620616561727944075,13455578190656343205,3162853890679506371,3383643176103145107]}]}],[[12568851523521900434,13486339453494873041,16022602508437282783,6591834744224042068,11674962719399038050,10313346117603081763,14065664931488244378,8484952434786589220,8079777305326511937,11854625019392306355,640464203718081707,16352743416582258880,2201993653893747337,409236969796572700,1113816759348813468,6964243491858166154,7012462978613866980,16048019696976684964,4281460206876859155,13401467091668973405,13818305047957721473,1049228258051572746,4968982890488096823,14837678296967098438,5118134682040056699,15732720115691948281,11283743827736031832,3649110957193920549,10476965321702907307,10417682364631269409,15389410282442915525,16298669698519174532,17535149094031884641,6175446769704403003,1783104863110567415,18358984705370296621,7659838779976882458,1320803654418236419,2271907567534018879,576539580039820827,10477941206633926015,17601055130125181005,9349218331269729442,1225477160713522482,9089714987704391574,9081059468572337199,12286232373620408523,137113551403642627,12154149718655616043,12456573898990511713,8221068022929934981,14695178186239009851,3186444920671083856,630841906313931487,4197650950258841957,9632984107508497005,3214432886183939704,1100395461848401227,10494921722891607178,3664708893561978097,13806533019251522617,16580628740064448487,17794142730867595571,17853647541657092724,5925603542214685338,14485270349131365402,10741962077975054938,18049959169316354951,9302450193979834056,17718871339169081035,8594940029629268027,11521617245439803776,8593397228834482338,915183881481395790,3418683789623563463,9767711440345731233,7907939255543061779,5808635654790548365,12430768076983723223,18239047395564258461,10737663884974606070,7140033604460508515,14064594989537576240,8233714060223427109,2938801565286556123,10138055496784123665,14410434487177650092,7452521588496496493,11917391066648199517,3408394995473359252,1642984233991193367,8248549098059997950,10298419509121255901,3329743833988377063,16801939180807861044,16129652271677676776,12096513098985760092,847490950838389122,17817042185770234913,3206011244135673405,15024959196295407986,10604166932534739288,4703410617912481581,8777942294480965277,12262153563050313819,11229250094002606405,6165875379772293892,9439222096124006280,12712691923697461917,15388302280614585681,9893147976583523883,4414976471337570509,6014199023532452817,10331863982287721175,3605074476431759310,5314516480476730406,6527510784646472785,9985328486167366699,15371406219157198470,2465721177148882677,7371980994114740419,2079330597804087350,7515069968301385650,17754093517966903991,4981303926432219349,1379756871723928600,10824354146228660816,4072351015012298705,11884580964549528556,11606651493765209406,5487579857065745829,2766201542126681675,12545441215445535218,12909823545033276792,3094758225964465165],{"siblings":[{"elements":[9256709042933570165,2688531142818770110,11441784156990234908,7881072948164727327]},{"elements":[16487938095250593750,917282748861945213,12496824388769292131,14495982945175210425]}]}],[[9658546326206520335,9538348909818298140,15352564581476519481,4534594499083000073,7171661744940453013,14342379170931486157,10924909116714732577,7672658862539910048,17972916527778266331,7670895383850657715,10425258085542388798,17017807807686506743,16279099781079527492,2101684466587964116,3509528972812771422,11563076098576743057,4115124359717931011,12064540123723508818,12386231961572095118,18019065757784650255],{"siblings":[{"elements":[3116478993762760223,12810931690871676169,5130427459448843263,16360078904517735910]},{"elements":[9263023543013681760,18179719915934235543,10700840944316430414,3351131312824231106]}]}],[[12332106248040857996,17811959529340387805,2738305515318552001,15174203295129404660,2884481559324690180,10244429679321510231,14780436413776166942,0,2948468875124901233,17328296006373001310,11578153541402571496,17378787233575389485,548045894373726072,17756623419726818195,15650684430658104007,0],{"siblings":[{"elements":[826171933221487477,14644949064028792818,15721062323596627560,10354027832481591618]},{"elements":[13398839180255659300,12639901066313772204,14930789053765785286,9381260246885052364]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[6081383232730957299,12231537100593663735,9028951210196915351,8712088703138035651,9062903963610724137,14941893713098800213,4581001816805602037,10810823613022781678,10527683056002284744,9898414260953408328,5639484381697087866,16770966891222305824,18434929416445638567,6686279143148790080,491853504403074652,1123097094060490,7164474011243401475,14001399934942124440,7396034798703601355,13461294301062095448,7314515545718397699,10285504105011035671,13908696317502368883,14450583084638866566,851471187188601707,13751791254782824573,6173092682790067073,15971135718500101486,3424425730638704583,16825662550870449504,8860043639039832510,14362683875237448848,12481713303323387454,46272622009596114,3868865299622134397,7839318709256588099,11081272550168339750,420101028552763788,10433317477208773734,6525270122192018279,5930444858353148868,12538389806798301654,18163560582674811737,5887848450053799350,16558427387265920577,18034348907535243703,2605978906145645693,6518171407600649464,4050687237046093622,5963396076090729516,3509114124151224074,7290578785591858856,4265931566184849255,3440580828124134820,13667716434038551298,17166286401027176948,4558731884728763100,15139969297728511333,17876202707430743760,6227397794070479034,6596022070911700747,10980467099424598163,13635995082892637114,10119407337406860624,9742580701280146129,3704230525019194654,15500214883749125260,2335077694864807467,1464783755937936701,2526849113256721532,8933147872433173803,17158092337783679004,12064424818214998111,16432666161404741044,13371433052303320001,5000196015846499811,5295799553313080541,10195625500013108630,4083106938202593916,15467334291060108571,8801034538749791717,14170934327562984872,11368817307745930282,4245340193596784670],{"siblings":[{"elements":[3788108192752209309,5764285458124953223,4876025311470937308,1697065922247651157]},{"elements":[5146134359815002436,4633941153658423848,8230102747931661415,3646387604866439705]}]}],[[18043987152862055566,9395661307624582090,14974337014595138413,13008432744902000274,8807001897713298761,16151298400953131204,2314447761474920498,16623889736624410954,12918486580201599783,6960873593310543153,10090759942613392607,8995893098138356801,7790374380488076935,8976497709071348658,15534580228875532001,2078600754494282429,8014848065336659010,12628099723218390123,10328587553377019096,14502198172129672719,626157346135053619,4878968188663430342,14447235021256517258,7799050551812032406,10106222984182715509,1232200860458200958,6095071767320118214,13353091143292265827,13516600083434250745,1594137826777440865,16292229169750792737,6392433869355894269,65069802295473708,18014685906872524691,5628662242293275917,10366226685544060295,7590523037338593959,16327182218481118246,13025528260627825379,13332477632175365855,600153753011968212,6274118460943843262,12191589295565930106,17796705390673758066,11232791987132166633,15259203687626805417,501750659885380256,11575437629101721397,5963665269951629190,8448977635137744711,17563839737645041118,16262645288495954563,13865125489297686208,11573700566794628062,16197759802346724520,17991542572915109140,5380136039372225912,14780874493024046130,8199535279455008666,16210983690098114884,16780330239318021632,6334453186099001427,13062413634039154709,17453312110455612111,11899507377673952413,16747978506690195609,13425872941646262122,10998973512715925,18257949304159267184,17470277217603223104,16156844375819621203,191351167622383500,4468869244590719844,16328574980792256234,13629270441161429037,4398498473213294950,17540839364487480541,9502919177857200532,11564781748295649753,4629987746146543417,8889796680050050208,15584294499184591472,8452974569898538670,6927624804775324662,3729322712528147776,3501754328700548219,2143498522442814779,14298902262600201515,12803504324053580854,9640783035267631613,48074014100573407,15594287936113154069,7247283465458101960,9981878998347017042,16930072603218890796,8672452189663087735,5854058435971246613,16855438855436326297,12449358195552717500,4929887797347487214,12178033719376820291,4754074946673925082,13464795205039438616,2565155582845662077,12837389378484574299,13592402775509245890,6961725240902252253,11239602280267727511,14721075723676148656,11517266100521544715,16356056908284513366,12730752098423984879,12774277278171272762,477895920383909875,3463572692221651641,14530473633980653003,1927582583420253358,11791450343606098433,17693046925414281150,3400306305459558142,109453838235722215,4841548013667600247,6563643495528607596,11691657688117713271,11425899378618289830,3777456674272703378,3895405725732552043,12616522385399311668,6876745232742914676,4244511318338876738,107489375634594971,2268172316042009907,9470667746332193805,3158675776251911142,15398478734856412757],{"siblings":[{"elements":[1421441945257568924,7732571242833086822,16925345642767804316,4457988452868825075]},{"elements":[12450432780342022465,16454403308535983110,8560124957280353222,1661073615384387205]}]}],[[9134795981137221308,9769508190421670777,8491956119676732589,8050183771523162525,2024658396556937263,14682384953540785043,6336570944734293927,2970331673644770533,12590256002164118175,8274519871688774460,1951209962540181368,15287325044952318062,9544298953281569681,6271796393284646931,10501315626873995037,15277970551098417064,4624545434102979264,6509111338546468134,7032488268341603619,16640101809367253675],{"siblings":[{"elements":[2652080519009539954,8413624966738978730,3053849780887272292,8796340232652093917]},{"elements":[601557221461585435,8052217955172876791,15668945336147309607,15182460188567573019]}]}],[[5304399385035097682,10478459625913297306,3109846687610646476,2280140234827503331,11053987714206352875,12464956842060064410,9588654805377424367,18446744069414584321,11132361839171062123,16551788521428088716,11185851480691996718,4282041527254949915,15881456478269174477,13196213102629806479,4008656738807059703,18446744069414584321],{"siblings":[{"elements":[7715250371640021961,2901328870938250249,255526876606397899,7996732718912050502]},{"elements":[4343441375984014013,7797257330453896990,507476921440800661,16110064409382319716]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[17565631475122486162,13112428807682437438,814657839979919418,10687100073143457592,7287583176578477569,9119957951894366709,17912065094023049988,12001559769958506954,1247349890501030371,5087308417645836219,7398662816764770087,16524655585167564581,11496023076072991062,2882936815197941317,18421628275382862085,13615285961234747104,1217449957276156110,10461960450316473632,561574932948938915,5261392988226429767,36963788263559132,9164850294867114694,10737997989809144125,4306952301124110220,14963079343147138648,16286627233757869662,11831708559580747688,10815796126821418460,510676066900126240,15541305163140882263,18393128724329928869,14157594831905582813,4329327111404598849,15357188344968816401,396764937644349995,13482615543640014731,9197483402030863726,16014565579788705443,11848667743940537624,16170822526494470097,2404997186846373889,7957316412688043679,3771898163941812242,14195364064937291513,567351891378815016,13136595019898101044,17422897611144875752,11932823705699681826,15599574133270197983,15479028145816002055,13608358995984024845,2916177584086613713,7687033070139185553,13404022303248111561,4486202424414820354,10426377083832067254,9822331989600191753,11935893039680802137,16920228551281010811,1499676085202553257,8480186318221636715,10285648472756480424,5738310774792282369,3607187035486427462,14168641485863246652,14098418211595676526,16413094492990064503,9333103647472289713,3112143557161723528,526758665457109891,5594545399592762047,14434557311662235219,1325332632391540723,10368959042329114463,3273821888404289159,14386742940437405981,9283670432780772711,12361895721614603310,10986471371611471679,2347319240314755218,16019526439705881998,4646599238042603787,1916663449684460034,10224024849529566382],{"siblings":[{"elements":[3586560659949534267,194943118788111503,1282749807679583513,8381895631914176563]},{"elements":[3560583152441324605,12581631521285452247,3424922011369377233,1328356594502091179]}]}],[[4869952380941436289,4133897440024983458,3163655068312267756,3391064538085196635,3287913934823146391,6928751158405507108,15521928648576117813,15365013406597443388,3827848148850518623,14782781322147411711,17536535945725015358,18006569616593368353,5700715121190851415,5913050461730549265,5397539814759118243,1318442322700803651,10416206125657378399,1310656269619331278,8654045713525353784,251878740014884688,694059065382997642,13422223775811773679,15617572109022153915,10068811470103675166,18362014416310082838,8876356642928996491,6319573854793448718,7475180706351595165,4751528096902087449,12472354050345667183,3098567340739551673,13143722221293035009,4980641919340002011,16579901837700620652,15173955526429261457,10242362294388798146,6280590026400305465,10857758549577732377,5166635296061771712,5221204836318748647,9497544584583980897,15238218244810951903,16259748325274055731,1315464825902461765,7847242499714550730,10745276121137600430,12716809712779311918,9760679498049907006,8396943065316192020,3642071137661709631,12098587030038109596,5084853937552350,16423026582905380398,541262764328525071,3944094823011139094,12158371173727949220,9266491508234560955,14529901605458047314,14107708727711416501,1747549562036009535,6587255549725702757,3280344754099252709,10681835662255538534,7717007364748530623,15400018475067730670,2653973720258224954,9822616871300498325,16328451651364026451,13745641265512253512,4701936230391484844,13217068500253690757,6760215125484944592,12352626395545696000,10073168371401941355,15356471264361166932,4205019972208608034,9748317265242466510,9449684263291691270,9067158955196991055,14347930247506380563,8748674792713101034,18027474092920050156,6225746766238269333,11997310057206389242,17047386578615986455,6367573569089156212,16272075527724564706,4506764962002036603,3983283834620166146,11669830868470751374,7363558026816155414,17180238904374352790,8554379383347091036,3329099007610366736,14017531040398146928,15531468339026271092,15617504950016457463,18436498207659801727,5260319641279508974,1400997834331645423,4454574660744047899,6936963758290217165,18273779559777385603,5247166122186531782,12398313628465495141,7214880500033149773,16044815517627648525,13853148232164521390,1045233374596888091,4382455009756195172,4598579823650283732,8493983326181656156,9955869747376771287,2161319015828536198,2406722771828859141,16639475423740663916,6167018949585208811,10597243581508279585,2341769993880140981,12864570773992457517,10963506502249843706,1012322526962434174,3285471091371618573,9525585567272065277,16153129251834829543,14707050782525833547,2285730865428598835,6799089621260591662,17094603051115802260,13539936263631007403,3926915441004952905,6818157056319385540,7089025223627784601,17790821289554049098,14786619180354077683],{"siblings":[{"elements":[15061691826736957240,9915668045891425051,6533197884414492516,15075383777978312595]},{"elements":[18359342378670632406,6583282831030225065,13761325622341558167,1621486753542556525]}]}],[[15150430742946240514,7062101738039626568,11864591143634874347,6579722616054591299,13118002360614588754,16626378146517657239,5655200947098923266,15571956619046051895,3721928978617443746,16118934338750349177,8189716277221107864,16914098225609802007,4560271526394666911,8079429676231398194,2463256631687868837,493311339551905249,5366517703704040806,14219488885705183003,6245197228394812805,10398108835473000909],{"siblings":[{"elements":[13323669970102024545,11692647813961214575,15608250790838222520,17395270194130061535]},{"elements":[18155623673109240123,3890620461936945848,8147107102465102446,4851216858920105541]}]}],[[16683445314949842958,4807295193686975800,1263540826981003104,2751097400051845714,5279949973617925823,15935738277452329735,5117543745109156527,0,18002327258523289408,15797312438689662792,1812293050436832650,3793855655518560304,3432580166534114985,5830158697187216746,4690997984177347429,0],{"siblings":[{"elements":[18192869065550817848,11564180804614035519,13517811500148457105,14511819963150936018]},{"elements":[8705372437769380595,5063216359043639174,15580412571417882258,7942865370644765714]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[6818451304028355361,18267702754962421473,7978985124536189629,16347180283393459135,6361145633664116926,4455738616292676380,2505258858791711899,695002529304632939,11791669609032402920,17430247769429014874,3041840489985252319,12405233163748057591,9086967946882017330,12809344966787472446,16995109035830011124,7696378616900359798,16768572322336357324,7138310819754603330,976034353398871488,8195190029382218538,12665899120601195284,16894226320065502595,12334585375847502634,1476559969351782938,10589562168234915876,17093929904015393037,8315255999445989029,3445625086030644506,2705443671223680051,16966889162923151933,5552571563239423307,8804488461843683098,4537629726068763647,7089974911085610365,13175105220525480345,18054837406984070753,11269971336496767057,15131729516303742403,15708299505080782151,18262795113895307924,16274373166957089271,9643495967968981554,10482233815547592427,1060415464167394507,4566034843881747793,3370011978221388299,6484480448276403383,406847886701575009,5683682927813364319,11724857305965373301,185561725735355659,17611084360923211917,14378842382509916700,1650941696205621855,2811845824638913555,4276143478404548985,9742406531622732109,16307781734977029161,18180239621708168390,10630789054813230509,1046602408486874681,10993030382099086399,5758863486405800904,12677472606196336166,4135189336602641425,15421928157050864969,10419922868804314075,1484012943339004916,4241287837895696727,5434157764056058322,4449849872981754799,2893471559936029363,729372470717296335,5564734422484916175,3424728838148950540,11249445306522795867,17229359667257574161,10492372424489954310,17635616347314077994,2396688502749791762,6429570616763658580,7144311893038058357,5712475057941560230,16490058840475941762],{"siblings":[{"elements":[1390080232068213182,9763957872728084482,2377482102278502929,15607802779117249212]},{"elements":[3612948930651156118,3695167220766880081,9672970109525569932,3405171955404497759]}]}],[[6781309989439544317,3877683856590928497,17636215601812533715,16779987632556018708,12574076700871997909,2179512248660320893,17065004260907820763,15886207506847621271,5401713255153563221,2654421249055619906,8699953379276247834,10093623179983801210,4100517552622423658,7219299579585340343,10254574599286671070,8330905602983808748,12271193894447463627,18342967073357461689,13207307650013158336,10301686481020339111,12439780721458593821,16372891391364760017,11473902471585036845,12783747263234532765,8514634067401317406,7398284993730628559,10288134077932066181,17276332434256180433,11355668110302492458,16162527478063501340,9953056689589994329,15451997781858385369,13385836350369908374,10900341077708994343,7176295323759567170,16979081616117983758,3663180964304793476,10195313237069541838,14795049336241011198,9452494574965094804,14261336867099853888,1968840624553537092,9221136903934626263,12253123147808947997,16937534502746825520,9951788812239777587,12140858276863223715,3935197618055564794,6276197601660081215,83774128914207272,11861980027922315248,10014693468156040959,10228637999340176316,6370804409135022910,5258360900925415289,3177443660587644655,16235500047009004942,9016287229681568272,16718745048855349958,3551530893837473035,14092471425168098033,7785628945244007341,4418023209513191060,530539457277408091,4652639390555666704,11713679310293919082,10287908354717065106,1390748145792758325,706465894089738673,3463560496158289852,160726746660243093,17340204787752472348,1371664180332750762,2215996554852862947,4686236313981683226,14978960363839461380,12725239428521718263,9504143704860538281,10793138438988887650,14629022825727869375,10893758902016322146,5560542997965390564,6839160092236827720,44435425082105411,2031057054330138475,4167018186601958757,8922024241884954344,11136559125705330532,4679078315547698556,10467592716140454822,8385196003178890395,7204066095526045734,7194204852197865543,616921069336771543,17326375600286285874,11842554690033635091,8565448384843967280,7321785429006618786,8164565621399781374,14117474919028644896,16876828016623713443,13283001273041888525,2859849693242369984,16088205514724696034,4681161628742418499,17416271239297732346,4411098601111115915,10403026337132337848,11232818986841332284,8469639841071321726,6852101042706010126,11054966202893161404,6015665099934560318,16753378334640611910,13742053639486567135,3492309751369220178,12682499421296130255,16401316530589184548,7871653245331342790,18368624226497041214,188650454144148642,194585751051085699,170059574334247406,8594486577933906981,4004468793413932605,13736943184156798185,7864338613429053550,17710035588268344843,17864962663169073711,16941851763982114593,3416902847917575822,17530431616498200654,11352888232425062341,18337457292073996000,477814703630176901],{"siblings":[{"elements":[12395016888907273836,13057213403098412402,10972322914477256480,16380256900976825685]},{"elements":[8845897462926753365,10469948641454447794,4925522377297220444,2080430585954504305]}]}],[[3401651229639823082,15155591173104217549,6558811886677298256,13312906143102884482,9271216141795770225,10280631673403874705,4224470691921731351,15349839368644149637,15231444827246522975,807849432619042976,6545272208111179760,5014747792644780331,11996788011097902059,12660802170378430290,3714844368515681390,12390098113610448986,2232980914182160045,6613060447849902003,9980489250270779490,11764807196180166362],{"siblings":[{"elements":[5532589419285847254,9740429515239606563,12397884417946939774,7448984655725655317]},{"elements":[49878317805500601,3944580471291044719,1531252891739312260,2425362765665968820]}]}],[[13390020704542199945,3866470724177273604,5748554993994581838,4539908977404229605,11902771632351509775,1837898957949154861,378650767182967279,0,4504174963655063811,17193438733773983793,14772452116884174492,14554429581758319811,5756418042683631672,14557013745900433887,13123846606064110346,0],{"siblings":[{"elements":[1480278448776888372,12718392196976371837,7095666899512370668,14973740580362854839]},{"elements":[17364570052461330540,10458571376407664149,15166870048502209015,14939741386096372970]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[7523476272549932176,1705103449660277401,15293099156288760702,12987255935512570175,3039713492757889976,14985757517583705504,16463281396947036536,18264315900295792233,6504680066613424187,9818899453292256352,4505229118076793311,16254154230653914942,550150885087903179,238666642868738914,7263087825434327605,6441484448657763453,15355939849261459330,11880255078065327636,7548728907907222487,1404533471563894457,10182522683244161323,4432022267057361548,36809750190862511,2007323010200318920,6301070494907111198,15960879221924507852,14593233930602551627,4982345373759219139,15717567256471167657,8183579666651717935,7987679558430830848,9121085415234512731,11405823280825644448,2992345704242460070,12251531670671756529,3440871582953478104,10413498251129187284,8838592883873327201,11817494636040018455,15838071642981736217,7471086904416913929,7705834353086640451,2712242372453624757,8470487735690371436,7844422034034383517,18070724207610233209,393279757804776244,9329088897709896094,331608844264232576,1066771209067611817,3480750949123961473,4795143132155156000,2982840093595289173,15666991392123336319,907965401824799260,2370360989828939696,4462365789430587825,3535174951793071400,3309129590422073382,9639563199592239228,15028700162382461645,2452787324455643740,13120196755126932152,12374179175077647894,2077690105363477769,4631007874748221341,13000282569068661005,11146247603951836684,7913044235772356699,14109977482899678499,1787482884378401873,14361596437212612834,17519562661821167990,9833824996951262743,12101781288359334601,5228380011625318485,5893472767372092110,10890259666607746506,620986562010665082,779537309370562226,3709390680188388247,10462282883827954253,2335155504132361143,13820705883305886677],{"siblings":[{"elements":[12177780083273276305,6671666562823518568,10183936486724414571,7643355834372816156]},{"elements":[17200885959217346968,18203122369288440933,1093813852588954452,1807294838185915938]}]}],[[447746370513897016,11537119302688913470,14826674177559618967,6333164933826111738,6109703056955817218,11309331914971402722,3304286640574207145,2853959240428185274,7757392552807779137,14511659323379954049,15388596589542887251,14995908026611543313,9795011849271440144,13639283528168806627,15521977062016899027,754509918283241575,15770734136184167158,8227521076326183858,4686511123725430640,15667229199267782947,8602937385884281478,11483375521398315561,9618018553025527226,13240477538143749143,13331151032236522662,6047535426392782506,4939899072013773369,6289563725987819676,11472091322474350122,2804092270671101876,262617558321465955,8513322178167080230,17647874026070607555,6828339562539568242,8486082982345580588,11586456658181436747,6290234066239302679,5767310717190878608,3386482796262098206,14674294692931415795,8580317341025297068,6978672284387311262,15673003592694865062,10068971958353868660,3963415571327043040,16054820689194921500,10026280778578833000,8178309371086226404,1046719197182223437,15595278345417975628,17730233516580378591,3622102692595521427,59050651863681203,17443070424566486908,328002516751049242,8999424187583818883,8717070448430123465,17742229097386782606,6851913338155318220,15146653268954593679,4591541524751958572,2589095207259908895,15449502506659888355,2525127545314227173,13203523869414387243,456323639684251285,16545854946518416639,4551885262954265621,11404499387083511230,6504263601525144485,7351573512755910894,8390323537090307991,16009965370924078359,2198069951239505056,6990807920966784140,11699873675226314040,14979959180495223366,17256366953432751236,15169367027165373123,14426342611978041367,64645075978528436,7060200000248824193,8934561500855322574,3252208276205200357,5241606914274350562,1529953555985779310,6642144930305604205,16714947037319766283,17662048889613441731,16775977224601092046,2485741543095781620,2537801806113461799,1130775422820256915,12341977217496522581,15268735999595369968,11983783737962544549,887683542390117976,12792271577472965251,14474091584432510684,8592279401513122287,1089566349234836023,12097444027916223128,1134079875951726793,17586353362925269012,5447427204299739786,17838744519866344336,1607182984704766168,8428547901345709313,14218020091427894314,6657488332552204442,2904063538410309004,11040370604564463638,14183314275414505187,13613204850767008086,595884816816779529,3630685707688172330,7756133329551103005,5114511971831520712,18079498368818465849,1003211111949011418,1224173054307858035,6979404760387428656,1612159925421396111,7572742502574565110,16672566027797488105,18173795694977539331,11889021499089615506,3154457626118492830,17219440876820162384,18179111856483538230,13770559830701020116,13159704848690148012,12267364475516680306,5437984530428083297,2017099134698197887],{"siblings":[{"elements":[6821224053636831899,15898129703594029821,12411902311484488206,4187254391153570567]},{"elements":[5834191965800555415,1524056356517930204,587122463915676402,804469421069973164]}]}],[[9935010629867527739,1778167711494919426,7472004449718049100,8950217358078881929,8665439668179477075,18320116974464339488,12712526353904575584,10372700546354927125,5193091096066705270,182002128004212281,2507852689428243856,17477880573186599754,11811319487661412253,6584166579703595624,8363009836877169290,8614228335029773442,17459746809962309155,1762604029886729245,11183399515315905960,892221819552015914],{"siblings":[{"elements":[8155101508023628646,16493572958251132170,5406870897732695160,6839300301800309473]},{"elements":[5029846025263910,16437451622629156004,6004404336352346939,3806765094882751842]}]}],[[7958216573330630588,11323490310233600782,4588430247844450872,5954362452273956457,10947594546174387141,436906963116387056,11361653448318457052,0,15635638669195772550,3351418723072031425,16734512443662839014,10920113819089703149,8322365956905913809,3633366646059854124,15991763753229041695,0],{"siblings":[{"elements":[9873095208686530670,15939824867482881366,14350070879122865690,4560594645632195988]},{"elements":[350904436840669955,15680989548758485442,15816758823924907713,4251371032728476246]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[6813457186201347913,16292758647703992019,8844653506261590739,8418148810775012109,257598705366079431,14188566667344261135,13054907711083636310,14937929170921287560,11113063179581523791,8042596091691475662,8088975227728187573,18101369027756630910,14943143602927915893,14978919543577864696,15654760751235657081,7292731374006035884,8439357553690963193,18422874179104399619,2911351474793379705,10768295678929100273,17410446462012088096,5954031235807853625,17423240168171036552,11752735854791789047,2159893997575447110,17849087447768289171,14430838415796105645,13247105220186075038,1783455347200879002,3872488841582921888,5457673965860298807,4112857996022796834,9744446854218927641,686697655644955304,6686902746222567697,5963971313932586699,5945416961952347013,7000849025639680335,6586153289696681227,4821726886423231203,15612959990111498080,4054663324186167904,4494381073432862930,10857722779233749136,2932987207271549808,13812516789503200337,18110420774186651466,4143022857424029963,13892794212034462707,15053718859175984300,4144507211974925269,4602827260634992144,4885625593176507139,6807348898367619461,8166762537334621850,1788555205280129465,16704565138532596904,629459479332617455,17954650422138512948,14676423773407282993,4439290709458852650,17145940255033179454,17521517402100614292,4812307369030413083,14965665358490059433,12716533470726248903,10586804178322663212,6688205588492027337,16751822584437025646,3035428332586564848,17750248568831761995,9714277578669276867,7223953909504756266,1599519121581393253,6368013417370768485,7295962644899175923,4773911471210532926,9441616541018779515,14141070459922059146,15925789236233281616,8288430442049947536,1914476272459174394,14112709828200927890,15156166554177497045],{"siblings":[{"elements":[11704025310434077720,9532838675057870925,12303433490119470095,948351445506016995]},{"elements":[17064536494791320770,12263744633261512961,12108241189491567152,10005497132141205270]}]}],[[12367740132420226342,4751018808570050720,9396418264939515539,13376264054680686305,16981261787975441512,14438495556604527447,4683165130452854857,16326140955015982615,2740447072047657567,15105155388304724024,4677230076776206640,12172006607714489991,16087184123500556088,10976168133197075013,4140913871559917727,8406186569480951452,15285573560807069415,4437289611314939860,14807395127907291618,5584312741609584861,3978687520266978414,653441384261217320,6173100120891488665,9752085336669757404,12757470045944064114,8367139958616021611,9603373437992945926,13552931833932113608,6824233779511831070,479946487469232179,16992122736021033991,13106165881688051219,8795244989503195522,12643978556284701247,15057227998104713044,8970795084661609159,5236292582420337633,11093757037055307497,1977060394879588681,14608268450573107205,6075028294068405497,14955084232899176622,484795312721957824,2582223499185288730,10897037146554592096,12548176099603806485,17002760512580209462,6217646798910909509,10674991716448418587,4071154966450854805,17041178307919812717,9341236069161471387,15614894790099126288,13643455677923347410,15566168501961640912,13572362136151272627,956301869194846496,440461106330755152,5514377394378863756,18207175726195668252,8878310870408316443,15984402497117905347,11237626825658583156,1037618433141217284,6467929344621527517,10658881549221107670,3816274162259690753,11537257748077608368,4144442449795273107,9400288626084291177,13394032302942578558,5931211343270945839,13596966707826574200,9299226979724140779,7042263299000409339,6136591637277672936,3285246449765000029,16311841969983063676,14806591455198516582,17718442130070849005,13888523110926499820,4787340193937335956,480303295297830317,10438374193032932949,4142161194246933800,8534609702903330590,18026813702128330680,15344334486550030146,637607139165860098,1408281498796382169,8946408740220061355,15745243798888467081,17821442992111136960,9919280140358050752,592564234304459898,3097589514365660938,5533732838929838098,16397926972648861043,9626309359234558742,211642605777293499,4873889552612626704,9723232607868771906,11068447126712898603,3047618303416645681,13306838228175170977,18363327098224465001,5785283025198710117,17757860452631051533,14598805249699506440,6650948731588225348,6327263639677072929,2796403007757921810,16575308223259268887,16702704315268364207,11267988926835895136,12749391553412179520,14240666996503260909,15912265583424512818,10412869046742192305,18180920359414790832,17898793293494012691,394178475728954326,10287638768600801181,4737473781900808190,15761672243214255686,225884788404271444,15850266390113857201,4641181782333751407,15215153907096276456,4487112766468302076,2038988493184826518,6887707575576276123,15236099882752860971,12939525953387728688,7908264762407813494],{"siblings":[{"elements":[12082190918602551205,13867335419599164758,13988950844273197730,15797350669523719999]},{"elements":[5632246949774961961,3376045650481023773,6186677218001726933,1357912867436607074]}]}],[[9701221930964718890,2884571014298400375,10593212514795614031,14720171422554371703,15393425983362545529,13765854519577869917,2343295660472730876,4073627657158552327,9582195039214542497,6610316881677275400,679560752891841977,6820054718397572607,12490545149458827655,12708523869643109358,7901956129110821468,12979901847583268104,18369927660373575678,13081065628928818228,4181343548039313779,1116263304906549168],{"siblings":[{"elements":[9584816414896061944,2417242609953459883,10466797770720183558,16538557937584478737]},{"elements":[12566641883168405607,11692957989385573094,65378010363449135,8665522396277807550]}]}],[[10613867323620499050,13502673603641980654,11004763128355481488,13690592028920046447,8678172609608549738,8540952712494641424,1060419682080693898,0,3476889248392522714,1344706183273610674,14942181304359782308,7591197818775273079,7703130403409085243,7256667790949204368,3605855572679740598,0],{"siblings":[{"elements":[18363003975059497513,11932335778309232653,12612682902962125311,2045240435676065551]},{"elements":[13942007446973689285,16389132086187986730,2949829949934421057,13071762915709538429]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[3637070305041024820,7115771682932846111,8611158289523224770,9518070641769033924,1414236033612072022,6147876731072370645,13504102503993610959,8210849875946775220,6771876429221686474,16410199602681622119,12372775030713107147,5663336987457811785,12580722705930690517,17090657838437182384,7774896984689503137,16212323194997952509,15790659407107605687,1338816195755076046,359989602991365810,10405185517321956368,15148039461417482223,18261045222745213366,18028880292742600857,3220707958064673304,11910186047229120732,15305670882204945070,11279996028369840591,3734042228569772405,7558526080657992474,3001601900221145638,3450170215377475763,317773060535564399,1097735373536301714,12615975359282791648,1270599954170946834,6656611499892164838,16224974003789441732,1403075659235291766,6997718511036935469,7643847128057754052,15085852564262096901,11477237190481183744,14985041832410328959,16813349468570663778,10173398532465637178,15857598709347778091,7934504258760404609,7376050159053236630,2840728545085223374,14741872313157947,13704845647880446937,1022125248820200470,13740675135639706525,16948491354477646426,14789724794749251394,705761185161613777,8582604557658600577,18257069041670641021,146898569877779069,15878895256307505366,1820417402209298820,5758860122156744725,2215328957670442570,14254262983789176580,17390582322684567064,10411845306820428296,6342535375332326122,5775175313759053125,9806327680441202241,3502367619086583741,9863578905882954097,12691132205133728054,6947328166316987045,15916101843251696086,15280311966061103054,15833965922602343683,4678288576301668861,1687226105749041911,13454350750410999397,10729281105222723510,951203192928886881,8511106208627352777,14642340534124220800,10381809804774474872],{"siblings":[{"elements":[488713213671729554,10255131012145408020,539496966595987950,2881937287605504249]},{"elements":[15881389161849586271,14711822840974163933,4971372235232643921,4593900484078443606]}]}],[[5522821425678279806,583489417503378873,2084590777804941646,8233175319507917263,3932863601229287545,9569888005459438605,5066614847593462094,14743220246691612817,4709112968543780045,8195286272803409086,11616762851475655057,16204164862022044366,8840466813726887510,2373680172939449865,6520278598058732639,184607710264618720,18116945710174278607,2812134456841027528,17211294308478401101,7388130170877374490,4710384232892067695,1622196702104558555,16285611580777477946,5914772261214761889,10394515232235573498,16803937591221952146,17043547741670046369,6642437087610095756,7134594096649333290,2050393832707399334,6760294818851118330,18335549483202562599,8837287542053396816,3616062155171005131,13614166146028791860,15161387294535488860,6913521946484981883,5734190028564639260,8838458088133231683,13678530289520729384,1199144361054657768,2529806382427756405,6692780418588024868,16772644028868817865,1169620831335187184,10355018949282434145,5496160769739958959,14288667190838751179,1543639931725580727,10586226513401511361,15597780895201291401,8842832867239604083,1140081634603765568,16226504262715477551,7529925827316095997,2892727279761477217,8839094766651599226,1078627504390079055,1981856827859363417,6125840821168036680,12846480634122040522,2981685085440400267,14904458548903405341,9446188498200215307,16009533018154271666,16455199006131452270,441951818384351999,12580690155521576019,8331922676139894147,3940638231821573112,5333975220516448450,10042731111335100678,4170574384543494693,3353556869880274520,15568378200442535898,7424868175099695323,13829552708343094363,6601512844432977802,13703769569034997731,15830050552508073705,11437147731091675149,4003049051657591636,2588511233480400608,9573794499221399231,8310397536690177282,491476287531242448,9709343147646097411,11400543051530220193,4119446364104300271,2855029394671150203,4176601166520444712,7025224940493935751,4843857236459551139,5120647362068626353,12513354135152637008,15540188980905413074,10859605696430753758,6561329157720909412,7348378956132646393,10553553339567373116,3637277101910860687,7179595900254321911,16935998894851452408,17137705112332674428,7198255808672524262,7038401590432494818,8087405882697880917,12647552697289583520,7410582112811479221,9907139824605083167,14150064781293417370,14290393439917139672,18154850219865624388,18244597535419062291,12475394794051369462,8907833277751755794,10447725647291873755,13604650644796106352,4600402289334924284,5822720608157422748,8672106266341662236,10041714133965397400,5306283078294883542,17261409476793630830,8408461321987381482,13505038221115103086,1378299190759490084,722718442649232340,8338754432744799442,1179599050348908403,9477340161288903324,11741888104051483672,119319419290684268,7259459957057306051,1507164269003235303],{"siblings":[{"elements":[9423107637836157722,12930661620656564354,8562998139717966983,2953609585719566823]},{"elements":[9373252055618863258,17154472301310040304,11593896903434722113,11245781697972110018]}]}],[[13500803519268107895,16676963830573843935,3696874852497441200,9833663173465582623,1702609325721293901,7349595950320675204,14504294571356490826,3772696692201807478,18316330695340168292,14786838441717757300,426178183582582834,13355485559183293557,2068384055542288319,7202111186344776205,110750914732950309,3748296162328247618,4521706089975350235,7298134526384982822,15635796437179319765,7015333128090949881],{"siblings":[{"elements":[17557221494658630188,3227766625044182532,5100918194047535245,12248056684551785409]},{"elements":[9249750410787918236,13926454221438005950,12355458512614451832,8052117305133254879]}]}],[[3181469947265262559,13137609443321458199,12662208839597353077,5133723406822271387,13557308506354221214,9857312505926598446,16123287365534611186,0,17333924400589783552,1842615142898341770,842565247351782977,3190954413276864775,14569991029620225551,13431727866960576299,4162147461873490487,0],{"siblings":[{"elements":[11527183259498892363,9946330918593603782,10404200333219222499,10345076201145684208]},{"elements":[1028094200351164062,8245739913546956393,8798601443111675475,2034456680882900879]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[8836978090687743154,13549589814493198144,2128250613769924367,6538810285485400212,4753053964216583842,7277638844854205377,691005071134789256,4458859453557574153,9501342337623491208,318069987574244243,8636507508877683602,6424083983554774208,590024983173091355,7369533319762470282,2114194793325551598,11919674715980179598,17343749218843871070,3899391382009751699,3869252091973477715,15301139156671757599,7896202519655159261,8929314221882307368,4290950380423181964,16410516446170077035,13976090403259287994,4166838079673009566,9288672662721844446,17851399054217435700,5032790387152266569,6442943672191265984,18436227342330655078,9422655925983738017,15476163271527459840,11136226761807966586,11642826410315056199,8088649184674601271,6525459136458253346,8748298519195091857,7608946003354687484,14871931379574945979,6341671703284195217,12269993593618591359,6802725334166171294,13057468042224634444,7789902318320651192,804339423146692322,7975025901070152809,9962595445968538665,17003723970909594819,12757571756091495738,316844417098369211,13211351809160054649,3296628539462058046,9334631147471294078,4426938607186518450,10502638469620764450,1551917469544694737,18102084809271715584,3755011872030229554,135822669718677643,18358286424480615016,2576599520628456908,13772398870264010506,12515580814497087386,8974123346514710547,6756185775039288573,10964315112954121674,163446531148954877,1073081905585536419,6914008853912245614,1816799148234313207,5053495830934388936,12372229662245721400,16912339839590414635,8703154528744110251,13932636468085936439,6465467294496324590,1145677124120205212,18303888997169833923,13068731546776181900,6131059648139353985,2007287162771660115,9474949152079747824,8070936194190651543],{"siblings":[{"elements":[11422696099124003518,1722648619028289108,11269302443359822907,10435479167988970166]},{"elements":[15724416129304146158,6744691714555510949,2439391946615683197,2210772101600168795]}]}],[[9525183876843723940,2855888622984381895,13397827375969806692,13136159722256745766,12194793062697918804,14289035974855999275,14104113606035733846,11700074726272371724,7657676687168555605,15196840661141196960,12158574790858006609,554517368638945278,6009704505751307862,1923423871360558116,4045737859191173960,1073677276680962366,2013020523755370736,18023490399207731693,14380257634889733038,12281267938104490994,12577556685391295359,17656943027354803905,10596101003668342365,180570151553248663,13947522652770864097,12966005721108000021,13115748014606836355,6459901494058173633,17685966319586755962,14912779109996924058,16729863485875013007,5606934102447123865,7798597546031439886,15200655435618375759,5538767155444601613,9832608252709175166,5309044967728659385,11952410702525291564,507429392472526691,2426525667569546883,4952028219316272521,8151680166917769764,5623408838135963839,15236967851794089028,12740192390300421606,16478572933473864552,12032110997605616384,11171077763560982500,5233834188287376226,3892135191500159914,7949886502485059825,2043427757875378164,12394793315599021301,9444960148926418213,12046405062648411109,4109131952134102115,2154137487647040110,6168122425655327583,2851582790837955521,14248022840591034645,12431626804282884017,1116719066415369675,11689641904664055258,2162315545497202261,4069261009970381556,364248986544923415,15194520070748252328,10154435127317248079,6350810909393814695,2032734260876987670,6860465777160780178,2666870107983421730,7958347331885729004,2611486550118106713,7617192097118544341,2133660715656691992,6970001929999720684,7802758383273051468,5123607673750272282,10970579474653867897,10141886718040170796,17173984168708185113,15208679548825852335,6303683773005881529,14633229333294315469,16761182666176309774,17601834971481853812,15151057515874680441,16604143819467362941,11462211421704018546,12966207812969447891,4303155025451864637,17604967046999687259,12728972398730969129,9573933112707721227,7291272932405433718,3578632395557705177,15705836293015410002,6403457640562379661,17194224226855099433,7264528345648923648,7865209057919604934,13348128871964962242,18150699355758892002,6417423360453671014,5975704486069800244,4017632040695545129,11683314088619591393,7491245645667599066,8554048746919809092,9901115303586045205,14460263531960304800,7654519418243737322,13324959657969144595,13088044668031900310,16283389552896428462,14019398258260794923,8007104644711951073,10948839969498996620,18177300913463366686,18425736795521682536,8630325619514212937,11823461680630577909,16032775339131490607,674281722851841037,12168850551779260339,2545005840851644841,10048973700327397465,9863781880944631231,4645838071152531714,5568697338563783050,3074819480530189178,15170260249296680649,2119312642183552557,3178524278227831391],{"siblings":[{"elements":[4798256028781857630,4342632111468217237,3020807894700357191,7917786072796879675]},{"elements":[6620612365127861797,10763711871947886752,15625697147150807941,2208506166988515486]}]}],[[6570304907838078100,9563661001782048987,9315780027090962233,13984002459343169423,2949348795144505283,3475824402424451122,4500892645913567034,6932864778256999007,14087989928659202119,9409308344681879837,6481456134485211004,16443137896036614355,14746212618917144259,15758718918702290928,14777506735646017748,6604746401745314854,5365823388267459936,1289536223877552834,9363982177168244101,10196210453755479394],{"siblings":[{"elements":[17502587065630573787,11285440413846890447,7064932615788276282,11902931414954341788]},{"elements":[13465335913465318575,16360439256146192806,3023457439489358989,16575754364873660209]}]}],[[17349047449195767496,7512055713966438558,8125354403415385345,17857270836136719355,12878420108096141951,10989515167089791536,5018786577533410646,18446744069414584321,13685177780943369921,11832836727308937493,2908042857234248976,15116982180940889425,6625759309044914832,4430262981804050014,8230373615390047236,18446744069414584321],{"siblings":[{"elements":[9456512157117045527,16480824560909710850,10216753297406972335,8432433274368676749]},{"elements":[7491611630538287097,7662638509464736186,8964323373628608506,14225739950046305488]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[17565631475122486162,13112428807682437438,814657839979919418,10687100073143457592,7287583176578477569,9119957951894366709,17912065094023049988,12001559769958506954,1247349890501030371,5087308417645836219,7398662816764770087,16524655585167564581,11496023076072991062,2882936815197941317,18421628275382862085,13615285961234747104,1217449957276156110,10461960450316473632,561574932948938915,5261392988226429767,36963788263559132,9164850294867114694,10737997989809144125,4306952301124110220,14963079343147138648,16286627233757869662,11831708559580747688,10815796126821418460,510676066900126240,15541305163140882263,18393128724329928869,14157594831905582813,4329327111404598849,15357188344968816401,396764937644349995,13482615543640014731,9197483402030863726,16014565579788705443,11848667743940537624,16170822526494470097,2404997186846373889,7957316412688043679,3771898163941812242,14195364064937291513,567351891378815016,13136595019898101044,17422897611144875752,11932823705699681826,15599574133270197983,15479028145816002055,13608358995984024845,2916177584086613713,7687033070139185553,13404022303248111561,4486202424414820354,10426377083832067254,9822331989600191753,11935893039680802137,16920228551281010811,1499676085202553257,8480186318221636715,10285648472756480424,5738310774792282369,3607187035486427462,14168641485863246652,14098418211595676526,16413094492990064503,9333103647472289713,3112143557161723528,526758665457109891,5594545399592762047,14434557311662235219,1325332632391540723,10368959042329114463,3273821888404289159,14386742940437405981,9283670432780772711,12361895721614603310,10986471371611471679,2347319240314755218,16019526439705881998,4646599238042603787,1916663449684460034,10224024849529566382],{"siblings":[{"elements":[3586560659949534267,194943118788111503,1282749807679583513,8381895631914176563]},{"elements":[3560583152441324605,12581631521285452247,3424922011369377233,1328356594502091179]}]}],[[4869952380941436289,4133897440024983458,3163655068312267756,3391064538085196635,3287913934823146391,6928751158405507108,15521928648576117813,15365013406597443388,3827848148850518623,14782781322147411711,17536535945725015358,18006569616593368353,5700715121190851415,5913050461730549265,5397539814759118243,1318442322700803651,10416206125657378399,1310656269619331278,8654045713525353784,251878740014884688,694059065382997642,13422223775811773679,15617572109022153915,10068811470103675166,18362014416310082838,8876356642928996491,6319573854793448718,7475180706351595165,4751528096902087449,12472354050345667183,3098567340739551673,13143722221293035009,4980641919340002011,16579901837700620652,15173955526429261457,10242362294388798146,6280590026400305465,10857758549577732377,5166635296061771712,5221204836318748647,9497544584583980897,15238218244810951903,16259748325274055731,1315464825902461765,7847242499714550730,10745276121137600430,12716809712779311918,9760679498049907006,8396943065316192020,3642071137661709631,12098587030038109596,5084853937552350,16423026582905380398,541262764328525071,3944094823011139094,12158371173727949220,9266491508234560955,14529901605458047314,14107708727711416501,1747549562036009535,6587255549725702757,3280344754099252709,10681835662255538534,7717007364748530623,15400018475067730670,2653973720258224954,9822616871300498325,16328451651364026451,13745641265512253512,4701936230391484844,13217068500253690757,6760215125484944592,12352626395545696000,10073168371401941355,15356471264361166932,4205019972208608034,9748317265242466510,9449684263291691270,9067158955196991055,14347930247506380563,8748674792713101034,18027474092920050156,6225746766238269333,11997310057206389242,17047386578615986455,6367573569089156212,16272075527724564706,4506764962002036603,3983283834620166146,11669830868470751374,7363558026816155414,17180238904374352790,8554379383347091036,3329099007610366736,14017531040398146928,15531468339026271092,15617504950016457463,18436498207659801727,5260319641279508974,1400997834331645423,4454574660744047899,6936963758290217165,18273779559777385603,5247166122186531782,12398313628465495141,7214880500033149773,16044815517627648525,13853148232164521390,1045233374596888091,4382455009756195172,4598579823650283732,8493983326181656156,9955869747376771287,2161319015828536198,2406722771828859141,16639475423740663916,6167018949585208811,10597243581508279585,2341769993880140981,12864570773992457517,10963506502249843706,1012322526962434174,3285471091371618573,9525585567272065277,16153129251834829543,14707050782525833547,2285730865428598835,6799089621260591662,17094603051115802260,13539936263631007403,3926915441004952905,6818157056319385540,7089025223627784601,17790821289554049098,14786619180354077683],{"siblings":[{"elements":[15061691826736957240,9915668045891425051,6533197884414492516,15075383777978312595]},{"elements":[18359342378670632406,6583282831030225065,13761325622341558167,1621486753542556525]}]}],[[15150430742946240514,7062101738039626568,11864591143634874347,6579722616054591299,13118002360614588754,16626378146517657239,5655200947098923266,15571956619046051895,3721928978617443746,16118934338750349177,8189716277221107864,16914098225609802007,4560271526394666911,8079429676231398194,2463256631687868837,493311339551905249,5366517703704040806,14219488885705183003,6245197228394812805,10398108835473000909],{"siblings":[{"elements":[13323669970102024545,11692647813961214575,15608250790838222520,17395270194130061535]},{"elements":[18155623673109240123,3890620461936945848,8147107102465102446,4851216858920105541]}]}],[[16683445314949842958,4807295193686975800,1263540826981003104,2751097400051845714,5279949973617925823,15935738277452329735,5117543745109156527,0,18002327258523289408,15797312438689662792,1812293050436832650,3793855655518560304,3432580166534114985,5830158697187216746,4690997984177347429,0],{"siblings":[{"elements":[18192869065550817848,11564180804614035519,13517811500148457105,14511819963150936018]},{"elements":[8705372437769380595,5063216359043639174,15580412571417882258,7942865370644765714]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[1378578396624103287,4469550363019109345,15413597128689811362,1805144975167355224,6452842945118347818,17061466042700525835,9908442364377620888,15557126284828876835,6899480873189727568,12971330971533533346,728087363132436065,3204431996140256238,13511333333486447248,6061673480195229898,14143816356008065891,1818432731357414224,3931833595148317400,3113204864077687682,5014242697766007980,17498814194817113368,17311377860557701340,8282734130308373953,5890521087855310378,6106682907563760123,4103854807982442127,1254540041483963115,12935174769028627692,15430869945408104449,12896469002554472325,5331356288418194792,11484351612989676249,8456647540373465481,12372119994208242190,16992808387778761139,14492583082823698275,12992268080647866781,6202154336508741380,13981801581159561008,6132666943793528869,991440255466054370,4850097939918506333,15678134098977100309,4031564655424526311,818068419515164961,5189645943730998982,11842070038265827069,13692845301045488507,8827403897965133335,8787664043284139107,6377550908376354008,4423636113428645285,17734567326342336827,14552896584348117004,1702153397520986778,14272468428791344710,5610838339090108759,3371431548606222630,10139868107266119037,12592960625135564613,5499681482704576029,15133245799952602032,14567897988115088438,1484931179986933694,15313230342259256114,13284093008880950783,2496313854275467022,5098157751613025341,2705121421207377961,686818305346538974,16904485625070999818,10485443601004438918,1742619884980803369,7290528959142072005,4833033083385056818,14191175330164828274,15066184151212832423,17046653095088947697,17553341742847539104,1225471260958366274,595291968017247255,14785935603072475232,13108696271497115881,3085093188467307699,16176612129916464983],{"siblings":[{"elements":[8666308870474411867,15887861559861194766,12876980660469857901,2656114809566731166]},{"elements":[16360478778702248201,14213185250312606651,9086499200688171136,6646506645725327276]}]}],[[14151110958039928206,7394957063411508535,12242808867165814310,13976352360198370829,8358989146661182082,8569464617876553158,13785435848077013753,13630800355789087095,10554230575815556605,14616377016907529220,10688582119194165184,1229864092567004761,13367344668988357727,11336187144649893577,5400756165528579900,5014864135328208240,15839030387932227408,9967062752987708179,5844970810641871144,3674306805203056632,7041787625299570386,13584311873593951632,10472174895092833129,11707522339476272780,3229850729138646939,5203825012088851979,12095531170229994245,16113455278124742464,4478384763183462007,14166408549421613349,731037362174469831,1194162994788624631,17103008501293998156,17581962057194559227,13142915721200998449,1615533323779955822,5992219192888278507,14271810211378588770,2136751723644597559,9324148814894201960,3096381714021267112,18327069242570063018,597431345816533261,15812024774511600022,16527149484239095466,7233018710134092124,11106731782515052939,13251743940819801569,11330477635559125169,9381390107961219648,12353550562043221369,10967567320236112241,14549978549963392558,13503785403089970615,13140030757534479712,1715884339932744292,17992635275612531949,14121703553138073939,12048701869355615603,838459978187592383,13853466623007790672,810501098634394857,12743485059154163044,1513274516563878936,5438189615237560240,13720892076479537886,6304731611991193203,12663528237611814331,9815073643966621831,9441524622697490116,2567826383881988313,3015966532178211509,11807241474556909223,12982235908081366588,2279713625292158652,2359676397270414582,16739800418133953446,13335101666867371783,3629284166095863399,17854922936885822206,13842562782298938121,17085922236760802889,13382884547423244929,5030769081553446181,199011361874410276,14245080294091779772,11367736803157506113,14043882336147617981,5472487469989377512,2678979599928377763,3051497433268885486,10665427887084536838,18400040647051682427,9766123142863329610,7022650634293741781,11846010534352872432,351594811382932240,13770623971097477907,17070992550054449940,5773350015853845246,11882743688796541384,11981786389506707791,8067921414808417335,12145352280342078335,5567183025363984603,2310438985826003694,1270722242752714968,3265309666552359975,18070558934783323798,1823059575891326118,990190310590949656,7022955855131271432,15989282211583041985,15671948822486590198,14551918789675161326,1275557785545619248,9265535616095599915,15096280676419859305,1939032749910125377,11705916268584741720,715220152665353712,14550507325644374474,11141979180151243472,10017501286716643011,1798820704627605949,9640352258189691436,2234174782988434056,3313080362061678283,16093536413995050359,15824544753666626430,6269019698987271488,9342405399470326275,8322589259665528474,17396031689086452350,4191237860554940796],{"siblings":[{"elements":[4043308736688805004,15211107125943304181,9698713125841909005,9522134767540957749]},{"elements":[13348549844444852790,13811746846741042061,9022570625927201932,3617097976418467075]}]}],[[2832397462743032250,9574208264948398573,8093431283246289968,9051171998310052142,8763060644909840327,11635929639995304555,5408467570208121390,16785592628968331789,15270724187886384506,4322248846212455415,2911230047109954316,9234099713739201267,13785575538457744686,5876817544493490009,10651122806381955259,3447504822084318423,10156525349450638899,15383550345790070215,3230222293828720179,12745504482151474148],{"siblings":[{"elements":[10189515537978251149,1820701775066026964,4682797569150175366,5312583881263917199]},{"elements":[14293483896532256845,16569249773156424924,3774451957895315096,4562607317230995715]}]}],[[10447485542520399482,12515085505825817832,18370258251172900672,8921428265472466552,3837038679047655665,5787301317578448812,699221203655424133,0,10149332456891834264,18426080330843974585,5154760379701867944,15067324843242371131,2509469205878971358,14934029371219357999,15862215962545358033,0],{"siblings":[{"elements":[17875179766627958732,9606680552783024216,7586741070809294887,12683946386664149494]},{"elements":[1671064832045564791,11629237591995309183,17247728980632733949,9899707112033562427]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[12859477545421291102,18446228248137782416,4361795131497918551,14311372612561139722,5379242149277978058,8627642225018949945,115730254930675419,942297902353529584,11389209183993738032,17550407117288337621,11598592940402831636,10211085719950329770,16955323756515407070,6164034066388038857,12084849160591017647,9330119569990365620,15300291814466483929,17601380643429101431,9517753525944914742,7001529188715059291,16972712563141389415,3160587271072116436,4317847705941557614,4300240078025938834,2625214765659220326,6958225314757406905,82174954683442812,13146492537526504995,6760197543089082558,12395597912335168400,12834625500800348402,2349479832784719764,2744530828115506479,7232403551014818627,9873231499280697132,14844137344663935459,4130885524324453482,6614756667455677366,1562700575212961447,1664222429132128887,12354578627381029905,17830858864538839706,7355034995159817084,11301333352691244351,978820723201213737,15445892715918509386,5904948948963623487,17787597772238734881,7412059590461973770,7632831397026550576,10682981151259233759,3809730450439746166,13693793783539736326,8811323332065702223,8863487687148049169,16024497145611305671,6700942582117658704,16018616740637405557,12138024807450332656,13356261883336606786,3402311134981020392,17684153610417017393,15988677082620064197,7943589248645343288,15488156408183691310,13694714888300237972,1139266919024164996,17071162292203630895,16874236178655428495,8912515112082110750,5261750303661675888,17642085411126001954,5991088517256647579,725663588230098390,15889535612108131524,4922688737645090538,14589899859249651120,16231102096230460947,3579784397897064166,3586753374366879893,17757803033897646992,5909063142794440143,3808897751270404722,1876435259226598795],{"siblings":[{"elements":[9813827625414474071,16196700304751013892,13797676968924664342,17882575465916706505]},{"elements":[7372999055943322391,3141364051179517969,11032666934607065725,18114007743554457067]}]}],[[5838705715348335037,18143948763217281138,1404446395862158708,6611724637198589391,16205216546200889948,328743867349799531,10141167854934501565,13470807739206175959,8575539538174490709,11429455698883649530,11992242176779870812,11971377474675368306,17725492882465469329,16480256333973433429,6711916020408441712,11510501963922216911,12200687857787449894,16268946526284090822,7332496020845807742,15544615151606264257,14784602101062413853,8817924064737737612,16369129627850634945,436762560677309889,3282095804005644146,2056105766564804946,1537811254179439417,3842268006001434182,7456909319318906174,438257148538989309,12079096619274948903,10476905246890404631,17501084093341550492,5352266406178515487,15910074349145534815,3064848889688620747,13765751706202319881,8920378737863661662,7146059363023527160,1095170577090830844,12151290955187467602,3674810888254369009,13255872975365223206,7777721040462363237,1414769008024994069,12079406145923895199,5213184771067488423,9050275896337535172,17043536773283525146,8081926202917866385,9779772197368136163,13023681929211947403,7351607224655225231,1002621425433549742,17378624426621546808,6578476804007163537,5980747952532242312,11124513074508406652,11074366719431072307,4051895462591525675,69718041513703149,8223291856594051033,13561973566774939315,18233952153265703178,1435633828889047535,5054296231703591928,10072520643614229951,18271581486342716642,8006250314404936897,3649004999861489842,8754660225029856988,1238102184812414431,316809337200995163,13681536961583124842,1020306548227712244,642265793081912318,8113788932818292607,8314316539309901570,17979374631437460888,17824234575052038568,14081161588427446893,3703271625519646975,13682161737483090850,13493183980956966109,6153381932441533155,11338729902031124093,13083536627075938623,7893978192061403627,18400070516752437141,13497714007940869863,4603104326542285455,4222763268788654993,11462453690366360646,16819219520408984995,6019258598601136950,11317730621025591109,9675064206212212631,12108880232403824000,8789500718196900939,2564117892843835168,8770343943717823313,15290507115471903126,5243049338977312626,17488014724660512120,3749361760964395916,17939394673459633441,3347435009408297835,9954189352733762319,12986287909085576340,6523990743618293085,5481579284440331775,1463755804814878495,6307999863952939363,16380060907867978772,13888761327879703937,9821994033822446765,6903866666739020478,2690298625523522248,3154444682773637386,3366888352928535035,17917330812169404686,3314313548410986136,15373064522883190935,12082247199938910139,8558647996358630681,16765885652211476456,3199441951792851726,15476627561320026626,5601554010938033132,8636144509895129157,2832787372392188143,17539750673305351050,3238036597977415892,11377689349609348828,5595433907972232305],{"siblings":[{"elements":[11901083535959271129,9748779260171515499,5695499477989303554,3314459570977600681]},{"elements":[6444848530783558746,15753263428135990938,97230722525014282,13121239098415651679]}]}],[[11031854630821311553,17488588292850592306,9713580179243544372,10965844731932136196,11850696284434853833,7516118971986985958,1446137310368624321,11584007256787992951,7148585723970940887,11158547191551831508,244134248039263530,16514626243726734041,7959961474504913125,11605184290330647138,18118985330290491182,15084632626617281022,9680291525439401417,2376428133966785927,470166382383261946,17539566982922963816],{"siblings":[{"elements":[15498784765821772519,15908904487665361090,1243696986989497044,15867727026455959844]},{"elements":[13249153965122574758,5090773756675721835,9423331643230999862,14143234509677074129]}]}],[[10493782243734578008,489249452318594808,15836451875735089114,4803940500536775444,10788702077167929606,4825259111419137194,3653220609092875999,0,7108264036389625017,1791035797872983868,3701348344249896938,10297147061343376974,7926031964997414141,11377983013244348629,107583205759637740,0],{"siblings":[{"elements":[3863739244326879625,14612161972025749421,2046353794724243100,13704746528523454825]},{"elements":[11953638532976524033,370136659460033386,8614773404340959242,5907159334526019519]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[2075855741644996291,9157067040989208112,5294998378757727296,18146573039130488112,11796760360434000413,12137940671652044236,60092273779548801,1796905377868388397,2733633831238396526,6532289241715518362,9205494970344250449,15689422995177277563,68762038141037454,4294010356562914312,3194028637873311491,1778551678138317793,763080260502308314,9991794465023108716,3850292501224842372,10995806390610363130,13391148702922245120,6432730835747473748,17937578682530406517,17835094304873103336,17919866796104645938,5061950529677392271,13425758741866242103,7168440889070900695,6647497964193582081,15785624080622359453,8784849953568480516,614357895425397202,6012695052281117472,11671098996728851319,7796267177051840013,17780525432626520643,11126958244758111250,1704449705218433320,13839005715079369719,5275787110927945049,4941333151907014442,15653302888835266379,4866652889900333198,12698421719591218443,2884461095163956839,7562566695966314102,8044592711268133205,14889346065622183351,8062063458191250064,6126472711169187038,1326059077718041118,17976641102812395974,6379834301292450935,7605956193794374401,11027865661708221106,14980909491850006755,7184579789069708505,18070936649269043332,6827714151510374871,16459498642841377126,2470368653733780370,1576843631870717140,12632944136259188223,6330444776106863944,9950291332725101329,4419025891602067335,5251621040734299699,17727538304377433361,2115919981081595234,3203325823177686760,10015919392892486056,7180900670771471214,7469255487899468559,17339768573158833224,12114939887655650193,12083549689080629000,3447190975648050147,2815566408580707135,3823441941367331783,17482051856852143558,6196020286283934532,1852384701033602959,17535449727704879548,1152492433505230309],{"siblings":[{"elements":[13692170119849387599,13778521954473055577,4370705135912326605,1484315758506010359]},{"elements":[14379065715719750302,5773497642325633605,11512610239832849658,5628990104839659425]}]}],[[13823778537223644569,6534423753809855158,3414197425943290709,15839984044827517458,14682414582371355913,16786514709509069084,6653237482665240475,6965162956513735886,11946922830987650469,868565839412823367,16399176778010377346,13868207889118787374,8918503848591627091,7428842993496260447,14521424103109485854,2135749355328596594,14849706412592907094,9807259531696557067,15430209391035954407,1444800783206413237,17020391429289551788,798416595690903972,9451688687749667650,17891360837175223733,2020964904866882437,1129927613844617380,9772085247303411648,2527908798897650594,13810433369604292983,13185333133229804425,15967727495526778988,5413792747835691881,5013270101470804598,18046325503924847797,13216112335649344151,2661572436516520560,11248306189096250297,9124781554064409734,5266907702813457988,12062213994202666884,16903306350744105999,7013165664777530831,10746976448222974873,6213781553044992196,8326682468606450965,10067064315499856221,719827519570433529,10999914272463601361,3947270168638340001,12105372054428156782,7040377350063527698,17170507954071548977,268777701264108454,9878029169843318228,3600968290885234381,9293110565187708145,10537970719863046851,16273101446390887709,10816095460419117088,16905533004669133378,18200641808561405155,2328755798589906223,15947804641113036843,4021569776940940650,14337956648836057314,5272402819835329451,4988981636310022929,3522004100861683607,1851372941514423102,2595656729338975548,958093524351444101,11167530072099805740,14085685755639719549,11039617313222031968,13073841327210475478,12135592032339949815,8436195280922228180,7872407303181250621,340464303556585366,15098862629713636867,6093626792942750653,16732160428109043680,12082018414842161293,14212722737622004953,14147145759749742813,11806382335933372408,12091704089775495986,11148263165435559513,16816306375301495961,3293082418668677638,10227510611172195233,8634578327695323408,593262627569145418,13221739021282209434,11211087013472079038,16707625502564828741,7683287454977745721,6500157602626014581,4883553970277698090,14613990614797881207,8641335057363674026,17953744502093144555,6036710684758721812,13306670683152629716,772849925630574716,13658558302967216745,9048462561751309303,10082434772957993213,4710941253914766463,10006151530954339664,8342480233798961531,13983517148069775639,8913052442482894107,17520580041189037769,2220503078165457323,16337955380793771365,6916149611163857099,16605910260708177549,17769213812113724333,1320226839857182403,5328752343663866208,9950283671203166709,14494400769284112878,17816544621327338237,12618787123223813381,4956285865957459713,15981149213530484431,8007972942033638921,15302652207203314663,15121713388417664008,962318253958578151,692132066362192355,16480636584587601001,3217272208864473719,16256982000303564085],{"siblings":[{"elements":[8967022420607044528,9604277016331063822,15053479888876351830,536916284662737841]},{"elements":[13464487324714941373,11595051310106554145,4998535587759967835,7658420254065534001]}]}],[[6357099629691611776,13292915272182005626,3867364745937992333,235718963195135953,4492870016593481436,4915682819165605817,238958318460564061,17858946313914024242,3829545495356442349,15320145196394420366,3896041089813278338,12730802953054349215,1562723977997984921,674924562760907862,2674597583839394234,11633846862209867663,3083476531465031610,8031530644597061648,7934686726499322972,5166238072779239568],{"siblings":[{"elements":[3293815393164281257,10695106405015419729,12064283952025628613,5855554746881917366]},{"elements":[197953483841351267,3129195322176856089,9134968313978198707,3682554741810120565]}]}],[[9053374833748895312,6346684806404176735,8874906233709426360,15206687459479648469,843071682908343693,579694703243778979,251467032790574866,0,1956774179866491704,11171811998695333397,11761267806613334933,3114901072744742647,15142133904726932748,10691566182987128237,10710790337472419003,0],{"siblings":[{"elements":[2829551762098216841,11126882351500936114,16190494169184930320,14269330711240885554]},{"elements":[15509831967320566015,1182397968650836921,18281795383184005963,5964328714956927400]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[10941971085978489724,7222224546851531826,12557767172364168977,3892838391214240515,15351912204405559916,9527570336837530138,17876557154109427567,1246307958281214369,4003328231135468665,6182242846065829798,4374990392724983338,9322821379349977495,12905675182917246369,12382841594731550914,8154557435786515889,12197868254769243692,6699043450796740378,14631758026829139922,15033439997445840681,8761112247922528184,5866643946121440912,2079111831809901297,7153105294260182160,17347998749673269492,10946389674251792789,11326609433635247427,687082893719363309,18243633296803237795,12375065637235278232,4688491841131783073,7925805642293300340,10393124834350767741,10776474764986899608,4555028214514722463,11266211579777681389,13894745427675344149,11980725414298740766,16150253956414715631,7247197284432400403,9570494346932849381,7247715513939622727,1703715442275987289,5241022464240352900,12560560564613884136,6485291511081152824,13890337564022345948,3015481300340805978,15926106214505030022,2132923519938763500,17433957785498753101,9046926907758099346,16927309199558369710,11401264145131306583,3270349480814371152,9853735826230783929,4292203219316414547,17913757518438557740,12242873934106799527,10093821790615114007,12296738845373276229,11571375965581081489,9477013212992840974,14691156125539517334,9679456677901312229,2077124821812667663,9473286807628710781,3291196699695897182,15924700248089001690,6555798430277292193,526187528352117388,6956814260407044594,13551583834674344578,5399339885138129580,8997658853242114760,9007656417115259689,15742992675189173855,14200727487610928238,8098534693976493404,12308146271337653168,12850101888632118164,1854519344194910139,10823112296344047974,15239242971294030837,5140444432936089029],{"siblings":[{"elements":[14941177973413750719,3764610578608574585,9648978245898088610,16071586351439427254]},{"elements":[3233867220909638017,8698185977443146759,3080105169737877659,11915468074270704376]}]}],[[4396239756246541332,448290935397962723,15959097102270256759,1851308883761894433,2075507873810668837,2746197300896623592,9544584757288037836,16975520627677557237,8575029265177668683,3274390391570940886,5670095113893194838,8639669450282284602,6899095129268775904,6308777096436197401,8307346362708792081,5103509550294524266,1578112347030294994,13416882920386313149,12251974727172032684,13451426521000699419,4770288593300682638,12347853461452843137,9899238661914641578,1434999918005862983,8199226113893052438,10595947104539349271,3797241784882054765,3955551902808430755,13981010521331652324,4259066809078588352,8574350669347422283,14874878994523803219,340954489967136538,7967688272649068479,2559983824223427855,2582791892824551407,9783523043603763393,18328846849993017895,787327815030938504,2095342575328604594,3951113658413600925,11117078228167341931,361727102908890045,16616747773640248131,13671419060979292081,385469496294418480,6578590162430321419,15744776713785586768,8128788056955339346,1803332776670759668,2143123215238226071,18105363406070667866,12550135732631899440,270256895594165961,11237312240756111972,9821305997245069950,5659480713440209566,15454344772576396717,143026878689479408,123504402091368351,1887229764689427173,17982633058546236450,684362095082899808,15440686545385637064,8305444519033168409,2107879313624845237,7627251831879475844,49566176578381874,10551463667173986473,13083609627549772570,10553138664248337372,17021873308097713829,12175158360055489458,15135939122016033671,5557150879480049779,7777184837502429795,5613422093995065038,12879677432696176348,10872517000654398780,5699064301516008406,390547697209228616,5310378167350556407,3559721215826992558,7103420183131973767,5455691046410740617,13676942718571812531,38949112593886944,6096991161932640094,3543034384603201960,13607843413503035059,14315181851725070917,11354257536878901147,10105148155482087240,16658321379989455983,12848201393657777003,5029051530684216365,13686254466642789403,491701156550529603,9052872560029254167,7511154334435898748,6433456704022886029,4189618352845323784,13465686338894761971,13944304782704169744,12094068679070982115,4070929485931936386,13074978201077763298,15735264156720951234,9259319105063155709,18389135895131603894,4909815646997886567,3767082337829554045,11393827366120705141,8663041585086512181,17014819619549402778,8930205404563380571,15845552121851227292,10891616389480398842,2180498457340888573,8479140711065860091,7418212621717482833,12487775603387468852,6291578676451598575,7074552875691704553,1179748008257696739,13637059118201200819,13998411462221077900,12493779923523335103,2605185707412287838,17301166229923065695,2214911944774681987,7984446819737495653,9160928213496161258,14925362480388710666,1732437523637134906],{"siblings":[{"elements":[13412956080708876282,17242029059430654924,1754449327401799698,4187713560829701494]},{"elements":[17425144728934582193,14939775513103120459,1160319766018238161,9287853699866130894]}]}],[[4736272582058216070,12164837277180212059,3159789716473720209,6349209988818078765,4716260786987042462,12247675763596894053,9851332096400934208,4321478721066814466,8220966924917821234,17580059681040641593,4866061413116895347,9273793776004005526,13693030848537423431,14621287548928394465,760594932976116929,6138111391504708602,11139711233349580439,2159094812659070697,514070993187019572,11940258961840988047],{"siblings":[{"elements":[12306204791828059261,11233951996211621040,3075879037403152205,8290707409163041832]},{"elements":[9040254179207772056,3725954116024159911,579446427393538168,12460963624415718766]}]}],[[16730659696132907460,9820163324726627891,15933879428146858018,817813004995897300,9587431868569695517,16500083088449442785,14613789109254890173,18446744069414584321,2695358537285559133,3981398664770551406,5770602000961033173,6073580193637692554,9816263514389623007,3731905307651469019,5523725521312659975,18446744069414584321],{"siblings":[{"elements":[7867187041769086764,4777096218685629225,14661171027233186548,11420442120664971805]},{"elements":[7502452631934274601,11782982809276846489,18122091354471366675,17733080852835133650]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[3637070305041024820,7115771682932846111,8611158289523224770,9518070641769033924,1414236033612072022,6147876731072370645,13504102503993610959,8210849875946775220,6771876429221686474,16410199602681622119,12372775030713107147,5663336987457811785,12580722705930690517,17090657838437182384,7774896984689503137,16212323194997952509,15790659407107605687,1338816195755076046,359989602991365810,10405185517321956368,15148039461417482223,18261045222745213366,18028880292742600857,3220707958064673304,11910186047229120732,15305670882204945070,11279996028369840591,3734042228569772405,7558526080657992474,3001601900221145638,3450170215377475763,317773060535564399,1097735373536301714,12615975359282791648,1270599954170946834,6656611499892164838,16224974003789441732,1403075659235291766,6997718511036935469,7643847128057754052,15085852564262096901,11477237190481183744,14985041832410328959,16813349468570663778,10173398532465637178,15857598709347778091,7934504258760404609,7376050159053236630,2840728545085223374,14741872313157947,13704845647880446937,1022125248820200470,13740675135639706525,16948491354477646426,14789724794749251394,705761185161613777,8582604557658600577,18257069041670641021,146898569877779069,15878895256307505366,1820417402209298820,5758860122156744725,2215328957670442570,14254262983789176580,17390582322684567064,10411845306820428296,6342535375332326122,5775175313759053125,9806327680441202241,3502367619086583741,9863578905882954097,12691132205133728054,6947328166316987045,15916101843251696086,15280311966061103054,15833965922602343683,4678288576301668861,1687226105749041911,13454350750410999397,10729281105222723510,951203192928886881,8511106208627352777,14642340534124220800,10381809804774474872],{"siblings":[{"elements":[488713213671729554,10255131012145408020,539496966595987950,2881937287605504249]},{"elements":[15881389161849586271,14711822840974163933,4971372235232643921,4593900484078443606]}]}],[[5522821425678279806,583489417503378873,2084590777804941646,8233175319507917263,3932863601229287545,9569888005459438605,5066614847593462094,14743220246691612817,4709112968543780045,8195286272803409086,11616762851475655057,16204164862022044366,8840466813726887510,2373680172939449865,6520278598058732639,184607710264618720,18116945710174278607,2812134456841027528,17211294308478401101,7388130170877374490,4710384232892067695,1622196702104558555,16285611580777477946,5914772261214761889,10394515232235573498,16803937591221952146,17043547741670046369,6642437087610095756,7134594096649333290,2050393832707399334,6760294818851118330,18335549483202562599,8837287542053396816,3616062155171005131,13614166146028791860,15161387294535488860,6913521946484981883,5734190028564639260,8838458088133231683,13678530289520729384,1199144361054657768,2529806382427756405,6692780418588024868,16772644028868817865,1169620831335187184,10355018949282434145,5496160769739958959,14288667190838751179,1543639931725580727,10586226513401511361,15597780895201291401,8842832867239604083,1140081634603765568,16226504262715477551,7529925827316095997,2892727279761477217,8839094766651599226,1078627504390079055,1981856827859363417,6125840821168036680,12846480634122040522,2981685085440400267,14904458548903405341,9446188498200215307,16009533018154271666,16455199006131452270,441951818384351999,12580690155521576019,8331922676139894147,3940638231821573112,5333975220516448450,10042731111335100678,4170574384543494693,3353556869880274520,15568378200442535898,7424868175099695323,13829552708343094363,6601512844432977802,13703769569034997731,15830050552508073705,11437147731091675149,4003049051657591636,2588511233480400608,9573794499221399231,8310397536690177282,491476287531242448,9709343147646097411,11400543051530220193,4119446364104300271,2855029394671150203,4176601166520444712,7025224940493935751,4843857236459551139,5120647362068626353,12513354135152637008,15540188980905413074,10859605696430753758,6561329157720909412,7348378956132646393,10553553339567373116,3637277101910860687,7179595900254321911,16935998894851452408,17137705112332674428,7198255808672524262,7038401590432494818,8087405882697880917,12647552697289583520,7410582112811479221,9907139824605083167,14150064781293417370,14290393439917139672,18154850219865624388,18244597535419062291,12475394794051369462,8907833277751755794,10447725647291873755,13604650644796106352,4600402289334924284,5822720608157422748,8672106266341662236,10041714133965397400,5306283078294883542,17261409476793630830,8408461321987381482,13505038221115103086,1378299190759490084,722718442649232340,8338754432744799442,1179599050348908403,9477340161288903324,11741888104051483672,119319419290684268,7259459957057306051,1507164269003235303],{"siblings":[{"elements":[9423107637836157722,12930661620656564354,8562998139717966983,2953609585719566823]},{"elements":[9373252055618863258,17154472301310040304,11593896903434722113,11245781697972110018]}]}],[[13500803519268107895,16676963830573843935,3696874852497441200,9833663173465582623,1702609325721293901,7349595950320675204,14504294571356490826,3772696692201807478,18316330695340168292,14786838441717757300,426178183582582834,13355485559183293557,2068384055542288319,7202111186344776205,110750914732950309,3748296162328247618,4521706089975350235,7298134526384982822,15635796437179319765,7015333128090949881],{"siblings":[{"elements":[17557221494658630188,3227766625044182532,5100918194047535245,12248056684551785409]},{"elements":[9249750410787918236,13926454221438005950,12355458512614451832,8052117305133254879]}]}],[[3181469947265262559,13137609443321458199,12662208839597353077,5133723406822271387,13557308506354221214,9857312505926598446,16123287365534611186,0,17333924400589783552,1842615142898341770,842565247351782977,3190954413276864775,14569991029620225551,13431727866960576299,4162147461873490487,0],{"siblings":[{"elements":[11527183259498892363,9946330918593603782,10404200333219222499,10345076201145684208]},{"elements":[1028094200351164062,8245739913546956393,8798601443111675475,2034456680882900879]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[4641675014424756216,7541246472772291698,8032985315810577574,16209146118383471907,10419669492250042717,13707757606554289516,16187333366426779938,11508813347810154936,11293276959732148494,17522599091636357118,4933209484424547934,17637991077178245357,17056870581881488241,13183940753641188438,1826279539176455452,10521220309278344307,13124634654836370507,5693361703730482920,15776388259230054359,4680853045908023627,14257418628542109609,8723243498124554086,8596441637069467172,9237665088636812520,13351878365551255754,7453120211501156151,16596500998285409094,6647506380656506678,6868544434576201801,1599880482129127181,3231706947765101334,4229199912657096213,556080811354941712,4390271153800822813,11695872429882888114,8599752111666630863,6984455065364979400,7950176640047926722,5845230499817025152,6098206436660846864,1586252843458391611,14440744980391871608,14872937305593305992,13525607376927953911,8563798844193887885,10796591490879791649,15472696412307025657,8713749834348935351,12008131581677878291,4940752074888778244,16648274217610364284,3105577555655157737,17709691183005067289,1489295174378845441,16858742130495006598,4007107084541660853,1223450394549700984,15576108286593129888,5683367022912841524,10310449819529276812,4472090276913155545,6685767406742442421,13620354716354685905,18306219604836051151,1483706469198388723,3860203197915893551,14841182964957441093,13088897865818960929,2157627148316549970,8082355349939086809,13017500823253740442,11638625618288091866,15374443671952868090,18207178249019307038,6235023043924961468,15969588416027908272,2104373460253057769,932279075491357949,18073033226271344731,15632048597169114881,8547402059743439342,447349086958603074,12085234537127786213,5280941428547620139],{"siblings":[{"elements":[8457061783738778646,13210996940451333853,15938804603635739927,10568167766166775965]},{"elements":[14116771184823831436,6357576774383995688,13501931163075412498,1114208703580065252]}]}],[[8010188792973257112,3842744482773585374,7546390209090338194,7425741182659883371,9296957850827607233,12385271459845040129,9658746812942225572,14758879113872907864,6997406190493524870,10637456536745163259,1962195752878372044,16562755963843203433,2167871696714299256,5829117171943815299,5716024762923963287,1414005890156753775,10958738010586133511,7469029194849120145,13777902530415761582,8059876479512351861,13923012219721574047,4927775591986441581,5584259479243267602,3322242865436715161,8470388356261933343,7336846680427459508,7386707341472867262,18251920292482199342,9766642782769876097,11524161787663689189,12972285709035230115,8527372221459329060,3735466178746534143,841957750625482067,329690130536153707,9020224799705792159,14673953817666022148,17308442074251641182,5344463355388059438,6264374043157696306,11808265444956194787,8012292661094014072,18114830853420053123,18160583350032375769,4070972401074070176,7331599773721066694,18394726852527900527,10095267884662226182,10670223595043562370,11261882488277558904,2013188026950245159,1781673209218640105,3264234660356436560,2146741337359225943,2218610759534447479,2808073887426009139,2697346286665550169,12773788442423161144,4358356529349608472,3111360579755268642,2829841237583624041,1260706586394413961,4347350959297245871,240861591589733009,13605221753675051073,4308925918647296108,5423277409193072034,16480258780176375147,16403722989533968475,11740567189182798546,301010383743721723,9104702006529827826,13031585891397020909,13537924266896647017,8385576645655918794,14240829753592774114,2258237185264916759,7825729816428386354,159353468090500480,12972052942517868468,8857625503246730220,13358684626560309811,16736336156352938740,16375139599996222612,5559460138081090024,11065603103934518886,12830422340330226630,10410747871654986906,12682208322841694537,15267008692093576369,7723363627950773617,16522344356944150554,11595179258808265143,10046500262287734387,8004562043234597701,2529288443006533310,16120786706838530373,4860887813274164681,3007700036740441573,9324585382315766325,14795821953911936032,1110245027869881347,6498437836050990109,7547458414728311841,6797648775735591781,17536718919193541778,16614586725864167497,7290113380826597983,11101454611712580754,2399060471910756250,5946938094965503368,12163800800000897309,9056974893091723175,11673898491901205475,5004659785112724167,8661178747318144749,14498390932143583705,14595244969555467020,751873543607269684,15790087983119493569,1427674817372754252,9297411115480789719,888394146272244869,11299598098088287754,7787745959006443447,15717191085127723175,635997184356588860,14002052631425674086,10231724276781622215,8886554739006369764,5454401639148073284,12559020584674005187,18221011252160027741,3208308992684951629,3116161282100527013],{"siblings":[{"elements":[141499511281084154,13099301933159528055,8737135468519850057,17281626991456825091]},{"elements":[13868227502310422400,7626620124817407390,10278844259360603639,2965708671723522146]}]}],[[2557532787366249776,10491999326548455803,2224793288049890087,18280898281017409531,13436884916231824684,11279001769095550247,10849979403017860399,8514221724113214857,13162945218744572549,17779709618564583308,14212867389931536854,13592516110078826309,15382451636712422591,5033623536462977771,10579507469264938996,309237919307207701,7490170074289744228,6102111141846195997,16180689940468060721,2103715098102657007],{"siblings":[{"elements":[9432030849288641099,5311330227706656708,7827120213996965010,3013961667892574228]},{"elements":[8953439885797798760,2888687067260511610,662343402912788988,14480680220979535079]}]}],[[17039706732027495742,1323858887778938795,8076973454747732316,16416302184246468271,14743773436980713809,11443475059710354108,6986936526011340207,0,11348571804676834683,12548544788137237764,16912669803810386582,14298945964769325717,7970917088763267792,4512929627617030878,12689811920668980173,0],{"siblings":[{"elements":[13175104040997564788,15904879205722199500,7634466472404444817,11232579531200573250]},{"elements":[1374647436548985351,2593177752118330721,17412767403317856083,5352318043414426042]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[9595066366564495294,11539115561636369853,8612617070848643751,4361795131498038651,8707796704569096444,13195197378162339931,5885244333503146473,7493274817038693156,16795934710077801910,3499234697230127792,3538015482856514358,10821355231555160607,1042827209683717074,8393956465900962537,9272902407782185898,16695386737328026034,8664116946917984565,12963490037289354029,1001619700841149898,14055163877067822309,16833947769469238252,13623661507294481959,7061230033175645404,9096967242861555052,1492338408286795741,4334043941993182426,1455509862721624005,873371923725843788,9844464102038836705,2075849575805447782,8244551275262799336,12483909021902906715,7470033179270143450,3493932766942357912,1811225424132229303,16353192859594085411,5314427956638463438,14110765914380064978,13767387029055241068,9344676171163636723,13241371923472948827,11726848981359198822,17377628440113285357,5326698555757237587,8793956657221348544,6432954316780697776,15597543765622992376,5809592268820511934,11214718578173390920,5598528490448283499,2812120349198523146,3092520960623406858,12739708918433074581,12837223032511295411,392629019916212060,9551710552136969016,3339446068431264763,16109905137264465741,1918329278681355689,4354157398534296413,12123084177537100649,15506665079013507325,12669324829703513360,13474770592190961927,17009712799779184032,5973322632799927547,367945653486032031,15781838166733272014,17675806655345758459,8827499417494022930,16440542757477443344,2581119749029910280,12100419831622121759,17963909715206254422,16157596225545606325,17609254166928834745,17932850466158622105,12626730733881765623,3545666113718723900,6441169949848482743,17860148745037688574,15345669789290268651,4337301300904067954,16795262536983274900],{"siblings":[{"elements":[11066942346539207429,2281517773770593240,3110504150316556963,5708250715759567868]},{"elements":[14780924131161078489,11232344161552745537,12663829209753110762,1955609769005186945]}]}],[[3677775789541532366,12126848940377820297,16748382904521113303,16997086421638419103,13146213187639301486,14543856006382723635,13231090196367517041,471172973517103975,1725576146502765352,327257952154264416,1051775375501393234,12553227843963815731,7351941592702652642,3575672819932485305,7155139378540512880,15857544611404485500,18347570109446948333,9660232481316340788,1452844491252986926,4844552689754701158,3976352150213692400,8958752473576353078,2705468615738808301,11203538478642401706,1596040213852046632,598525572182347112,12224579092409717605,566320726353986696,3611447767807064851,8055038996506256104,10152544133888782389,8476673215915782228,12906882399805268545,7799496971993647986,17931885698086609049,4204594481055876046,2457822078178033081,8894828302591923129,10338306958505703522,14757813392602862797,10042554224500198802,1469030767732842380,7928164935264781205,10535737283323059001,7407560703215486383,9240757206714994022,15799190979664156021,14569350758270691308,12926596664014829192,7601655400834213928,5758871705510520179,10725782958522598315,5127675834823617197,234266647393667326,1308922445335705735,17910299416775238409,10888818373412803754,10520660551946125599,2113702188225719548,8143331926420225624,11826779792798098923,9121330239691896558,7032796893902258866,15949551084451965148,13955886130934631700,10450884668471091033,13639074306418840299,15536468129435732230,15724662670238991512,8154510052999155809,1675002718242360745,4289335593985246792,311387639439689394,5708666889436774892,4744354688791044600,9924383595414455645,5495581671025758359,10285282046174921256,17230676771678110855,10938081370685065103,6960063578105073889,4925211730811309054,18068874040844282257,11493371954389693088,6955847022783267552,8284385193656234935,2150057332723955957,4829371509890578129,1511063633057260515,3375686550230861092,7857725774681976914,6759517189534212348,606384208978669288,14520743195274999558,14944000596141093964,14905703875493461823,1295068935736469714,15466669482713140497,14791144479361319154,10481957308512688185,18132970292761569586,10748527704629281242,10322556073997256220,10513674722774417284,5010068600327445901,164485086280912287,973751253167728429,8183657807878950096,12359975010127861834,3647046748113889852,8241878615734248496,10698152785014802253,1073035448557524456,5310605906279664515,16728756257052202663,13031488072955997682,11980819566596816472,7720229021347014378,13023315438329025703,7564415538898708962,2219720783603539000,3683626456424286893,5318380336754450700,13933667303221770366,15482220530002257686,3254763309015864825,13522224987115802653,5860615132294358374,11435372018096307811,15486275869430599677,10810788483091746513,1243089163007664538,13668791626373853158,8437109511837671459,17022642534433956348],{"siblings":[{"elements":[10232406971073539087,2331372470667120413,3480921091015719851,2154807435971562717]},{"elements":[8192815758639541060,6706296117378705671,16529742212901771218,14816823582778946484]}]}],[[15660598466496751482,16473040576664298819,4105197085526202659,12045708287609063495,8863787812728932692,5695363860623953066,3886962457330195891,10865649755431848696,9115084141047502707,13914480369922855400,17935413553685671,1660264298091255864,929824293681810008,11445220049349835723,2517388264144440852,1987154877831475728,13186197170601723113,422356282056320912,5839149014300767417,12414413905536643009],{"siblings":[{"elements":[7026535443865392910,13272235485427747187,8300723636851999531,10040137944754644794]},{"elements":[10163373677421562940,8568843666495184179,8586980723393517185,17999155642592664334]}]}],[[4231777900432532216,6175732809492136141,15578457369392161357,4381043519367007335,16080826478288230599,5550367126768084595,16841239280292805648,0,718058381172019671,10599373425425018221,16785911118292652370,11161683942944466731,752312895110705102,4732080847005175810,5069526111537302049,0],{"siblings":[{"elements":[11697927707485652814,9011341074783506995,3124669762669649165,13403655072665107142]},{"elements":[10398783662253636214,2332471417925761577,2571958879479269894,8535697520800831288]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[3637070305041024820,7115771682932846111,8611158289523224770,9518070641769033924,1414236033612072022,6147876731072370645,13504102503993610959,8210849875946775220,6771876429221686474,16410199602681622119,12372775030713107147,5663336987457811785,12580722705930690517,17090657838437182384,7774896984689503137,16212323194997952509,15790659407107605687,1338816195755076046,359989602991365810,10405185517321956368,15148039461417482223,18261045222745213366,18028880292742600857,3220707958064673304,11910186047229120732,15305670882204945070,11279996028369840591,3734042228569772405,7558526080657992474,3001601900221145638,3450170215377475763,317773060535564399,1097735373536301714,12615975359282791648,1270599954170946834,6656611499892164838,16224974003789441732,1403075659235291766,6997718511036935469,7643847128057754052,15085852564262096901,11477237190481183744,14985041832410328959,16813349468570663778,10173398532465637178,15857598709347778091,7934504258760404609,7376050159053236630,2840728545085223374,14741872313157947,13704845647880446937,1022125248820200470,13740675135639706525,16948491354477646426,14789724794749251394,705761185161613777,8582604557658600577,18257069041670641021,146898569877779069,15878895256307505366,1820417402209298820,5758860122156744725,2215328957670442570,14254262983789176580,17390582322684567064,10411845306820428296,6342535375332326122,5775175313759053125,9806327680441202241,3502367619086583741,9863578905882954097,12691132205133728054,6947328166316987045,15916101843251696086,15280311966061103054,15833965922602343683,4678288576301668861,1687226105749041911,13454350750410999397,10729281105222723510,951203192928886881,8511106208627352777,14642340534124220800,10381809804774474872],{"siblings":[{"elements":[488713213671729554,10255131012145408020,539496966595987950,2881937287605504249]},{"elements":[15881389161849586271,14711822840974163933,4971372235232643921,4593900484078443606]}]}],[[5522821425678279806,583489417503378873,2084590777804941646,8233175319507917263,3932863601229287545,9569888005459438605,5066614847593462094,14743220246691612817,4709112968543780045,8195286272803409086,11616762851475655057,16204164862022044366,8840466813726887510,2373680172939449865,6520278598058732639,184607710264618720,18116945710174278607,2812134456841027528,17211294308478401101,7388130170877374490,4710384232892067695,1622196702104558555,16285611580777477946,5914772261214761889,10394515232235573498,16803937591221952146,17043547741670046369,6642437087610095756,7134594096649333290,2050393832707399334,6760294818851118330,18335549483202562599,8837287542053396816,3616062155171005131,13614166146028791860,15161387294535488860,6913521946484981883,5734190028564639260,8838458088133231683,13678530289520729384,1199144361054657768,2529806382427756405,6692780418588024868,16772644028868817865,1169620831335187184,10355018949282434145,5496160769739958959,14288667190838751179,1543639931725580727,10586226513401511361,15597780895201291401,8842832867239604083,1140081634603765568,16226504262715477551,7529925827316095997,2892727279761477217,8839094766651599226,1078627504390079055,1981856827859363417,6125840821168036680,12846480634122040522,2981685085440400267,14904458548903405341,9446188498200215307,16009533018154271666,16455199006131452270,441951818384351999,12580690155521576019,8331922676139894147,3940638231821573112,5333975220516448450,10042731111335100678,4170574384543494693,3353556869880274520,15568378200442535898,7424868175099695323,13829552708343094363,6601512844432977802,13703769569034997731,15830050552508073705,11437147731091675149,4003049051657591636,2588511233480400608,9573794499221399231,8310397536690177282,491476287531242448,9709343147646097411,11400543051530220193,4119446364104300271,2855029394671150203,4176601166520444712,7025224940493935751,4843857236459551139,5120647362068626353,12513354135152637008,15540188980905413074,10859605696430753758,6561329157720909412,7348378956132646393,10553553339567373116,3637277101910860687,7179595900254321911,16935998894851452408,17137705112332674428,7198255808672524262,7038401590432494818,8087405882697880917,12647552697289583520,7410582112811479221,9907139824605083167,14150064781293417370,14290393439917139672,18154850219865624388,18244597535419062291,12475394794051369462,8907833277751755794,10447725647291873755,13604650644796106352,4600402289334924284,5822720608157422748,8672106266341662236,10041714133965397400,5306283078294883542,17261409476793630830,8408461321987381482,13505038221115103086,1378299190759490084,722718442649232340,8338754432744799442,1179599050348908403,9477340161288903324,11741888104051483672,119319419290684268,7259459957057306051,1507164269003235303],{"siblings":[{"elements":[9423107637836157722,12930661620656564354,8562998139717966983,2953609585719566823]},{"elements":[9373252055618863258,17154472301310040304,11593896903434722113,11245781697972110018]}]}],[[13500803519268107895,16676963830573843935,3696874852497441200,9833663173465582623,1702609325721293901,7349595950320675204,14504294571356490826,3772696692201807478,18316330695340168292,14786838441717757300,426178183582582834,13355485559183293557,2068384055542288319,7202111186344776205,110750914732950309,3748296162328247618,4521706089975350235,7298134526384982822,15635796437179319765,7015333128090949881],{"siblings":[{"elements":[17557221494658630188,3227766625044182532,5100918194047535245,12248056684551785409]},{"elements":[9249750410787918236,13926454221438005950,12355458512614451832,8052117305133254879]}]}],[[3181469947265262559,13137609443321458199,12662208839597353077,5133723406822271387,13557308506354221214,9857312505926598446,16123287365534611186,0,17333924400589783552,1842615142898341770,842565247351782977,3190954413276864775,14569991029620225551,13431727866960576299,4162147461873490487,0],{"siblings":[{"elements":[11527183259498892363,9946330918593603782,10404200333219222499,10345076201145684208]},{"elements":[1028094200351164062,8245739913546956393,8798601443111675475,2034456680882900879]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[11478853722654892596,11054649085732609431,4994009559595819210,4186791003624108490,18024865371818158892,18345183498407461526,9694238634292017590,6724859886830687063,11243260270601353574,14381814419105033411,7818933522528881030,4546529647928812664,14925540237646974265,16878266396497955220,12920668997211098573,17268828363658179930,15016004026910537377,13817031165285279441,595208874785186131,5264621933065972184,12842607752779588909,1036458340443929803,723974238512284296,3865120520076342236,10591874432022570118,16672770104321157989,4268204143023668522,1442101787761795173,17261059111713346750,1886389845452355019,10015188874733823167,12945251435542942346,15729006941700819727,9769721924531241974,10360965788706053704,17231683844444576182,4860556932014059440,11290628573575307583,10467853112375278596,15672706883929365300,11854941895739424568,10532167184289139234,8849900270380063794,17258070778068654781,389392563654780465,15694034380242781064,16408125286346615923,5240758237683744215,12594341864398680415,13125157218336151182,12110224318087305788,2381073337923353293,4801286650727974296,6463610664988967714,4579934330236307092,16913166904864701304,17120949083165668392,5417444260846067353,2162861526281072576,7230041798647740383,8052962025075942004,2329101354125768248,9495441095357060775,944189234100813522,2974037460852383196,2808898223350514185,16825144225291284340,16495574607473979160,1773988643127921369,11103048928261281020,17248516975848621671,715115511911425973,16595596184784813139,2875296451261385175,748823176798831426,1445145643777419320,1059249732834213379,18281412487205604006,6977248505445028194,3497756901944121467,17667695280482817497,519454644348557937,6789904627007533608,5570494389550069031],{"siblings":[{"elements":[2788283718956080627,7243963918501585343,886762250337169434,13103212312216094922]},{"elements":[12080961203814882388,3507164343688256046,217812273724800610,1252946754184999199]}]}],[[13928294621723921177,12780940283369458641,7876240315475227901,6066626702537238528,10921311343358247013,4660064870837535971,3917750038277051688,13060016292080574429,9936379497420869445,9569686606830495891,14309987984683184876,14933181077210844180,4567504805388681847,4451513967235832192,3164748208325736115,8824786929966249221,15278390620346222611,968137396500300411,8501128264181401305,5914595208898961387,11586676672149264821,3044289833739720688,13264240637275567457,9282450016757742167,7591935353592852986,11561090209630943550,10624913600881235280,11790660754292182132,3055180634608925062,17687356795440217695,1062112122740497467,12410650203683793868,11668367666350933426,15408965282831885699,17448122782909395331,15837423895535944147,18376253569359170750,16342463043235202885,16202315476150519810,8938812232387940909,3354638606602819543,13420056720956319662,6795055450494234003,5735555410062463848,4430989350272774830,14238952392192791690,741650587947696596,4341264100298172861,5406564760666030634,2657466226833493005,12763564032158299619,14116236581912988292,6751009773749335388,1586544350869727374,3278037389016168130,2414040832720535311,18441364551203279608,3243033937774991994,10532988236141586313,9496075198816348245,632471506799531005,10099920573137397080,16491075452639500370,7806145719882893504,13537667783849216730,14646767100238118587,7903592264618681964,10367338164437456338,17819390511292288886,9612159459393537600,3700279457787655281,14972210241743392722,6709156559592085767,11305192576209651673,17809226441043947210,5126446034840662884,9946618029384525527,9642416860413174446,14467412212773980706,4867700418051812450,12744647149692331592,1380091959676633575,17148563304650867054,9376661282592299226,18121944444522255419,16451153074838713283,2521693366550946941,1088740810476829079,16803766051334600380,7099984862993609501,15945620798886296629,17362589647650777960,5100788967197722500,1729647832538791477,8857026702492467586,8328283482263880373,16642100660005070538,18319750921761939843,14384339212447883913,10335981312798406516,1177025081549345724,9581599564425798544,18183086006606418426,14542454731201203397,13779574431143174675,4858397063070170182,14532447381415635569,344841819475885517,10317848199273978628,6009544013465900472,6551841242222119801,12781623033237952997,8673332238196420203,2356345078334660518,7867691687676496974,10389297819478586634,6335409477384459928,13007708500537604732,6300911288931544087,1203459589935480992,13704577378680327047,7310733409323983002,9006921166866309861,7763015821986011467,7697238140201931863,11758851316865416296,6512481414993776951,4887353429020190966,8531631370225096411,12869816394451261243,9089172687849043658,11119564756628837117,9145143881545263653,2175790401278801077,10151349277367535661],{"siblings":[{"elements":[4108951978988732862,13685321873487507640,14791462321119955581,3054841872416154314]},{"elements":[1163636391096424029,3569035311789534588,6189669456893646968,16978108723929732769]}]}],[[6944171901675688904,6816602359732322764,15638317003349100756,9750434234928420702,15682956353414017570,4253046227358858130,10741592312871438580,4947551959998255889,12085879759551696147,4145619502698240865,6727238423423347738,9489898324002551905,6428755055911811639,17503759394454293402,10475334186548825075,12138769206384836500,13989172805164149607,14370498067087645143,15880860159635907892,12858154205053350737],{"siblings":[{"elements":[2116964520700019711,4249803733398205781,9992161834745138972,9252918792683716054]},{"elements":[448807187661595856,15753641593466393456,6340636304161688923,4404327375994235308]}]}],[[3577360935506004240,13688822501728836607,7377648452872554925,1117700242263558865,12977482999782045338,3872089133387447887,4203785800617766369,0,595698781729961810,13815455257663254822,4008022753070269780,5167983418067277619,13512401183256996087,13198000090575324687,7008207672559276839,0],{"siblings":[{"elements":[3316177348809380759,13775169633418367739,12811197016576038825,10954207209289592652]},{"elements":[11844314805173075615,14097965581367964125,10459732165532870619,12180501600980581951]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[3105268577218919683,11989912106583026105,4277456366353513620,11137240172336086859,18349201232108609543,15273013952608518976,6704822519098359798,9050015166762925667,13226842686320519153,3347193472407645136,14960021788921891982,6062915076509555002,16799974262098921572,12277857055411791901,3201612051266975795,7382115164084804607,662146889887619116,13016842780887284098,3444811500233607939,15511441150823011242,9780556256131350880,12462620422518845672,6163736458104095804,12629343512035302775,410370606607622247,2132753877292689810,4842492237437399962,15053266348599923372,8239677878365373096,10993952151908376893,5375098356009186532,5720871005245331333,2190160153970881202,17635097469157341063,11337048257262422953,11433695949589795709,1252469900929234517,6591384140304875568,11305363300565636678,3548799676198027661,360948816514830994,17053653383707475671,9016758549240127687,16719006551341042080,18087881259038337828,12496684250686477772,11206483302239167954,2219634723706551584,5367363549117633394,10133029030119024626,11413555469778317536,16680679628030068736,11212520980057922936,16594017827355991948,10531739857082687251,2430412201132474245,7463275843194444997,15716357615649118109,14668021757551569881,6248568984062016809,7536808108301062106,11383013220707643264,3085811368877815492,5611202298845305436,18067080004557481926,10986776116052097463,11888724840386683571,6373548854931797506,10763783748826365655,405435378230429633,7715266384065309384,10539967146555409797,18403083751685888255,14219651521703164141,3823542448565172700,15974999712143818506,5852041549888251460,3399245960160961247,1076541560644855318,3099393187520493392,5549855333064892703,17361777203301722675,6477943894625696788,750182178165592683],{"siblings":[{"elements":[5425364553312560299,11537798991506700872,5015953739612256619,15826017064500090616]},{"elements":[15569594249511601125,956031005415651622,9670184325097649857,16069782850068809130]}]}],[[2879513735513739429,994299828695178941,1585596748559221593,11914602724680674780,3390733065850369045,11488754354521308380,6578571082813910063,5021455958604112996,4317817715569109176,16512358670585166716,1320602602617581076,11618896952743110225,14398308428303273430,4415901900963910711,12853995790810494078,4155259519872435224,9279000737704436740,11576839996426960112,35634558733824804,3629424296310346307,3547234464884376423,6228100877102197765,10605275713856604729,4449408182605696966,563784577964376268,15291394222029882713,13747866763509994509,2072895455197335495,3477207612072192603,14459557152837838476,13381621248751927071,6512288780221253720,15751635958372534700,4240908302478119126,14896079531189846786,18129706577345247226,17039060676929329601,542934592524871551,13022902895727079151,4232749313367405999,12386964150824000639,9432240100926729959,11458361646095398010,13277693247370621956,7504104469620222234,9536389788694951137,6971017661631909788,6596524412016333249,12924575873927264739,4477980993965874962,17585922922467421079,15467961756667703036,15960687524642147394,517546348353327210,1390775026488442,14157611484914680649,16530458910362190361,8219350039504287447,17172836451249068238,4586811505316822725,15070190489337673616,12846909466573962881,17553310897757751208,13114695924489786875,2604544568270789657,13260828489576763635,5090846813938086545,16024553259819551519,16100589007823272075,513487088633578688,3665041122896175347,13266533417457450907,17666601885007380633,17512776882022336587,12250223279961969976,1445580564526646199,9270738930314169139,48132245707487277,15186378023793143398,12414407724182314883,6582785599032423334,2271652982127001002,14640707937593924154,17478237110886468419,7511694586929234363,5585918053670725128,13742084248294308007,18252990196933197570,1699122239012775145,1152898189585438369,17979878619993273850,17040465928994756770,9417443835596628234,12553975208110709201,11441938685939878674,4685206695148852605,1528742798118649169,17985989196186384208,4528238877600406139,16298589404657118404,3680245445415757000,11678787753140682986,16353942919093085340,3070872341300535422,5814411451879975368,4782642012389889230,10955249799240234054,15283190699927950383,440420197970220261,4571832119779653009,2141039754145005875,3296933548777145865,13193976246799963051,1534458852892905373,9915465093333055274,8528565754187626992,3508268887634506467,4958813104726788992,16846512495042934729,1630199134557488669,10966385379127352319,17239235768004466330,5769905426759919142,5091052673272851336,11054435021722361626,725264921863563715,5199138323467343698,9759242156467430864,16652765857342836582,5519289171672227006,3597471540244138519,7849118798739666638,15836147428376881070,8987727675677515920,17465071054043408900],{"siblings":[{"elements":[8042414911845310040,13576526843857636,7477167201534450216,11038001715373113185]},{"elements":[12944959919039873841,6240539076327042655,18379592036034500426,542918395822923988]}]}],[[2647012469267133866,14953449708598992677,10238081399144617439,17191427320734758133,14951426087385643694,8400400124513552838,17846399811522457957,9113488423980692135,1103588430425993534,6997640593545837948,12912724076890821698,6970183598183291019,4434854995635016978,4376110201431438039,4964152265436534260,8820658879655162992,3738582110085346558,3507541492477157729,6292161149081326925,3469759498036709473],{"siblings":[{"elements":[16588796315614463564,83233759638608395,16437105441860379384,9621372900592583162]},{"elements":[3516755382986089963,7308215005955171395,11234588676899774707,10507147201193349029]}]}],[[17002243542367627735,3178479491092714781,6449146207476102962,8759048617464285536,5691262670807716039,16795005063253900478,12538036523809122351,0,14187251532455276047,9236003726167754591,15600443280763082875,12244283226842140210,11176035467778687353,9371591489983619578,5791735421629594348,0],{"siblings":[{"elements":[5138119328875124104,12429497042463348437,5671601418080417467,2315451081471898865]},{"elements":[4278825114222421620,8705270452145257568,15024687938116310228,11352379782173391642]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[15758775234507621717,386873473794195,5809584622623378771,14306751210974713097,11302554983959589528,1327832789599027380,236502180870392261,13264905772134066913,5857506752267947624,17058040426918110216,1342694698541376124,11247410261659140067,14350114415645219099,4583230930005435996,14076503119706401870,15880020041488722480,10627821187628142573,1044749384776247668,13803094214927487198,12544379753173392690,13057050371697995823,15330579406842572521,9707896952003541119,5786715142615771477,8959768511509209644,7466737346920902526,10422822089882229296,3504773151285322564,3419470529597640908,15847878555525589235,11410879681056200420,3245040583009025788,11698930509459870103,13570140684066883333,4107171135279491735,6816442511716333526,13187679564150780741,4957755858430971647,10756562738671628321,4016481060180503199,9005810410597864305,5421891320356037402,1065438370161549321,14370621258975165237,3366746491579372093,13006491237563855897,12466845178667283423,8450232994099053767,3884423878484462695,16694495941341337565,12276393389691729961,16037686545199925788,10895977186829848590,17156636392074348353,16170249794752475724,8130522156784339061,3758135148585897412,1504470367743606760,12820235152408801940,4728472998567873843,2824641811007953243,15118259416555888165,12215493150006810512,8316066871495739628,12009914754943290636,14195274612200124758,17522726866577553243,7499475354690611506,3544346123845523313,11718047683762303071,13490728387453084563,2218114863523928610,6026027352978102532,3747782856048583946,17203016452260552408,13031495329552308162,6244324079390071668,12856980774624272255,8466864435764048595,15680223617309057078,7581596273487594510,4663524874409993864,13442298349819084674,14052760883976538360],{"siblings":[{"elements":[17239242580999488077,11539643569776883494,6361888208514807188,10670222042682017864]},{"elements":[7372999055943322391,3141364051179517969,11032666934607065725,18114007743554457067]}]}],[[9107796823381699083,16818241499348717087,16299777022319025518,8287169742405572123,376258714183598315,13026986149502183025,10301698257265040980,11641150840159593374,17853449352901191962,2629611526615646454,11869193927653075953,3939177903971412578,2564534621613472205,6440130997149293909,17949324353578194713,14659817175362329701,15241406140910536369,6995100056035354242,635130890589199730,2535253958939898103,3975904728006945101,16863220586811790805,1351216244660481530,4071555695364712382,6055555360851423921,9541498917423420728,13112420747012181066,15671167133169760750,12506597918365809118,8485022949556297385,9748033045344531643,7156670229416695335,4241311609079035834,2681250753393461645,4932186409076346716,10699360409517437037,15526658194990367550,3189222375462990201,6532454420792119500,18257197926753371713,18198493468131711267,6522740821564568701,2502102946915708696,11191704500865694380,5001925341503033458,8041638605777938005,13843127350487169426,1554642176948794106,10061535048038697629,2720381934063932208,15808730798371048664,15059593400299396355,16818792853867504932,2029454476490067564,2240969371637390527,4067751554362618070,13961509235570093157,3070708865470863205,3214366109687418846,17176452202648283319,10849591950258172605,8109065214527399582,5030851266726800223,18075191779791575660,14568110306348447608,474861599460179399,17467756037234676326,5720044220413142195,6929562047244907495,15161988023207057485,10568932572365519636,12632981401046128373,4148541605667271505,11024780705968415512,6337414374853957024,9789235407784506339,11463215104855855696,660351453363580548,13504134212855897862,16200686911042369114,4677808870410116049,5063931227814557624,8257632762511860769,17282574532297749629,13662389025224658311,18143852554449017905,14257881207452883426,8424926045059867861,1551572599337458772,4429356077696033658,6732330743209249110,776215472741980953,1331360349410030176,17810744175007887927,10173651623955639597,17984062406572467973,17574315389903586039,14984019783925884679,17542231225497725450,8580909479266687787,8458716678637593367,18277377185170186762,12599781750791111187,13351711232948118207,16406849747846261779,3666907609958002991,6158759824122084042,4245190549527318064,2646542004673882024,12045686992593752880,13505301756028857503,8613916403469057658,3935103314592931169,7924265725053452231,16246727901709903601,17249086803906599782,1245870018102234187,11851724969693094563,3666215700939236110,4158830309255239674,18277386374041423343,18264855912116155930,7107730424048810560,1314045505292449107,675889833354876768,18435693480474735056,16073934374127454996,13081817221608652286,14796392148849930437,949275283130289666,5693480169603240444,11898917273469915071,17862527130534730925,18352825158895626412,6115527763500516579],{"siblings":[{"elements":[4689507950239423834,10455040152057299819,3704180430049165071,15433459521157988482]},{"elements":[6444848530783558746,15753263428135990938,97230722525014282,13121239098415651679]}]}],[[7672738634888759357,7228300772628482534,3032462065517203533,5186302717828799609,16554285787148056024,13189378491363895461,4052340454363243828,7942059330400588685,1475522344971973418,154110418926425965,3189588580504426066,14748704812343066378,13261496501993291215,9721478026725725765,14031354610168069083,18165790650214807091,3740248345047123969,6404207123370215081,10175620813713453593,12730758899532534792],{"siblings":[{"elements":[11008651319496652206,17271621044655441162,13442446460710627860,5678018911057495402]},{"elements":[13249153965122574758,5090773756675721835,9423331643230999862,14143234509677074129]}]}],[[7130148078471576328,10379473006867291287,13984853568096288730,14256973919612549879,4220840666747059324,14670780262996732322,9292314610272843862,0,12271095177976667588,16592079572264341866,1303257653717182843,10521842996837927287,1235559427196663621,2662319354479751752,3870922848792695313,0],{"siblings":[{"elements":[5113187503325397342,2885340301747824507,6592815064973389527,3153294030704309845]},{"elements":[11953638532976524033,370136659460033386,8614773404340959242,5907159334526019519]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[15921612139218149057,6612836170521824306,10342650837803270423,13459145027299638987,4343149468427784854,6306766087617817187,16342620479075220374,17479160329873392964,18104236740370254805,5607328564894973541,10502145240772145796,4130963703961361294,13544028766188778565,15519457709599501932,17398324273599873710,14463615589572343353,9435912856374078854,8836441558487788512,17898282743241969403,9258704766747623541,7878433485797785859,18067436042201688992,9318002019468232878,6326797520350658645,8206128250534918434,11618630132567531121,15069036612750943026,8970477233728510462,13985355916501110796,4853915339790728169,6691787093014351945,10765509175333716655,2732054177417452813,14355223036935627218,18313469936770660675,4099088726421054934,11067935337126770058,8372590015997438790,12050200771401843732,9797443138979453441,10801284484373487018,14084336817368209221,8037351293758585204,4062288186072702566,16208629453251359213,3610819264137279228,2386159706707875038,13673066109658339478,12736074861155137424,18054084638167379879,10678794287086826728,12274029801127579619,13060818613518735127,16455397185020519450,17257570878613352059,10495273652227504582,18007317123104278548,14929588617642168189,4040499645501908693,899640177916318896,14847057935001729645,3918544086308486086,16699012407426003368,1767011055575303739,8676559830175969473,584875825237088776,9553927391942357035,18289152540364467830,6046097883437006264,2334307118741742780,9676789771270930032,9004364208376575850,17540179572388763558,15307939066305365517,9521457428541346693,18341159027680375959,54442831925297915,12668523912505920177,15836221924220273483,16148908317253873318,9703937035035950680,1223015419868895754,3378796322657212700,14351038870911476040],{"siblings":[{"elements":[12062467960941943310,18264903870078144546,12685394059909223572,12648297952715681361]},{"elements":[3233867220909638017,8698185977443146759,3080105169737877659,11915468074270704376]}]}],[[2967615910498330307,14962416615899272532,8807794038670287091,9623569060591649166,18381370628480357418,7016795173545927937,3576349147410851573,759496440212718504,9410689425777674697,14463462189742615288,6528079282563724547,9849161174349312674,15959732492113215721,8508656359885145845,8498578398657338466,5661970933913568901,2196492928697132283,16279159433034923931,16315676790670051634,11222900618777309780,17234087406214306971,10089101896733952036,8265611069173250772,123156517094847370,6355138491960237618,1166915287691706157,12159073342709858725,15985307709900561020,10534328168929885899,11694695670420273792,18218696112108316853,15028074862442869178,1242413504616973791,14515480823155573227,14872014788278668443,14184970326325301981,16302650226945052690,15600499779661895945,8051865763609867573,12419612577638014239,1672209398160514656,14175393311501611252,17222311824247475039,1386866127455345790,3013927063876618182,12074444015520437135,12906114189815706453,17525348647566472757,13960376463943095963,17123768984186330567,11792880556605504055,4690104906619087012,13434498442284420130,16062344027694941070,5689947337922454243,3691480246645818130,15647857247058953143,15344993509084662596,10021980099097482778,1690418285063843718,16394981508466551966,12880911344985815165,9046532683967566695,899416545208272196,4894439397414501330,13524233483064590693,8742374793645654444,15042084663587295916,2084656067498969069,15702479501319891953,2601996965992107621,6599285733946428816,7382179606479942037,4815721841984389587,7923260127506755332,16862264256060961529,666361015978769220,14640296968077237035,3056264834489483677,8586203937646532060,6124332413100717558,250902810216395383,15794103840155393633,5179402269116940917,4912664400887340138,14297791659946953110,17360881484436713699,14108424585000495095,14701391249527767751,12370626635636642440,7390052938470635652,10912909173982773618,10225265416958622978,5662556795115294666,7183574157580914196,266523515065748806,12023180198231146852,14869906793467486469,9818802452614331248,1956400009350696666,6650248851997257012,2898916084164358642,5352749728212849427,9337212475766392932,6749695080196620336,10184863070236396601,15265479059209445114,13711354740344418882,4352769086229471404,4207280489632671356,7196341168480479436,9326542882817349406,14990920964578523004,2105098344692775273,1751077109913716001,4542004112498571930,11107357627008315704,13423199713165910767,5787324903494545666,4949510880701080179,13209645584888478600,15768367352742589034,13398103178282248151,7357610733662447957,3800119267241047162,16535673442099015123,14051112674593657575,12598965846022379506,15495376781169014418,16231637119685860649,14010153742117135788,18359080580883996965,9656872364327670007,9580424766749263494,1621949755971625908],{"siblings":[{"elements":[10334487489176598482,2661002647420386728,5598175427792185895,5123967144860537165]},{"elements":[17425144728934582193,14939775513103120459,1160319766018238161,9287853699866130894]}]}],[[17190303691202961878,466628773633014750,4679851666314683340,9639548073147952304,16266337369140379652,18354803028036297286,3185633847469078064,14783491706935461053,7969282644072585878,7260637073560946481,4111992703586574162,3593044191912171670,15404517825009127729,7029341135578761960,14325351866240371949,11951341864904607634,4797385995812702331,3886098555824850332,326897463106816115,9430393365519304249],{"siblings":[{"elements":[10983617017963150951,5832693502878524817,18200982514803727566,6488649552517286778]},{"elements":[9040254179207772056,3725954116024159911,579446427393538168,12460963624415718766]}]}],[[11520455466518453630,15800379872011980617,13775155314628389641,12206995835990354059,1624492718449273886,9060649500179574243,10553031128066771118,0,4016615690515928863,3511625367237962859,12227177014238511960,10508008634625455196,17983451713555450278,14646974273154710993,13497586500896135935,0],{"siblings":[{"elements":[15390840970515076136,18199373292570375260,5289438621291781653,4814251856266797592]},{"elements":[7502452631934274601,11782982809276846489,18122091354471366675,17733080852835133650]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[375328944584183393,4247706021255337485,11706807446003718147,2904732840066002447,18046556544271250969,10916790744547718956,17417455500052103819,16865149589710501282,7516206176750212153,11918341555123999967,6438631583746773435,15591054111156919402,14898247868915648784,5038022190703638896,782902406581356437,8476475721447534742,3141781225672343719,24960222019956998,13318568201986596120,12553821336735446644,15472379427769897237,11326663298448799758,1496365523529506525,16283290300342903900,15887194343965027864,4817821258470929804,14105272527915808251,7529328033808087701,12791111736960966652,1480310065758090137,16983972150093381616,107421146925935521,15956630495095901670,12449606557574229305,11212738967977910606,18110500866781589748,16429130620582859274,7779952284097961285,7986664839084840667,4336809532421740351,7203799611063838576,11560435871645712433,9815190520949331948,8716032194773025707,11723673122810912199,12703447421820732849,9780264156921829231,8585524933896102493,17254462011759100274,8509313049271687836,18155784473960727319,8832240748451399136,15022854397857957229,10314946459377650889,2382285953043542396,10901101274451940707,6488753551442959274,10655907811367625707,1377911739024153286,16061069529229070329,10445282428636049950,17647374885055453601,6398896971781446227,8932834602516629039,9997920820735837711,17622715642258494985,16060563494318235955,12619271982679341637,5793856278372142490,13756105895004610932,7717844781603297065,9318268434351815355,2203896032917540456,8738369653964913142,10014274937273594781,15708698748232470303,15785571182443519050,16491478051113211775,6969461676564863170,15903387008965589169,12741230739465879464,14561695049829515146,5122083969314654828,14494368093124181245],{"siblings":[{"elements":[11905301557835126433,2811687330353170174,8328158618699204317,7261511355033858346]},{"elements":[15724416129304146158,6744691714555510949,2439391946615683197,2210772101600168795]}]}],[[13342738179486943858,234080634304475044,11298678598732126749,2971828502511703879,9309008758915026360,7072663701169099913,6707391782006575296,4930891019992563451,15848293256689119765,11677164761086563366,9642437970839644563,15790509726850804731,9985289950457403584,8911509066990618983,10194352198598978839,985365224354732109,2851752088212615625,6453611720888279711,11661308961925345976,7702340764064748717,4061631936944691808,173266809382485119,11270859832502064436,17115908987996708405,15786582231066938801,15897346215755914600,1247211896252699966,11678762051386749380,10974335269197831587,12737393790299584693,11213366565310437930,10326903319856681922,18415271963753324820,8244418083859388714,3948674994952110907,1890106183737059546,7732841779739159780,15256516107793676931,7075819829809178998,13374950885333916537,8675620986431300288,10194383931443125782,2144165332098994954,16414094358983476061,6598915048566240052,10832360229764839577,8068654365213703490,14328009029406499049,11093620887146311144,6409062631817556497,7951787160823922544,2070631726630225916,8019603097561475138,10427844352192271762,6053120303521723375,1302023923739576899,2109798031825286784,6853224168787783294,2065536501188455921,6189343424012906662,17040740265974336036,4238767120048715289,10838903718798291359,9092122650598442114,4488972030202184771,7536676758053288625,14146623154934195877,16931001833265485467,7540140861226977581,2174489222257654858,11973320646851510357,7309045883186994320,14117874724367430751,10518967109812405863,426585804877602495,2115908844409249289,13341680549766191152,11627753973921901373,3667746917697293815,12345062739671030296,251281629005460602,13463196348875284122,4083262048600222510,488258576903563995,18049400610699709898,5996551325524019919,11116326687023558416,8704834082273123963,12116683315763409622,3741530667755127478,10744308627208634789,17672170734892066122,12970061330803577946,5629416708737971321,14834185911290143726,1077922127366817933,2453829876738293706,10574415348177273201,5298224182268336778,757907768411546836,5492071492145391840,13908520303269416846,1036818768848557696,179820880668755004,15890778178960528814,6368189835566625178,11885298953419640723,4310753263484991936,11158671401139861402,16457994809194364675,8810029551633736399,16168513904680586086,10438952037842229799,2090983307378885012,3510351825164125021,8639653581250456006,13328293818359053100,873460109599303491,14427852360778564582,11364421806537636282,7525088580327953229,11166924763348184741,10574706037055868988,4799833112610078038,15849745071631295263,8074556001662449004,6472906657640115600,10971526374004577531,9747075249391171570,12335230136906681894,15778850918132059480,12716381588908274525,9802647329683270019,11378300745839479660,14489095493184551684],{"siblings":[{"elements":[9194871168297055143,4497224224942579350,1318870341696597260,15141389544564323854]},{"elements":[6620612365127861797,10763711871947886752,15625697147150807941,2208506166988515486]}]}],[[12021305697924505939,9066300514280274742,734596672385578953,16581391813957742613,8089651286332259045,2504325394320513307,13907350755523500585,15646346766284032475,11292930098030107862,12190898618696159391,16905946236928810723,1784337821790814143,16406744636444998400,10411835982541836693,299617076720048475,14088646421500504349,5914568947840368883,5404579066469489436,196126961068759521,3551633791218847901],{"siblings":[{"elements":[6840023639383162915,8949066862477646354,3183800674356836435,9189444673140487671]},{"elements":[13465335913465318575,16360439256146192806,3023457439489358989,16575754364873660209]}]}],[[6931409272951874209,15972146802496070713,11862520411413449019,11684210310597055181,599545267026507461,776813884888545860,15313201177421592007,0,9719995395201842231,17572343885429223277,3234841045614451056,20976596376601406,17631394733429354346,15355436510823571965,13234981973355360442,0],{"siblings":[{"elements":[5142180108438067043,13064652286320570354,517505579664554905,10205951130790123007]},{"elements":[7491611630538287097,7662638509464736186,8964323373628608506,14225739950046305488]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[5625703781286000170,4638184964133009474,1259374735575416839,8120578532916090674,7349452411640066693,12866562932612721664,17400698262681655041,4651106000932071082,17783232043793577400,4510327606801636199,12022257378550870614,15945891714241651745,12372853726486191986,1057815184367517372,14732241336230466170,15279731560328757280,1550449757089549895,4610037844003765070,9041323241583131901,2910081345530937543,985887998829914860,14395940474841304798,356243686924777175,5040936669774799600,5933844305558785772,13901438080456386765,6790865113319118409,2224834593326525024,12054021840616938638,7192809604801586076,16392123786125344566,10718822516171713855,10745136021587360824,3783412156557244020,10584110425643946273,2684884494939838060,10523378789664457666,8174505741967406088,11282548387232391456,8493992124861254031,13039842955796920617,18099340676038884065,9578383844362102628,10422895088755253726,4538251071856808680,14434679698014564110,13056499822836345862,11586149975187856850,12761822573592891290,14680592572379073272,7637900694687653283,656033748851140782,1094099898907430109,14821593700298872962,2535962946958717409,7163785091349350297,7496199419868718127,2877164516860826553,1421492741067673079,7882531635397475925,12799339425572509952,8989723021790017699,356418461784963294,18045785439390766900,17385085224313500287,1634414102768839729,7210499552625990128,14975764991787341192,15054538560924454985,13518518032092313277,9363488744122204230,4107553992381360363,8775452796445734146,10138976953390357438,13602198090448653252,11675802640258204149,3680436994752389964,2582767331279585752,5641907884405591524,14754028930205496365,3237519569899032163,12973789551492734696,4867394074201964810,12431843342953466789],{"siblings":[{"elements":[12179099493414986875,14815457148289069262,1481145606915669981,16125355293346588636]},{"elements":[14087148344668613763,1774479748128902785,17398878651719132826,6925124511054673158]}]}],[[677049243997162876,5801026658968030527,6337981691534081518,13840899640018391163,1067976082970761197,16773151079644506936,10286260296313895487,3172551005099516628,12126621952692557448,12529523069084780036,4528649286831203007,9791674036807572737,7688218660630432171,5517774562663970651,8769295304077527430,3837849882547070865,5063824389440179555,5024916676258528766,9507814877056507699,15737238478590075493,5200465022454722542,12218055741284926708,17733666040267184326,13663588984991586334,10772496705187391152,10559200288844690756,6004486750515417511,14758540147075282714,12106995223249359538,17623229566447760989,13086993292565733879,11971119399891739138,13125239103917006493,14267244439901681277,8145042587825899234,13512799315685194727,16335743657840960895,15337842797198173807,2780784035638037239,10806821224697014174,12484596814548271851,12646390398388369440,8044572967695891746,13543659593752727874,6100510243001850265,7957129274935071310,11285941668353459621,17550174760288337998,12638059189724307005,11433373936644134826,9452030353880656283,15235860790270363360,6107394975871446443,697376088763170956,3176579430138203774,15191549599403156456,4272002203939792540,9970100272991880657,15027462507821206639,17700935117390175104,5441248390748687947,9648002897172033383,16355105432384028602,16483999975552898150,8419997573042684304,9569296170803467251,13169424937750110956,6212459127418765359,1848030310084167787,14257420925333819265,11130262122988554187,2633256865989917245,6611007542205780048,1824695186764790926,3371720204204537660,3724608940533903017,2892316397092360909,8795867715247176463,16220238604678724327,7276177693361261031,716466881164532179,16756919868705304799,9503856693326608176,2024532980676111119,4958952423454257245,2644877641051717409,8887769000321343015,178587074991200651,12282584826267213973,13494898858411135053,16871511716104837794,11179227470760463166,13929665939570543854,11248305006008576563,9145788441642071379,1371277926542596838,9050802384578840470,1626431189545248684,9101996775138168749,13610292852713954229,8267905069698913517,10194707120321213820,2313110072357973331,14520641157989114010,7250420297317801843,13312506246174902030,5054198700733447328,18262731400455799674,485956924700430930,13616334052797848857,4807385648071205760,13316578084017522986,10478703559814603046,11044339998436717681,5539344568032703815,10319842326397031901,1516993978862806878,7178688607583968933,9360571362850014570,1517638242952352528,15684449923316748413,4962187043929760528,10081667204271872810,1446841140008818322,9944647261690213770,15861624431731969325,40088405303976511,12254412782770941648,17914863194388741605,6190348818004332998,15163835600610376470,4600615387031073112,7833900212811214776,6239686975066907522,9101431187976501143],{"siblings":[{"elements":[5515641543761313198,15206621609652182759,3719769513775921122,2121095828811102327]},{"elements":[2774777527650041750,7617353635091784050,11324987228534005431,13299582699468862202]}]}],[[5377160153099275980,15108667939855021286,13324900085723140025,11270472142447132422,2246774227264134068,12437158425608200117,4992484732665656061,13072390048348450074,5047195530936936208,3919138319425984302,6669306368723951900,14798990525048318775,4470992782783454514,11862038863745363674,7902622046219604066,437405727514498350,12113687931289547993,9590545585784290970,14859428661723984458,6567073302578912114],{"siblings":[{"elements":[12665865944982604277,2811641163624855179,15720318050145942787,15798156697780191839]},{"elements":[11427885377882389388,3183865215102623611,6645418160864263831,5502024360765194167]}]}],[[486052756153629488,14462696753909083647,5814607916140487684,14522386564018993084,14684071936081075650,1482810185087651429,13859390253174722947,0,7656510182610934499,5384200679962070347,10221741515830574613,10073267218944138959,14556442125920687433,15072311167721351029,10399631768607630454,0],{"siblings":[{"elements":[12327143456019993689,13689256669259716520,5324273535484100645,5543014479623600919]},{"elements":[11505616727214513844,13422125188889298440,6416583308287105305,10395346502999301503]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[6585508045033738043,905835199593025760,8171019480820564802,6756273257040537442,13443501840570177547,15970449789638496895,10766469730078580452,1466867718611381555,16704430145542863168,5740988760524701218,7867790665892912846,9566797709149548858,5659865237881593686,4396194167113136631,1099461728349398542,13580547558544276161,9082315148229277145,16464674257926269266,17316838633954153084,8609267716560805443,4678907999597756930,14952442569512302212,9029337624333534688,8537823166696368605,18437712830147121762,3450650318256522346,4515354462680208713,4980762118377839974,4480545509699131199,2423326966761792617,13127296148820123486,5319689244543137566,11861347649943952424,7683665329470012302,11599182757006469618,7426980113180945834,15769608408726162721,1736386642915216102,13500998825925812429,12624480692962493348,10110958912789666429,100169951737804356,4968851086450990032,3377637754784489145,497154258396129593,700381220078662583,13614789727005595466,11587602764555920226,13075753966573756249,2961599092141688572,1479643537791297054,4144181021571306558,16973611669380823828,8802953507579297787,10849272909304037022,7383579378246096739,4783968846541245939,14369412218194939042,2301629225599828570,653036461462737858,12434389369660051877,5547326080775959572,10635293910227684591,18414042141208514094,8136972240987125299,580701825749052610,5046886386886002727,13716390724298306578,1768381100043046960,10759278417381492535,16510105377325232951,5615965135201080793,3131885238001357130,7585782952545527135,17156749855357193843,17809118945148429663,11831620189522650483,18282763411073909396,13108927381339670518,4488672853843462701,6848920543354497396,17737982424777701077,3383063426715895896,7156726380526660333],{"siblings":[{"elements":[8325907241208732680,17653120459707896817,17462569636756050513,15767870941559226621]},{"elements":[2184362331170239224,940371620984881836,4930719422694198068,1632196321716041953]}]}],[[453760564531938794,9651654950506562323,10933537921093851551,24220830234809191,15396573630386954056,4620249207274841185,10627447107077081478,6662285428255542553,5489814502362850119,1200981101252056406,8599286870387745377,7927208759013477138,12348778975216764631,10984910526212154129,7947932245200205598,8696152297687476837,6627426507475240252,14257047282930529626,6588982274677109333,16429271350587267059,10533647469969752629,9384240460547245538,12998983060780562986,11553239796775698014,15331032303203168024,2283206006416336822,18046373227755881514,5671900998519215953,16122222487820634170,997506120900964129,5482770427843757482,8941026204795638909,6179580184883931343,18338267588760552997,3384511813438659350,16599522900806211271,6335324903299858929,7529883136490131525,15995706131387180989,4389888117485245795,16955869314553215585,13529961429744729404,12380898008648971604,16562824941676727607,12548828277628950655,11164812664623293862,14268214115950733372,665199384828565229,11590796377090914668,7636817069756077635,6587766040840174926,8904729161694339332,988960551281218102,12263580103337515028,8008403678533263570,16599221967501161529,1788381006869703680,11724752655778873213,526758348774588805,16022680306527532161,7338905352580069816,22537203039800196,2050100869926239897,11574027584750518979,11310644167132670317,8836508316134343946,15789825590092745944,13901109152707630206,11589788108679178858,1102343541244450193,7095070428113269598,9358897162062072210,10852304643953064325,2883964502702646232,7904745610249744179,16753811225806018467,6471258132396459895,7564762987913408603,11923308948530324065,13908290377921757131,1330457418321751578,15290519735357109660,13484802682434659069,14535851775725106760,8205014531398696975,4388284751061462693,5036981846167042829,11110006197120830675,17548386098063785560,10212745358675455552,10140536696950651821,2812463311795516584,1156158265588708891,4964718981301710604,3467981227740915213,17795188439349511467,5275190909719585440,4842104755915828199,7700612837957434007,11523535703709282831,8589166842665931240,5102002146482244362,7960307809950814413,3049653521516197991,2269396474693174707,6910057714430105482,14422886208867510619,16915200909933172915,4036349265417579605,3088142790660211818,13823889875364631983,17604167865992980907,13108926515700067477,2295314361535559131,7109179525288373241,10344671662523320546,17723925393517730651,14441458170283421173,1056782040930111416,2809901388119896073,5870204786086784948,16352782269043770882,9778108270267905871,12239967743242169499,14246115795246844410,16781586093694195707,7317656022361995076,2219206584791827043,7888889631071529813,9029119766792963547,2852012905158344170,15391376529536721667,2414846671752082175,17557920790128805019,11998989902923466353],{"siblings":[{"elements":[9386842323758813074,13670050547252460934,18121674644503362786,14528605025231697128]},{"elements":[16949943286699236010,785217203051292623,11784364630894845500,6149227246456720629]}]}],[[7296842580873939718,8266780761921736483,11131792521585444340,12820378810189498178,9737061443182554653,17585870524906435750,8283065173617986636,11241265411001578892,5475878044399915721,2345078481420939543,7206818476097185195,10582592288971753960,8409783114981669543,14829538630644160079,5004675114828214150,17738748198434626324,8224261562060600692,3735697961316136357,17367656686043538639,11453885902358869222],{"siblings":[{"elements":[6168488968486440438,9951369835177873734,15360070027356583991,10006467373925895069]},{"elements":[7029452046900156534,15226929581879663758,5597950320392991369,4455684749611986649]}]}],[[13149210971230588315,17025317917767221381,10545178932136629978,11246592120544127083,9907393782821281257,6690706461259577856,16081170828295171485,0,5432759945064168446,5962396363699027121,2240260218797100805,10046440045871371215,3448027693572767892,9277103033116956605,6388261003825645641,0],{"siblings":[{"elements":[16494717806839278959,13587794772714171952,3508565176902900832,14047607750579705379]},{"elements":[13022291622584553474,10970549143735603412,10471964077520287259,5116688913747553106]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[15034545801107465666,9328134685786232648,110829080910733876,4250821939350695176,1394630806331531697,12201247022097191778,16228921593346724793,5540981308967052515,16262683837062736705,3444943174443116075,14321882309394080023,11976399724076258415,15741084224719728653,7167218740187920267,2108479466400960879,10523500992781693864,18084559524611127881,16392309362668639626,9910431870163626642,4306965461073664163,8761340433466990759,16828932137000128833,2348349595557829210,18309601238814102288,6690141621618686419,7896548919369665043,12130437762899715305,2761456977705156545,14222367477428627391,14807796117787670576,16218927186002388767,7877082550245093306,7861505246478234400,6642657046293066409,567443057547927936,4962531988520098681,4454913783121034017,11032692175451594665,15818464105310318903,16889379664350046036,15583177082558352958,18416173649350290030,16733021994861153485,5457109531204194878,5211202449828449170,387397703287744593,17423970546079450668,5331695136917034168,5204602975018287532,7804682123145551743,16184475773898398161,17806383633492102915,7806008025234779015,15596547216666649128,10083322942939404535,12021095180947227158,333294063486744879,419406305018384698,7930166925575659383,11941804889882528314,7029051446847328676,10870358600754106564,3290908671307159311,6033256737686447080,16428444435506081682,16034886258387630270,6265258099047416323,5155332694710747095,5556269241720840184,1407033520462800343,8788279239960369908,188529423317695704,3606487184992817701,2533317928314692800,16029983803978270205,9937287719837361600,7652762612315253552,17700302266760805118,15472687335725666131,6385298406622369122,12382980318690581425,7179451047645296592,13902948853468039715,11531705951801209834],{"siblings":[{"elements":[14107875915397983130,4898796723405732069,8183032881835579560,10330461968446653528]},{"elements":[608309216059009087,15657505314169978897,10976396690985755658,16681478498527425210]}]}],[[10590361711545904926,6467492479015847751,6498300686270535597,11235217016121196403,13348882831300741762,16718738320006309494,15308110621512707117,13684655047872223933,13757486518252322688,11518725869960899312,17694140868639416235,1410511988176533518,3358550812817788558,18241491219178674060,16895629175994959767,17845731166005312899,1521331733827038408,8663399782848083356,5303485050026234174,15340596313898149769,10404860898834380906,16079091358020308122,17972894297936545684,6394846193316161559,16408802943911038414,17438487723136664682,2483047418309633917,11141911469455518927,11572111300785427950,615407931945004027,6689041291358307440,4720954509454624927,14339636570799414807,5250212244942251808,4641931700135276263,2097996297924603883,13274261284308966477,17290064994915748672,3090256527462830038,9990879805495489485,5040907862301497409,17165743179684404143,3300104379751069278,6879071168917376469,5111810154001198417,15009669527513252906,18167396960542418537,1338024228960007389,10734355416766913281,16999965320444781500,1300582072486752392,15403666370498946885,428054273850798077,4302421469933510844,3760970427453971068,14839855432362370366,11501515203854232196,1316210471306210966,15846811261318837883,15179213114456831126,6501966051118286859,2773442097296149484,2429981492381284137,1766033530446829126,10443399481702915519,10373741558694734531,8150989335098685500,16040447508536615395,12000573733307693728,5842441027317645096,16818367775098718199,5218131884537695409,17528280826473166510,11809599070276275416,7701616655854884956,23893869157741265,5891210621283449143,17923069719553142905,16962845651787825075,14120257702907789522,15601474846251258231,1890042984864118517,12803721057910078382,17120547413886734661,12295340610736032258,8077053299816392593,5311854616362494025,93311373464733012,8969962644678242838,8723614146502379838,5233384647660575556,17828177013469104135,6252179268849717622,15689501155365044616,211799091353506783,11387519390257662457,10999416427860979493,11935540187335481906,17910052242673888544,9978960126345898454,5173260747164604425,12759730302203551898,15600535552139560279,15671602561892835921,4118536920019412776,18199343645492211573,9589641734691532464,12903065620402082785,14098353188070118291,2969933814652585149,17507739970955183889,5390936136890911784,714881082221103199,4569862471384392285,16531606670516337988,4132093951464771002,14612194199905708537,16432747242738643310,14105528163578080701,15283865691530332451,5571888054152113558,11815467956688831197,4506825004052090666,13992445232187856387,10353881150494396668,17155934585944698419,1201307463282385860,12758334855623644120,11423787583225326239,8325693446431733844,17677856811170538894,3320167937191492461,12771546351221885865,9351653018878373454,1966994390083995446],{"siblings":[{"elements":[15962253916689509393,781868751308411798,4078186772613605801,7115279146862910261]},{"elements":[1717527741793732290,14956544091197845992,24630154679028786,16529648899177002833]}]}],[[2294706178936320848,4089708620785012084,16139615279853351004,11435905688043884140,3904987840767306564,5627708237258215010,16845256705175326378,8139714125924519869,1631384176524751513,12510019991445928241,4397876182838234418,2107552620542933821,2969995800202855036,1226391133600801436,10841690416937452056,16549921351317931526,17054197006161290893,4083564125553453882,678846531878364126,14129867789957815404],{"siblings":[{"elements":[4767086661062731869,13409906418762108298,5863398868727804528,5857398280030787535]},{"elements":[10064153012911631249,15993458643815316209,12531918434153288391,525932620503515428]}]}],[[16612055019529247382,8260036816386804906,2666796678838794912,10725479658505563011,10409088140359313063,12751187993502541665,11483768436261294722,0,3895644621541629484,7883413948959644197,5141737965243137316,3365753613298262889,13893642442503372778,6524391154298568028,3171094029533971309,0],{"siblings":[{"elements":[7291889980561265417,17539537541896536748,2646931274408689000,9089161658029581757]},{"elements":[11285351922633211483,3986337549353316321,4281752292945291434,1113329571361528126]}]}]]},"steps":[]}],"final_poly":{"coeffs":[[1184571642067389602,7513794317082853489],[3197717442149773040,9805572144659411237],[12256112477868158947,8074006969565413771],[10905771344652594876,5266649780524051850],[17040883825057365231,4766096005233009534],[12553657348305442044,335771411886163812],[2137921529901507892,14187599642446536365],[0,0]]},"pow_witness":3458764513015237522}},"public_inputs":[0,1,3736710860384812976]} \ No newline at end of file +{"proof":{"wires_cap":[{"elements":[7862368239255030905,2556246342331247016,5476952604623256507,784729101195780152]},{"elements":[1559715368229707874,13638659630989523040,18316508411859396017,6509934948580420449]},{"elements":[13147428849304007523,14468156373615356992,8747190531273637031,15481601954494393830]},{"elements":[10960524337694356544,14798156172035680974,3439810808075899579,12849485240992934239]},{"elements":[4923673946411291568,18032471229464725306,8779609305877297221,4800442619463833926]},{"elements":[3351018179516818186,609039416225989472,12538172326160751677,12376955481265950101]},{"elements":[8927800946546677096,11768218876928952563,8965868142758886323,5385841324041269495]},{"elements":[4468372159997124593,121989447747299818,442394788538829072,8984375728830099926]},{"elements":[2572270002740696703,13568748999976686758,5480027541655457364,4238175833330999817]},{"elements":[9133363218974237660,7164345927395700511,6223782832811877333,12783411872080129126]},{"elements":[12327253718696370698,11825225888212237307,7284953462141324488,14209283756992142552]},{"elements":[10316195559712161698,1052555640582214942,7069573620447357631,173576378666271316]},{"elements":[16523233902101574409,3050605694313724809,11895814783117754672,7840505015727752631]},{"elements":[16859469892707585547,11357874171170818723,8729136107874291956,17904222913840840069]},{"elements":[9888417328722220252,6121486026782367530,13526188175508813233,14250877013727731000]},{"elements":[10463485232972464498,3079199954394412422,4996177929945439108,15528059354359727649]}],"plonk_zs_partial_products_cap":[{"elements":[1575416681054743444,6602587441047268187,2345342159011404910,11114763452056254768]},{"elements":[7241251246964298822,3409890052288321189,9537234079878268983,1967365580223323548]},{"elements":[7198822232754028107,15322792959968720652,12062794938544596224,11437706289156167098]},{"elements":[10813003596913416478,17302071378421956428,1373060044164453143,5460507442208552664]},{"elements":[7028131279950916087,9253029857934514565,8726523792169517918,9166181104363371782]},{"elements":[11474913602575196644,1861818484822690704,5921420406668877278,154878336722404727]},{"elements":[18065172439965281843,16367606220853534987,727496825263362669,7664219835242033065]},{"elements":[11288914677128110946,8498098732981969754,16112603474064462859,14140512800144524349]},{"elements":[11633224145832867171,3281242449823078588,3522808452606991909,16060833875033323034]},{"elements":[2578170030168468913,4418832190895284470,3511487782951935603,12309320885707832792]},{"elements":[7476352207382135276,13148549646059252394,12819900433188414349,187375308990066942]},{"elements":[1732394603456171099,5821311555386344708,16155384652065242485,450616997432216401]},{"elements":[2617731885469528837,15492969034587493937,8431383842122536690,10730105769878479690]},{"elements":[6096139099501790651,205373538583538928,5355993723349645245,15489555029830814781]},{"elements":[15232156365823157852,1188466816913659671,2919886411266251849,8020269852235808363]},{"elements":[17500864269831749642,14156692823410504726,11761929310124289909,7170947035633386017]}],"quotient_polys_cap":[{"elements":[8962699470801616164,15687866188806174059,8944956838525725234,4112964331177210512]},{"elements":[17635391181868067678,1463626512487091129,15981767461327716358,15558571782992812338]},{"elements":[15700615547804266590,13064167623589624943,6507976796518144327,1175099133761060962]},{"elements":[11681418608175239362,16884437761041707968,340494749112321084,8521584035213468690]},{"elements":[5618183178542236904,9128890383003052845,17013213619928176022,9059695077246036800]},{"elements":[14260490364541114628,3457837951941758576,5562974277636724132,17006989884786574063]},{"elements":[15977243969843203057,6308250343726173230,7257698306865980728,8646866815146074420]},{"elements":[3514499041197915598,6703987128249725312,16898861881746838008,12656593963057975720]},{"elements":[16004394535211453661,14900535088367632780,13358663935707846745,6534131368121480972]},{"elements":[15003583967217280689,11882961280163909989,3029676953220625472,10907706268159536542]},{"elements":[1430108750021156608,1844071096114178237,2796257622845347840,13249125413968190067]},{"elements":[5098575902517648050,11638946070050202738,6174798131172422032,18404479458267903752]},{"elements":[3623597768578898992,14806019512020164034,13837128115319417592,5313951291807652737]},{"elements":[4860985611963154579,9723948866825602514,15060761895473569464,1182784990659865040]},{"elements":[17832269756755618255,9190566034909791318,4263763339264657685,4492047311192114756]},{"elements":[18331239711507117039,11382193514103297025,14207524395136548618,13787505780127051172]}],"openings":{"constants":[[1205247320246656585,5030732156490917085],[1288917613684396793,10922105967681019803],[8817069139565607434,17330125731182292342],[13410058239953716599,18364861954112578924]],"plonk_sigmas":[[1043016948931681533,15222904356079342348],[10417174013001348907,9114276696653061465],[17750013044223802504,7186057134870471134],[9459140940158399712,5398172842252521270],[17203167148904507428,3192497354400380345],[8189140375914192005,2740258217993932910],[11384403973483421465,17373617695724980511],[13819180740926522658,987810511656723577],[8930545817224331797,389153208035426720],[16343608643442702140,12319092691840898634],[14325973530695558064,5967746489303057130],[15382460488688326534,7659746982382188696],[4174282832897391960,3340018571094421406],[2579151689687670249,2593628888011285786],[14974286880729101773,12859144436898229481],[1446032844668868789,13943731311381974606],[15153167470170925829,7897748658639850436],[4071775038116996234,8444295969256974259],[12660405082552184068,15708319659587026919],[14862568909379453825,14195876223413770888],[5775790994832634417,17688370105502799169],[18004253798592852025,1782889899367027080],[15845120881973570581,10530624785041280395],[9024921172262557011,13162516207726661201],[2460044725661943390,14855358532779316749],[7492015783066647922,1074024276048456608],[6948966485670095079,11990733786133708625],[12358197109677390557,3928823844530601728],[4891229188093272622,3358918633528042248],[2754427463801947747,14634861143717095189],[8611893343114058495,12831072220282867865],[9666796716763139189,6819831247122160897],[11712052464271937266,3536480766656089171],[9445963738055353629,15700897899377001605],[16802559072520006975,1341804976809927795],[3974877624750116971,12152834769572020970],[7800004929094870462,5588048810561311911],[8710473760379932720,11157722590185085802],[18361797380255421269,11940281242498963941],[6714493137690753414,14653907997964537469],[4366604300980893447,6122255693307096944],[13686468025494425027,5019550244414576510],[17403928161824524000,2374979369748387507],[17490450996566834781,6092162739242162922],[6466295227641271919,15927640376330643028],[7558541584739814126,6216259511674638897],[4956199316648636935,2281549316771849118],[9783340769376394585,17461433944082393490],[11863079189028463558,2164087673440612795],[14908924725757328983,1823135374409276008],[1684634500970393890,17763665022492773302],[7095986907957557952,13900374031891192178],[1480289681222811134,12439420425413126594],[9644771879053305443,5469689505415211131],[4970485628121763591,1687430518629747950],[11119789936435314469,4638028999769382689],[12400663288369343102,1769793034704936495],[6433474491683045788,17089469148152473300],[17539324278532910625,11683724028230861651],[6176968938286527582,12520954589293490726],[947627339653693808,6521940361198130665],[6847468430985860311,6256614336052863396],[16447626353436990103,13570406272130656131],[18166933086041514619,13065879817313374217],[6303721970524961525,16339836373144222457],[4722736948655976700,6481348359453376502],[14718566055002790363,5595432799549459645],[10703359489599265375,11712523364618149317],[8906314310473478305,14169240343871852811],[12990555102445283606,11112160531062398699],[13762205132770686848,5404469184435221957],[2451645833320206222,8930636660350004913],[4284282995318182266,4550001635825111287],[8411107159307150558,5637091820808406253],[5722305009755681640,5954181055706601364],[15852837019751873618,14560040480527145899],[10940615546175075366,6196688497466821785],[9589245908019109745,279904471050733449],[12475254604221618969,11957725914794343385],[1406171134218727046,15003567887703696565]],"wires":[[8973542732583044073,11495355464188619438],[2982137031666005259,18093192547497979879],[2661078155555056379,12224288511653388005],[17166456734200105558,14293200320732019463],[17085659753370747601,14439873587257331058],[10347034428714359517,15502555872691048349],[10004389648634944142,7083969293554266559],[8890619340421188825,6347345385642965918],[15036985434852369825,16984339457672587813],[2004845282360572853,468536257461290533],[2737870729606020872,4689280915411788410],[11967683039135654340,4926487691316347598],[11149376555722859739,12417573150582081773],[4155731528072389904,5356387159145730778],[15820631769577792437,16840583744299620532],[11277807582825462128,11881472488937251007],[859373867579745019,6843244604231286992],[4341501434295499229,5190295853569377793],[6662769830006769405,3693498549964518768],[17935009157724761582,10595098033820704759],[16869031797863588714,16877015944384240442],[11413968825247315576,10870130515599165529],[1936975676826059790,15392450399448596697],[5522081025594235152,1528793379258609403],[10704922283196909713,8236996755384033995],[4165892326009669634,3795506343290300780],[12115791618418101752,9617945124461925129],[17945556309678881962,3588033685980226076],[15359002465544101223,4403201333211018753],[9641423019896182257,16560456584336893370],[7854335036296475441,17157750666528288405],[8297311188350868584,8515296193060100358],[3315510181912558077,15694060012266832835],[10574868390936994313,12727391055790534086],[13876465042313681745,9868059830262346730],[57776402281317165,3675674532741107911],[4460364551930509074,4649214189731897869],[7986023651420386386,6133511728269071176],[10943006143652161680,11943716541418768290],[1432463533454070297,18339569028889856536],[5661981439807781266,9987389912836219737],[8608055065676409327,8051470338641041466],[15797526482361323436,16835514125711275121],[9043092892603895424,5567591938910333935],[7478300133428715352,10099864159100277687],[13593395375806639892,1102349383581802965],[17719406962402869970,14136063046512535263],[17967184864866663914,8953431114373139317],[8353239880517917567,2562177838639439989],[6866871569352228595,17712724389186074945],[668558347997851804,4453350132782102085],[5804824418079001463,12564525409433027845],[1510874630914306399,9839875400781309848],[11529094833870275387,17096279087107801870],[15217314110850230611,16750999501146369375],[6007462111709981421,2502224858811220322],[11308026857567530825,3277421284420429591],[441502773809497327,17003156615899676906],[15830210764054695307,3727228126896145255],[9907977560944770517,1603802989324788952],[7829903130497781693,6673452670101044611],[12884652888817421145,6521266083338197137],[10384498443395055826,16723400066204772199],[1063539648144884687,17281519142168164503],[6324418707280273513,587987443318031110],[3205689097944219082,8428259400496745041],[9724824917822973065,12972731578798098175],[5042156612062323313,13164674690601413835],[16843761704588107561,9586519281108735963],[17284821028975816543,11649842121544938],[15260562169461733172,14052251517222096665],[6970043896817388374,3735340534301071054],[13928995319363301828,4884670657630133202],[10752664186867068289,15858288879792712021],[4457860701126581537,6110973587929852933],[9147973033462696771,5358751151430689193],[15028749996553356775,13722981295290178701],[18175991402621924564,6007136718641952963],[6355629275811822697,16038520661536886287],[4462795564324862673,3496444261557533729],[1738648670670568433,1181041356277921916],[15616030943479125700,13626159203324770549],[4466694116987981804,8053298838644352936],[11927465620848670991,13877952528997888018],[9903021533899733924,5878670337969523940],[16845609815906573511,10649010143896880732],[5407905863737733645,17849718154174072768],[118479509754178370,3560565878386234863],[1064834454178045535,6569873522217318238],[15289218390307183105,1996492234172854986],[9817152999620491616,8481231534655999631],[16386599660167500371,14651438287294216351],[462132181826266952,1577243093479155268],[10327172127876511843,13978387446560548162],[1547315907487992418,14705695073957836386],[2793357093890937458,2571784768910406392],[8696779170420697818,3933138699578859927],[18233878318893654578,11307330473122819285],[4553491200092152326,9022035722526233412],[13398187435485450818,4953875614162630150],[13663817167934543923,16381279803340020049],[1085328008192706652,16675889318827088223],[11127066925004008772,7541801857102411393],[13006834395426574167,7317002074030578051],[17620447614324127002,6777818791766026238],[3431834174549886856,13457229307678426653],[2727866648414681744,15027338685356271742],[15086025241636933231,9219284402871617319],[1909303098249612026,14960087232029006423],[9994436984572926463,3988223442365279067],[8776432563391693647,12952761590752821935],[7261607004513134128,1737015749354131143],[3113703614453066453,10841637630176486172],[7924815611622502678,10122680169330350282],[14993509771593850841,4654461673797262248],[12025601342589831664,12661267733103307597],[702062648485103735,13516873892269459205],[11463877784920310165,9778390530028089134],[4347592558221089835,9059820247326690493],[9771967570359414880,14438435022179084182],[14691800395289024744,17548817934951940072],[13223585036807756458,14225248807483154257],[13795978736150415182,12257590189440708036],[7059664545731939592,3736414081786075579],[7092721842232799004,9355685302684462533],[10004500935048337521,8626553748027411293],[5403187215628181706,2715361857496799465],[17875895545359306356,17014342439913297726],[12326779982640331971,9956031630600730740],[9073310472147441062,2761768032951729808],[7980379273715133527,10113945993609390638],[16289890851725217667,275965110697798779],[4991417848886230034,5442615492686075927],[8255078727498746587,12598057836146662140],[7448096431725522408,7412883243723164413]],"plonk_zs":[[3016872875576542507,16134265396828569958],[15993626594773129246,7022929820920006086]],"plonk_zs_next":[[7437077377030298312,8491253332838852735],[88260629994759954,805111886454496967]],"partial_products":[[1919366564282011359,5509208870736798612],[5842997688850551751,1409974986752152046],[2197450173142843148,8017225147781038569],[15671347164068264909,3003525082476730392],[5520540887877348282,2379103910483275635],[6778194822074228897,11363267890339342435],[7871976373993887266,2892648230423414734],[9728319398102471485,605447646346016760],[3698671249582551924,9422928297531587447],[13046421531610697768,15841913505869077498],[8630684527629335429,9914680141461236165],[1372081133312862133,12048167125701868132],[15420027336597743608,8479832817487208626],[5185006427425796249,17503038626291323880],[1235150361075975856,2351000874397949704],[12269131157393926395,10603117651044081174],[10495442284803831553,7722410433989988397],[2415514727836566656,6766219186885086764]],"quotient_polys":[[17917316958605630590,503886545457974494],[14503613154559089559,12083732098676212552],[6831647295455075915,8617579774748304314],[17698533137483932804,9580140701429432615],[12944905286815379267,17895659155479407103],[6816414037501012690,1371047374261981849],[7550787583430364790,17096191328890746830],[18446744069414584321,18446744069414584321],[3243387037108311928,13559519327984896011],[14247366004456655085,8992861655342630812],[14037708504843184226,3995240673584857079],[9448396872776581594,699985824412249763],[4351943420050995504,18281291041113593748],[781546483845477773,16498963943993551281],[9982254711329973748,2821351977595737572],[18446744069414584321,18446744069414584321]]},"opening_proof":{"commit_phase_merkle_caps":[],"query_round_proofs":[{"initial_trees_proof":{"evals_proofs":[[[8851675123942984855,13286979971740557537,9834126998565970596,5809584622623288696,13247656080055627728,4777901864804610876,17333284365170677963,16436158487933390318,11490477147555676912,3072761297569234820,552643525674882018,8370546490309277392,2333494491959714090,17448991767313658741,17178276216956238427,11133046799753326189,8461253717621928418,5097960703174945929,16493020866127033924,10035082652103005473,9849864816006832510,2833206780844870255,18116694173237948464,1496777866531997447,799526242907756988,14127663263966452127,760194264724433146,15095308076896511973,11135461737293715266,15403897199445574929,17445510800734720088,14429340298281640729,6211456952353734328,17482060761998425245,12562394992956522618,1860693813630035491,8738934514331990160,8085131640039682970,1883824595765440983,3413781727385808209,8233761986726001183,6426306711136105278,3610557426250641538,6135560633250071285,12799631786109032592,8084371407196280122,17425411872350286189,10979313040582867127,18087042872504358927,4600987654125867230,1198356080759899761,933335246022977218,3354397481034292093,15818404046285795272,18007619145258756406,8881893302003597577,11127937698576551337,16588820276979915454,15572213127903066703,989673867378307301,7293001769981663329,3237039162689456015,15780235461315319557,15023714690249036613,4537127851533132300,6051776393843892874,17179768109940645344,8554315582424560258,10064970576445902910,12727538989908929847,1703492756478929188,7685564142936830185,759623113507426400,11012935820788927071,13355668965285845447,6295437776744953185,16074176728701522942,5160986149245930884,13748435125283087031,11766589459837687649,14728034349945049849,11470525794731213732,14104781483456996739,11380647532262937607],{"siblings":[{"elements":[14290926262318189984,4469540445357943395,11387126795916258084,5986630170827251557]},{"elements":[14780924131161078489,11232344161552745537,12663829209753110762,1955609769005186945]}]}],[[1751796706371789864,8389492722321835306,18398241455822516898,12481551404849230620,3035039300595309548,13053883889825175160,16815458501512482010,12557309151250433222,3063829503570297585,2421388015622811832,13852924525171343374,8878337344276345135,5557806040471880164,15350582656665032471,13574109573434187137,6644068349715924140,12872128503449919040,10872229924395611952,17622920085314311614,15916221425989552663,1057633367294654185,10886630185015316891,12320039635137128607,11722994002150254461,6305127970550407397,8358472029073189993,17067520375593868982,1092143495248527099,6675971685277576752,6809518336224275919,6496439027232615514,6269240283091371870,17439809680399290073,12061290078538472937,13283725801005724746,17010693678165302093,3993232329691590723,8317390449219177309,213235300386928751,17903196255421705215,6694568803177469207,1766652429816419870,14045630680864416126,13975625159464181896,9787807003342936714,16031157318525924383,18429348503101620233,13345935018183384824,13260597185962331904,2134878294367715838,18307229577213152513,10059259546947180467,8372472019720068763,6600668112338174483,11924789437883586940,15595373235262944139,16764869642539449837,10507635165054789966,12062397147247147312,12499630426413228362,17473716051273724809,4256412228573120135,10661374874287799166,16450634900100782530,8606364038187800421,1049734295291748786,7073457067355105750,4645208478239987581,6490806075692942813,10682397252628756892,14457250554609017848,6484876167557752421,9643148337099066068,12661195951158499045,1989091489578026960,2595477312090405999,1483130215486490508,12750905393023160464,16783771776206784842,16165391704219921754,531099147000839195,7790789611667832859,5262740286407295914,17058683556006413849,9374878657459588044,11617501834788996749,5350072599153506940,8689681251145430639,2772660103271379812,14514016113850321499,18091264202929960562,13159608371337420365,16193340844359849648,4740718832110526284,14542086879832600771,13735483632803718247,2024486685590209755,11960330354399779573,2686225761623488737,8871977605748412609,17075043679727448649,13053869704874012942,3791608794732723095,14437259811799278678,8779453756193979324,3148733438733681809,5846682768804943925,12650012737609600332,8045374097833970732,8105535478975516179,1152974990330403939,16702866219131985054,1200574692139645529,5067670398367505812,16366887994679697348,10479480962431011401,9612983283924113360,2924955770999436977,4470564481722786940,1649145650321511903,3343475551149516724,12889029643741454022,17478016743599870335,3093717370958005479,14467509641148002237,7051779920408434563,13236455500919514702,6622571486221551395,6247862680464192853,13473769084307888746,12935338275504429879,6656503241585922440,10117242867444188718,1317977635388308416,9003232510692201478],{"siblings":[{"elements":[5445217543109647181,7107780542260184588,1387418701733593928,14868408384393508124]},{"elements":[786697344095648249,17655186295423510184,111655492161082191,6222834143812744390]}]}],[[9074633611482174462,8563945343768018026,4689415927861473438,7396700270290253251,12036140662895601313,5291364011841659332,10818095313432779840,8060316199276155074,10126690920043242322,2295524359981357617,10477266152165791425,590772333953662844,5848563741002728730,8064896457692053149,12531177487569819567,14990416780221650130,10653154690586483574,1298886894778870303,2259454205819432156,16898444014563432097],{"siblings":[{"elements":[6691165329509323039,2123422868794451446,10128276344980951530,12569222358176723709]},{"elements":[11934052972282547631,14844112949750346732,3612264597660725115,6821925231301668686]}]}],[[13558533779067718308,4199096142967011806,4409990510688308114,11889915019493229698,14783467486909592114,1253923128806314272,12301505573553185456,18446744069414584321,5082107507749890831,9301109139436943210,13119616691286918002,6801137923510178246,13042184229948106569,3865943653126103505,2523171868341403113,18446744069414584321],{"siblings":[{"elements":[12282947168248568608,12198275120234266971,4699778355161349006,15294508118361400577]},{"elements":[6977610179473082961,1873895054382050419,1340057911959479707,4782855201988406127]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[2567677165572922814,13328620337251380667,281392357543300904,15970554212485804273,5017050651129700457,10191499307648198235,13299335024042590469,9255003976555194292,15378034648982568731,5948118349615336569,11274594290534446571,4032022539137207967,8942831666614371499,3652247699534837715,8927341742011018064,15206620229015433834,16954616039899999479,16743998276321555482,13395614356189917393,11666901723371043350,4130831228654990532,7977466372638589160,17845681475112975449,8286985003484835622,12224214725000486955,6176416652914047962,14141492565589259687,11460886538168430384,13439184736850988000,16840895906717946999,11714562256977357847,13493170645256129373,5810640284248508360,18174815942436497288,13826017214809685443,4620133367956556897,5608806003242825684,11183353624538069323,10574751881217555164,6447030745527932776,620043113377912954,11219431517684257468,7259427288881923068,2502545773730349857,12983989667202256874,5608732614609072008,16158519078129687244,13420580166830102332,18008457711385836305,443837003735336878,3101528610508245781,14797835361211474666,17585610399021904202,14188234011912537781,12732333856220638818,1173624576261270820,16900137231023062554,13260310462680555615,4078665765787582121,13967509052294422028,12839283043702270275,17371901155856077890,16102146866254982391,18255260432607577971,2609247937380529884,1846334264067864109,15325800454658568296,1416389761742361675,11358058119108166665,5829991367441488669,14439217222541342622,6550909171126866611,6409809383952536227,15177268610759378951,7128444891759696263,12106972734380891519,5367776978276157313,17819540293624418832,13837383168942211638,1467720147972680170,13632213988442702713,6387021946092180563,4080123795696239482,15688564486240788933],{"siblings":[{"elements":[1516586498273230392,2502406512148235540,3393488687492441958,499480511920846682]},{"elements":[1387097763072726135,2384297850115292619,17237482130465183716,5331312880628564851]}]}],[[960549313432837250,9765326021820784071,17720338926827434873,15246376710275510099,12956783271496354315,15399273559455750840,16293324717127100804,9628081816283376289,5277087462299478823,16238204287728371027,5655112785268123434,10367777224147951942,10091078990325523128,6835921255540816118,4055604449515526720,15763205838317458293,18119817279386708759,4044916084528527847,11087932838604701856,7880688327572741855,3926208913372063451,11807661129957295604,4307310016841632465,12916720532513569521,5360267810717672240,17958826436092301141,5517152478495318588,10878198850398662008,8143931029565313720,5623928523048950782,1843113448717332663,18412986509317087033,2311811847427533844,17722333673323421355,1593462511863941968,14474938940623366846,4362586719003535752,179633299643846915,8322908048544475376,14895260140708056800,6118327789476890546,15443281087049435698,16037218935845329826,17467408224348210836,9057265576641526940,6791038607722844513,4157104203514676013,13174993322221840660,12568329329862222438,1646244802997247081,13516388640007477678,5170126016343478644,10564799611420986514,1249567824746083025,14506540465735424426,16232421605366352992,7947207224645392780,8717709154606509077,16538077377684724874,12738675637162709313,16156328700527901970,14139272749975244822,16300477365487761067,10266290116078941009,1708853676417604923,16936982350532715531,5641841702814264720,9813459529726972458,6577631317436958402,4505378538274117114,188152272109938812,2267957370980966228,10571875361786835461,4284433855602068701,2097449158939560433,9836875479195360052,9849575146219764535,9995038984341895147,3217277893293474898,5613017666373132992,759623320575739400,15546336791705508605,1770701354124371468,6838480975097554321,15572211246292321712,16805950788224651591,15882872313133786181,3790765390578945860,673645850029105056,11827495384315003893,12384421512127566262,15711012061563073132,4655529329441765076,18317672849108861126,18337160553627827076,2314969924409027687,2376141988761716972,13396007411144986230,9192002577186614662,13127000468091517684,1089239864662973733,16735632698734954226,11741708016651801400,6994870198528844072,2010698741855113464,4958355305894970473,4935551883401458896,2334546124087315865,9022911207195035825,10806730524148324271,15345294637065792961,5985641585366172199,17999454944042884514,6943092569649735181,1239081430691467740,5335235592735616086,16109180917075142737,3381500244292816484,6506014542133923400,4355565690735379321,16672566207072720954,18336042253821288189,7939230511418589181,16062994233705931488,15278606539006394350,16620667726563615914,5176121065574137710,16602132488462578047,588504001412227734,8593169090581671795,6683538160203321140,11550800372656284354,7069840046558191031,7863026415223623789,18251696325243700564],{"siblings":[{"elements":[14372972261945556354,15322424786871410307,4062599509775368332,14670574258680847243]},{"elements":[5722377138439658430,4387909552382412081,12279072816552836911,11208994093843788702]}]}],[[10049084496319488762,15575739041087289628,12892653056993488720,14951234184725466808,4542420511718219544,3358344038199812617,9149729977785454909,13006572900236738096,15545215076160736909,14790711222503794730,7702115898166853722,15054982926384385128,3418612491706983926,14662401403437278630,1092938515843103486,401356888796794493,14363178528763628723,4240878629796563918,3719653384526337182,4051613708567918735],{"siblings":[{"elements":[16324974087985228419,12711251790647942601,10909825396690814686,16690913154654818516]},{"elements":[12883943976566401591,4133233046080243002,6787617582230909134,12651053939888567538]}]}],[[9869471431335928850,18133968409012010716,7316721156294863220,7758534513674209071,16125590294806653945,12168597401230410922,15102144969047509126,0,4359350520548158310,18368481998964256506,933420465947542528,1954062407484414261,5751661573009534548,15492443941850341208,1941541434047365803,0],{"siblings":[{"elements":[1650051614757133955,5008440401227585001,14890509581679969642,15906900567614835183]},{"elements":[4495606279471192027,4211342623884173948,3868136138546598700,419163738175630397]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[8117943655843530977,3321505716937399696,12348903993798373645,9554193422348058649,2076391541765032818,2332709985254552082,9983547647567665020,7929555782678041074,14561373194673373627,2805033781646317896,3471962382805966233,17694014429178832929,3704390472367452083,1824524396485991131,16700105811147396662,2703343674576437658,11141970420011720080,11082113368486849124,9674118655743465298,2616398679862231668,1540270854618735567,8533345113891362722,7196777356678968519,1807436776493534206,8841508056667232167,12675701402973299212,13309984414152489663,4670844048548313171,15076274001910410267,15678098074241862683,7511850154067636891,17522910429847240724,31170377651234223,11755574648960287043,13483264098347293674,13931463797972726444,1053100462955032139,1616305949335179113,17728002378671212240,5497581083874818071,1290274045234113762,6934329776702342903,8295143050134559693,10270172752010398956,17341723014871560955,10362643250370252561,12601612474741340534,13834700839083240500,3175594037901040458,14495438568116734253,3811278014040335694,12977389692608662700,6095984332174815085,12988687132372912047,1293453281212178078,2161918712166224531,8190334505965652532,10840327516714322357,6528324528789399350,7231744405606904730,763970827584843146,17717229756524086547,13221478690365750821,5032148543054410669,8066294159164545767,876821344300355121,16370536175082689101,18018030476501870335,16537747338175433838,2319223751890032927,14092488520471927771,3676331303790441590,9738121579031186246,15986263394179177106,4736314346750933457,9327795220678952152,9205175305599841939,13846435457268289235,16834002675993659935,15967840985757895514,12735654769576691888,1268046656697214824,7493387054599321913,14464450334185295832],{"siblings":[{"elements":[1423617203194833644,3418732215912469461,7687250902006068811,15555503910463265671]},{"elements":[7328390293048134264,11928443479975480452,13499502888068976741,6344608598895868495]}]}],[[459350568365686927,15550828377363138977,12397043480720233124,2084404325896594405,3726921141320606065,14584401167601179527,721460726161459567,15763730297415134102,13255827072499923940,3936180541805444588,9741087234497769191,7287321049859104260,18277880949514633055,6050547391607669948,15350588373692293687,4176051806369471524,5613699206865024344,9786217331428080765,2371068512760237710,2970267645779418284,14149122164230278858,10171927905044078016,3958607339739786678,10762995682937426484,17697084722420289031,8389899478809116293,11654124517920625578,4313683413394719244,16748710043083728414,15766049485792293875,2950103172489203780,2082082622816141130,10521726706369641917,1288625524078050337,4483541129696841656,16849721064381449052,12767984669940868380,12442569482474057684,10989197861859757679,4653092765458706036,16038471576919661673,1664072810443846978,13435591309227248026,7992058529728823220,647991035158248304,2384808713687007735,3780591392881194369,2471760055479929915,1780576354413923951,10911116878882746055,2891605707305048984,1709311582746207940,8063630725060268074,535426590320092401,14542073447778369824,16383230440436994089,3120630814734269233,1507629707841188,10589235535465866100,7227362606078656985,3351840251341676587,10511482507299624483,16394352664847012148,3840257850160210962,17094337649370412631,17184855579044779063,3154869972116214257,2933313616496217647,17477787947509432604,10321608322159152224,8085681174840067294,18170889612562455350,16348840703618946648,11103785591152895848,11290161192611350,2138844276187320379,13814056831643086829,18071638477504662755,12267180641314992394,7452840917116389089,14352363436738785500,13653421101319933919,236135348300180544,16937235886322423039,12502907070561177595,18318344790853446890,3127065566277892599,376258082131845943,16736480179101075156,10813957517297606048,3715308068807687522,8042584070146630256,11675472868104332696,12731388256781487959,14189770873521092744,8241002969512996317,828327899217294974,264455391473682366,11303195094566561588,4237883109004529994,18443019187179939873,13028425911553267794,16704388978732818237,14427852457447086866,14999353566775137483,7036838671394491381,14172072704729465628,2383326413350919326,12445694715585642447,15333583278077157113,1620010496845153083,10590208988523187598,8840437009640836426,2744146407466385913,16220665023161422670,5668157544188701924,3231400132098702583,9475486634581447231,13451025113297185144,8356958684195676481,8837217747795658422,3171739167266154978,6688442764961635592,11162126448196139409,17682394498793984010,2830789111881575803,17915238153016540470,13799183444698160368,15913056898993786819,1696175432313071260,9953966241444407010,2087872243972845925,8900112525650609969,13990557039993240614,3102196652928452333],{"siblings":[{"elements":[8527372533244537719,9441934903434739769,124181631543034600,12388531894844762921]},{"elements":[16604429428849316352,11875787488116677423,16895989160574863136,5777471115308033496]}]}],[[3052029959722051562,14264945710175261884,2926462344703325498,15812252710610107570,16527991633485154256,14115527569776226397,4036682971278309858,4938944847343573281,15684619487866534696,15176360603254791672,17497117669396531435,15619112040289236733,7869385615443987220,12851050255310136802,2271789606998457719,11166126292295447574,3629206820221342839,5245325649117951703,15340374646664341334,11162183420115273041],{"siblings":[{"elements":[5578040717545120218,14852771550899223811,17495925296331126408,7629674525792835983]},{"elements":[7736867712023182193,12286930843800519225,15840480849373353787,11143510070313700033]}]}],[[14779057891136748104,1001101392690628943,803674806391192191,4499951921518008384,14162670231021425456,14882516671245338443,6110610322400307590,0,16544290206617642923,14054484984628785119,14997601842706344843,11495391636630821654,3774281056030945956,15099136236825301103,15050961929133079405,0],{"siblings":[{"elements":[7123917558700179832,17178958387338950451,11543705238886711589,5346100956738652420]},{"elements":[13579173583710295857,16784805547197756511,12835472284765102229,7702599377576547111]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[8851675123942984855,13286979971740557537,9834126998565970596,5809584622623288696,13247656080055627728,4777901864804610876,17333284365170677963,16436158487933390318,11490477147555676912,3072761297569234820,552643525674882018,8370546490309277392,2333494491959714090,17448991767313658741,17178276216956238427,11133046799753326189,8461253717621928418,5097960703174945929,16493020866127033924,10035082652103005473,9849864816006832510,2833206780844870255,18116694173237948464,1496777866531997447,799526242907756988,14127663263966452127,760194264724433146,15095308076896511973,11135461737293715266,15403897199445574929,17445510800734720088,14429340298281640729,6211456952353734328,17482060761998425245,12562394992956522618,1860693813630035491,8738934514331990160,8085131640039682970,1883824595765440983,3413781727385808209,8233761986726001183,6426306711136105278,3610557426250641538,6135560633250071285,12799631786109032592,8084371407196280122,17425411872350286189,10979313040582867127,18087042872504358927,4600987654125867230,1198356080759899761,933335246022977218,3354397481034292093,15818404046285795272,18007619145258756406,8881893302003597577,11127937698576551337,16588820276979915454,15572213127903066703,989673867378307301,7293001769981663329,3237039162689456015,15780235461315319557,15023714690249036613,4537127851533132300,6051776393843892874,17179768109940645344,8554315582424560258,10064970576445902910,12727538989908929847,1703492756478929188,7685564142936830185,759623113507426400,11012935820788927071,13355668965285845447,6295437776744953185,16074176728701522942,5160986149245930884,13748435125283087031,11766589459837687649,14728034349945049849,11470525794731213732,14104781483456996739,11380647532262937607],{"siblings":[{"elements":[14290926262318189984,4469540445357943395,11387126795916258084,5986630170827251557]},{"elements":[14780924131161078489,11232344161552745537,12663829209753110762,1955609769005186945]}]}],[[1751796706371789864,8389492722321835306,18398241455822516898,12481551404849230620,3035039300595309548,13053883889825175160,16815458501512482010,12557309151250433222,3063829503570297585,2421388015622811832,13852924525171343374,8878337344276345135,5557806040471880164,15350582656665032471,13574109573434187137,6644068349715924140,12872128503449919040,10872229924395611952,17622920085314311614,15916221425989552663,1057633367294654185,10886630185015316891,12320039635137128607,11722994002150254461,6305127970550407397,8358472029073189993,17067520375593868982,1092143495248527099,6675971685277576752,6809518336224275919,6496439027232615514,6269240283091371870,17439809680399290073,12061290078538472937,13283725801005724746,17010693678165302093,3993232329691590723,8317390449219177309,213235300386928751,17903196255421705215,6694568803177469207,1766652429816419870,14045630680864416126,13975625159464181896,9787807003342936714,16031157318525924383,18429348503101620233,13345935018183384824,13260597185962331904,2134878294367715838,18307229577213152513,10059259546947180467,8372472019720068763,6600668112338174483,11924789437883586940,15595373235262944139,16764869642539449837,10507635165054789966,12062397147247147312,12499630426413228362,17473716051273724809,4256412228573120135,10661374874287799166,16450634900100782530,8606364038187800421,1049734295291748786,7073457067355105750,4645208478239987581,6490806075692942813,10682397252628756892,14457250554609017848,6484876167557752421,9643148337099066068,12661195951158499045,1989091489578026960,2595477312090405999,1483130215486490508,12750905393023160464,16783771776206784842,16165391704219921754,531099147000839195,7790789611667832859,5262740286407295914,17058683556006413849,9374878657459588044,11617501834788996749,5350072599153506940,8689681251145430639,2772660103271379812,14514016113850321499,18091264202929960562,13159608371337420365,16193340844359849648,4740718832110526284,14542086879832600771,13735483632803718247,2024486685590209755,11960330354399779573,2686225761623488737,8871977605748412609,17075043679727448649,13053869704874012942,3791608794732723095,14437259811799278678,8779453756193979324,3148733438733681809,5846682768804943925,12650012737609600332,8045374097833970732,8105535478975516179,1152974990330403939,16702866219131985054,1200574692139645529,5067670398367505812,16366887994679697348,10479480962431011401,9612983283924113360,2924955770999436977,4470564481722786940,1649145650321511903,3343475551149516724,12889029643741454022,17478016743599870335,3093717370958005479,14467509641148002237,7051779920408434563,13236455500919514702,6622571486221551395,6247862680464192853,13473769084307888746,12935338275504429879,6656503241585922440,10117242867444188718,1317977635388308416,9003232510692201478],{"siblings":[{"elements":[5445217543109647181,7107780542260184588,1387418701733593928,14868408384393508124]},{"elements":[786697344095648249,17655186295423510184,111655492161082191,6222834143812744390]}]}],[[9074633611482174462,8563945343768018026,4689415927861473438,7396700270290253251,12036140662895601313,5291364011841659332,10818095313432779840,8060316199276155074,10126690920043242322,2295524359981357617,10477266152165791425,590772333953662844,5848563741002728730,8064896457692053149,12531177487569819567,14990416780221650130,10653154690586483574,1298886894778870303,2259454205819432156,16898444014563432097],{"siblings":[{"elements":[6691165329509323039,2123422868794451446,10128276344980951530,12569222358176723709]},{"elements":[11934052972282547631,14844112949750346732,3612264597660725115,6821925231301668686]}]}],[[13558533779067718308,4199096142967011806,4409990510688308114,11889915019493229698,14783467486909592114,1253923128806314272,12301505573553185456,18446744069414584321,5082107507749890831,9301109139436943210,13119616691286918002,6801137923510178246,13042184229948106569,3865943653126103505,2523171868341403113,18446744069414584321],{"siblings":[{"elements":[12282947168248568608,12198275120234266971,4699778355161349006,15294508118361400577]},{"elements":[6977610179473082961,1873895054382050419,1340057911959479707,4782855201988406127]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[13874923908060168686,10300199960485500921,17220223416712727809,11107917826713906228,16080860504613725480,18134296401397245731,8194394929420644964,577158521334961706,17558309524404453886,7462499894769427250,7806442614678325622,1288552523294564736,5928745459609368726,5673755939833451559,1376743317442148286,15198933849581950858,7573015836263811984,11548290280681219346,3048586463663642501,17924736790130764569,16176421463462789125,7400032287983233044,15731792546871809470,7943532610231399071,9191667656456693420,3262984601497837521,11548794947560432383,16935173460323565878,13440064921123574122,13006542764524135817,3200332762477917120,4727549247137829594,10132168364538911488,16818212172973425485,10153429833011927584,6098139687959497779,14527559769504347610,604659360669510816,10236113364972241143,13365343744988800826,16324715386374244920,12941087553157892178,5845088838124668771,11302395006148649007,14757239247984955116,7234202237939122814,14532807582245635211,1889883654052729616,14382821135875337196,10933403972710030353,10477969708791190600,18158356374030649371,848649292582758684,1386127699829388770,14693104195570201077,8557418020926389248,8465103855599324974,7678674795737258990,7968512843367564125,15134518985828235175,14849136868521925153,8200859219989098311,3125736942597523248,16341012296276127126,13668079212165384181,7587065128463574204,15516306994332084122,16992631783574963080,300488920541911522,9606976928846938977,10676817243288232823,13557774887840421349,2050879513960775803,7921519393270082527,12510688718189386154,12160967257524916705,17327790555543273617,5585739159986358700,13436395299212415907,17518943154379265640,45119396072775821,18248002885183339956,17650535637853523767,10046834664009893652],{"siblings":[{"elements":[8321586574402928751,11350831215799910769,1895653507085351149,12216094806571370138]},{"elements":[17728593759504001074,6650774988450794345,17384983616442277651,10830012975394552271]}]}],[[13988798512629653300,76253716425328447,9720388670929796746,1548769052874448837,270740856252386232,12235653947926138011,15563288718700249370,13022612081270570463,4012297736732359332,13259175357731710636,8780101293787120559,7151936202911798787,2490107462377972949,11632997539744812916,1953281022276445192,2671409537019955614,11449595372979970203,2099075398062274395,13736751415846231020,282150559083268668,1763397729663868541,17538287264014897725,18259461885026304267,13452024305552211645,5935551571196467006,12561773650742561759,16777683308984640800,6452523135485727153,17050921526701987319,2582688296587834969,666129722210765750,2832984493633825752,2564579940811324550,9910973157559160586,570896843980658174,17004659455558321032,15740750711170605656,15880545394656142020,18041859490943440517,14947910346822438793,13871101977298734017,1845052702894988914,3622583018928914662,13305437691499824029,9389766928600063510,2342832550555509266,12640136905458789227,3091364980287564709,15221625655567730466,3656391792879600360,11705841756991209129,14897054135419768195,6194030699736134605,8088204389450754484,1028744494354850811,10914928145657935549,9219525190990114848,12434016732774502648,10001450209177039829,16775064070866530084,11804207427500685498,11405922281044868113,11605589933218636077,9185721524919352279,3445964144708568399,1837029262468265626,13046605703788193350,11756733517952768628,5659504189989219122,4893547254415113774,12340445902731355316,16601515233401446243,1737638385708058467,12901249884953193565,15122299594319619227,9611224587404199631,5618443947546827,15599505833857468443,15970250769173770739,7989815995831229090,1172227224275287869,16324230158086454031,4773447468636592236,233101244704717506,6089304298373757942,17800553101330022163,6815044118915641396,16621724620075218108,5986482779772115303,8922397435034841083,1905046749855418175,2484417627889125910,14711835731572473621,8850507110074529442,10756297912985322140,13183391799960414006,14557953843706183498,17694335559849585262,2271489689042329766,5954935578542946846,5594043939746418978,4616877472152439757,15203982093320084319,11226667777148828955,1792744067003382584,9308808641028722983,4805064057423277714,823949937815051264,6130910993883020698,6284606081438019695,8149613685871786194,5677085205209662296,3359697421566422361,14605124353189834211,9214581314244199994,8260863695269329259,5832839513769096955,17569582175518967993,10384742148521786098,12887503286238000611,2774661219826172690,4617724445563545693,2992272700796342765,5733304067044856743,11328059566205955854,11958819184644367923,9573786663835722171,7203834838550070446,6961138061523552602,11259439468552911112,8713323343583381893,5627839777078280822,3677214850965493702,11080594694094418910,13945632242435956243],{"siblings":[{"elements":[9076601601915293429,13330422098309621835,7717848137306850762,7708086801780015269]},{"elements":[3756206259280184459,17325882571979907180,13062090327259054897,17604117155731184502]}]}],[[14175585998485483060,16767891452400227627,14085670117651893128,9938135530921536020,15537007275930125767,10125085892229041364,12693201822698703392,8088316243099412211,8512891648259617323,14406927461320905577,10838509440074003936,12182179011392681857,14814817955037561763,15412415060004837898,1513899719080946065,2285703946082904009,10032618145024531759,1075160296126760503,13001674076763939670,17670003619060972493],{"siblings":[{"elements":[15829892775225461814,17225301084900012146,12765742375216951562,11848267580215989129]},{"elements":[7467746832855780636,4690854955800837098,12906341314195018000,7450743750297403503]}]}],[[17780949560376855973,5539491810288341035,2127230993534893373,10423496863701472688,9147165335296142651,15694562851258302126,765128582546897960,0,18049256404586506043,16393837509354171902,10860297075605545044,251142612879864092,5248845294390123628,13817498476369484388,4021104919493413285,0],{"siblings":[{"elements":[1119414869644826141,1297006494834894829,1572834748419141380,10434834051955227866]},{"elements":[10439722888166240056,1621184402403256798,18418230942163574809,10745794976283234799]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[15921612139218149057,6612836170521824306,10342650837803270423,13459145027299638987,4343149468427784854,6306766087617817187,16342620479075220374,17479160329873392964,18104236740370254805,5607328564894973541,10502145240772145796,4130963703961361294,13544028766188778565,15519457709599501932,17398324273599873710,14463615589572343353,9435912856374078854,8836441558487788512,17898282743241969403,9258704766747623541,7878433485797785859,18067436042201688992,9318002019468232878,6326797520350658645,8206128250534918434,11618630132567531121,15069036612750943026,8970477233728510462,13985355916501110796,4853915339790728169,6691787093014351945,10765509175333716655,2732054177417452813,14355223036935627218,18313469936770660675,4099088726421054934,11067935337126770058,8372590015997438790,12050200771401843732,9797443138979453441,10801284484373487018,14084336817368209221,8037351293758585204,4062288186072702566,16208629453251359213,3610819264137279228,2386159706707875038,13673066109658339478,12736074861155137424,18054084638167379879,10678794287086826728,12274029801127579619,13060818613518735127,16455397185020519450,17257570878613352059,10495273652227504582,18007317123104278548,14929588617642168189,4040499645501908693,899640177916318896,14847057935001729645,3918544086308486086,16699012407426003368,1767011055575303739,8676559830175969473,584875825237088776,9553927391942357035,18289152540364467830,6046097883437006264,2334307118741742780,9676789771270930032,9004364208376575850,17540179572388763558,15307939066305365517,9521457428541346693,18341159027680375959,54442831925297915,12668523912505920177,15836221924220273483,16148908317253873318,9703937035035950680,1223015419868895754,3378796322657212700,14351038870911476040],{"siblings":[{"elements":[12062467960941943310,18264903870078144546,12685394059909223572,12648297952715681361]},{"elements":[3233867220909638017,8698185977443146759,3080105169737877659,11915468074270704376]}]}],[[2967615910498330307,14962416615899272532,8807794038670287091,9623569060591649166,7742763539551906821,13407408013897832238,2522959188843750163,1597042213059984786,4114175374081027154,5490816057101224345,444177746131371918,217639573583126429,15395926605073372925,15756731131059578651,9033465398471442683,1124845643589582089,326715238336104169,11257322909584521424,10676111989143820723,13831920904050153934,15443345015388757219,11332950742179863929,401558093216098920,2916600161317533898,4620098742256372448,10906332183069072113,10248215213987704337,10330199310782495961,6146582321920764304,531012573728058842,4274682005980382216,1083452219574467324,8905382425695996759,6374763248133102932,1633017497074639721,17503737003989772197,7265703579866428986,5489501671706946141,3471951982755742218,7877255843942227835,17093524546542072347,3040782954239487274,1524590164189729799,9433002008617533559,4771404810214749127,6382776975521606885,16697799651101451403,13163627437324036557,10079410622352148873,2356112744356807846,3321522008887736771,13990829137559073540,17949163093100321520,2514580825105949998,15779727801143345387,14177764181219238000,730769350295227891,6717632367115103356,13362355776912883484,6977127883401079422,537046772402414069,6029396246091031282,10987153108898952263,14487497509656407395,9553409294922034168,5105085934341290067,11065175009475286139,17751301161276735934,3758722514786679382,16596592547410568412,7127515670385094570,3749983476887133623,7814274662275303751,10197047262121552371,6753796768750785518,3699493211168216451,9812985984019191389,6999421022885116022,739654991529935842,15016354597647401100,18314401625648547757,4737183457670538353,11483727596028420313,12692088311643747967,10214543045110791145,16864951335775956118,8120658133250585052,8440276404147665690,11505055408086113637,10738717784905353349,2584712865003088368,1266035138345630547,12383933180285800049,12818430312026457801,6041462970600983570,16674983753242623084,17192369891668615516,13303055575682178332,13409167671920263013,2268323881911657218,11129215723745250909,7119159732301515310,1151391866327664508,3266376445605579874,8084209140949088532,3915226424516291414,12118727748772622061,2349958542392224753,5676422969697616052,14459958588003266460,7945020443122568621,3342866748411100624,4655902575940129631,17204658329490504838,1287126930903876711,10175194625115215161,10467401548837372471,5209082314891915598,15834231957896755425,13226431498006172110,18238074584816644344,3218207869094294613,13401550094180855310,15253657962074468491,3484381799797575210,7565904629146694222,12552538574635061256,1863218851163743462,5355141173890958639,15092619082028363391,11555486860599080407,16460476700279422196,10502417387698451572,16071536523885009285,1278588513128308240],{"siblings":[{"elements":[9810601216545976102,12810297354237636508,979946086432731295,14235091386298371159]},{"elements":[8879865077532245829,12554010720010522656,16207589826549907371,4214025924981067742]}]}],[[15722069512128153838,8630153973906298485,12080566927905792631,5529226041497593179,10927665462724174659,17488261679693008823,7339764796077135806,9465391850709407346,11349299822701303268,3849756468524396947,17930412227875817197,3186267292878205836,2193336416110915506,3379986261953027153,11937755157895952770,5120661105814503405,2714080598593046075,7437290671128343703,3093782236777022460,14992936690296049184],{"siblings":[{"elements":[16739665249617737466,10879302024152518522,11987095280488766089,1976879720901670463]},{"elements":[15600976832075961413,13465240844980401288,571160238083473476,8924696413261430375]}]}],[[18401725795138702348,4124998128823614477,15526286697642208276,975130102729231183,2038725458996221947,9107724191271336534,5445059983654568403,0,771262805495840480,16437032691314630269,8798460331167458027,12386499720044948369,1464108315800393441,6057441529359057483,15583606687787674445,0],{"siblings":[{"elements":[1306428397433692619,11678249874283638311,3857194189790127592,10667813765760404890]},{"elements":[17335275103238363008,14165004483842143019,5226593720542480904,7862908725370960652]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[17309154467538374970,5921660986947282287,5210575628930753728,1025394299355899254,3722453491818617290,207600025366364278,5211061426160591707,9913630428600148791,10055951231783184813,16941959178671694115,15272671038975857647,8235483371591765252,364913908695182646,2573314931579142310,16002698654255164620,11940940374165065722,15062831020487452015,3286951869681444525,10384279020982067906,12255155936332499396,4897047366900862140,14712212207746871095,7606126797224126094,14490146945575736656,7234755711879785663,16953361940723108701,33811414688273904,283501411437681650,14882959922343448377,11504602547610978975,7394230388887306220,16604102362948606094,766530298238879286,7774844900327790438,7779368941592117418,3035839434686514013,14211583199505317907,17744351508880093107,10159830515114587766,2586575263559338418,13981477664701885178,10655916542828352718,7157407024044753804,12261200482671209762,14900410684097432479,17668339122261007012,11015536106475880553,16585568177312646567,7649301923056383660,12617616964548481833,14117940177489875760,13875491930991442649,11463568190865768265,5344569902157425951,10505510638600302083,236336947714516523,1485074702149797333,11825206836843605256,7031900389588534476,14042689380116642093,5442754464648622580,2782492432450949637,4822011887726623161,14295786839612110826,7758668475817115312,3042977186650554235,11542010908677840294,13240232797551256166,15798244397578284223,1277573659805327119,5358599474788895752,6058915319237269483,5078991869075055447,5294841669769415433,8616722586173428815,11421354789991583735,1361647766167892066,12760383721194360762,16729049693123540836,6424449087463077689,15911108247672030108,11878782419534744626,10832481317469825558,9979281903250902130],{"siblings":[{"elements":[1332641778139015931,86381625027850098,1824106329716150824,14206591193121844462]},{"elements":[17064536494791320770,12263744633261512961,12108241189491567152,10005497132141205270]}]}],[[14853019790872164471,13038136897149478763,1687936362749303249,14473762595183510898,8620788116981581052,9406486184886680702,6090868797211580000,13800469394814610012,10019935476139454636,16392056145860835664,16685963315594120959,12940703110594406334,13937725732971086470,8581344222805797410,11038744935703334672,5443085802615308114,16036290633418928980,16447139461139390790,2368550286475594166,14119973517707175600,530253311398138775,8610828039858727124,7504097614135204456,9380564537937565246,16127779668991855735,765879854467087621,14727883692030326968,550592499275775227,14603125327219318240,6572082877378303993,18224212224284513212,15664302769327041551,15473115034465070337,13884327983717166808,11537778708953192437,4202569290152194026,1139397886728055783,17267768066339693662,5915683252199599032,2122270167845069916,16840867940918707722,8079616898870473850,13311261435830673823,8742846257393186382,8570137865735819300,1476107358266851074,17508740091951478054,8228084135211901448,18079418756687792496,5294518680345891547,200140740324453104,10587301906213502506,1371352353221870572,4722517242167595556,5230331500239660865,3062187684014115870,11110887605489391316,11649068014278465998,16295291399584437631,12078355968135240013,9417606722426222843,13370707736039545919,7149277070248995108,7270468338012975550,3342962768952062763,17341367424752635487,11439139389781028401,9047683467620088240,15153667673214645085,17384072368122990029,9839636089737148745,16029647179539141477,7124850808278857605,7933665475454214778,17276486392532768378,903138588701204597,14113052060300299514,3723262123210684746,15838735715760952625,8027349865066817040,2152729579266236556,12335462700796511948,10597345662561097641,9290370905463653941,9338374864344091818,16976010698592438923,6423179469511560496,17697990435323126284,6058080464288034708,2941203701502964530,1654882527907036503,4450778499423871932,15373939920766872080,5175054304207562457,45927637651947061,5697477384085558351,4165155922542786843,763657670879084309,14557574128906016581,15794791358113178405,5294642227748697911,12412690649437587862,10384459596831072348,8471280907891246550,5409294958816487989,3912407504820316671,3944954577151175786,11341778516480010172,17172974180768506826,10398726262426699204,9021747807592224797,13502306249154946063,2935828882479651879,9697626049105576550,18355525467139340428,11744537342370098235,4625328451622760740,173455469882476984,1077458364964357939,7036290947885671783,5506896904500576611,8661405701182765100,12477315982616329733,8228493001393851993,5016916769325548249,18268094929016240995,6261240099273575701,10776298037249834363,13418627445201976616,6408948441049832241,15692876962793053304,11168441982506458470,17241261896447491022,14776237697583118876,1139645256626605743],{"siblings":[{"elements":[10025137673471998087,11359490597529542045,15802169737214537723,16332025771141540229]},{"elements":[2870271489944271586,9023042727437404538,17483890802310360526,12211693762049670270]}]}],[[8568075815907637587,9171320744957208243,5442157159955791005,13589729684485060418,528511334853371673,235180433507274248,16529343508488375100,9652098615047092523,9874307988296096263,651041228017667847,10317152036073864500,10118606736714788575,15137114549239519974,16672071871870583052,4810310960401293517,10192622497020463760,6690104542785934544,10145755649739992080,6502228860794079311,4514369128623557576],{"siblings":[{"elements":[13718188376141723132,4161262416870161801,3791011868725476658,3407959024084485995]},{"elements":[14364502464104904105,16061382191703360603,17551521781738024485,8525961907741965309]}]}],[[2487019174109282134,5183798113964274201,1512167838251431749,6918878413995798264,11161408129023713555,1576379035171428381,1420273802442028577,0,3760517125073672122,14047784386801777444,17468645322053373023,9667686261531957347,8835260744912320199,8572502448764963253,16517610555234594643,0],{"siblings":[{"elements":[9003777360707064799,6837381323558777643,3854410640141814743,14443648950129276588]},{"elements":[10813749368165795217,2185096282640914875,16132335267292805286,8618007716065983650]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[3224450578647075915,12165712751178440782,5633103419006680988,11493295134337342176,17326254976767111726,15040497768065427752,17068747695981096728,2070135021958711056,11266547947368074009,17196201500327856258,17880589677582589285,14237004209817874460,11084311560596369096,4266574937343165060,5722366348059158318,14055573689545109074,13034681062097938582,4756471198169320681,5595050181858555126,10368679253103809395,2243893450744688687,17107979679673729713,1291822591423251229,6630010511335148424,1138906968938915755,13806912379760342367,2613038345576034901,17561849880319681322,1601130326224471768,1597531066573998330,2012084127101128161,15191364035229680637,6884259991631809435,17196068475351035883,16413787052602206780,5252023353830006820,825553712506901819,3947181967997444685,7257381028346369124,10981873135685283577,8352848301710745072,14004197552182932012,11245447532264667700,7080123586924873668,3577968953845760945,14110628317847127950,12732951413930286077,9925444275789517227,12967465905890319680,11396479705777394594,5561421826650650980,16245112556402503616,15228394940253802153,6426318629695872151,15977843601468538897,8098285179979927422,1929505969672845131,8112987869196542195,12021566813041088338,1114467968833865888,2611071761440494960,17968880708511351540,13074193547243221494,1059703104997270543,15737059687084314141,14794946844456905042,13227044856766877073,17143217588648521766,5748454528369563133,12685039917954187917,11288157634772235832,6179411481163140015,3874758693212010225,1206384404526474746,4599443118113865083,5584734463373381931,6136611417086052441,14944258110498715822,12474883356910797772,14308946048563388763,13137334755331465236,13963597645627481639,14465254100735638307,3494334304389204700],{"siblings":[{"elements":[14558427021271812428,2889616159627138166,3028504079954276941,5281229060922485517]},{"elements":[14116771184823831436,6357576774383995688,13501931163075412498,1114208703580065252]}]}],[[13448280129321627798,14184832580226620071,4264760999753648961,8684267825863703316,6878112851223068819,5981119648633682816,14202347967468007431,142815950383075909,11094973493959751213,8473597112894998444,9202204972380779719,17301977310976727676,18169516041741745860,17723178991129104325,5643806893140108058,5995134989082876216,4131988715502449085,449708168028336561,5231174167942957597,10176660410819732910,6508436142998968582,1867232024142202986,713449344684149324,14131506415477216829,16981069992940930909,2002468655122136326,2417414271518697057,7806630627751028417,8381029533036279771,11597508780831248243,6612818318980311400,773262231933669642,10254662912151229270,15252255505727260315,2654857590428745953,16381785889514722093,12461322644436433448,5064347362505166693,3167582050539136766,6953841680854958883,13256329532127300110,3403221526996283601,9419118326875500442,9449903397636533678,10063677929979686208,1175170542424122162,14651801620594439908,4413101411649613894,8949950979607744924,17448643425539414038,7414926230245710913,9455276947968987959,11907880244627439781,11397510846985636353,17717404972654338273,8080787690708443213,7224881457203753850,7802904968082531117,5908019494792688824,114030049000068736,3259340877956254373,13704000571168453287,11092255880557956444,17172973242850278694,16406862860285801681,16077730692203254407,5133119504280051569,14631603697506944685,14155868347273797997,60387923292442522,5573127024198172454,15120863589379989971,1986116659219359772,11266306923901704646,5663872720883792309,7661355303919893071,18047762445681911530,407335256833980988,6515853516206474904,5266367239678018915,11014281590406928552,14107188761800078752,1365405380173026855,3434477752953432832,7342728654101438043,14910521162702165810,17450384957822103084,16928939538642625587,7979633009979084929,4125691474955341782,5332812811835888798,7906871675159820465,17470619131903284107,1296540968124813604,9760841234612238367,8349965239225967666,9937259023821416843,730280567354119224,12069274373293936044,3636720181996935586,16916370456964697696,15850274360266966074,5270370987618696839,10161039359438985947,7187080091025614630,9031373484878940945,9245669636929714773,16776179091121117907,8359717647456971697,5321834315683203637,7858375248931058767,16454295315250406519,14353870353716585363,5974011402676137690,2792359328676211755,6981563623059708329,11939049612653159214,1967916739225916688,5247858413275374208,5966625721722312033,8231916856900169456,14033258309903133011,11072804174145441515,16952608369060602339,8415068452551340760,1025186244108507820,5023652408938674731,12183944001983979617,3228324114094904295,11537857130451404191,7750725993294310946,2824137427543518736,15559824338924895015,5979275273041678362,5149464350269452414],{"siblings":[{"elements":[16486040632412116097,12314096668662875823,4761089839662016914,4998854666538413033]},{"elements":[4317040136440812651,5913354777965834617,14660718991275237049,5162934066940842187]}]}],[[11433875768031356996,6618272493390294368,4527917780844668368,12696977415205041701,16765937794895875440,17591806171289295404,6430228583192868197,10259470764669920868,8872862354292440638,12740408696614810703,7247762484663298256,11218998776229060849,9386295222702791812,176989401297089179,2426942520407550872,1998242906020272203,11279007020871327931,5343035267022931032,14512095160049089372,7473906489598469813],{"siblings":[{"elements":[5905428828937558037,13650116128836350540,8217316945408283692,5739496286906910987]},{"elements":[6979834286018174956,5174986399568875037,33915771746764988,16615176284574920776]}]}],[[4780914866956743843,12240150823474508052,15865643479267059541,10135019648384504270,6641070263479300703,14532898796801337599,7717411398032291362,0,17735627918328688783,10526329542861671038,3370170402210108651,2221906161630770094,7259083240216705494,5735386150400749594,14070237943248436155,0],{"siblings":[{"elements":[13319531051672162703,18162113610193217482,15822893366452391066,10665716859481744070]},{"elements":[14615876395544877098,13189017869415071098,8958734283749531620,11522201699030849792]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[12636247406473361275,14350381415381781124,1458351756134331555,4972661765935484102,2487701399737401888,16715411561791485140,4361288861355973155,12312370161748739910,10524066690548420034,6334884894812451986,17504504527437219608,12277365708023502186,6429257596042200299,9941519247079737882,6632380250341195570,6251187387280310449,16157461133215383654,6416991881373250085,16324099283358073344,17079503924107734876,16158495481269992315,2665393069540702992,2772262880973099734,1023840575421519135,3044872550380721252,17035311949781708726,15375312227162105774,4824260354927728442,112635815439428027,5352389533749211469,4189774517632737053,16940580658531619975,11217079606885266018,12153398219306049653,6173099005253209308,17710232144675716491,18408538855645184879,16006750809367405352,8875223873044338745,2522299365778434986,503002086744861363,7640796700561109509,3423119005612435990,5508722466038744098,8669645762464151698,9489273049127116035,10107621585968789145,127143188767621141,7892165376777112810,2015665227193963600,10930976630884355030,10122891120425010405,4282910353069759143,6565264306085511498,14004824045797522568,10699640721442431648,8431311056568235546,9680163631258096564,15614839486479052906,11969627558177012016,7499602672534545809,17622095257728190025,7445657985770687034,17495251104498062619,2523805006810190113,12266562637742401972,2129820572687361585,2861655842839849302,9123766583282804025,11013358433830558456,3951087794515308668,8646884836252806690,9878356066900874998,8889348156071520863,4935342952159770874,8583413751581501565,13866787431260017713,18183954806742449343,511949415408065919,10047285324934070952,4220363318016497981,16789223801429208904,6923395641366648573,4583370557838421599],{"siblings":[{"elements":[10836200350495573095,861557740432111654,9002082730127854806,2365751284824965413]},{"elements":[1177383515007987379,14946915859623102388,13238033920513089136,4899028354210277908]}]}],[[16757092386725558795,13305012889372971634,8331678260781898686,9612544986800730434,4044451384413687975,5690101112749835139,16824087275864668353,16912522140545182718,16044364763669282737,4334887666383946244,98583763087238326,10320332690566390217,8242738860488217768,17803159504598685712,8791791538293282559,13394415092950561191,2652490740031463828,14261407352172904419,12226933203481393186,5613893693564604795,9461499439182430361,3620135043797884316,11622127167472850201,14190585532602023393,413013954400463932,663594554062288506,16328928120077389222,13899526284084799012,3198798821100468500,14084228623892937502,1078758578400242740,16551561302037216883,8432344502079791467,1897547298497054550,12157836788086932185,16774831907602077,12842397253575835589,12511108373870563327,12098363170528636541,5002468077029408210,11547163672477377235,13561490547505018169,17037670765386473325,3911943644221791403,13476853426582005674,16853179002653697325,7112340211050932647,9351166771794410923,16945613535090224203,7380372245951706657,8449294479928755902,767739145420531639,12369310243493540798,8822071120581160857,14632825694283938802,15472013171176230110,7635486120354062775,12380331733717500417,18395157813588208022,15164177068344764095,11978593242579528298,6453953285332281484,18095005384390860717,434942806315516155,2781141555599606791,17506668797535207267,17181216686754298551,5394695911130237072,11308960386276510555,108587289460495794,11969996907383192528,8613146024410554424,9843850943442163809,14881447062515031466,8158059892374964969,17739568368363470281,8187051969416678573,2723426515180685452,15740547705248803060,714124024663419574,8425449757263994430,16476241263764356775,1405334120331923774,15952281783463335230,15532600969802185850,3336763342672337645,8597858643179133553,15517884614701532125,3336142695915249510,10683294655572821276,9931908849277640164,9879494936617675897,2672216159949676532,13982375410076257100,14597783672920483649,3837237165079579189,13956054652998447627,9583638762687940754,13362279214955626632,2549953004411274588,2420519117947795237,7121427533224693340,8896852178066392580,7168763713742231112,6209270265233468914,13337167491630609239,11720391905202307337,10366604401545217735,193106704454129176,17611852472001875082,14525462738431559378,13178201289961028604,13979506334638566238,1276394743967406205,2301998012036355086,11762854576742722360,14981177594010985813,4136238270356303249,7326678412833170603,6596087673593042646,6758876435915757001,7374629228780073630,2404517159181106170,13624209203495542680,8805922986453510984,2055235895213417608,932162617001392248,8033166929393099449,15989416018181520291,18383432724698831745,12357630391684503245,121732264947560971,17049906695312513725,1228369849236081929,168832251180913851],{"siblings":[{"elements":[12341322700576585486,17198958780370175460,17147904663779391603,7363231827470392326]},{"elements":[11633699578579710072,9989690924090001019,4599253656304309629,5438598664917858913]}]}],[[3530362187961246938,16270735127091439326,3227489141471692057,3904720672926374814,12278742825836341954,13813172992033286575,8622375070546149405,4806353202926809420,18314193648530101307,1954340975949263565,10508573759734185213,12317271074071915214,14199382880903591117,1156749124794249640,8169872054875445008,13585804247400908434,5228776443751813051,11109174309076528701,7261631906883540418,17077559602481790075],{"siblings":[{"elements":[11054199844094994590,12064217625079086902,6965926359164409082,2064051118490734126]},{"elements":[3580450242132885769,3044159457519796119,9094566319339909125,12570304328361482897]}]}],[[195053922190401277,17722472993512919596,1769315032447746165,13497904602885059979,190519385425651479,9052927355065764086,12660300056732126652,0,2460460009472754062,17458635950591199046,15310693570249267831,2669176614017793541,5906841047216395785,624629099658101347,7936720314615476844,0],{"siblings":[{"elements":[10749073238837443754,14383303475636706190,3061578751386322941,1348889933665273172]},{"elements":[2626188295942607238,6115887692391243967,7714906351298120785,1962198289868785944]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[4641675014424756216,7541246472772291698,8032985315810577574,16209146118383471907,10419669492250042717,13707757606554289516,16187333366426779938,11508813347810154936,11293276959732148494,17522599091636357118,4933209484424547934,17637991077178245357,17056870581881488241,13183940753641188438,1826279539176455452,10521220309278344307,13124634654836370507,5693361703730482920,15776388259230054359,4680853045908023627,14257418628542109609,8723243498124554086,8596441637069467172,9237665088636812520,13351878365551255754,7453120211501156151,16596500998285409094,6647506380656506678,6868544434576201801,1599880482129127181,3231706947765101334,4229199912657096213,556080811354941712,4390271153800822813,11695872429882888114,8599752111666630863,6984455065364979400,7950176640047926722,5845230499817025152,6098206436660846864,1586252843458391611,14440744980391871608,14872937305593305992,13525607376927953911,8563798844193887885,10796591490879791649,15472696412307025657,8713749834348935351,12008131581677878291,4940752074888778244,16648274217610364284,3105577555655157737,17709691183005067289,1489295174378845441,16858742130495006598,4007107084541660853,1223450394549700984,15576108286593129888,5683367022912841524,10310449819529276812,4472090276913155545,6685767406742442421,13620354716354685905,18306219604836051151,1483706469198388723,3860203197915893551,14841182964957441093,13088897865818960929,2157627148316549970,8082355349939086809,13017500823253740442,11638625618288091866,15374443671952868090,18207178249019307038,6235023043924961468,15969588416027908272,2104373460253057769,932279075491357949,18073033226271344731,15632048597169114881,8547402059743439342,447349086958603074,12085234537127786213,5280941428547620139],{"siblings":[{"elements":[8457061783738778646,13210996940451333853,15938804603635739927,10568167766166775965]},{"elements":[14116771184823831436,6357576774383995688,13501931163075412498,1114208703580065252]}]}],[[8010188792973257112,3842744482773585374,7546390209090338194,7425741182659883371,7535074822868645411,7606559553205698222,4904351601467699530,5933290196364292649,12965453614194789585,1943041934749442942,6403578499159883866,12075442052537874433,6552705294908432272,10275932237139338041,7427691252391679639,10023860350622673022,11655595519981385959,11896294775817194648,6049378566536470560,1120987899787744797,15403040800563709404,2819065117710775343,13134994232014613258,13265300663053927190,11270708311615576176,1554334263284358615,11414076118213176727,1300763542252249710,15753988401353858852,15682843555671767901,14003643897010118159,15409682151747928875,9969492933135223222,7924212903454309934,16336039826895552678,4290235272044366089,17713774489335943652,17627574488576455280,15544339228977348389,13288784192252622443,15197457395233056600,11447779924366810987,17576724611511784327,6103757973984039340,18183882292977342267,11400768806008091737,4611572313804554228,15793342987384757346,10684156207653652830,10724241458371992300,9570181545209253228,18347091206507893785,7717070113528173809,7909586368060143481,3202748486114070074,1460363270025042504,3953784622153918660,11170020501571758784,18036507254414433091,6190754852710698323,16956245606401250194,12286322763335565278,8012056291194370934,4044449759348959938,504933629585482514,17490384978292641118,3184246703549335883,5674250163694717663,11778681405549897025,11923098212604657831,14530448274243512304,3806877373433377125,14037776995617145620,13663048883276261082,10487449424880566492,13109107002376913999,6648385538119337211,3022031340799431162,16263910007389036588,3405510361988929241,8124420241572560232,13520778607423320648,17456317023001358689,12928451428768130187,17893375219511028540,14088882634957242328,2175241638215410446,10724370127203075486,6955797325590039153,4026689265577723665,13440821759723491440,9170278617444177310,11034906322589349441,6468627503766990698,11696604334535501980,15560523248399974187,3252262540549528982,9096232685298470676,15389419015208682,8351490161716204129,7725499789613282783,2875642085653453907,13901245857491912954,12134673772282808426,14395714913371450778,1661050842331426563,7900548183386346330,11472596141808762086,9744101717842542096,12623279893241555554,9030737352453255826,1556876471709862014,8602237730959152162,2857513791081218474,4328501474143598847,498686310939617998,15741782631204981837,3988453278329664990,934885718581232273,10246490850509167880,7059844872851385798,1514290609274092242,15292601270464651164,2557339484589387284,11164364237282166236,8915202842169255724,12397231854392967418,2196347527561058846,10606892512876670837,2778216786534554424,13519757191360422815,16529586953305232367,15723709964748368807,4912947983538897016,2539776184313549458],{"siblings":[{"elements":[9642658463118395327,15754701373155005154,8839079212255444436,10990247638942405794]},{"elements":[4317040136440812651,5913354777965834617,14660718991275237049,5162934066940842187]}]}],[[16239518924273755632,8911226715074589380,6508513409496088037,2881600013772953186,13006274217861295737,3609261447314577923,6426899420630760955,8333507580582345548,9104888292845093499,13642525810943314205,10291049084115702889,8143765640607016891,813614466162003115,12232432976082395065,16437821773992946380,11104057863574517848,10382267778860139525,1993132055066126214,9709536808464090503,2074195449877527132],{"siblings":[{"elements":[5797826102937032885,89305077977570500,13605652281079408139,5998090055911103357]},{"elements":[6979834286018174956,5174986399568875037,33915771746764988,16615176284574920776]}]}],[[13314141120579022503,13896495870596862735,12309280465110650475,8362272935046522311,14053986742231330260,15276766646302661032,11317798839622928780,0,10744310873658260703,2620941236381192685,17366164571547286458,13874820635050636455,6577161611826029886,17929666165127240239,24755116687409706,0],{"siblings":[{"elements":[11682778562939488311,6785446261663438490,8850664126716150089,2440882036168960389]},{"elements":[14615876395544877098,13189017869415071098,8958734283749531620,11522201699030849792]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[9935326540583462736,3497612507454159759,18381414641511595632,17996796666372322527,15609136770828890706,4141185000390180045,15632662052998794272,5790626945531343049,8204042032084149333,2898037818030631442,8050052873783942882,2493451244413222611,3903097875051544934,3766286922247803225,14435909278177075595,7313004317099637386,14700264812859725212,11874364493720520552,17760989663564458113,13190004579962412394,2618310831081090932,18350349931130879000,15915919868772477670,11578403778201278153,14671321824740658592,8365346883213120452,10916637165114756879,504158853490273606,13611239658675949314,15140319071634464004,16469254871821530659,11447042718198947141,17526220999740510131,11820274247616961234,11308406488040912356,17147647037356031572,3433398042297988330,9386089768693237136,16323451677377030565,16814517827894184221,16340844598565373164,12527025877254907595,11723073945673288761,10181280894825820273,16589989580054700318,9196298143260692365,15815837704325225636,3319536502470250148,6044535845247914479,18005934949079520449,10427033229652219418,1213704443970178676,13789725880379387773,11528458101557533946,3075082199387899021,17965551074309262679,15672978261145771099,9711797717762522846,4574732964511821021,6800495125241549781,17909647474658978180,1341816607782771502,8121126491204600426,2620294273053900096,1703160850810557929,11968207208296704448,616224011029995529,986821932040877035,12558763455526452588,14084991041879591851,3814324929852519449,8176217945078967947,11611247295581883274,5181612315966973858,8609098146265373833,3763596277484323203,5574467806664831843,11181275800735155895,1153605485281859355,1087302977587748470,898695360819312155,1329712340969411532,12866110739799765229,10856597083376047337],{"siblings":[{"elements":[5608747572853848371,11534208655257009779,1860547388565115924,4125903517807611006]},{"elements":[16360478778702248201,14213185250312606651,9086499200688171136,6646506645725327276]}]}],[[9325556513423454242,13172612790654263959,10034669222144459284,8827283788248701968,4749322999737798650,7717596671650747310,1511964249815127800,4090805005383861871,15991745610774965403,15147977556276894905,8618391743305751077,11425296929234651025,17960282038563726799,14911203739779272260,1232240100923160660,7325949484581359106,15460095721426905444,11448746636936768366,2479781925005417291,9898704670994125284,13131175343907172673,560523146617043050,778059522754055410,12273203439976222560,12448445667298298969,14495439674562833904,15022678864899368862,1344975235462831948,4484853636687092449,16220975229443866060,6389534291505457049,2812490827217579958,11423283685062469452,11141532065261988377,4412148108070233897,12333030565646833026,12079331009422526384,12098780034388797878,11771634065159722907,4600329749435232002,13426770540916274887,1103873452219279579,2669329554289795556,12222875566829188050,8126547503467841025,16081805300773494309,6142432805494953467,11036408507035586194,13049432891084036029,16637560294876413506,6733753574837347004,6191143532561662421,12723787772277167214,13512165348569598315,4350703275581240120,11218556437110454891,12903357907078629009,3287624374706867724,16923472733472474953,6068799885662267025,7761231543574072182,12705844987228795411,8454716167999407401,4995810904432888811,2113989444395293920,16795447202725996800,15532737740789192526,9388233110447683168,8690409296409232718,4507920971296711211,11349962331525687032,13711516515221711423,15148723646539374897,18110356637008757116,2756427858211381072,8893985959849726605,17785586178026667208,15237103236493863066,15121818277897012031,2834086300096218720,6862705010838688115,7396633816164623296,7243607473247045409,3521174258656740492,6844473355587010987,2553010545511961380,5148299818575378173,8255632938093755765,7327417029662832094,11826198136192641588,13998179239463004250,15488796674695570238,16523265037225151353,11443283975289795296,12815105904025815932,5657272961411082845,3342312592145830606,8946213470575649304,2930839661165121972,17592256654598943133,11831212173100252291,802340567929372816,13933800480503292098,3503238071208904292,7495743687963918417,17224798183269693767,13027194816422295248,5141425423225907954,17279809893864647903,4020812772661123470,7556878092423568841,1214805663636961166,202802337849020416,7997389616853772112,13402055103579800249,3286886424878200324,15449841750791031102,12804989300736631589,18215309039572001016,8137001932703494078,15186600672520035406,42328020878363139,4075908204586816194,6221676762189508828,12918683179130884302,4262168570773599656,5798849416464642381,7882003593533432629,3474079214913720552,7327856924031560647,14166089553340804925,5566513793407777753,5150207842325454115,14383180671360813028,6660955562095665048],{"siblings":[{"elements":[13425982979586570755,4760339189763179048,9856104520096183694,11465209348668107619]},{"elements":[11047788571148325913,18138771386778176318,12472401420205102418,9916101617789666924]}]}],[[6681149097475412619,7992015818946865889,17345946436076324439,10047509604266449850,11500234471275547414,2816343889217671327,3582557873215054452,3077258832393714324,15549964642641662251,1679260781676022430,7584417773424664966,1527070564986825522,4062499265108441343,3899785334527066851,9948622087832953835,6743695870843751589,17135482549643102355,12950603906802142872,1697268130167873513,11198108553744070844],{"siblings":[{"elements":[9558682659838214929,8349583795393854001,1145918371147173873,4330280526138634483]},{"elements":[8844665573190604272,18392739609704735925,4038948707644160302,10183364717251228522]}]}],[[14412964861132065800,7767152341304836344,12459495039725829877,17206922420854917157,12014825095530427481,10335971683667185750,11675712871401403421,0,15339578127208853698,12733448100103416646,13261949178267666253,5476659725258931265,14120726570084461461,708124933936848671,9113908002115885892,0],{"siblings":[{"elements":[14436871436209060048,1846865801852805557,1680218590184582249,15862146017652390164]},{"elements":[8239934249639246213,9912807228861708042,6275986548920604689,4407825225852448661]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[6585508045033738043,905835199593025760,8171019480820564802,6756273257040537442,13443501840570177547,15970449789638496895,10766469730078580452,1466867718611381555,16704430145542863168,5740988760524701218,7867790665892912846,9566797709149548858,5659865237881593686,4396194167113136631,1099461728349398542,13580547558544276161,9082315148229277145,16464674257926269266,17316838633954153084,8609267716560805443,4678907999597756930,14952442569512302212,9029337624333534688,8537823166696368605,18437712830147121762,3450650318256522346,4515354462680208713,4980762118377839974,4480545509699131199,2423326966761792617,13127296148820123486,5319689244543137566,11861347649943952424,7683665329470012302,11599182757006469618,7426980113180945834,15769608408726162721,1736386642915216102,13500998825925812429,12624480692962493348,10110958912789666429,100169951737804356,4968851086450990032,3377637754784489145,497154258396129593,700381220078662583,13614789727005595466,11587602764555920226,13075753966573756249,2961599092141688572,1479643537791297054,4144181021571306558,16973611669380823828,8802953507579297787,10849272909304037022,7383579378246096739,4783968846541245939,14369412218194939042,2301629225599828570,653036461462737858,12434389369660051877,5547326080775959572,10635293910227684591,18414042141208514094,8136972240987125299,580701825749052610,5046886386886002727,13716390724298306578,1768381100043046960,10759278417381492535,16510105377325232951,5615965135201080793,3131885238001357130,7585782952545527135,17156749855357193843,17809118945148429663,11831620189522650483,18282763411073909396,13108927381339670518,4488672853843462701,6848920543354497396,17737982424777701077,3383063426715895896,7156726380526660333],{"siblings":[{"elements":[8325907241208732680,17653120459707896817,17462569636756050513,15767870941559226621]},{"elements":[2184362331170239224,940371620984881836,4930719422694198068,1632196321716041953]}]}],[[453760564531938794,9651654950506562323,10933537921093851551,24220830234809191,12997293982803723983,3343814213786235685,13309212015021710862,502394881460512724,8682457338012403668,3929993311432246328,996108655118834762,10379337532405843842,11767380395278961273,8773910817628749071,10908738985698692382,7779846319703432976,1514776315495455159,4124004882579386243,10233439006042655491,11603986329969111383,1845784553732062019,1982757372628289391,3602172893431853180,11900456896902156797,4441073442313851152,7666997545869899547,15156289661460829629,3456536515541477489,17214750836352419762,1901286474599439383,5608546424431861731,6298630914399435927,1220422252457063147,15218747219053501753,6304814936049250258,14618092899435192378,17062656610071484314,13162330534625781368,17177820784726099184,17825170745088447913,14088442371384794762,15206511131034541793,4399378852542603650,388082951761686354,11713608639112297454,33698326716363410,8967159902956140239,1459026664429447544,13302018855583986147,5269633486792787347,8123981394706636505,16283070347101236364,2555446136760930686,9123615838911919344,3193393018056468454,11852877047764455529,11132505642028786548,14371388856134835375,6374109167237192649,184240110858346518,12179231927970217892,17879408494454197723,3273553143620892849,7801667356018692470,3506177686400618181,14605316057562689119,6489165060469051653,11594357573379779226,4497767409817920870,16749289217370316471,17700253087443192662,8599224977501224664,6555739370390226472,11950413310742388709,125099141809455160,9848528851901950886,15585356719071898171,10969410717318423028,6362228828193803278,6765223023405354617,12672802417427627236,7669650867063656129,18318207367580144487,8629474936579413433,12959928871724153255,5271345710172743367,5944264254542381366,14077950706487765131,7562644410408779041,12207483222946297710,2974211524789039693,1306438420659147602,10493110737127156032,11022719308728428792,7454509180359362358,8314810396854378953,1461807835241185972,5081492856683462048,5513302150079217156,11510907030356961111,1511879853369022988,7758002466827372838,1284559556217077536,14765851110457488101,9366502674552898789,4555994462379785249,15260262595930071914,10741113616365127490,14410983373195794060,4449683527905561997,5363295976370988252,16125389830960313520,11039276975179191121,3831280033081349172,18041811409254279612,11418543749493470654,15557198577311898298,6835811311152708609,12817999456446315153,4331861936185409040,7813005302012374536,9174037913134898365,2521813591965828468,7277899107957644713,4837295064963380878,18040522943104900868,18416362848129608127,4724605020936527551,6050203747082999684,15759868621438839921,12034552253509975444,12341992847975524857,3466860421072968908,15890135847697699864,11803279579849405612],{"siblings":[{"elements":[1766666451601366700,2145141351074469805,11750436605225317737,4788734397496079623]},{"elements":[5564663991649105737,12788052000891943640,16066154979917686032,17778540543867554360]}]}],[[12044581901756395742,17429137593420036632,7597725439533654040,8679992036806725767,14467140142708464089,14172398293601905792,12359226085715720085,16196941975779203335,11019890208697666453,784219223806679349,15113440407836999935,15140588410300786110,6305325812679710730,6827887513783882785,11408150126289716157,17570239248740716224,7290062009633631963,2085729141191488616,14846268109038369414,16751562615882284652],{"siblings":[{"elements":[15105273234815301575,6654579014554935289,9189811328639738149,14977314935170514678]},{"elements":[15431206264572300069,5643387987508524283,10798995895696297779,11693527148708038006]}]}],[[5471038148283255137,18067900861646813171,14719517238242728094,10140196389081885922,13121332619530673626,483869121170847204,4181932247561062018,0,5211406868075008737,766749621467017755,12747741871600730845,14746931970089688112,9145223477766169623,17022466475582192305,14391108322161299234,0],{"siblings":[{"elements":[18165287457990015768,6615278969112507353,15603465963905148996,6425235422671775377]},{"elements":[3331974073679985356,4337955552027960994,182549305672732439,12172311251003816887]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[17730780067944809742,17518963256923921102,9717963889501765181,9889333779175288446,17354124086167775810,9341046780105547782,9463782532206378426,5697696929613651984,15477029259429788513,5284028284360742872,15659165034173660700,8373222624828423792,16588480323682393975,14038735062324207145,3190833584036494502,1516159312330509216,1680633347890878490,18066968257243839877,6417415178374158875,2392895987843567788,9518381980183289956,17344412373544896756,16231594649760017448,11962230288889464129,16565976484823794958,9632744212580298659,12535279470199806696,18181151614510170253,3239896109492477120,14448535428822926046,10566430734548849545,7948558204012273967,7441822548969899197,11054714104426912966,5727098206734316170,10554880058789606853,11367680883410349269,15950592910845777768,7938462655227805025,14887413847621781320,11067322404078384110,1932890836035370572,4762211496694261432,13337385683847119543,9329632235198825870,10738135897864078801,15535224595294003533,17962066482630225808,6099696443075548176,12162825799478904764,757744944612985671,16880734573288606831,17103112778625804023,1748882665563358221,11564693213149332613,3146989962103247994,2121482963690760677,11656376260512447754,4478580302598200708,11204574619333446305,2379232663091112881,3248648188462642397,17066258138991825086,6830807813140638287,12493706632655472092,15478303205849811735,5867213549580254545,1614081641107065718,2983768137674386946,11663441444425153241,12314007578863325622,1593765721002081508,6690599623344340798,1765410693453932363,14248197648680736180,8155473757178746261,15462355259073896728,5166316952982031985,6848724932534938178,2838500778340260384,13076234229555688944,14294583243378430366,6644658304540038648,3737332012452178544],{"siblings":[{"elements":[11018653891288600245,7457833601627035013,9915728460678587024,17276883179053765539]},{"elements":[16272487173950120557,17194161083645730615,2985732629437659869,14431043807897268535]}]}],[[7989529141045576704,1481927600417149098,1637221502741196772,15918394835760212531,16437944616974670637,8350207591412387619,17673386824207430326,9261563335120647093,11393978166678582868,8853133140614949272,11020355013941461412,8796540650605886713,3814050957359991969,4487020797489201358,2422129350098606047,16489215680670849277,14548708237992509734,14418738095919511913,12966604600636498041,13702032686946513880,18057338917492790992,2363938259878302099,13358619027647540603,1313269506839463631,3722485528207936509,17018981038391537792,12476736768505820229,7686676418743727891,14960366820176221013,10033614583190348684,213460415328201110,9317744485344978917,204729593007137783,8232654116174621453,9579866392170902784,9107962431166565949,5527017815012985738,14747722411359363331,1518128533063469184,7229853954485454705,17199651753302928312,10708317427121771506,3046241829581994701,6981607921512869992,8650109306221839066,10240096895272115511,4065975032829854172,8291764099803685227,12896418307633094128,16697126152790920343,15345440167991838095,1208418720540354668,10711591992101178692,15039397828698253914,10608756613525753140,8892677027487447566,14232856387530274617,11513552553717228191,17016980779980186017,2289626564793927427,3330496686646896507,10268620572467345059,659301732265742384,11979859931395723698,11198297701925744830,3818854517936414686,6358989086900418343,4601075213047050199,10458590042767440352,3920615739908660193,1860724462968285237,2079501930013352604,871044712708230747,17515749123790967974,13927884914676012131,1260199389019372063,7520719119805637591,3513125574477989995,17562305275731258222,9386601020744723294,743933214248696744,8759443264925882804,2093407128873768985,3900892034260396296,17264643942490265953,6733923550271799581,3864835785028288312,5111532891612222396,1499588357938132535,1561340425811332293,14270228114857558111,4332852265469851419,14095514011152777512,4745162354922761847,6903981409231647055,1822558879180713762,4324743046689818240,936642249710617525,77004509315299489,16524730052300891583,10938687831502208299,8095877560124028077,6242463925409433370,16815368431746911057,7160647271183277791,1158220014852109692,16403555976024310279,2232417427673983274,1077577658987141810,15651903810109623195,9447673158635760006,10621802586818698449,9796206618650124904,15310026029135270047,2660214687453089923,3593769890085616412,14936702718172243309,8763824298219046158,15008786584236488137,11931264040062676355,10339390665800751031,15655802708011667641,6811198446634082633,8315698228798676920,9517566708858961851,15595180064403308268,15369009956774768910,12206917735704524599,5849259856010130433,1772151247571709878,16248681857824643010,12698417069440973590,13710645015978509347,4254677891236910408,9398330690497266805],{"siblings":[{"elements":[1147908400806829841,17061412309851283173,12060298986993270294,11812665228518867790]},{"elements":[8597090330661238454,15298105209159823449,11955651662560547051,3821829661871458782]}]}],[[6404943647395831102,4784746396620860556,3019741850437002335,5562630942688744337,4924080311248804747,8065646339034170029,5412044439381030241,13348588890989216327,17932941131143831896,11032690092067188041,12393830073366254176,12449705115665651884,2679262324561247949,16369273968822458599,13709960412856364221,7757169778360096638,16252806716231133472,6238524313299875747,986555176189804915,11572542689334107776],{"siblings":[{"elements":[7829545659415950818,199947107974572257,2354483029936217570,6553126015622207776]},{"elements":[2841354127964512784,9035132996936677727,14710386132565364348,12218983139463196945]}]}],[[14619507239426042124,4883840336265155229,3974507179736411345,3495529191383820853,10447015459697506261,16089004808168202030,3725972731052400404,0,4314742195925618285,9972948850752681057,14158949106458666279,13437659860778589793,8474747338659834556,3023751496294279752,5981497537352338466,0],{"siblings":[{"elements":[15043081401766881061,7117151073110317213,17094991648545596299,9318458707748591600]},{"elements":[4983227703565512744,8277912948298427468,13065401501010955552,9508048095915609941]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[10112047179984953961,8051169422870577154,8647281070102249495,945170246135553479,6853391206938029674,9558777480090595399,9229383827854907989,5070947109397055323,16688142553868195469,4744314519056078205,4592573154851431024,8765733820470210185,16501735549468919939,9458069424845244148,14061935357779048987,3817877307860996829,8085028201626182212,4265408531355274180,10397085420334343917,13714956167763750520,4542654391916092837,10302592509500744965,17061550920070148342,13113896924774577817,4887449966519567926,17887562295745670825,13011924988048976522,16321133962480486991,14149189218153567869,4016878488203351537,11294186786701373869,6158240479072167587,6944443593313748067,15324845941834024775,628692830559707599,10093390651192335266,16199172864939467004,12147431930812348701,15305216551276615198,13655990371447760193,8477550393716527936,1681692135991419600,1910753341301122966,8168670496355884976,7839786749097068273,16352611383019077622,12926243249179329758,4088915962776694153,7649033779184916053,7948550914569935334,8486516524239921036,3819381698283802581,10819754755472043858,10537378107734549020,10920722066349317052,2303655080361589444,5215518152642579090,9758717503257092929,7830358666585921711,15499371193215543065,15566605431744225452,3315757163758034859,3458951739336605012,6907446901302323608,2316156983937475906,10586256265355854108,3908294910625689362,1157091623167678229,8622953540089769685,16434709535523103291,12870093149671323094,11165376813407779679,6464603872373405523,2152030313175139072,2797336091418011019,4950596132687990866,7802135190881246762,15132284249646389256,1835502883802738299,4302681691931842192,9434974194003415223,1439507519415498844,7798072754536198656,10463319004417686385],{"siblings":[{"elements":[15214620699351166833,13214515058834595705,2442825580138674331,12761992704724964493]},{"elements":[3105557293802448478,13703114223971820931,4433578341623794918,15286591615656563662]}]}],[[10209452019107706138,10849750119180696637,2599293855375998839,10487491929615672825,1451517096383855924,13670889788532364077,2814987684616833166,17723092482062443924,12506870439099454347,9237166381365058059,745450725350884473,16358319403342646174,15430967292393221358,9215669320972665190,11868458139536189209,14907318446814931998,216508638413915742,2128699494324423417,3279590438579793378,4791494000178162670,4597819716407203429,3027195529304123551,4115113910185010689,13328157314229538096,10673394822994205657,8703784863871029792,5513697119820725378,12661927536813055656,1819188128462164582,1128606829009222857,15358437225933072474,6633683796156386459,10654444874399534519,13061706424543477000,7902960335454072027,11991700737655382185,10038309175841711854,7491056283959995866,12491099185153906524,17661559274577924855,11333232042305992076,843800946486940533,14134624640966996965,1104968137733520725,333632695127652823,10077142031742091305,522356804252536274,16811162897713756181,7942425885955034239,15584639677323591996,14223563484563755078,12135002180130802701,1652496388044129244,17862879490904418823,3209194952600498486,11524849949118881614,4432293128580933828,9115634692048203616,3817142100300925595,2431298027278451523,6853800956284094946,3498361393653429515,7006420193617731002,89763686152489260,15559286910251343197,7122266826740249619,7647849247800076666,15358572708503186618,15061582254193808455,8154644862872095810,8848237352769969560,4447764102995266117,8775906689784860677,15579306969066774812,11502451811682768790,12862349123463623241,5338866128486665709,944723663933858808,8121852799519732581,17053221028805554493,15357233903498401788,12122811178564852558,4490788485300331815,7888288051781499473,4951533677726335728,1216357849819699012,8975447051791090221,15740195416489996500,1302832972745001580,13762242318026197444,6464070134506529431,15659902967517512442,6967409575981564958,1400430745238042139,5668265343641424020,6175475319186563260,7380472952460432965,1561686582639406624,10602499151343810628,5867545246835718972,14256001054133381362,15392821264450092529,18416041331950055344,1583243925673638592,689695400121582864,16150382810110003609,2637423882498463899,12999885936671097913,9148817249846076352,2436989664952966701,3357448316845236533,9849609908431367634,12524409739449881221,17100947949620715986,5518375515551809565,8552007835172003084,10620385927718303479,3848881603783509859,15752946944779087335,16557569559699001712,1432345399863950416,16574956152896073364,14964918647834007263,17366985507571784462,836319549758563244,12331117021919411181,6657215163342966565,11128367860324738783,5970638062606224616,8808515351633844088,7140911047853895172,4143911944834262600,14727724196591376304,2553918155510853448,15249165245456154135],{"siblings":[{"elements":[3576000419759307521,6213400973693919617,9279857703256572059,6587423140033593734]},{"elements":[4156223011980527944,459461431331648845,14305982864271485389,794772369075790963]}]}],[[1707049647173909406,10138634745679098277,16127090240311936349,13849362519865062234,15955822993540834989,7814182172380914649,1986825061508204032,7710507439793840587,13076113620041700135,14274458221214748345,900119188672590321,12097292965021218212,7471083361960529335,8233756545470804638,11818398571643070585,5825585031938384783,13262160993074972805,14296796561817315050,14061701598910563646,5739845998017039209],{"siblings":[{"elements":[11790746233160022255,11264303494833555119,13830376380970678114,4770789005818407549]},{"elements":[9321396021732240415,3790407780024697306,16176102683158163402,3448143470241675262]}]}],[[6262431391496225053,2283689081872885599,14733396582315244620,15108960492266459094,13380211090661208229,15051333097828723329,16904023707503600100,0,5978272731455817421,17805632041452273090,2335304354209711387,10779472560435391887,4504302015724328964,5485178953277740442,9871426102693465517,0],{"siblings":[{"elements":[7548760152799696053,13340019671077429027,12508222435292323961,2144877659398665549]},{"elements":[11075368809477907681,13263968316779720352,17460513563555041790,4617613918859527124]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[11478853722654892596,11054649085732609431,4994009559595819210,4186791003624108490,18024865371818158892,18345183498407461526,9694238634292017590,6724859886830687063,11243260270601353574,14381814419105033411,7818933522528881030,4546529647928812664,14925540237646974265,16878266396497955220,12920668997211098573,17268828363658179930,15016004026910537377,13817031165285279441,595208874785186131,5264621933065972184,12842607752779588909,1036458340443929803,723974238512284296,3865120520076342236,10591874432022570118,16672770104321157989,4268204143023668522,1442101787761795173,17261059111713346750,1886389845452355019,10015188874733823167,12945251435542942346,15729006941700819727,9769721924531241974,10360965788706053704,17231683844444576182,4860556932014059440,11290628573575307583,10467853112375278596,15672706883929365300,11854941895739424568,10532167184289139234,8849900270380063794,17258070778068654781,389392563654780465,15694034380242781064,16408125286346615923,5240758237683744215,12594341864398680415,13125157218336151182,12110224318087305788,2381073337923353293,4801286650727974296,6463610664988967714,4579934330236307092,16913166904864701304,17120949083165668392,5417444260846067353,2162861526281072576,7230041798647740383,8052962025075942004,2329101354125768248,9495441095357060775,944189234100813522,2974037460852383196,2808898223350514185,16825144225291284340,16495574607473979160,1773988643127921369,11103048928261281020,17248516975848621671,715115511911425973,16595596184784813139,2875296451261385175,748823176798831426,1445145643777419320,1059249732834213379,18281412487205604006,6977248505445028194,3497756901944121467,17667695280482817497,519454644348557937,6789904627007533608,5570494389550069031],{"siblings":[{"elements":[2788283718956080627,7243963918501585343,886762250337169434,13103212312216094922]},{"elements":[12080961203814882388,3507164343688256046,217812273724800610,1252946754184999199]}]}],[[13928294621723921177,12780940283369458641,7876240315475227901,6066626702537238528,13011213915576007320,3801424079985673882,16277496004475821341,16085235133653930238,11316852721901324967,13069816796483690910,15756436159983779941,3193353954039655612,12041247526670025144,13808978917072688647,6668376165053426384,4632601910513077620,11186820924978107491,17896896607328756789,1201269992924967013,10883517973991744879,15046444393138479000,12254880571199703789,11516025757018657186,6807584723654821190,11487701890348499993,16425194792432851204,17301719261043152282,17090442567531261454,5881929835114091972,3550584323716053658,16865671061915761438,3255409378635398956,12033280095569196296,1208718247701350446,15188774351861359804,4241004972978600372,2896759208281039789,8539448906756640547,970160448926166532,12525281569293996539,8421057377609873068,11414561442766615983,5334033518037827945,16102592107441528191,12063664925475861676,5876263209736748310,16094905122681076299,13353363940256700755,17685694338339843559,6656626129694877342,5405290066202285526,212791245878964469,2570004899681125736,13439294383791933185,7703550380667174778,6538350873690157541,18107794263727601073,54580399137521432,8828462722156902020,8066616067600922499,14762852958420218250,12024201371545318464,13844797867063479281,12565780138704715469,14400771001741273870,13626427101763213188,9166393173388576121,13035672150195972539,9638775224683419544,5614214515301617947,12069032121573550427,15225792447601449141,16328372727017789082,9974563967212130274,7875848661522037056,12792251397455114507,11565119745153717437,11334125463397844703,17166996162835086659,7231129499839619834,3209234771455575834,323311404594766509,12329466573157284315,14270676162991052907,1785650367237281812,13283035853069403659,3132915676708217102,17879264752896603095,5931641089104568475,10008307457083933364,10953394947916641004,14533709401853942272,250243619137250263,7766085310374139955,3643497230732948605,13330506167548139579,7870418990474151699,4470026214517578678,4419577325669731608,13907310349502223021,13313234534324550606,9154453010176117385,14698034184515685295,11438383049804120223,12965369469374288477,15275791235900490078,6993255261307083688,15071504784758508143,6125948368939643701,4918042129919054771,12005554912533004387,13027631392966860266,1173158296778052271,4251531275699323253,17709512693764141643,15831380063094390543,4410254274419832581,11542540264636564596,16876773940638034736,12276486071332153352,11557231070304382447,8889858093603229895,15901237587255218194,5056325183707837133,4893706131388122184,2663067057706484480,11771225460854332227,16345767905348746274,17490987510130080666,7348963557773523622,12676658937898668513,524615365527171275,16400114156167297100,17259472154336584102,1365862285624631591],{"siblings":[{"elements":[5056384750668684487,13710363428291757594,11353402742075790492,15966424712589017746]},{"elements":[2764822297318970357,7496047286241694899,6797108056415157438,14534695478963865131]}]}],[[14333413904541045983,15765863468007348374,10759823668808383676,15946609108309144405,18011044125947190215,6730285337740587094,1599174256160120714,11426300768163914436,6097384674475431829,9599964044154806019,10388248604002746707,14662556863037095589,5064017847021225116,14902912617231720367,8120312032869863217,6986132666225680170,9527210222463520494,1577811123417292640,14140241123957420419,136429847064341115],{"siblings":[{"elements":[4548784723257502663,18009270243687695537,16496044585773525905,4052791891376593588]},{"elements":[12773611363193962328,2335926572024787226,2869285522487048143,965322443628745425]}]}],[[414278414329121986,9424306770987661654,6694176475479503630,3205258641546164998,3984007796468881088,11358308650235923354,12115736508358799030,0,2120730794013409231,4862511963837638658,3975595032642781129,13648668594232199507,329345157526292218,9499090610015041077,10046660645021698406,0],{"siblings":[{"elements":[18434591974529593511,15480686846900374609,13039459429548397553,4706925251330926919]},{"elements":[14910152846997468102,5160297216225939767,4235578045008137031,4350500210474139555]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[3637070305041024820,7115771682932846111,8611158289523224770,9518070641769033924,1414236033612072022,6147876731072370645,13504102503993610959,8210849875946775220,6771876429221686474,16410199602681622119,12372775030713107147,5663336987457811785,12580722705930690517,17090657838437182384,7774896984689503137,16212323194997952509,15790659407107605687,1338816195755076046,359989602991365810,10405185517321956368,15148039461417482223,18261045222745213366,18028880292742600857,3220707958064673304,11910186047229120732,15305670882204945070,11279996028369840591,3734042228569772405,7558526080657992474,3001601900221145638,3450170215377475763,317773060535564399,1097735373536301714,12615975359282791648,1270599954170946834,6656611499892164838,16224974003789441732,1403075659235291766,6997718511036935469,7643847128057754052,15085852564262096901,11477237190481183744,14985041832410328959,16813349468570663778,10173398532465637178,15857598709347778091,7934504258760404609,7376050159053236630,2840728545085223374,14741872313157947,13704845647880446937,1022125248820200470,13740675135639706525,16948491354477646426,14789724794749251394,705761185161613777,8582604557658600577,18257069041670641021,146898569877779069,15878895256307505366,1820417402209298820,5758860122156744725,2215328957670442570,14254262983789176580,17390582322684567064,10411845306820428296,6342535375332326122,5775175313759053125,9806327680441202241,3502367619086583741,9863578905882954097,12691132205133728054,6947328166316987045,15916101843251696086,15280311966061103054,15833965922602343683,4678288576301668861,1687226105749041911,13454350750410999397,10729281105222723510,951203192928886881,8511106208627352777,14642340534124220800,10381809804774474872],{"siblings":[{"elements":[488713213671729554,10255131012145408020,539496966595987950,2881937287605504249]},{"elements":[15881389161849586271,14711822840974163933,4971372235232643921,4593900484078443606]}]}],[[5522821425678279806,583489417503378873,2084590777804941646,8233175319507917263,6979059919706770479,16894578517937217037,16162913939699417961,8321726626850949874,7137516626513633521,5844257825051658206,12374665663733575308,10180360702982960402,4432116756837648502,4015282622572907099,8126426964480792383,3688020453447128305,6776249886822674847,3841918436983986871,7715106839793419958,7852248903097535039,10614159452288689809,9224450444885546389,9084399027841929277,10631879138755582147,18003659675238118285,9424239948605585581,12278901166227441506,18401483628762402147,886224668672278071,3726036898755346544,11821414913703390521,11612957723744878282,2167851895582012645,5381959103239794872,16938995206526705908,7670103906714295487,13289850756246703930,10564575257847190266,16449532658316642591,12109458400590605939,5658186661679398358,16393174869070302125,9952434471343457103,10509660722198279513,9785012957726928720,14897111989137153355,12580943463953290181,6043898643954249512,6824722813263524799,8671756650299435854,1006950613022441573,2658201152698047115,16600172651573228624,17180533836875978239,281390311443729053,7887687357663501907,4085434314294933445,13575343642026783290,12761077028924433083,6827741576063719765,9836306019517359137,17095396716160827475,3237339827689552164,10550754769831347677,9393090142461099575,4196094823214341133,2603885423083569366,10338537882239633802,366070389552024944,8260941946490340830,5658754047005841699,1887262510588911137,12061876912295282178,7510303244269990683,3721423967285843495,16254068103873793554,17990582079841131164,5634337772922010937,198143459230292933,9350582453901831757,16302432898585494823,9522938529677842286,5088302742164372352,17176840106566632549,11660470951303997989,7935988080617526643,11600258699004575185,14488709770376794373,13734652938321548873,9080973179810264735,16979102393981753009,17707367536400330415,7111424105935439947,17485754416222356155,4840139987056128791,8619828766898570077,7362913502879161737,11109417672284865681,5959652957662816317,2044639056745641328,17048456280379252765,15872924347236747407,2237944762820885223,5982045479730131525,15760116004414380051,970816796588482393,13680623682683686536,1618556843460906908,10998403648878441775,357173787113805016,16309674532788907415,8398909244971109109,18358149500178491721,6096248442689098876,13096631825367741693,1462701989721435728,16285683418299845357,16680139163631310263,18371412062818340792,18245945178641615991,17019123141762126114,1735154724163204619,11041788146937801940,18027602236656706958,11743207464025087785,15157543303333783510,14461854149304607799,9898685167362622398,5454728482040805517,6096428084128921887,5871656784313920423,5421117899747391796,13831481812325770158,16312383391396507176,5918176182618988468],{"siblings":[{"elements":[8200021668217911068,13875093081829160020,3244542558768326504,7780385854703493888]},{"elements":[12156919508188652090,15005419722975797428,11063863827975093491,11414982617107244861]}]}],[[7919829015809035019,10326566907150741161,13468405367954450983,818715219345626468,17287548270499271112,3001662909598261210,15016226788566058999,15430758290788227848,16912010610944191805,12084260825397760357,6311761446694231040,10750259567186105746,1264763173010278556,15368903558156900627,520130737099982906,15889674989549616655,10663501900473120954,7046664166802610513,9413958969930273287,9136855251423707616],{"siblings":[{"elements":[586991804650564428,1744428561558158164,8885429170161606914,11183137354326433783]},{"elements":[17641867307854884649,5594925475184089475,12595416563814748349,5148443664010095644]}]}],[[17323567084151738006,4331387943568114336,1210536496128303619,13906842303572425246,3520622821913797244,9633526151776786283,4274554211700878272,0,2511173043912416796,13935488172020958467,9820153445463584867,4581486768455022053,15857060378933424820,1354505963374292898,13181830881774064807,0],{"siblings":[{"elements":[387582990819174435,13223394070321648465,14705219388371574339,7706214800671636191]},{"elements":[17676159349723433463,15513576252152899453,16965096379949157937,6366425299063763102]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[8561463095453669352,4776209039443197182,7322904599427281988,15255763500871931660,7562397766783204851,16645794912788882628,9450057434947581116,6766752762185510908,10076299737552247893,10369144313111820431,10557024776423452373,8268949222208747838,1296674759819510803,11657746141206605802,1590136817070290519,7470589252570908731,9967271735478926401,13360459367350864569,10308080703622655498,8925070422780251043,12207498686332344126,6187354983655964942,3564194908140406218,4388010879009020392,16774763653598344778,6210339879231447337,16789470306162788795,2523256864930313901,5944395274507287067,6056841947720924769,5382413425989155410,7807677929700019013,10764120079749008409,6443189779247925421,10453787209753114710,4342734684527980077,763870227536556288,11727129804847274823,11971156213393742150,4495578332440023512,7824753443227799709,7107211511651176177,2718808210452530032,2538295580964624527,8447554525900262531,1176575265983504052,16157856793176341519,7022146989250663397,9606684399902168152,2605371005961827739,1511382437525160056,18297585815327331124,7219157396875331702,2049545782804316520,13267394892650767540,10805913324796760423,11704228717376739083,14125502048884535134,15934873444920325494,8875731240116220297,7461932703138617400,10214819787762874736,1083941287853629340,4641307345200042342,4311928834259001709,10059442166679678527,1552118349107656079,1945517898892733258,4317708114281299228,5932655334217267138,393854185736212837,4162225679562719245,18193759447817642347,3419035867599302526,4859952412503221266,13815315076798789584,1326477836423603019,8990168093646115548,3435090231412913647,11226566123968974340,554961563151816233,7777007303169988757,7369033671229157462,12064995664505964187],{"siblings":[{"elements":[18327621612708537471,9834707417698459252,1755797188485611995,11282776702394424615]},{"elements":[8911856714153345054,5169399561089888125,17434826530307451963,13454008730270505488]}]}],[[15666538628641239434,5514816996734501650,10206108607176816894,9896262670257776060,9872197274370835956,12227820902097166237,16733551558975218080,10418732183510700779,8753274442764107658,5088454662553637851,6991719417196432285,4222619760920027036,16734133181920320018,11819910508747830076,10873726640944068337,9943465071656399926,5713555626578606951,7262588458178433110,10281493820027934722,2766496996106176791,3077230213217952443,4249680449985729744,11027081171284956856,1454313265947154558,6789555517607758412,15774972523594446510,8711469640481574361,3788025207778768648,2677029246022324925,15622588185188110525,3178547690106847656,15177130603024977532,14801309516043064823,5961559556006840632,3098930831045498660,3586266973774494394,6533924687854071762,12926909644275739863,16011312134392676343,16497064329440311824,9490414535181958607,6427206680956992444,11840200341956613046,8521128302591041513,17411743994385889419,7501934151531771765,4820324977771196409,8200309174753302274,2402171258470009074,16501056963945672336,11717665030431814743,9033134602816159456,8217861647397141392,7548084684569847371,2398176688636897896,78732106740204458,12034801380035455262,18284699634715984500,1444120490652094540,11665696041028384256,15045095809207355923,5638038848249542398,2368781056035941488,9502330551410849791,5734737624481330067,6520416384209711812,2403600134424494395,7732226000372147853,12854558971977876827,13791902879709223769,5701819954011536597,9864085817446633751,1528112075077024384,13755801683695650584,4217862593052982261,3889825886579897251,16507975764848049903,991999359141955681,5985539586480851559,12803417286107097116,10818608776522018490,14762872182527102002,7759475084966402489,14568474414521633019,12608285601321468095,16439920218211140486,10428176703045968562,9337769408194752327,2086199952589848864,17380243402045630322,9036263262781542799,5880137334613569971,15008285669754961780,1273584127543213202,612773071817787117,1073774268513410535,7929623119986537267,12902918123907622631,11198393935841479522,278161081816956085,5942266998835493578,4493135146103075847,2980044050308497803,14094222216396101873,15928940531775658085,4485496987278247763,266277006419980443,6830330219133133317,9596821689786698772,3177267280805633589,1930716286794116404,5229650904322993182,2706158603119214313,8636897585668209773,6238679447745117606,16878355748935723149,9666165613406354372,11121828802484356281,12383807002031057846,5860180489862305550,10566742870972070307,15419034215481444792,12555296375335974758,17400034331012916687,5826645277206052865,7782644577209818530,18016603166173411999,1171328992610213709,6033205897902092995,9812978232591556214,171955687522834693,15585626055167738194,16168005938372609086,3468434094051702415,996934884461640929],{"siblings":[{"elements":[9709399955314100982,3599714554220407671,2420330405006996932,11670921651051173004]},{"elements":[15776566184230649785,6250850561687303190,7457021645616090345,258815291263389583]}]}],[[9297558364034163902,8093306992191118205,5747731308947844329,3825697141095577634,5205676466314626977,1571399950906359534,8713975270708209575,13738510492027694864,5032857198739906508,3777258546160210331,10084778434154780498,3900297007007375356,11421862964564884669,11842533596100175599,15770161112344176410,17836305317083928376,7841151481041287479,732283788486021022,13294869711750171050,2582334541548300055],{"siblings":[{"elements":[17063335910530078007,4117143736783995887,1653974631773118218,14306003799591719226]},{"elements":[16319522484407948671,6591084333137324168,16936354185501772935,12617805466504826721]}]}],[[6532032308451962918,11004059128143293610,6103781021450112157,3328613263011024345,8533086740136793082,506794118584463081,13042212066240628352,0,17530715173102678202,17817644880830642299,14112271464663880936,5914374135653791195,14098997514013744462,8059420966969574012,1676682780490316933,0],{"siblings":[{"elements":[7689312671830744079,1194005775620828414,7259733763245520713,8395822303871647250]},{"elements":[15617869679280612782,3690577657738123095,8308608080064602624,11797149257407435451]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[5781702706696590508,13662327354992443691,11623780154007817179,17525937845302915125,14632754469829851216,14641957205239721923,3297827777246699824,5855599112181539124,11509392695817028516,8996949770169885038,10774090543656878621,3499628479670952365,7627006512654314397,539092893415736347,6256210000918350979,5472842802798002508,14700778086780838803,13087758673439392943,1708208512772009863,3003264685825566662,10329840800882214185,7138095256847152944,12320893618285114370,3894156426343985292,9523733624994930761,1541471203865384335,12334834230980935807,15817080528129019666,16614671390066004083,11723546597870924135,8912757174819037402,13411053182561685448,11940604134627218175,16950675630847758610,1306856219590989842,10370290202157120503,3150243369686803341,5054772536895410484,1815291437487276072,14409025738972078674,569262158035250131,16998007480498673187,5083141025107949116,8425669119615294399,1739380305956324777,8018079132253803935,11323771401145591335,12400056117937436183,7287954913439733031,11453932141971801132,16321119902882090502,17936555202059765610,10866369363773071123,15242409446563879642,6124483383322197498,10968382131857424396,6456728266921536429,17131591550754311899,2829580033172488861,11581711535064148729,7339550570358136389,15158782635994417990,5419842102578725133,8446083081242526582,5620333138957443434,811060067622728657,8086319354237098028,6073745776678154603,9849951894760546383,10447095073640151752,9278008499129659536,10135794966727588213,1008602330574766061,14350081475584264313,11278314626909270489,4788287555102580014,5130722616702766410,4026363488073442854,14954435304116927614,5272837384722905337,17792142477660725871,15487834554947005823,5815441041119003321,1355354540002215760],{"siblings":[{"elements":[1208046589097712110,12911529971041109502,6586331158960140467,4153938827141931213]},{"elements":[8911856714153345054,5169399561089888125,17434826530307451963,13454008730270505488]}]}],[[17908633197964131120,10833446896781337258,14107534400347601632,15692398815798615203,486633624543618888,5810006249098941412,2930624786806485253,2412481061013965489,6142782673847934094,12412774834495262347,7746317531267956209,6682851105607256875,16385224731478491186,16579408907620008664,14062569889043642845,3754240822129660461,16204149507962824995,8924967126602992414,6445365484137680947,7784893967883608289,5122923760211563031,6276166759406397841,7913479859204671715,931781016584344729,5757225902164798453,12650360971122631443,12350106389453949541,7426149309715459132,13934542670250152106,11441688802499312776,7723442791826366637,5401911398854514687,4453547150636669813,6410830556166803643,7109973821379573112,9037985982629517638,3667192987063470297,5881808022191504578,16607044415344500457,10861616341923526365,11658914355289087288,9446559622245427156,1820802095989120108,2250997466940735710,14554944241788318595,1526594354309756563,17653891723529421515,13303546343899892104,13358419731666417523,8571261147757639393,4680194298746300133,12253383446476275788,14078634550055378841,4377951069028516960,15536661205725376678,17767946294081749269,7858232373131074691,13351535172684775924,1691114310161491908,8653821236924576689,12836542380205002443,16193563399654784826,7463469563173037408,8055619904333091152,8853780446792940637,4647850757459961441,4494921359497602296,6006839145393478778,3050303081456968917,10217151445390335624,9360642789001780137,1682200655802003836,5958103806324775552,9755220042070894286,13521963335366957208,3509089345828677023,16730176934985122631,16938254695429846158,8706040571513418020,3141844784470852214,14322880212179941961,13870558976411201176,11352293116562855466,152340454626729236,365781486923203414,14096221319985343784,8129673710531266045,2652768277615368398,9783122838535900891,395315476382518584,12254065106506113472,11903070638026339878,16884560832801333618,6699733553483045964,2064539479480290930,15729765522195519181,11332457846918829890,6484274688780410550,1120667096647757232,5547439125242060417,18091754866612783966,4647131921700266382,5666330663035371015,7252095341431108886,4451833249447907870,14217818846713996424,223993862242492502,6716444934133682635,11159993676515909795,4755843435721225566,10439864396719968848,17682362819611116897,17796503024623969861,17720424327971990121,4040238043016387884,4275619298978044714,10719644099409810196,13246783471432345972,10370407959003123734,15137601830404085012,15759090725452321660,14357906870599935911,1826872483551346300,14401307253421753114,10200911760492981157,8619875938966378323,7929402129296106653,15357613275553759949,5146502138946797074,13160497611857789157,8598212112130117308,2499687542704441126,7562576565341383398,15905565760446933627,7838524165033470099],{"siblings":[{"elements":[15489436015491984466,9780506813805941659,13394542082308821484,2156412781253098578]},{"elements":[15776566184230649785,6250850561687303190,7457021645616090345,258815291263389583]}]}],[[3073616891110950527,7029959150984657975,6473953864375572269,11817967870291811201,8956608215759300180,6368347060710568913,16898584716384374332,9279461735200867211,10923939118766757390,6737613630420678303,12113878752384026131,13609486902159567355,9775896165071077175,2396869441807052758,11935023837121930892,5671020144612863469,16162657977338994159,15008446660393324481,1118837165121154696,2932405986356404319],{"siblings":[{"elements":[7174102506202008059,17358720227433680866,3347860808146253763,12621996305965467516]},{"elements":[16319522484407948671,6591084333137324168,16936354185501772935,12617805466504826721]}]}],[[12349104396969876215,10644863665592015088,3761640049029170547,406499101628211817,15204833744964341537,8854596354071607193,813289646978297335,0,13202998230842048583,6043277331874070809,17684589401244465823,12388914138273484369,15591020145449413524,7416539082953725177,17183611334482820569,0],{"siblings":[{"elements":[17397582173740670268,792755594938182159,16942861908857979834,749718499523002185]},{"elements":[15617869679280612782,3690577657738123095,8308608080064602624,11797149257407435451]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[3430217909794797529,13715012292105753095,17149129451905260791,13366296804138279992,699049416298609888,381124555680706084,12720086397835211981,184816522750562530,2526850830423630847,8075458743275693986,11473812685406665838,9058823084191947996,15248823105676241825,1648425650213139015,7635362025430285785,12715371066928823432,14263617062173108175,11523773671388184819,5239746610556536197,10442841379838494618,15452174458367118897,1223199841746333763,816445260219771662,10186983240865572688,4268550946723402166,3870512996028457924,4930198429725822436,17010869343915798563,18157394098520078427,14389436548791562061,13043481276951119075,2005925057942663069,17366921320141611880,16732255704438659549,13273860163087306338,1625862003127520888,8336492783049558420,15584107241671510332,13011243693635395171,11431670862700360357,1201856787165778135,7444514480519304144,9658398899692550118,17133310124078331830,7966071156358148059,17831008533531627016,2258462907680341821,838333117551688000,15709990502404133103,15805247967600840696,17673429002027506168,2142711675413197011,14542318388913228179,3447819423818562799,6391674214498371068,16455881369831582173,14866672448267322447,14073093490635504591,17165467327069363517,16092116349003766112,430773972620534112,13509079917742631240,4260801221360431203,9689272603902866738,1270640374685680936,5924808469218370922,10687518030715604569,2599250438992209157,7094768166913514371,3025457074664072231,1309791192479779658,5800808558164685459,8193592689686676488,14552016988505788478,8862161343471624288,449575745398624704,8586869941763361502,1400244177096550360,872585710081118377,13481463732948528887,1695748498598770422,6150042556290884133,16420448207004826568,16034576465314606917],{"siblings":[{"elements":[14419406449888381483,8816956723976101965,12067085973342547030,17282885891460544483]},{"elements":[3831638896680269617,11622239582132795001,17114360658120078056,13946956494708067730]}]}],[[9322154256070381583,9298915447726607414,6211700909309924453,13274187522243721116,3996584783067669062,1547358400286385195,7212275158630186703,14175849126249842046,15217760922800465493,8482396112015419657,2354326879456445114,15123868007405630802,14555144777351251400,13855724743314725558,15807738640977910197,2356339767972206693,3025107138844564902,4545470563710126690,14500864841201413052,5624681564573425169,16419317879477871230,4101417914187952953,15531449481063011065,14374658099390559682,17628066065223547997,13625955903682050158,7413160361904922507,15349282305045316433,13875069821883808552,7933971826159666150,1047526674919267360,4719620738675006705,12364933757636696698,15805332242094203734,1362718704579087865,18060770503490174415,3888987683241323887,13339568935486045887,557945482742332333,10557793877637946932,4399452620291463704,15631440068514367821,2279302548513424834,1987055408707123556,13572218835502727287,3619275377597939896,8740580396473916955,10094961534316040183,4036321452684251253,1201198025787409854,5783776107821009260,16026104870368146124,13941416014503432491,5184618905086305446,9777021518326335371,17525563009622226323,6381712361438944017,3355778152753331018,13087470142587583775,10188008837582296069,1770316342093489588,10581837809531921551,13337206676826706151,8873992871473335773,5134434466981471550,13450538213327099613,4593424717502174281,5181966124049313964,12369849897900262062,14153919280612190670,10019825806919099284,6386593092010989177,16695221870202127039,9419386075988356835,4514799154140518824,7150458521571745321,13545766832203859091,8853663620836211709,5910769182723091226,1209696556340868022,8094964275755960427,12873151555838180837,429141661996447688,760988356809611199,5609632532189112069,10408813637787878668,3597979058825412162,16781001578101310330,5595854949189494282,10988160074377882939,17750889538153463841,2988184772833576637,3065750821414038616,11416658544651871821,1802708932948999635,13311244398507192824,9323216808180518369,5303223591068172099,18338823527351218724,5002779832250156933,1381234248038736536,12882443235884928877,10234713644284282745,4209724026713632515,14719716084792247591,9365183347643950019,17733743605282511876,9183533475973655442,7841128586958675674,10241273336904367670,15951390104565560433,12771055459739956603,7083914546059275294,4733944231395324022,13897151992248040925,4986634210803908654,8423961178037741729,10649925996996400445,5829105945248704904,16949944784656453152,8949551816310343539,189907372646446718,4524255791381785808,17038665127011438474,13765119673581050291,2052735027904502853,8410412023141001461,13504262768745706859,3647835837936923148,9290176641476163847,5189785031063407430,5670077459936633,13223512641730670048,5214126459817444530,18196123647689264443],{"siblings":[{"elements":[15415754349922474572,14163006675830700996,5932643749020547456,16768989032434535384]},{"elements":[6864123150946771401,17472759004518793427,14398421066222398594,13055536562301545078]}]}],[[8530803453036409255,5203882476033227359,4993407135336684439,16312760565838765326,12790994631425502801,11622745337163512476,17387668264779158281,12663987645940025385,5625997197921342372,532635339135937582,10915629997163135554,5337547576525661677,6361227932307656632,11566794713946662337,5583597330837581836,17316457150935883545,1053545745939646453,8432753066623256596,10039615331575844957,16078583594174230849],{"siblings":[{"elements":[1143298927385980590,14743362631950699747,7281485835660016990,16572845345027483461]},{"elements":[15392748069576857672,17655914070910136240,13006666514352400300,4722180759939087357]}]}],[[7605365590157157791,13715215699604499306,1504927623018741385,1127992406663066620,16880404812403991327,2540783512005338262,2781282476957393127,0,16714153288396836455,9963112122034662129,4582315939911734173,16284909488462125424,18088894261506136491,5457396619582910282,484036043474577515,0],{"siblings":[{"elements":[17585160959274562426,485584402282630757,4099101999674865538,2610059229525113855]},{"elements":[14431553662412879989,10255164770484839569,16549369937550599599,17355122604883312167]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[18254225334420079843,8772003796848910518,12275652856241114876,10456656225978629104,4594297269491215535,13262523281343485908,15006356064449103889,5711228853543839148,18160086942283725550,7141048568009784642,2310475694935574267,9467882928327039475,5730725395629234757,8632371305344091233,13428922715938518767,12162991733653704743,15930218933996844433,5610044373071442097,18135951201340008451,7093642372660752199,10073963698704766509,15624682552887982730,2088304618882806827,4729111036639049231,3905365587624343278,12632116364196610137,14951747126266840636,9847996280387846216,2673615651937607488,3264140318484315213,1780891085903278370,14759916291136249415,13050736192270859771,15781419249057074309,14721617219002388219,2363657672718364774,12246167776370133113,1575298408479220575,2641305826390554783,11991642886516435827,17385528487256780960,708944528618814770,14542073354519611880,15013822239210879867,16118812887741350858,5075358827632505238,14278344869194588548,3249284709224797433,685835185504600,11085459332019424578,8255549963909435330,17006589555784053171,1646690280396544600,15982908082807820896,9772332795290666576,10176897823036561198,6100132377382539906,5734642439242583616,17559329266953776985,11242525205873795394,18149791049712947753,7605420838163358550,9139371343693367500,5716445749445879371,6438818403539388751,16785547779199985081,10451897673834609831,808656775105634947,1231456728650730153,14411170257712022417,7434380473063527671,4676789740098154042,5248554384069605993,13574658614220221342,11946000701626899664,13351771771600587674,2652876740962897950,4688372329423925910,14443287306964661360,14883344949568396614,7094464532843784275,13787317827165574573,15288471071033556248,539295333354302189],{"siblings":[{"elements":[14046724197380438952,11174956357335914596,13365787575147766652,7606769774651462501]},{"elements":[7328390293048134264,11928443479975480452,13499502888068976741,6344608598895868495]}]}],[[184100353348879293,13865156546334681171,39858928766549041,10106545199082221032,10361355544853948151,4524622421768333967,12112452026294665200,5885837822118745537,15009597606872846532,3489726912940140964,11279380800677878906,12980999223298505025,8537598141454131285,6421333123323889546,6705077380521575866,6164487821039976860,15781628473342305738,12684228630792893030,5753628770201744974,8449036309641048559,15215995501082142857,15263011376968322175,11205572435587732241,9011636931407228229,2938366850067484817,11846860700267373957,11252016260795184402,448116251942910314,13592708420308280876,2394836536811545264,14275308420018416132,16770225964879454459,14064459731141416251,7679693733336695670,7996333134776974139,18221306676911447702,1701287120918165676,5439387480002031628,15467663182027404395,2076796164717964181,3597633380155911108,15090829600746087048,10442443403170265285,6562101135060243793,2734817542771070695,7239227548814463493,3149113754146560366,1669272473385062873,8923190101474329668,4231492346084739797,11886640477433167104,6731445962399425304,3322682651270696416,5634524460888089786,16095173451064957801,12036622322375126620,1442072799481268047,13646582874966594893,14760786186550693882,302334579446203652,4860222384988141041,3635422945629996671,7380182619633919025,8585323762116563735,7958529805929418031,13014309948037094731,3667226481575874557,13464436306421185283,8366741509809419957,9194150884885528778,3973209368238067168,8027880759922719822,5602888251721070448,2458190907660048222,8787211280740384660,11572101195090493133,2497097507186808147,7965904016752967902,5897362550777612213,5422196544162295904,10630919085542667687,4510769297517808315,7082815261771383866,18114801752064145482,7264307988981171072,13569902124636626942,15004263173631476550,8571063173302150353,15046555068666186143,5964668321972248229,16885008621048699572,15837549947213869788,7527083585782713475,11498611725593132202,4733787711040409185,10940782724420277432,13005704657973483645,18140079335915370732,11716214117158400859,7606603789187890232,10908963919367454856,692759261766858657,14409613743548349929,7498480763074715148,18267615218340894550,17460272423232866222,3924697939229922167,5221182570434966021,1820048688216915743,12432900439764560005,4874578836954834582,13045527454018535698,2848100204552258819,5660031888694052673,4927385212851064626,16797743860453775771,18211110848227784923,4317833384795168229,12881807474984793120,5809267988864928372,3226132109626565758,12427887051067954889,18369425415911321451,15020662844375918614,2462081691033064114,2561238511090927045,8936388148334740223,8619050407240709981,18060652854816570674,17700883294293558178,9293837320217439200,3312177414195322067,8956392004611216300,6064825562933664177,15402053977925429053],{"siblings":[{"elements":[3811389046608428840,14321923700108930582,13459227697728139060,2199675087531190413]},{"elements":[16604429428849316352,11875787488116677423,16895989160574863136,5777471115308033496]}]}],[[5606182372683807473,2355530046220696780,3638577693007972800,15321816928368751760,4386349785983657065,13082556641304934102,9985540413214162329,1808846458636128035,11890640331410327537,6495844192750538880,12648834819171992239,15079964416320640869,2570060031254119279,15460597824960630175,14562572352146505583,16799248168193395102,17610304768187298213,11956280539035913288,18425541366900551972,12019055386297202559],{"siblings":[{"elements":[4469112248055400751,7900570983073315372,12320564184593641783,14396846745347847868]},{"elements":[7736867712023182193,12286930843800519225,15840480849373353787,11143510070313700033]}]}],[[2832012269638637092,3350071724007291866,14803429236283037195,4328040081534518393,5660490862362515092,7464342044606770648,12033019884650150933,0,6750640466811607210,18268966745608540756,1355493742392128274,13636048761147293796,17519994146560224593,9384810036235519154,17900662555793622403,0],{"siblings":[{"elements":[7057020009130133363,5979552353376375435,159256115171479163,15060085114968194158]},{"elements":[13579173583710295857,16784805547197756511,12835472284765102229,7702599377576547111]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[12859477545421291102,18446228248137782416,4361795131497918551,14311372612561139722,5379242149277978058,8627642225018949945,115730254930675419,942297902353529584,11389209183993738032,17550407117288337621,11598592940402831636,10211085719950329770,16955323756515407070,6164034066388038857,12084849160591017647,9330119569990365620,15300291814466483929,17601380643429101431,9517753525944914742,7001529188715059291,16972712563141389415,3160587271072116436,4317847705941557614,4300240078025938834,2625214765659220326,6958225314757406905,82174954683442812,13146492537526504995,6760197543089082558,12395597912335168400,12834625500800348402,2349479832784719764,2744530828115506479,7232403551014818627,9873231499280697132,14844137344663935459,4130885524324453482,6614756667455677366,1562700575212961447,1664222429132128887,12354578627381029905,17830858864538839706,7355034995159817084,11301333352691244351,978820723201213737,15445892715918509386,5904948948963623487,17787597772238734881,7412059590461973770,7632831397026550576,10682981151259233759,3809730450439746166,13693793783539736326,8811323332065702223,8863487687148049169,16024497145611305671,6700942582117658704,16018616740637405557,12138024807450332656,13356261883336606786,3402311134981020392,17684153610417017393,15988677082620064197,7943589248645343288,15488156408183691310,13694714888300237972,1139266919024164996,17071162292203630895,16874236178655428495,8912515112082110750,5261750303661675888,17642085411126001954,5991088517256647579,725663588230098390,15889535612108131524,4922688737645090538,14589899859249651120,16231102096230460947,3579784397897064166,3586753374366879893,17757803033897646992,5909063142794440143,3808897751270404722,1876435259226598795],{"siblings":[{"elements":[9813827625414474071,16196700304751013892,13797676968924664342,17882575465916706505]},{"elements":[7372999055943322391,3141364051179517969,11032666934607065725,18114007743554457067]}]}],[[5838705715348335037,18143948763217281138,1404446395862158708,6611724637198589391,6200900461582465813,16653906123491778402,15952734405363927751,11537266738417525746,3552661207201004908,16547229132554408837,17783537662787692908,11357564920953096508,11442817081237901664,4051267487692788420,14682820891476812850,4621176799642511951,1495149196182886250,17707740332389715959,1181120792410220928,11745304402178640970,995675106620833290,13455847260983228196,4784646890428130496,214391239508746435,1280679303213043542,12786868976393373745,1143863761808379003,15401033188826498164,15961512744726667833,7760739992382770969,4141867845233875748,7850560761515424322,12912672205626759878,12858338993446156068,14718287718255506451,4022413971728647583,3710402166608991120,14425209504286876668,12587179340097862720,4090101205239203636,16519342054323759269,7849113900616660003,10436863909829820309,1753635271819470324,1171483950571211531,9197982710422806971,9317383558147833941,1254815483752627265,4422267967651098392,9282247754749006829,11669911973149700125,11212151656647653199,3441275900194576934,9822111361419226729,8783265154799718257,7196324022226900172,8248728920926663802,8417873605282937509,17122644493844978857,18145183647993781575,11120655474147721906,6978915933256504745,12222948916047137540,4919138648237116453,12138383842831969393,17368671520436103199,10927487389897892545,15627668330388828814,8200141796126692857,12351764038148004108,3814004933777599032,9914399433783257590,11227328781713340545,6877522309338560422,10919705705632028177,10451656518018891162,17067752054072972355,8071406160394916939,8617255930091060003,10254008439339190372,2346347455002996098,11039125356200354125,16973275914033986181,14976307662488644062,4588730781769798077,8249272432281434522,5397889188281564336,6488783592963086223,16796007935452124041,15756724775728609806,10814818104093093466,13007513127600676655,5378088946720055578,5357230072664775081,13615532379151951210,16471835326405756767,1401839011383965040,1444281736685312186,5161630429119815098,10821252612134690872,2085368461845975154,17009817654603825567,2201267684577276962,13107068870448723347,11170473993414236883,14347399059774609148,15187489976345804721,15085428777101665879,12969941714916330505,7800347165209453423,17185588766513932799,267845588980702773,5497452752360962819,11990041309910566341,561461581297375683,8732527212254862442,11652878003852632607,17657771370879553847,11995835950115681548,15492496773198503367,12359421771916287695,5064405142385944877,15843875851501602246,14052411459031628009,9971686352545150440,4356987819481792431,10683590362962223344,10448841752068387546,3625015505381107642,15830173024610761950,3983839141278634443,5229131897380879345,10458807366364134037,8809704798219182391,13104268031875579097],{"siblings":[{"elements":[11303599465611080784,6603046245758460367,17244411365020807622,2947887126255972774]},{"elements":[3207218889332214390,12555245036319685975,3289256967233077021,10823125120280127570]}]}],[[14787078648413535228,10110623859620349181,5837165200307508160,8761354824393060867,15814171806671879648,15928954793034820803,14653925050370160103,14266084502279338187,13783523262269974781,9201015400479840591,10745153308158163437,4503064433422228688,14852590844067832047,17738289068869891360,6471446577842645496,14743258514397620435,2961919329244118524,11265789643588979336,15178190250910652909,8268670614412017217],{"siblings":[{"elements":[8546808943395802679,16981164284584160914,519751060168699619,4251982550637858701]},{"elements":[9589026591778442888,16205759967419451381,303887920955285296,7707513217314332042]}]}],[[6821069515396420099,13936674985879665811,5914792646282487258,13175768706323199049,17652646455131371017,6110185439816020106,14584603007388972741,0,3301765079850289119,17645016959724849096,17740710144773702608,5366264988699712891,755071724307865593,4527522598572471834,16309945201671675496,0],{"siblings":[{"elements":[1286553139574183391,2069788734375245041,4177834779426067218,4495990410111966567]},{"elements":[8336258232629639127,13117971634349245603,8309523070822085370,4778867195192446946]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[3430217909794797529,13715012292105753095,17149129451905260791,13366296804138279992,699049416298609888,381124555680706084,12720086397835211981,184816522750562530,2526850830423630847,8075458743275693986,11473812685406665838,9058823084191947996,15248823105676241825,1648425650213139015,7635362025430285785,12715371066928823432,14263617062173108175,11523773671388184819,5239746610556536197,10442841379838494618,15452174458367118897,1223199841746333763,816445260219771662,10186983240865572688,4268550946723402166,3870512996028457924,4930198429725822436,17010869343915798563,18157394098520078427,14389436548791562061,13043481276951119075,2005925057942663069,17366921320141611880,16732255704438659549,13273860163087306338,1625862003127520888,8336492783049558420,15584107241671510332,13011243693635395171,11431670862700360357,1201856787165778135,7444514480519304144,9658398899692550118,17133310124078331830,7966071156358148059,17831008533531627016,2258462907680341821,838333117551688000,15709990502404133103,15805247967600840696,17673429002027506168,2142711675413197011,14542318388913228179,3447819423818562799,6391674214498371068,16455881369831582173,14866672448267322447,14073093490635504591,17165467327069363517,16092116349003766112,430773972620534112,13509079917742631240,4260801221360431203,9689272603902866738,1270640374685680936,5924808469218370922,10687518030715604569,2599250438992209157,7094768166913514371,3025457074664072231,1309791192479779658,5800808558164685459,8193592689686676488,14552016988505788478,8862161343471624288,449575745398624704,8586869941763361502,1400244177096550360,872585710081118377,13481463732948528887,1695748498598770422,6150042556290884133,16420448207004826568,16034576465314606917],{"siblings":[{"elements":[14419406449888381483,8816956723976101965,12067085973342547030,17282885891460544483]},{"elements":[3831638896680269617,11622239582132795001,17114360658120078056,13946956494708067730]}]}],[[9322154256070381583,9298915447726607414,6211700909309924453,13274187522243721116,3996584783067669062,1547358400286385195,7212275158630186703,14175849126249842046,15217760922800465493,8482396112015419657,2354326879456445114,15123868007405630802,14555144777351251400,13855724743314725558,15807738640977910197,2356339767972206693,3025107138844564902,4545470563710126690,14500864841201413052,5624681564573425169,16419317879477871230,4101417914187952953,15531449481063011065,14374658099390559682,17628066065223547997,13625955903682050158,7413160361904922507,15349282305045316433,13875069821883808552,7933971826159666150,1047526674919267360,4719620738675006705,12364933757636696698,15805332242094203734,1362718704579087865,18060770503490174415,3888987683241323887,13339568935486045887,557945482742332333,10557793877637946932,4399452620291463704,15631440068514367821,2279302548513424834,1987055408707123556,13572218835502727287,3619275377597939896,8740580396473916955,10094961534316040183,4036321452684251253,1201198025787409854,5783776107821009260,16026104870368146124,13941416014503432491,5184618905086305446,9777021518326335371,17525563009622226323,6381712361438944017,3355778152753331018,13087470142587583775,10188008837582296069,1770316342093489588,10581837809531921551,13337206676826706151,8873992871473335773,5134434466981471550,13450538213327099613,4593424717502174281,5181966124049313964,12369849897900262062,14153919280612190670,10019825806919099284,6386593092010989177,16695221870202127039,9419386075988356835,4514799154140518824,7150458521571745321,13545766832203859091,8853663620836211709,5910769182723091226,1209696556340868022,8094964275755960427,12873151555838180837,429141661996447688,760988356809611199,5609632532189112069,10408813637787878668,3597979058825412162,16781001578101310330,5595854949189494282,10988160074377882939,17750889538153463841,2988184772833576637,3065750821414038616,11416658544651871821,1802708932948999635,13311244398507192824,9323216808180518369,5303223591068172099,18338823527351218724,5002779832250156933,1381234248038736536,12882443235884928877,10234713644284282745,4209724026713632515,14719716084792247591,9365183347643950019,17733743605282511876,9183533475973655442,7841128586958675674,10241273336904367670,15951390104565560433,12771055459739956603,7083914546059275294,4733944231395324022,13897151992248040925,4986634210803908654,8423961178037741729,10649925996996400445,5829105945248704904,16949944784656453152,8949551816310343539,189907372646446718,4524255791381785808,17038665127011438474,13765119673581050291,2052735027904502853,8410412023141001461,13504262768745706859,3647835837936923148,9290176641476163847,5189785031063407430,5670077459936633,13223512641730670048,5214126459817444530,18196123647689264443],{"siblings":[{"elements":[15415754349922474572,14163006675830700996,5932643749020547456,16768989032434535384]},{"elements":[6864123150946771401,17472759004518793427,14398421066222398594,13055536562301545078]}]}],[[8530803453036409255,5203882476033227359,4993407135336684439,16312760565838765326,12790994631425502801,11622745337163512476,17387668264779158281,12663987645940025385,5625997197921342372,532635339135937582,10915629997163135554,5337547576525661677,6361227932307656632,11566794713946662337,5583597330837581836,17316457150935883545,1053545745939646453,8432753066623256596,10039615331575844957,16078583594174230849],{"siblings":[{"elements":[1143298927385980590,14743362631950699747,7281485835660016990,16572845345027483461]},{"elements":[15392748069576857672,17655914070910136240,13006666514352400300,4722180759939087357]}]}],[[7605365590157157791,13715215699604499306,1504927623018741385,1127992406663066620,16880404812403991327,2540783512005338262,2781282476957393127,0,16714153288396836455,9963112122034662129,4582315939911734173,16284909488462125424,18088894261506136491,5457396619582910282,484036043474577515,0],{"siblings":[{"elements":[17585160959274562426,485584402282630757,4099101999674865538,2610059229525113855]},{"elements":[14431553662412879989,10255164770484839569,16549369937550599599,17355122604883312167]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[6585508045033738043,905835199593025760,8171019480820564802,6756273257040537442,13443501840570177547,15970449789638496895,10766469730078580452,1466867718611381555,16704430145542863168,5740988760524701218,7867790665892912846,9566797709149548858,5659865237881593686,4396194167113136631,1099461728349398542,13580547558544276161,9082315148229277145,16464674257926269266,17316838633954153084,8609267716560805443,4678907999597756930,14952442569512302212,9029337624333534688,8537823166696368605,18437712830147121762,3450650318256522346,4515354462680208713,4980762118377839974,4480545509699131199,2423326966761792617,13127296148820123486,5319689244543137566,11861347649943952424,7683665329470012302,11599182757006469618,7426980113180945834,15769608408726162721,1736386642915216102,13500998825925812429,12624480692962493348,10110958912789666429,100169951737804356,4968851086450990032,3377637754784489145,497154258396129593,700381220078662583,13614789727005595466,11587602764555920226,13075753966573756249,2961599092141688572,1479643537791297054,4144181021571306558,16973611669380823828,8802953507579297787,10849272909304037022,7383579378246096739,4783968846541245939,14369412218194939042,2301629225599828570,653036461462737858,12434389369660051877,5547326080775959572,10635293910227684591,18414042141208514094,8136972240987125299,580701825749052610,5046886386886002727,13716390724298306578,1768381100043046960,10759278417381492535,16510105377325232951,5615965135201080793,3131885238001357130,7585782952545527135,17156749855357193843,17809118945148429663,11831620189522650483,18282763411073909396,13108927381339670518,4488672853843462701,6848920543354497396,17737982424777701077,3383063426715895896,7156726380526660333],{"siblings":[{"elements":[8325907241208732680,17653120459707896817,17462569636756050513,15767870941559226621]},{"elements":[2184362331170239224,940371620984881836,4930719422694198068,1632196321716041953]}]}],[[453760564531938794,9651654950506562323,10933537921093851551,24220830234809191,12997293982803723983,3343814213786235685,13309212015021710862,502394881460512724,8682457338012403668,3929993311432246328,996108655118834762,10379337532405843842,11767380395278961273,8773910817628749071,10908738985698692382,7779846319703432976,1514776315495455159,4124004882579386243,10233439006042655491,11603986329969111383,1845784553732062019,1982757372628289391,3602172893431853180,11900456896902156797,4441073442313851152,7666997545869899547,15156289661460829629,3456536515541477489,17214750836352419762,1901286474599439383,5608546424431861731,6298630914399435927,1220422252457063147,15218747219053501753,6304814936049250258,14618092899435192378,17062656610071484314,13162330534625781368,17177820784726099184,17825170745088447913,14088442371384794762,15206511131034541793,4399378852542603650,388082951761686354,11713608639112297454,33698326716363410,8967159902956140239,1459026664429447544,13302018855583986147,5269633486792787347,8123981394706636505,16283070347101236364,2555446136760930686,9123615838911919344,3193393018056468454,11852877047764455529,11132505642028786548,14371388856134835375,6374109167237192649,184240110858346518,12179231927970217892,17879408494454197723,3273553143620892849,7801667356018692470,3506177686400618181,14605316057562689119,6489165060469051653,11594357573379779226,4497767409817920870,16749289217370316471,17700253087443192662,8599224977501224664,6555739370390226472,11950413310742388709,125099141809455160,9848528851901950886,15585356719071898171,10969410717318423028,6362228828193803278,6765223023405354617,12672802417427627236,7669650867063656129,18318207367580144487,8629474936579413433,12959928871724153255,5271345710172743367,5944264254542381366,14077950706487765131,7562644410408779041,12207483222946297710,2974211524789039693,1306438420659147602,10493110737127156032,11022719308728428792,7454509180359362358,8314810396854378953,1461807835241185972,5081492856683462048,5513302150079217156,11510907030356961111,1511879853369022988,7758002466827372838,1284559556217077536,14765851110457488101,9366502674552898789,4555994462379785249,15260262595930071914,10741113616365127490,14410983373195794060,4449683527905561997,5363295976370988252,16125389830960313520,11039276975179191121,3831280033081349172,18041811409254279612,11418543749493470654,15557198577311898298,6835811311152708609,12817999456446315153,4331861936185409040,7813005302012374536,9174037913134898365,2521813591965828468,7277899107957644713,4837295064963380878,18040522943104900868,18416362848129608127,4724605020936527551,6050203747082999684,15759868621438839921,12034552253509975444,12341992847975524857,3466860421072968908,15890135847697699864,11803279579849405612],{"siblings":[{"elements":[1766666451601366700,2145141351074469805,11750436605225317737,4788734397496079623]},{"elements":[5564663991649105737,12788052000891943640,16066154979917686032,17778540543867554360]}]}],[[12044581901756395742,17429137593420036632,7597725439533654040,8679992036806725767,14467140142708464089,14172398293601905792,12359226085715720085,16196941975779203335,11019890208697666453,784219223806679349,15113440407836999935,15140588410300786110,6305325812679710730,6827887513783882785,11408150126289716157,17570239248740716224,7290062009633631963,2085729141191488616,14846268109038369414,16751562615882284652],{"siblings":[{"elements":[15105273234815301575,6654579014554935289,9189811328639738149,14977314935170514678]},{"elements":[15431206264572300069,5643387987508524283,10798995895696297779,11693527148708038006]}]}],[[5471038148283255137,18067900861646813171,14719517238242728094,10140196389081885922,13121332619530673626,483869121170847204,4181932247561062018,0,5211406868075008737,766749621467017755,12747741871600730845,14746931970089688112,9145223477766169623,17022466475582192305,14391108322161299234,0],{"siblings":[{"elements":[18165287457990015768,6615278969112507353,15603465963905148996,6425235422671775377]},{"elements":[3331974073679985356,4337955552027960994,182549305672732439,12172311251003816887]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[11478853722654892596,11054649085732609431,4994009559595819210,4186791003624108490,18024865371818158892,18345183498407461526,9694238634292017590,6724859886830687063,11243260270601353574,14381814419105033411,7818933522528881030,4546529647928812664,14925540237646974265,16878266396497955220,12920668997211098573,17268828363658179930,15016004026910537377,13817031165285279441,595208874785186131,5264621933065972184,12842607752779588909,1036458340443929803,723974238512284296,3865120520076342236,10591874432022570118,16672770104321157989,4268204143023668522,1442101787761795173,17261059111713346750,1886389845452355019,10015188874733823167,12945251435542942346,15729006941700819727,9769721924531241974,10360965788706053704,17231683844444576182,4860556932014059440,11290628573575307583,10467853112375278596,15672706883929365300,11854941895739424568,10532167184289139234,8849900270380063794,17258070778068654781,389392563654780465,15694034380242781064,16408125286346615923,5240758237683744215,12594341864398680415,13125157218336151182,12110224318087305788,2381073337923353293,4801286650727974296,6463610664988967714,4579934330236307092,16913166904864701304,17120949083165668392,5417444260846067353,2162861526281072576,7230041798647740383,8052962025075942004,2329101354125768248,9495441095357060775,944189234100813522,2974037460852383196,2808898223350514185,16825144225291284340,16495574607473979160,1773988643127921369,11103048928261281020,17248516975848621671,715115511911425973,16595596184784813139,2875296451261385175,748823176798831426,1445145643777419320,1059249732834213379,18281412487205604006,6977248505445028194,3497756901944121467,17667695280482817497,519454644348557937,6789904627007533608,5570494389550069031],{"siblings":[{"elements":[2788283718956080627,7243963918501585343,886762250337169434,13103212312216094922]},{"elements":[12080961203814882388,3507164343688256046,217812273724800610,1252946754184999199]}]}],[[13928294621723921177,12780940283369458641,7876240315475227901,6066626702537238528,13011213915576007320,3801424079985673882,16277496004475821341,16085235133653930238,11316852721901324967,13069816796483690910,15756436159983779941,3193353954039655612,12041247526670025144,13808978917072688647,6668376165053426384,4632601910513077620,11186820924978107491,17896896607328756789,1201269992924967013,10883517973991744879,15046444393138479000,12254880571199703789,11516025757018657186,6807584723654821190,11487701890348499993,16425194792432851204,17301719261043152282,17090442567531261454,5881929835114091972,3550584323716053658,16865671061915761438,3255409378635398956,12033280095569196296,1208718247701350446,15188774351861359804,4241004972978600372,2896759208281039789,8539448906756640547,970160448926166532,12525281569293996539,8421057377609873068,11414561442766615983,5334033518037827945,16102592107441528191,12063664925475861676,5876263209736748310,16094905122681076299,13353363940256700755,17685694338339843559,6656626129694877342,5405290066202285526,212791245878964469,2570004899681125736,13439294383791933185,7703550380667174778,6538350873690157541,18107794263727601073,54580399137521432,8828462722156902020,8066616067600922499,14762852958420218250,12024201371545318464,13844797867063479281,12565780138704715469,14400771001741273870,13626427101763213188,9166393173388576121,13035672150195972539,9638775224683419544,5614214515301617947,12069032121573550427,15225792447601449141,16328372727017789082,9974563967212130274,7875848661522037056,12792251397455114507,11565119745153717437,11334125463397844703,17166996162835086659,7231129499839619834,3209234771455575834,323311404594766509,12329466573157284315,14270676162991052907,1785650367237281812,13283035853069403659,3132915676708217102,17879264752896603095,5931641089104568475,10008307457083933364,10953394947916641004,14533709401853942272,250243619137250263,7766085310374139955,3643497230732948605,13330506167548139579,7870418990474151699,4470026214517578678,4419577325669731608,13907310349502223021,13313234534324550606,9154453010176117385,14698034184515685295,11438383049804120223,12965369469374288477,15275791235900490078,6993255261307083688,15071504784758508143,6125948368939643701,4918042129919054771,12005554912533004387,13027631392966860266,1173158296778052271,4251531275699323253,17709512693764141643,15831380063094390543,4410254274419832581,11542540264636564596,16876773940638034736,12276486071332153352,11557231070304382447,8889858093603229895,15901237587255218194,5056325183707837133,4893706131388122184,2663067057706484480,11771225460854332227,16345767905348746274,17490987510130080666,7348963557773523622,12676658937898668513,524615365527171275,16400114156167297100,17259472154336584102,1365862285624631591],{"siblings":[{"elements":[5056384750668684487,13710363428291757594,11353402742075790492,15966424712589017746]},{"elements":[2764822297318970357,7496047286241694899,6797108056415157438,14534695478963865131]}]}],[[14333413904541045983,15765863468007348374,10759823668808383676,15946609108309144405,18011044125947190215,6730285337740587094,1599174256160120714,11426300768163914436,6097384674475431829,9599964044154806019,10388248604002746707,14662556863037095589,5064017847021225116,14902912617231720367,8120312032869863217,6986132666225680170,9527210222463520494,1577811123417292640,14140241123957420419,136429847064341115],{"siblings":[{"elements":[4548784723257502663,18009270243687695537,16496044585773525905,4052791891376593588]},{"elements":[12773611363193962328,2335926572024787226,2869285522487048143,965322443628745425]}]}],[[414278414329121986,9424306770987661654,6694176475479503630,3205258641546164998,3984007796468881088,11358308650235923354,12115736508358799030,0,2120730794013409231,4862511963837638658,3975595032642781129,13648668594232199507,329345157526292218,9499090610015041077,10046660645021698406,0],{"siblings":[{"elements":[18434591974529593511,15480686846900374609,13039459429548397553,4706925251330926919]},{"elements":[14910152846997468102,5160297216225939767,4235578045008137031,4350500210474139555]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[7577016485919276766,6735275202698696973,9760540244161035389,5466375874027570449,14857735554974388722,11596941429152010609,7755282478930922302,15898875264011386162,15556894694773296581,10235400558406416706,6119712351401069584,3329660208144285841,3141628165757217455,4133640273580195534,9821076459958951668,12128749612756273358,13970461391875760833,17765185769461661500,15487582972326530152,9982395814599538498,9641611303332563339,6103693158931419215,2405316792204658885,6000825777172017560,17291676255595838405,8252483479157584341,1334724356621090412,1075572777223806859,1418446335104705970,2409702906096441987,13386456238514991679,18352812465733047840,3565310531641632975,11865783810792318314,6653259754289134097,14277892463020505292,1021338263193648031,7974086536238080290,18043050004595529232,7169322739935537674,17262952765223792059,16508173524706835413,8407986048421700324,2731681821418783781,16962409397168348693,12518371718584705105,6836490320947230750,10173908584322424226,14780801403217615446,6864407245519098196,15257782884735569381,4065363053230925622,15615323641249036563,8499342504130969943,17149728462152206596,2609078087137312613,8608113588501447491,4822411645928574117,3365274694095832524,10950247685143498994,7727368247640986371,12501830351562085650,350638120505957526,4934393113758427169,14433372824351034166,4042073163038955383,11778644211147725481,4668173569820498687,11542788906243677728,2030283944460521737,1666092553131115788,11111091004364664640,7226571630364574786,4771316324262429793,15791501074258793652,3737577106070872474,11059059255634799446,3364036573675630186,17462173752139631963,2478747308715538992,16256143857234363082,11157135593420104396,8718964465724306791,4143119419741543474],{"siblings":[{"elements":[9388587184167042950,4839542192624419900,13665916779219735183,7189877172786009175]},{"elements":[5146134359815002436,4633941153658423848,8230102747931661415,3646387604866439705]}]}],[[4923639440429335008,7819842526462637132,1651138263502417622,17470236648626681580,10284534552292005801,12252186031711813617,16408352050070139348,4413105738308997946,7945586852564619467,257395733613777579,3412819698673243527,5528800100927877732,10786192703771609653,106108702113678268,13506486394951823918,15795119271766447628,6404645620242471190,16272481520593222100,17587544206205505882,10519481823537948295,3831035497759865044,13575917240118001273,17712829818910967171,5264893909303718616,2454747850563859781,5896270449434898810,13511015987793871454,16225034036468384819,17887007005609634006,14423608016612211506,4697822550372369843,14841587349207641864,9201976276572021405,3945238204822941265,12605819726115154529,12965528056779429828,17582023003597723120,6001256214252122540,15792922717713922968,16155799937035240472,1388886242662064305,10621657595556118842,17977647482827048752,15273327031890539374,11986694887224655141,8686231419541650525,17492202713563903174,6381480585501541089,299314368103465683,7851846223062136932,399138551025299810,810207781365819458,7020766545477729281,11683258992066189879,14047286335782164523,17349637714682345496,5702930023889447219,874687944623060173,5827937303528674965,15144941924549148914,14826310678138396336,18057737426933946472,14767373223866495387,11845013353752790544,6818857569756242621,7035047749597900154,16607846702620786632,9876648958737056080,15908494510276868235,14779063625471900820,10823318973782350945,12611676558956390970,1194146950911885092,15872579452458502071,9551639703646116154,10252846769186355041,960655151223008201,14192411820022303804,7825402083297592598,809177905277888890,319914398360793620,8187568582465000768,3521167029992647097,14415022496084196898,18121086113601493705,2707162338744320461,16874979065851156788,8512325746850944872,5312971444517440638,4967268894293589563,8306014190730383240,13051060430436519786,5352863858527944733,15216456864842888628,15197731246608088560,17096264592187961593,11472589637636510527,9708286951359598284,8627174973593230314,8206496076273153151,4485108878812662132,2856865003724013552,11906121635060566266,12831435228595524600,4919144596738671647,5910039085880723938,6036008332395819202,5041137298917270907,3022490434035250063,14306707290166850975,17805563426299063421,9180087409144894737,34259198490335974,11490710408908909285,10180424349346561801,8043009899610560748,2392898706865752124,367125269310331433,15552109552163592234,5147188987370275722,5198927785358266061,7476087530258281852,14117163527309407785,6238843271524426378,14793272150768651626,1034241164685932500,17280326229323620516,11782457881924001443,8112745371204196519,11644230737563783622,17078305550073983990,9136555898996071577,14745381129481253594,1520890780817771525,8737884426644584399],{"siblings":[{"elements":[13265045379023546634,3555189923538695398,6621538100449956787,16019923450249731572]},{"elements":[1996178265386441214,11816642540974053331,6107294653307547443,10879148704784448033]}]}],[[1409075026432739807,13137481355607124205,9632952919444275296,18111395775359526019,5072140592587099380,11442036951945982441,5567292304064238607,1833330556747527491,8250595979188649189,18241805211803192259,15673320198541913948,4453533405692664406,11755916858605041476,2235073864469592062,17555852177364952038,14007044724472203389,10120303186184860073,3099424334530563751,8492112570119625300,14734089673787982091],{"siblings":[{"elements":[3971051800005555567,6194582795321047028,17843005671226642235,14519872916438357217]},{"elements":[17346123668886082401,16787551465391953507,17797715644168533705,410778266861113507]}]}],[[14439109870492417190,8222849176958535291,11647872746424349990,10683015600835759421,2164844463191055559,17895365567265283004,12062693984990171873,0,12110536696835629200,6988994112740847731,8748821925530572896,12464052956826584863,13883782518265336775,11498283829739031868,13506773305084745013,0],{"siblings":[{"elements":[5224227535819297600,11197244242332637769,486795891621724815,17416207127966203199]},{"elements":[3509522964753930501,2900822476668501535,1441063972027921742,10968136879079772469]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[3224450578647075915,12165712751178440782,5633103419006680988,11493295134337342176,17326254976767111726,15040497768065427752,17068747695981096728,2070135021958711056,11266547947368074009,17196201500327856258,17880589677582589285,14237004209817874460,11084311560596369096,4266574937343165060,5722366348059158318,14055573689545109074,13034681062097938582,4756471198169320681,5595050181858555126,10368679253103809395,2243893450744688687,17107979679673729713,1291822591423251229,6630010511335148424,1138906968938915755,13806912379760342367,2613038345576034901,17561849880319681322,1601130326224471768,1597531066573998330,2012084127101128161,15191364035229680637,6884259991631809435,17196068475351035883,16413787052602206780,5252023353830006820,825553712506901819,3947181967997444685,7257381028346369124,10981873135685283577,8352848301710745072,14004197552182932012,11245447532264667700,7080123586924873668,3577968953845760945,14110628317847127950,12732951413930286077,9925444275789517227,12967465905890319680,11396479705777394594,5561421826650650980,16245112556402503616,15228394940253802153,6426318629695872151,15977843601468538897,8098285179979927422,1929505969672845131,8112987869196542195,12021566813041088338,1114467968833865888,2611071761440494960,17968880708511351540,13074193547243221494,1059703104997270543,15737059687084314141,14794946844456905042,13227044856766877073,17143217588648521766,5748454528369563133,12685039917954187917,11288157634772235832,6179411481163140015,3874758693212010225,1206384404526474746,4599443118113865083,5584734463373381931,6136611417086052441,14944258110498715822,12474883356910797772,14308946048563388763,13137334755331465236,13963597645627481639,14465254100735638307,3494334304389204700],{"siblings":[{"elements":[14558427021271812428,2889616159627138166,3028504079954276941,5281229060922485517]},{"elements":[14116771184823831436,6357576774383995688,13501931163075412498,1114208703580065252]}]}],[[13448280129321627798,14184832580226620071,4264760999753648961,8684267825863703316,6878112851223068819,5981119648633682816,14202347967468007431,142815950383075909,11094973493959751213,8473597112894998444,9202204972380779719,17301977310976727676,18169516041741745860,17723178991129104325,5643806893140108058,5995134989082876216,4131988715502449085,449708168028336561,5231174167942957597,10176660410819732910,6508436142998968582,1867232024142202986,713449344684149324,14131506415477216829,16981069992940930909,2002468655122136326,2417414271518697057,7806630627751028417,8381029533036279771,11597508780831248243,6612818318980311400,773262231933669642,10254662912151229270,15252255505727260315,2654857590428745953,16381785889514722093,12461322644436433448,5064347362505166693,3167582050539136766,6953841680854958883,13256329532127300110,3403221526996283601,9419118326875500442,9449903397636533678,10063677929979686208,1175170542424122162,14651801620594439908,4413101411649613894,8949950979607744924,17448643425539414038,7414926230245710913,9455276947968987959,11907880244627439781,11397510846985636353,17717404972654338273,8080787690708443213,7224881457203753850,7802904968082531117,5908019494792688824,114030049000068736,3259340877956254373,13704000571168453287,11092255880557956444,17172973242850278694,16406862860285801681,16077730692203254407,5133119504280051569,14631603697506944685,14155868347273797997,60387923292442522,5573127024198172454,15120863589379989971,1986116659219359772,11266306923901704646,5663872720883792309,7661355303919893071,18047762445681911530,407335256833980988,6515853516206474904,5266367239678018915,11014281590406928552,14107188761800078752,1365405380173026855,3434477752953432832,7342728654101438043,14910521162702165810,17450384957822103084,16928939538642625587,7979633009979084929,4125691474955341782,5332812811835888798,7906871675159820465,17470619131903284107,1296540968124813604,9760841234612238367,8349965239225967666,9937259023821416843,730280567354119224,12069274373293936044,3636720181996935586,16916370456964697696,15850274360266966074,5270370987618696839,10161039359438985947,7187080091025614630,9031373484878940945,9245669636929714773,16776179091121117907,8359717647456971697,5321834315683203637,7858375248931058767,16454295315250406519,14353870353716585363,5974011402676137690,2792359328676211755,6981563623059708329,11939049612653159214,1967916739225916688,5247858413275374208,5966625721722312033,8231916856900169456,14033258309903133011,11072804174145441515,16952608369060602339,8415068452551340760,1025186244108507820,5023652408938674731,12183944001983979617,3228324114094904295,11537857130451404191,7750725993294310946,2824137427543518736,15559824338924895015,5979275273041678362,5149464350269452414],{"siblings":[{"elements":[16486040632412116097,12314096668662875823,4761089839662016914,4998854666538413033]},{"elements":[4317040136440812651,5913354777965834617,14660718991275237049,5162934066940842187]}]}],[[11433875768031356996,6618272493390294368,4527917780844668368,12696977415205041701,16765937794895875440,17591806171289295404,6430228583192868197,10259470764669920868,8872862354292440638,12740408696614810703,7247762484663298256,11218998776229060849,9386295222702791812,176989401297089179,2426942520407550872,1998242906020272203,11279007020871327931,5343035267022931032,14512095160049089372,7473906489598469813],{"siblings":[{"elements":[5905428828937558037,13650116128836350540,8217316945408283692,5739496286906910987]},{"elements":[6979834286018174956,5174986399568875037,33915771746764988,16615176284574920776]}]}],[[4780914866956743843,12240150823474508052,15865643479267059541,10135019648384504270,6641070263479300703,14532898796801337599,7717411398032291362,0,17735627918328688783,10526329542861671038,3370170402210108651,2221906161630770094,7259083240216705494,5735386150400749594,14070237943248436155,0],{"siblings":[{"elements":[13319531051672162703,18162113610193217482,15822893366452391066,10665716859481744070]},{"elements":[14615876395544877098,13189017869415071098,8958734283749531620,11522201699030849792]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[7523476272549932176,1705103449660277401,15293099156288760702,12987255935512570175,3039713492757889976,14985757517583705504,16463281396947036536,18264315900295792233,6504680066613424187,9818899453292256352,4505229118076793311,16254154230653914942,550150885087903179,238666642868738914,7263087825434327605,6441484448657763453,15355939849261459330,11880255078065327636,7548728907907222487,1404533471563894457,10182522683244161323,4432022267057361548,36809750190862511,2007323010200318920,6301070494907111198,15960879221924507852,14593233930602551627,4982345373759219139,15717567256471167657,8183579666651717935,7987679558430830848,9121085415234512731,11405823280825644448,2992345704242460070,12251531670671756529,3440871582953478104,10413498251129187284,8838592883873327201,11817494636040018455,15838071642981736217,7471086904416913929,7705834353086640451,2712242372453624757,8470487735690371436,7844422034034383517,18070724207610233209,393279757804776244,9329088897709896094,331608844264232576,1066771209067611817,3480750949123961473,4795143132155156000,2982840093595289173,15666991392123336319,907965401824799260,2370360989828939696,4462365789430587825,3535174951793071400,3309129590422073382,9639563199592239228,15028700162382461645,2452787324455643740,13120196755126932152,12374179175077647894,2077690105363477769,4631007874748221341,13000282569068661005,11146247603951836684,7913044235772356699,14109977482899678499,1787482884378401873,14361596437212612834,17519562661821167990,9833824996951262743,12101781288359334601,5228380011625318485,5893472767372092110,10890259666607746506,620986562010665082,779537309370562226,3709390680188388247,10462282883827954253,2335155504132361143,13820705883305886677],{"siblings":[{"elements":[12177780083273276305,6671666562823518568,10183936486724414571,7643355834372816156]},{"elements":[17200885959217346968,18203122369288440933,1093813852588954452,1807294838185915938]}]}],[[447746370513897016,11537119302688913470,14826674177559618967,6333164933826111738,3708394780765028723,5606816761429906884,10028602660422264354,4973123355510946173,4265547695874982173,12729484879289907,10098576038535560695,30297377018160196,12797416235231609962,4919459210088090138,2130390383112624554,975433721397071475,11016307246447818010,5587939878067184718,11452130796390113499,3528007329713162767,11464510383234757657,4272641754049686530,11439464264632701643,12210221192551296499,16936348010599327610,6872517805573244465,119893653602689635,9703113419785539804,4040947523493018849,14747717528083084374,12968044833826302962,5339630934041692024,11801563962755421477,14841353849563397546,18163035324571732895,13373334775511845195,17434094458115470729,13962704159387926501,4976846222878355354,12883090529092343847,14120886914531924739,3955655260290580273,520842898241695917,18425498017355717765,12272093776660444637,6607040712308143120,12071293316155969778,13978733930173452781,13197453951451283624,569449255605758480,17986804853116353035,9070016728276702213,13078302339493461061,14017130412730470733,3050054967600633814,11458115913640199946,7809614219015836346,10066372693285346657,2225638944320551362,8667296337595227761,1885983487757263382,17765882410490151970,2711308953120044031,1637835896232195814,7259770877775113557,17364721963706289324,12379512967328001750,16422780511482963997,18436335496742682509,4602292556950861617,18079129666180644039,18183994394126419170,8894588411145228707,15390157064644652890,18287529785364740412,11215512010650302233,2997542797373357432,14962907856918295593,1876049920823542183,1409336851783717964,3239223361843300153,16921966016034834880,16859297175436906604,4352853082759341313,10433599187756881940,16903941884967306920,3140486344028117007,12531461884082010942,7070171538886583311,18331472092312312444,4052060357920371284,7035203653624257748,2919596611100685035,12919888645028737406,1487852268521523598,637635367557363566,6632334422502244750,10914541222665076753,17830282748150741766,6978842724445309365,68085614051050914,18155441084969961243,16668315493009716876,4317129289916274434,17644711358973214395,10556234538736369820,16402790302825722460,2929311539387241861,11099051729811164328,11412047948057571002,246930899179277945,3709813680588972121,4497303612047349240,14204027911340053240,4546933757295799879,15996927003497456519,9593738756427974708,8886506094115754380,13117616250762212704,4702035930319164783,10279754474118936203,18164802319919804847,15505769610377654368,6405305737412554606,18110424211047326298,12071546090732104565,14640993143433619416,1636859707288435023,14848940952160991526,15954795228881887906,17769643033326248646,5765161459661479753,11068081080837250794,14339848618646678662,13071322511250016881],{"siblings":[{"elements":[6894627866733225779,15050196933249813667,15187538885490910819,198743780043420618]},{"elements":[4131146479663422563,16266650158890278170,185935901245234122,13232038857375969291]}]}],[[18432050318626194488,6279199768310055389,12477586709820988805,6963267326712163633,7931691312638897369,6955389407306975191,1369927726596127368,9586669938092609165,12542563388031869305,5262580349737848311,5378463592827493623,5125897717601171140,6143774593242390300,8512670226653085522,18184678855783218445,1544698669039414303,13196827591601151457,9991682877123738472,3963959739537867578,5834900721500583818],{"siblings":[{"elements":[14182427613663244341,1504930990456597708,3356088422045400766,299121782291522969]},{"elements":[3839809752483568888,13844097777204518618,16194560621030167915,13728927054816900349]}]}],[[16661732666228119788,2006827198154596475,8608336523170763334,10686374573981563546,7345540683293585855,17344232717886252876,15900433007198543682,0,12926728352657071655,2826984118856085323,3811372000309711464,17835461411458661458,12525640684406884869,12472910873009241403,4217641503253701203,0],{"siblings":[{"elements":[5622675297169371752,16626098969109584554,9239963289258858459,1762883528795358399]},{"elements":[11242139787822809452,14140424910739751738,9481786467904501560,534872828036960457]}]}]]},"steps":[]},{"initial_trees_proof":{"evals_proofs":[[[10941971085978489724,7222224546851531826,12557767172364168977,3892838391214240515,15351912204405559916,9527570336837530138,17876557154109427567,1246307958281214369,4003328231135468665,6182242846065829798,4374990392724983338,9322821379349977495,12905675182917246369,12382841594731550914,8154557435786515889,12197868254769243692,6699043450796740378,14631758026829139922,15033439997445840681,8761112247922528184,5866643946121440912,2079111831809901297,7153105294260182160,17347998749673269492,10946389674251792789,11326609433635247427,687082893719363309,18243633296803237795,12375065637235278232,4688491841131783073,7925805642293300340,10393124834350767741,10776474764986899608,4555028214514722463,11266211579777681389,13894745427675344149,11980725414298740766,16150253956414715631,7247197284432400403,9570494346932849381,7247715513939622727,1703715442275987289,5241022464240352900,12560560564613884136,6485291511081152824,13890337564022345948,3015481300340805978,15926106214505030022,2132923519938763500,17433957785498753101,9046926907758099346,16927309199558369710,11401264145131306583,3270349480814371152,9853735826230783929,4292203219316414547,17913757518438557740,12242873934106799527,10093821790615114007,12296738845373276229,11571375965581081489,9477013212992840974,14691156125539517334,9679456677901312229,2077124821812667663,9473286807628710781,3291196699695897182,15924700248089001690,6555798430277292193,526187528352117388,6956814260407044594,13551583834674344578,5399339885138129580,8997658853242114760,9007656417115259689,15742992675189173855,14200727487610928238,8098534693976493404,12308146271337653168,12850101888632118164,1854519344194910139,10823112296344047974,15239242971294030837,5140444432936089029],{"siblings":[{"elements":[14941177973413750719,3764610578608574585,9648978245898088610,16071586351439427254]},{"elements":[3233867220909638017,8698185977443146759,3080105169737877659,11915468074270704376]}]}],[[4396239756246541332,448290935397962723,15959097102270256759,1851308883761894433,2280105963805397145,16037452703962546428,15912524713669246558,3715501290104713463,14439674863273456988,6272924584100633371,5472706904408435682,6731958171265210717,13352441196165794207,2449677539852018558,10356147769049735733,7903973470289798403,6120943666477099225,1244224002134977789,12558023009530087856,17518411567335214686,17280538043143352557,11709920851319176704,14722861813178914047,634347466099144002,8998989141366210418,14599043338596620605,15444215564020501925,16970819568724375989,2425337714068461204,6547381533267080932,2257219005698035404,3972126336638544814,12062358330958767978,18422224512535374057,9084509122570881679,16048378529071098119,14780977074737007605,5895963687017075108,8095643475233046608,1229801643585032914,15366610766162760111,17983167469306244403,7372823621586699338,11721495833633472864,4043316756080455335,2524592547920894274,11192109437486353003,4001169373094050019,8262225624647393286,3143977242118423051,11138566003424355006,3412570917160746614,17724960430491535388,16481888741641219414,8401663387605742048,8224493580894270412,17695296574686863199,11360392278750842356,18392382783486650776,14864177322904936361,6965291973436682501,6339936922399978905,16683149590550991691,8509428355960278616,17921367833421587756,1024409760209912767,15360994983486046155,7697244876232762603,6671229033495822963,11252346696914480091,11295667193282549750,1382915710904990136,2430339861643324814,7363416978978517957,7653633951050304918,5703422470050345403,10496974173025055726,14828228650429180489,3286968674822492605,5095990077823183919,14562076246050466056,9213584437219443890,14115903846892370143,16581566309741467416,6207237194243947366,16530281980590680281,13191181796401769536,12737398946921289397,468462407996996289,14365783951002190308,1642322212574024962,6446007757976165836,7442842789737713679,16583679376706314726,611983584117064366,7168722007133249524,11785147918762399678,18160259793356492848,11764444941960611944,5077863895704419145,9298803562052412766,1685049268834054870,10763831422623375467,11093915177190573708,17124584532574889230,17483445840498321112,11363739015850708505,6244226890995293575,16091953567452535673,1032789556590823903,17331900102742883253,16391559648332470476,2546052822956364512,4979633316176133253,11978355601525413917,8511326200996104722,12059544334463511806,4356331650978723306,15190790890461973547,15217705992705035053,12844142883769395098,10157071002337113859,5726246860301624136,1571203743890663294,9331728099706093141,10205135449225961915,7422089561498936699,8871858206613872651,13779855278545266161,5067958132150809418,6935031479873523792,10295572246358297401,10516807592770657318,7379661613879777601,8933424643251810154],{"siblings":[{"elements":[8049265131854247913,8734060257415026121,17629563801920270915,1589969210299564346]},{"elements":[8879865077532245829,12554010720010522656,16207589826549907371,4214025924981067742]}]}],[[9240297209836246873,953865725269405206,2522678642953002674,8469693808547949535,16472335759655539973,1481819867234065740,7086744737656585571,14329420907352482396,3200295372769175693,4885855053839302480,4540938594948563737,14240082295567972882,15829303579363333140,4193280075604553412,416644326349803674,781020013785003710,7904955799507449711,11408851430947532893,14448159911946149041,6140067115780888166],{"siblings":[{"elements":[1699558651911193660,5151722975407686531,14678224412523556918,5975064044796648590]},{"elements":[15600976832075961413,13465240844980401288,571160238083473476,8924696413261430375]}]}],[[12886650138825881104,381986426138673683,2058494993453711799,701308693766288957,16301805586126657712,14233307032347735328,6527089259167232803,18446744069414584321,9357246773274580366,11674660437947292352,1204461679493438783,5370598438080102694,3030959057526666097,13510031344204788174,8428045941748870138,18446744069414584321],{"siblings":[{"elements":[2370210180617243271,3273879601016344325,7993327925218414001,7186874076254939605]},{"elements":[17335275103238363008,14165004483842143019,5226593720542480904,7862908725370960652]}]}]]},"steps":[]}],"final_poly":{"coeffs":[[17252691619569356057,6288706494683767357],[17478266533937056604,1194928873479950087],[13291062545207276206,17489615011185425928],[2972666027160453443,14576331296557421580],[1370259473931438606,15963099772390362666],[165027243434004746,5088197964798338443],[17822312564308699960,8656865917742333086],[0,0]]},"pow_witness":2305843008676824329}},"public_inputs":[0,1,3736710860384812976]} \ No newline at end of file diff --git a/plonky2_verifier/deserialize.go b/plonky2_verifier/deserialize.go index d01e4b0..a2e2b28 100644 --- a/plonky2_verifier/deserialize.go +++ b/plonky2_verifier/deserialize.go @@ -144,9 +144,6 @@ type CommonCircuitDataRaw struct { NumPublicInputs uint64 `json:"num_public_inputs"` KIs []uint64 `json:"k_is"` NumPartialProducts uint64 `json:"num_partial_products"` - CircuitDigest struct { - Elements []uint64 `json:"elements"` - } `json:"circuit_digest"` } type ProofChallengesRaw struct { @@ -166,6 +163,9 @@ type VerifierOnlyCircuitDataRaw struct { ConstantsSigmasCap []struct { Elements []uint64 `json:"elements"` } `json:"constants_sigmas_cap"` + CircuitDigest struct { + Elements []uint64 `json:"elements"` + } `json:"circuit_digest"` } func DeserializeMerkleCap(merkleCapRaw []struct{ Elements []uint64 }) MerkleCap { @@ -408,7 +408,6 @@ func DeserializeCommonCircuitData(path string) CommonCircuitData { commonCircuitData.NumPublicInputs = raw.NumPublicInputs commonCircuitData.KIs = utils.Uint64ArrayToFArray(raw.KIs) commonCircuitData.NumPartialProducts = raw.NumPartialProducts - copy(commonCircuitData.CircuitDigest[:], utils.Uint64ArrayToFArray(raw.CircuitDigest.Elements)) return commonCircuitData } @@ -428,7 +427,9 @@ func DeserializeVerifierOnlyCircuitData(path string) VerifierOnlyCircuitData { panic(err) } - return VerifierOnlyCircuitData{ - ConstantSigmasCap: DeserializeMerkleCap([]struct{ Elements []uint64 }(raw.ConstantsSigmasCap)), - } + var verifierOnlyCircuitData VerifierOnlyCircuitData + verifierOnlyCircuitData.ConstantSigmasCap = DeserializeMerkleCap([]struct{ Elements []uint64 }(raw.ConstantsSigmasCap)) + copy(verifierOnlyCircuitData.CircuitDigest[:], utils.Uint64ArrayToFArray(raw.CircuitDigest.Elements)) + + return verifierOnlyCircuitData } diff --git a/plonky2_verifier/plonk_test.go b/plonky2_verifier/plonk_test.go index 7364b31..ad530d0 100644 --- a/plonky2_verifier/plonk_test.go +++ b/plonky2_verifier/plonk_test.go @@ -10,23 +10,26 @@ import ( ) type TestPlonkCircuit struct { - proofWithPIsFilename string `gnark:"-"` - commonCircuitDataFilename string `gnark:"-"` - proofChallengesFilename string `gnark:"-"` + proofWithPIsFilename string `gnark:"-"` + commonCircuitDataFilename string `gnark:"-"` + verifierOnlyCircuitDataFilename string `gnark:"-"` } func (circuit *TestPlonkCircuit) Define(api frontend.API) error { proofWithPis := DeserializeProofWithPublicInputs(circuit.proofWithPIsFilename) commonCircuitData := DeserializeCommonCircuitData(circuit.commonCircuitDataFilename) - proofChallenges := DeserializeProofChallenges(circuit.proofChallengesFilename) + verifierOnlyCircuitData := DeserializeVerifierOnlyCircuitData(circuit.verifierOnlyCircuitDataFilename) fieldAPI := NewFieldAPI(api) qeAPI := NewQuadraticExtensionAPI(fieldAPI, commonCircuitData.DegreeBits) - + hashAPI := NewHashAPI(fieldAPI) + poseidonChip := poseidon.NewPoseidonChip(api, fieldAPI, qeAPI) + friChip := NewFriChip(api, fieldAPI, qeAPI, hashAPI, poseidonChip, &commonCircuitData.FriParams) plonkChip := NewPlonkChip(api, qeAPI, commonCircuitData) - poseidonChip := poseidon.NewPoseidonChip(api, fieldAPI, qeAPI) - publicInputsHash := poseidonChip.HashNoPad(proofWithPis.PublicInputs) + verifierChip := NewVerifierChip(api, fieldAPI, qeAPI, poseidonChip, plonkChip, friChip) + publicInputsHash := verifierChip.GetPublicInputsHash(proofWithPis.PublicInputs) + proofChallenges := verifierChip.GetChallenges(proofWithPis, publicInputsHash, commonCircuitData, verifierOnlyCircuitData) plonkChip.Verify(proofChallenges, proofWithPis.Proof.Openings, publicInputsHash) return nil @@ -37,9 +40,9 @@ func TestPlonkFibonacci(t *testing.T) { testCase := func() { circuit := TestPlonkCircuit{ - proofWithPIsFilename: "./data/fibonacci/proof_with_public_inputs.json", - commonCircuitDataFilename: "./data/fibonacci/common_circuit_data.json", - proofChallengesFilename: "./data/fibonacci/proof_challenges.json", + proofWithPIsFilename: "./data/fibonacci/proof_with_public_inputs.json", + commonCircuitDataFilename: "./data/fibonacci/common_circuit_data.json", + verifierOnlyCircuitDataFilename: "./data/fibonacci/verifier_only_circuit_data.json", } witness := TestPlonkCircuit{} err := test.IsSolved(&circuit, &witness, TEST_CURVE.ScalarField()) @@ -54,9 +57,9 @@ func TestPlonkDummy(t *testing.T) { testCase := func() { circuit := TestPlonkCircuit{ - proofWithPIsFilename: "./data/dummy_2^14_gates/proof_with_public_inputs.json", - commonCircuitDataFilename: "./data/dummy_2^14_gates/common_circuit_data.json", - proofChallengesFilename: "./data/dummy_2^14_gates/proof_challenges.json", + proofWithPIsFilename: "./data/dummy_2^14_gates/proof_with_public_inputs.json", + commonCircuitDataFilename: "./data/dummy_2^14_gates/common_circuit_data.json", + verifierOnlyCircuitDataFilename: "./data/dummy_2^14_gates/verifier_only_circuit_data.json", } witness := TestPlonkCircuit{} err := test.IsSolved(&circuit, &witness, TEST_CURVE.ScalarField()) diff --git a/plonky2_verifier/structs.go b/plonky2_verifier/structs.go index 226d21a..bd76fb1 100644 --- a/plonky2_verifier/structs.go +++ b/plonky2_verifier/structs.go @@ -65,6 +65,7 @@ type ProofWithPublicInputs struct { type VerifierOnlyCircuitData struct { ConstantSigmasCap MerkleCap + CircuitDigest Hash } type FriConfig struct { @@ -110,7 +111,6 @@ type CommonCircuitData struct { NumPublicInputs uint64 KIs []F NumPartialProducts uint64 - CircuitDigest Hash } type ProofChallenges struct { diff --git a/plonky2_verifier/verifier.go b/plonky2_verifier/verifier.go index 0fbde39..74437b6 100644 --- a/plonky2_verifier/verifier.go +++ b/plonky2_verifier/verifier.go @@ -31,12 +31,12 @@ func (c *VerifierChip) GetPublicInputsHash(publicInputs []F) Hash { return c.poseidonChip.HashNoPad(publicInputs) } -func (c *VerifierChip) GetChallenges(proofWithPis ProofWithPublicInputs, publicInputsHash Hash, commonData CommonCircuitData) ProofChallenges { +func (c *VerifierChip) GetChallenges(proofWithPis ProofWithPublicInputs, publicInputsHash Hash, commonData CommonCircuitData, verifierData VerifierOnlyCircuitData) ProofChallenges { config := commonData.Config numChallenges := config.NumChallenges challenger := NewChallengerChip(c.api, c.fieldAPI, c.poseidonChip) - var circuitDigest = commonData.CircuitDigest + var circuitDigest = verifierData.CircuitDigest challenger.ObserveHash(circuitDigest) challenger.ObserveHash(publicInputsHash) @@ -71,7 +71,7 @@ func (c *VerifierChip) Verify(proofWithPis ProofWithPublicInputs, verifierData V // TODO: Verify shape of the proof? publicInputsHash := c.GetPublicInputsHash(proofWithPis.PublicInputs) - proofChallenges := c.GetChallenges(proofWithPis, publicInputsHash, commonData) + proofChallenges := c.GetChallenges(proofWithPis, publicInputsHash, commonData, verifierData) c.plonkChip.Verify(proofChallenges, proofWithPis.Proof.Openings, publicInputsHash) diff --git a/plonky2_verifier/verifier_test.go b/plonky2_verifier/verifier_test.go index e870dc7..a540b86 100644 --- a/plonky2_verifier/verifier_test.go +++ b/plonky2_verifier/verifier_test.go @@ -41,7 +41,7 @@ func (c *TestVerifierChallengesCircuit) GetChallengesSanityCheck( commonData CommonCircuitData, ) { publicInputsHash := c.verifierChip.GetPublicInputsHash(proofWithPis.PublicInputs) - proofChallenges := c.verifierChip.GetChallenges(proofWithPis, publicInputsHash, commonData) + proofChallenges := c.verifierChip.GetChallenges(proofWithPis, publicInputsHash, commonData, verifierData) c.hashAPI.AssertIsEqualHash(publicInputsHash, c.expectedPublicInputsHash)