From 9448c9f56c33196c8aacc1d86c3cd23d3d7b424b Mon Sep 17 00:00:00 2001 From: Kirill Date: Tue, 28 Nov 2023 11:06:45 +0300 Subject: [PATCH] Revert "Implement casm class hash calculation (#1154)" (#1474) This reverts commit 9bac881568392922457c07a80f1d5ad8526eb2f7. --- adapters/core2p2p/class.go | 1 + adapters/core2sn/core2sn.go | 123 ------------------ adapters/sn2core/sn2core.go | 48 ++----- adapters/sn2core/sn2core_test.go | 11 +- clients/feeder/feeder.go | 6 +- clients/feeder/feeder_test.go | 9 +- ...1d8672bf4f0895622c32c11e57460b3b7dffc.json | 1 - ...1d8672bf4f0895622c32c11e57460b3b7dffc.json | 1 - core/class.go | 49 +------ core/class_test.go | 15 +-- core/state_test.go | 2 +- l1/contract/starknet.go | 1 + p2p/starknet/starknet_test.go | 3 +- starknet/class.go | 19 --- utils/slices.go | 19 --- vm/class.go | 100 ++++++++++++-- vm/vm_test.go | 7 +- 17 files changed, 117 insertions(+), 298 deletions(-) delete mode 100644 adapters/core2sn/core2sn.go delete mode 100644 clients/feeder/testdata/integration/class/0x6d8ede036bb4720e6f348643221d8672bf4f0895622c32c11e57460b3b7dffc.json delete mode 100644 clients/feeder/testdata/integration/compiled_class/0x6d8ede036bb4720e6f348643221d8672bf4f0895622c32c11e57460b3b7dffc.json diff --git a/adapters/core2p2p/class.go b/adapters/core2p2p/class.go index 1cc53b2e9c..215ed99772 100644 --- a/adapters/core2p2p/class.go +++ b/adapters/core2p2p/class.go @@ -22,6 +22,7 @@ func AdaptClass(class core.Class, compiledHash *felt.Felt) *spec.Class { case *core.Cairo1Class: return &spec.Class{ CompiledHash: AdaptHash(compiledHash), + Definition: v.Compiled, } default: panic(fmt.Errorf("unsupported cairo class %T (version=%d)", v, class.Version())) diff --git a/adapters/core2sn/core2sn.go b/adapters/core2sn/core2sn.go deleted file mode 100644 index e76264687c..0000000000 --- a/adapters/core2sn/core2sn.go +++ /dev/null @@ -1,123 +0,0 @@ -package core2sn - -import ( - "github.com/NethermindEth/juno/core" - "github.com/NethermindEth/juno/core/felt" - "github.com/NethermindEth/juno/starknet" - "github.com/NethermindEth/juno/utils" -) - -func AdaptCompiledClass(coreCompiledClass *core.CompiledClass) starknet.CompiledClass { - feederCompiledClass := new(starknet.CompiledClass) - feederCompiledClass.Bytecode = coreCompiledClass.Bytecode - feederCompiledClass.PythonicHints = coreCompiledClass.PythonicHints - feederCompiledClass.CompilerVersion = coreCompiledClass.CompilerVersion - feederCompiledClass.Hints = coreCompiledClass.Hints - feederCompiledClass.Prime = "0x" + coreCompiledClass.Prime.Text(felt.Base16) - - feederCompiledClass.EntryPoints.External = make([]starknet.CompiledEntryPoint, len(coreCompiledClass.External)) - for i, external := range coreCompiledClass.External { - feederCompiledClass.EntryPoints.External[i] = starknet.CompiledEntryPoint{ - Selector: external.Selector, - Builtins: external.Builtins, - Offset: external.Offset, - } - } - - feederCompiledClass.EntryPoints.L1Handler = make([]starknet.CompiledEntryPoint, len(coreCompiledClass.L1Handler)) - for i, external := range coreCompiledClass.L1Handler { - feederCompiledClass.EntryPoints.L1Handler[i] = starknet.CompiledEntryPoint{ - Selector: external.Selector, - Builtins: external.Builtins, - Offset: external.Offset, - } - } - - feederCompiledClass.EntryPoints.Constructor = make([]starknet.CompiledEntryPoint, len(coreCompiledClass.Constructor)) - for i, external := range coreCompiledClass.Constructor { - feederCompiledClass.EntryPoints.Constructor[i] = starknet.CompiledEntryPoint{ - Selector: external.Selector, - Builtins: external.Builtins, - Offset: external.Offset, - } - } - - return *feederCompiledClass -} - -func AdaptSierraClass(class *core.Cairo1Class) *starknet.SierraDefinition { - constructors := make([]starknet.SierraEntryPoint, 0, len(class.EntryPoints.Constructor)) - for _, entryPoint := range class.EntryPoints.Constructor { - constructors = append(constructors, starknet.SierraEntryPoint{ - Selector: entryPoint.Selector, - Index: entryPoint.Index, - }) - } - - external := make([]starknet.SierraEntryPoint, 0, len(class.EntryPoints.External)) - for _, entryPoint := range class.EntryPoints.External { - external = append(external, starknet.SierraEntryPoint{ - Selector: entryPoint.Selector, - Index: entryPoint.Index, - }) - } - - handlers := make([]starknet.SierraEntryPoint, 0, len(class.EntryPoints.L1Handler)) - for _, entryPoint := range class.EntryPoints.L1Handler { - handlers = append(handlers, starknet.SierraEntryPoint{ - Selector: entryPoint.Selector, - Index: entryPoint.Index, - }) - } - - return &starknet.SierraDefinition{ - Version: class.SemanticVersion, - Program: class.Program, - EntryPoints: starknet.SierraEntryPoints{ - Constructor: constructors, - External: external, - L1Handler: handlers, - }, - } -} - -func AdaptCairo0Class(class *core.Cairo0Class) (*starknet.Cairo0Definition, error) { - decompressedProgram, err := utils.Gzip64Decode(class.Program) - if err != nil { - return nil, err - } - - constructors := make([]starknet.EntryPoint, 0, len(class.Constructors)) - for _, entryPoint := range class.Constructors { - constructors = append(constructors, starknet.EntryPoint{ - Selector: entryPoint.Selector, - Offset: entryPoint.Offset, - }) - } - - external := make([]starknet.EntryPoint, 0, len(class.Externals)) - for _, entryPoint := range class.Externals { - external = append(external, starknet.EntryPoint{ - Selector: entryPoint.Selector, - Offset: entryPoint.Offset, - }) - } - - handlers := make([]starknet.EntryPoint, 0, len(class.L1Handlers)) - for _, entryPoint := range class.L1Handlers { - handlers = append(handlers, starknet.EntryPoint{ - Selector: entryPoint.Selector, - Offset: entryPoint.Offset, - }) - } - - return &starknet.Cairo0Definition{ - Program: decompressedProgram, - Abi: class.Abi, - EntryPoints: starknet.EntryPoints{ - Constructor: constructors, - External: external, - L1Handler: handlers, - }, - }, nil -} diff --git a/adapters/sn2core/sn2core.go b/adapters/sn2core/sn2core.go index e2409d5a7a..1f7ff71314 100644 --- a/adapters/sn2core/sn2core.go +++ b/adapters/sn2core/sn2core.go @@ -1,9 +1,9 @@ package sn2core import ( + "encoding/json" "errors" "fmt" - "math/big" "github.com/NethermindEth/juno/core" "github.com/NethermindEth/juno/core/crypto" @@ -244,7 +244,7 @@ func AdaptDeployAccountTransaction(t *starknet.Transaction) *core.DeployAccountT } } -func AdaptCairo1Class(response *starknet.SierraDefinition, compiledClass *starknet.CompiledClass) (*core.Cairo1Class, error) { +func AdaptCairo1Class(response *starknet.SierraDefinition, compiledClass json.RawMessage) (core.Class, error) { var err error class := new(core.Cairo1Class) @@ -272,52 +272,28 @@ func AdaptCairo1Class(response *starknet.SierraDefinition, compiledClass *starkn } if compiledClass != nil { - adaptedCompiledClass, err := AdaptCompiledClass(compiledClass) - if err != nil { + if err = json.Unmarshal(compiledClass, &class.Compiled); err != nil { return nil, err } - class.Compiled = *adaptedCompiledClass } - return class, nil } -func AdaptCompiledClass(compiledClass *starknet.CompiledClass) (*core.CompiledClass, error) { - compiled := new(core.CompiledClass) - compiled.Bytecode = compiledClass.Bytecode - compiled.PythonicHints = compiledClass.PythonicHints - compiled.CompilerVersion = compiledClass.CompilerVersion - compiled.Hints = compiledClass.Hints - - var ok bool - compiled.Prime, ok = new(big.Int).SetString(compiledClass.Prime, 0) - if !ok { - return nil, fmt.Errorf("couldn't convert prime value to big.Int: %d", compiled.Prime) - } - - entryPoints := compiledClass.EntryPoints - compiled.External = utils.Map(entryPoints.External, adaptCompiledEntryPoint) - compiled.L1Handler = utils.Map(entryPoints.L1Handler, adaptCompiledEntryPoint) - compiled.Constructor = utils.Map(entryPoints.Constructor, adaptCompiledEntryPoint) - - return compiled, nil -} - func AdaptCairo0Class(response *starknet.Cairo0Definition) (core.Class, error) { class := new(core.Cairo0Class) class.Abi = response.Abi - class.Externals = make([]core.EntryPoint, 0, len(response.EntryPoints.External)) + class.Externals = []core.EntryPoint{} for _, v := range response.EntryPoints.External { class.Externals = append(class.Externals, core.EntryPoint{Selector: v.Selector, Offset: v.Offset}) } - class.L1Handlers = make([]core.EntryPoint, 0, len(response.EntryPoints.L1Handler)) + class.L1Handlers = []core.EntryPoint{} for _, v := range response.EntryPoints.L1Handler { class.L1Handlers = append(class.L1Handlers, core.EntryPoint{Selector: v.Selector, Offset: v.Offset}) } - class.Constructors = make([]core.EntryPoint, 0, len(response.EntryPoints.Constructor)) + class.Constructors = []core.EntryPoint{} for _, v := range response.EntryPoints.Constructor { class.Constructors = append(class.Constructors, core.EntryPoint{Selector: v.Selector, Offset: v.Offset}) } @@ -359,7 +335,7 @@ func AdaptStateUpdate(response *starknet.StateUpdate) (*core.StateUpdate, error) } } - stateDiff.Nonces = make(map[felt.Felt]*felt.Felt, len(response.StateDiff.Nonces)) + stateDiff.Nonces = make(map[felt.Felt]*felt.Felt) for addrStr, nonce := range response.StateDiff.Nonces { addr, err := new(felt.Felt).SetString(addrStr) if err != nil { @@ -368,7 +344,7 @@ func AdaptStateUpdate(response *starknet.StateUpdate) (*core.StateUpdate, error) stateDiff.Nonces[*addr] = nonce } - stateDiff.StorageDiffs = make(map[felt.Felt][]core.StorageDiff, len(response.StateDiff.StorageDiffs)) + stateDiff.StorageDiffs = make(map[felt.Felt][]core.StorageDiff) for addrStr, diffs := range response.StateDiff.StorageDiffs { addr, err := new(felt.Felt).SetString(addrStr) if err != nil { @@ -398,11 +374,3 @@ func safeFeltToUint64(f *felt.Felt) uint64 { } return 0 } - -func adaptCompiledEntryPoint(entryPoint starknet.CompiledEntryPoint) core.CompiledEntryPoint { - return core.CompiledEntryPoint{ - Offset: entryPoint.Offset, - Selector: entryPoint.Selector, - Builtins: entryPoint.Builtins, - } -} diff --git a/adapters/sn2core/sn2core_test.go b/adapters/sn2core/sn2core_test.go index e93d673523..ebe62fb50a 100644 --- a/adapters/sn2core/sn2core_test.go +++ b/adapters/sn2core/sn2core_test.go @@ -481,17 +481,16 @@ func TestClassV1(t *testing.T) { compiled, err := client.CompiledClassDefinition(context.Background(), classHash) require.NoError(t, err) - v1Class, err := sn2core.AdaptCairo1Class(feederClass.V1, compiled) + class, err := sn2core.AdaptCairo1Class(feederClass.V1, compiled) require.NoError(t, err) + v1Class, ok := class.(*core.Cairo1Class) + require.True(t, ok) + assert.Equal(t, feederClass.V1.Abi, v1Class.Abi) assert.Equal(t, feederClass.V1.Program, v1Class.Program) assert.Equal(t, feederClass.V1.Version, v1Class.SemanticVersion) - assert.Equal(t, compiled.Prime, "0x"+v1Class.Compiled.Prime.Text(felt.Base16)) - assert.Equal(t, compiled.Bytecode, v1Class.Compiled.Bytecode) - assert.Equal(t, compiled.Hints, v1Class.Compiled.Hints) - assert.Equal(t, compiled.CompilerVersion, v1Class.Compiled.CompilerVersion) - assert.Equal(t, len(compiled.EntryPoints.External), len(v1Class.Compiled.External)) + assert.Equal(t, compiled, v1Class.Compiled) assert.Equal(t, len(feederClass.V1.EntryPoints.External), len(v1Class.EntryPoints.External)) for i, v := range feederClass.V1.EntryPoints.External { diff --git a/clients/feeder/feeder.go b/clients/feeder/feeder.go index fdec718672..58033c13e9 100644 --- a/clients/feeder/feeder.go +++ b/clients/feeder/feeder.go @@ -321,7 +321,7 @@ func (c *Client) ClassDefinition(ctx context.Context, classHash *felt.Felt) (*st return class, nil } -func (c *Client) CompiledClassDefinition(ctx context.Context, classHash *felt.Felt) (*starknet.CompiledClass, error) { +func (c *Client) CompiledClassDefinition(ctx context.Context, classHash *felt.Felt) (json.RawMessage, error) { queryURL := c.buildQueryString("get_compiled_class_by_class_hash", map[string]string{ "classHash": classHash.String(), }) @@ -332,8 +332,8 @@ func (c *Client) CompiledClassDefinition(ctx context.Context, classHash *felt.Fe } defer body.Close() - class := new(starknet.CompiledClass) - if err = json.NewDecoder(body).Decode(class); err != nil { + var class json.RawMessage + if err = json.NewDecoder(body).Decode(&class); err != nil { return nil, err } return class, nil diff --git a/clients/feeder/feeder_test.go b/clients/feeder/feeder_test.go index e8c9135778..324ac7b41e 100644 --- a/clients/feeder/feeder_test.go +++ b/clients/feeder/feeder_test.go @@ -2,6 +2,7 @@ package feeder_test import ( "context" + "encoding/json" "net/http" "net/http/httptest" "strconv" @@ -537,13 +538,7 @@ func TestCompiledClassDefinition(t *testing.T) { classHash := utils.HexToFelt(t, "0x1cd2edfb485241c4403254d550de0a097fa76743cd30696f714a491a454bad5") class, err := client.CompiledClassDefinition(context.Background(), classHash) require.NoError(t, err) - assert.Equal(t, "1.0.0", class.CompilerVersion) - assert.Equal(t, "0x800000000000011000000000000000000000000000000000000000000000001", class.Prime) - assert.Equal(t, 3900, len(class.Bytecode)) - assert.Equal(t, 10, len(class.EntryPoints.External)) - assert.Equal(t, 1, len(class.EntryPoints.External[9].Builtins)) - assert.Equal(t, "range_check", class.EntryPoints.External[9].Builtins[0]) - assert.Equal(t, "0x3604cea1cdb094a73a31144f14a3e5861613c008e1e879939ebc4827d10cd50", class.EntryPoints.External[9].Selector.String()) + require.True(t, json.Valid(class)) } func TestTransactionStatusRevertError(t *testing.T) { diff --git a/clients/feeder/testdata/integration/class/0x6d8ede036bb4720e6f348643221d8672bf4f0895622c32c11e57460b3b7dffc.json b/clients/feeder/testdata/integration/class/0x6d8ede036bb4720e6f348643221d8672bf4f0895622c32c11e57460b3b7dffc.json deleted file mode 100644 index 9e1bd313d6..0000000000 --- a/clients/feeder/testdata/integration/class/0x6d8ede036bb4720e6f348643221d8672bf4f0895622c32c11e57460b3b7dffc.json +++ /dev/null @@ -1 +0,0 @@ -{"sierra_program":["0x1","0x1","0x0","0x1","0x1","0x0","0x2c1","0x13f","0x3f","0x52616e6765436865636b","0x0","0x4761734275696c74696e","0x66656c74323532","0x4172726179","0x1","0x2","0x536e617073686f74","0x3","0x537472756374","0x1baeba72e79e9db2587cf44fedb2f3700b2075a5e8e39a562584862c4b71f62","0x4","0x753332","0x2ee1e2b1b89f8c495f200e4956278a4d47395fe262f27b52e5865c9524c08c3","0x456e756d","0x3288d594b9a45d15bb2fcb7903f06cdb06b27f0ba88186ec4cfaa98307cb972","0x7","0x4275696c74696e436f737473","0x53797374656d","0x2f528e3c691e195fca674982b69c0dc4284f206c3ea4d680220e99b59315a92","0xb","0x5","0x19b3b4955bdcfa379bfc5a4949111c4efdd79128f8676f4d0895419b22e2ad7","0xd","0x7538","0xf","0xcd9deb349f6fb32e657baec1ad634c533f483d4a7d58d9b614521369f9345a","0x10","0x75313238","0x25e2ca4b84968c2d8b83ef476ca8549410346b00836ce79beaf538155990bb2","0x12","0x13","0x3e7e8f96dca87f227717f10d0bef2c534e695d83e025ee7952c3addec8a0295","0x14","0x436f6e747261637441646472657373","0x3d37ad6eafb32512d2dd95a2917f6bf14858de22c27a1114392429f2e5c15d7","0x16","0x506564657273656e","0x12867ecd09c884a5cf1f6d9eb0193b4695ce3bb3b2d796a8367d0c371f59cb2","0xd3a26a7712a33547a4a74e7594a446ca400cb36a0c2c307b92eff9ce82ff8","0x1a","0x11c6d8087e00642489f92d2821ad6ebd6532ad1a3b6d12833da6d6810391511","0x3b9ddf97bd58cc7301a2107c3eabad82196f38221c880cd3645d07c3aac1422","0x53746f726167654261736541646472657373","0x53746f7261676541646472657373","0x90d0203c41ad646d024845257a6eceb2f8b59b29ce7420dd518053d2edeedc","0x3baae81d8b68311d843a3db861802028fc5b88bca4c37f5b121cabb0dfa12ac","0x21","0x21a93891e40ad302f51d1be8005d6b877be4e616b3ed1e8581575316fff079a","0x22","0xccf52bb0646785c5ad2a653e9ec60b68f9843823a0c386724530f0e305f2c4","0x24","0x3181e0ffe4d7cffdff0b3195e2e18435ec78c3988c2eceb4c6307984e8a17fe","0x25","0x1909a2057b9c1373b889e003e050a09f431d8108e0659d03444ced99a6eea68","0x125048bba125edb4f72a816890f2f63324d796e84a92b9bd1eb3a97f4e938ee","0x29","0x426f78","0x29d7d57c04a880978e7b3689f6218e507f3be17588744b58dc17762447ad0e7","0x2b","0x4e6f6e5a65726f","0x2cf4ead4392e987c9b56754a10f0a8e0f13776791e096fa6503893f05582c51","0x2e","0x1586938debaf5e59bfb4e9f27763dc7b3da65f9737172ffde9ff9b65b55d857","0x2f","0x753634","0x3808c701a5d13e100ab11b6c02f91f752ecae7e420d21b56c90ec0a475cc7e5","0x31","0x32","0x8","0x2e655a7513158873ca2e5e659a9e175d23bf69a2325cdd0397ca3b8d864b967","0x34","0x6","0x19367431bdedfe09ea99eed9ade3de00f195dd97087ed511b8942ebb45dbc5a","0x33","0x35","0x36","0x37","0x26c97610bba318e7be7ed9746815afccc1b89e6a3174fbec5d5534288167ac7","0x38","0x101dc0399934cc08fa0d6f6f2daead4e4a38cabeea1c743e1fc28d2d6e58e99","0x2c7badf5cd070e89531ef781330a9554b04ce4ea21304b67a30ac3d43df84a2","0x12e","0x7265766f6b655f61705f747261636b696e67","0x656e61626c655f61705f747261636b696e67","0x77697468647261775f676173","0x6272616e63685f616c69676e","0x7374727563745f6465636f6e737472756374","0x61727261795f6c656e","0x7533325f636f6e7374","0x73746f72655f74656d70","0x7533325f6571","0x7374727563745f636f6e737472756374","0x656e756d5f696e6974","0x6a756d70","0x626f6f6c5f6e6f745f696d706c","0x656e756d5f6d61746368","0x64697361626c655f61705f747261636b696e67","0x64726f70","0x6765745f6275696c74696e5f636f737473","0x9","0x77697468647261775f6761735f616c6c","0xa","0x66756e6374696f6e5f63616c6c","0xc","0x61727261795f6e6577","0x647570","0x736e617073686f745f74616b65","0xe","0x66656c743235325f636f6e7374","0x4f7574206f6620676173","0x61727261795f617070656e64","0x496e70757420746f6f206c6f6e6720666f7220617267756d656e7473","0x11","0x15","0x17","0x18","0x496e70757420746f6f2073686f727420666f7220617267756d656e7473","0x19","0x1b","0x1c","0x1d","0x1e","0x1f","0x73746f726167655f626173655f616464726573735f636f6e7374","0x361458367e696363fbcc70777d07ebbd2394e89fd0adcaf147faccd1d294d60","0x73746f726167655f616464726573735f66726f6d5f62617365","0x73746f726167655f726561645f73797363616c6c","0x20","0x72656e616d65","0x216b05c387bab9ac31918a3e61672f4618601f3c598a2f3f2710f37053e1ea4","0x4c4fb1ab068f6039d5780c68dd0fa2f8742cceb3426d19667778ca7f3518a9","0x23","0x75385f746f5f66656c74323532","0x1557182e4359a1f0c6301278e8f5b35a776ab58d39892581e357578fb287836","0x26","0x21adb5788e32c84f69a1863d85ef9394b7bf761a0ce1190f826984e5075c371","0x27","0x28","0x2a","0x2c","0x2d","0x61727261795f736e617073686f745f706f705f66726f6e74","0x756e626f78","0x30","0x636f6e74726163745f616464726573735f746f5f66656c74323532","0x66656c743235325f737562","0x66656c743235325f69735f7a65726f","0x636f6e74726163745f616464726573735f636f6e7374","0x45524332303a206d696e7420746f2074686520302061646472657373","0x53746f726167654163636573735538202d206e6f6e207538","0x75385f636f6e7374","0x2679d68052ccd03a53755ca9169677965fbd93e489df62f5f40d4f03c24f7a4","0x53746f7261676541636365737355323536202d206e6f6e2075323536","0x753132385f746f5f66656c74323532","0x25b1ef8ee6544359221f3cf316f768360e83448109193bdcef77f52a79d95c4","0xad292db4ff05a993c318438c1b6c8a8303266af2da151aa28ccece6726f1f1","0x39","0x3a","0x45524332303a207472616e7366657220746f2030","0x45524332303a207472616e736665722066726f6d2030","0x753132385f636f6e7374","0xffffffffffffffffffffffffffffffff","0x753132385f6571","0x626f6f6c5f616e645f696d706c","0x3b","0x3c","0x45524332303a20617070726f76652066726f6d2030","0x3d","0x753235365f616464204f766572666c6f77","0x3e","0x753235365f737562204f766572666c6f77","0x75385f7472795f66726f6d5f66656c74323532","0x73746f726167655f77726974655f73797363616c6c","0x40","0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9","0x41","0x656d69745f6576656e745f73797363616c6c","0x53746f7261676541636365737355313238202d206e6f6e2075313238","0x75313238735f66726f6d5f66656c74323532","0x706564657273656e","0xbf4c436d6f8521e5c6189511c75075de702ad597ce22c1786275e8e5167ec7","0x42","0x6765745f657865637574696f6e5f696e666f5f73797363616c6c","0x43","0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff","0x44","0x45","0x753132385f6f766572666c6f77696e675f616464","0x753132385f6f766572666c6f77696e675f737562","0xf56","0xffffffffffffffff","0x57","0x47","0x46","0x48","0x49","0x4a","0x4b","0x4c","0x4d","0x4e","0x4f","0xbb","0x73","0x77","0xab","0xa0","0x99","0x11f","0xd7","0xdb","0x10f","0x104","0xfd","0x50","0x51","0x183","0x13b","0x13f","0x173","0x168","0x161","0x203","0x1f4","0x1a3","0x1a7","0x1e2","0x1d4","0x1cc","0x52","0x53","0x54","0x55","0x56","0x58","0x59","0x5a","0x5b","0x5c","0x5d","0x5e","0x5f","0x60","0x61","0x62","0x63","0x64","0x65","0x66","0x67","0x68","0x69","0x6a","0x29c","0x28d","0x27d","0x229","0x22d","0x26a","0x25b","0x253","0x6b","0x6c","0x6d","0x6e","0x6f","0x70","0x71","0x72","0x74","0x75","0x76","0x78","0x79","0x7a","0x7b","0x32f","0x320","0x310","0x2c2","0x2c6","0x2fd","0x2ee","0x2e6","0x3db","0x3cc","0x3bc","0x3ab","0x35a","0x35e","0x397","0x387","0x37f","0x7c","0x7d","0x7e","0x7f","0x80","0x81","0x82","0x83","0x84","0x85","0x46e","0x45f","0x44f","0x401","0x405","0x43c","0x42d","0x425","0x501","0x4f2","0x4e2","0x494","0x498","0x4cf","0x4c0","0x4b8","0x594","0x585","0x575","0x527","0x52b","0x562","0x553","0x54b","0x674","0x665","0x655","0x644","0x632","0x61f","0x5c8","0x5cc","0x609","0x5f7","0x5ef","0x86","0x87","0x88","0x89","0x8a","0x8b","0x8c","0x8d","0x8e","0x8f","0x90","0x91","0x92","0x93","0x94","0x95","0x96","0x97","0x98","0x9a","0x9b","0x9c","0x9d","0x9e","0x9f","0xa1","0xa2","0xa3","0x68e","0x693","0x69e","0x6ba","0x6bf","0x6ca","0x6ee","0x6e7","0x71f","0x718","0x747","0x740","0x770","0x768","0x78a","0x7a9","0x7a2","0x7d1","0x7c9","0x815","0x80a","0x802","0x842","0x83a","0x896","0x88b","0x881","0x879","0x8ea","0x8df","0x8d5","0x8cd","0x8fb","0x900","0x90b","0xa4","0x919","0x91e","0x935","0xa5","0x92f","0xa6","0xa7","0xa8","0xa9","0x9d0","0xaa","0x9c5","0x9bb","0xac","0xad","0xae","0xaf","0x95d","0x962","0xb0","0x9ac","0xb1","0x9a2","0xb2","0x998","0xb3","0xb4","0x990","0xb5","0xb6","0x9e2","0xa04","0x9f8","0xb7","0xb8","0xb9","0xba","0xbc","0xbd","0xbe","0xa13","0xbf","0xc0","0xc1","0xc2","0xa5b","0xc3","0xc4","0xa50","0xc5","0xc6","0xa46","0xc7","0xa39","0xc8","0xc9","0xca","0xcb","0xcc","0xcd","0xce","0xcf","0xd0","0xd1","0xa6a","0xd2","0xd3","0xd4","0xd5","0xd6","0xaa7","0xa9f","0xab6","0xabb","0xad2","0xacc","0xd8","0xd9","0xda","0xdc","0xaec","0xdd","0xde","0xdf","0xe0","0xe1","0xe2","0xe3","0xe4","0xe5","0xafd","0xb02","0xbc6","0xb14","0xb19","0xbb6","0xbab","0xba0","0xb95","0xb8a","0xb7f","0xb74","0xb6c","0xe6","0xe7","0xc41","0xe8","0xe9","0xea","0xbed","0xbf1","0xbf8","0xbfc","0xeb","0xc0d","0xc26","0xc37","0xc2f","0xec","0xed","0xee","0xef","0xc57","0xc5c","0xc96","0xf0","0xc8b","0xf1","0xc83","0xf2","0xf3","0xcb1","0xf4","0xf5","0xcc6","0xf6","0xf7","0xcd6","0xcdb","0xf8","0xf9","0xceb","0xfa","0xfb","0xcf0","0xfc","0xfe","0xcfb","0xff","0xd0e","0xd13","0xd1e","0xd32","0xd37","0xd42","0x100","0xd5b","0xd79","0x101","0x102","0x103","0xda8","0xdad","0xdb8","0xddc","0xdd0","0x105","0x106","0x107","0x108","0x109","0x10a","0x10b","0xdeb","0xdf2","0x10c","0x10d","0x10e","0x110","0x111","0x112","0xe0b","0x113","0x114","0xe10","0x115","0x116","0x117","0xe1b","0x118","0x119","0x11a","0x11b","0xe39","0x11c","0xe68","0xe6d","0xe78","0x11d","0x11e","0xe89","0xe8f","0xe9d","0xea3","0x120","0xeac","0xecd","0xec4","0xec9","0x121","0x122","0x123","0xef4","0x124","0xf02","0x125","0x126","0xf08","0x127","0xf10","0x128","0x129","0xf24","0x12a","0xf1a","0xf22","0x12b","0x12c","0x12d","0xf31","0xf37","0xf3f","0xf53","0xf49","0xf51","0x190","0x211","0x2aa","0x33d","0x3e9","0x47c","0x50f","0x5a2","0x682","0x6a4","0x6aa","0x6ae","0x6d0","0x6f5","0x701","0x726","0x735","0x74d","0x778","0x792","0x7af","0x7db","0x820","0x84c","0x8a0","0x8f4","0x912","0x93d","0x9dc","0x9e6","0xa0d","0xa17","0xa64","0xa6e","0xa7a","0xa84","0xaaf","0xada","0xaf2","0xbd6","0xc4c","0xca6","0xcbb","0xcd0","0xcde","0xd01","0xd24","0xd48","0xd61","0xd81","0xdbe","0xde5","0xdf5","0xdfa","0xe04","0xe21","0xe41","0xe7e","0xe92","0xea6","0xeb0","0xed6","0xee2","0xeee","0xef8","0xf27","0x8285","0x6028020340c0180b0080702809018060200701806014020100200c0200400","0x6050020240f01c060380201c0a00813008120440604406040020240f03802","0x1a0180e00807028020640901818018170080903c160180e008070280901815","0xf080060380201c0a07c0607c06078020240a0081d024060700606c020240f","0x20018270080903c020981101825018240080903c0208c09018220182100809","0xf0440601c060a8020240f024060a4060a0020240f044060380201c0a04406","0x1a0182f0080903c09018070182e0080903c020b4020b0110181a0182b00809","0xa02406080060cc020240f024060c8060c4020240f0c0060380201c0a02406","0x370080903c25018250180e008090280901836018350080903c340180e00807","0x20240f01c060183a024060e4060e0020240f094060380201c0a0440607c06","0x903c3f0180e00807028090181f0183e0080903c07018060f4110183c0183b","0x21180a114060183a09406110061100610c020300a00842024061040610002","0x4b0184a0084902848018060e8070180701807018160181f018250180701847","0x61400613c020240f138060380201c0a134060183a01c06094060940613006","0x90184e018520080903c1f0181f0180e008090280901811018510080903c09","0x215c021580215402150531180607c06038020240a1180608006038020240a","0x60185d0085c008060185b124060185b008070185a01c06018590580601858","0x4601806184021800601c46018071780217c460180616c0201c460180717811","0x90186819c060185b018060185b00866194060185b00864044060186300862","0x70180616c070180618c07018061ac07018061a81501806160690180618469","0x5e060060185d058060185d0240601863024060186c0600901868024060185b","0x61a007018061c06f01c061b80601c6d018071786d0180616c0201c6d01807","0x6018581c806018610700901868068090186805806018631c4070186e1b409","0x73018061841f024061a072024061a01a0180616c1a0180618c1a018061ac1c","0x68058060185b0800901868080060185b0800601863080060186b0880601858","0x61b8250180618c73024061a0250180616c750180616c74018061842202406","0x6018631e006018611d409018681dc06018611d0090186809409018681d807","0x79018061847a024061a079024061a078024061a029024061a077024061a029","0x5e008801f0060185b0087f1f8070187d1f009018681e806018611ec0901868","0x617481024061a081018062080601c8101807178810180616c0201c8101807","0x60185b01c0601882018071a40601c5e1a4060185b008071a40601c5e05406","0x3201806160850180618430024061a07b0180616c8401c061f48301c061f411","0x601c5e1c8060185b008071c80601c5e070060185d0c809018680c0060185b","0x3601806160880180618485024061a08701c061f4022181a018062080601c72","0x601c5e1cc060185b008071cc0601c5e088060185d0d009018680d0060185b","0x6208090180620836024061a01f0180616c1f0180618c20018061600601c73","0x5d2200901868018071d00601c5e1d0060185b008071d00601c5e0088904406","0x717820018061748b018061848b024061a08a024061a08a0180616c8a01806","0x60185823006018610e40901868018071dc0601c5e1dc060185b008071dc06","0x601c7801807178780180616c0201c780180717829018061748c024061a039","0x5e01c060188f0fc0901868238090186823409018680f00901868094060186b","0x62408d018061840601c8d018071788d0180616c0c0180616c0201c8d01807","0x601c5e1040901868018071e40601c5e1e4060185b008071e40601c5e01c06","0x45024061a044024061a091024061a00601c7a018071787a0180616c0201c7a","0x701895120090186812c090186823806018630089400893008070186e00892","0x717832018061740201c300180717881018061849601c061b84c024061a002","0x61018070c00601c5e018072140601c5e25c070186e214060185b0080721406","0x6184410180616091018061844d024061a07b018061ac49018061ac3001806","0x601c5e0d8060185d008070d00601c5e13809018680089901807018980fc06","0x618c0601c34018071780601c88018071789a01c061b8880180616c0201c88","0x9d1400901868270070186e0089b07c06018820d0060186112406018631ec06","0x9f024061a00601c8b018071788b0180616c0201c8b018071789e024061a002","0x5d130060186312c06018631340601858134060189014006018582780601861","0x61b8a001c061b80601c8c018071788c0180616c0201c8c018071783901806","0x60188201806018820080601882008a5008a407c060186b28c07018a228407","0xaa01c061b8a9024061a0a801c061b8a7024061a0a6024061a0670180620875","0x60185b0080727c0601c5e008ae1e80601882008ad2b0070186e2ac0901868","0x61b8af024061a0290180616000024061a09f018062080601c9f018071789f","0x5b008072440601c5e104060185d008070fc0601c5e008b22c409018682c007","0xa601806174022d00601c3f018071780601c9101807178b301c061b89101806","0x729c0601c5e008b82dc09018682d8070186e008b522c06018822980601863","0x71785001806174b9024061a0a7018062080601ca701807178a70180616c02","0x6018582ec09018682e8070186e018072780601c5e278060185b0080727806","0x6174022f4a7018061848a0180616025018062089f01806184bc024061a0a9","0x60186301807018a22a4060185b2a4060185d2ac06018582ac060185b2ac06","0x60080701c02008c00180201802008c001802008022fc022f8a90180620846","0x1600846018c0018090180c0080230006008090081112407304160300730007","0xc0184600865018c0018650181100867018c00180212402194063000611806","0xc00180219c02008c001802024020081a008c001c6719407194020300630006","0x200820018020600206006300061a4061a4021a40630006054060540205406","0x6068061a40206806300061b4061b4021b4063000600867008023000600809","0xc001c1c0181c0081c018c00181c018690081c018c0018180181a00818018c0","0x2008c0018720181f0080230006008720080230006008090081f018c21c806","0x73088073000708016030091cc0208006300060800608802080063000600820","0x63000601c061d0021e006300061cc0609402008c001802024021d02501ca7","0x70a4061dc02088063000608806118020a4771d409300061e47801c7500879","0xc0018021e0021f006300061e8060a402008c001802024021ec061307a018c0","0x6300060c8061ec02008c0018300187a008320c007300061f0061e40220406","0xc0018340181f0083421407300062203601c8100888018c0018810187c00836","0x39018c00188b018850080230006228060c80222c8a01cc0018850183000802","0x2234063000608806118020f00630006230060d80223006300060e4060d002","0xc01841018c00183c018880083f018c001877018740088e018c00187501825","0x630006088061180224406300061ec0622802008c001802024021043f2388d","0x48018c001891018880084b018c0018770187400845018c0018750182500844","0x6300060088b0084c018c0018021e002008c001802024021204b1144403006","0x630006138062280213806300061344c01c390084d018c00184d0187b0084d","0xa6018c001807018740089f018c001874018250089e018c0018250184600850","0xc0018021c802008c0018020240229ca627c9e0300629c06300061400622002","0xab2a407300060000623002000063000601c061d002008c00181f0181f00802","0xb10187b008b1018c0018020f0022bc06300060087800802300062ac0607c02","0xc01846008b9018c0018b70188a008b7018c0018b12bc070e4022c40630006","0x62e4062200230c06300062a4061d0022f0063000605806094022ec0630006","0x90188d008023000600872008023000600809008c230cbc2ec0c018c2018c0","0xc5018c0018c50187b008c5018c00180222c023100630006008780080230006","0xc8018c00184901846008c7018c0018c60188a008c6018c0018c5310070e402","0x632c063000631c0622002328063000601c061d00232406300060440609402","0x7300070180201c07008023000600806008023000600802008cb328c93200c","0x6118060580211806300060240603002008c001802024020444901ccc0580c","0x63000603006118021940630006194060440219c06300060084900865018c0","0x205406300060086700802300060080900802334023000719c6501c650080c","0x60080900802338060081800818018c0018690186900869018c00181501815","0x18018c00181a018690081a018c00186d0186d0086d018c00180219c02008c0","0xcf1c8063000707006070020700630006070061a40207006300060600606802","0x60082000802300061c80607c02008c0018021c802008c0018020240207c06","0x2501cd01cc2201cc001c200580c0247300820018c0018200182200820018c0","0x8e00879018c0018070187400878018c0018730182500802300060080900874","0x7a018c001c290187700822018c00182201846008291dc75024c0018791e007","0x22040630006008780087c018c00187a018290080230006008090087b018d1","0x7c00836018c0018320187b00802300060c0061e8020c83001cc00187c01879","0x3000802300060d00607c020d08501cc0018880d80720402220063000620406","0x60d0020e4063000622c0621402008c00188a018320088b228073000621406","0x75018250088d018c001822018460083c018c00188c018360088c018c001839","0x3f2388d0300610406300060f006220020fc06300061dc061d0022380630006","0x2500844018c0018220184600891018c00187b0188a00802300060080900841","0x44030061200630006244062200212c06300061dc061d00211406300061d406","0x7b0084d018c00180222c021300630006008780080230006008090084812c45","0x4600850018c00184e0188a0084e018c00184d130070e402134063000613406","0x622002298063000601c061d00227c06300061d00609402278063000609406","0x1f008023000600872008023000600809008a72989f2780c018a7018c001850","0x607c022aca901cc0018000188c00800018c00180701874008023000607c06","0x6300062c4061ec022c406300060083c008af018c0018021e002008c0018ab","0x63000603006118022e406300062dc06228022dc06300062c4af01c39008b1","0xc2018c0018b901888008c3018c0018a901874008bc018c00181601825008bb","0x2300060240623402008c0018021c802008c00180202402308c32f0bb03006","0x70e4023140630006314061ec0231406300060088b008c4018c0018021e002","0x6094023200630006124061180231c063000631806228023180630006314c4","0xc93200c018cb018c0018c701888008ca018c00180701874008c9018c001811","0xd20580c01cc001c060080701c02008c00180201802008c0018020080232cca","0x65018c0018460181600846018c0018090180c0080230006008090081112407","0x650080c018c00180c0184600865018c0018650181100867018c00180212402","0x150181500815018c00180219c02008c00180202402008d3008c001c6719407","0x2008c00180202402008d4018020600206006300061a4061a4021a40630006","0x6068020600630006068061a40206806300061b4061b4021b4063000600867","0x207c0635472018c001c1c0181c0081c018c00181c018690081c018c001818","0x20018c00180208002008c0018720181f008023000600872008023000600809","0x9008740940735873088073000708016030091cc0208006300060800608802","0x601c061d0021e806300061cc06094021e406300060880611802008c001802","0xd71f006300071e006104021e0291dc75030c00187b1e8790243f0087b018c0","0x4400832018c0018021e0020c006300061f00624402008c0018020240220406","0x61f00222806300060d00612c02008c001885018450083421407300060c006","0x60c002008c0018880181f008880d8073000622c8a01c480088b018c001832","0x3c018340083c018c00188c0188500802300060e4060c8022303901cc001836","0x61dc06094020fc06300061d406118022380630006234060d8022340630006","0x44244410fc0c01844018c00188e0188800891018c0018290187400841018c0","0x60940212c06300061d4061180211406300062040622802008c00180202402","0x4812c0c0184d018c001845018880084c018c0018290187400848018c001877","0x61ec0214006300060088b0084e018c0018021e002008c001802024021344c","0x61180227c0630006278062280227806300061404e01c3900850018c001850","0x9f01888008a9018c00180701874008a7018c00187401825008a6018c001825","0x607c02008c0018021c802008c001802024022aca929ca6030062ac0630006","0xaf0181f008af00007300062c406230022c4063000601c061d002008c00181f","0xb9018c0018b90187b008b9018c0018020f0022dc0630006008780080230006","0xc3018c00180c01846008bc018c0018bb0188a008bb018c0018b92dc070e402","0x631406300062f006220023100630006000061d00230806300060580609402","0x2008c0018090188d008023000600872008023000600809008c5310c230c0c","0xc601c39008c7018c0018c70187b008c7018c00180222c02318063000600878","0x1101825008ca018c00184901846008c9018c0018c80188a008c8018c0018c7","0xd832cca0300636406300063240622002360063000601c061d00232c0630006","0x73681603007300070180201c07008023000600806008023000600802008d9","0x21940630006118060580211806300060240603002008c0018020240204449","0x719402030063000603006118021940630006194060440219c063000600849","0x605406054020540630006008670080230006008090080236c023000719c65","0x6700802300060080900802370060081800818018c0018690186900869018c0","0x180181a00818018c00181a018690081a018c00186d0186d0086d018c001802","0x90081f018dd1c8063000707006070020700630006070061a4020700630006","0x208006300060082000802300061c80607c02008c0018021c802008c001802","0x2024021d02501cde1cc2201cc001c200580c0247300820018c00182001822","0xc001807018740087a018c0018730182500879018c001822018460080230006","0x637c7c018c001c780184d008780a4771d40c300061ec7a1e409130021ec06","0x6140020c806300060087800830018c00187c0184e00802300060080900881","0x320187c0088a018c0018340189f008023000621406278020d08501cc001830","0x360183000802300062200607c022203601cc00188b228072980222c0630006","0x60f0060d0020f006300062300621402008c001839018320088c0e40730006","0xc001877018250083f018c001875018460088e018c00188d018360088d018c0","0x2110911043f030061100630006238062200224406300060a4061d00210406","0x77018250084b018c0018750184600845018c0018810188a008023000600809","0x4c1204b030061340630006114062200213006300060a4061d0021200630006","0x500187b00850018c00180222c021380630006008780080230006008090084d","0x25018460089f018c00189e0188a0089e018c001850138070e4021400630006","0x627c06220022a4063000601c061d00229c06300061d006094022980630006","0x1f0181f008023000600872008023000600809008ab2a4a72980c018ab018c0","0x62bc0607c022bc0001cc0018b10188c008b1018c001807018740080230006","0x22e406300062e4061ec022e406300060083c008b7018c0018021e002008c0","0x230c063000603006118022f006300062ec06228022ec06300062e4b701c39","0xc018c5018c0018bc01888008c4018c00180001874008c2018c00181601825","0x7800802300060240623402008c0018021c802008c00180202402314c4308c3","0xc7318070e40231c063000631c061ec0231c06300060088b008c6018c001802","0x6044060940232806300061240611802324063000632006228023200630006","0xd9360cb3280c018d9018c0018c901888008d8018c00180701874008cb018c0","0x1101ce01241601cc001c070180701c02008c00180201802008c00180200802","0xa900818018c00180c018a700869018c0018160184600802300060080900846","0xc00180202402068063846d018c001c15018ab0081519c65024c0018181a407","0x207c06300060084900872018c00181c018160081c018c0018670180c00802","0x6700802300060080900802388023000707c7201c6500872018c00187201811","0x60081800873018c0018220186900822018c0018200181500820018c001802","0x6900874018c0018250186d00825018c00180219c02008c00180202402008e3","0x6070021d406300061d4061a4021d406300061cc06068021cc06300061d006","0x60082000802300061dc0607c02008c001802024020a40639077018c001c75","0x7b01ce51e87901cc001c78124650247300878018c0018780182200878018c0","0x7a0182500836018c001879018460080230006008720080230006008090087c","0x61b4062bc0222c0630006024061d002228063000600806000022200630006","0xc001c340184d00834214320c081058c00183922c8a22036058b100839018c0","0x630006008780088d018c00188c0184e0080230006008090083c018e623006","0x45018c0018410189f00802300060fc06278021043f01cc00188d018500088e","0x2300061100607c021109101cc00184b114072980212c0630006238061f002","0x213406300061300621402008c001848018320084c1200730006244060c002","0x460089e018c0018320180000850018c00184e018360084e018c00184d01834","0x62200229c0630006214061d00229806300060c0060940227c063000620406","0x6300060f00622802008c001802024022a4a72989f27816018a9018c001850","0xb1018c00183001825008af018c0018810184600800018c00183201800008ab","0x9008b92dcb12bc00058062e406300062ac06220022dc0630006214061d002","0x22ec06300060087800802300061b4062dc02008c0018021c802008c001802","0x8a008c3018c0018bc2ec070e4022f006300062f0061ec022f006300060088b","0x60940231406300061ec061180231006300060080600002308063000630c06","0xc531016018c8018c0018c201888008c7018c00180901874008c6018c00187c","0x62dc02008c0018290181f008023000600872008023000600809008c831cc6","0xca0181f008ca324073000632c062300232c0630006024061d002008c00186d","0xd9018c0018d90187b008d9018c0018020f0023600630006008780080230006","0xe9018c00180201800008e8018c0018e70188a008e7018c0018d9360070e402","0x23040630006324061d0023ac063000612406094023a806300061940611802","0xc0018021c802008c001802024023b0c13acea3a416018ec018c0018e801888","0x22e4023b4063000600878008023000619c0623402008c00181a0181f00802","0xef0188a008ef018c0018ee3b4070e4023b806300063b8061ec023b80630006","0x612406094023c8063000619406118023c4063000600806000023c00630006","0xf43ccf23c416018f5018c0018f001888008f4018c00180901874008f3018c0","0xc0018021e002008c00180c0188d008023000600872008023000600809008f5","0x6300063dcf601c39008f7018c0018f70187b008f7018c00180222c023d806","0xfb018c00181101846008fa018c00180201800008f9018c0018f80188a008f8","0x63f806300063e406220023f40630006024061d0023f006300061180609402","0xc001c070180701c02008c00180201802008c001802008023f8fd3f0fb3e816","0xc018a700869018c0018160184600802300060080900846044073fc4905807","0x64006d018c001c15018ab0081519c65024c0018181a4072a4020600630006","0xa900822018c001867018a700820018c001865018460080230006008090081a","0xc001802024020940640473018c001c1f018ab0081f1c81c024c00182208007","0x21dc06300060084900875018c0018740181600874018c0018720180c00802","0x670080230006008090080240802300071dc7501c6500875018c00187501811","0x60081800879018c0018780186900878018c0018290181500829018c001802","0x690087b018c00187a0186d0087a018c00180219c02008c0018020240200903","0x6070021f006300061f0061a4021f006300061e406068021e406300061ec06","0x60082000802300062040607c02008c001802024020c00641081018c001c7c","0x3601d050d08501cc001c321241c0247300832018c0018320182200832018c0","0x34018250088d018c0018850184600802300060087200802300060080900888","0x61b4062bc021040630006024061d0020fc063000600806000022380630006","0x8b2281630006110911043f2388d124bb00844018c001873018af00891018c0","0x61140613802008c0018020240212c0641845018c001c3c0184d0083c23039","0xc00184d0189e0084e1340730006120061400213006300060087800848018c0","0x7300062989f01ca6008a6018c00184c0187c0089f018c00184e0189f00802","0x23000629c060c8022a4a701cc0018500183000802300062780607c0227850","0x22bc0630006000060d80200006300062ac060d0022ac06300062a40621402","0x74008b9018c00188b01825008b7018c00188a01846008b1018c00183901800","0x600809008bc2ecb92dcb1058062f006300062bc06220022ec063000623006","0x630006228061180230806300060e4060000230c063000612c0622802008c0","0xc7018c0018c301888008c6018c00188c01874008c5018c00188b01825008c4","0xc001873018b7008023000600872008023000600809008c7318c5310c205806","0x61ec0232406300060088b008c8018c0018021e002008c00186d018b700802","0x60000232c063000632806228023280630006324c801c39008c9018c0018c9","0x901874008e7018c00188801825008d9018c00183601846008d8018c001802","0x23000600809008e93a0e7364d8058063a4063000632c06220023a00630006","0x61b4062dc02008c001873018b700802300060c00607c02008c0018021c802","0xc0018eb0181f008eb3a8073000630406230023040630006024061d002008c0","0x39008ed018c0018ed0187b008ed018c0018020f0023b006300060087800802","0x46008f0018c00180201800008ef018c0018ee0188a008ee018c0018ed3b007","0x6220023cc06300063a8061d0023c8063000612406094023c4063000607006","0x2008c0018021c802008c001802024023d0f33c8f13c016018f4018c0018ef","0xc0018021e002008c00186d018b700802300061c80623402008c0018250181f","0x6300063d8f501c39008f6018c0018f60187b008f6018c0018022e4023d406","0xfa018c00181c01846008f9018c00180201800008f8018c0018f70188a008f7","0x63f406300063e006220023f00630006024061d0023ec06300061240609402","0x2300060680607c02008c0018021c802008c001802024023f4fc3ecfa3e416","0x1070187b00907018c0018022e4023f8063000600878008023000619c0623402","0x20180000909018c0019080188a00908018c0019073f8070e40241c0630006","0x6024061d0024300630006124060940242c063000619406118024280630006","0x2008c001802024024390d4310b428160190e018c001909018880090d018c0","0x6300060088b008cd018c0018021e002008c00180c0188d008023000600872","0x6300064400622802440063000643ccd01c390090f018c00190f0187b0090f","0x113018c0018460182500912018c00181101846008ce018c0018020180000911","0x20091545113448ce05806454063000644406220024500630006024061d002","0x21181101d161241601cc001c070180701c02008c00180201802008c001802","0x6901ca900818018c00180c018a700869018c00181601846008023000600809","0x2008c001802024020680645c6d018c001c15018ab0081519c65024c001818","0x7207009300060882001cbc00822018c001867018a700820018c00186501846","0x6300061c80603002008c001802024020940646073018c001c1f018c30081f","0x21d406300061d406044021dc06300060084900875018c0018740181600874","0x6054020a40630006008670080230006008090080246402300071dc7501c65","0x2300060080900802468060081800879018c0018780186900878018c001829","0x1a00879018c00187b018690087b018c00187a0186d0087a018c00180219c02","0x300191b20406300071f006070021f006300061f0061a4021f006300061e406","0x60c806088020c806300060082000802300062040607c02008c00180202402","0x2008c001802024022203601d1c0d08501cc001c321241c0247300832018c0","0x2018000088e018c001834018250088d018c00188501846008023000600872","0x61cc0627c0224406300061b4062bc021040630006024061d0020fc0630006","0x70f006310020f08c0e48b2281630006110911043f2388d124c200844018c0","0x6300060087800802300061140631402008c0018020240212c0647445018c0","0x4e018c00184d018850080230006130060c8021344c01cc0018480183000848","0x227c06300060e406000022780630006140060d8021400630006138060d002","0x88008a9018c00188c01874008a7018c00188b01825008a6018c00188a01846","0xc00184b0188a008023000600809008ab2a4a72989f058062ac063000627806","0x63000622c06094022c4063000622806118022bc06300060e4060000200006","0x22ecb92dcb12bc16018bb018c00180001888008b9018c00188c01874008b7","0x2300061b4062dc02008c0018730189e008023000600872008023000600809","0x70e40230c063000630c061ec0230c06300060088b008bc018c0018021e002","0x6118023140630006008060000231006300063080622802308063000630cbc","0xc401888008c8018c00180901874008c7018c00188801825008c6018c001836","0x1f008023000600872008023000600809008c9320c7318c5058063240630006","0xc0018090187400802300061b4062dc02008c0018730189e00802300060c006","0xd9018c0018021e002008c0018cb0181f008cb3280730006360062300236006","0x23a0063000639cd901c39008e7018c0018e70187b008e7018c0018020f002","0x25008eb018c00181c01846008ea018c00180201800008e9018c0018e80188a","0xea058063b406300063a406220023b00630006328061d002304063000612406","0x8d00802300060940607c02008c0018021c802008c001802024023b4ec304eb","0x630006008b9008ee018c0018021e002008c00186d018b700802300061c806","0x6300063c006228023c006300063bcee01c39008ef018c0018ef0187b008ef","0xf4018c00184901825008f3018c00181c01846008f2018c00180201800008f1","0x9008f63d4f43ccf2058063d806300063c406220023d40630006024061d002","0x2008c0018670188d00802300060680607c02008c0018021c802008c001802","0xf701c39008f8018c0018f80187b008f8018c0018022e4023dc063000600878","0x6501846008fb018c00180201800008fa018c0018f90188a008f9018c0018f8","0x63e806220023f80630006024061d0023f4063000612406094023f00630006","0x623402008c0018021c802008c0018020240241cfe3f4fc3ec1601907018c0","0x630006424061ec0242406300060088b00908018c0018021e002008c00180c","0x630006008060000242c0630006428062280242806300064250801c3900909","0xcd018c001809018740090e018c001846018250090d018c001811018460090c","0x6008060080230006008020090f3350e4350c0580643c063000642c0622002","0x611802008c001802024021181101d1e1241601cc001c070180701c02008c0","0x20546719409300060606901ca900818018c00180c018a700869018c001816","0x208006300061940611802008c001802024020680647c6d018c001c15018ab","0x63000707c062ac0207c7207009300060882001ca900822018c001867018a7","0x6300061c80629c020a406300060700611802008c001802024020940648073","0x90087a019211e406300071dc0630c021dc751d009300061e02901cbc00878","0xc001802124021f006300061ec06058021ec06300061d40603002008c001802","0xc0018020240200922008c001c811f007194021f006300061f0060440220406","0x221406300060c8061a4020c806300060c006054020c006300060086700802","0x6300060d0061b4020d00630006008670080230006008090080248c0600818","0x88018c0018880186900888018c0018850181a00885018c0018360186900836","0x2008c00188a0181f0080230006008090088b0192422806300072200607002","0x3c23007300070e4491d0091cc020e406300060e406088020e4063000600820","0x212c06300062300611802008c0018021c802008c001802024022388d01d25","0xaf0084d018c001809018740084c018c0018020180000848018c00183c01825","0x113180227806300061e40627c0214006300061cc062bc0213806300061b406","0x64989f018c001c45018c400845110911043f058c00189e1404e1344c1204b","0xa701830008a7018c0018021e002008c00189f018c5008023000600809008a6","0x6000060d00200006300062ac0621402008c0018a901832008ab2a40730006","0xc00183f01846008b7018c00189101800008b1018c0018af01836008af018c0","0x6300062c406220022f00630006110061d0022ec063000610406094022e406","0x60000230806300062980622802008c0018020240230cbc2ecb92dc16018c3","0x4401874008c6018c00184101825008c5018c00183f01846008c4018c001891","0x23000600809008c831cc6314c4058063200630006308062200231c0630006","0x61b4062dc02008c001873018b700802300061e40627802008c0018021c802","0x23280630006328061ec0232806300060088b008c9018c0018021e002008c0","0x236406300060080600002360063000632c062280232c0630006328c901c39","0x88008e9018c00180901874008e8018c00188e01825008e7018c00188d01846","0x23000600872008023000600809008ea3a4e839cd9058063a8063000636006","0x6d018b700802300061cc062dc02008c0018790189e008023000622c0607c02","0x63040607c02304eb01cc0018ec0188c008ec018c001809018740080230006","0x23b806300063b8061ec023b806300060083c008ed018c0018021e002008c0","0x23c4063000600806000023c006300063bc06228023bc06300063b8ed01c39","0x88008f4018c0018eb01874008f3018c00184901825008f2018c00187401846","0x23000600872008023000600809008f53d0f33c8f1058063d406300063c006","0x6d018b700802300061cc062dc02008c0018750188d00802300061e80607c02","0xf7018c0018f70187b008f7018c0018022e4023d80630006008780080230006","0xfa018c00180201800008f9018c0018f80188a008f8018c0018f73d8070e402","0x23f40630006024061d0023f0063000612406094023ec06300061d00611802","0xc0018021c802008c001802024023f8fd3f0fb3e816018fe018c0018f901888","0x21e002008c0018720188d00802300061b4062dc02008c0018250181f00802","0x64210701c3900908018c0019080187b00908018c0018022e40241c0630006","0xc00181c018460090b018c001802018000090a018c0019090188a00909018c0","0x63000642806220024380630006024061d0024340630006124060940243006","0x60680607c02008c0018021c802008c001802024023350e4350c42c16018cd","0x7b00910018c0018022e40243c063000600878008023000619c0623402008c0","0x8ce018c0019110188a00911018c00191043c070e402440063000644006","0x61d0024500630006124060940244c06300061940611802448063000600806","0xc0018020240249d15451134481601927018c0018ce0188800915018c001809","0x60088b00928018c0018021e002008c00180c0188d00802300060087200802","0x64a806228024a806300064a52801c3900929018c0019290187b00929018c0","0xc001846018250092d018c001811018460092c018c001802018000092b018c0","0x1304bd2e4b52c058064c006300064ac06220024bc0630006024061d0024b806","0x1101d311241601cc001c070180701c02008c00180201802008c00180200802","0xa900818018c00180c018a700869018c0018160184600802300060080900846","0xc00180202402068064c86d018c001c15018ab0081519c65024c0018181a407","0x9300060882001cbc00822018c001867018a700820018c0018650184600802","0x61c80603002008c00180202402094064cc73018c001c1f018c30081f1c81c","0x6300061d406044021dc06300060084900875018c0018740181600874018c0","0x20a4063000600867008023000600809008024d002300071dc7501c6500875","0x600809008024d4060081800879018c0018780186900878018c00182901815","0x79018c00187b018690087b018c00187a0186d0087a018c00180219c02008c0","0x13620406300071f006070021f006300061f0061a4021f006300061e40606802","0x6088020c806300060082000802300062040607c02008c001802024020c006","0xc001802024022203601d370d08501cc001c321241c0247300832018c001832","0x88e018c001834018250088d018c0018850184600802300060087200802","0x627c0224406300061b4062bc021040630006024061d0020fc063000600806","0x6310020f08c0e48b2281630006110911043f2388d124c700844018c001873","0x60087800802300061140631402008c0018020240212c064e045018c001c3c","0xc00184d018850080230006130060c8021344c01cc0018480183000848018c0","0x6300060e406000022780630006140060d8021400630006138060d00213806","0xa9018c00188c01874008a7018c00188b01825008a6018c00188a018460089f","0x4b0188a008023000600809008ab2a4a72989f058062ac06300062780622002","0x622c06094022c4063000622806118022bc06300060e406000020000630006","0xb92dcb12bc16018bb018c00180001888008b9018c00188c01874008b7018c0","0x61b4062dc02008c0018730189e008023000600872008023000600809008bb","0x230c063000630c061ec0230c06300060088b008bc018c0018021e002008c0","0x23140630006008060000231006300063080622802308063000630cbc01c39","0x88008c8018c00180901874008c7018c00188801825008c6018c00183601846","0x23000600872008023000600809008c9320c7318c505806324063000631006","0x90187400802300061b4062dc02008c0018730189e00802300060c00607c02","0xc0018021e002008c0018cb0181f008cb328073000636006230023600630006","0x63000639cd901c39008e7018c0018e70187b008e7018c0018020f00236406","0xeb018c00181c01846008ea018c00180201800008e9018c0018e80188a008e8","0x63b406300063a406220023b00630006328061d00230406300061240609402","0x2300060940607c02008c0018021c802008c001802024023b4ec304eb3a816","0x6008b9008ee018c0018021e002008c00186d018b700802300061c80623402","0x63c006228023c006300063bcee01c39008ef018c0018ef0187b008ef018c0","0xc00184901825008f3018c00181c01846008f2018c00180201800008f1018c0","0xf63d4f43ccf2058063d806300063c406220023d40630006024061d0023d006","0xc0018670188d00802300060680607c02008c0018021c802008c00180202402","0x39008f8018c0018f80187b008f8018c0018022e4023dc06300060087800802","0x46008fb018c00180201800008fa018c0018f90188a008f9018c0018f83dc07","0x6220023f80630006024061d0023f4063000612406094023f0063000619406","0x2008c0018021c802008c0018020240241cfe3f4fc3ec1601907018c0018fa","0x6424061ec0242406300060088b00908018c0018021e002008c00180c0188d","0x6008060000242c0630006428062280242806300064250801c3900909018c0","0xc001809018740090e018c001846018250090d018c001811018460090c018c0","0x60080230006008020090f3350e4350c0580643c063000642c062200233406","0x2008c001802024021181101d391241601cc001c070180701c02008c001802","0x6719409300060606901ca900818018c00180c018a700869018c00181601846","0x6300061940611802008c00180202402068064e86d018c001c15018ab00815","0x707c0630c0207c7207009300060882001cbc00822018c001867018a700820","0x61d006058021d006300061c80603002008c00180202402094064ec73018c0","0xc001c771d407194021d406300061d406044021dc06300060084900875018c0","0x21e006300060a406054020a4063000600867008023000600809008024f002","0x63000600867008023000600809008024f4060081800879018c00187801869","0x7c018c0018790181a00879018c00187b018690087b018c00187a0186d0087a","0x23000600809008300193e20406300071f006070021f006300061f0061a402","0x91cc020c806300060c806088020c806300060082000802300062040607c02","0x2008c0018021c802008c001802024022203601d3f0d08501cc001c321241c","0x740083f018c001802018000088e018c001834018250088d018c00188501846","0x493200211006300061cc0627c0224406300061b4062bc02104063000602406","0x4b0194011406300070f006310020f08c0e48b2281630006110911043f2388d","0x6120060c00212006300060087800802300061140631402008c00180202402","0xc00184e018340084e018c00184d018850080230006130060c8021344c01cc0","0x630006228061180227c06300060e406000022780630006140060d80214006","0xab018c00189e01888008a9018c00188c01874008a7018c00188b01825008a6","0x390180000800018c00184b0188a008023000600809008ab2a4a72989f05806","0x6230061d0022dc063000622c06094022c4063000622806118022bc0630006","0x2008c001802024022ecb92dcb12bc16018bb018c00180001888008b9018c0","0x6300060087800802300061b4062dc02008c0018730189e008023000600872","0xc2018c0018c32f0070e40230c063000630c061ec0230c06300060088b008bc","0x231806300060d806118023140630006008060000231006300063080622802","0x16018c9018c0018c401888008c8018c00180901874008c7018c00188801825","0x2008c0018300181f008023000600872008023000600809008c9320c7318c5","0xd80188c008d8018c0018090187400802300061b4062dc02008c0018730189e","0x6300060083c008d9018c0018021e002008c0018cb0181f008cb3280730006","0x6300063a006228023a0063000639cd901c39008e7018c0018e70187b008e7","0xc1018c00184901825008eb018c00181c01846008ea018c00180201800008e9","0x9008ed3b0c13acea058063b406300063a406220023b00630006328061d002","0x2008c0018720188d00802300060940607c02008c0018021c802008c001802","0x63bc061ec023bc0630006008b9008ee018c0018021e002008c00186d018b7","0x600806000023c406300063c006228023c006300063bcee01c39008ef018c0","0xc00180901874008f4018c00184901825008f3018c00181c01846008f2018c0","0x72008023000600809008f63d4f43ccf2058063d806300063c406220023d406","0xf7018c0018021e002008c0018670188d00802300060680607c02008c001802","0x23e406300063e0f701c39008f8018c0018f80187b008f8018c0018022e402","0x25008fc018c00186501846008fb018c00180201800008fa018c0018f90188a","0xfb0580641c06300063e806220023f80630006024061d0023f4063000612406","0x7800802300060300623402008c0018021c802008c0018020240241cfe3f4fc","0x109420070e4024240630006424061ec0242406300060088b00908018c001802","0x604406118024300630006008060000242c063000642806228024280630006","0xc00190b01888008cd018c001809018740090e018c001846018250090d018c0","0x601c070080230006008060080230006008020090f3350e4350c0580643c06","0x21a406300060580611802008c001802024021181101d411241601cc001c07","0x630007054062ac020546719409300060606901ca900818018c00180c018a7","0x63000619c0629c0208006300061940611802008c00180202402068065086d","0x900825019431cc063000707c0630c0207c7207009300060882001cbc00822","0xc001802124021d406300061d006058021d006300061c80603002008c001802","0xc0018020240200944008c001c771d407194021d406300061d406044021dc06","0x21e406300061e0061a4021e006300060a406054020a406300060086700802","0x6300061e8061b4021e8063000600867008023000600809008025140600818","0x7c018c00187c018690087c018c0018790181a00879018c00187b018690087b","0x2008c0018810181f008023000600809008300194620406300071f00607002","0x3421407300070c849070091cc020c806300060c806088020c8063000600820","0x223406300062140611802008c0018021c802008c001802024022203601d47","0xaf00841018c001809018740083f018c001802018000088e018c00183401825","0xc001844244410fc8e234493240211006300061cc0627c0224406300061b406","0xc50080230006008090084b0194811406300070f006310020f08c0e48b22816","0x4c018320084d1300730006120060c002120063000600878008023000611406","0xc0018500183600850018c00184e018340084e018c00184d018850080230006","0x63000622c06094022980630006228061180227c06300060e4060000227806","0x22aca929ca627c16018ab018c00189e01888008a9018c00188c01874008a7","0x8a01846008af018c0018390180000800018c00184b0188a008023000600809","0x600006220022e40630006230061d0022dc063000622c06094022c40630006","0x627802008c0018021c802008c001802024022ecb92dcb12bc16018bb018c0","0xc3018c00180222c022f006300060087800802300061b4062dc02008c001873","0xc4018c0018c20188a008c2018c0018c32f0070e40230c063000630c061ec02","0x231c0630006220060940231806300060d8061180231406300060080600002","0x202402324c831cc631416018c9018c0018c401888008c8018c00180901874","0xb700802300061cc0627802008c0018300181f0080230006008720080230006","0x607c0232cca01cc0018d80188c008d8018c0018090187400802300061b406","0x63000639c061ec0239c06300060083c008d9018c0018021e002008c0018cb","0x63000600806000023a406300063a006228023a0063000639cd901c39008e7","0xec018c0018ca01874008c1018c00184901825008eb018c00181c01846008ea","0x600872008023000600809008ed3b0c13acea058063b406300063a40622002","0x7800802300061b4062dc02008c0018720188d00802300060940607c02008c0","0xef3b8070e4023bc06300063bc061ec023bc0630006008b9008ee018c001802","0x607006118023c8063000600806000023c406300063c006228023c00630006","0xc0018f101888008f5018c00180901874008f4018c00184901825008f3018c0","0x1a0181f008023000600872008023000600809008f63d4f43ccf2058063d806","0x23e00630006008b9008f7018c0018021e002008c0018670188d0080230006","0x23e806300063e406228023e406300063e0f701c39008f8018c0018f80187b","0x74008fd018c00184901825008fc018c00186501846008fb018c00180201800","0x600809009073f8fd3f0fb0580641c06300063e806220023f8063000602406","0x222c0242006300060087800802300060300623402008c0018021c802008c0","0x10a0188a0090a018c001909420070e4024240630006424061ec024240630006","0x61180609402434063000604406118024300630006008060000242c0630006","0xcd4390d430160190f018c00190b01888008cd018c001809018740090e018c0","0x752449058073000701c0601c070080230006008060080230006008020090f","0x671940730006054063280205406300060300629c02008c0018020240211811","0x23000600809008180194a1a4063000719c0632c0205806300060580611802","0x72018c001c1a018cb0081a1b40730006070063280207006300061940629c02","0x74018c00186d018a700825018c001816018460080230006008090081f0194b","0x2024021dc0653075018c001c73018d90087308820024c0018740940736002","0x61ec7a01cbc0087b018c001822018a70087a018c001820018460080230006","0x611802008c00180202402204065347c018c001c79018c3008791e029024c0","0x2214320c009300060d83401ca900836018c001878018a700834018c001829","0x222c06300060c80603002008c001802024022280653888018c001c85018ab","0x7194020e406300060e4060440223006300060084900839018c00188b01816","0x60f006054020f00630006008670080230006008090080253c023000723039","0x670080230006008090080254006008180088e018c00188d018690088d018c0","0x8e0181a0088e018c0018410186900841018c00183f0186d0083f018c001802","0x90084501951110063000724406070022440630006244061a4022440630006","0x63000612c060880212c06300060082000802300061100607c02008c001802","0x21c802008c001802024021384d01d521304801cc001c4b12430024730084b","0xc00180201800008ab018c00184c01825008a9018c001848018460080230006","0x6300061c8061ec022c406300061a4061ec022bc0630006024061d00200006","0xbc018c001888018af008bb018c00187c0189f008b9018c0018750184b008b7","0x729c063100229ca627c9e14016300062f0bb2e4b72c4af000ab2a46539c02","0x63000600878008023000630c0631402008c001802024023080654cc3018c0","0xc7018c0018c6018850080230006314060c802318c501cc0018c401830008c4","0x2328063000627c06000023240630006320060d802320063000631c060d002","0x88008d9018c0018a601874008d8018c00189e01825008cb018c00185001846","0xc0018c20188a008023000600809008e7364d832cca0580639c063000632406","0x63000627806094023a8063000614006118023a4063000627c06000023a006","0x23b0c13acea3a416018ec018c0018e801888008c1018c0018a601874008eb","0x2300061f00627802008c001888018b7008023000600872008023000600809","0x60087800802300061a4061e802008c0018720187a00802300061d40611402","0xc0018ee3b4070e4023b806300063b8061ec023b806300060088b008ed018c0","0x63000613406118023c4063000600806000023c006300063bc06228023bc06","0xf5018c0018f001888008f4018c00180901874008f3018c00184e01825008f2","0xc0018450181f008023000600872008023000600809008f53d0f33c8f105806","0x61e802008c0018750184500802300061f00627802008c001888018b700802","0xc0018f80188c008f8018c0018090187400802300061a4061e802008c001872","0x23e806300060083c008f9018c0018021e002008c0018f70181f008f73d807","0x23f006300063ec06228023ec06300063e8f901c39008fa018c0018fa0187b","0x7400907018c00184901825008fe018c00183001846008fd018c00180201800","0x60080900909421073f8fd0580642406300063f0062200242006300063d806","0x627802008c0018320188d00802300062280607c02008c0018021c802008c0","0x2300061a4061e802008c0018720187a00802300061d40611402008c00187c","0x70e40242c063000642c061ec0242c0630006008b90090a018c0018021e002","0x6118024380630006008060000243406300064300622802430063000642d0a","0x10d0188800910018c001809018740090f018c00184901825008cd018c001830","0x1f008023000600872008023000600809009114410f3350e058064440630006","0xc0018690187a00802300061c8061e802008c00187501845008023000620406","0x61ec024480630006008b9008ce018c0018021e002008c0018780188d00802","0x600002450063000644c062280244c0630006448ce01c3900912018c001912","0x90187400928018c0018490182500927018c0018290184600915018c001802","0x230006008090092a4a52849d15058064a8063000645006220024a40630006","0x61a4061e802008c0018720187a00802300061dc0607c02008c0018021c802","0x7b0092c018c0018022e4024ac06300060087800802300060880623402008c0","0x92e018c00192d0188a0092d018c00192c4ac070e4024b006300064b006","0x61d002550063000612406094024c0063000608006118024bc063000600806","0xc0018020240255955551304bc1601956018c00192e0188800955018c001809","0x6d0188d00802300061a4061e802008c00181f0181f00802300060087200802","0x158018c0019580187b00958018c0018022e40255c0630006008780080230006","0x15b018c001802018000095a018c0019590188a00959018c00195855c070e402","0x25780630006024061d0025740630006124060940257006300060580611802","0xc0018021c802008c0018020240257d5e5755c56c160195f018c00195a01888","0x22e40258006300060087800802300061940623402008c0018180181f00802","0x1620188a00962018c001961580070e4025840630006584061ec025840630006","0x61240609402594063000605806118025900630006008060000258c0630006","0xd1599655901601967018c00196301888008d1018c0018090187400966018c0","0xc0018021e002008c00180c0188d00802300060087200802300060080900967","0x6300065a56801c3900969018c0019690187b00969018c00180222c025a006","0xd0018c001811018460096c018c001802018000096b018c00196a0188a0096a","0x65bc06300065ac06220025b80630006024061d0025b406300061180609402","0x60084900809018c001807018e900807018c0018023a0025bd6e5b4d05b016","0xc01802030eb00809018c001809018ea0080c018c00180c018110080c018c0","0x6300060440630402008c0018020240219c65118095c01112416024c001c09","0x6d018c001815018ec00818018c0018490187400869018c0018160182500815","0x61180609402068063000619c063b402008c00180202402009710180206002","0xc00186d018ee0086d018c00181a018ec00818018c0018650187400869018c0","0x600809008200197207c0630007070061dc0207006300061c8063bc021c806","0x6300061cc063c4021cc0630006088063c002088063000607c060a402008c0","0x77018c001825018f200875018c0018180187400874018c0018690182500825","0xc0018690182500829018c001820018f3008023000600809008771d47402406","0xf40087a1e478024061e806300060a4063c8021e40630006060061d0021e006","0x61f00203006300060086700809018c001807018070e40201c063000600806","0x2018063000600867008490580701849018c00180c018f500816018c001809","0x630006008f60080901c0701809018c001806018f500807018c00180201874","0x20300630006030060440203006300060084900809018c001807018e900807","0x6719446025730444905809300070240c01802030eb00809018c001809018ea","0x61d0021a40630006058060940205406300060440630402008c00180202402","0x23000600809008025d006008180086d018c001815018ec00818018c001849","0x20600630006194061d0021a406300061180609402068063000619c063b402","0x770081c018c001872018ef00872018c00186d018ee0086d018c00181a018ec","0xf000822018c00181f01829008023000600809008200197507c063000707006","0x61d0021d006300061a4060940209406300061cc063c4021cc063000608806","0x2008c001802024021dc751d00901877018c001825018f200875018c001818","0xf200879018c0018180187400878018c0018690182500829018c001820018f3","0xc018c001802124020240630006008f70087a1e478024061e806300060a406","0x2054063000601c061d00219c0630006018060940219406300060080611802","0xc0018181a41519c65058f900818018c001809018f800869018c00180c01811","0x63ec02008c00180202402068065d86d018c001c46018fa00846044490580c","0x720184100872018c00181f018fd0081f018c00181c018fc0081c018c00186d","0x73018fe00873018c0018200189100802300060080900822019770800630007","0x612406094021d4063000605806118021d006300060940641c020940630006","0x780a4771d40c01878018c0018740190800829018c0018110187400877018c0","0x6094021e8063000605806118021e406300060880642402008c00180202402","0x7b1e80c01881018c001879019080087c018c001811018740087b018c001849","0x20c8063000605806118020c006300060680642402008c001802024022047c","0xc01836018c0018300190800834018c0018110187400885018c00184901825","0x6024061e402024063000601c0642c0201c063000600806428020d83421432","0xc0018060187c00846018c0018160187b0080230006030061e8020580c01cc0","0x6300060086700802300060440607c020444901cc001865118072040219406","0x60090c008690540701869018c001867018f500815018c0018490187c00867","0x63000601806094021940630006008061180203006300060084900809018c0","0x18018c001809018f800869018c00180c0181100815018c0018070187400867","0x65e06d018c001c460190e00846044490580c3000606069054671941643402","0x1100081f018c00181c0190f0081c018c00186d018cd0080230006008090081a","0x4e008023000600809008220197908006300071c806134021c8063000607c06","0x6118021d00630006094063380209406300061cc06444021cc063000608006","0x740191200829018c0018110187400877018c0018490182500875018c001816","0x21e406300060880644c02008c001802024021e0291dc75030061e00630006","0x1120087c018c001811018740087b018c001849018250087a018c00181601846","0x6300060680644c02008c001802024022047c1ec7a0300620406300061e406","0x34018c0018110187400885018c0018490182500832018c0018160184600830","0x11400807008073000600806140020d83421432030060d806300060c00644802","0x61f00204406300060240649c02008c00180c019150080c024073000601c06","0x645002008c0018490181f0084905807300061181101d2800846018c001806","0x160187c00818018c001867019270080230006194064540219c6501cc001802","0x64a8020680630006054064a4021a41501cc00186d060074a0021b40630006","0x701cc00180c018ca0080c018c001806018a70081c068070181c018c001869","0xc001c16008074ac02008c00180202402124065e816018c001c09018cb00809","0x6044061180219c0630006118064b002008c00180202402194065ec4604407","0x2060690540901818018c0018670192d00869018c001807018a700815018c0","0x6194061180206806300061b4064b8021b4063000600867008023000600809","0x207c72070090181f018c00181a0192d00872018c001807018a70081c018c0","0x7018a700822018c0018020184600820018c0018490192e008023000600809","0x46018c00180201846008251cc22024060940630006080064b4021cc0630006","0x93000619c65118094bc0219c0630006030062bc02194063000601c0600002","0x6300060180609402070063000605806118020540630006008490081112416","0x22018c001811018f800820018c001815018110081f018c0018090187400872","0x65f073018c001c1a0190e0081a1b4181a40c300060882007c720701643402","0x11000877018c0018740190f00874018c001873018cd00802300060080900825","0x4e008023000600809008780197d0a406300071d406134021d406300061dc06","0x6118021ec06300061e806338021e806300061e406444021e406300060a406","0x6d0187400830018c0018490180000881018c001818018250087c018c001869","0x23000600809008850c8302047c0580621406300061ec06448020c80630006","0x2220063000606006094020d806300061a406118020d006300061e00644c02","0x1601839018c001834019120088b018c00186d018740088a018c00184901800","0xc001869018460088c018c001825019130080230006008090083922c8a22036","0x6300061b4061d00223806300061240600002234063000606006094020f006","0x49018c001816030074c0021043f2388d0f01601841018c00188c019120083f","0x21b4063000601c0600002060063000601806094021a406300060080611802","0xc00181c0686d06069059550081c018c001849019540081a018c00180901874","0x4e0080230006008090081f0197e1c806300070540613402054671944604416","0x6118021cc063000608806338020880630006080064440208006300061c806","0x670187400875018c0018650180000874018c0018460182500825018c001811","0x23000600809008291dc751d025058060a406300061cc06448021dc0630006","0x21e8063000611806094021e4063000604406118021e0063000607c0644c02","0x1601881018c001878019120087c018c001867018740087b018c00186501800","0x1601d5600849018c001806018a700816018c00180201846008811f07b1e879","0x2008c00180202402118065fc11018c001c0c019570080c02407024c001849","0x6719409300060606901d5600818018c001809018a700869018c00180701846","0xc00186d0440756002008c00180202402068066006d018c001c150195700815","0x63000619c0629c0207c063000619406118021c80630006070065640207006","0x60440645402008c001802024020882007c0901822018c0018720195a00820","0x63000619c0629c02094063000619406118021cc06300060680656c02008c0","0x61180656c02008c001802024021d4740940901875018c0018730195a00874","0xc0018770195a00878018c001809018a700829018c0018070184600877018c0","0x15c00867018c0018090187400865018c00180601825008791e029024061e406","0xc001802024021a40660415018c001c460195d0084604449024c00186719407","0x22018c0018490182500820018c0018020184600818018c0018150195e00802","0x21d00630006060062bc020940630006044061d0021cc063000601c0600002","0x771d47409473088200455f00877018c0018160189f00875018c00180c018af","0x2300060080900878019820a4063000707c063100207c720701a1b41630006","0x6584021e806300061e406580021e406300060086700802300060a40631402","0x1c0180000881018c00181a018250087c018c00186d018460087b018c00187a","0x302047c0580621406300061ec06588020c806300061c8061d0020c00630006","0x20d806300061b406118020d006300061e00658c02008c0018020240221432","0x1620088b018c001872018740088a018c00181c0180000888018c00181a01825","0xc0018160189e0080230006008090083922c8a22036058060e406300060d006","0x20f00630006008061180223006300061a40658c02008c00180c018b700802","0x1620083f018c001811018740088e018c001807018000088d018c00184901825","0x90187400867018c00180601825008410fc8e2343c05806104063000623006","0x660c69018c001c650195d0086511811024c00181519c07570020540630006","0x2500822018c001802018460086d018c0018690195e00802300060080900818","0x6590021d00630006118061d002094063000601c06000021cc063000604406","0x6140021dc06300061b4062bc021d406300061d4062bc021d40c01cc00180c","0x60a4771d4740947308811594020a406300060a40627c020a44901cc001849","0x2008c001802024021e40661078018c001c20018c40082007c720701a058c0","0x600002214063000607006094020c806300060680611802008c001878018c5","0x16018af00888018c00180c018af00836018c00181f0187400834018c001872","0x163000622c8a220360d0850c81157c0222c06300061240627c022280630006","0x631402008c001802024022300661439018c001c30018c4008302047c1ec7a","0xc00188d019610088d018c00183c019600083c018c00180219c02008c001839","0x6300061f0060000210406300061ec06094020fc06300061e8061180223806","0x211444244410fc1601845018c00188e0196200844018c0018810187400891","0x7b0182500848018c00187a018460084b018c00188c01963008023000600809","0x612c06588021380630006204061d00213406300061f006000021300630006","0xb700802300061240627802008c001802024021404e1344c1201601850018c0","0x6068061180227806300061e40658c02008c00180c018b7008023000605806","0xc00181f01874008a7018c00187201800008a6018c00181c018250089f018c0","0x9e008023000600809008ab2a4a72989f058062ac063000627806588022a406","0xc001818019630080230006030062dc02008c001816018b7008023000612406","0x63000601c06000022c4063000604406094022bc0630006008061180200006","0x22ecb92dcb12bc16018bb018c00180001962008b9018c00184601874008b7","0x11124093000619c6501d5c00867018c0018090187400865018c00180601825","0x6300060540657802008c001802024021a40661815018c001c460195d00846","0x73018c0018070180000822018c0018490182500820018c0018020184600818","0x21d40630006030062bc021d00630006060062bc020940630006044061d002","0x1f1c81c0686d058c0018771d47409473088200456600877018c0018160189f","0x2008c001829018c500802300060080900878019870a4063000707c0631002","0x6118021ec06300061e806584021e806300061e406580021e4063000600867","0x720187400830018c00181c0180000881018c00181a018250087c018c00186d","0x23000600809008850c8302047c0580621406300061ec06588020c80630006","0x2220063000606806094020d806300061b406118020d006300061e00658c02","0x1601839018c001834019620088b018c001872018740088a018c00181c01800","0x230006030062dc02008c0018160189e0080230006008090083922c8a22036","0x2234063000612406094020f00630006008061180223006300061a40658c02","0x1601841018c00188c019620083f018c001811018740088e018c00180701800","0x6501d5c00867018c0018090187400865018c00180601825008410fc8e2343c","0x2008c001802024021a40662015018c001c460195d0084604449024c001867","0x1a030073000603006590021b41801cc0018180196400818018c0018150195e","0x74018c0018490182500825018c001802018460081c018c00181a1b4074c002","0x20a4063000607006550021dc0630006044061d0021d4063000601c0600002","0x662478018c001c730184d008730882007c72058c0018291dc751d02505955","0x9f00881018c001872018460087a018c0018780184e00802300060080900879","0x7c1ec07300060c83020409344020c806300060580627c020c006300061e806","0x36018c0018850184e008023000600809008340198a21406300071f00613402","0x223806300060800600002234063000607c06094020f006300061ec0611802","0x9f00891018c00180c018af00841018c001818018af0083f018c00182201874","0x22303922c8a2201630006110911043f2388d0f0115980211006300060d806","0x6700802300061140631402008c0018020240212c0662c45018c001c8c018c4","0x88018460084d018c00184c019610084c018c0018480196000848018c001802","0x60e4061d002278063000622c0600002140063000622806094021380630006","0x2008c001802024022989f2785013816018a6018c00184d019620089f018c0","0x8ab018c00188a01825008a9018c00188801846008a7018c00184b01963","0xa9058062c4063000629c06588022bc06300060e4061d002000063000622c06","0x2008c001818018b70080230006030062dc02008c001802024022c4af000ab","0x8bb018c00181f01825008b9018c00187b01846008b7018c00183401963","0xb90580630806300062dc065880230c0630006088061d0022f0063000608006","0x2008c001818018b70080230006030062dc02008c00180202402308c32f0bb","0x60940231406300061c8061180231006300061e40658c02008c0018160189e","0xc401962008c8018c00182201874008c7018c00182001800008c6018c00181f","0x2008c0018160189e008023000600809008c9320c7318c5058063240630006","0x60940232c0630006008061180232806300061a40658c02008c00180c018b7","0xca01962008e7018c00181101874008d9018c00180701800008d8018c001849","0xc0018090187400865018c00180601825008e839cd9360cb058063a00630006","0x21a40663015018c001c460195d0084604449024c001867194075700219c06","0x6590021b41801cc0018180196400818018c0018150195e008023000600809","0x2500825018c001802018460081c018c00181a1b4074c0020680c01cc00180c","0x6550021dc0630006044061d0021d4063000601c06000021d0063000612406","0x730184d008730882007c72058c0018291dc751d0250595500829018c00181c","0x72018460087a018c0018780184e008023000600809008790198d1e00630007","0x302040959c020c806300060580627c020c006300061e80627c022040630006","0x4e008023000600809008340198e21406300071f006134021f07b01cc001832","0x600002234063000607c06094020f006300061ec06118020d8063000621406","0xc018af00841018c001818018af0083f018c001822018740088e018c001820","0x1630006110911043f2388d0f0115980211006300060d80627c022440630006","0x631402008c0018020240212c0663c45018c001c8c018c40088c0e48b22888","0xc00184c019610084c018c0018480196000848018c00180219c02008c001845","0x63000622c0600002140063000622806094021380630006220061180213406","0x22989f2785013816018a6018c00184d019620089f018c001839018740089e","0x8a01825008a9018c00188801846008a7018c00184b01963008023000600809","0x629c06588022bc06300060e4061d002000063000622c06000022ac0630006","0xb70080230006030062dc02008c001802024022c4af000ab2a416018b1018c0","0x1f01825008b9018c00187b01846008b7018c00183401963008023000606006","0x62dc065880230c0630006088061d0022f0063000608006000022ec0630006","0xb70080230006030062dc02008c00180202402308c32f0bb2e416018c2018c0","0x61c8061180231006300061e40658c02008c0018160189e008023000606006","0xc00182201874008c7018c00182001800008c6018c00181f01825008c5018c0","0x9e008023000600809008c9320c7318c5058063240630006310065880232006","0x6008061180232806300061a40658c02008c00180c018b7008023000605806","0xc00181101874008d9018c00180701800008d8018c00184901825008cb018c0","0x6018c0018020180c008e839cd9360cb058063a00630006328065880239c06","0x630006024065a402008c00180202402030066400901c0730007018065a002","0x900802644060081800811018c0018160196b00849018c0018070196a00816","0xc00180c0196a00865018c0018460196c00846018c00180219c02008c001802","0x63000619c0629c0219c063000612406214020440630006194065ac0212406","0x630006054065b402008c001802024021a40664815018c001c11018d000867","0x1a018c00186d0196e0086d018c001818018f400818018c0018180187b00818","0xc001802024021c81c01c061c80630006068065bc02070063000619c0629c02","0xa700820018c00181f019930081f018c00180219c02008c0018690181f00802","0x63000601806030021cc2201c061cc0630006080065bc02088063000619c06","0xc00180c0196900802300060080900816019940300901cc001c070196800807","0x20099501802060021180630006124065ac020440630006024065a80212406","0x6058065a80219c0630006194065b002194063000600867008023000600809","0xc001815018a700815018c0018110188500846018c0018670196b00811018c0","0xc0018690196d00802300060080900818019961a40630007118063400205406","0x630006008061180206806300061b4063d0021b406300061b4061ec021b406","0xc001c72018d90087207007300060801f01d9700820018c00181a0187b0081f","0xc00181c0184600825018c00182201999008023000600809008730199808806","0x9008771d474024061dc063000609406668021d406300060540629c021d006","0x60540629c021e0063000607006118020a406300061cc0666c02008c001802","0x607c02008c001802024021e8791e0090187a018c0018290199a00879018c0","0xc001802018460087c018c00187b0199b0087b018c00180219c02008c001818","0x25008320c081024060c806300061f006668020c006300060540629c0220406","0x9670021b40630006030061ec020600630006024061d0021a4063000601806","0xc00180202402070066741a018c001c15018c40081519c65024c00186d06069","0x21cc063000619c061d00208806300061940609402008c00181a018c500802","0xc001c20018c40082007c72024c0018251cc220259e00825018c0018160187b","0x6300061c80609402008c001874018c5008023000600809008750199f1d006","0xc00187b1e879024cf0087b018c0018490184b0087a018c00181f0187400879","0x7c018c500802300060080900881019a01f006300071e006310021e0291dc09","0xc001802688020c006300060c806684020c84601cc001846019640080230006","0xc001c34019a400834018c0018340187b00834018c0018850c00768c0221406","0x8a018c0018880186d00888018c00180219c02008c001802024020d80669402","0x60d80669c02008c00180202402009a6018020600222c0630006228061a402","0x8b018c00188c018690088c018c0018390181500839018c00180219c02008c0","0x223406300060f006068020f006300060f0061a4020f0063000622c0606802","0x2008c001802024020fc066a08e018c001c8d0181c0088d018c00188d01869","0x61400212c06300060a4061d00211406300061dc0609402008c00188e0181f","0x9110409300061204b114096a40212006300061200627c021201101cc001811","0x2300061300631402008c00180202402134066a84c018c001c44018c400844","0x22ac063000601c06000022a40630006104060940229c06300060080611802","0x22bc06300062bc062bc022bc4601cc0018460196400800018c00189101874","0xb12bc002aca929c496ac022c406300062c40627c022c41101cc00181101850","0x23000600809008b9019ac2dc063000729806310022989f278501381630006","0x61d002310063000614006094022ec0630006009ad00802300062dc0631402","0x110189f008c7018c001846018af008c6018c0018bb018af008c5018c00189f","0x6300073080631002308c32f00930006320c7318c5310166b8023200630006","0x232c06300060086700802300063240631402008c00180202402328066bcc9","0x25008e7018c00184e01846008d9018c0018d801961008d8018c0018cb01960","0x6588023a8063000630c061d0023a4063000627806000023a006300062f006","0x6300063280658c02008c001802024023acea3a4e839c16018eb018c0018d9","0xee018c00189e01800008ed018c0018bc01825008ec018c00184e01846008c1","0x9008f03bcee3b4ec058063c0063000630406588023bc063000630c061d002","0x6300062e40658c02008c001846018b700802300060440627802008c001802","0xf4018c00189e01800008f3018c00185001825008f2018c00184e01846008f1","0x9008f63d4f43ccf2058063d806300063c406588023d4063000627c061d002","0x6300061340658c02008c001846018b700802300060440627802008c001802","0xfa018c00180701800008f9018c00184101825008f8018c00180201846008f7","0x9008fc3ecfa3e4f8058063f006300063dc06588023ec0630006244061d002","0x230006118062dc02008c0018110189e00802300060fc0607c02008c001802","0x70e4023f806300063f8061ec023f80630006009b0008fd018c0018021e002","0x60940242406300060080611802420063000641c0658c0241c06300063f8fd","0x108019620090c018c001829018740090b018c001807018000090a018c001877","0x2008c0018110189e0080230006008090090d4310b42909058064340630006","0x6094023340630006008061180243806300062040658c02008c001846018b7","0x10e0196200911018c0018290187400910018c001807018000090f018c001877","0x2008c0018110189e008023000600809008ce4451043ccd058063380630006","0x20184600912018c0018750196300802300061240611402008c001846018b7","0x607c061d002454063000601c060000245006300061c8060940244c0630006","0x2008c001802024024a1274551444c1601928018c0019120196200927018c0","0x6058061e802008c001849018450080230006118062dc02008c0018110189e","0x63000619406094024a8063000600806118024a406300060700658c02008c0","0x12e018c001929019620092d018c001867018740092c018c001807018000092b","0x2008c0018020240201c066c806018c001c02019b10092e4b52c4ad2a05806","0x601816018c00180c018f20080c018c001809018f100809018c001806018f0","0x601811018c001849018f200849018c001807018f300802300060080900816","0x65025b31181112409300070580901c06030eb00816018c00180c018e900811","0x20680630006118061ec021b406300060080611802008c0018020240205467","0x11018c0018110187400849018c00184901825008181a407300060686d01d97","0x1f018c00181c019b500802300060080900872019b407006300070600636402","0x21cc06300061a406118020880630006080066dc02080063000607c066d802","0xc01875018c001822019b800874018c0018110187400825018c00184901825","0x21dc06300060087800802300061c80607c02008c001802024021d47409473","0x1b900878018c0018291dc070e4020a406300060a4061ec020a40630006008cc","0x61d0021ec063000612406094021e806300061a406118021e406300061e006","0x23000600809008811f07b1e80c01881018c001879019b80087c018c001811","0x221406300060c8066dc020c806300060c0066d8020c00630006054066e802","0x1b800888018c0018670187400836018c0018650182500834018c00180201846","0x900807019bc0180630007008066ec02228880d83403006228063000621406","0x6030064200203006300060240641c020240630006018063f802008c001802","0x61240642002124063000601c0642402008c001802024020580601816018c0","0x61d00219c06300060180609402194063000600806118020440601811018c0","0x66f8021a406300061a406044021a40901cc001809019bd00815018c001807","0xc300060606905467194166fc020600630006060063e0020600c01cc00180c","0x6d019c20080230006008090081a019c11b4063000711806700021181112416","0x6009c50080230006008090081f019c41c806300070700670c020700630006","0x111240c3ac020880630006088063a80208806300060800c01dc600820018c0","0xc00181601846008023000600809008291dc75025c71d0251cc093000708809","0x61cc06094021e47801cc00187b1e807720021ec06300061d0061ec021e806","0x202402204067247c018c001c790195700825018c0018250187400873018c0","0x60c80672c020c806300060c006728020c006300061f07201d580080230006","0xc0018730182500836018c0018780184600834018c001885019cc00885018c0","0x222c8a220360300622c06300060d006734022280630006094061d00222006","0x6300060087800802300061c80645402008c0018810181f008023000600809","0x3c018c00188c0e4070e4022300630006230061ec022300630006009ce00839","0x20fc06300061cc060940223806300061e0061180223406300060f00673c02","0x600809008911043f2380c01891018c00188d019cd00841018c00182501874","0x45018c001844019cb00844018c001829019d000802300061c80645402008c0","0x213006300061d406094021200630006058061180212c06300061140673002","0x6008090084e1344c1200c0184e018c00184b019cd0084d018c00187701874","0x2140063000607c0674002008c001809019d200802300060300674402008c0","0x25008a6018c001816018460089f018c00189e019cc0089e018c001850019cb","0xa6030062ac063000627c06734022a40630006044061d00229c063000612406","0x1cf00802300060240674802008c00180c019d1008023000600809008ab2a4a7","0x61d0022c4063000612406094022bc06300060580611802000063000606806","0xc001c02019d3008b92dcb12bc0c018b9018c001800019cd008b7018c001811","0xc001809018ce00809018c0018060191100802300060080900807019d401806","0xc0018070191300802300060080900816018060580630006030064480203006","0x7019d600807018c001802019d500811018060440630006124064480212406","0x6058061ec02008c00180c0187a008160300730006024061e4020240630006","0x110181f0081112407300061944601c8100865018c0018060187c00846018c0","0x63000619c063d4020540630006124061f00219c0630006008670080230006","0x6024061ec02124063000601806000020240630006009d7008690540701869","0x7764020580c01cc00184604449025d800846018c001807018af00811018c0","0xf800869018c00180c0180000815018c0018650184600867194073000605802","0xc0018070180000846018c00180201846008181a41502406060063000619c06","0x21240204449058093000619c651180934c0219c0630006030065500219406","0x6024061d0021c806300060180609402070063000605806118020540630006","0x1f1c81c0590d00822018c001811018f800820018c001815018110081f018c0","0xc001802024020940676873018c001c1a0190e0081a1b4181a40c3000608820","0x75018c0018770191000877018c0018740190f00874018c001873018cd00802","0x79018c0018290184e00802300060080900878019db0a406300071d40613402","0x21f006300061a406118021ec06300061e806338021e806300061e40644402","0x11200832018c00186d0187400830018c0018490180000881018c00181801825","0xc00187801913008023000600809008850c8302047c0580621406300061ec06","0x6300061240600002220063000606006094020d806300061a406118020d006","0x20e48b228880d81601839018c001834019120088b018c00186d018740088a","0x18018250083c018c001869018460088c018c00182501913008023000600809","0x623006448020fc06300061b4061d002238063000612406000022340630006","0x73000701c065a00201c063000601806030021043f2388d0f01601841018c0","0xc0018090196a00849018c00180c0196900802300060080900816019dc03009","0x219c02008c00180202402009dd01802060021180630006124065ac0204406","0x619c065ac020440630006058065a80219c0630006194065b0021940630006","0xc001c46018d000815018c001815018a700815018c0018110188500846018c0","0xc00186d0187b0086d018c0018690196d00802300060080900818019de1a406","0x630006068061ec0207c0630006008061180206806300061b4063d0021b406","0x2024021cc0677c22018c001c72019570087207007300060801f01dc800820","0xc001815018a700874018c00181c0184600825018c001822019e00080230006","0x73019e2008023000600809008771d474024061dc063000609406784021d406","0x60a406784021e406300060540629c021e0063000607006118020a40630006","0x60086700802300060600607c02008c001802024021e8791e0090187a018c0","0xc001815018a700881018c001802018460087c018c00187b019e20087b018c0","0x7400816018c00180201825008320c081024060c806300061f006784020c006","0x11018c001c0c019e30080c02407024c0018490580735002124063000601806","0x67018c001865019e600865018c001811019e500802300060080900846019e4","0xc001869019e90080230006054067a0020686d06069054163000619c0679c02","0x1eb0081c018c001818019ea0080230006068061e802008c00186d018b700802","0x67b0020800630006024061d00207c063000601c06094021c8063000607006","0x21cc0630006118067b402008c001802024020882007c0901822018c001872","0x901875018c001873019ec00874018c0018090187400825018c00180701825","0xc00180268802044063000611806684021180c01cc00180c01964008751d025","0xc001c67019a400867018c0018670187b00867018c0018650440768c0219406","0x18018c0018690186d00869018c00180219c02008c00180202402054067b802","0x60540669c02008c00180202402009ef01802060021b40630006060061a402","0x6d018c00181c018690081c018c00181a018150081a018c00180219c02008c0","0x207c06300061c806068021c806300061c8061a4021c806300061b40606802","0x2008c00180202402088067c020018c001c1f0181c0081f018c00181f01869","0x1a200873018c001825019a10082505807300060580659002008c0018200181f","0x6690021d406300061d4061ec021d406300061d07301da300874018c001802","0x60a4061b4020a406300060086700802300060080900877019f1008c001c75","0x1a7008023000600809008027c8060081800879018c0018780186900878018c0","0x61ec061a4021ec06300061e806054021e806300060086700802300061dc06","0xc00187c0181a0087c018c00187c018690087c018c0018790181a00879018c0","0x60080900832019f30c0063000720406070022040630006204061a40220406","0x39018c001806018250088b018c0018020184600802300060c00607c02008c0","0x8d030073000603006590020f00630006024061d002230063000601c0600002","0x2228880d83421416300062343c2303922c162c4022340630006234062bc02","0x210406300062380613802008c001802024020fc067d08e018c001c8a0184d","0x21204901cc001849018500084b018c0018410189f00845018c00188501846","0x63000711006134021109101cc00184812c450256700848018c0018480189f","0x630006244061180213806300061300613802008c00180202402134067d44c","0xaf018c0018880187400800018c00183601800008ab018c00183401825008a9","0xb7018c00184e0189f008b1018c0018b1018af008b103007300060300659002","0xb9018c001ca7018c4008a72989f27850058c0018b72c4af000ab2a4496ac02","0x231806300061400611802008c0018b9018c5008023000600809008bb019f6","0x164008c9018c0018a601874008c8018c00189f01800008c7018c00189e01825","0xc0018ca324c831cc6058b1008ca018c0018ca018af008ca058073000605806","0x4e008023000600809008d8019f732c06300073140613402314c4308c32f016","0x6140023a806300063640627c023a406300062f00611802364063000632c06","0xe839c07300063acea3a409344023ac06300063ac0627c023ac4901cc001849","0xed018c0018c10184e008023000600809008ec019f830406300073a00613402","0x23d4063000630806000023d0063000630c06094023cc063000639c0611802","0x23dc06300063dc062bc023dc1601cc00181601964008f6018c0018c401874","0x23c8f13c0ef3b816300063e0f73d8f53d0f3125ab008f8018c0018ed0189f","0x2500802300063e40631402008c001802024023e8067e4f9018c001cf2018c4","0x62bc024200630006030062bc0241c06300063c4061d0023f806300063bc06","0xfb024c00190a4250841cfe059ae0090a018c0018490189f00909018c001816","0xc00190b018c50080230006008090090c019fa42c06300073f406310023f4fc","0x2334063000643806584024380630006434065800243406300060086700802","0x7400911018c0018f00180000910018c0018fb018250090f018c0018ee01846","0x60080900912339114410f058064480630006334065880233806300063f006","0x6300063ec060940245006300063b8061180244c06300064300658c02008c0","0x129018c0019130196200928018c0018fc0187400927018c0018f00180000915","0x6058062dc02008c0018490189e008023000600809009294a1274551405806","0x12b018c0018ee018460092a018c0018fa019630080230006030062dc02008c0","0x24b806300063c4061d0024b406300063c006000024b006300063bc0609402","0x6058062dc02008c001802024024bd2e4b52c4ac160192f018c00192a01962","0x24c006300063b00658c02008c0018490189e0080230006030062dc02008c0","0x7400956018c0018c20180000955018c0018c30182500954018c0018e701846","0x6008090095855d56555540580656006300064c0065880255c063000631006","0x16300802300061240627802008c00180c018b70080230006058062dc02008c0","0x60000256c063000630c060940256806300062f00611802564063000636006","0x15b568160195e018c001959019620095d018c0018c4018740095c018c0018c2","0x9e0080230006030062dc02008c001816018b70080230006008090095e5755c","0x9e0182500960018c001850018460095f018c0018bb01963008023000612406","0x657c065880258c0630006298061d002588063000627c06000025840630006","0xb70080230006058062dc02008c0018020240259163589615801601964018c0","0x6244061180259406300061340658c02008c0018490189e008023000603006","0xc0018880187400967018c00183601800008d1018c0018340182500966018c0","0xb7008023000600809009695a16734566058065a4063000659406588025a006","0xc00183f0196300802300061240627802008c00180c018b7008023000605806","0x6300060d806000025b006300060d006094025ac063000621406118025a806","0x25b96d3416c5ac160196e018c00196a019620096d018c00188801874008d0","0xc00180c018b70080230006058062dc02008c0018320181f008023000600809","0x61ec0264c0630006009fb0096f018c0018021e002008c0018490189e00802","0x611802664063000665c0658c0265c063000664d6f01c3900993018c001993","0x9018740099c018c001807018000099b018c001806018250099a018c001802","0x23000600809008cf6799c66d9a0580633c063000666406588026780630006","0x490189e0080230006030062dc02008c001816018b700802300060880607c02","0x1a2018c0019a20187b009a2018c0018027f0026840630006008780080230006","0x1a7018c00180201846009a4018c0019a301963009a3018c0019a2684070e402","0x26b40630006024061d0026ac063000601c06000026a406300060180609402","0x16400811030073000603006590026b9ad6ada969c16019ae018c0019a401962","0x20680630006008061180219406300061181101d3000846058073000605806","0x1540081f018c0018090187400872018c001807018000081c018c00180601825","0x6134021b4181a41519c16300060801f1c81c0681655402080063000619406","0x64500209406300060880613802008c001802024021cc067f422018c001c6d","0x649c020a47401cc001874019ff00877018c0018027f8021d47401cc001825","0x200a01008c001c780a407800021e07701cc001877019ff00877018c001877","0x61e8061a4021e806300061e406054021e4063000600867008023000600809","0x61b4021f00630006008670080230006008090080280806008180087b018c0","0x7800020c07501cc001875019ff0087b018c0018810186900881018c00187c","0x60c806054020c80630006008670080230006008090080280c02300071dc30","0x6700802300060080900802810060081800834018c0018850186900885018c0","0x7b01e0500834018c0018880186900888018c0018360186d00836018c001802","0x8b018690088b018c00188a0181a0088a018c00188a018690088a018c001834","0x390181f0080230006008090088c01a060e4063000722c060700222c0630006","0x2008c0018490189e0080230006030062dc02008c001816018b70080230006","0x15018250083c018c0018670184600802300061d00645402008c00187501915","0x20701802060020fc0630006060061d00223806300061a406000022340630006","0x4600841018c0018751d00756002008c00188c0181f00802300060080900802","0x959c0212006300061240627c0212c06300061040627c02114063000619c06","0x230006008090084d01a08130063000711006134021109101cc00184812c45","0x22ac063000605406094022a40630006244061180213806300061300613802","0xaf008b1018c00180c018af008af018c0018180187400800018c00186901800","0x62e4b72c4af000ab2a411598022e406300061380627c022dc063000605806","0x2008c001802024022f006824bb018c001ca7018c4008a72989f27850058c0","0x600002234063000627806094020f006300061400611802008c0018bb018c5","0x630c065800230c0630006008670083f018c0018a6018740088e018c00189f","0xc00188d01a0b008c5018c00183c01a0a008c4018c0018c201961008c2018c0","0x630006310065880232006300060fc068340231c0630006238068300231806","0x61180232806300062f00658c02008c00180202402324c831cc631416018c9","0xa601874008d9018c00189f01800008d8018c00189e01825008cb018c001850","0x23000600809008e839cd9360cb058063a00630006328065880239c0630006","0x6118023a406300061340658c02008c00180c018b70080230006058062dc02","0x1801874008c1018c00186901800008eb018c00181501825008ea018c001891","0x23000600809008ed3b0c13acea058063b406300063a406588023b00630006","0x730196300802300061240627802008c00180c018b70080230006058062dc02","0x61a406000023c0063000605406094023bc063000619c06118023b80630006","0xf23c4f03bc16018f3018c0018ee01962008f2018c00181801874008f1018c0","0x65018c00180268802044063000611806684021181601cc00181601964008f3","0x20e008c001c67019a400867018c0018670187b00867018c0018650440768c02","0x6900818018c0018690186d00869018c00180219c02008c0018020240205406","0x2300060540669c02008c0018020240200a0f01802060021b4063000606006","0x1a0086d018c00181c018690081c018c00181a018150081a018c00180219c02","0x61a40207c06300061c806068021c806300061c8061a4021c806300061b406","0x607c02008c001802024020880684020018c001c1f0181c0081f018c00181f","0x74c0020941601cc001816019640087303007300060300659002008c001820","0x6000021ec063000601806094021e8063000600806118021d0063000609473","0x490185000830018c0018740195400881018c001809018740087c018c001807","0x16300060c8302047c1ec7a1261100832018c0018320189f008321240730006","0x631402008c001802024020d00684885018c001c79018c4008791e0291dc75","0x6030062bc020e406300061e0061d00222c06300061dc0609402008c001885","0x8c0e48b05a130088d018c0018490189f0083c018c001816018af0088c018c0","0x230006008090083f01a1423806300072280631002228880d809300062343c","0x6584022440630006104065800210406300060086700802300062380631402","0x29018000084b018c0018360182500845018c0018750184600844018c001891","0x4812c4505806134063000611006588021300630006220061d0021200630006","0x214006300061d4061180213806300060fc0658c02008c001802024021344c","0x162008a6018c001888018740089f018c001829018000089e018c00183601825","0xc0018490189e008023000600809008a72989f278500580629c063000613806","0x46008a9018c001834019630080230006030062dc02008c001816018b700802","0x61d0022bc06300060a4060000200006300061dc06094022ac06300061d406","0xc001802024022dcb12bc002ac16018b7018c0018a901962008b1018c001878","0x627802008c00180c018b70080230006058062dc02008c0018220181f00802","0x6300062ec061ec022ec063000600a15008b9018c0018021e002008c001849","0x630006008061180230c06300062f00658c022f006300062ecb901c39008bb","0xc6018c00180901874008c5018c00180701800008c4018c00180601825008c2","0x9f00816018c00180201846008c7318c5310c20580631c063000630c0658802","0xc0240730006044490580985802044063000601c0627c02124063000601806","0x67018c001846019110080230006008090086501a1711806300070300630c02","0x6060063000605406448021a406300060240611802054063000619c0633802","0x2180086d018c0018021e002008c0018650181f008023000600809008181a407","0x644c0207006300060686d01c390081a018c00181a0187b0081a018c001802","0x2007c0701820018c001872019120081f018c0018090184600872018c00181c","0x2044063000601c0627c0212406300060180627c0205806300060080611802","0x6008090086501a1a11806300070300630c020300901cc0018111241602619","0x6300060240611802054063000619c063380219c06300061180644402008c0","0xc0018650181f008023000600809008181a40701818018c0018150191200869","0x390081a018c00181a0187b0081a018c00180286c021b406300060087800802","0x1120081f018c0018090184600872018c00181c019130081c018c00181a1b407","0x90080c01a1d0240701cc001c0600807870020801f01c0608006300061c806","0x60580666802124063000601c061180205806300060240666402008c001802","0x666c0211806300060086700802300060080900802878060081800811018c0","0x4901a0a00811018c0018650199a00849018c00180c0184600865018c001846","0xe900809018c0018023a0020546701c0605406300060440687c0219c0630006","0xc018ea00816018c0018160181100816018c00180212402030063000602406","0x20240219c651180988411124073000701c0c0580600816880020300630006","0x63000612406094021a4063000605406888020540630006008670080230006","0x90080289006008180081a018c00186901a230086d018c0018110187400818","0x6194061d00206006300061180609402070063000619c0689402008c001802","0xc00181f01a260081f018c00181a018d70081a018c00181c01a230086d018c0","0xc00182001a280080230006008090082201a2708006300071c806310021c806","0x63000606006094021d00630006094065840209406300061cc06580021cc06","0x2024020a4771d40901829018c0018740196200877018c00186d0187400875","0xc00186d0187400879018c0018180182500878018c001822019630080230006","0x63a4020240630006008f60087b1e879024061ec06300061e006588021e806","0x6030063a802058063000605806044020580630006008490080c018c001809","0x6008090086719446026290444901cc001c07030160180205a200080c018c0","0x18018c0018490182500869018c00181501a2200815018c00180219c02008c0","0x20240200a2a018020600206806300061a40688c021b40630006044061d002","0xc0018650187400818018c001846018250081c018c00186701a250080230006","0x63000607c068980207c06300060680635c0206806300060700688c021b406","0x630006080068a002008c00180202402088068ac20018c001c72018c400872","0x75018c0018180182500874018c0018250196100825018c0018730196000873","0x600809008291dc75024060a406300061d006588021dc06300061b4061d002","0x6300061b4061d0021e4063000606006094021e006300060880658c02008c0","0x70190b00809018c0018023dc021ec7a1e4090187b018c001878019620087a","0xc0018490181100849018c001802124020580630006024063a4020300630006","0x98b0460440730007030161240600816880020580630006058063a80212406","0x206006300061a406888021a40630006008670080230006008090081519c65","0x180081c018c00181801a230081a018c001846018740086d018c00181101825","0x63000619406094021c806300060540689402008c0018020240200a2d01802","0x20018c00181c018d70081c018c00187201a230081a018c001867018740086d","0x230006008090087301a2e088063000707c063100207c06300060800689802","0x21d406300061d006584021d0063000609406580020940630006088068a002","0x901878018c0018750196200829018c00181a0187400877018c00186d01825","0x7a018c00186d0182500879018c00187301963008023000600809008780a477","0x60090c0087c1ec7a024061f006300061e406588021ec0630006068061d002","0x630006018061d0021180630006008060940203006300060084900809018c0","0x69018c0018070189f00815018c001809018f800867018c00180c0181100865","0x6898021b406300060440635c020444905809300061a41519c65118168bc02","0x68a002008c00180202402070068c01a018c001c18018c400818018c00186d","0x160182500820018c00181f019610081f018c0018720196000872018c00181a","0x251cc2202406094063000608006588021cc0630006124061d0020880630006","0x61d0021d4063000605806094021d006300060700658c02008c00180202402","0x63000600806118020a4771d40901829018c0018740196200877018c001849","0xc00181519c650252f00815018c00180c018af00867018c0018070180000865","0xc001809018740081c018c0018060182500869018c001802124021181112409","0x6300060580627c020800630006118063e00207c06300061a406044021c806","0x22600825018c00181a018d70081a1b418024c0018220801f1c81c05a2f00822","0x2280080230006008090087501a311d006300071cc06310021cc063000609406","0x6118021e006300060a406584020a406300061dc06580021dc06300061d006","0x6d018740087b018c001811018000087a018c0018180182500879018c001849","0x23000600809008811f07b1e8790580620406300061e006588021f00630006","0x2214063000606006094020c8063000612406118020c006300061d40658c02","0x1601888018c0018300196200836018c00186d0187400834018c00181101800","0xc0018490187b00849018c0018028c802058063000600878008880d83421432","0x73000601c065900211806300060087800811018c001849058070e40212406","0x6d018c0018460187c00818018c001867018af0080230006194062dc0219c65","0x1a01cc0018090196400802300061a40607c021a41501cc00186d060078cc02","0x20880630006054061f0020800630006070062bc02008c00181a018b70081c","0x251cc07300060300614002008c00181f0181f0081f1c807300060882001e33","0xa600829018c0018720187c00877018c0018250189f00802300061cc0627802","0x21e47801cc0018110183000802300061d40607c021d47401cc0018291dc07","0x320087c1ec07300061d0060c0021e806300061e40621402008c00187801832","0x81018a70087a018c00187a018a700881018c00187c0188500802300061ec06","0x600809008360d085026350c83001cc001c811e8060080c8d0022040630006","0x8b018c001830018250088a018c00188801a2200888018c00180219c02008c0","0x20240200a36018020600223006300062280688c020e406300060c8061d002","0xc001834018740088b018c001885018250083c018c00183601a250080230006","0x630006238068980223806300062300635c0223006300060f00688c020e406","0x6300060fc068a002008c00180202402104068dc3f018c001c8d018c40088d","0x4b018c00188b0182500845018c0018440196100844018c0018910196000891","0x6008090084c1204b024061300630006114065880212006300060e4061d002","0x6300060e4061d002138063000622c060940213406300061040658c02008c0","0xc3ac020580630006030063a40227850138090189e018c00184d0196200850","0x2018460080230006008090081519c65026381181112409300070580901c06","0x6094020606901cc00181a1b407720020680630006118061ec021b40630006","0x21c8068e41c018c001c180195700811018c0018110187400849018c001849","0x2001a3b00820018c00181f01a3a0081f018c00181c018d6008023000600809","0x6044061d002094063000612406094021cc06300061a406118020880630006","0x1f008023000600809008751d0251cc0c01875018c00182201a3c00874018c0","0xc0018290187b00829018c0018028f4021dc06300060087800802300061c806","0xc0018690184600879018c00187801a3e00878018c0018291dc070e4020a406","0x6300061e4068f0021f00630006044061d0021ec063000612406094021e806","0x3001a3a00830018c00181501a3f008023000600809008811f07b1e80c01881","0x619406094020d00630006008061180221406300060c8068ec020c80630006","0x8a220360d00c0188a018c00188501a3c00888018c0018670187400836018c0","0x9019e0008023000600809008490580c026410240701cc001c060080790002","0x242018020600219406300060440678402118063000601c06118020440630006","0x67008023000619c069100219c06300061241601e4300802300060080900802","0x69019e100846018c00180c0184600869018c001815019e200815018c001802","0x21b41801c061b406300061940691402060063000611806828021940630006","0x63000603006000020580c01cc00180901802024d500809018c001807019a1","0x60180600002024063000600a46008111240701811018c0018160187b00849","0x46044490264700846018c0018070195400811018c0018090187b00849018c0","0x815018c001865018460086719407300060580201dd9008160300730006","0x70180201e48008181a41502406060063000619c063e0021a4063000603006","0x211806300060300692802008c0018020240204449058099240c02407024c0","0x1800815018c00184601a4b00867018c0018090187400865018c00180701825","0x63000605806094021a406300060440693402008c0018020240200a4c01802","0x6d018c00181501a4e00815018c00186901a4b00867018c0018490187400865","0x230006008090081c01a5006806300070600678c0206006300061b40693c02","0x2080063000607c069480207c06300061c806944021c806300060680679402","0x901825018c00182001a5300873018c0018670187400822018c00186501825","0x75018c0018650182500874018c00181c01a54008023000600809008251cc22","0x201846008291dc75024060a406300061d00694c021dc063000619c061d002","0x671940934c020540630006030065500219c063000601c06000021940630006","0x61d002070063000601806094021a40630006008490084604449024c001815","0x160189f00820018c001846018f80081f018c0018690181100872018c001809","0x6300060680635c020686d06009300060882007c72070168bc020880630006","0xc001802024021d40695474018c001c73018c400873018c00182501a2600825","0x78018c0018290196100829018c0018770196000877018c00187401a2800802","0x21ec063000604406000021e8063000606006094021e406300061240611802","0x2024022047c1ec7a1e41601881018c001878019620087c018c00186d01874","0xc0018180182500832018c0018490184600830018c001875019630080230006","0x6300060c006588020d806300061b4061d0020d00630006044060000221406","0x61ec02124063000600a5600816018c0018021e002220360d0850c81601888","0x70196400846018c0018021e00204406300061241601c3900849018c001849","0x6118061f002060063000619c062bc02008c001865018b7008671940730006","0x60240659002008c0018690181f0086905407300061b41801e330086d018c0","0xc0018150187c00820018c00181c018af0080230006068062dc020701a01cc0","0xc00180c01850008023000607c0607c0207c7201cc001822080078cc0208806","0x6300061c8061f0021dc06300060940627c02008c0018730189e008251cc07","0x730006044060c002008c0018750181f008751d007300060a47701ca600829","0x7b01cc001874018300087a018c0018790188500802300061e0060c8021e478","0x21e806300061e80629c0220406300061f00621402008c00187b018320087c","0x20d8342140995c320c007300072047a018020323400881018c001881018a7","0x60c0060940222806300062200688802220063000600867008023000600809","0x296006008180088c018c00188a01a2300839018c001832018740088b018c0","0x61d00222c063000621406094020f006300060d80689402008c00180202402","0x8e01a260088e018c00188c018d70088c018c00183c01a2300839018c001834","0x3f01a280080230006008090084101a590fc063000723406310022340630006","0x622c060940211406300061100658402110063000624406580022440630006","0x21304812c090184c018c0018450196200848018c001839018740084b018c0","0x39018740084e018c00188b018250084d018c00184101963008023000600809","0x16018c001802018460089e1404e02406278063000613406588021400630006","0x730006044490580996802044063000601c0627c0212406300060180627c02","0x2024020540697067018c001c650181c0086511807300060300696c0203009","0x6300061a406568021a406300061180656402008c0018670181f0080230006","0x61180627802008c0018150181f00802300060080900802974060081800818","0x18018c00181a0195a0081a018c00186d0195b0086d018c00180219c02008c0","0x600806118021c81c01c061c80630006060065680207006300060240611802","0x1112416024d200811018c0018070189f00849018c0018060189f00816018c0","0x1501a5e19c063000719406070021944601cc00180c01a5b0080c0240730006","0x690195a00869018c00184601959008023000619c0607c02008c00180202402","0x9e00802300060540607c02008c0018020240200a5f01802060020600630006","0x6068065680206806300061b40656c021b4063000600867008023000611806","0x260008720700701872018c0018180195a0081c018c0018090184600818018c0","0x16100809018c001806019600080230006008090080701a61018063000700806","0x163008023000600809008160180605806300060300658802030063000602406","0x1601cc00180c01914008110180604406300061240658802124063000601c06","0x630006194063a4021940901cc001809019be00811018c001816019d600849","0x99886905407300070444619c06008168800219c0701cc001807019bd00846","0x72018c00181c02407718020700630006009c50080230006008090081a1b418","0x21c806300061c8063a8020540630006054060940207c06300061240675802","0x670080230006008090087409473026630882001cc001c1f1c8071a41505a20","0x220187400829018c0018200182500877018c00187501a2200875018c001802","0x2008c0018020240200a6401802060021e406300061dc0688c021e00630006","0x22300878018c0018250187400829018c001873018250087a018c00187401a25","0x635c021f006300061e006834021ec06300060a40682c021e406300061e806","0x11500802300060240674402008c001802024022047c1ec0901881018c001879","0x606006094020c006300060680689402008c001807019d2008023000612406","0x20d0850c80901834018c00183001a2300885018c00186d0187400832018c0","0x20580c01cc0018090187900809018c001807019a100807018c00180201a65","0x7204021940630006018061f0021180630006058061ec02008c00180c0187a","0x490187c00867018c00180219c02008c0018110181f00811124073000619446","0xc024073000601c06998021a41501c061a4063000619c063d4020540630006","0x21940630006024062bc021180630006018061ec0204406300060080600002","0x630006124063d0021a4063000605806830021241601cc00186511811025d8","0x619c06830020546701cc00186d06069025d80086d018c00180c018af00818","0x69a006018c001c0201a670081c068070181c018c001815018f40081a018c0","0x2530080c018c00180901a5200809018c00180601a5100802300060080900807","0x25300849018c00180701a540080230006008090081601806058063000603006","0x73000601c06450020300901cc001806019140081101806044063000612406","0x6700802300060080900867194079a84604407300071240c008099a40212416","0x61180206006300061a44601e6b00869018c0018150181500815018c001802","0x23000600809008029b406008180081a018c00181801a6c0086d018c001811","0x207c06300061c86701e6b00872018c00181c0186d0081c018c00180219c02","0x20882001cc00181a01a6e0081a018c00181f01a6c0086d018c00186501846","0x200940756002008c001802024021d47401e6f0947301cc001c160246d02669","0x2901a7100878018c0018730184600829018c0018221dc079c0021dc0630006","0x1270087a018c0018029cc02008c0018020240200a7201802060021e40630006","0x60080900830204079d07c1ec07300071e8201d0099a4021e806300061e806","0x61ec061180221406300060883201e7000832018c00187c1d40756002008c0","0x276008023000600809008029d4060081800836018c00188501a7100834018c0","0x8a0186d0088a018c00180219c0222006300060c07501d58008023000608806","0x3901a7100834018c0018810184600839018c00188b220079c00222c0630006","0x61e006828021e406300060d8069dc021e006300060d006828020d80630006","0x20300901cc001806019140083c230070183c018c00187901a770088c018c0","0x900867194079e44604407300071240c008099e0021241601cc00180701914","0x61a44601e6b00869018c0018150181500815018c00180219c02008c001802","0x29e806008180081a018c00181801a6c0086d018c0018110184600818018c0","0x6701e6b00872018c00181c0186d0081c018c00180219c02008c00180202402","0x1a01a6e0081a018c00181f01a6c0086d018c001865018460081f018c001872","0xc001802024021d47401e7b0947301cc001c160246d02678008220800730006","0xc0018730184600829018c0018221dc079c0021dc06300060802501d5800802","0x29cc02008c0018020240200a7c01802060021e406300060a4069c4021e006","0x79f47c1ec07300071e8201d0099e0021e806300061e80649c021e80630006","0x6300060883201e7000832018c00187c1d40756002008c001802024020c081","0x9008029f8060081800836018c00188501a7100834018c00187b0184600885","0xc00180219c0222006300060c07501d580080230006088069d802008c001802","0xc0018810184600839018c00188b220079c00222c0630006228061b40222806","0x6300060d8069dc021e006300060d006828020d806300060e4069c4020d006","0x60080c30c3c230070183c018c00187901a770088c018c00187801a0a00879","0x7018021b467018020301619c060080c0080901c060086d19c060080c05867","0x60080c0586701802031ca02407018021b467018020301619c060080c3e009","0x27f0300901c060086d19c06008750581619c060087505a7702407018021b467","0x1605867018021d416a000c02407018021b467018021d41605867018021d416","0x60086d19c06008750581619c060087505a810300901c060086d19c0600875","0x21d416a0c0c02407018021b467018021d41605867018021d416a080c02407","0x6008750581619c060087505a840300901c060086d19c06008750581619c06","0xc02407018021b467018021d41605867018021d416a140c02407018021b467","0x1119c0719c06a200600811024070240701e87018021a4670180919c0601e86","0x28b01c060087219c060080c19c0600809a28060086919c060246701807a2402","0x908007a3407018021cc670180203067018020268c018020440901c0906807","0x600816094671d40600816a3c0600874058020241600807a38060081102407","0x7018021cc671d406008160942519c7501802126900300901c060087319c75","0x750180205820094671d40600849a480600877058020241600807a441603009","0x60087819c7501802058200942519c7501802046930580c02407018021e067","0x160300901c060087819c750180205820094671d40600849a50490580c02407","0x7501802126960580c02407018021e0671d406008160802519c750180212695","0x201e98008790580705806a5c160300901c060087819c75018020582009467","0x21e0671d40600816094200680701c671d40600865a64060087a0580202416","0x67018020307b124670180205a9b008690188101a9a11811124160300901c06","0x222067018020307b124670180205a9d008720183001a9c0300901c0600885","0x90947500809a800600811024070241f01e9f008730183401a9e0300901c06","0x2a20300901c060087319c75018020588a19c750180205aa101c060087b1d402","0x671d40600811a90060088c19c060246701807a8c060088b058020241600807","0x200942519c7501802046a5124160300901c060087819c75018020582009425","0x60081608025094671d40600811a98490580c02407018021e0671d40600816","0x2000809aa007018021cc0201c2008002026a7124160300901c060087819c75","0x7819c060240719c06026aa018021e80201c0700807aa407018021cc0201c20","0x21e067018090686701809ab007018021e0670180901c6701809aac0701802","0x6008160802519c7501802126ae01c060087819c060242019c06026ad01c06","0xc02407018021e06701809080250946701816abc160300901c060087819c75","0x222c0201c0700807ac40c024070180224467018020307b124670180205ab0","0x2b401c060087b1d4020248a1d402026b301c06008071d407094071d409ac806","0x60087819c750180205820228671d40600849ad4060089e19c060246701807","0x2008002026b70300901c060087819c06024200942519c0605ab60580c02407","0x16ae8021e00627c06ae407018021dc0201c2008002026b801c060087700807","0x9af00600811024070242501ebb0300901c060089f19c06024201ec4919c06","0x6008a9008070802000809af8022780629c06af4070180201c7501c8a01c75","0x2c001c06008a9008070802000809afc07"],"sierra_program_debug_info":{"type_names":[],"libfunc_names":[],"user_func_names":[]},"contract_class_version":"0.1.0","entry_points_by_type":{"EXTERNAL":[{"selector":"0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e","function_idx":6},{"selector":"0x16d9d5d83f8eecc5d7450519aad7e6e649be1a6c9d6df85bd0b177cc59a926a","function_idx":2},{"selector":"0x1d13ab0a76d7407b1d5faccd4b3d8a9efe42f3d3c21766431d4fafb30f45bd4","function_idx":9},{"selector":"0x1e888a1026b19c8c0b57c72d63ed1737106aa10034105b980ba117bd0c29fe1","function_idx":5},{"selector":"0x219209e083275171774dab1df80982e9df2096516f06319c5c6d71ae0a8480c","function_idx":8},{"selector":"0x2819e8b2b82ee4c56798709651ab9e8537f644c0823e42ba017efce4f2077e4","function_idx":3},{"selector":"0x31341177714d81ad9ccd0c903211bc056a60e8af988d0fd918cc43874549653","function_idx":0},{"selector":"0x351ccc9e7b13b17e701a7d4f5f85b525bac37b7648419fe194e6c15bc73da47","function_idx":1},{"selector":"0x35a73cd311a05d46deda634c5ee045db92f811b4e74bca4437fcb5302b7af33","function_idx":4},{"selector":"0x3704ffe8fba161be0e994951751a5033b1462b918ff785c0a636be718dfdb68","function_idx":7},{"selector":"0x3b076186c19fe96221e4dfacd40c519f612eae02e0555e4e115a2a6cf2f1c1f","function_idx":10}],"L1_HANDLER":[],"CONSTRUCTOR":[{"selector":"0x28ffe4ff0f226a9107253e17a904099aa4f63a02a5621de0576e5aa71bc5194","function_idx":11}]},"abi":"[\n {\n \"type\": \"function\",\n \"name\": \"constructor\",\n \"inputs\": [\n {\n \"name\": \"name_\",\n \"type\": \"core::felt252\"\n },\n {\n \"name\": \"symbol_\",\n \"type\": \"core::felt252\"\n },\n {\n \"name\": \"decimals_\",\n \"type\": \"core::integer::u8\"\n },\n {\n \"name\": \"initial_supply\",\n \"type\": \"core::integer::u256\"\n },\n {\n \"name\": \"recipient\",\n \"type\": \"core::starknet::contract_address::ContractAddress\"\n }\n ],\n \"outputs\": [],\n \"state_mutability\": \"external\"\n },\n {\n \"type\": \"function\",\n \"name\": \"get_name\",\n \"inputs\": [],\n \"outputs\": [\n {\n \"type\": \"core::felt252\"\n }\n ],\n \"state_mutability\": \"view\"\n },\n {\n \"type\": \"function\",\n \"name\": \"get_symbol\",\n \"inputs\": [],\n \"outputs\": [\n {\n \"type\": \"core::felt252\"\n }\n ],\n \"state_mutability\": \"view\"\n },\n {\n \"type\": \"function\",\n \"name\": \"get_decimals\",\n \"inputs\": [],\n \"outputs\": [\n {\n \"type\": \"core::integer::u8\"\n }\n ],\n \"state_mutability\": \"view\"\n },\n {\n \"type\": \"function\",\n \"name\": \"get_total_supply\",\n \"inputs\": [],\n \"outputs\": [\n {\n \"type\": \"core::integer::u256\"\n }\n ],\n \"state_mutability\": \"view\"\n },\n {\n \"type\": \"function\",\n \"name\": \"balance_of\",\n \"inputs\": [\n {\n \"name\": \"account\",\n \"type\": \"core::starknet::contract_address::ContractAddress\"\n }\n ],\n \"outputs\": [\n {\n \"type\": \"core::integer::u256\"\n }\n ],\n \"state_mutability\": \"view\"\n },\n {\n \"type\": \"function\",\n \"name\": \"allowance\",\n \"inputs\": [\n {\n \"name\": \"owner\",\n \"type\": \"core::starknet::contract_address::ContractAddress\"\n },\n {\n \"name\": \"spender\",\n \"type\": \"core::starknet::contract_address::ContractAddress\"\n }\n ],\n \"outputs\": [\n {\n \"type\": \"core::integer::u256\"\n }\n ],\n \"state_mutability\": \"view\"\n },\n {\n \"type\": \"function\",\n \"name\": \"transfer\",\n \"inputs\": [\n {\n \"name\": \"recipient\",\n \"type\": \"core::starknet::contract_address::ContractAddress\"\n },\n {\n \"name\": \"amount\",\n \"type\": \"core::integer::u256\"\n }\n ],\n \"outputs\": [],\n \"state_mutability\": \"external\"\n },\n {\n \"type\": \"function\",\n \"name\": \"transfer_from\",\n \"inputs\": [\n {\n \"name\": \"sender\",\n \"type\": \"core::starknet::contract_address::ContractAddress\"\n },\n {\n \"name\": \"recipient\",\n \"type\": \"core::starknet::contract_address::ContractAddress\"\n },\n {\n \"name\": \"amount\",\n \"type\": \"core::integer::u256\"\n }\n ],\n \"outputs\": [],\n \"state_mutability\": \"external\"\n },\n {\n \"type\": \"function\",\n \"name\": \"approve\",\n \"inputs\": [\n {\n \"name\": \"spender\",\n \"type\": \"core::starknet::contract_address::ContractAddress\"\n },\n {\n \"name\": \"amount\",\n \"type\": \"core::integer::u256\"\n }\n ],\n \"outputs\": [],\n \"state_mutability\": \"external\"\n },\n {\n \"type\": \"function\",\n \"name\": \"increase_allowance\",\n \"inputs\": [\n {\n \"name\": \"spender\",\n \"type\": \"core::starknet::contract_address::ContractAddress\"\n },\n {\n \"name\": \"added_value\",\n \"type\": \"core::integer::u256\"\n }\n ],\n \"outputs\": [],\n \"state_mutability\": \"external\"\n },\n {\n \"type\": \"function\",\n \"name\": \"decrease_allowance\",\n \"inputs\": [\n {\n \"name\": \"spender\",\n \"type\": \"core::starknet::contract_address::ContractAddress\"\n },\n {\n \"name\": \"subtracted_value\",\n \"type\": \"core::integer::u256\"\n }\n ],\n \"outputs\": [],\n \"state_mutability\": \"external\"\n },\n {\n \"type\": \"event\",\n \"name\": \"Transfer\",\n \"inputs\": [\n {\n \"name\": \"from\",\n \"type\": \"core::starknet::contract_address::ContractAddress\"\n },\n {\n \"name\": \"to\",\n \"type\": \"core::starknet::contract_address::ContractAddress\"\n },\n {\n \"name\": \"value\",\n \"type\": \"core::integer::u256\"\n }\n ]\n },\n {\n \"type\": \"event\",\n \"name\": \"Approval\",\n \"inputs\": [\n {\n \"name\": \"owner\",\n \"type\": \"core::starknet::contract_address::ContractAddress\"\n },\n {\n \"name\": \"spender\",\n \"type\": \"core::starknet::contract_address::ContractAddress\"\n },\n {\n \"name\": \"value\",\n \"type\": \"core::integer::u256\"\n }\n ]\n }\n]"} diff --git a/clients/feeder/testdata/integration/compiled_class/0x6d8ede036bb4720e6f348643221d8672bf4f0895622c32c11e57460b3b7dffc.json b/clients/feeder/testdata/integration/compiled_class/0x6d8ede036bb4720e6f348643221d8672bf4f0895622c32c11e57460b3b7dffc.json deleted file mode 100644 index b646cc02a6..0000000000 --- a/clients/feeder/testdata/integration/compiled_class/0x6d8ede036bb4720e6f348643221d8672bf4f0895622c32c11e57460b3b7dffc.json +++ /dev/null @@ -1 +0,0 @@ -{"prime":"0x800000000000011000000000000000000000000000000000000000000000001","compiler_version":"1.1.0","bytecode":["0xa0680017fff8000","0x7","0x482680017ffa8000","0xffffffffffffffffffffffffffffe548","0x400280007ff97fff","0x10780017fff7fff","0x69","0x4825800180007ffa","0x1ab8","0x400280007ff97fff","0x48297ffc80007ffd","0x482680017ff98000","0x1","0x4824800180007ffe","0x0","0x20680017fff7fff","0x4","0x10780017fff7fff","0x6","0x480680017fff8000","0x0","0x10780017fff7fff","0x4","0x480680017fff8000","0x1","0x480680017fff8000","0x1","0x48307ffe80007fff","0x20680017fff7fff","0x41","0x1104800180018000","0x1272","0x482480017fff8000","0x1271","0x480080007fff8000","0xa0680017fff8000","0x9","0x4824800180007ff4","0x0","0x482480017fff8000","0x100000000000000000000000000000000","0x400080007ff47fff","0x10780017fff7fff","0x24","0x4824800180007ff4","0x0","0x400080007ff57fff","0x48127fff7fff8000","0x480a7ffb7fff8000","0x1104800180018000","0x786","0x482480017fde8000","0x1","0x20680017fff7ffc","0x11","0x40780017fff7fff","0x1","0x48127ffd7fff8000","0x48127ffe7fff8000","0x48127ffd7fff8000","0x1104800180018000","0x7ac","0x48127ff77fff8000","0x48127ff17fff8000","0x48127ff17fff8000","0x480680017fff8000","0x0","0x48127ffa7fff8000","0x48127ffa7fff8000","0x208b7fff7fff7ffe","0x48127fff7fff8000","0x48127ff97fff8000","0x48127ff97fff8000","0x480680017fff8000","0x1","0x48127ff97fff8000","0x48127ff97fff8000","0x208b7fff7fff7ffe","0x40780017fff7fff","0x1","0x480680017fff8000","0x4f7574206f6620676173","0x400080007ffe7fff","0x482480017ff28000","0x1","0x48127fef7fff8000","0x480a7ffb7fff8000","0x480680017fff8000","0x1","0x48127ffa7fff8000","0x482480017ff98000","0x1","0x208b7fff7fff7ffe","0x480a7ffb7fff8000","0x1104800180018000","0x78f","0x40780017fff7fff","0x1","0x480680017fff8000","0x496e70757420746f6f206c6f6e6720666f7220617267756d656e7473","0x400080007ffe7fff","0x48127ff57fff8000","0x48127ff27fff8000","0x48127ffb7fff8000","0x480680017fff8000","0x1","0x48127ffa7fff8000","0x482480017ff98000","0x1","0x208b7fff7fff7ffe","0x40780017fff7fff","0x1","0x480680017fff8000","0x4f7574206f6620676173","0x400080007ffe7fff","0x482680017ff98000","0x1","0x480a7ffa7fff8000","0x480a7ffb7fff8000","0x480680017fff8000","0x1","0x48127ffa7fff8000","0x482480017ff98000","0x1","0x208b7fff7fff7ffe","0xa0680017fff8000","0x7","0x482680017ffa8000","0xffffffffffffffffffffffffffffe548","0x400280007ff97fff","0x10780017fff7fff","0x69","0x4825800180007ffa","0x1ab8","0x400280007ff97fff","0x48297ffc80007ffd","0x482680017ff98000","0x1","0x4824800180007ffe","0x0","0x20680017fff7fff","0x4","0x10780017fff7fff","0x6","0x480680017fff8000","0x0","0x10780017fff7fff","0x4","0x480680017fff8000","0x1","0x480680017fff8000","0x1","0x48307ffe80007fff","0x20680017fff7fff","0x41","0x1104800180018000","0x11f5","0x482480017fff8000","0x11f4","0x480080007fff8000","0xa0680017fff8000","0x9","0x4824800180007ff4","0x0","0x482480017fff8000","0x100000000000000000000000000000000","0x400080007ff47fff","0x10780017fff7fff","0x24","0x4824800180007ff4","0x0","0x400080007ff57fff","0x48127fff7fff8000","0x480a7ffb7fff8000","0x1104800180018000","0x741","0x482480017fde8000","0x1","0x20680017fff7ffc","0x11","0x40780017fff7fff","0x1","0x48127ffd7fff8000","0x48127ffe7fff8000","0x48127ffd7fff8000","0x1104800180018000","0x72f","0x48127ff77fff8000","0x48127ff17fff8000","0x48127ff17fff8000","0x480680017fff8000","0x0","0x48127ffa7fff8000","0x48127ffa7fff8000","0x208b7fff7fff7ffe","0x48127fff7fff8000","0x48127ff97fff8000","0x48127ff97fff8000","0x480680017fff8000","0x1","0x48127ff97fff8000","0x48127ff97fff8000","0x208b7fff7fff7ffe","0x40780017fff7fff","0x1","0x480680017fff8000","0x4f7574206f6620676173","0x400080007ffe7fff","0x482480017ff28000","0x1","0x48127fef7fff8000","0x480a7ffb7fff8000","0x480680017fff8000","0x1","0x48127ffa7fff8000","0x482480017ff98000","0x1","0x208b7fff7fff7ffe","0x480a7ffb7fff8000","0x1104800180018000","0x712","0x40780017fff7fff","0x1","0x480680017fff8000","0x496e70757420746f6f206c6f6e6720666f7220617267756d656e7473","0x400080007ffe7fff","0x48127ff57fff8000","0x48127ff27fff8000","0x48127ffb7fff8000","0x480680017fff8000","0x1","0x48127ffa7fff8000","0x482480017ff98000","0x1","0x208b7fff7fff7ffe","0x40780017fff7fff","0x1","0x480680017fff8000","0x4f7574206f6620676173","0x400080007ffe7fff","0x482680017ff98000","0x1","0x480a7ffa7fff8000","0x480a7ffb7fff8000","0x480680017fff8000","0x1","0x48127ffa7fff8000","0x482480017ff98000","0x1","0x208b7fff7fff7ffe","0xa0680017fff8000","0x7","0x482680017ffa8000","0xffffffffffffffffffffffffffffd472","0x400280007ff97fff","0x10780017fff7fff","0x69","0x4825800180007ffa","0x2b8e","0x400280007ff97fff","0x48297ffc80007ffd","0x482680017ff98000","0x1","0x4824800180007ffe","0x0","0x20680017fff7fff","0x4","0x10780017fff7fff","0x6","0x480680017fff8000","0x0","0x10780017fff7fff","0x4","0x480680017fff8000","0x1","0x480680017fff8000","0x1","0x48307ffe80007fff","0x20680017fff7fff","0x41","0x1104800180018000","0x1178","0x482480017fff8000","0x1177","0x480080007fff8000","0xa0680017fff8000","0x9","0x4824800180007ff4","0x0","0x482480017fff8000","0x100000000000000000000000000000000","0x400080007ff47fff","0x10780017fff7fff","0x24","0x4824800180007ff4","0x0","0x400080007ff57fff","0x482480017ff58000","0x1","0x48127ffe7fff8000","0x480a7ffb7fff8000","0x1104800180018000","0x6f3","0x20680017fff7ffd","0x11","0x40780017fff7fff","0x1","0x48127ffe7fff8000","0x48127ffe7fff8000","0x48127ffd7fff8000","0x1104800180018000","0x717","0x48127feb7fff8000","0x48127feb7fff8000","0x48127feb7fff8000","0x480680017fff8000","0x0","0x48127ffa7fff8000","0x48127ffa7fff8000","0x208b7fff7fff7ffe","0x48127ffa7fff8000","0x48127ffa7fff8000","0x48127ffa7fff8000","0x480680017fff8000","0x1","0x48127ffa7fff8000","0x48127ffa7fff8000","0x208b7fff7fff7ffe","0x40780017fff7fff","0x1","0x480680017fff8000","0x4f7574206f6620676173","0x400080007ffe7fff","0x482480017ff28000","0x1","0x48127fef7fff8000","0x480a7ffb7fff8000","0x480680017fff8000","0x1","0x48127ffa7fff8000","0x482480017ff98000","0x1","0x208b7fff7fff7ffe","0x480a7ffb7fff8000","0x1104800180018000","0x695","0x40780017fff7fff","0x1","0x480680017fff8000","0x496e70757420746f6f206c6f6e6720666f7220617267756d656e7473","0x400080007ffe7fff","0x48127ff57fff8000","0x48127ff27fff8000","0x48127ffb7fff8000","0x480680017fff8000","0x1","0x48127ffa7fff8000","0x482480017ff98000","0x1","0x208b7fff7fff7ffe","0x40780017fff7fff","0x1","0x480680017fff8000","0x4f7574206f6620676173","0x400080007ffe7fff","0x482680017ff98000","0x1","0x480a7ffa7fff8000","0x480a7ffb7fff8000","0x480680017fff8000","0x1","0x48127ffa7fff8000","0x482480017ff98000","0x1","0x208b7fff7fff7ffe","0xa0680017fff8000","0x7","0x482680017ffa8000","0xffffffffffffffffffffffffffff9138","0x400280007ff97fff","0x10780017fff7fff","0x6a","0x4825800180007ffa","0x6ec8","0x400280007ff97fff","0x48297ffc80007ffd","0x482680017ff98000","0x1","0x4824800180007ffe","0x0","0x20680017fff7fff","0x4","0x10780017fff7fff","0x6","0x480680017fff8000","0x0","0x10780017fff7fff","0x4","0x480680017fff8000","0x1","0x480680017fff8000","0x1","0x48307ffe80007fff","0x20680017fff7fff","0x42","0x1104800180018000","0x10fb","0x482480017fff8000","0x10fa","0x480080007fff8000","0xa0680017fff8000","0x9","0x4824800180007ff4","0x0","0x482480017fff8000","0x100000000000000000000000000000000","0x400080007ff47fff","0x10780017fff7fff","0x25","0x4824800180007ff4","0x0","0x400080007ff57fff","0x482480017ff58000","0x1","0x48127ffe7fff8000","0x480a7ffb7fff8000","0x1104800180018000","0x6ab","0x20680017fff7ffd","0x12","0x40780017fff7fff","0x1","0x48127ffd7fff8000","0x48127ffd7fff8000","0x48127ffd7fff8000","0x48127ffc7fff8000","0x1104800180018000","0x6cd","0x48127fd77fff8000","0x48127fd77fff8000","0x48127fd77fff8000","0x480680017fff8000","0x0","0x48127ffa7fff8000","0x48127ffa7fff8000","0x208b7fff7fff7ffe","0x48127ffa7fff8000","0x48127ffa7fff8000","0x48127ffa7fff8000","0x480680017fff8000","0x1","0x48127ffa7fff8000","0x48127ffa7fff8000","0x208b7fff7fff7ffe","0x40780017fff7fff","0x1","0x480680017fff8000","0x4f7574206f6620676173","0x400080007ffe7fff","0x482480017ff28000","0x1","0x48127fef7fff8000","0x480a7ffb7fff8000","0x480680017fff8000","0x1","0x48127ffa7fff8000","0x482480017ff98000","0x1","0x208b7fff7fff7ffe","0x480a7ffb7fff8000","0x1104800180018000","0x617","0x40780017fff7fff","0x1","0x480680017fff8000","0x496e70757420746f6f206c6f6e6720666f7220617267756d656e7473","0x400080007ffe7fff","0x48127ff57fff8000","0x48127ff27fff8000","0x48127ffb7fff8000","0x480680017fff8000","0x1","0x48127ffa7fff8000","0x482480017ff98000","0x1","0x208b7fff7fff7ffe","0x40780017fff7fff","0x1","0x480680017fff8000","0x4f7574206f6620676173","0x400080007ffe7fff","0x482680017ff98000","0x1","0x480a7ffa7fff8000","0x480a7ffb7fff8000","0x480680017fff8000","0x1","0x48127ffa7fff8000","0x482480017ff98000","0x1","0x208b7fff7fff7ffe","0xa0680017fff8000","0x7","0x482680017ffa8000","0xffffffffffffffffffffffffffff736a","0x400280007ff97fff","0x10780017fff7fff","0x86","0x4825800180007ffa","0x8c96","0x400280007ff97fff","0x482680017ff98000","0x1","0x480a7ffc7fff8000","0x480a7ffd7fff8000","0x1104800180018000","0x689","0x20680017fff7ffe","0x6c","0x48307ffc80007ffd","0x4824800180007fff","0x0","0x20680017fff7fff","0x4","0x10780017fff7fff","0x6","0x480680017fff8000","0x0","0x10780017fff7fff","0x4","0x480680017fff8000","0x1","0x480680017fff8000","0x1","0x48307ffe80007fff","0x20680017fff7fff","0x48","0x1104800180018000","0x1077","0x482480017fff8000","0x1076","0x480080007fff8000","0x480080007fff8000","0x482480017fff8000","0x0","0xa0680017fff8000","0x8","0x48307ffe80007fd3","0x482480017fff8000","0x100000000000000000000000000000000","0x400080007fed7fff","0x10780017fff7fff","0x28","0x48307ffe80007fd3","0x400080007fee7fff","0x482480017fee8000","0x1","0x48127ffe7fff8000","0x480a7ff87fff8000","0x480a7ffb7fff8000","0x48127fee7fff8000","0x1104800180018000","0x694","0x20680017fff7ffd","0x13","0x40780017fff7fff","0x1","0x48127ffd7fff8000","0x48127ffd7fff8000","0x48127ffd7fff8000","0x48127ffc7fff8000","0x1104800180018000","0x646","0x48127fd87fff8000","0x48127fd57fff8000","0x48127fd57fff8000","0x48127fd67fff8000","0x480680017fff8000","0x0","0x48127ff97fff8000","0x48127ff97fff8000","0x208b7fff7fff7ffe","0x48127ffb7fff8000","0x48127ff87fff8000","0x48127ff87fff8000","0x48127ff97fff8000","0x480680017fff8000","0x1","0x48127ff97fff8000","0x48127ff97fff8000","0x208b7fff7fff7ffe","0x40780017fff7fff","0x1","0x480680017fff8000","0x4f7574206f6620676173","0x400080007ffe7fff","0x480a7ff87fff8000","0x482480017fea8000","0x1","0x48127fcd7fff8000","0x480a7ffb7fff8000","0x480680017fff8000","0x1","0x48127ff97fff8000","0x482480017ff88000","0x1","0x208b7fff7fff7ffe","0x480a7ffb7fff8000","0x1104800180018000","0x58d","0x40780017fff7fff","0x1","0x480680017fff8000","0x496e70757420746f6f206c6f6e6720666f7220617267756d656e7473","0x400080007ffe7fff","0x480a7ff87fff8000","0x48127fef7fff8000","0x48127fd27fff8000","0x48127ffa7fff8000","0x480680017fff8000","0x1","0x48127ff97fff8000","0x482480017ff88000","0x1","0x208b7fff7fff7ffe","0x40780017fff7fff","0x1","0x480680017fff8000","0x496e70757420746f6f2073686f727420666f7220617267756d656e7473","0x400080007ffe7fff","0x480a7ff87fff8000","0x48127ff87fff8000","0x48127fdb7fff8000","0x480a7ffb7fff8000","0x480680017fff8000","0x1","0x48127ff97fff8000","0x482480017ff88000","0x1","0x208b7fff7fff7ffe","0x40780017fff7fff","0x1","0x480680017fff8000","0x4f7574206f6620676173","0x400080007ffe7fff","0x480a7ff87fff8000","0x482680017ff98000","0x1","0x480a7ffa7fff8000","0x480a7ffb7fff8000","0x480680017fff8000","0x1","0x48127ff97fff8000","0x482480017ff88000","0x1","0x208b7fff7fff7ffe","0xa0680017fff8000","0x7","0x482680017ffa8000","0xffffffffffffffffffffffffffff566e","0x400280007ff97fff","0x10780017fff7fff","0x9f","0x4825800180007ffa","0xa992","0x400280007ff97fff","0x482680017ff98000","0x1","0x480a7ffc7fff8000","0x480a7ffd7fff8000","0x1104800180018000","0x5ee","0x20680017fff7ffe","0x85","0x48127ffb7fff8000","0x48127ffb7fff8000","0x48127ffb7fff8000","0x1104800180018000","0x5e7","0x20680017fff7ffe","0x6f","0x48307ffc80007ffd","0x4824800180007fff","0x0","0x20680017fff7fff","0x4","0x10780017fff7fff","0x6","0x480680017fff8000","0x0","0x10780017fff7fff","0x4","0x480680017fff8000","0x1","0x480680017fff8000","0x1","0x48307ffe80007fff","0x20680017fff7fff","0x4b","0x1104800180018000","0xfd5","0x482480017fff8000","0xfd4","0x480080007fff8000","0x480080007fff8000","0x484480017fff8000","0x2","0x482480017fff8000","0x0","0xa0680017fff8000","0x8","0x48307ffe80007fb2","0x482480017fff8000","0x100000000000000000000000000000000","0x400080007fec7fff","0x10780017fff7fff","0x29","0x48307ffe80007fb2","0x400080007fed7fff","0x482480017fed8000","0x1","0x48127ffe7fff8000","0x480a7ff87fff8000","0x480a7ffb7fff8000","0x48127fcd7fff8000","0x48127fec7fff8000","0x1104800180018000","0x622","0x20680017fff7ffd","0x13","0x40780017fff7fff","0x1","0x48127ffd7fff8000","0x48127ffd7fff8000","0x48127ffd7fff8000","0x48127ffc7fff8000","0x1104800180018000","0x5a1","0x48127fd87fff8000","0x48127fd57fff8000","0x48127fd57fff8000","0x48127fd67fff8000","0x480680017fff8000","0x0","0x48127ff97fff8000","0x48127ff97fff8000","0x208b7fff7fff7ffe","0x48127ffb7fff8000","0x48127ff87fff8000","0x48127ff87fff8000","0x48127ff97fff8000","0x480680017fff8000","0x1","0x48127ff97fff8000","0x48127ff97fff8000","0x208b7fff7fff7ffe","0x40780017fff7fff","0x1","0x480680017fff8000","0x4f7574206f6620676173","0x400080007ffe7fff","0x480a7ff87fff8000","0x482480017fe98000","0x1","0x48127fac7fff8000","0x480a7ffb7fff8000","0x480680017fff8000","0x1","0x48127ff97fff8000","0x482480017ff88000","0x1","0x208b7fff7fff7ffe","0x480a7ffb7fff8000","0x1104800180018000","0x4e8","0x40780017fff7fff","0x1","0x480680017fff8000","0x496e70757420746f6f206c6f6e6720666f7220617267756d656e7473","0x400080007ffe7fff","0x480a7ff87fff8000","0x48127fef7fff8000","0x48127fb27fff8000","0x48127ffa7fff8000","0x480680017fff8000","0x1","0x48127ff97fff8000","0x482480017ff88000","0x1","0x208b7fff7fff7ffe","0x40780017fff7fff","0x1","0x480680017fff8000","0x496e70757420746f6f2073686f727420666f7220617267756d656e7473","0x400080007ffe7fff","0x480a7ff87fff8000","0x48127ff87fff8000","0x48127fbb7fff8000","0x480a7ffb7fff8000","0x480680017fff8000","0x1","0x48127ff97fff8000","0x482480017ff88000","0x1","0x208b7fff7fff7ffe","0x40780017fff7fff","0x1","0x480680017fff8000","0x496e70757420746f6f2073686f727420666f7220617267756d656e7473","0x400080007ffe7fff","0x480a7ff87fff8000","0x48127ff87fff8000","0x48127fdb7fff8000","0x480a7ffb7fff8000","0x480680017fff8000","0x1","0x48127ff97fff8000","0x482480017ff88000","0x1","0x208b7fff7fff7ffe","0x40780017fff7fff","0x1","0x480680017fff8000","0x4f7574206f6620676173","0x400080007ffe7fff","0x480a7ff87fff8000","0x482680017ff98000","0x1","0x480a7ffa7fff8000","0x480a7ffb7fff8000","0x480680017fff8000","0x1","0x48127ff97fff8000","0x482480017ff88000","0x1","0x208b7fff7fff7ffe","0xa0680017fff8000","0x7","0x482680017ffa8000","0xfffffffffffffffffffffffffffd2380","0x400280007ff97fff","0x10780017fff7fff","0x9a","0x4825800180007ffa","0x2dc80","0x400280007ff97fff","0x482680017ff98000","0x1","0x480a7ffc7fff8000","0x480a7ffd7fff8000","0x1104800180018000","0x53a","0x20680017fff7ffe","0x80","0x48127ffb7fff8000","0x48127ffb7fff8000","0x48127ffb7fff8000","0x1104800180018000","0x5bb","0x20680017fff7ffd","0x6a","0x48307ffb80007ffc","0x4824800180007fff","0x0","0x20680017fff7fff","0x4","0x10780017fff7fff","0x6","0x480680017fff8000","0x0","0x10780017fff7fff","0x4","0x480680017fff8000","0x1","0x480680017fff8000","0x1","0x48307ffe80007fff","0x20680017fff7fff","0x46","0x1104800180018000","0xf21","0x482480017fff8000","0xf20","0x480080007fff8000","0x480080007fff8000","0x484480017fff8000","0x4","0x482480017fff8000","0x0","0xa0680017fff8000","0x8","0x48307ffe80007f89","0x482480017fff8000","0x100000000000000000000000000000000","0x400080007feb7fff","0x10780017fff7fff","0x24","0x48307ffe80007f89","0x400080007fec7fff","0x482480017fec8000","0x1","0x48127ffe7fff8000","0x480a7ff87fff8000","0x480a7ffb7fff8000","0x48127fa47fff8000","0x48127feb7fff8000","0x48127feb7fff8000","0x1104800180018000","0x5b5","0x20680017fff7ffd","0xd","0x40780017fff7fff","0x1","0x48127ffa7fff8000","0x48127ff77fff8000","0x48127ff77fff8000","0x48127ff87fff8000","0x480680017fff8000","0x0","0x48127ffa7fff8000","0x48127ff97fff8000","0x208b7fff7fff7ffe","0x48127ffb7fff8000","0x48127ff87fff8000","0x48127ff87fff8000","0x48127ff97fff8000","0x480680017fff8000","0x1","0x48127ff97fff8000","0x48127ff97fff8000","0x208b7fff7fff7ffe","0x40780017fff7fff","0x1","0x480680017fff8000","0x4f7574206f6620676173","0x400080007ffe7fff","0x480a7ff87fff8000","0x482480017fe88000","0x1","0x48127f837fff8000","0x480a7ffb7fff8000","0x480680017fff8000","0x1","0x48127ff97fff8000","0x482480017ff88000","0x1","0x208b7fff7fff7ffe","0x480a7ffb7fff8000","0x1104800180018000","0x439","0x40780017fff7fff","0x1","0x480680017fff8000","0x496e70757420746f6f206c6f6e6720666f7220617267756d656e7473","0x400080007ffe7fff","0x480a7ff87fff8000","0x48127fee7fff8000","0x48127f897fff8000","0x48127ffa7fff8000","0x480680017fff8000","0x1","0x48127ff97fff8000","0x482480017ff88000","0x1","0x208b7fff7fff7ffe","0x40780017fff7fff","0x1","0x480680017fff8000","0x496e70757420746f6f2073686f727420666f7220617267756d656e7473","0x400080007ffe7fff","0x480a7ff87fff8000","0x48127ff77fff8000","0x48127f927fff8000","0x480a7ffb7fff8000","0x480680017fff8000","0x1","0x48127ff97fff8000","0x482480017ff88000","0x1","0x208b7fff7fff7ffe","0x40780017fff7fff","0x1","0x480680017fff8000","0x496e70757420746f6f2073686f727420666f7220617267756d656e7473","0x400080007ffe7fff","0x480a7ff87fff8000","0x48127ff87fff8000","0x48127fdb7fff8000","0x480a7ffb7fff8000","0x480680017fff8000","0x1","0x48127ff97fff8000","0x482480017ff88000","0x1","0x208b7fff7fff7ffe","0x40780017fff7fff","0x1","0x480680017fff8000","0x4f7574206f6620676173","0x400080007ffe7fff","0x480a7ff87fff8000","0x482680017ff98000","0x1","0x480a7ffa7fff8000","0x480a7ffb7fff8000","0x480680017fff8000","0x1","0x48127ff97fff8000","0x482480017ff88000","0x1","0x208b7fff7fff7ffe","0xa0680017fff8000","0x7","0x482680017ffa8000","0xfffffffffffffffffffffffffffb8c1e","0x400280007ff97fff","0x10780017fff7fff","0xb1","0x4825800180007ffa","0x473e2","0x400280007ff97fff","0x482680017ff98000","0x1","0x480a7ffc7fff8000","0x480a7ffd7fff8000","0x1104800180018000","0x48b","0x20680017fff7ffe","0x97","0x48127ffb7fff8000","0x48127ffb7fff8000","0x48127ffb7fff8000","0x1104800180018000","0x484","0x20680017fff7ffe","0x81","0x48127ffb7fff8000","0x48127ffb7fff8000","0x48127ffb7fff8000","0x1104800180018000","0x505","0x20680017fff7ffd","0x6b","0x48307ffb80007ffc","0x4824800180007fff","0x0","0x20680017fff7fff","0x4","0x10780017fff7fff","0x6","0x480680017fff8000","0x0","0x10780017fff7fff","0x4","0x480680017fff8000","0x1","0x480680017fff8000","0x1","0x48307ffe80007fff","0x20680017fff7fff","0x47","0x1104800180018000","0xe6b","0x482480017fff8000","0xe6a","0x480080007fff8000","0x480080007fff8000","0x484480017fff8000","0x8","0x482480017fff8000","0x0","0xa0680017fff8000","0x8","0x48307ffe80007f69","0x482480017fff8000","0x100000000000000000000000000000000","0x400080007feb7fff","0x10780017fff7fff","0x25","0x48307ffe80007f69","0x400080007fec7fff","0x482480017fec8000","0x1","0x48127ffe7fff8000","0x480a7ff87fff8000","0x480a7ffb7fff8000","0x48127f847fff8000","0x48127fa37fff8000","0x48127fea7fff8000","0x48127fea7fff8000","0x1104800180018000","0x52f","0x20680017fff7ffd","0xd","0x40780017fff7fff","0x1","0x48127ffa7fff8000","0x48127ff77fff8000","0x48127ff77fff8000","0x48127ff87fff8000","0x480680017fff8000","0x0","0x48127ffa7fff8000","0x48127ff97fff8000","0x208b7fff7fff7ffe","0x48127ffb7fff8000","0x48127ff87fff8000","0x48127ff87fff8000","0x48127ff97fff8000","0x480680017fff8000","0x1","0x48127ff97fff8000","0x48127ff97fff8000","0x208b7fff7fff7ffe","0x40780017fff7fff","0x1","0x480680017fff8000","0x4f7574206f6620676173","0x400080007ffe7fff","0x480a7ff87fff8000","0x482480017fe88000","0x1","0x48127f637fff8000","0x480a7ffb7fff8000","0x480680017fff8000","0x1","0x48127ff97fff8000","0x482480017ff88000","0x1","0x208b7fff7fff7ffe","0x480a7ffb7fff8000","0x1104800180018000","0x382","0x40780017fff7fff","0x1","0x480680017fff8000","0x496e70757420746f6f206c6f6e6720666f7220617267756d656e7473","0x400080007ffe7fff","0x480a7ff87fff8000","0x48127fee7fff8000","0x48127f697fff8000","0x48127ffa7fff8000","0x480680017fff8000","0x1","0x48127ff97fff8000","0x482480017ff88000","0x1","0x208b7fff7fff7ffe","0x40780017fff7fff","0x1","0x480680017fff8000","0x496e70757420746f6f2073686f727420666f7220617267756d656e7473","0x400080007ffe7fff","0x480a7ff87fff8000","0x48127ff77fff8000","0x48127f727fff8000","0x480a7ffb7fff8000","0x480680017fff8000","0x1","0x48127ff97fff8000","0x482480017ff88000","0x1","0x208b7fff7fff7ffe","0x40780017fff7fff","0x1","0x480680017fff8000","0x496e70757420746f6f2073686f727420666f7220617267756d656e7473","0x400080007ffe7fff","0x480a7ff87fff8000","0x48127ff87fff8000","0x48127fbb7fff8000","0x480a7ffb7fff8000","0x480680017fff8000","0x1","0x48127ff97fff8000","0x482480017ff88000","0x1","0x208b7fff7fff7ffe","0x40780017fff7fff","0x1","0x480680017fff8000","0x496e70757420746f6f2073686f727420666f7220617267756d656e7473","0x400080007ffe7fff","0x480a7ff87fff8000","0x48127ff87fff8000","0x48127fdb7fff8000","0x480a7ffb7fff8000","0x480680017fff8000","0x1","0x48127ff97fff8000","0x482480017ff88000","0x1","0x208b7fff7fff7ffe","0x40780017fff7fff","0x1","0x480680017fff8000","0x4f7574206f6620676173","0x400080007ffe7fff","0x480a7ff87fff8000","0x482680017ff98000","0x1","0x480a7ffa7fff8000","0x480a7ffb7fff8000","0x480680017fff8000","0x1","0x48127ff97fff8000","0x482480017ff88000","0x1","0x208b7fff7fff7ffe","0xa0680017fff8000","0x7","0x482680017ffa8000","0xfffffffffffffffffffffffffffed5fe","0x400280007ff97fff","0x10780017fff7fff","0x9a","0x4825800180007ffa","0x12a02","0x400280007ff97fff","0x482680017ff98000","0x1","0x480a7ffc7fff8000","0x480a7ffd7fff8000","0x1104800180018000","0x3c5","0x20680017fff7ffe","0x80","0x48127ffb7fff8000","0x48127ffb7fff8000","0x48127ffb7fff8000","0x1104800180018000","0x446","0x20680017fff7ffd","0x6a","0x48307ffb80007ffc","0x4824800180007fff","0x0","0x20680017fff7fff","0x4","0x10780017fff7fff","0x6","0x480680017fff8000","0x0","0x10780017fff7fff","0x4","0x480680017fff8000","0x1","0x480680017fff8000","0x1","0x48307ffe80007fff","0x20680017fff7fff","0x46","0x1104800180018000","0xdac","0x482480017fff8000","0xdab","0x480080007fff8000","0x480080007fff8000","0x484480017fff8000","0x2","0x482480017fff8000","0x0","0xa0680017fff8000","0x8","0x48307ffe80007f89","0x482480017fff8000","0x100000000000000000000000000000000","0x400080007feb7fff","0x10780017fff7fff","0x24","0x48307ffe80007f89","0x400080007fec7fff","0x482480017fec8000","0x1","0x48127ffe7fff8000","0x480a7ff87fff8000","0x480a7ffb7fff8000","0x48127fa47fff8000","0x48127feb7fff8000","0x48127feb7fff8000","0x1104800180018000","0x4b9","0x20680017fff7ffd","0xd","0x40780017fff7fff","0x1","0x48127ffa7fff8000","0x48127ff77fff8000","0x48127ff77fff8000","0x48127ff87fff8000","0x480680017fff8000","0x0","0x48127ffa7fff8000","0x48127ff97fff8000","0x208b7fff7fff7ffe","0x48127ffb7fff8000","0x48127ff87fff8000","0x48127ff87fff8000","0x48127ff97fff8000","0x480680017fff8000","0x1","0x48127ff97fff8000","0x48127ff97fff8000","0x208b7fff7fff7ffe","0x40780017fff7fff","0x1","0x480680017fff8000","0x4f7574206f6620676173","0x400080007ffe7fff","0x480a7ff87fff8000","0x482480017fe88000","0x1","0x48127f837fff8000","0x480a7ffb7fff8000","0x480680017fff8000","0x1","0x48127ff97fff8000","0x482480017ff88000","0x1","0x208b7fff7fff7ffe","0x480a7ffb7fff8000","0x1104800180018000","0x2c4","0x40780017fff7fff","0x1","0x480680017fff8000","0x496e70757420746f6f206c6f6e6720666f7220617267756d656e7473","0x400080007ffe7fff","0x480a7ff87fff8000","0x48127fee7fff8000","0x48127f897fff8000","0x48127ffa7fff8000","0x480680017fff8000","0x1","0x48127ff97fff8000","0x482480017ff88000","0x1","0x208b7fff7fff7ffe","0x40780017fff7fff","0x1","0x480680017fff8000","0x496e70757420746f6f2073686f727420666f7220617267756d656e7473","0x400080007ffe7fff","0x480a7ff87fff8000","0x48127ff77fff8000","0x48127f927fff8000","0x480a7ffb7fff8000","0x480680017fff8000","0x1","0x48127ff97fff8000","0x482480017ff88000","0x1","0x208b7fff7fff7ffe","0x40780017fff7fff","0x1","0x480680017fff8000","0x496e70757420746f6f2073686f727420666f7220617267756d656e7473","0x400080007ffe7fff","0x480a7ff87fff8000","0x48127ff87fff8000","0x48127fdb7fff8000","0x480a7ffb7fff8000","0x480680017fff8000","0x1","0x48127ff97fff8000","0x482480017ff88000","0x1","0x208b7fff7fff7ffe","0x40780017fff7fff","0x1","0x480680017fff8000","0x4f7574206f6620676173","0x400080007ffe7fff","0x480a7ff87fff8000","0x482680017ff98000","0x1","0x480a7ffa7fff8000","0x480a7ffb7fff8000","0x480680017fff8000","0x1","0x48127ff97fff8000","0x482480017ff88000","0x1","0x208b7fff7fff7ffe","0xa0680017fff8000","0x7","0x482680017ffa8000","0xfffffffffffffffffffffffffffe2d66","0x400280007ff97fff","0x10780017fff7fff","0x9a","0x4825800180007ffa","0x1d29a","0x400280007ff97fff","0x482680017ff98000","0x1","0x480a7ffc7fff8000","0x480a7ffd7fff8000","0x1104800180018000","0x316","0x20680017fff7ffe","0x80","0x48127ffb7fff8000","0x48127ffb7fff8000","0x48127ffb7fff8000","0x1104800180018000","0x397","0x20680017fff7ffd","0x6a","0x48307ffb80007ffc","0x4824800180007fff","0x0","0x20680017fff7fff","0x4","0x10780017fff7fff","0x6","0x480680017fff8000","0x0","0x10780017fff7fff","0x4","0x480680017fff8000","0x1","0x480680017fff8000","0x1","0x48307ffe80007fff","0x20680017fff7fff","0x46","0x1104800180018000","0xcfd","0x482480017fff8000","0xcfc","0x480080007fff8000","0x480080007fff8000","0x484480017fff8000","0x4","0x482480017fff8000","0x0","0xa0680017fff8000","0x8","0x48307ffe80007f89","0x482480017fff8000","0x100000000000000000000000000000000","0x400080007feb7fff","0x10780017fff7fff","0x24","0x48307ffe80007f89","0x400080007fec7fff","0x482480017fec8000","0x1","0x48127ffe7fff8000","0x480a7ff87fff8000","0x480a7ffb7fff8000","0x48127fa47fff8000","0x48127feb7fff8000","0x48127feb7fff8000","0x1104800180018000","0x43b","0x20680017fff7ffd","0xd","0x40780017fff7fff","0x1","0x48127ffa7fff8000","0x48127ff77fff8000","0x48127ff77fff8000","0x48127ff87fff8000","0x480680017fff8000","0x0","0x48127ffa7fff8000","0x48127ff97fff8000","0x208b7fff7fff7ffe","0x48127ffb7fff8000","0x48127ff87fff8000","0x48127ff87fff8000","0x48127ff97fff8000","0x480680017fff8000","0x1","0x48127ff97fff8000","0x48127ff97fff8000","0x208b7fff7fff7ffe","0x40780017fff7fff","0x1","0x480680017fff8000","0x4f7574206f6620676173","0x400080007ffe7fff","0x480a7ff87fff8000","0x482480017fe88000","0x1","0x48127f837fff8000","0x480a7ffb7fff8000","0x480680017fff8000","0x1","0x48127ff97fff8000","0x482480017ff88000","0x1","0x208b7fff7fff7ffe","0x480a7ffb7fff8000","0x1104800180018000","0x215","0x40780017fff7fff","0x1","0x480680017fff8000","0x496e70757420746f6f206c6f6e6720666f7220617267756d656e7473","0x400080007ffe7fff","0x480a7ff87fff8000","0x48127fee7fff8000","0x48127f897fff8000","0x48127ffa7fff8000","0x480680017fff8000","0x1","0x48127ff97fff8000","0x482480017ff88000","0x1","0x208b7fff7fff7ffe","0x40780017fff7fff","0x1","0x480680017fff8000","0x496e70757420746f6f2073686f727420666f7220617267756d656e7473","0x400080007ffe7fff","0x480a7ff87fff8000","0x48127ff77fff8000","0x48127f927fff8000","0x480a7ffb7fff8000","0x480680017fff8000","0x1","0x48127ff97fff8000","0x482480017ff88000","0x1","0x208b7fff7fff7ffe","0x40780017fff7fff","0x1","0x480680017fff8000","0x496e70757420746f6f2073686f727420666f7220617267756d656e7473","0x400080007ffe7fff","0x480a7ff87fff8000","0x48127ff87fff8000","0x48127fdb7fff8000","0x480a7ffb7fff8000","0x480680017fff8000","0x1","0x48127ff97fff8000","0x482480017ff88000","0x1","0x208b7fff7fff7ffe","0x40780017fff7fff","0x1","0x480680017fff8000","0x4f7574206f6620676173","0x400080007ffe7fff","0x480a7ff87fff8000","0x482680017ff98000","0x1","0x480a7ffa7fff8000","0x480a7ffb7fff8000","0x480680017fff8000","0x1","0x48127ff97fff8000","0x482480017ff88000","0x1","0x208b7fff7fff7ffe","0xa0680017fff8000","0x7","0x482680017ffa8000","0xfffffffffffffffffffffffffffe2d66","0x400280007ff97fff","0x10780017fff7fff","0x9a","0x4825800180007ffa","0x1d29a","0x400280007ff97fff","0x482680017ff98000","0x1","0x480a7ffc7fff8000","0x480a7ffd7fff8000","0x1104800180018000","0x267","0x20680017fff7ffe","0x80","0x48127ffb7fff8000","0x48127ffb7fff8000","0x48127ffb7fff8000","0x1104800180018000","0x2e8","0x20680017fff7ffd","0x6a","0x48307ffb80007ffc","0x4824800180007fff","0x0","0x20680017fff7fff","0x4","0x10780017fff7fff","0x6","0x480680017fff8000","0x0","0x10780017fff7fff","0x4","0x480680017fff8000","0x1","0x480680017fff8000","0x1","0x48307ffe80007fff","0x20680017fff7fff","0x46","0x1104800180018000","0xc4e","0x482480017fff8000","0xc4d","0x480080007fff8000","0x480080007fff8000","0x484480017fff8000","0x4","0x482480017fff8000","0x0","0xa0680017fff8000","0x8","0x48307ffe80007f89","0x482480017fff8000","0x100000000000000000000000000000000","0x400080007feb7fff","0x10780017fff7fff","0x24","0x48307ffe80007f89","0x400080007fec7fff","0x482480017fec8000","0x1","0x48127ffe7fff8000","0x480a7ff87fff8000","0x480a7ffb7fff8000","0x48127fa47fff8000","0x48127feb7fff8000","0x48127feb7fff8000","0x1104800180018000","0x3e6","0x20680017fff7ffd","0xd","0x40780017fff7fff","0x1","0x48127ffa7fff8000","0x48127ff77fff8000","0x48127ff77fff8000","0x48127ff87fff8000","0x480680017fff8000","0x0","0x48127ffa7fff8000","0x48127ff97fff8000","0x208b7fff7fff7ffe","0x48127ffb7fff8000","0x48127ff87fff8000","0x48127ff87fff8000","0x48127ff97fff8000","0x480680017fff8000","0x1","0x48127ff97fff8000","0x48127ff97fff8000","0x208b7fff7fff7ffe","0x40780017fff7fff","0x1","0x480680017fff8000","0x4f7574206f6620676173","0x400080007ffe7fff","0x480a7ff87fff8000","0x482480017fe88000","0x1","0x48127f837fff8000","0x480a7ffb7fff8000","0x480680017fff8000","0x1","0x48127ff97fff8000","0x482480017ff88000","0x1","0x208b7fff7fff7ffe","0x480a7ffb7fff8000","0x1104800180018000","0x166","0x40780017fff7fff","0x1","0x480680017fff8000","0x496e70757420746f6f206c6f6e6720666f7220617267756d656e7473","0x400080007ffe7fff","0x480a7ff87fff8000","0x48127fee7fff8000","0x48127f897fff8000","0x48127ffa7fff8000","0x480680017fff8000","0x1","0x48127ff97fff8000","0x482480017ff88000","0x1","0x208b7fff7fff7ffe","0x40780017fff7fff","0x1","0x480680017fff8000","0x496e70757420746f6f2073686f727420666f7220617267756d656e7473","0x400080007ffe7fff","0x480a7ff87fff8000","0x48127ff77fff8000","0x48127f927fff8000","0x480a7ffb7fff8000","0x480680017fff8000","0x1","0x48127ff97fff8000","0x482480017ff88000","0x1","0x208b7fff7fff7ffe","0x40780017fff7fff","0x1","0x480680017fff8000","0x496e70757420746f6f2073686f727420666f7220617267756d656e7473","0x400080007ffe7fff","0x480a7ff87fff8000","0x48127ff87fff8000","0x48127fdb7fff8000","0x480a7ffb7fff8000","0x480680017fff8000","0x1","0x48127ff97fff8000","0x482480017ff88000","0x1","0x208b7fff7fff7ffe","0x40780017fff7fff","0x1","0x480680017fff8000","0x4f7574206f6620676173","0x400080007ffe7fff","0x480a7ff87fff8000","0x482680017ff98000","0x1","0x480a7ffa7fff8000","0x480a7ffb7fff8000","0x480680017fff8000","0x1","0x48127ff97fff8000","0x482480017ff88000","0x1","0x208b7fff7fff7ffe","0xa0680017fff8000","0x7","0x482680017ffa8000","0xfffffffffffffffffffffffffffdf864","0x400280007ff97fff","0x10780017fff7fff","0xdc","0x4825800180007ffa","0x2079c","0x400280007ff97fff","0x480a7ffc7fff8000","0x480a7ffd7fff8000","0x1104800180018000","0x3cc","0x482680017ff98000","0x1","0x20680017fff7ffd","0xc2","0x48127ffb7fff8000","0x48127ffb7fff8000","0x1104800180018000","0x3c4","0x20680017fff7ffe","0xad","0x48127fef7fff8000","0x48127ffb7fff8000","0x48127ffb7fff8000","0x1104800180018000","0x3e4","0x20680017fff7ffe","0x97","0x48127ffb7fff8000","0x48127ffb7fff8000","0x48127ffb7fff8000","0x1104800180018000","0x22c","0x20680017fff7ffd","0x81","0x48127ffa7fff8000","0x48127ffa7fff8000","0x48127ffa7fff8000","0x1104800180018000","0x19d","0x20680017fff7ffe","0x6b","0x48307ffc80007ffd","0x4824800180007fff","0x0","0x20680017fff7fff","0x4","0x10780017fff7fff","0x6","0x480680017fff8000","0x0","0x10780017fff7fff","0x4","0x480680017fff8000","0x1","0x480680017fff8000","0x1","0x48307ffe80007fff","0x20680017fff7fff","0x47","0x1104800180018000","0xb8b","0x482480017fff8000","0xb8a","0x480080007fff8000","0x480080007fff8000","0x482480017fff8000","0x0","0xa0680017fff8000","0x8","0x48307ffe80007f49","0x482480017fff8000","0x100000000000000000000000000000000","0x400080007fed7fff","0x10780017fff7fff","0x27","0x48307ffe80007f49","0x400080007fee7fff","0x482480017fee8000","0x1","0x48127ffe7fff8000","0x480a7ff87fff8000","0x480a7ffb7fff8000","0x48127f547fff8000","0x48127f647fff8000","0x48127f837fff8000","0x48127fca7fff8000","0x48127fca7fff8000","0x48127fe97fff8000","0x1104800180018000","0x3da","0x20680017fff7ffd","0xd","0x40780017fff7fff","0x1","0x48127ffa7fff8000","0x48127ff77fff8000","0x48127ff77fff8000","0x48127ff87fff8000","0x480680017fff8000","0x0","0x48127ffa7fff8000","0x48127ff97fff8000","0x208b7fff7fff7ffe","0x48127ffb7fff8000","0x48127ff87fff8000","0x48127ff87fff8000","0x48127ff97fff8000","0x480680017fff8000","0x1","0x48127ff97fff8000","0x48127ff97fff8000","0x208b7fff7fff7ffe","0x40780017fff7fff","0x1","0x480680017fff8000","0x4f7574206f6620676173","0x400080007ffe7fff","0x480a7ff87fff8000","0x482480017fea8000","0x1","0x48127f437fff8000","0x480a7ffb7fff8000","0x480680017fff8000","0x1","0x48127ff97fff8000","0x482480017ff88000","0x1","0x208b7fff7fff7ffe","0x480a7ffb7fff8000","0x1104800180018000","0xa2","0x40780017fff7fff","0x1","0x480680017fff8000","0x496e70757420746f6f206c6f6e6720666f7220617267756d656e7473","0x400080007ffe7fff","0x480a7ff87fff8000","0x48127fef7fff8000","0x48127f487fff8000","0x48127ffa7fff8000","0x480680017fff8000","0x1","0x48127ff97fff8000","0x482480017ff88000","0x1","0x208b7fff7fff7ffe","0x40780017fff7fff","0x1","0x480680017fff8000","0x496e70757420746f6f2073686f727420666f7220617267756d656e7473","0x400080007ffe7fff","0x480a7ff87fff8000","0x48127ff87fff8000","0x48127f517fff8000","0x480a7ffb7fff8000","0x480680017fff8000","0x1","0x48127ff97fff8000","0x482480017ff88000","0x1","0x208b7fff7fff7ffe","0x40780017fff7fff","0x1","0x480680017fff8000","0x496e70757420746f6f2073686f727420666f7220617267756d656e7473","0x400080007ffe7fff","0x480a7ff87fff8000","0x48127ff77fff8000","0x48127f717fff8000","0x480a7ffb7fff8000","0x480680017fff8000","0x1","0x48127ff97fff8000","0x482480017ff88000","0x1","0x208b7fff7fff7ffe","0x40780017fff7fff","0x1","0x480680017fff8000","0x496e70757420746f6f2073686f727420666f7220617267756d656e7473","0x400080007ffe7fff","0x480a7ff87fff8000","0x48127ff87fff8000","0x48127fba7fff8000","0x480a7ffb7fff8000","0x480680017fff8000","0x1","0x48127ff97fff8000","0x482480017ff88000","0x1","0x208b7fff7fff7ffe","0x40780017fff7fff","0x1","0x480680017fff8000","0x496e70757420746f6f2073686f727420666f7220617267756d656e7473","0x400080007ffe7fff","0x480a7ff87fff8000","0x48127fec7fff8000","0x48127fda7fff8000","0x480a7ffb7fff8000","0x480680017fff8000","0x1","0x48127ff97fff8000","0x482480017ff88000","0x1","0x208b7fff7fff7ffe","0x40780017fff7fff","0x1","0x480680017fff8000","0x496e70757420746f6f2073686f727420666f7220617267756d656e7473","0x400080007ffe7fff","0x480a7ff87fff8000","0x48127ffc7fff8000","0x48127fea7fff8000","0x480a7ffb7fff8000","0x480680017fff8000","0x1","0x48127ff97fff8000","0x482480017ff88000","0x1","0x208b7fff7fff7ffe","0x40780017fff7fff","0x1","0x480680017fff8000","0x4f7574206f6620676173","0x400080007ffe7fff","0x480a7ff87fff8000","0x482680017ff98000","0x1","0x480a7ffa7fff8000","0x480a7ffb7fff8000","0x480680017fff8000","0x1","0x48127ff97fff8000","0x482480017ff88000","0x1","0x208b7fff7fff7ffe","0x480680017fff8000","0x0","0x480680017fff8000","0x361458367e696363fbcc70777d07ebbd2394e89fd0adcaf147faccd1d294d60","0x480680017fff8000","0x53746f7261676552656164","0x400280007ffd7fff","0x400380017ffd7ffc","0x400280027ffd7ffd","0x400280037ffd7ffe","0x480280057ffd8000","0x20680017fff7fff","0xc","0x480280047ffd8000","0x482680017ffd8000","0x7","0x480680017fff8000","0x0","0x480680017fff8000","0x0","0x480280067ffd8000","0x10780017fff7fff","0x9","0x480280047ffd8000","0x482680017ffd8000","0x8","0x480680017fff8000","0x1","0x480280067ffd8000","0x480280077ffd8000","0x1104800180018000","0x3c8","0x20680017fff7ffd","0xa","0x48127ff67fff8000","0x48127ff67fff8000","0x480680017fff8000","0x0","0x480680017fff8000","0x0","0x48127ffb7fff8000","0x208b7fff7fff7ffe","0x48127ff67fff8000","0x48127ff67fff8000","0x480680017fff8000","0x1","0x48127ffb7fff8000","0x48127ffb7fff8000","0x208b7fff7fff7ffe","0x400380007ffd7ffb","0x480a7ffc7fff8000","0x482680017ffd8000","0x1","0x208b7fff7fff7ffe","0x480a7ffd7fff8000","0x208b7fff7fff7ffe","0x480680017fff8000","0x0","0x480680017fff8000","0x216b05c387bab9ac31918a3e61672f4618601f3c598a2f3f2710f37053e1ea4","0x480680017fff8000","0x53746f7261676552656164","0x400280007ffd7fff","0x400380017ffd7ffc","0x400280027ffd7ffd","0x400280037ffd7ffe","0x480280057ffd8000","0x20680017fff7fff","0xc","0x480280047ffd8000","0x482680017ffd8000","0x7","0x480680017fff8000","0x0","0x480680017fff8000","0x0","0x480280067ffd8000","0x10780017fff7fff","0x9","0x480280047ffd8000","0x482680017ffd8000","0x8","0x480680017fff8000","0x1","0x480280067ffd8000","0x480280077ffd8000","0x1104800180018000","0x390","0x20680017fff7ffd","0xa","0x48127ff67fff8000","0x48127ff67fff8000","0x480680017fff8000","0x0","0x480680017fff8000","0x0","0x48127ffb7fff8000","0x208b7fff7fff7ffe","0x48127ff67fff8000","0x48127ff67fff8000","0x480680017fff8000","0x1","0x48127ffb7fff8000","0x48127ffb7fff8000","0x208b7fff7fff7ffe","0x480a7ffb7fff8000","0x480a7ffc7fff8000","0x480a7ffd7fff8000","0x480680017fff8000","0x0","0x480680017fff8000","0x4c4fb1ab068f6039d5780c68dd0fa2f8742cceb3426d19667778ca7f3518a9","0x1104800180018000","0x383","0x20680017fff7ffc","0x1a","0x48127ffd7fff8000","0x48127ffd7fff8000","0x48127ffd7fff8000","0x1104800180018000","0x3b8","0x20680017fff7ffd","0xb","0x48127ff17fff8000","0x48127ff17fff8000","0x48127ff17fff8000","0x480680017fff8000","0x0","0x480680017fff8000","0x0","0x48127ffa7fff8000","0x208b7fff7fff7ffe","0x48127ff17fff8000","0x48127ff17fff8000","0x48127ff17fff8000","0x480680017fff8000","0x1","0x48127ffa7fff8000","0x48127ffa7fff8000","0x208b7fff7fff7ffe","0x40780017fff7fff","0x8","0x48127ff17fff8000","0x48127ff17fff8000","0x48127ff17fff8000","0x480680017fff8000","0x1","0x48127ff27fff8000","0x48127ff27fff8000","0x208b7fff7fff7ffe","0x480a7ffb7fff8000","0x480a7ffc7fff8000","0x480a7ffd7fff8000","0x1104800180018000","0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff99","0x48127ffe7fff8000","0x48127ffe7fff8000","0x208b7fff7fff7ffe","0x480a7ffb7fff8000","0x480a7ffc7fff8000","0x480a7ffd7fff8000","0x480680017fff8000","0x0","0x480680017fff8000","0x1557182e4359a1f0c6301278e8f5b35a776ab58d39892581e357578fb287836","0x1104800180018000","0x397","0x20680017fff7ffc","0x19","0x48127ffd7fff8000","0x48127ffd7fff8000","0x48127ffd7fff8000","0x1104800180018000","0x3f0","0x20680017fff7ffd","0xa","0x48127ff17fff8000","0x48127ff17fff8000","0x48127ff17fff8000","0x480680017fff8000","0x0","0x48127ffa7fff8000","0x48127ffa7fff8000","0x208b7fff7fff7ffe","0x48127ff17fff8000","0x48127ff17fff8000","0x48127ff17fff8000","0x480680017fff8000","0x1","0x48127ffa7fff8000","0x48127ffa7fff8000","0x208b7fff7fff7ffe","0x40780017fff7fff","0x8","0x48127ff17fff8000","0x48127ff17fff8000","0x48127ff17fff8000","0x480680017fff8000","0x1","0x48127ff27fff8000","0x48127ff27fff8000","0x208b7fff7fff7ffe","0x480a7ffa7fff8000","0x480a7ffc7fff8000","0x480a7ffd7fff8000","0x1104800180018000","0x3db","0x480a7ffb7fff8000","0x48127ffd7fff8000","0x48127ffd7fff8000","0x1104800180018000","0x3d6","0x208b7fff7fff7ffe","0x480a7ffc7fff8000","0x480a7ffd7fff8000","0x1104800180018000","0x210","0x20680017fff7ffe","0x2b","0xa0680017fff8004","0xe","0x4824800180047ffe","0x800000000000000000000000000000000000000000000000000000000000000","0x484480017ffe8000","0x110000000000000000","0x48307ffe7fff8002","0x480280007ffb7ffc","0x480280017ffb7ffc","0x402480017ffb7ffd","0xffffffffffffffeeffffffffffffffff","0x400280027ffb7ffd","0x10780017fff7fff","0x14","0x484480017fff8001","0x8000000000000000000000000000000","0x48307fff80007ffd","0x480280007ffb7ffd","0x480280017ffb7ffd","0x402480017ffc7ffe","0xf8000000000000000000000000000000","0x400280027ffb7ffe","0x40780017fff7fff","0x1","0x482680017ffb8000","0x3","0x48127ff57fff8000","0x48127ff57fff8000","0x480680017fff8000","0x0","0x48127ff57fff8000","0x208b7fff7fff7ffe","0x482680017ffb8000","0x3","0x48127ff57fff8000","0x48127ff57fff8000","0x480680017fff8000","0x1","0x480680017fff8000","0x0","0x208b7fff7fff7ffe","0x40780017fff7fff","0x6","0x480a7ffb7fff8000","0x48127ff57fff8000","0x48127ff57fff8000","0x480680017fff8000","0x1","0x480680017fff8000","0x0","0x208b7fff7fff7ffe","0x480a7ff97fff8000","0x480a7ffb7fff8000","0x480a7ffd7fff8000","0x1104800180018000","0x39f","0x48127ffd7fff8000","0x480a7ffa7fff8000","0x480a7ffc7fff8000","0x480680017fff8000","0x0","0x48127ffb7fff8000","0x1104800180018000","0x323","0x20680017fff7ffc","0x1b","0x48127ffd7fff8000","0x48127ffd7fff8000","0x48127ffd7fff8000","0x1104800180018000","0x37c","0x20680017fff7ffd","0xb","0x48127ff17fff8000","0x48127ff17fff8000","0x48127fb17fff8000","0x48127ff07fff8000","0x480680017fff8000","0x0","0x48127ff97fff8000","0x48127ff97fff8000","0x208b7fff7fff7ffe","0x48127ff17fff8000","0x48127ff17fff8000","0x48127fb17fff8000","0x48127ff07fff8000","0x480680017fff8000","0x1","0x48127ff97fff8000","0x48127ff97fff8000","0x208b7fff7fff7ffe","0x40780017fff7fff","0x8","0x48127ff17fff8000","0x48127ff17fff8000","0x48127fb17fff8000","0x48127ff07fff8000","0x480680017fff8000","0x1","0x48127ff17fff8000","0x48127ff17fff8000","0x208b7fff7fff7ffe","0x480a7ff87fff8000","0x480a7ff97fff8000","0x480a7ffa7fff8000","0x480a7ffb7fff8000","0x480a7ffc7fff8000","0x480a7ffd7fff8000","0x1104800180018000","0x391","0x20680017fff7ffd","0xb","0x48127ff97fff8000","0x48127ff97fff8000","0x48127ff97fff8000","0x48127ff97fff8000","0x480680017fff8000","0x0","0x48127ff97fff8000","0x48127ff97fff8000","0x208b7fff7fff7ffe","0x48127ff97fff8000","0x48127ff97fff8000","0x48127ff97fff8000","0x48127ff97fff8000","0x480680017fff8000","0x1","0x48127ff97fff8000","0x48127ff97fff8000","0x208b7fff7fff7ffe","0x480a7ffb7fff8000","0x480a7ffc7fff8000","0x480a7ffd7fff8000","0x1104800180018000","0x3ac","0x20680017fff7ffe","0x1b","0x48127ffb7fff8000","0x48127ffb7fff8000","0x48127ffb7fff8000","0x1104800180018000","0x3a5","0x20680017fff7ffe","0xa","0x48127ffb7fff8000","0x48127ffb7fff8000","0x48127ffb7fff8000","0x480680017fff8000","0x0","0x48127fdc7fff8000","0x48127ffa7fff8000","0x208b7fff7fff7ffe","0x48127ffb7fff8000","0x48127ffb7fff8000","0x48127ffb7fff8000","0x480680017fff8000","0x1","0x480680017fff8000","0x0","0x480680017fff8000","0x0","0x208b7fff7fff7ffe","0x40780017fff7fff","0x1f","0x48127fdc7fff8000","0x48127fdc7fff8000","0x48127fdc7fff8000","0x480680017fff8000","0x1","0x480680017fff8000","0x0","0x480680017fff8000","0x0","0x208b7fff7fff7ffe","0x480a7ff87fff8000","0x480a7ffa7fff8000","0x1104800180018000","0x3b8","0x20680017fff7ffd","0x22","0x480a7ff77fff8000","0x48127ffa7fff8000","0x480a7ff97fff8000","0x48127ff97fff8000","0x48127ffb7fff8000","0x480a7ffb7fff8000","0x480a7ffc7fff8000","0x480a7ffd7fff8000","0x1104800180018000","0x3c1","0x20680017fff7ffd","0xd","0x48127ff97fff8000","0x48127ff97fff8000","0x48127ff97fff8000","0x48127ff97fff8000","0x480680017fff8000","0x0","0x480680017fff8000","0x0","0x480680017fff8000","0x0","0x208b7fff7fff7ffe","0x48127ff97fff8000","0x48127ff97fff8000","0x48127ff97fff8000","0x48127ff97fff8000","0x480680017fff8000","0x1","0x48127ff97fff8000","0x48127ff97fff8000","0x208b7fff7fff7ffe","0x40780017fff7fff","0x23b","0x480a7ff77fff8000","0x48127dbf7fff8000","0x480a7ff97fff8000","0x48127dbe7fff8000","0x480680017fff8000","0x1","0x48127dbe7fff8000","0x48127dbe7fff8000","0x208b7fff7fff7ffe","0x480a7ff77fff8000","0x480a7ff97fff8000","0x1104800180018000","0x387","0x20680017fff7ffd","0x39","0x480a7ff67fff8000","0x48127ffa7fff8000","0x480a7ff87fff8000","0x48127ff97fff8000","0x480a7ffa7fff8000","0x48127ffa7fff8000","0x480a7ffc7fff8000","0x480a7ffd7fff8000","0x1104800180018000","0x470","0x20680017fff7ffd","0x22","0x48127ff97fff8000","0x48127ff97fff8000","0x48127ff97fff8000","0x48127ff97fff8000","0x480a7ffa7fff8000","0x480a7ffb7fff8000","0x480a7ffc7fff8000","0x480a7ffd7fff8000","0x1104800180018000","0x384","0x20680017fff7ffd","0xd","0x48127ff97fff8000","0x48127ff97fff8000","0x48127ff97fff8000","0x48127ff97fff8000","0x480680017fff8000","0x0","0x480680017fff8000","0x0","0x480680017fff8000","0x0","0x208b7fff7fff7ffe","0x48127ff97fff8000","0x48127ff97fff8000","0x48127ff97fff8000","0x48127ff97fff8000","0x480680017fff8000","0x1","0x48127ff97fff8000","0x48127ff97fff8000","0x208b7fff7fff7ffe","0x40780017fff7fff","0x23b","0x48127dbe7fff8000","0x48127dbe7fff8000","0x48127dbe7fff8000","0x48127dbe7fff8000","0x480680017fff8000","0x1","0x48127dbe7fff8000","0x48127dbe7fff8000","0x208b7fff7fff7ffe","0x40780017fff7fff","0x3c3","0x480a7ff67fff8000","0x48127c377fff8000","0x480a7ff87fff8000","0x48127c367fff8000","0x480680017fff8000","0x1","0x48127c367fff8000","0x48127c367fff8000","0x208b7fff7fff7ffe","0x480a7ff87fff8000","0x480a7ffa7fff8000","0x1104800180018000","0x33f","0x20680017fff7ffd","0x22","0x480a7ff77fff8000","0x48127ffa7fff8000","0x480a7ff97fff8000","0x48127ff97fff8000","0x48127ffb7fff8000","0x480a7ffb7fff8000","0x480a7ffc7fff8000","0x480a7ffd7fff8000","0x1104800180018000","0x497","0x20680017fff7ffd","0xd","0x48127ff97fff8000","0x48127ff97fff8000","0x48127ff97fff8000","0x48127ff97fff8000","0x480680017fff8000","0x0","0x480680017fff8000","0x0","0x480680017fff8000","0x0","0x208b7fff7fff7ffe","0x48127ff97fff8000","0x48127ff97fff8000","0x48127ff97fff8000","0x48127ff97fff8000","0x480680017fff8000","0x1","0x48127ff97fff8000","0x48127ff97fff8000","0x208b7fff7fff7ffe","0x40780017fff7fff","0xc0","0x480a7ff77fff8000","0x48127f3a7fff8000","0x480a7ff97fff8000","0x48127f397fff8000","0x480680017fff8000","0x1","0x48127f397fff8000","0x48127f397fff8000","0x208b7fff7fff7ffe","0x480a7ff87fff8000","0x480a7ffa7fff8000","0x1104800180018000","0x30e","0x20680017fff7ffd","0x4b","0x480a7ff77fff8000","0x48127ffa7fff8000","0x480a7ff97fff8000","0x48127ff97fff8000","0x48127ffb7fff8000","0x480a7ffb7fff8000","0x1104800180018000","0x299","0x20680017fff7ffd","0x36","0x48127ff97fff8000","0x48127ffd7fff8000","0x48127ffd7fff8000","0x480a7ffc7fff8000","0x480a7ffd7fff8000","0x1104800180018000","0x4b7","0x20680017fff7ffd","0x22","0x48127ffc7fff8000","0x48127fc67fff8000","0x48127fc67fff8000","0x48127fc67fff8000","0x48127f4c7fff8000","0x480a7ffb7fff8000","0x48127ff87fff8000","0x48127ff87fff8000","0x1104800180018000","0x453","0x20680017fff7ffd","0xd","0x48127ff97fff8000","0x48127ff97fff8000","0x48127ff97fff8000","0x48127ff97fff8000","0x480680017fff8000","0x0","0x480680017fff8000","0x0","0x480680017fff8000","0x0","0x208b7fff7fff7ffe","0x48127ff97fff8000","0x48127ff97fff8000","0x48127ff97fff8000","0x48127ff97fff8000","0x480680017fff8000","0x1","0x48127ff97fff8000","0x48127ff97fff8000","0x208b7fff7fff7ffe","0x40780017fff7fff","0xc0","0x48127f3c7fff8000","0x48127f067fff8000","0x48127f067fff8000","0x48127f067fff8000","0x480680017fff8000","0x1","0x48127f397fff8000","0x48127f397fff8000","0x208b7fff7fff7ffe","0x40780017fff7fff","0xf3","0x48127f067fff8000","0x48127f067fff8000","0x48127f067fff8000","0x48127f067fff8000","0x480680017fff8000","0x1","0x48127f067fff8000","0x48127f067fff8000","0x208b7fff7fff7ffe","0x40780017fff7fff","0x16f","0x480a7ff77fff8000","0x48127e8b7fff8000","0x480a7ff97fff8000","0x48127e8a7fff8000","0x480680017fff8000","0x1","0x48127e8a7fff8000","0x48127e8a7fff8000","0x208b7fff7fff7ffe","0x480a7ff87fff8000","0x480a7ffa7fff8000","0x1104800180018000","0x2b4","0x20680017fff7ffd","0x4b","0x480a7ff77fff8000","0x48127ffa7fff8000","0x480a7ff97fff8000","0x48127ff97fff8000","0x48127ffb7fff8000","0x480a7ffb7fff8000","0x1104800180018000","0x23f","0x20680017fff7ffd","0x36","0x48127ff97fff8000","0x48127ffd7fff8000","0x48127ffd7fff8000","0x480a7ffc7fff8000","0x480a7ffd7fff8000","0x1104800180018000","0x47a","0x20680017fff7ffd","0x22","0x48127ffc7fff8000","0x48127fc67fff8000","0x48127fc67fff8000","0x48127fc67fff8000","0x48127f4c7fff8000","0x480a7ffb7fff8000","0x48127ff87fff8000","0x48127ff87fff8000","0x1104800180018000","0x3f9","0x20680017fff7ffd","0xd","0x48127ff97fff8000","0x48127ff97fff8000","0x48127ff97fff8000","0x48127ff97fff8000","0x480680017fff8000","0x0","0x480680017fff8000","0x0","0x480680017fff8000","0x0","0x208b7fff7fff7ffe","0x48127ff97fff8000","0x48127ff97fff8000","0x48127ff97fff8000","0x48127ff97fff8000","0x480680017fff8000","0x1","0x48127ff97fff8000","0x48127ff97fff8000","0x208b7fff7fff7ffe","0x40780017fff7fff","0xc0","0x48127f3c7fff8000","0x48127f067fff8000","0x48127f067fff8000","0x48127f067fff8000","0x480680017fff8000","0x1","0x48127f397fff8000","0x48127f397fff8000","0x208b7fff7fff7ffe","0x40780017fff7fff","0xf3","0x48127f067fff8000","0x48127f067fff8000","0x48127f067fff8000","0x48127f067fff8000","0x480680017fff8000","0x1","0x48127f067fff8000","0x48127f067fff8000","0x208b7fff7fff7ffe","0x40780017fff7fff","0x16f","0x480a7ff77fff8000","0x48127e8b7fff8000","0x480a7ff97fff8000","0x48127e8a7fff8000","0x480680017fff8000","0x1","0x48127e8a7fff8000","0x48127e8a7fff8000","0x208b7fff7fff7ffe","0x48297ffc80007ffd","0x20680017fff7fff","0x4","0x10780017fff7fff","0xa","0x482680017ffc8000","0x1","0x480a7ffd7fff8000","0x480680017fff8000","0x0","0x480a7ffc7fff8000","0x10780017fff7fff","0x8","0x480a7ffc7fff8000","0x480a7ffd7fff8000","0x480680017fff8000","0x1","0x480680017fff8000","0x0","0x48127ffc7fff8000","0x48127ffc7fff8000","0x20680017fff7ffc","0x9","0x480080007ffd8000","0x48127ffd7fff8000","0x48127ffd7fff8000","0x480680017fff8000","0x0","0x48127ffc7fff8000","0x208b7fff7fff7ffe","0x40780017fff7fff","0x1","0x48127ffd7fff8000","0x48127ffd7fff8000","0x480680017fff8000","0x1","0x480680017fff8000","0x0","0x208b7fff7fff7ffe","0x48297ffc80007ffd","0x20680017fff7fff","0x4","0x10780017fff7fff","0xa","0x482680017ffc8000","0x1","0x480a7ffd7fff8000","0x480680017fff8000","0x0","0x480a7ffc7fff8000","0x10780017fff7fff","0x8","0x480a7ffc7fff8000","0x480a7ffd7fff8000","0x480680017fff8000","0x1","0x480680017fff8000","0x0","0x48127ffc7fff8000","0x48127ffc7fff8000","0x20680017fff7ffc","0x18","0x480080007ffd8000","0x480a7ffb7fff8000","0x48127ffe7fff8000","0x1104800180018000","0x411","0x20680017fff7ffe","0x9","0x48127ffd7fff8000","0x48127fee7fff8000","0x48127fee7fff8000","0x480680017fff8000","0x0","0x48127ffb7fff8000","0x208b7fff7fff7ffe","0x48127ffd7fff8000","0x48127fee7fff8000","0x48127fee7fff8000","0x480680017fff8000","0x1","0x480680017fff8000","0x0","0x208b7fff7fff7ffe","0x40780017fff7fff","0xf","0x480a7ffb7fff8000","0x48127fee7fff8000","0x48127fee7fff8000","0x480680017fff8000","0x1","0x480680017fff8000","0x0","0x208b7fff7fff7ffe","0x480a7ff57fff8000","0x480a7ff77fff8000","0x480a7ff87fff8000","0x1104800180018000","0x417","0x20680017fff7ffd","0x91","0x48127ffb7fff8000","0x48127ffb7fff8000","0x480a7ff97fff8000","0x1104800180018000","0x444","0x20680017fff7ffd","0x7f","0x48127ffb7fff8000","0x48127ffb7fff8000","0x480a7ffa7fff8000","0x1104800180018000","0x471","0x20680017fff7ffd","0x6d","0x4825800180007ffd","0x0","0x20680017fff7fff","0x6","0x480680017fff8000","0x1","0x10780017fff7fff","0x4","0x480680017fff8000","0x0","0x480680017fff8000","0x1","0x48307ffe80007fff","0x480680017fff8000","0x1","0x48307ffe80007fff","0x20680017fff7fff","0x4a","0x48127ff57fff8000","0x48127ff57fff8000","0x480a7ffb7fff8000","0x480a7ffc7fff8000","0x1104800180018000","0x48b","0x20680017fff7ffd","0x37","0x480a7ff47fff8000","0x48127ffa7fff8000","0x480a7ff67fff8000","0x48127ff97fff8000","0x480a7ffd7fff8000","0x480a7ffb7fff8000","0x480a7ffc7fff8000","0x1104800180018000","0x49e","0x20680017fff7ffd","0x21","0x48127ffa7fff8000","0x48127ffb7fff8000","0x480680017fff8000","0x0","0x480a7ffd7fff8000","0x480a7ffb7fff8000","0x480a7ffc7fff8000","0x1104800180018000","0x4b9","0x20680017fff7ffd","0xd","0x48127f9b7fff8000","0x48127ffa7fff8000","0x48127f9b7fff8000","0x48127ff97fff8000","0x480680017fff8000","0x0","0x480680017fff8000","0x0","0x480680017fff8000","0x0","0x208b7fff7fff7ffe","0x48127f9b7fff8000","0x48127ffa7fff8000","0x48127f9b7fff8000","0x48127ff97fff8000","0x480680017fff8000","0x1","0x48127ff97fff8000","0x48127ff97fff8000","0x208b7fff7fff7ffe","0x40780017fff7fff","0x5e","0x48127f9b7fff8000","0x48127f9b7fff8000","0x48127f9b7fff8000","0x48127f9b7fff8000","0x480680017fff8000","0x1","0x48127f9b7fff8000","0x48127f9b7fff8000","0x208b7fff7fff7ffe","0x40780017fff7fff","0x9c","0x480a7ff47fff8000","0x48127f5e7fff8000","0x480a7ff67fff8000","0x48127f5d7fff8000","0x480680017fff8000","0x1","0x48127f5d7fff8000","0x48127f5d7fff8000","0x208b7fff7fff7ffe","0x40780017fff7fff","0xbd","0x40780017fff7fff","0x1","0x480680017fff8000","0x45524332303a206d696e7420746f2074686520302061646472657373","0x400080007ffe7fff","0x480a7ff47fff8000","0x48127f357fff8000","0x480a7ff67fff8000","0x48127f347fff8000","0x480680017fff8000","0x1","0x48127ff97fff8000","0x482480017ff88000","0x1","0x208b7fff7fff7ffe","0x40780017fff7fff","0xc5","0x480a7ff47fff8000","0x48127f357fff8000","0x480a7ff67fff8000","0x48127f347fff8000","0x480680017fff8000","0x1","0x48127f347fff8000","0x48127f347fff8000","0x208b7fff7fff7ffe","0x40780017fff7fff","0xdd","0x480a7ff47fff8000","0x48127f1d7fff8000","0x480a7ff67fff8000","0x48127f1c7fff8000","0x480680017fff8000","0x1","0x48127f1c7fff8000","0x48127f1c7fff8000","0x208b7fff7fff7ffe","0x40780017fff7fff","0xf5","0x480a7ff47fff8000","0x48127f057fff8000","0x480a7ff67fff8000","0x48127f047fff8000","0x480680017fff8000","0x1","0x48127f047fff8000","0x48127f047fff8000","0x208b7fff7fff7ffe","0x20780017fff7ffb","0x8","0x480680017fff8000","0x0","0x480680017fff8000","0x0","0x480a7ffd7fff8000","0x208b7fff7fff7ffe","0x480680017fff8000","0x1","0x480a7ffc7fff8000","0x480a7ffd7fff8000","0x208b7fff7fff7ffe","0x480680017fff8000","0x53746f7261676552656164","0x400280007ffb7fff","0x400380017ffb7ffa","0x400380027ffb7ffc","0x400380037ffb7ffd","0x480280057ffb8000","0x20680017fff7fff","0x28","0x480a7ff97fff8000","0x480280067ffb8000","0x1104800180018000","0x33b","0x480280047ffb8000","0x482680017ffb8000","0x7","0x20680017fff7ffc","0xf","0x40780017fff7fff","0x2","0x48127ff97fff8000","0x48127ffb7fff8000","0x48127ffb7fff8000","0x480680017fff8000","0x0","0x480680017fff8000","0x0","0x480680017fff8000","0x0","0x48127ff57fff8000","0x208b7fff7fff7ffe","0x40780017fff7fff","0x1","0x480680017fff8000","0x53746f726167654163636573735538202d206e6f6e207538","0x400080007ffe7fff","0x48127ff97fff8000","0x48127ffb7fff8000","0x48127ffb7fff8000","0x480680017fff8000","0x1","0x480680017fff8000","0x0","0x48127ff97fff8000","0x482480017ff88000","0x1","0x208b7fff7fff7ffe","0x40780017fff7fff","0x12","0x480a7ff97fff8000","0x480280047ffb8000","0x482680017ffb8000","0x8","0x480680017fff8000","0x0","0x480680017fff8000","0x1","0x480280067ffb8000","0x480280077ffb8000","0x208b7fff7fff7ffe","0x20780017fff7ffb","0x8","0x480680017fff8000","0x0","0x480680017fff8000","0x0","0x480a7ffd7fff8000","0x208b7fff7fff7ffe","0x480680017fff8000","0x1","0x480a7ffc7fff8000","0x480a7ffd7fff8000","0x208b7fff7fff7ffe","0x480a7ff97fff8000","0x480a7ffa7fff8000","0x480a7ffb7fff8000","0x480a7ffc7fff8000","0x480a7ffd7fff8000","0x1104800180018000","0x44b","0x20680017fff7ffc","0x4d","0x20680017fff7ffd","0x3f","0x482680017ffd8000","0x1","0x480680017fff8000","0x53746f7261676552656164","0x400080007ff97fff","0x400080017ff97ff8","0x400180027ff97ffc","0x400080037ff97ffe","0x480080057ff98000","0x20680017fff7fff","0x27","0x48127ff67fff8000","0x480080067ff78000","0x1104800180018000","0x474","0x480080047feb8000","0x482480017fea8000","0x7","0x20680017fff7ffc","0xe","0x40780017fff7fff","0x2","0x48127ff97fff8000","0x48127ffb7fff8000","0x48127ffb7fff8000","0x480680017fff8000","0x0","0x480680017fff8000","0x0","0x48127fe67fff8000","0x48127ff57fff8000","0x208b7fff7fff7ffe","0x40780017fff7fff","0x1","0x480680017fff8000","0x53746f7261676541636365737355323536202d206e6f6e2075323536","0x400080007ffe7fff","0x48127ff97fff8000","0x48127ffb7fff8000","0x48127ffb7fff8000","0x480680017fff8000","0x1","0x480680017fff8000","0x0","0x48127ff97fff8000","0x482480017ff88000","0x1","0x208b7fff7fff7ffe","0x40780017fff7fff","0x11","0x48127fe57fff8000","0x480080047fe68000","0x482480017fe58000","0x8","0x480680017fff8000","0x0","0x480680017fff8000","0x1","0x480080067fe28000","0x480080077fe18000","0x208b7fff7fff7ffe","0x40780017fff7fff","0x14","0x48127fe57fff8000","0x48127fe57fff8000","0x48127fe57fff8000","0x480680017fff8000","0x0","0x480680017fff8000","0x1","0x48127fe57fff8000","0x48127fe57fff8000","0x208b7fff7fff7ffe","0x40780017fff7fff","0x14","0x48127fe57fff8000","0x48127fe57fff8000","0x48127fe57fff8000","0x480680017fff8000","0x1","0x480680017fff8000","0x0","0x48127fe57fff8000","0x48127fe57fff8000","0x208b7fff7fff7ffe","0x20780017fff7ffb","0x7","0x480680017fff8000","0x0","0x480a7ffc7fff8000","0x480a7ffd7fff8000","0x208b7fff7fff7ffe","0x480680017fff8000","0x1","0x480a7ffc7fff8000","0x480a7ffd7fff8000","0x208b7fff7fff7ffe","0x480a7ffb7fff8000","0x480a7ffc7fff8000","0x480a7ffd7fff8000","0x1104800180018000","0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffb87","0x48127ffe7fff8000","0x48127ffe7fff8000","0x208b7fff7fff7ffe","0x480a7ffc7fff8000","0x480680017fff8000","0x25b1ef8ee6544359221f3cf316f768360e83448109193bdcef77f52a79d95c4","0x480a7ffd7fff8000","0x1104800180018000","0x43b","0xa0680017fff8005","0xe","0x4824800180057ffe","0x7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00","0x484480017ffe8000","0x110000000000000000","0x48307ffe7fff8003","0x480280007ffb7ffc","0x480280017ffb7ffc","0x482480017ffb7ffd","0xffffffffffffffeefffffffffffffeff","0x400280027ffb7ffc","0x10780017fff7fff","0x11","0x48127ffe7fff8005","0x484480017ffe8000","0x8000000000000000000000000000000","0x48307ffe7fff8003","0x480280007ffb7ffd","0x482480017ffc7ffe","0xf0000000000000000000000000000100","0x480280017ffb7ffd","0x400280027ffb7ff9","0x402480017ffd7ff9","0xffffffffffffffffffffffffffffffff","0x20680017fff7ffd","0x4","0x402780017fff7fff","0x1","0x482680017ffb8000","0x3","0x48127ff67fff8000","0x48127ffd7fff8000","0x208b7fff7fff7ffe","0x480a7ff87fff8000","0x480a7ffa7fff8000","0x480a7ffc7fff8000","0x480a7ffd7fff8000","0x1104800180018000","0x419","0x48127ffd7fff8000","0x480a7ff97fff8000","0x480a7ffb7fff8000","0x480680017fff8000","0x0","0x48127ffb7fff8000","0x1104800180018000","0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff59","0x20680017fff7ffc","0x1b","0x48127ffd7fff8000","0x48127ffd7fff8000","0x48127ffd7fff8000","0x1104800180018000","0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffb2","0x20680017fff7ffd","0xb","0x48127ff17fff8000","0x48127ff17fff8000","0x48127fb17fff8000","0x48127ff07fff8000","0x480680017fff8000","0x0","0x48127ff97fff8000","0x48127ff97fff8000","0x208b7fff7fff7ffe","0x48127ff17fff8000","0x48127ff17fff8000","0x48127fb17fff8000","0x48127ff07fff8000","0x480680017fff8000","0x1","0x48127ff97fff8000","0x48127ff97fff8000","0x208b7fff7fff7ffe","0x40780017fff7fff","0x8","0x48127ff17fff8000","0x48127ff17fff8000","0x48127fb17fff8000","0x48127ff07fff8000","0x480680017fff8000","0x1","0x48127ff17fff8000","0x48127ff17fff8000","0x208b7fff7fff7ffe","0x48297ffc80007ffd","0x20680017fff7fff","0x4","0x10780017fff7fff","0xa","0x482680017ffc8000","0x1","0x480a7ffd7fff8000","0x480680017fff8000","0x0","0x480a7ffc7fff8000","0x10780017fff7fff","0x8","0x480a7ffc7fff8000","0x480a7ffd7fff8000","0x480680017fff8000","0x1","0x480680017fff8000","0x0","0x48127ffc7fff8000","0x48127ffc7fff8000","0x20680017fff7ffc","0x18","0x480080007ffd8000","0x480a7ffb7fff8000","0x48127ffe7fff8000","0x1104800180018000","0x3a2","0x20680017fff7ffe","0x9","0x48127ffd7fff8000","0x48127fef7fff8000","0x48127fef7fff8000","0x480680017fff8000","0x0","0x48127ffb7fff8000","0x208b7fff7fff7ffe","0x48127ffd7fff8000","0x48127fef7fff8000","0x48127fef7fff8000","0x480680017fff8000","0x1","0x480680017fff8000","0x0","0x208b7fff7fff7ffe","0x40780017fff7fff","0xe","0x480a7ffb7fff8000","0x48127fef7fff8000","0x48127fef7fff8000","0x480680017fff8000","0x1","0x480680017fff8000","0x0","0x208b7fff7fff7ffe","0x480a7ffc7fff8000","0x480a7ffd7fff8000","0x1104800180018000","0x3d9","0x20680017fff7ffd","0xa","0x48127ffb7fff8000","0x48127ffb7fff8000","0x480680017fff8000","0x0","0x480680017fff8000","0x0","0x480080027ffb8000","0x208b7fff7fff7ffe","0x48127ffb7fff8000","0x48127ffb7fff8000","0x480680017fff8000","0x1","0x48127ffb7fff8000","0x48127ffb7fff8000","0x208b7fff7fff7ffe","0x4825800180007ffa","0x0","0x20680017fff7fff","0x6","0x480680017fff8000","0x1","0x10780017fff7fff","0x4","0x480680017fff8000","0x0","0x480680017fff8000","0x1","0x48307ffe80007fff","0x480680017fff8000","0x1","0x48307ffe80007fff","0x20680017fff7fff","0xbf","0x4825800180007ffb","0x0","0x20680017fff7fff","0x6","0x480680017fff8000","0x1","0x10780017fff7fff","0x4","0x480680017fff8000","0x0","0x480680017fff8000","0x1","0x48307ffe80007fff","0x480680017fff8000","0x1","0x48307ffe80007fff","0x20680017fff7fff","0x9c","0x480a7ff67fff8000","0x480a7ff77fff8000","0x480a7ff87fff8000","0x480a7ff97fff8000","0x480a7ffa7fff8000","0x1104800180018000","0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffb8e","0x20680017fff7ffd","0x88","0x48127ff97fff8000","0x48127ffd7fff8000","0x48127ffd7fff8000","0x480a7ffc7fff8000","0x480a7ffd7fff8000","0x1104800180018000","0x192","0x20680017fff7ffd","0x74","0x48127ffc7fff8000","0x48127fc67fff8000","0x48127fc67fff8000","0x48127fc67fff8000","0x480a7ffa7fff8000","0x48127ff97fff8000","0x48127ff97fff8000","0x1104800180018000","0x284","0x20680017fff7ffd","0x5e","0x48127ff97fff8000","0x48127ff97fff8000","0x48127ff97fff8000","0x48127ff97fff8000","0x480a7ffb7fff8000","0x1104800180018000","0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffb71","0x20680017fff7ffd","0x4a","0x48127ff97fff8000","0x48127ffd7fff8000","0x48127ffd7fff8000","0x480a7ffc7fff8000","0x480a7ffd7fff8000","0x1104800180018000","0x158","0x20680017fff7ffd","0x36","0x48127ffc7fff8000","0x48127fc67fff8000","0x48127fc67fff8000","0x48127fc67fff8000","0x480a7ffb7fff8000","0x48127ff97fff8000","0x48127ff97fff8000","0x1104800180018000","0x267","0x20680017fff7ffd","0x20","0x48127ffa7fff8000","0x48127ffb7fff8000","0x480a7ffa7fff8000","0x480a7ffb7fff8000","0x480a7ffc7fff8000","0x480a7ffd7fff8000","0x1104800180018000","0x283","0x20680017fff7ffd","0xd","0x48127f9b7fff8000","0x48127ffa7fff8000","0x48127f9b7fff8000","0x48127ff97fff8000","0x480680017fff8000","0x0","0x480680017fff8000","0x0","0x480680017fff8000","0x0","0x208b7fff7fff7ffe","0x48127f9b7fff8000","0x48127ffa7fff8000","0x48127f9b7fff8000","0x48127ff97fff8000","0x480680017fff8000","0x1","0x48127ff97fff8000","0x48127ff97fff8000","0x208b7fff7fff7ffe","0x40780017fff7fff","0x5e","0x48127f9b7fff8000","0x48127f9b7fff8000","0x48127f9b7fff8000","0x48127f9b7fff8000","0x480680017fff8000","0x1","0x48127f9b7fff8000","0x48127f9b7fff8000","0x208b7fff7fff7ffe","0x40780017fff7fff","0x9c","0x48127f607fff8000","0x48127f2a7fff8000","0x48127f2a7fff8000","0x48127f2a7fff8000","0x480680017fff8000","0x1","0x48127f5d7fff8000","0x48127f5d7fff8000","0x208b7fff7fff7ffe","0x40780017fff7fff","0xcf","0x48127f2a7fff8000","0x48127f2a7fff8000","0x48127f2a7fff8000","0x48127f2a7fff8000","0x480680017fff8000","0x1","0x48127f2a7fff8000","0x48127f2a7fff8000","0x208b7fff7fff7ffe","0x40780017fff7fff","0x13e","0x48127ebb7fff8000","0x48127ebb7fff8000","0x48127ebb7fff8000","0x48127ebb7fff8000","0x480680017fff8000","0x1","0x48127ebb7fff8000","0x48127ebb7fff8000","0x208b7fff7fff7ffe","0x40780017fff7fff","0x17c","0x48127e807fff8000","0x48127e4a7fff8000","0x48127e4a7fff8000","0x48127e4a7fff8000","0x480680017fff8000","0x1","0x48127e7d7fff8000","0x48127e7d7fff8000","0x208b7fff7fff7ffe","0x40780017fff7fff","0x1af","0x48127e4a7fff8000","0x48127e4a7fff8000","0x48127e4a7fff8000","0x48127e4a7fff8000","0x480680017fff8000","0x1","0x48127e4a7fff8000","0x48127e4a7fff8000","0x208b7fff7fff7ffe","0x40780017fff7fff","0x21c","0x40780017fff7fff","0x1","0x480680017fff8000","0x45524332303a207472616e7366657220746f2030","0x400080007ffe7fff","0x480a7ff67fff8000","0x480a7ff77fff8000","0x480a7ff87fff8000","0x480a7ff97fff8000","0x480680017fff8000","0x1","0x48127ff97fff8000","0x482480017ff88000","0x1","0x208b7fff7fff7ffe","0x40780017fff7fff","0x222","0x40780017fff7fff","0x1","0x480680017fff8000","0x45524332303a207472616e736665722066726f6d2030","0x400080007ffe7fff","0x480a7ff67fff8000","0x480a7ff77fff8000","0x480a7ff87fff8000","0x480a7ff97fff8000","0x480680017fff8000","0x1","0x48127ff97fff8000","0x482480017ff88000","0x1","0x208b7fff7fff7ffe","0x480a7ff67fff8000","0x480a7ff77fff8000","0x480a7ff87fff8000","0x480a7ff97fff8000","0x480a7ffa7fff8000","0x480a7ffb7fff8000","0x1104800180018000","0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe9b","0x20680017fff7ffd","0x5c","0x480680017fff8000","0xffffffffffffffffffffffffffffffff","0x48307fff80007ffd","0x20680017fff7fff","0x4","0x10780017fff7fff","0x6","0x480680017fff8000","0x0","0x10780017fff7fff","0x4","0x480680017fff8000","0x1","0x48307ffd80007ffc","0x20680017fff7fff","0x4","0x10780017fff7fff","0x6","0x480680017fff8000","0x0","0x10780017fff7fff","0x4","0x480680017fff8000","0x1","0x48507fff7ffd8000","0x480680017fff8000","0x1","0x48307ffe80007fff","0x20680017fff7fff","0xa","0x40780017fff7fff","0xf3","0x48127efe7fff8000","0x48127efe7fff8000","0x48127efe7fff8000","0x48127efe7fff8000","0x10780017fff7fff","0x1b","0x48127ff17fff8000","0x48127ff57fff8000","0x48127ff57fff8000","0x480a7ffc7fff8000","0x480a7ffd7fff8000","0x1104800180018000","0xaf","0x20680017fff7ffd","0x22","0x48127ffc7fff8000","0x48127fbe7fff8000","0x48127fbe7fff8000","0x48127fbe7fff8000","0x480a7ffa7fff8000","0x480a7ffb7fff8000","0x48127ff87fff8000","0x48127ff87fff8000","0x1104800180018000","0x2e","0x20680017fff7ffd","0xd","0x48127ff97fff8000","0x48127ff97fff8000","0x48127ff97fff8000","0x48127ff97fff8000","0x480680017fff8000","0x0","0x480680017fff8000","0x0","0x480680017fff8000","0x0","0x208b7fff7fff7ffe","0x48127ff97fff8000","0x48127ff97fff8000","0x48127ff97fff8000","0x48127ff97fff8000","0x480680017fff8000","0x1","0x48127ff97fff8000","0x48127ff97fff8000","0x208b7fff7fff7ffe","0x40780017fff7fff","0xc0","0x48127f3c7fff8000","0x48127efe7fff8000","0x48127efe7fff8000","0x48127efe7fff8000","0x480680017fff8000","0x1","0x48127f397fff8000","0x48127f397fff8000","0x208b7fff7fff7ffe","0x40780017fff7fff","0xfb","0x48127efe7fff8000","0x48127efe7fff8000","0x48127efe7fff8000","0x48127efe7fff8000","0x480680017fff8000","0x1","0x48127efe7fff8000","0x48127efe7fff8000","0x208b7fff7fff7ffe","0x4825800180007ffb","0x0","0x20680017fff7fff","0x6","0x480680017fff8000","0x1","0x10780017fff7fff","0x4","0x480680017fff8000","0x0","0x480680017fff8000","0x1","0x48307ffe80007fff","0x480680017fff8000","0x1","0x48307ffe80007fff","0x20680017fff7fff","0x37","0x480a7ff67fff8000","0x480a7ff77fff8000","0x480a7ff87fff8000","0x480a7ff97fff8000","0x480a7ffa7fff8000","0x480a7ffb7fff8000","0x480a7ffc7fff8000","0x480a7ffd7fff8000","0x1104800180018000","0x288","0x20680017fff7ffd","0x20","0x48127ffa7fff8000","0x48127ffb7fff8000","0x480a7ffa7fff8000","0x480a7ffb7fff8000","0x480a7ffc7fff8000","0x480a7ffd7fff8000","0x1104800180018000","0x2a5","0x20680017fff7ffd","0xd","0x48127f9b7fff8000","0x48127ffa7fff8000","0x48127f9b7fff8000","0x48127ff97fff8000","0x480680017fff8000","0x0","0x480680017fff8000","0x0","0x480680017fff8000","0x0","0x208b7fff7fff7ffe","0x48127f9b7fff8000","0x48127ffa7fff8000","0x48127f9b7fff8000","0x48127ff97fff8000","0x480680017fff8000","0x1","0x48127ff97fff8000","0x48127ff97fff8000","0x208b7fff7fff7ffe","0x40780017fff7fff","0x5e","0x48127f9b7fff8000","0x48127f9b7fff8000","0x48127f9b7fff8000","0x48127f9b7fff8000","0x480680017fff8000","0x1","0x48127f9b7fff8000","0x48127f9b7fff8000","0x208b7fff7fff7ffe","0x40780017fff7fff","0xa7","0x40780017fff7fff","0x1","0x480680017fff8000","0x45524332303a20617070726f76652066726f6d2030","0x400080007ffe7fff","0x480a7ff67fff8000","0x480a7ff77fff8000","0x480a7ff87fff8000","0x480a7ff97fff8000","0x480680017fff8000","0x1","0x48127ff97fff8000","0x482480017ff88000","0x1","0x208b7fff7fff7ffe","0x480a7ff97fff8000","0x480a7ffa7fff8000","0x480a7ffb7fff8000","0x480a7ffc7fff8000","0x480a7ffd7fff8000","0x1104800180018000","0x2b9","0x20680017fff7ffd","0xa","0x40780017fff7fff","0x2","0x48127ffa7fff8000","0x480680017fff8000","0x0","0x48127ffa7fff8000","0x48127ffa7fff8000","0x208b7fff7fff7ffe","0x40780017fff7fff","0x1","0x480680017fff8000","0x753235365f616464204f766572666c6f77","0x400080007ffe7fff","0x48127ffa7fff8000","0x480680017fff8000","0x1","0x48127ffc7fff8000","0x482480017ffb8000","0x1","0x208b7fff7fff7ffe","0x480a7ff97fff8000","0x480a7ffa7fff8000","0x480a7ffb7fff8000","0x480a7ffc7fff8000","0x480a7ffd7fff8000","0x1104800180018000","0x2b6","0x20680017fff7ffd","0xa","0x40780017fff7fff","0x2","0x48127ffa7fff8000","0x480680017fff8000","0x0","0x48127ffa7fff8000","0x48127ffa7fff8000","0x208b7fff7fff7ffe","0x40780017fff7fff","0x1","0x480680017fff8000","0x753235365f737562204f766572666c6f77","0x400080007ffe7fff","0x48127ffa7fff8000","0x480680017fff8000","0x1","0x48127ffc7fff8000","0x482480017ffb8000","0x1","0x208b7fff7fff7ffe","0xa0680017fff8000","0x12","0x4825800180007ffd","0x100","0x4844800180008002","0x8000000000000110000000000000000","0x4830800080017ffe","0x480280007ffc7fff","0x482480017ffe8000","0xefffffffffffffde00000000000000ff","0x480280017ffc7fff","0x400280027ffc7ffb","0x402480017fff7ffb","0xffffffffffffffffffffffffffffffff","0x20680017fff7fff","0x11","0x402780017fff7fff","0x1","0x400380007ffc7ffd","0x482680017ffd8000","0xffffffffffffffffffffffffffffff00","0x400280017ffc7fff","0x40780017fff7fff","0x5","0x482680017ffc8000","0x2","0x480680017fff8000","0x0","0x480a7ffd7fff8000","0x10780017fff7fff","0x8","0x482680017ffc8000","0x3","0x480680017fff8000","0x1","0x480680017fff8000","0x0","0x208b7fff7fff7ffe","0x480680017fff8000","0x0","0x480680017fff8000","0x361458367e696363fbcc70777d07ebbd2394e89fd0adcaf147faccd1d294d60","0x480680017fff8000","0x53746f726167655772697465","0x400280007ffc7fff","0x400380017ffc7ffb","0x400280027ffc7ffd","0x400280037ffc7ffe","0x400380047ffc7ffd","0x480280067ffc8000","0x20680017fff7fff","0xd","0x480280057ffc8000","0x482680017ffc8000","0x7","0x480680017fff8000","0x0","0x480680017fff8000","0x0","0x480680017fff8000","0x0","0x10780017fff7fff","0x9","0x480280057ffc8000","0x482680017ffc8000","0x9","0x480680017fff8000","0x1","0x480280077ffc8000","0x480280087ffc8000","0x1104800180018000","0x272","0x20680017fff7ffd","0xb","0x48127ff67fff8000","0x48127ff67fff8000","0x480680017fff8000","0x0","0x480680017fff8000","0x0","0x480680017fff8000","0x0","0x208b7fff7fff7ffe","0x48127ff67fff8000","0x48127ff67fff8000","0x480680017fff8000","0x1","0x48127ffb7fff8000","0x48127ffb7fff8000","0x208b7fff7fff7ffe","0x480680017fff8000","0x0","0x480680017fff8000","0x216b05c387bab9ac31918a3e61672f4618601f3c598a2f3f2710f37053e1ea4","0x480680017fff8000","0x53746f726167655772697465","0x400280007ffc7fff","0x400380017ffc7ffb","0x400280027ffc7ffd","0x400280037ffc7ffe","0x400380047ffc7ffd","0x480280067ffc8000","0x20680017fff7fff","0xd","0x480280057ffc8000","0x482680017ffc8000","0x7","0x480680017fff8000","0x0","0x480680017fff8000","0x0","0x480680017fff8000","0x0","0x10780017fff7fff","0x9","0x480280057ffc8000","0x482680017ffc8000","0x9","0x480680017fff8000","0x1","0x480280077ffc8000","0x480280087ffc8000","0x1104800180018000","0x23e","0x20680017fff7ffd","0xb","0x48127ff67fff8000","0x48127ff67fff8000","0x480680017fff8000","0x0","0x480680017fff8000","0x0","0x480680017fff8000","0x0","0x208b7fff7fff7ffe","0x48127ff67fff8000","0x48127ff67fff8000","0x480680017fff8000","0x1","0x48127ffb7fff8000","0x48127ffb7fff8000","0x208b7fff7fff7ffe","0x480680017fff8000","0x0","0x480680017fff8000","0x4c4fb1ab068f6039d5780c68dd0fa2f8742cceb3426d19667778ca7f3518a9","0x480680017fff8000","0x53746f726167655772697465","0x400280007ffc7fff","0x400380017ffc7ffb","0x400280027ffc7ffd","0x400280037ffc7ffe","0x400380047ffc7ffd","0x480280067ffc8000","0x20680017fff7fff","0xd","0x480280057ffc8000","0x482680017ffc8000","0x7","0x480680017fff8000","0x0","0x480680017fff8000","0x0","0x480680017fff8000","0x0","0x10780017fff7fff","0x9","0x480280057ffc8000","0x482680017ffc8000","0x9","0x480680017fff8000","0x1","0x480280077ffc8000","0x480280087ffc8000","0x1104800180018000","0x20a","0x20680017fff7ffd","0xb","0x48127ff67fff8000","0x48127ff67fff8000","0x480680017fff8000","0x0","0x480680017fff8000","0x0","0x480680017fff8000","0x0","0x208b7fff7fff7ffe","0x48127ff67fff8000","0x48127ff67fff8000","0x480680017fff8000","0x1","0x48127ffb7fff8000","0x48127ffb7fff8000","0x208b7fff7fff7ffe","0x480a7ffa7fff8000","0x480a7ffb7fff8000","0x480680017fff8000","0x0","0x480680017fff8000","0x1557182e4359a1f0c6301278e8f5b35a776ab58d39892581e357578fb287836","0x480a7ffc7fff8000","0x480a7ffd7fff8000","0x1104800180018000","0x1fc","0x1104800180018000","0x1ec","0x20680017fff7ffd","0xb","0x48127ff67fff8000","0x48127ff67fff8000","0x480680017fff8000","0x0","0x480680017fff8000","0x0","0x480680017fff8000","0x0","0x208b7fff7fff7ffe","0x48127ff67fff8000","0x48127ff67fff8000","0x480680017fff8000","0x1","0x48127ffb7fff8000","0x48127ffb7fff8000","0x208b7fff7fff7ffe","0x480a7ff77fff8000","0x480a7ff97fff8000","0x480a7ffb7fff8000","0x1104800180018000","0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffc95","0x480a7ff87fff8000","0x480a7ffa7fff8000","0x480680017fff8000","0x0","0x48127ffc7fff8000","0x480a7ffc7fff8000","0x480a7ffd7fff8000","0x1104800180018000","0x1da","0x1104800180018000","0x1ca","0x20680017fff7ffd","0xd","0x48127fe57fff8000","0x48127ff57fff8000","0x48127fe47fff8000","0x48127ff47fff8000","0x480680017fff8000","0x0","0x480680017fff8000","0x0","0x480680017fff8000","0x0","0x208b7fff7fff7ffe","0x48127fe57fff8000","0x48127ff57fff8000","0x48127fe47fff8000","0x48127ff47fff8000","0x480680017fff8000","0x1","0x48127ff97fff8000","0x48127ff97fff8000","0x208b7fff7fff7ffe","0x40780017fff7fff","0x1","0x480680017fff8000","0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9","0x400080007ffe7fff","0x40780017fff7fff","0x1","0x480a7ffa7fff8000","0x48127ffe7fff8000","0x48127ffd7fff8000","0x1104800180018000","0x1ea","0x480a7ffb7fff8000","0x48127ffd7fff8000","0x48127ffd7fff8000","0x1104800180018000","0x1e5","0x480a7ffc7fff8000","0x480a7ffd7fff8000","0x48127ffc7fff8000","0x48127ffc7fff8000","0x1104800180018000","0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff877","0x48127fbf7fff8000","0x482480017fbe8000","0x1","0x48127ffc7fff8000","0x48127ffc7fff8000","0x480680017fff8000","0x456d69744576656e74","0x400280007ff97fff","0x400380017ff97ff8","0x400280027ff97ffb","0x400280037ff97ffc","0x400280047ff97ffd","0x400280057ff97ffe","0x480280077ff98000","0x20680017fff7fff","0xd","0x480280067ff98000","0x482680017ff98000","0x8","0x480680017fff8000","0x0","0x480680017fff8000","0x0","0x480680017fff8000","0x0","0x10780017fff7fff","0x9","0x480280067ff98000","0x482680017ff98000","0xa","0x480680017fff8000","0x1","0x480280087ff98000","0x480280097ff98000","0x1104800180018000","0x179","0x20680017fff7ffd","0xb","0x48127ff67fff8000","0x48127ff67fff8000","0x480680017fff8000","0x0","0x480680017fff8000","0x0","0x480680017fff8000","0x0","0x208b7fff7fff7ffe","0x48127ff67fff8000","0x48127ff67fff8000","0x480680017fff8000","0x1","0x48127ffb7fff8000","0x48127ffb7fff8000","0x208b7fff7fff7ffe","0x480680017fff8000","0x53746f7261676552656164","0x400280007ffb7fff","0x400380017ffb7ffa","0x400380027ffb7ffc","0x400380037ffb7ffd","0x480280057ffb8000","0x20680017fff7fff","0x28","0x480a7ff97fff8000","0x480280067ffb8000","0x1104800180018000","0x31","0x480280047ffb8000","0x482680017ffb8000","0x7","0x20680017fff7ffc","0xf","0x40780017fff7fff","0x2","0x48127ff97fff8000","0x48127ffb7fff8000","0x48127ffb7fff8000","0x480680017fff8000","0x0","0x480680017fff8000","0x0","0x480680017fff8000","0x0","0x48127ff57fff8000","0x208b7fff7fff7ffe","0x40780017fff7fff","0x1","0x480680017fff8000","0x53746f7261676541636365737355313238202d206e6f6e2075313238","0x400080007ffe7fff","0x48127ff97fff8000","0x48127ffb7fff8000","0x48127ffb7fff8000","0x480680017fff8000","0x1","0x480680017fff8000","0x0","0x48127ff97fff8000","0x482480017ff88000","0x1","0x208b7fff7fff7ffe","0x40780017fff7fff","0x11","0x480a7ff97fff8000","0x480280047ffb8000","0x482680017ffb8000","0x8","0x480680017fff8000","0x0","0x480680017fff8000","0x1","0x480280067ffb8000","0x480280077ffb8000","0x208b7fff7fff7ffe","0xa0680017fff8000","0x16","0x480280007ffc8003","0x480280017ffc8003","0x4844800180017ffe","0x100000000000000000000000000000000","0x483180017ffd7ffd","0x482480017fff7ffd","0x800000000000010fffffffffffffffff7ffffffffffffef0000000000000001","0x20680017fff7ffc","0x6","0x402480017fff7ffd","0xffffffffffffffffffffffffffffffff","0x10780017fff7fff","0x4","0x402480017ffe7ffd","0xf7ffffffffffffef0000000000000000","0x400280027ffc7ffd","0x20680017fff7ffe","0xe","0x402780017fff7fff","0x1","0x400380007ffc7ffd","0x40780017fff7fff","0x5","0x482680017ffc8000","0x1","0x480680017fff8000","0x0","0x480a7ffd7fff8000","0x10780017fff7fff","0x8","0x482680017ffc8000","0x3","0x480680017fff8000","0x1","0x480680017fff8000","0x0","0x208b7fff7fff7ffe","0x400380007ffb7ffc","0x400380017ffb7ffd","0x482680017ffb8000","0x3","0x480280027ffb8000","0x208b7fff7fff7ffe","0x480a7ffb7fff8000","0x480680017fff8000","0xbf4c436d6f8521e5c6189511c75075de702ad597ce22c1786275e8e5167ec7","0x480a7ffc7fff8000","0x480a7ffd7fff8000","0x1104800180018000","0x141","0xa0680017fff8005","0xe","0x4824800180057ffe","0x7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00","0x484480017ffe8000","0x110000000000000000","0x48307ffe7fff8003","0x480280007ffa7ffc","0x480280017ffa7ffc","0x482480017ffb7ffd","0xffffffffffffffeefffffffffffffeff","0x400280027ffa7ffc","0x10780017fff7fff","0x11","0x48127ffe7fff8005","0x484480017ffe8000","0x8000000000000000000000000000000","0x48307ffe7fff8003","0x480280007ffa7ffd","0x482480017ffc7ffe","0xf0000000000000000000000000000100","0x480280017ffa7ffd","0x400280027ffa7ff9","0x402480017ffd7ff9","0xffffffffffffffffffffffffffffffff","0x20680017fff7ffd","0x4","0x402780017fff7fff","0x1","0x482680017ffa8000","0x3","0x48127ff67fff8000","0x48127ffd7fff8000","0x208b7fff7fff7ffe","0x480680017fff8000","0x476574457865637574696f6e496e666f","0x400280007ffd7fff","0x400380017ffd7ffc","0x480280037ffd8000","0x20680017fff7fff","0xc","0x480280027ffd8000","0x482680017ffd8000","0x5","0x480680017fff8000","0x0","0x480680017fff8000","0x0","0x480280047ffd8000","0x10780017fff7fff","0x9","0x480280027ffd8000","0x482680017ffd8000","0x6","0x480680017fff8000","0x1","0x480280047ffd8000","0x480280057ffd8000","0x1104800180018000","0x10e","0x20680017fff7ffd","0xa","0x48127ff67fff8000","0x48127ff67fff8000","0x480680017fff8000","0x0","0x480680017fff8000","0x0","0x48127ffb7fff8000","0x208b7fff7fff7ffe","0x48127ff67fff8000","0x48127ff67fff8000","0x480680017fff8000","0x1","0x48127ffb7fff8000","0x48127ffb7fff8000","0x208b7fff7fff7ffe","0x480a7ff67fff8000","0x480a7ff87fff8000","0x480a7ffa7fff8000","0x480a7ffb7fff8000","0x1104800180018000","0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffa9","0x480a7ff77fff8000","0x480a7ff97fff8000","0x480680017fff8000","0x0","0x48127ffc7fff8000","0x480a7ffc7fff8000","0x480a7ffd7fff8000","0x1104800180018000","0xa9","0x1104800180018000","0x99","0x20680017fff7ffd","0xd","0x48127fe57fff8000","0x48127ff57fff8000","0x48127fe47fff8000","0x48127ff47fff8000","0x480680017fff8000","0x0","0x480680017fff8000","0x0","0x480680017fff8000","0x0","0x208b7fff7fff7ffe","0x48127fe57fff8000","0x48127ff57fff8000","0x48127fe47fff8000","0x48127ff47fff8000","0x480680017fff8000","0x1","0x48127ff97fff8000","0x48127ff97fff8000","0x208b7fff7fff7ffe","0x40780017fff7fff","0x1","0x480680017fff8000","0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff","0x400080007ffe7fff","0x40780017fff7fff","0x1","0x480a7ffa7fff8000","0x48127ffe7fff8000","0x48127ffd7fff8000","0x1104800180018000","0xb9","0x480a7ffb7fff8000","0x48127ffd7fff8000","0x48127ffd7fff8000","0x1104800180018000","0xb4","0x480a7ffc7fff8000","0x480a7ffd7fff8000","0x48127ffc7fff8000","0x48127ffc7fff8000","0x1104800180018000","0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff746","0x48127fbf7fff8000","0x482480017fbe8000","0x1","0x48127ffc7fff8000","0x48127ffc7fff8000","0x480680017fff8000","0x456d69744576656e74","0x400280007ff97fff","0x400380017ff97ff8","0x400280027ff97ffb","0x400280037ff97ffc","0x400280047ff97ffd","0x400280057ff97ffe","0x480280077ff98000","0x20680017fff7fff","0xd","0x480280067ff98000","0x482680017ff98000","0x8","0x480680017fff8000","0x0","0x480680017fff8000","0x0","0x480680017fff8000","0x0","0x10780017fff7fff","0x9","0x480280067ff98000","0x482680017ff98000","0xa","0x480680017fff8000","0x1","0x480280087ff98000","0x480280097ff98000","0x1104800180018000","0x48","0x20680017fff7ffd","0xb","0x48127ff67fff8000","0x48127ff67fff8000","0x480680017fff8000","0x0","0x480680017fff8000","0x0","0x480680017fff8000","0x0","0x208b7fff7fff7ffe","0x48127ff67fff8000","0x48127ff67fff8000","0x480680017fff8000","0x1","0x48127ffb7fff8000","0x48127ffb7fff8000","0x208b7fff7fff7ffe","0x480a7ff97fff8000","0x480a7ffa7fff8000","0x480a7ffb7fff8000","0x480a7ffc7fff8000","0x480a7ffd7fff8000","0x1104800180018000","0x8f","0x20680017fff7fff","0x8","0x480680017fff8000","0x0","0x48127ffc7fff8000","0x48127ffc7fff8000","0x10780017fff7fff","0x8","0x480680017fff8000","0x1","0x480680017fff8000","0x0","0x480680017fff8000","0x0","0x48127ff97fff8000","0x48127ffc7fff8000","0x48127ffc7fff8000","0x48127ffc7fff8000","0x208b7fff7fff7ffe","0x480a7ff97fff8000","0x480a7ffa7fff8000","0x480a7ffb7fff8000","0x480a7ffc7fff8000","0x480a7ffd7fff8000","0x1104800180018000","0xb9","0x20680017fff7fff","0x8","0x480680017fff8000","0x0","0x48127ffc7fff8000","0x48127ffc7fff8000","0x10780017fff7fff","0x8","0x480680017fff8000","0x1","0x480680017fff8000","0x0","0x480680017fff8000","0x0","0x48127ff97fff8000","0x48127ffc7fff8000","0x48127ffc7fff8000","0x48127ffc7fff8000","0x208b7fff7fff7ffe","0x20780017fff7ffb","0x9","0x480680017fff8000","0x0","0x480680017fff8000","0x0","0x480680017fff8000","0x0","0x208b7fff7fff7ffe","0x480680017fff8000","0x1","0x480a7ffc7fff8000","0x480a7ffd7fff8000","0x208b7fff7fff7ffe","0x480680017fff8000","0x53746f726167655772697465","0x400280007ff97fff","0x400380017ff97ff8","0x400380027ff97ffa","0x400380037ff97ffb","0x400380047ff97ffc","0x480280067ff98000","0x20680017fff7fff","0x22","0x480280057ff98000","0x482680017ffb8000","0x1","0x480680017fff8000","0x53746f726167655772697465","0x400280077ff97fff","0x400280087ff97ffd","0x400380097ff97ffa","0x4002800a7ff97ffe","0x4003800b7ff97ffd","0x4802800d7ff98000","0x20680017fff7fff","0xd","0x4802800c7ff98000","0x482680017ff98000","0xe","0x480680017fff8000","0x0","0x480680017fff8000","0x0","0x480680017fff8000","0x0","0x10780017fff7fff","0x9","0x4802800c7ff98000","0x482680017ff98000","0x10","0x480680017fff8000","0x1","0x4802800e7ff98000","0x4802800f7ff98000","0x208b7fff7fff7ffe","0x40780017fff7fff","0x4","0x480280057ff98000","0x482680017ff98000","0x9","0x480680017fff8000","0x1","0x480280077ff98000","0x480280087ff98000","0x208b7fff7fff7ffe","0x480a7ffb7fff8000","0x480a7ffc7fff8000","0x480a7ffd7fff8000","0x1104800180018000","0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff5fc","0x48127ffe7fff8000","0x48127ffe7fff8000","0x208b7fff7fff7ffe","0x480a7ffa7fff8000","0x480a7ffb7fff8000","0x480a7ffc7fff8000","0x1104800180018000","0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffeb2","0x480a7ffd7fff8000","0x1104800180018000","0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffeaf","0x208b7fff7fff7ffe","0x20780017fff7ffb","0x8","0x480680017fff8000","0x0","0x480680017fff8000","0x0","0x480a7ffd7fff8000","0x208b7fff7fff7ffe","0x480680017fff8000","0x1","0x480a7ffc7fff8000","0x480a7ffd7fff8000","0x208b7fff7fff7ffe","0x482a7ffd7ffb8001","0xa0680017fff7fff","0x7","0x4824800180007fff","0x100000000000000000000000000000000","0x400280007ff97fff","0x10780017fff7fff","0xc","0x400280007ff97fff","0x40780017fff7fff","0x1","0x482680017ff98000","0x1","0x48127ffd7fff8000","0x480680017fff8000","0x0","0x10780017fff7fff","0x7","0x482680017ff98000","0x1","0x48127ffe7fff8000","0x480680017fff8000","0x1","0x482a7ffc7ffa8001","0xa0680017fff7fff","0x7","0x4824800180007fff","0x100000000000000000000000000000000","0x400080007ffa7fff","0x10780017fff7fff","0xc","0x400080007ffb7fff","0x40780017fff7fff","0x5","0x482480017ff68000","0x1","0x48127ff97fff8000","0x48127ff57fff8000","0x48127ff57fff8000","0x10780017fff7fff","0x1c","0x480680017fff8000","0x1","0x48307fff7ffa8001","0xa0680017fff7fff","0x7","0x4824800180007fff","0x100000000000000000000000000000000","0x400080017ff67fff","0x10780017fff7fff","0xc","0x400080017ff77fff","0x40780017fff7fff","0x1","0x482480017ff68000","0x2","0x48127ffa7fff8000","0x48127ffc7fff8000","0x48127ff57fff8000","0x10780017fff7fff","0x8","0x482480017ff68000","0x2","0x48127ffa7fff8000","0x48127ffd7fff8000","0x480680017fff8000","0x1","0x208b7fff7fff7ffe","0x48297ffd80017ffb","0xa0680017fff7fff","0x7","0x482480017fff8000","0x100000000000000000000000000000000","0x400280007ff97fff","0x10780017fff7fff","0xc","0x400280007ff97fff","0x40780017fff7fff","0x1","0x482680017ff98000","0x1","0x48127ffd7fff8000","0x480680017fff8000","0x0","0x10780017fff7fff","0x7","0x482680017ff98000","0x1","0x48127ffe7fff8000","0x480680017fff8000","0x1","0x48297ffc80017ffa","0xa0680017fff7fff","0x7","0x482480017fff8000","0x100000000000000000000000000000000","0x400080007ffa7fff","0x10780017fff7fff","0xc","0x400080007ffb7fff","0x40780017fff7fff","0x5","0x482480017ff68000","0x1","0x48127ff97fff8000","0x48127ff57fff8000","0x48127ff57fff8000","0x10780017fff7fff","0x1c","0x480680017fff8000","0x1","0x48307fff80017ffa","0xa0680017fff7fff","0x7","0x482480017fff8000","0x100000000000000000000000000000000","0x400080017ff67fff","0x10780017fff7fff","0xc","0x400080017ff77fff","0x40780017fff7fff","0x1","0x482480017ff68000","0x2","0x48127ffa7fff8000","0x48127ffc7fff8000","0x48127ff57fff8000","0x10780017fff7fff","0x8","0x482480017ff68000","0x2","0x48127ffa7fff8000","0x48127ffd7fff8000","0x480680017fff8000","0x1","0x208b7fff7fff7ffe"],"hints":[[0,[{"TestLessThanOrEqual":{"lhs":{"Immediate":"0x1ab8"},"rhs":{"Deref":{"register":"FP","offset":-6}},"dst":{"register":"AP","offset":0}}}]],[35,[{"TestLessThanOrEqual":{"lhs":{"Immediate":"0x0"},"rhs":{"Deref":{"register":"AP","offset":-11}},"dst":{"register":"AP","offset":0}}}]],[55,[{"AllocSegment":{"dst":{"register":"AP","offset":0}}}]],[78,[{"AllocSegment":{"dst":{"register":"AP","offset":0}}}]],[96,[{"AllocSegment":{"dst":{"register":"AP","offset":0}}}]],[110,[{"AllocSegment":{"dst":{"register":"AP","offset":0}}}]],[125,[{"TestLessThanOrEqual":{"lhs":{"Immediate":"0x1ab8"},"rhs":{"Deref":{"register":"FP","offset":-6}},"dst":{"register":"AP","offset":0}}}]],[160,[{"TestLessThanOrEqual":{"lhs":{"Immediate":"0x0"},"rhs":{"Deref":{"register":"AP","offset":-11}},"dst":{"register":"AP","offset":0}}}]],[180,[{"AllocSegment":{"dst":{"register":"AP","offset":0}}}]],[203,[{"AllocSegment":{"dst":{"register":"AP","offset":0}}}]],[221,[{"AllocSegment":{"dst":{"register":"AP","offset":0}}}]],[235,[{"AllocSegment":{"dst":{"register":"AP","offset":0}}}]],[250,[{"TestLessThanOrEqual":{"lhs":{"Immediate":"0x2b8e"},"rhs":{"Deref":{"register":"FP","offset":-6}},"dst":{"register":"AP","offset":0}}}]],[285,[{"TestLessThanOrEqual":{"lhs":{"Immediate":"0x0"},"rhs":{"Deref":{"register":"AP","offset":-11}},"dst":{"register":"AP","offset":0}}}]],[305,[{"AllocSegment":{"dst":{"register":"AP","offset":0}}}]],[328,[{"AllocSegment":{"dst":{"register":"AP","offset":0}}}]],[346,[{"AllocSegment":{"dst":{"register":"AP","offset":0}}}]],[360,[{"AllocSegment":{"dst":{"register":"AP","offset":0}}}]],[375,[{"TestLessThanOrEqual":{"lhs":{"Immediate":"0x6ec8"},"rhs":{"Deref":{"register":"FP","offset":-6}},"dst":{"register":"AP","offset":0}}}]],[410,[{"TestLessThanOrEqual":{"lhs":{"Immediate":"0x0"},"rhs":{"Deref":{"register":"AP","offset":-11}},"dst":{"register":"AP","offset":0}}}]],[430,[{"AllocSegment":{"dst":{"register":"AP","offset":0}}}]],[454,[{"AllocSegment":{"dst":{"register":"AP","offset":0}}}]],[472,[{"AllocSegment":{"dst":{"register":"AP","offset":0}}}]],[486,[{"AllocSegment":{"dst":{"register":"AP","offset":0}}}]],[501,[{"TestLessThanOrEqual":{"lhs":{"Immediate":"0x8c96"},"rhs":{"Deref":{"register":"FP","offset":-6}},"dst":{"register":"AP","offset":0}}}]],[545,[{"TestLessThanOrEqual":{"lhs":{"Deref":{"register":"AP","offset":-1}},"rhs":{"Deref":{"register":"AP","offset":-44}},"dst":{"register":"AP","offset":0}}}]],[565,[{"AllocSegment":{"dst":{"register":"AP","offset":0}}}]],[591,[{"AllocSegment":{"dst":{"register":"AP","offset":0}}}]],[610,[{"AllocSegment":{"dst":{"register":"AP","offset":0}}}]],[625,[{"AllocSegment":{"dst":{"register":"AP","offset":0}}}]],[640,[{"AllocSegment":{"dst":{"register":"AP","offset":0}}}]],[656,[{"TestLessThanOrEqual":{"lhs":{"Immediate":"0xa992"},"rhs":{"Deref":{"register":"FP","offset":-6}},"dst":{"register":"AP","offset":0}}}]],[709,[{"TestLessThanOrEqual":{"lhs":{"Deref":{"register":"AP","offset":-1}},"rhs":{"Deref":{"register":"AP","offset":-77}},"dst":{"register":"AP","offset":0}}}]],[730,[{"AllocSegment":{"dst":{"register":"AP","offset":0}}}]],[756,[{"AllocSegment":{"dst":{"register":"AP","offset":0}}}]],[775,[{"AllocSegment":{"dst":{"register":"AP","offset":0}}}]],[790,[{"AllocSegment":{"dst":{"register":"AP","offset":0}}}]],[805,[{"AllocSegment":{"dst":{"register":"AP","offset":0}}}]],[820,[{"AllocSegment":{"dst":{"register":"AP","offset":0}}}]],[836,[{"TestLessThanOrEqual":{"lhs":{"Immediate":"0x2dc80"},"rhs":{"Deref":{"register":"FP","offset":-6}},"dst":{"register":"AP","offset":0}}}]],[889,[{"TestLessThanOrEqual":{"lhs":{"Deref":{"register":"AP","offset":-1}},"rhs":{"Deref":{"register":"AP","offset":-118}},"dst":{"register":"AP","offset":0}}}]],[911,[{"AllocSegment":{"dst":{"register":"AP","offset":0}}}]],[931,[{"AllocSegment":{"dst":{"register":"AP","offset":0}}}]],[950,[{"AllocSegment":{"dst":{"register":"AP","offset":0}}}]],[965,[{"AllocSegment":{"dst":{"register":"AP","offset":0}}}]],[980,[{"AllocSegment":{"dst":{"register":"AP","offset":0}}}]],[995,[{"AllocSegment":{"dst":{"register":"AP","offset":0}}}]],[1011,[{"TestLessThanOrEqual":{"lhs":{"Immediate":"0x473e2"},"rhs":{"Deref":{"register":"FP","offset":-6}},"dst":{"register":"AP","offset":0}}}]],[1071,[{"TestLessThanOrEqual":{"lhs":{"Deref":{"register":"AP","offset":-1}},"rhs":{"Deref":{"register":"AP","offset":-150}},"dst":{"register":"AP","offset":0}}}]],[1094,[{"AllocSegment":{"dst":{"register":"AP","offset":0}}}]],[1114,[{"AllocSegment":{"dst":{"register":"AP","offset":0}}}]],[1133,[{"AllocSegment":{"dst":{"register":"AP","offset":0}}}]],[1148,[{"AllocSegment":{"dst":{"register":"AP","offset":0}}}]],[1163,[{"AllocSegment":{"dst":{"register":"AP","offset":0}}}]],[1178,[{"AllocSegment":{"dst":{"register":"AP","offset":0}}}]],[1193,[{"AllocSegment":{"dst":{"register":"AP","offset":0}}}]],[1209,[{"TestLessThanOrEqual":{"lhs":{"Immediate":"0x12a02"},"rhs":{"Deref":{"register":"FP","offset":-6}},"dst":{"register":"AP","offset":0}}}]],[1262,[{"TestLessThanOrEqual":{"lhs":{"Deref":{"register":"AP","offset":-1}},"rhs":{"Deref":{"register":"AP","offset":-118}},"dst":{"register":"AP","offset":0}}}]],[1284,[{"AllocSegment":{"dst":{"register":"AP","offset":0}}}]],[1304,[{"AllocSegment":{"dst":{"register":"AP","offset":0}}}]],[1323,[{"AllocSegment":{"dst":{"register":"AP","offset":0}}}]],[1338,[{"AllocSegment":{"dst":{"register":"AP","offset":0}}}]],[1353,[{"AllocSegment":{"dst":{"register":"AP","offset":0}}}]],[1368,[{"AllocSegment":{"dst":{"register":"AP","offset":0}}}]],[1384,[{"TestLessThanOrEqual":{"lhs":{"Immediate":"0x1d29a"},"rhs":{"Deref":{"register":"FP","offset":-6}},"dst":{"register":"AP","offset":0}}}]],[1437,[{"TestLessThanOrEqual":{"lhs":{"Deref":{"register":"AP","offset":-1}},"rhs":{"Deref":{"register":"AP","offset":-118}},"dst":{"register":"AP","offset":0}}}]],[1459,[{"AllocSegment":{"dst":{"register":"AP","offset":0}}}]],[1479,[{"AllocSegment":{"dst":{"register":"AP","offset":0}}}]],[1498,[{"AllocSegment":{"dst":{"register":"AP","offset":0}}}]],[1513,[{"AllocSegment":{"dst":{"register":"AP","offset":0}}}]],[1528,[{"AllocSegment":{"dst":{"register":"AP","offset":0}}}]],[1543,[{"AllocSegment":{"dst":{"register":"AP","offset":0}}}]],[1559,[{"TestLessThanOrEqual":{"lhs":{"Immediate":"0x1d29a"},"rhs":{"Deref":{"register":"FP","offset":-6}},"dst":{"register":"AP","offset":0}}}]],[1612,[{"TestLessThanOrEqual":{"lhs":{"Deref":{"register":"AP","offset":-1}},"rhs":{"Deref":{"register":"AP","offset":-118}},"dst":{"register":"AP","offset":0}}}]],[1634,[{"AllocSegment":{"dst":{"register":"AP","offset":0}}}]],[1654,[{"AllocSegment":{"dst":{"register":"AP","offset":0}}}]],[1673,[{"AllocSegment":{"dst":{"register":"AP","offset":0}}}]],[1688,[{"AllocSegment":{"dst":{"register":"AP","offset":0}}}]],[1703,[{"AllocSegment":{"dst":{"register":"AP","offset":0}}}]],[1718,[{"AllocSegment":{"dst":{"register":"AP","offset":0}}}]],[1734,[{"TestLessThanOrEqual":{"lhs":{"Immediate":"0x2079c"},"rhs":{"Deref":{"register":"FP","offset":-6}},"dst":{"register":"AP","offset":0}}}]],[1805,[{"TestLessThanOrEqual":{"lhs":{"Deref":{"register":"AP","offset":-1}},"rhs":{"Deref":{"register":"AP","offset":-182}},"dst":{"register":"AP","offset":0}}}]],[1830,[{"AllocSegment":{"dst":{"register":"AP","offset":0}}}]],[1850,[{"AllocSegment":{"dst":{"register":"AP","offset":0}}}]],[1869,[{"AllocSegment":{"dst":{"register":"AP","offset":0}}}]],[1884,[{"AllocSegment":{"dst":{"register":"AP","offset":0}}}]],[1899,[{"AllocSegment":{"dst":{"register":"AP","offset":0}}}]],[1914,[{"AllocSegment":{"dst":{"register":"AP","offset":0}}}]],[1929,[{"AllocSegment":{"dst":{"register":"AP","offset":0}}}]],[1944,[{"AllocSegment":{"dst":{"register":"AP","offset":0}}}]],[1959,[{"AllocSegment":{"dst":{"register":"AP","offset":0}}}]],[1985,[{"SystemCall":{"system":{"Deref":{"register":"FP","offset":-3}}}}]],[2041,[{"SystemCall":{"system":{"Deref":{"register":"FP","offset":-3}}}}]],[2194,[{"TestLessThan":{"lhs":{"Deref":{"register":"AP","offset":-1}},"rhs":{"Immediate":"0x800000000000000000000000000000000000000000000000000000000000000"},"dst":{"register":"AP","offset":4}}}]],[2198,[{"LinearSplit":{"value":{"Deref":{"register":"AP","offset":3}},"scalar":{"Immediate":"0x110000000000000000"},"max_x":{"Immediate":"0xffffffffffffffffffffffffffffffff"},"x":{"register":"AP","offset":-2},"y":{"register":"AP","offset":-1}}}]],[2208,[{"LinearSplit":{"value":{"Deref":{"register":"AP","offset":-2}},"scalar":{"Immediate":"0x8000000000000000000000000000000"},"max_x":{"Immediate":"0xffffffffffffffffffffffffffffffff"},"x":{"register":"AP","offset":-1},"y":{"register":"AP","offset":0}}}]],[2925,[{"AllocSegment":{"dst":{"register":"AP","offset":0}}}]],[2992,[{"SystemCall":{"system":{"Deref":{"register":"FP","offset":-5}}}}]],[3017,[{"AllocSegment":{"dst":{"register":"AP","offset":0}}}]],[3078,[{"SystemCall":{"system":{"Deref":{"register":"AP","offset":-7}}}}]],[3102,[{"AllocSegment":{"dst":{"register":"AP","offset":0}}}]],[3181,[{"TestLessThan":{"lhs":{"Deref":{"register":"AP","offset":-1}},"rhs":{"Immediate":"0x7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00"},"dst":{"register":"AP","offset":5}}}]],[3185,[{"LinearSplit":{"value":{"Deref":{"register":"AP","offset":4}},"scalar":{"Immediate":"0x110000000000000000"},"max_x":{"Immediate":"0xffffffffffffffffffffffffffffffff"},"x":{"register":"AP","offset":-2},"y":{"register":"AP","offset":-1}}}]],[3196,[{"LinearSplit":{"value":{"Deref":{"register":"AP","offset":4}},"scalar":{"Immediate":"0x8000000000000000000000000000000"},"max_x":{"Immediate":"0xfffffffffffffffffffffffffffffffe"},"x":{"register":"AP","offset":-2},"y":{"register":"AP","offset":-1}}}]],[3535,[{"AllocSegment":{"dst":{"register":"AP","offset":0}}}]],[3552,[{"AllocSegment":{"dst":{"register":"AP","offset":0}}}]],[3751,[{"AllocSegment":{"dst":{"register":"AP","offset":0}}}]],[3783,[{"AllocSegment":{"dst":{"register":"AP","offset":0}}}]],[3812,[{"AllocSegment":{"dst":{"register":"AP","offset":0}}}]],[3824,[{"TestLessThan":{"lhs":{"Deref":{"register":"FP","offset":-3}},"rhs":{"Immediate":"0x100"},"dst":{"register":"AP","offset":0}}}]],[3828,[{"LinearSplit":{"value":{"Deref":{"register":"AP","offset":-1}},"scalar":{"Immediate":"0x8000000000000110000000000000000"},"max_x":{"Immediate":"0xfffffffffffffffffffffffffffffffe"},"x":{"register":"AP","offset":0},"y":{"register":"AP","offset":1}}}]],[3873,[{"SystemCall":{"system":{"Deref":{"register":"FP","offset":-4}}}}]],[3925,[{"SystemCall":{"system":{"Deref":{"register":"FP","offset":-4}}}}]],[3977,[{"SystemCall":{"system":{"Deref":{"register":"FP","offset":-4}}}}]],[4086,[{"AllocSegment":{"dst":{"register":"AP","offset":0}}}]],[4091,[{"AllocSegment":{"dst":{"register":"AP","offset":0}}}]],[4122,[{"SystemCall":{"system":{"Deref":{"register":"FP","offset":-7}}}}]],[4169,[{"SystemCall":{"system":{"Deref":{"register":"FP","offset":-5}}}}]],[4194,[{"AllocSegment":{"dst":{"register":"AP","offset":0}}}]],[4223,[{"TestLessThan":{"lhs":{"Deref":{"register":"FP","offset":-3}},"rhs":{"Immediate":"0x100000000000000000000000000000000"},"dst":{"register":"AP","offset":0}}}]],[4225,[{"DivMod":{"lhs":{"Deref":{"register":"FP","offset":-3}},"rhs":{"Immediate":"0x100000000000000000000000000000000"},"quotient":{"register":"AP","offset":3},"remainder":{"register":"AP","offset":4}}}]],[4275,[{"TestLessThan":{"lhs":{"Deref":{"register":"AP","offset":-1}},"rhs":{"Immediate":"0x7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00"},"dst":{"register":"AP","offset":5}}}]],[4279,[{"LinearSplit":{"value":{"Deref":{"register":"AP","offset":4}},"scalar":{"Immediate":"0x110000000000000000"},"max_x":{"Immediate":"0xffffffffffffffffffffffffffffffff"},"x":{"register":"AP","offset":-2},"y":{"register":"AP","offset":-1}}}]],[4290,[{"LinearSplit":{"value":{"Deref":{"register":"AP","offset":4}},"scalar":{"Immediate":"0x8000000000000000000000000000000"},"max_x":{"Immediate":"0xfffffffffffffffffffffffffffffffe"},"x":{"register":"AP","offset":-2},"y":{"register":"AP","offset":-1}}}]],[4313,[{"SystemCall":{"system":{"Deref":{"register":"FP","offset":-3}}}}]],[4391,[{"AllocSegment":{"dst":{"register":"AP","offset":0}}}]],[4396,[{"AllocSegment":{"dst":{"register":"AP","offset":0}}}]],[4427,[{"SystemCall":{"system":{"Deref":{"register":"FP","offset":-7}}}}]],[4541,[{"SystemCall":{"system":{"Deref":{"register":"FP","offset":-7}}}}]],[4554,[{"SystemCall":{"system":{"BinOp":{"op":"Add","a":{"register":"FP","offset":-7},"b":{"Immediate":"0x7"}}}}}]],[4617,[{"TestLessThan":{"lhs":{"Deref":{"register":"AP","offset":0}},"rhs":{"Immediate":"0x100000000000000000000000000000000"},"dst":{"register":"AP","offset":-1}}}]],[4640,[{"TestLessThan":{"lhs":{"Deref":{"register":"AP","offset":0}},"rhs":{"Immediate":"0x100000000000000000000000000000000"},"dst":{"register":"AP","offset":-1}}}]],[4660,[{"TestLessThan":{"lhs":{"Deref":{"register":"AP","offset":0}},"rhs":{"Immediate":"0x100000000000000000000000000000000"},"dst":{"register":"AP","offset":-1}}}]],[4685,[{"TestLessThanOrEqual":{"lhs":{"Deref":{"register":"FP","offset":-3}},"rhs":{"Deref":{"register":"FP","offset":-5}},"dst":{"register":"AP","offset":-1}}}]],[4708,[{"TestLessThanOrEqual":{"lhs":{"Deref":{"register":"FP","offset":-4}},"rhs":{"Deref":{"register":"FP","offset":-6}},"dst":{"register":"AP","offset":-1}}}]],[4728,[{"TestLessThanOrEqual":{"lhs":{"Deref":{"register":"AP","offset":-2}},"rhs":{"Deref":{"register":"AP","offset":-7}},"dst":{"register":"AP","offset":-1}}}]]],"entry_points_by_type":{"EXTERNAL":[{"selector":"0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e","offset":836,"builtins":["pedersen","range_check"]},{"selector":"0x16d9d5d83f8eecc5d7450519aad7e6e649be1a6c9d6df85bd0b177cc59a926a","offset":250,"builtins":["range_check"]},{"selector":"0x1d13ab0a76d7407b1d5faccd4b3d8a9efe42f3d3c21766431d4fafb30f45bd4","offset":1384,"builtins":["pedersen","range_check"]},{"selector":"0x1e888a1026b19c8c0b57c72d63ed1737106aa10034105b980ba117bd0c29fe1","offset":656,"builtins":["pedersen","range_check"]},{"selector":"0x219209e083275171774dab1df80982e9df2096516f06319c5c6d71ae0a8480c","offset":1209,"builtins":["pedersen","range_check"]},{"selector":"0x2819e8b2b82ee4c56798709651ab9e8537f644c0823e42ba017efce4f2077e4","offset":375,"builtins":["range_check"]},{"selector":"0x31341177714d81ad9ccd0c903211bc056a60e8af988d0fd918cc43874549653","offset":0,"builtins":["range_check"]},{"selector":"0x351ccc9e7b13b17e701a7d4f5f85b525bac37b7648419fe194e6c15bc73da47","offset":125,"builtins":["range_check"]},{"selector":"0x35a73cd311a05d46deda634c5ee045db92f811b4e74bca4437fcb5302b7af33","offset":501,"builtins":["pedersen","range_check"]},{"selector":"0x3704ffe8fba161be0e994951751a5033b1462b918ff785c0a636be718dfdb68","offset":1011,"builtins":["pedersen","range_check"]},{"selector":"0x3b076186c19fe96221e4dfacd40c519f612eae02e0555e4e115a2a6cf2f1c1f","offset":1559,"builtins":["pedersen","range_check"]}],"L1_HANDLER":[],"CONSTRUCTOR":[{"selector":"0x28ffe4ff0f226a9107253e17a904099aa4f63a02a5621de0576e5aa71bc5194","offset":1734,"builtins":["pedersen","range_check"]}]}} diff --git a/core/class.go b/core/class.go index 3fde07fdcb..c16f422848 100644 --- a/core/class.go +++ b/core/class.go @@ -3,7 +3,6 @@ package core import ( "encoding/json" "fmt" - "math/big" "github.com/NethermindEth/juno/core/crypto" "github.com/NethermindEth/juno/core/felt" @@ -57,24 +56,7 @@ type Cairo1Class struct { Program []*felt.Felt ProgramHash *felt.Felt SemanticVersion string - Compiled CompiledClass -} - -type CompiledClass struct { - Bytecode []*felt.Felt - PythonicHints json.RawMessage - CompilerVersion string - Hints json.RawMessage - Prime *big.Int - External []CompiledEntryPoint - L1Handler []CompiledEntryPoint - Constructor []CompiledEntryPoint -} - -type CompiledEntryPoint struct { - Offset uint64 - Builtins []string - Selector *felt.Felt + Compiled json.RawMessage } type SierraEntryPoint struct { @@ -97,18 +79,6 @@ func (c *Cairo1Class) Hash() *felt.Felt { ) } -var compiledClassV1Prefix = new(felt.Felt).SetBytes([]byte("COMPILED_CLASS_V1")) - -func (c *CompiledClass) Hash() *felt.Felt { - return crypto.PoseidonArray( - compiledClassV1Prefix, - crypto.PoseidonArray(flattenCompiledEntryPoints(c.External)...), - crypto.PoseidonArray(flattenCompiledEntryPoints(c.L1Handler)...), - crypto.PoseidonArray(flattenCompiledEntryPoints(c.Constructor)...), - crypto.PoseidonArray(c.Bytecode...), - ) -} - func flattenSierraEntryPoints(entryPoints []SierraEntryPoint) []*felt.Felt { result := make([]*felt.Felt, len(entryPoints)*2) for i, entryPoint := range entryPoints { @@ -120,23 +90,6 @@ func flattenSierraEntryPoints(entryPoints []SierraEntryPoint) []*felt.Felt { return result } -func flattenCompiledEntryPoints(entryPoints []CompiledEntryPoint) []*felt.Felt { - result := make([]*felt.Felt, len(entryPoints)*3) - for i, entryPoint := range entryPoints { - // It is important that Selector is first, then Offset is second because the order - // influences the class hash. - result[3*i] = entryPoint.Selector - result[3*i+1] = new(felt.Felt).SetUint64(entryPoint.Offset) - builtins := make([]*felt.Felt, len(entryPoint.Builtins)) - for idx, buil := range entryPoint.Builtins { - builtins[idx] = new(felt.Felt).SetBytes([]byte(buil)) - } - result[3*i+2] = crypto.PoseidonArray(builtins...) - } - - return result -} - func VerifyClassHashes(classes map[felt.Felt]Class) error { for hash, class := range classes { cairo1Class, ok := class.(*Cairo1Class) diff --git a/core/class_test.go b/core/class_test.go index aace30313c..504484fbfb 100644 --- a/core/class_test.go +++ b/core/class_test.go @@ -24,8 +24,8 @@ func TestClassV1Hash(t *testing.T) { classHash string }{ { - // https://external.integration.starknet.io/feeder_gateway/get_class_by_hash?classHash=0x1cd2edfb485241c4403254d550de0a097fa76743cd30696f714a491a454bad5 - classHash: "0x1cd2edfb485241c4403254d550de0a097fa76743cd30696f714a491a454bad5", + // https://external.integration.starknet.io/feeder_gateway/get_class_by_hash?classHash=0x4e70b19333ae94bd958625f7b61ce9eec631653597e68645e13780061b2136c + classHash: "0x4e70b19333ae94bd958625f7b61ce9eec631653597e68645e13780061b2136c", }, } @@ -40,17 +40,6 @@ func TestClassV1Hash(t *testing.T) { } } -func TestCompiledClassHash(t *testing.T) { - client := feeder.NewTestClient(t, utils.Integration) - gw := adaptfeeder.New(client) - - hash := utils.HexToFelt(t, "0x6d8ede036bb4720e6f348643221d8672bf4f0895622c32c11e57460b3b7dffc") - class, err := gw.Class(context.Background(), hash) - require.NoError(t, err) - got := class.(*core.Cairo1Class).Compiled.Hash() - assert.Equal(t, "0x18f95714044fd5408d3bf812bcd249ddec098ab3cd201b7916170cfbfa59e05", got.String()) -} - func TestClassEncoding(t *testing.T) { tests := []struct { name string diff --git a/core/state_test.go b/core/state_test.go index c466222ad4..5ef6ff1240 100644 --- a/core/state_test.go +++ b/core/state_test.go @@ -501,7 +501,7 @@ func TestRevert(t *testing.T) { Program: []*felt.Felt{new(felt.Felt).SetBytes([]byte("random program"))}, ProgramHash: new(felt.Felt).SetBytes([]byte("random program hash")), SemanticVersion: "version 1", - Compiled: core.CompiledClass{}, + Compiled: json.RawMessage("complied cairo 1 class"), } cairo1Addr := utils.HexToFelt(t, "0xcd5678") diff --git a/l1/contract/starknet.go b/l1/contract/starknet.go index 7ccee94310..ce0ccf8c0d 100644 --- a/l1/contract/starknet.go +++ b/l1/contract/starknet.go @@ -69,6 +69,7 @@ func bindStarknet(address common.Address, caller bind.ContractCaller, transactor // // Solidity: event LogStateUpdate(uint256 globalRoot, int256 blockNumber, uint256 blockHash) func (_Starknet *StarknetFilterer) WatchLogStateUpdate(opts *bind.WatchOpts, sink chan<- *StarknetLogStateUpdate) (event.Subscription, error) { + logs, sub, err := _Starknet.contract.WatchLogs(opts, "LogStateUpdate") if err != nil { return nil, err diff --git a/p2p/starknet/starknet_test.go b/p2p/starknet/starknet_test.go index 8f5b939af7..18953ee71f 100644 --- a/p2p/starknet/starknet_test.go +++ b/p2p/starknet/starknet_test.go @@ -3,6 +3,7 @@ package starknet_test import ( "bytes" "context" + "encoding/json" "reflect" "sort" "testing" @@ -173,7 +174,7 @@ func TestClientHandler(t *testing.T) { //nolint:gocyclo cairo1Class := &core.Cairo1Class{ AbiHash: randFelt(t), ProgramHash: randFelt(t), - // Compiled: json.RawMessage(cairo1Program), + Compiled: json.RawMessage(cairo1Program), } blocks := []struct { diff --git a/starknet/class.go b/starknet/class.go index e4aa5be085..519aa4f01a 100644 --- a/starknet/class.go +++ b/starknet/class.go @@ -46,25 +46,6 @@ type ClassDefinition struct { V1 *SierraDefinition } -type CompiledClass struct { - Prime string `json:"prime"` - Bytecode []*felt.Felt `json:"bytecode"` - Hints json.RawMessage `json:"hints"` - PythonicHints json.RawMessage `json:"pythonic_hints"` - CompilerVersion string `json:"compiler_version"` - EntryPoints struct { - External []CompiledEntryPoint `json:"EXTERNAL"` - L1Handler []CompiledEntryPoint `json:"L1_HANDLER"` - Constructor []CompiledEntryPoint `json:"CONSTRUCTOR"` - } `json:"entry_points_by_type"` -} - -type CompiledEntryPoint struct { - Selector *felt.Felt `json:"selector"` - Offset uint64 `json:"offset"` - Builtins []string `json:"builtins"` -} - func (c *ClassDefinition) UnmarshalJSON(data []byte) error { jsonMap := make(map[string]any) if err := json.Unmarshal(data, &jsonMap); err != nil { diff --git a/utils/slices.go b/utils/slices.go index 1feff4f015..00e7cd6be0 100644 --- a/utils/slices.go +++ b/utils/slices.go @@ -24,25 +24,6 @@ func Map[T1, T2 any](slice []T1, f func(T1) T2) []T2 { return result } -// MapWithErr works the same way as Map, but returns an error if any of the calls to f return an error -// in this case the first argument is nil -func MapWithErr[T1, T2 any](slice []T1, f func(T1) (T2, error)) ([]T2, error) { - if slice == nil { - return nil, nil - } - - var err error - result := make([]T2, len(slice)) - for i, e := range slice { - result[i], err = f(e) - if err != nil { - return nil, err - } - } - - return result, nil -} - func Filter[T any](slice []T, f func(T) bool) []T { var result []T for _, e := range slice { diff --git a/vm/class.go b/vm/class.go index 6cb8f6e6d0..a2a7ccbd27 100644 --- a/vm/class.go +++ b/vm/class.go @@ -13,29 +13,30 @@ import "C" import ( "encoding/json" "errors" - "fmt" "unsafe" - "github.com/NethermindEth/juno/adapters/core2sn" "github.com/NethermindEth/juno/core" "github.com/NethermindEth/juno/core/felt" + "github.com/NethermindEth/juno/starknet" + "github.com/NethermindEth/juno/utils" ) func marshalCompiledClass(class core.Class) (json.RawMessage, error) { + var compiledClass any switch c := class.(type) { case *core.Cairo0Class: - compiledCairo0Class, err := core2sn.AdaptCairo0Class(c) + var err error + compiledClass, err = makeDeprecatedVMClass(c) if err != nil { return nil, err } - return json.Marshal(compiledCairo0Class) case *core.Cairo1Class: - // we adapt the core type to the feeder type to avoid using JSON tags in core.Class.CompiledClass - compiledCairo1Class := core2sn.AdaptCompiledClass(&c.Compiled) - return json.Marshal(compiledCairo1Class) + compiledClass = c.Compiled default: - return nil, fmt.Errorf("unsupported class type %T", c) + return nil, errors.New("not a valid class") } + + return json.Marshal(compiledClass) } func marshalDeclaredClass(class core.Class) (json.RawMessage, error) { @@ -44,19 +45,96 @@ func marshalDeclaredClass(class core.Class) (json.RawMessage, error) { switch c := class.(type) { case *core.Cairo0Class: - declaredClass, err = core2sn.AdaptCairo0Class(c) + declaredClass, err = makeDeprecatedVMClass(c) if err != nil { return nil, err } case *core.Cairo1Class: - declaredClass = core2sn.AdaptSierraClass(c) + declaredClass = makeSierraClass(c) default: - return nil, fmt.Errorf("unsupported class type %T", c) + return nil, errors.New("not a valid class") } return json.Marshal(declaredClass) } +func makeDeprecatedVMClass(class *core.Cairo0Class) (*starknet.Cairo0Definition, error) { + decompressedProgram, err := utils.Gzip64Decode(class.Program) + if err != nil { + return nil, err + } + + constructors := make([]starknet.EntryPoint, 0, len(class.Constructors)) + for _, entryPoint := range class.Constructors { + constructors = append(constructors, starknet.EntryPoint{ + Selector: entryPoint.Selector, + Offset: entryPoint.Offset, + }) + } + + external := make([]starknet.EntryPoint, 0, len(class.Externals)) + for _, entryPoint := range class.Externals { + external = append(external, starknet.EntryPoint{ + Selector: entryPoint.Selector, + Offset: entryPoint.Offset, + }) + } + + handlers := make([]starknet.EntryPoint, 0, len(class.L1Handlers)) + for _, entryPoint := range class.L1Handlers { + handlers = append(handlers, starknet.EntryPoint{ + Selector: entryPoint.Selector, + Offset: entryPoint.Offset, + }) + } + + return &starknet.Cairo0Definition{ + Program: decompressedProgram, + Abi: class.Abi, + EntryPoints: starknet.EntryPoints{ + Constructor: constructors, + External: external, + L1Handler: handlers, + }, + }, nil +} + +func makeSierraClass(class *core.Cairo1Class) *starknet.SierraDefinition { + constructors := make([]starknet.SierraEntryPoint, 0, len(class.EntryPoints.Constructor)) + for _, entryPoint := range class.EntryPoints.Constructor { + constructors = append(constructors, starknet.SierraEntryPoint{ + Selector: entryPoint.Selector, + Index: entryPoint.Index, + }) + } + + external := make([]starknet.SierraEntryPoint, 0, len(class.EntryPoints.External)) + for _, entryPoint := range class.EntryPoints.External { + external = append(external, starknet.SierraEntryPoint{ + Selector: entryPoint.Selector, + Index: entryPoint.Index, + }) + } + + handlers := make([]starknet.SierraEntryPoint, 0, len(class.EntryPoints.L1Handler)) + for _, entryPoint := range class.EntryPoints.L1Handler { + handlers = append(handlers, starknet.SierraEntryPoint{ + Selector: entryPoint.Selector, + Index: entryPoint.Index, + }) + } + + return &starknet.SierraDefinition{ + Version: class.SemanticVersion, + Program: class.Program, + EntryPoints: starknet.SierraEntryPoints{ + Constructor: constructors, + External: external, + L1Handler: handlers, + }, + } +} + func Cairo0ClassHash(class *core.Cairo0Class) (*felt.Felt, error) { classJSON, err := marshalDeclaredClass(class) if err != nil { diff --git a/vm/vm_test.go b/vm/vm_test.go index d1d48cb079..2226606598 100644 --- a/vm/vm_test.go +++ b/vm/vm_test.go @@ -109,13 +109,10 @@ func TestV1Call(t *testing.T) { *classHash: simpleClass, })) - log, err := utils.NewZapLogger(utils.ERROR, false) - require.NoError(t, err) - // test_storage_read entryPoint := utils.HexToFelt(t, "0x5df99ae77df976b4f0e5cf28c7dcfe09bd6e81aab787b19ac0c08e03d928cf") storageLocation := utils.HexToFelt(t, "0x44") - ret, err := New(log).Call(contractAddr, nil, entryPoint, []felt.Felt{ + ret, err := New(nil).Call(contractAddr, nil, entryPoint, []felt.Felt{ *storageLocation, }, 0, 0, testState, utils.Goerli) require.NoError(t, err) @@ -136,7 +133,7 @@ func TestV1Call(t *testing.T) { }, }, nil)) - ret, err = New(log).Call(contractAddr, nil, entryPoint, []felt.Felt{ + ret, err = New(nil).Call(contractAddr, nil, entryPoint, []felt.Felt{ *storageLocation, }, 1, 0, testState, utils.Goerli) require.NoError(t, err)