From d2c28059cfca99cd9b9a35cb8c96074a60fedd35 Mon Sep 17 00:00:00 2001 From: Matthew Little Date: Wed, 20 Mar 2024 17:11:50 +0100 Subject: [PATCH] feat: pox stacker & signer cycle details (#1873) * feat: pox signer event ingestion * test: add pox_set ingestion tests * feat: progress on associating stacker info to signer data * feat: ingest reward set data from /new_block event * feat: ingest pox4 event cycle IDs * fix: filter signer pox events by cycleID ranges * chore: use nodejs v20 in `launch w/ postgres` * chore: initial test * chore: progress on cycles endpoint * feat: ingest `pox_ustx_threshold` from /new_block reward_set * chore: update reward_set.rewarded_addresses ingestion to new burnchain address string format * feat: cycles table * feat: signers endpoint * feat: single signer * feat: stackers * fix: remove old query * fix: exports * fix: stacker example * fix: tests * fix: test * fix: pox tests * fix: tests * fix: pox cycle signers deterministic ordering --------- Co-authored-by: Rafael Cardenas --- .vscode/launch.json | 1 + ...get-pox-cycle-signer-stackers.example.json | 12 + .../get-pox-cycle-signer-stackers.schema.json | 29 +++ .../get-pox-cycle-signers.example.json | 28 +++ .../get-pox-cycle-signers.schema.json | 29 +++ docs/api/stacking/get-pox-cycles.example.json | 31 +++ docs/api/stacking/get-pox-cycles.schema.json | 29 +++ docs/entities/stacking/pox-cycle.example.json | 8 + docs/entities/stacking/pox-cycle.schema.json | 33 +++ docs/entities/stacking/signer.example.json | 7 + docs/entities/stacking/signer.schema.json | 29 +++ docs/entities/stacking/stacker.example.json | 5 + docs/entities/stacking/stacker.schema.json | 21 ++ docs/generated.d.ts | 80 ++++++ docs/openapi.yaml | 149 +++++++++++ migrations/1708523986475_pox_sets.js | 66 +++++ .../1710161516905_update-pox4-cycle-ids.js | 18 ++ migrations/1710774613173_pox-cycles.js | 45 ++++ src/api/controllers/db-controller.ts | 23 ++ src/api/init.ts | 2 + src/api/pagination.ts | 10 + src/api/routes/v2/helpers.ts | 50 +++- src/api/routes/v2/pox.ts | 161 ++++++++++++ src/api/routes/v2/schemas.ts | 47 ++++ src/datastore/common.ts | 107 ++++++++ src/datastore/helpers.ts | 34 +++ src/datastore/pg-store-v2.ts | 139 ++++++++++ src/datastore/pg-store.ts | 11 +- src/datastore/pg-write-store.ts | 127 +++++++++- src/event-stream/core-node-message.ts | 15 ++ src/event-stream/event-server.ts | 36 ++- src/event-stream/pox-event-parsing.ts | 82 ++++++ src/event-stream/reader.ts | 5 +- src/helpers.ts | 11 +- src/tests/datastore-tests.ts | 13 +- src/tests/helpers-tests.ts | 1 + src/tests/pox-tests.ts | 144 +++++++++++ src/tests/tsv/epoch-3-transition.tsv | 238 ++++++++++++++++++ 38 files changed, 1861 insertions(+), 15 deletions(-) create mode 100644 docs/api/stacking/get-pox-cycle-signer-stackers.example.json create mode 100644 docs/api/stacking/get-pox-cycle-signer-stackers.schema.json create mode 100644 docs/api/stacking/get-pox-cycle-signers.example.json create mode 100644 docs/api/stacking/get-pox-cycle-signers.schema.json create mode 100644 docs/api/stacking/get-pox-cycles.example.json create mode 100644 docs/api/stacking/get-pox-cycles.schema.json create mode 100644 docs/entities/stacking/pox-cycle.example.json create mode 100644 docs/entities/stacking/pox-cycle.schema.json create mode 100644 docs/entities/stacking/signer.example.json create mode 100644 docs/entities/stacking/signer.schema.json create mode 100644 docs/entities/stacking/stacker.example.json create mode 100644 docs/entities/stacking/stacker.schema.json create mode 100644 migrations/1708523986475_pox_sets.js create mode 100644 migrations/1710161516905_update-pox4-cycle-ids.js create mode 100644 migrations/1710774613173_pox-cycles.js create mode 100644 src/api/routes/v2/pox.ts create mode 100644 src/tests/pox-tests.ts create mode 100644 src/tests/tsv/epoch-3-transition.tsv diff --git a/.vscode/launch.json b/.vscode/launch.json index 42580ff805..a7de2bcdc5 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -55,6 +55,7 @@ "skipFiles": [ "/**" ], + "runtimeVersion": "20", "runtimeArgs": ["-r", "ts-node/register/transpile-only", "-r", "tsconfig-paths/register"], "args": ["${workspaceFolder}/src/index.ts"], "outputCapture": "std", diff --git a/docs/api/stacking/get-pox-cycle-signer-stackers.example.json b/docs/api/stacking/get-pox-cycle-signer-stackers.example.json new file mode 100644 index 0000000000..4fa4901f55 --- /dev/null +++ b/docs/api/stacking/get-pox-cycle-signer-stackers.example.json @@ -0,0 +1,12 @@ +{ + "limit": 20, + "offset": 0, + "total": 1, + "results": [ + { + "pox_address": "15Z2sAvjgVDpcBh4vx9g2XKU8FVHYcXNaj", + "stacked_amount": "686251350000000000", + "stacker_address": "STRYYQQ9M8KAF4NS7WNZQYY59X93XEKR31JP64CP" + } + ] +} diff --git a/docs/api/stacking/get-pox-cycle-signer-stackers.schema.json b/docs/api/stacking/get-pox-cycle-signer-stackers.schema.json new file mode 100644 index 0000000000..0f16dfedeb --- /dev/null +++ b/docs/api/stacking/get-pox-cycle-signer-stackers.schema.json @@ -0,0 +1,29 @@ +{ + "description": "GET request that returns stackers for a signer in a PoX cycle", + "additionalProperties": false, + "title": "PoxCycleSignerStackersListResponse", + "type": "object", + "required": ["results", "limit", "offset", "total"], + "properties": { + "limit": { + "type": "integer", + "maximum": 200, + "description": "The number of stackers to return" + }, + "offset": { + "type": "integer", + "description": "The number to stackers to skip (starting at `0`)", + "default": 0 + }, + "total": { + "type": "integer", + "description": "The total number of stackers" + }, + "results": { + "type": "array", + "items": { + "$ref": "../../entities/stacking/stacker.schema.json" + } + } + } +} diff --git a/docs/api/stacking/get-pox-cycle-signers.example.json b/docs/api/stacking/get-pox-cycle-signers.example.json new file mode 100644 index 0000000000..fa7499dd80 --- /dev/null +++ b/docs/api/stacking/get-pox-cycle-signers.example.json @@ -0,0 +1,28 @@ +{ + "limit": 20, + "offset": 0, + "total": 3, + "results": [ + { + "signing_key": "0x038e3c4529395611be9abf6fa3b6987e81d402385e3d605a073f42f407565a4a3d", + "stacked_amount": "686251350000000000", + "stacked_amount_percent": 50, + "weight": 5, + "weight_percent": 55.55555555555556 + }, + { + "signing_key": "0x029874497a7952483aa23890e9d0898696f33864d3df90939930a1f45421fe3b09", + "stacked_amount": "457500900000000000", + "stacked_amount_percent": 33.333333333333336, + "weight": 3, + "weight_percent": 33.33333333333333 + }, + { + "signing_key": "0x02dcde79b38787b72d8e5e0af81cffa802f0a3c8452d6b46e08859165f49a72736", + "stacked_amount": "228750450000000000", + "stacked_amount_percent": 16.666666666666668, + "weight": 1, + "weight_percent": 11.11111111111111 + } + ] +} diff --git a/docs/api/stacking/get-pox-cycle-signers.schema.json b/docs/api/stacking/get-pox-cycle-signers.schema.json new file mode 100644 index 0000000000..b7921a4d38 --- /dev/null +++ b/docs/api/stacking/get-pox-cycle-signers.schema.json @@ -0,0 +1,29 @@ +{ + "description": "GET request that returns signers for a PoX cycle", + "additionalProperties": false, + "title": "PoxCycleSignersListResponse", + "type": "object", + "required": ["results", "limit", "offset", "total"], + "properties": { + "limit": { + "type": "integer", + "maximum": 200, + "description": "The number of signers to return" + }, + "offset": { + "type": "integer", + "description": "The number to signers to skip (starting at `0`)", + "default": 0 + }, + "total": { + "type": "integer", + "description": "The total number of signers" + }, + "results": { + "type": "array", + "items": { + "$ref": "../../entities/stacking/signer.schema.json" + } + } + } +} diff --git a/docs/api/stacking/get-pox-cycles.example.json b/docs/api/stacking/get-pox-cycles.example.json new file mode 100644 index 0000000000..ea1502c1e7 --- /dev/null +++ b/docs/api/stacking/get-pox-cycles.example.json @@ -0,0 +1,31 @@ +{ + "limit": 20, + "offset": 0, + "total": 3, + "results": [ + { + "block_height": 50, + "cycle_number": 14, + "index_block_hash": "0xf5be33abc4e508bdaf2191e88339372edcb3358c44e2a31e1b9b44f2880dde09", + "total_signers": 3, + "total_stacked_amount": "1372502700000000000", + "total_weight": 9 + }, + { + "block_height": 22, + "cycle_number": 13, + "index_block_hash": "0x5077c7d971dd83cd3ba19dca579e3cc8dcf17913186b66093c94520e50d3b7b2", + "total_signers": 3, + "total_stacked_amount": "1372502700000000000", + "total_weight": 9 + }, + { + "block_height": 13, + "cycle_number": 12, + "index_block_hash": "0x62d06851fe03f17cb45a488ae70bd8e0c5c308c523f37814ad4df36bd2108713", + "total_signers": 3, + "total_stacked_amount": "1372502700000000000", + "total_weight": 9 + } + ] +} diff --git a/docs/api/stacking/get-pox-cycles.schema.json b/docs/api/stacking/get-pox-cycles.schema.json new file mode 100644 index 0000000000..6787120286 --- /dev/null +++ b/docs/api/stacking/get-pox-cycles.schema.json @@ -0,0 +1,29 @@ +{ + "description": "GET request that returns PoX cycles", + "additionalProperties": false, + "title": "PoxCycleListResponse", + "type": "object", + "required": ["results", "limit", "offset", "total"], + "properties": { + "limit": { + "type": "integer", + "maximum": 200, + "description": "The number of cycles to return" + }, + "offset": { + "type": "integer", + "description": "The number to cycles to skip (starting at `0`)", + "default": 0 + }, + "total": { + "type": "integer", + "description": "The total number of cycles" + }, + "results": { + "type": "array", + "items": { + "$ref": "../../entities/stacking/pox-cycle.schema.json" + } + } + } +} diff --git a/docs/entities/stacking/pox-cycle.example.json b/docs/entities/stacking/pox-cycle.example.json new file mode 100644 index 0000000000..bc2813d63f --- /dev/null +++ b/docs/entities/stacking/pox-cycle.example.json @@ -0,0 +1,8 @@ +{ + "block_height": 50, + "cycle_number": 14, + "index_block_hash": "0xf5be33abc4e508bdaf2191e88339372edcb3358c44e2a31e1b9b44f2880dde09", + "total_signers": 3, + "total_stacked_amount": "1372502700000000000", + "total_weight": 9 +} diff --git a/docs/entities/stacking/pox-cycle.schema.json b/docs/entities/stacking/pox-cycle.schema.json new file mode 100644 index 0000000000..61e2e4a236 --- /dev/null +++ b/docs/entities/stacking/pox-cycle.schema.json @@ -0,0 +1,33 @@ +{ + "title": "PoxCycle", + "type": "object", + "additionalProperties": false, + "required": [ + "block_height", + "index_block_hash", + "cycle_number", + "total_weight", + "total_stacked_amount", + "total_signers" + ], + "properties": { + "block_height": { + "type": "integer" + }, + "index_block_hash": { + "type": "string" + }, + "cycle_number": { + "type": "integer" + }, + "total_weight": { + "type": "integer" + }, + "total_stacked_amount": { + "type": "string" + }, + "total_signers": { + "type": "integer" + } + } +} diff --git a/docs/entities/stacking/signer.example.json b/docs/entities/stacking/signer.example.json new file mode 100644 index 0000000000..e7b0dcd7cf --- /dev/null +++ b/docs/entities/stacking/signer.example.json @@ -0,0 +1,7 @@ +{ + "signing_key": "0x038e3c4529395611be9abf6fa3b6987e81d402385e3d605a073f42f407565a4a3d", + "stacked_amount": "686251350000000000", + "stacked_amount_percent": 50, + "weight": 5, + "weight_percent": 55.55555555555556 +} diff --git a/docs/entities/stacking/signer.schema.json b/docs/entities/stacking/signer.schema.json new file mode 100644 index 0000000000..8b1c62a38f --- /dev/null +++ b/docs/entities/stacking/signer.schema.json @@ -0,0 +1,29 @@ +{ + "title": "PoxSigner", + "type": "object", + "additionalProperties": false, + "required": [ + "signing_key", + "weight", + "stacked_amount", + "weight_percent", + "stacked_amount_percent" + ], + "properties": { + "signing_key": { + "type": "string" + }, + "weight": { + "type": "integer" + }, + "stacked_amount": { + "type": "string" + }, + "weight_percent": { + "type": "number" + }, + "stacked_amount_percent": { + "type": "number" + } + } +} diff --git a/docs/entities/stacking/stacker.example.json b/docs/entities/stacking/stacker.example.json new file mode 100644 index 0000000000..867791729e --- /dev/null +++ b/docs/entities/stacking/stacker.example.json @@ -0,0 +1,5 @@ +{ + "pox_address": "15Z2sAvjgVDpcBh4vx9g2XKU8FVHYcXNaj", + "stacked_amount": "686251350000000000", + "stacker_address": "STRYYQQ9M8KAF4NS7WNZQYY59X93XEKR31JP64CP" +} diff --git a/docs/entities/stacking/stacker.schema.json b/docs/entities/stacking/stacker.schema.json new file mode 100644 index 0000000000..360d80b38c --- /dev/null +++ b/docs/entities/stacking/stacker.schema.json @@ -0,0 +1,21 @@ +{ + "title": "PoxStacker", + "type": "object", + "additionalProperties": false, + "required": [ + "stacker_address", + "stacked_amount", + "pox_address" + ], + "properties": { + "stacker_address": { + "type": "string" + }, + "stacked_amount": { + "type": "string" + }, + "pox_address": { + "type": "string" + } + } +} diff --git a/docs/generated.d.ts b/docs/generated.d.ts index 7855ee4ad9..f82507bd2e 100644 --- a/docs/generated.d.ts +++ b/docs/generated.d.ts @@ -97,6 +97,9 @@ export type SchemaMergeRootStub = | SmartContractFound | SmartContractNotFound | PoolDelegationsResponse + | PoxCycleSignerStackersListResponse + | PoxCycleSignersListResponse + | PoxCycleListResponse | { [k: string]: unknown | undefined; } @@ -182,6 +185,9 @@ export type SchemaMergeRootStub = | RosettaTransaction | SmartContractStatus | PoolDelegation + | PoxCycle + | PoxSigner + | PoxStacker | NonFungibleTokenHistoryEventWithTxId | NonFungibleTokenHistoryEventWithTxMetadata | NonFungibleTokenHistoryEvent @@ -3153,6 +3159,80 @@ export interface PoolDelegation { */ tx_id: string; } +/** + * GET request that returns stackers for a signer in a PoX cycle + */ +export interface PoxCycleSignerStackersListResponse { + /** + * The number of stackers to return + */ + limit: number; + /** + * The number to stackers to skip (starting at `0`) + */ + offset: number; + /** + * The total number of stackers + */ + total: number; + results: PoxStacker[]; +} +export interface PoxStacker { + stacker_address: string; + stacked_amount: string; + pox_address: string; +} +/** + * GET request that returns signers for a PoX cycle + */ +export interface PoxCycleSignersListResponse { + /** + * The number of signers to return + */ + limit: number; + /** + * The number to signers to skip (starting at `0`) + */ + offset: number; + /** + * The total number of signers + */ + total: number; + results: PoxSigner[]; +} +export interface PoxSigner { + signing_key: string; + weight: number; + stacked_amount: string; + weight_percent: number; + stacked_amount_percent: number; +} +/** + * GET request that returns PoX cycles + */ +export interface PoxCycleListResponse { + /** + * The number of cycles to return + */ + limit: number; + /** + * The number to cycles to skip (starting at `0`) + */ + offset: number; + /** + * The total number of cycles + */ + total: number; + results: PoxCycle[]; +} +export interface PoxCycle { + block_height: number; + index_block_hash: string; + cycle_number: number; + total_weight: number; + total_stacked_amount: string; + total_signers: number; +} /** * List of Non-Fungible Token history events */ diff --git a/docs/openapi.yaml b/docs/openapi.yaml index 67c6917c63..4e93f9ddbf 100644 --- a/docs/openapi.yaml +++ b/docs/openapi.yaml @@ -68,6 +68,8 @@ tags: url: https://docs.hiro.so/get-started/transactions - name: Mempool description: Endpoints to obtain Mempool information + - name: Proof of Transfer + description: Endpoints to get information about the Proof of Transfer consensus mechanism paths: /extended/v1/faucets/stx: @@ -864,6 +866,153 @@ paths: example: $ref: ./api/smart-contracts/get-smart-contracts-status.example.json + /extended/v2/pox/cycles: + get: + summary: Get PoX cycles + description: Retrieves a list of PoX cycles + tags: + - Proof of Transfer + operationId: get_pox_cycles + parameters: + - name: limit + in: query + description: max number of cycles to fetch + required: false + schema: + type: integer + default: 20 + maximum: 60 + - name: offset + in: query + description: index of first cycle to fetch + required: false + schema: + type: integer + example: 20 + responses: + 200: + description: List of cycles + content: + application/json: + schema: + $ref: ./api/stacking/get-pox-cycles.schema.json + example: + $ref: ./api/stacking/get-pox-cycles.example.json + + /extended/v2/pox/cycles/{cycle_number}: + get: + summary: Get PoX cycle + description: Retrieves details for a PoX cycle + tags: + - Proof of Transfer + operationId: get_pox_cycle + parameters: + - name: cycle_number + in: path + description: PoX cycle number + required: true + schema: + type: integer + example: 56 + responses: + 200: + description: Details for cycle + content: + application/json: + schema: + $ref: ./entities/stacking/pox-cycle.schema.json + example: + $ref: ./entities/stacking/pox-cycle.example.json + + /extended/v2/pox/cycles/{cycle_number}/signers: + get: + summary: Get signers in PoX cycle + description: Retrieves a list of signers in a PoX cycle + tags: + - Proof of Transfer + operationId: get_pox_cycle_signers + parameters: + - name: cycle_number + in: path + description: PoX cycle number + required: true + schema: + type: integer + example: 56 + responses: + 200: + description: List of signers for cycle + content: + application/json: + schema: + $ref: ./api/stacking/get-pox-cycle-signers.schema.json + example: + $ref: ./api/stacking/get-pox-cycle-signers.example.json + + /extended/v2/pox/cycles/{cycle_number}/signers/{signer_key}: + get: + summary: Get signer in PoX cycle + description: Retrieves details for a signer in a PoX cycle + tags: + - Proof of Transfer + operationId: get_pox_cycle_signer + parameters: + - name: cycle_number + in: path + description: PoX cycle number + required: true + schema: + type: integer + example: 56 + - name: signer_key + in: path + description: Signer key + required: true + schema: + type: string + example: "0x038e3c4529395611be9abf6fa3b6987e81d402385e3d605a073f42f407565a4a3d" + responses: + 200: + description: Details for PoX signer + content: + application/json: + schema: + $ref: ./entities/stacking/signer.schema.json + example: + $ref: ./entities/stacking/signer.example.json + + /extended/v2/pox/cycles/{cycle_number}/signers/{signer_key}/stackers: + get: + summary: Get stackers for signer in PoX cycle + description: Retrieves a list of stackers for a signer in a PoX cycle + tags: + - Proof of Transfer + operationId: get_pox_cycle_signer_stackers + parameters: + - name: cycle_number + in: path + description: PoX cycle number + required: true + schema: + type: integer + example: 56 + - name: signer_key + in: path + description: Signer key + required: true + schema: + type: string + example: "0x038e3c4529395611be9abf6fa3b6987e81d402385e3d605a073f42f407565a4a3d" + responses: + 200: + description: List of stackers + content: + application/json: + schema: + $ref: ./api/stacking/get-pox-cycle-signer-stackers.schema.json + example: + $ref: ./api/stacking/get-pox-cycle-signer-stackers.example.json + /extended/v1/block: get: summary: Get recent blocks diff --git a/migrations/1708523986475_pox_sets.js b/migrations/1708523986475_pox_sets.js new file mode 100644 index 0000000000..2efa4b955e --- /dev/null +++ b/migrations/1708523986475_pox_sets.js @@ -0,0 +1,66 @@ +/** @param { import("node-pg-migrate").MigrationBuilder } pgm */ +exports.up = pgm => { + pgm.createTable('pox_sets', { + id: { + type: 'bigserial', + primaryKey: true, + }, + block_height: { + type: 'integer', + notNull: true, + }, + index_block_hash: { + type: 'bytea', + notNull: true, + }, + parent_index_block_hash: { + type: 'bytea', + notNull: true, + }, + cycle_number: { + type: 'int', + notNull: true, + }, + pox_ustx_threshold: { + type: 'numeric', + notNull: true, + }, + canonical: { + type: 'boolean', + notNull: true, + }, + signing_key: { + type: 'bytea', + notNull: true, + }, + weight: { + type: 'int', + notNull: true, + }, + stacked_amount: { + type: 'numeric', + notNull: true, + }, + weight_percent: { + type: 'double precision', + notNull: true, + }, + stacked_amount_percent: { + type: 'double precision', + notNull: true, + }, + total_weight: { + type: 'int', + notNull: true, + }, + total_stacked_amount: { + type: 'numeric', + notNull: true, + }, + }); + + pgm.createIndex('pox_sets', 'block_height'); + pgm.createIndex('pox_sets', 'index_block_hash'); + pgm.createIndex('pox_sets', 'signing_key'); + pgm.createIndex('pox_sets', 'cycle_number'); +} diff --git a/migrations/1710161516905_update-pox4-cycle-ids.js b/migrations/1710161516905_update-pox4-cycle-ids.js new file mode 100644 index 0000000000..1c6fbdbab7 --- /dev/null +++ b/migrations/1710161516905_update-pox4-cycle-ids.js @@ -0,0 +1,18 @@ +/* eslint-disable camelcase */ + +exports.shorthands = undefined; + +/** @param { import("node-pg-migrate").MigrationBuilder } pgm */ +exports.up = pgm => { + pgm.addColumn('pox4_events', { + end_cycle_id: { + type: 'numeric', + }, + start_cycle_id: { + type: 'numeric', + }, + }); + + pgm.createIndex('pox4_events', 'end_cycle_id'); + pgm.createIndex('pox4_events', 'start_cycle_id'); +}; diff --git a/migrations/1710774613173_pox-cycles.js b/migrations/1710774613173_pox-cycles.js new file mode 100644 index 0000000000..83442ffe76 --- /dev/null +++ b/migrations/1710774613173_pox-cycles.js @@ -0,0 +1,45 @@ +/** @param { import("node-pg-migrate").MigrationBuilder } pgm */ +exports.up = pgm => { + pgm.createTable('pox_cycles', { + id: { + type: 'bigserial', + primaryKey: true, + }, + block_height: { + type: 'integer', + notNull: true, + }, + index_block_hash: { + type: 'bytea', + notNull: true, + }, + parent_index_block_hash: { + type: 'bytea', + notNull: true, + }, + cycle_number: { + type: 'int', + notNull: true, + }, + canonical: { + type: 'boolean', + notNull: true, + }, + total_weight: { + type: 'int', + notNull: true, + }, + total_stacked_amount: { + type: 'numeric', + notNull: true, + }, + total_signers: { + type: 'int', + notNull: true, + }, + }); + + pgm.createConstraint('pox_cycles', 'pox_cycles_unique', 'UNIQUE(cycle_number, index_block_hash)'); + pgm.createIndex('pox_cycles', 'block_height'); + pgm.createIndex('pox_cycles', 'index_block_hash'); +} diff --git a/src/api/controllers/db-controller.ts b/src/api/controllers/db-controller.ts index 96d68b72f2..83d1a98987 100644 --- a/src/api/controllers/db-controller.ts +++ b/src/api/controllers/db-controller.ts @@ -232,6 +232,8 @@ export function parsePoxSyntheticEvent(poxEvent: DbPoxSyntheticEvent) { start_burn_height: poxEvent.data.start_burn_height.toString(), unlock_burn_height: poxEvent.data.unlock_burn_height.toString(), signer_key: poxEvent.data.signer_key, + end_cycle_id: poxEvent.data.end_cycle_id?.toString() ?? null, + start_cycle_id: poxEvent.data.start_cycle_id?.toString() ?? null, }, }; } @@ -241,6 +243,9 @@ export function parsePoxSyntheticEvent(poxEvent: DbPoxSyntheticEvent) { data: { increase_by: poxEvent.data.increase_by.toString(), total_locked: poxEvent.data.total_locked.toString(), + signer_key: poxEvent.data.signer_key, + end_cycle_id: poxEvent.data.end_cycle_id?.toString() ?? null, + start_cycle_id: poxEvent.data.start_cycle_id?.toString() ?? null, }, }; } @@ -251,6 +256,8 @@ export function parsePoxSyntheticEvent(poxEvent: DbPoxSyntheticEvent) { extend_count: poxEvent.data.extend_count.toString(), unlock_burn_height: poxEvent.data.unlock_burn_height.toString(), signer_key: poxEvent.data.signer_key, + end_cycle_id: poxEvent.data.end_cycle_id?.toString() ?? null, + start_cycle_id: poxEvent.data.start_cycle_id?.toString() ?? null, }, }; } @@ -261,6 +268,8 @@ export function parsePoxSyntheticEvent(poxEvent: DbPoxSyntheticEvent) { amount_ustx: poxEvent.data.amount_ustx.toString(), delegate_to: poxEvent.data.delegate_to, unlock_burn_height: poxEvent.data.unlock_burn_height?.toString(), + end_cycle_id: poxEvent.data.end_cycle_id?.toString() ?? null, + start_cycle_id: poxEvent.data.start_cycle_id?.toString() ?? null, }, }; } @@ -273,6 +282,8 @@ export function parsePoxSyntheticEvent(poxEvent: DbPoxSyntheticEvent) { start_burn_height: poxEvent.data.start_burn_height.toString(), lock_period: poxEvent.data.lock_period.toString(), delegator: poxEvent.data.delegator, + end_cycle_id: poxEvent.data.end_cycle_id?.toString() ?? null, + start_cycle_id: poxEvent.data.start_cycle_id?.toString() ?? null, }, }; } @@ -283,6 +294,8 @@ export function parsePoxSyntheticEvent(poxEvent: DbPoxSyntheticEvent) { increase_by: poxEvent.data.increase_by.toString(), total_locked: poxEvent.data.total_locked.toString(), delegator: poxEvent.data.delegator, + end_cycle_id: poxEvent.data.end_cycle_id?.toString() ?? null, + start_cycle_id: poxEvent.data.start_cycle_id?.toString() ?? null, }, }; } @@ -293,6 +306,8 @@ export function parsePoxSyntheticEvent(poxEvent: DbPoxSyntheticEvent) { unlock_burn_height: poxEvent.data.unlock_burn_height.toString(), extend_count: poxEvent.data.extend_count.toString(), delegator: poxEvent.data.delegator, + end_cycle_id: poxEvent.data.end_cycle_id?.toString() ?? null, + start_cycle_id: poxEvent.data.start_cycle_id?.toString() ?? null, }, }; } @@ -303,6 +318,8 @@ export function parsePoxSyntheticEvent(poxEvent: DbPoxSyntheticEvent) { reward_cycle: poxEvent.data.reward_cycle.toString(), amount_ustx: poxEvent.data.amount_ustx.toString(), signer_key: poxEvent.data.signer_key, + end_cycle_id: poxEvent.data.end_cycle_id?.toString() ?? null, + start_cycle_id: poxEvent.data.start_cycle_id?.toString() ?? null, }, }; } @@ -313,6 +330,8 @@ export function parsePoxSyntheticEvent(poxEvent: DbPoxSyntheticEvent) { reward_cycle: poxEvent.data.reward_cycle.toString(), amount_ustx: poxEvent.data.amount_ustx.toString(), signer_key: poxEvent.data.signer_key, + end_cycle_id: poxEvent.data.end_cycle_id?.toString() ?? null, + start_cycle_id: poxEvent.data.start_cycle_id?.toString() ?? null, }, }; } @@ -322,6 +341,8 @@ export function parsePoxSyntheticEvent(poxEvent: DbPoxSyntheticEvent) { data: { reward_cycle: poxEvent.data.reward_cycle.toString(), amount_ustx: poxEvent.data.amount_ustx.toString(), + end_cycle_id: poxEvent.data.end_cycle_id?.toString() ?? null, + start_cycle_id: poxEvent.data.start_cycle_id?.toString() ?? null, }, }; } @@ -330,6 +351,8 @@ export function parsePoxSyntheticEvent(poxEvent: DbPoxSyntheticEvent) { ...baseInfo, data: { delegate_to: poxEvent.data.delegate_to, + end_cycle_id: poxEvent.data.end_cycle_id?.toString() ?? null, + start_cycle_id: poxEvent.data.start_cycle_id?.toString() ?? null, }, }; } diff --git a/src/api/init.ts b/src/api/init.ts index 6c7915a095..3806cc0a6e 100644 --- a/src/api/init.ts +++ b/src/api/init.ts @@ -54,6 +54,7 @@ import { getReqQuery } from './query-helpers'; import { createV2BurnBlocksRouter } from './routes/v2/burn-blocks'; import { createMempoolRouter } from './routes/v2/mempool'; import { createV2SmartContractsRouter } from './routes/v2/smart-contracts'; +import { createPoxRouter } from './routes/v2/pox'; export interface ApiServer { expressApp: express.Express; @@ -236,6 +237,7 @@ export async function startApiServer(opts: { v2.use('/burn-blocks', createV2BurnBlocksRouter(datastore)); v2.use('/smart-contracts', createV2SmartContractsRouter(datastore)); v2.use('/mempool', createMempoolRouter(datastore)); + v2.use('/pox', createPoxRouter(datastore)); return v2; })() ); diff --git a/src/api/pagination.ts b/src/api/pagination.ts index 9f5073a2ef..5fed3e05ed 100644 --- a/src/api/pagination.ts +++ b/src/api/pagination.ts @@ -36,6 +36,8 @@ export enum ResourceType { Pox2Event, Stacker, BurnBlock, + Signer, + PoxCycle, } export const pagingQueryLimits: Record = { @@ -79,6 +81,14 @@ export const pagingQueryLimits: Record { + if (!validRequestQuery(req, res, CompiledPoxCyclePaginationQueryParams)) return; + const query = req.query as PoxCyclePaginationQueryParams; + + const cycles = await db.v2.getPoxCycles(query); + const response: PoxCycleListResponse = { + limit: cycles.limit, + offset: cycles.offset, + total: cycles.total, + results: cycles.results.map(c => parseDbPoxCycle(c)), + }; + setETagCacheHeaders(res); + res.json(response); + }) + ); + + router.get( + '/cycles/:cycle_number', + cacheHandler, + asyncHandler(async (req, res, next) => { + if (!validRequestParams(req, res, CompiledPoxCycleParams)) return; + const params = req.params as PoxCycleParams; + + const cycle = await db.v2.getPoxCycle(params); + if (!cycle) { + res.status(404).json({ error: `Not found` }); + return; + } + setETagCacheHeaders(res); + res.json(parseDbPoxCycle(cycle)); + }) + ); + + router.get( + '/cycles/:cycle_number/signers', + cacheHandler, + asyncHandler(async (req, res, next) => { + if ( + !validRequestParams(req, res, CompiledPoxCycleParams) || + !validRequestQuery(req, res, CompiledPoxSignerPaginationQueryParams) + ) + return; + const params = req.params as PoxCycleParams; + const query = req.query as PoxSignerPaginationQueryParams; + + try { + const { limit, offset, results, total } = await db.v2.getPoxCycleSigners({ + ...params, + ...query, + }); + const response: PoxCycleSignersListResponse = { + limit, + offset, + total, + results: results.map(r => parseDbPoxSigner(r)), + }; + setETagCacheHeaders(res); + res.json(response); + } catch (error) { + if (error instanceof InvalidRequestError) { + res.status(404).json({ errors: error.message }); + return; + } + throw error; + } + }) + ); + + router.get( + '/cycles/:cycle_number/signers/:signer_key', + cacheHandler, + asyncHandler(async (req, res, next) => { + if (!validRequestParams(req, res, CompiledPoxCycleSignerParams)) return; + const params = req.params as PoxCycleSignerParams; + + try { + const signer = await db.v2.getPoxCycleSigner(params); + if (!signer) { + res.status(404).json({ error: `Not found` }); + return; + } + setETagCacheHeaders(res); + res.json(parseDbPoxSigner(signer)); + } catch (error) { + if (error instanceof InvalidRequestError) { + res.status(404).json({ errors: error.message }); + return; + } + throw error; + } + }) + ); + + router.get( + '/cycles/:cycle_number/signers/:signer_key/stackers', + cacheHandler, + asyncHandler(async (req, res, next) => { + if ( + !validRequestParams(req, res, CompiledPoxCycleSignerParams) || + !validRequestQuery(req, res, CompiledPoxSignerPaginationQueryParams) + ) + return; + const params = req.params as PoxCycleSignerParams; + const query = req.query as PoxSignerPaginationQueryParams; + + try { + const { limit, offset, results, total } = await db.v2.getPoxCycleSignerStackers({ + ...params, + ...query, + }); + const response: PoxCycleSignerStackersListResponse = { + limit, + offset, + total, + results: results.map(r => parseDbPoxSignerStacker(r)), + }; + setETagCacheHeaders(res); + res.json(response); + } catch (error) { + if (error instanceof InvalidRequestError) { + res.status(404).json({ errors: error.message }); + return; + } + throw error; + } + }) + ); + + return router; +} diff --git a/src/api/routes/v2/schemas.ts b/src/api/routes/v2/schemas.ts index 689c9bf7e7..6f79ba2326 100644 --- a/src/api/routes/v2/schemas.ts +++ b/src/api/routes/v2/schemas.ts @@ -72,6 +72,22 @@ export const TransactionLimitParamSchema = Type.Integer({ description: 'Transactions per page', }); +export const PoxCycleLimitParamSchema = Type.Integer({ + minimum: 1, + maximum: pagingQueryLimits[ResourceType.PoxCycle].maxLimit, + default: pagingQueryLimits[ResourceType.PoxCycle].defaultLimit, + title: 'PoX cycle limit', + description: 'PoX cycles per page', +}); + +export const PoxSignerLimitParamSchema = Type.Integer({ + minimum: 1, + maximum: pagingQueryLimits[ResourceType.Signer].maxLimit, + default: pagingQueryLimits[ResourceType.Signer].defaultLimit, + title: 'PoX signer limit', + description: 'PoX signers per page', +}); + const BurnBlockHashParamSchema = Type.RegExp(/^(0x)?[a-fA-F0-9]{64}$/i, { title: 'Burn block hash', description: 'Burn block hash', @@ -113,6 +129,18 @@ export const CompiledTransactionPaginationQueryParams = ajv.compile( TransactionPaginationQueryParamsSchema ); +const PoxCyclePaginationQueryParamsSchema = PaginationQueryParamsSchema(PoxCycleLimitParamSchema); +export type PoxCyclePaginationQueryParams = Static; +export const CompiledPoxCyclePaginationQueryParams = ajv.compile( + PoxCyclePaginationQueryParamsSchema +); + +const PoxSignerPaginationQueryParamsSchema = PaginationQueryParamsSchema(PoxSignerLimitParamSchema); +export type PoxSignerPaginationQueryParams = Static; +export const CompiledPoxSignerPaginationQueryParams = ajv.compile( + PoxSignerPaginationQueryParamsSchema +); + const BlockParamsSchema = Type.Object( { height_or_hash: Type.Union([ @@ -126,6 +154,25 @@ const BlockParamsSchema = Type.Object( export type BlockParams = Static; export const CompiledBlockParams = ajv.compile(BlockParamsSchema); +const PoxCycleParamsSchema = Type.Object( + { + cycle_number: Type.RegExp(/^[0-9]+$/), + }, + { additionalProperties: false } +); +export type PoxCycleParams = Static; +export const CompiledPoxCycleParams = ajv.compile(PoxCycleParamsSchema); + +const PoxCycleSignerParamsSchema = Type.Object( + { + cycle_number: Type.RegExp(/^[0-9]+$/), + signer_key: Type.RegExp(/^(0x)?[a-fA-F0-9]{66}$/i), + }, + { additionalProperties: false } +); +export type PoxCycleSignerParams = Static; +export const CompiledPoxCycleSignerParams = ajv.compile(PoxCycleSignerParamsSchema); + const SmartContractPrincipal = Type.RegExp( /^[0123456789ABCDEFGHJKMNPQRSTVWXYZ]{28,41}\.[a-zA-Z]([a-zA-Z0-9]|[-_]){0,39}$/ ); diff --git a/src/datastore/common.ts b/src/datastore/common.ts index d46639e0bc..0133f58fac 100644 --- a/src/datastore/common.ts +++ b/src/datastore/common.ts @@ -66,6 +66,17 @@ export interface DbBurnchainReward { reward_index: number; } +export interface DbPoxSetSigners { + cycle_number: number; + pox_ustx_threshold: bigint; + signers: { + signing_key: string; + weight: number; + stacked_amount: bigint; + }[]; + rewarded_addresses: string[]; +} + export interface DbRewardSlotHolder { canonical: boolean; burn_block_hash: string; @@ -370,6 +381,8 @@ export interface DbPoxSyntheticStackStxEvent extends DbPoxSyntheticBaseEventData start_burn_height: bigint; unlock_burn_height: bigint; signer_key: string | null; + end_cycle_id: bigint | null; + start_cycle_id: bigint | null; }; } @@ -378,6 +391,9 @@ export interface DbPoxSyntheticStackIncreaseEvent extends DbPoxSyntheticBaseEven data: { increase_by: bigint; total_locked: bigint; + signer_key: string | null; + end_cycle_id: bigint | null; + start_cycle_id: bigint | null; }; } @@ -387,6 +403,8 @@ export interface DbPoxSyntheticStackExtendEvent extends DbPoxSyntheticBaseEventD extend_count: bigint; unlock_burn_height: bigint; signer_key: string | null; + end_cycle_id: bigint | null; + start_cycle_id: bigint | null; }; } @@ -396,6 +414,8 @@ export interface DbPoxSyntheticDelegateStxEvent extends DbPoxSyntheticBaseEventD amount_ustx: bigint; delegate_to: string; unlock_burn_height: bigint | null; + end_cycle_id: bigint | null; + start_cycle_id: bigint | null; }; } @@ -407,6 +427,8 @@ export interface DbPoxSyntheticDelegateStackStxEvent extends DbPoxSyntheticBaseE start_burn_height: bigint; lock_period: bigint; delegator: string; + end_cycle_id: bigint | null; + start_cycle_id: bigint | null; }; } @@ -416,6 +438,8 @@ export interface DbPoxSyntheticDelegateStackIncreaseEvent extends DbPoxSynthetic increase_by: bigint; total_locked: bigint; delegator: string; + end_cycle_id: bigint | null; + start_cycle_id: bigint | null; }; } @@ -425,6 +449,8 @@ export interface DbPoxSyntheticDelegateStackExtendEvent extends DbPoxSyntheticBa unlock_burn_height: bigint; extend_count: bigint; delegator: string; + end_cycle_id: bigint | null; + start_cycle_id: bigint | null; }; } @@ -434,6 +460,8 @@ export interface DbPoxSyntheticStackAggregationCommitEvent extends DbPoxSyntheti reward_cycle: bigint; amount_ustx: bigint; signer_key: string | null; + end_cycle_id: bigint | null; + start_cycle_id: bigint | null; }; } @@ -444,6 +472,8 @@ export interface DbPoxSyntheticStackAggregationCommitIndexedEvent reward_cycle: bigint; amount_ustx: bigint; signer_key: string | null; + end_cycle_id: bigint | null; + start_cycle_id: bigint | null; }; } @@ -452,6 +482,8 @@ export interface DbPoxSyntheticStackAggregationIncreaseEvent extends DbPoxSynthe data: { reward_cycle: bigint; amount_ustx: bigint; + end_cycle_id: bigint | null; + start_cycle_id: bigint | null; }; } @@ -459,6 +491,8 @@ export interface DbPoxSyntheticRevokeDelegateStxEvent extends DbPoxSyntheticBase name: SyntheticPoxEventName.RevokeDelegateStx; data: { delegate_to: string; + end_cycle_id: bigint | null; + start_cycle_id: bigint | null; }; } @@ -592,6 +626,7 @@ export interface DataStoreBlockUpdateData { pox_v1_unlock_height?: number; pox_v2_unlock_height?: number; pox_v3_unlock_height?: number; + poxSetSigners?: DbPoxSetSigners; } export interface DataStoreMicroblockUpdateData { @@ -981,6 +1016,41 @@ export interface FaucetRequestQueryResult { occurred_at: string; } +export interface PoxCycleQueryResult { + block_height: number; + index_block_hash: string; + cycle_number: number; + canonical: boolean; + total_weight: number; + total_stacked_amount: string; + total_signers: number; +} + +export interface DbPoxCycle { + block_height: number; + index_block_hash: string; + cycle_number: number; + total_weight: number; + total_stacked_amount: string; + total_signers: number; +} + +export interface DbPoxCycleSigner { + signing_key: string; + weight: number; + stacked_amount: string; + weight_percent: number; + stacked_amount_percent: number; + // TODO: Figure this out + // total_stackers: number; +} + +export interface DbPoxCycleSignerStacker { + stacker: string; + locked: string; + pox_addr: string; +} + interface ReOrgEntities { blocks: number; microblocks: number; @@ -998,6 +1068,8 @@ interface ReOrgEntities { names: number; namespaces: number; subdomains: number; + poxSigners: number; + poxCycles: number; } export interface ReOrgUpdatedEntities { @@ -1288,6 +1360,10 @@ export interface PoxSyntheticEventQueryResult { // [pox4] unique to stacks-stx, stack-extend, stack-aggregation-commit, stack-aggregation-commit-indexed signer_key?: string | null; + + // [pox4] + end_cycle_id?: string | null; + start_cycle_id?: string | null; } export interface PoxSyntheticEventInsertValues { @@ -1349,6 +1425,10 @@ export interface PoxSyntheticEventInsertValues { // [pox4] unique to stacks-stx, stack-extend, stack-aggregation-commit, stack-aggregation-commit-indexed signer_key?: PgBytea | null; + + // [pox4] + end_cycle_id?: PgNumeric | null; + start_cycle_id?: PgNumeric | null; } export interface NftEventInsertValues { @@ -1525,6 +1605,33 @@ export interface RewardSlotHolderInsertValues { slot_index: number; } +export interface PoxSetSignerValues { + canonical: boolean; + block_height: number; + index_block_hash: PgBytea; + parent_index_block_hash: PgBytea; + cycle_number: number; + pox_ustx_threshold: bigint; + signing_key: PgBytea; + weight: number; + stacked_amount: bigint; + weight_percent: number; + stacked_amount_percent: number; + total_weight: number; + total_stacked_amount: bigint; +} + +export interface PoxCycleInsertValues { + canonical: boolean; + block_height: number; + index_block_hash: PgBytea; + parent_index_block_hash: PgBytea; + cycle_number: number; + total_weight: number; + total_stacked_amount: bigint; + total_signers: number; +} + export interface SmartContractInsertValues { tx_id: PgBytea; canonical: boolean; diff --git a/src/datastore/helpers.ts b/src/datastore/helpers.ts index e93d32d6ad..7e15566886 100644 --- a/src/datastore/helpers.ts +++ b/src/datastore/helpers.ts @@ -252,6 +252,13 @@ export const POX_SYNTHETIC_EVENT_COLUMNS = [ 'amount_ustx', ]; +export const POX4_SYNTHETIC_EVENT_COLUMNS = [ + ...POX_SYNTHETIC_EVENT_COLUMNS, + 'signer_key', + 'end_cycle_id', + 'start_cycle_id', +]; + /** * Adds a table name prefix to an array of column names. * @param columns - array of column names @@ -662,6 +669,8 @@ export function parseDbPoxSyntheticEvent(row: PoxSyntheticEventQueryResult): DbP start_burn_height: BigInt(unwrapOptionalProp(row, 'start_burn_height')), unlock_burn_height: BigInt(unwrapOptionalProp(row, 'unlock_burn_height')), signer_key: row.signer_key ?? null, + end_cycle_id: row.end_cycle_id ? BigInt(row.end_cycle_id) : null, + start_cycle_id: row.start_cycle_id ? BigInt(row.start_cycle_id) : null, }, }; return { @@ -676,6 +685,9 @@ export function parseDbPoxSyntheticEvent(row: PoxSyntheticEventQueryResult): DbP data: { increase_by: BigInt(unwrapOptionalProp(row, 'increase_by')), total_locked: BigInt(unwrapOptionalProp(row, 'total_locked')), + signer_key: row.signer_key ?? null, + end_cycle_id: row.end_cycle_id ? BigInt(row.end_cycle_id) : null, + start_cycle_id: row.start_cycle_id ? BigInt(row.start_cycle_id) : null, }, }; return { @@ -691,6 +703,8 @@ export function parseDbPoxSyntheticEvent(row: PoxSyntheticEventQueryResult): DbP extend_count: BigInt(unwrapOptionalProp(row, 'extend_count')), unlock_burn_height: BigInt(unwrapOptionalProp(row, 'unlock_burn_height')), signer_key: row.signer_key ?? null, + end_cycle_id: row.end_cycle_id ? BigInt(row.end_cycle_id) : null, + start_cycle_id: row.start_cycle_id ? BigInt(row.start_cycle_id) : null, }, }; return { @@ -708,6 +722,8 @@ export function parseDbPoxSyntheticEvent(row: PoxSyntheticEventQueryResult): DbP unlock_burn_height: row.unlock_burn_height ? BigInt(unwrapOptionalProp(row, 'unlock_burn_height')) : null, + end_cycle_id: row.end_cycle_id ? BigInt(row.end_cycle_id) : null, + start_cycle_id: row.start_cycle_id ? BigInt(row.start_cycle_id) : null, }, }; return { @@ -725,6 +741,8 @@ export function parseDbPoxSyntheticEvent(row: PoxSyntheticEventQueryResult): DbP start_burn_height: BigInt(unwrapOptionalProp(row, 'start_burn_height')), lock_period: BigInt(unwrapOptionalProp(row, 'lock_period')), delegator: unwrapOptionalProp(row, 'delegator'), + end_cycle_id: row.end_cycle_id ? BigInt(row.end_cycle_id) : null, + start_cycle_id: row.start_cycle_id ? BigInt(row.start_cycle_id) : null, }, }; return { @@ -740,6 +758,8 @@ export function parseDbPoxSyntheticEvent(row: PoxSyntheticEventQueryResult): DbP increase_by: BigInt(unwrapOptionalProp(row, 'increase_by')), total_locked: BigInt(unwrapOptionalProp(row, 'total_locked')), delegator: unwrapOptionalProp(row, 'delegator'), + end_cycle_id: row.end_cycle_id ? BigInt(row.end_cycle_id) : null, + start_cycle_id: row.start_cycle_id ? BigInt(row.start_cycle_id) : null, }, }; return { @@ -755,6 +775,8 @@ export function parseDbPoxSyntheticEvent(row: PoxSyntheticEventQueryResult): DbP unlock_burn_height: BigInt(unwrapOptionalProp(row, 'unlock_burn_height')), extend_count: BigInt(unwrapOptionalProp(row, 'extend_count')), delegator: unwrapOptionalProp(row, 'delegator'), + end_cycle_id: row.end_cycle_id ? BigInt(row.end_cycle_id) : null, + start_cycle_id: row.start_cycle_id ? BigInt(row.start_cycle_id) : null, }, }; return { @@ -770,6 +792,8 @@ export function parseDbPoxSyntheticEvent(row: PoxSyntheticEventQueryResult): DbP reward_cycle: BigInt(unwrapOptionalProp(row, 'reward_cycle')), amount_ustx: BigInt(unwrapOptionalProp(row, 'amount_ustx')), signer_key: row.signer_key ?? null, + end_cycle_id: row.end_cycle_id ? BigInt(row.end_cycle_id) : null, + start_cycle_id: row.start_cycle_id ? BigInt(row.start_cycle_id) : null, }, }; return { @@ -785,6 +809,8 @@ export function parseDbPoxSyntheticEvent(row: PoxSyntheticEventQueryResult): DbP reward_cycle: BigInt(unwrapOptionalProp(row, 'reward_cycle')), amount_ustx: BigInt(unwrapOptionalProp(row, 'amount_ustx')), signer_key: row.signer_key ?? null, + end_cycle_id: row.end_cycle_id ? BigInt(row.end_cycle_id) : null, + start_cycle_id: row.start_cycle_id ? BigInt(row.start_cycle_id) : null, }, }; return { @@ -799,6 +825,8 @@ export function parseDbPoxSyntheticEvent(row: PoxSyntheticEventQueryResult): DbP data: { reward_cycle: BigInt(unwrapOptionalProp(row, 'reward_cycle')), amount_ustx: BigInt(unwrapOptionalProp(row, 'amount_ustx')), + end_cycle_id: row.end_cycle_id ? BigInt(row.end_cycle_id) : null, + start_cycle_id: row.start_cycle_id ? BigInt(row.start_cycle_id) : null, }, }; return { @@ -812,6 +840,8 @@ export function parseDbPoxSyntheticEvent(row: PoxSyntheticEventQueryResult): DbP name: rowName, data: { delegate_to: unwrapOptionalProp(row, 'delegate_to'), + end_cycle_id: row.end_cycle_id ? BigInt(row.end_cycle_id) : null, + start_cycle_id: row.start_cycle_id ? BigInt(row.start_cycle_id) : null, }, }; return { @@ -1313,6 +1343,8 @@ export function newReOrgUpdatedEntities(): ReOrgUpdatedEntities { names: 0, namespaces: 0, subdomains: 0, + poxSigners: 0, + poxCycles: 0, }, markedNonCanonical: { blocks: 0, @@ -1331,6 +1363,8 @@ export function newReOrgUpdatedEntities(): ReOrgUpdatedEntities { names: 0, namespaces: 0, subdomains: 0, + poxSigners: 0, + poxCycles: 0, }, prunedMempoolTxs: 0, restoredMempoolTxs: 0, diff --git a/src/datastore/pg-store-v2.ts b/src/datastore/pg-store-v2.ts index 1e7554594b..f7d227732c 100644 --- a/src/datastore/pg-store-v2.ts +++ b/src/datastore/pg-store-v2.ts @@ -7,6 +7,12 @@ import { BlockParams, BlockPaginationQueryParams, SmartContractStatusParams, + PoxCyclePaginationQueryParams, + PoxCycleLimitParamSchema, + PoxCycleParams, + PoxSignerPaginationQueryParams, + PoxCycleSignerParams, + PoxSignerLimitParamSchema, } from '../api/routes/v2/schemas'; import { InvalidRequestError, InvalidRequestErrorType } from '../errors'; import { normalizeHashString } from '../helpers'; @@ -20,6 +26,10 @@ import { DbTxTypeId, DbSmartContractStatus, DbTxStatus, + PoxCycleQueryResult, + DbPoxCycle, + DbPoxCycleSigner, + DbPoxCycleSignerStacker, } from './common'; import { BLOCK_COLUMNS, parseBlockQueryResult, TX_COLUMNS, parseTxQueryResult } from './helpers'; @@ -269,4 +279,133 @@ export class PgStoreV2 extends BasePgStoreModule { return statusArray; }); } + + async getPoxCycles(args: PoxCyclePaginationQueryParams): Promise> { + return this.sqlTransaction(async sql => { + const limit = args.limit ?? PoxCycleLimitParamSchema.default; + const offset = args.offset ?? 0; + const results = await sql<(PoxCycleQueryResult & { total: number })[]>` + SELECT + cycle_number, block_height, index_block_hash, total_weight, total_signers, + total_stacked_amount, COUNT(*) OVER()::int AS total + FROM pox_cycles + WHERE canonical = TRUE + ORDER BY cycle_number DESC + OFFSET ${offset} + LIMIT ${limit} + `; + return { + limit, + offset, + results: results, + total: results[0].total, + }; + }); + } + + async getPoxCycle(args: PoxCycleParams): Promise { + return this.sqlTransaction(async sql => { + const results = await sql` + SELECT + cycle_number, block_height, index_block_hash, total_weight, total_signers, + total_stacked_amount + FROM pox_cycles + WHERE canonical = TRUE AND cycle_number = ${args.cycle_number} + LIMIT 1 + `; + if (results.count > 0) return results[0]; + }); + } + + async getPoxCycleSigners( + args: PoxCycleParams & PoxSignerPaginationQueryParams + ): Promise> { + return this.sqlTransaction(async sql => { + const limit = args.limit ?? PoxSignerLimitParamSchema.default; + const offset = args.offset ?? 0; + const cycleCheck = + await sql`SELECT cycle_number FROM pox_cycles WHERE cycle_number = ${args.cycle_number} LIMIT 1`; + if (cycleCheck.count === 0) + throw new InvalidRequestError(`PoX cycle not found`, InvalidRequestErrorType.invalid_param); + const results = await sql<(DbPoxCycleSigner & { total: number })[]>` + SELECT + signing_key, weight, stacked_amount, weight_percent, stacked_amount_percent, + COUNT(*) OVER()::int AS total + FROM pox_sets + WHERE canonical = TRUE AND cycle_number = ${args.cycle_number} + ORDER BY weight DESC, stacked_amount DESC, signing_key + OFFSET ${offset} + LIMIT ${limit} + `; + return { + limit, + offset, + results: results, + total: results[0].total, + }; + }); + } + + async getPoxCycleSigner(args: PoxCycleSignerParams): Promise { + return this.sqlTransaction(async sql => { + const cycleCheck = + await sql`SELECT cycle_number FROM pox_cycles WHERE cycle_number = ${args.cycle_number} LIMIT 1`; + if (cycleCheck.count === 0) + throw new InvalidRequestError(`PoX cycle not found`, InvalidRequestErrorType.invalid_param); + const results = await sql` + SELECT + signing_key, weight, stacked_amount, weight_percent, stacked_amount_percent + FROM pox_sets + WHERE canonical = TRUE AND cycle_number = ${args.cycle_number} + LIMIT 1 + `; + if (results.count > 0) return results[0]; + }); + } + + async getPoxCycleSignerStackers( + args: PoxCycleSignerParams & PoxSignerPaginationQueryParams + ): Promise> { + return this.sqlTransaction(async sql => { + const limit = args.limit ?? PoxSignerLimitParamSchema.default; + const offset = args.offset ?? 0; + const cycleCheck = await sql` + SELECT cycle_number FROM pox_cycles WHERE cycle_number = ${args.cycle_number} LIMIT 1 + `; + if (cycleCheck.count === 0) + throw new InvalidRequestError(`PoX cycle not found`, InvalidRequestErrorType.invalid_param); + const signerCheck = await sql` + SELECT signing_key + FROM pox_sets + WHERE cycle_number = ${args.cycle_number} AND signing_key = ${args.signer_key} + LIMIT 1 + `; + if (signerCheck.count === 0) + throw new InvalidRequestError( + `PoX cycle signer not found`, + InvalidRequestErrorType.invalid_param + ); + const results = await sql<(DbPoxCycleSignerStacker & { total: number })[]>` + WITH stackers AS ( + SELECT DISTINCT ON (stacker) stacker, locked, pox_addr + FROM pox4_events + WHERE canonical = true + AND microblock_canonical = true + AND start_cycle_id <= ${args.cycle_number} + AND (end_cycle_id >= ${args.cycle_number} OR end_cycle_id IS NULL) + AND signer_key = ${args.signer_key} + ORDER BY stacker, block_height DESC, tx_index DESC, event_index DESC + ) + SELECT *, COUNT(*) OVER()::int AS total FROM stackers + OFFSET ${offset} + LIMIT ${limit} + `; + return { + limit, + offset, + results: results, + total: results[0].total, + }; + }); + } } diff --git a/src/datastore/pg-store.ts b/src/datastore/pg-store.ts index e98b36f65b..ca27b28161 100644 --- a/src/datastore/pg-store.ts +++ b/src/datastore/pg-store.ts @@ -6,7 +6,7 @@ import { import { ClarityAbi } from '@stacks/transactions'; import { getTxTypeId, getTxTypeString } from '../api/controllers/db-controller'; import { - assertNotNullish, + unwrapNotNullish, FoundOrNot, unwrapOptional, bnsHexValueToName, @@ -84,6 +84,7 @@ import { parseQueryResultToSmartContract, parseTxQueryResult, parseTxsWithAssetTransfers, + POX4_SYNTHETIC_EVENT_COLUMNS, POX_SYNTHETIC_EVENT_COLUMNS, prefixedCols, TX_COLUMNS, @@ -1911,9 +1912,7 @@ export class PgStore extends BasePgStore { }): Promise { return await this.sqlTransaction(async sql => { const cols = - poxTable === 'pox4_events' - ? [...POX_SYNTHETIC_EVENT_COLUMNS, 'signer_key'] - : POX_SYNTHETIC_EVENT_COLUMNS; + poxTable === 'pox4_events' ? POX4_SYNTHETIC_EVENT_COLUMNS : POX_SYNTHETIC_EVENT_COLUMNS; const queryResults = await sql` SELECT ${sql(cols)} FROM ${sql(poxTable)} @@ -2529,8 +2528,8 @@ export class PgStore extends BasePgStore { block_height: row.block_height, canonical: row.canonical, locked_address: unwrapOptional(row.sender), - locked_amount: BigInt(assertNotNullish(row.amount)), - unlock_height: Number(assertNotNullish(row.unlock_height)), + locked_amount: BigInt(unwrapNotNullish(row.amount)), + unlock_height: Number(unwrapNotNullish(row.unlock_height)), event_type: DbEventTypeId.StxLock, contract_name: unwrapOptional(row.contract_name), }; diff --git a/src/datastore/pg-write-store.ts b/src/datastore/pg-write-store.ts index 82adccf95c..1d5621bbbf 100644 --- a/src/datastore/pg-write-store.ts +++ b/src/datastore/pg-write-store.ts @@ -1,5 +1,11 @@ import * as assert from 'assert'; -import { getOrAdd, I32_MAX, getIbdBlockHeight, getUintEnvOrDefault } from '../helpers'; +import { + getOrAdd, + I32_MAX, + getIbdBlockHeight, + getUintEnvOrDefault, + unwrapOptionalProp, +} from '../helpers'; import { DbBlock, DbTx, @@ -60,6 +66,9 @@ import { DataStoreBnsBlockTxData, DbPoxSyntheticEvent, PoxSyntheticEventTable, + DbPoxSetSigners, + PoxSetSignerValues, + PoxCycleInsertValues, } from './common'; import { BLOCK_COLUMNS, @@ -92,6 +101,7 @@ import { runMigrations, } from '@hirosystems/api-toolkit'; import { PgServer, getConnectionArgs, getConnectionConfig } from './connection'; +import { BigNumber } from 'bignumber.js'; const MIGRATIONS_TABLE = 'pgmigrations'; const INSERT_BATCH_SIZE = 500; @@ -253,6 +263,10 @@ export class PgWriteStore extends PgStore { if ((await this.updateBlock(sql, data.block)) !== 0) { const q = new PgWriteQueue(); q.enqueue(() => this.updateMinerRewards(sql, data.minerRewards)); + if (data.poxSetSigners && data.poxSetSigners.signers) { + const poxSet = data.poxSetSigners; + q.enqueue(() => this.updatePoxSetsBatch(sql, data.block, poxSet)); + } if (batchedTxData.length > 0) { q.enqueue(() => this.updateTx( @@ -815,6 +829,8 @@ export class PgWriteStore extends PgStore { }; if (poxTable === 'pox4_events') { value.signer_key = null; + value.end_cycle_id = null; + value.start_burn_height = null; } // Set event-specific columns @@ -831,12 +847,19 @@ export class PgWriteStore extends PgStore { value.unlock_burn_height = event.data.unlock_burn_height.toString(); if (poxTable === 'pox4_events') { value.signer_key = event.data.signer_key; + value.end_cycle_id = event.data.end_cycle_id?.toString() ?? null; + value.start_cycle_id = event.data.start_cycle_id?.toString() ?? null; } break; } case SyntheticPoxEventName.StackIncrease: { value.increase_by = event.data.increase_by.toString(); value.total_locked = event.data.total_locked.toString(); + if (poxTable === 'pox4_events') { + value.signer_key = event.data.signer_key; + value.end_cycle_id = event.data.end_cycle_id?.toString() ?? null; + value.start_cycle_id = event.data.start_cycle_id?.toString() ?? null; + } break; } case SyntheticPoxEventName.StackExtend: { @@ -844,6 +867,8 @@ export class PgWriteStore extends PgStore { value.unlock_burn_height = event.data.unlock_burn_height.toString(); if (poxTable === 'pox4_events') { value.signer_key = event.data.signer_key; + value.end_cycle_id = event.data.end_cycle_id?.toString() ?? null; + value.start_cycle_id = event.data.start_cycle_id?.toString() ?? null; } break; } @@ -851,6 +876,10 @@ export class PgWriteStore extends PgStore { value.amount_ustx = event.data.amount_ustx.toString(); value.delegate_to = event.data.delegate_to; value.unlock_burn_height = event.data.unlock_burn_height?.toString() ?? null; + if (poxTable === 'pox4_events') { + value.end_cycle_id = event.data.end_cycle_id?.toString() ?? null; + value.start_cycle_id = event.data.start_cycle_id?.toString() ?? null; + } break; } case SyntheticPoxEventName.DelegateStackStx: { @@ -859,18 +888,30 @@ export class PgWriteStore extends PgStore { value.start_burn_height = event.data.start_burn_height.toString(); value.unlock_burn_height = event.data.unlock_burn_height.toString(); value.delegator = event.data.delegator; + if (poxTable === 'pox4_events') { + value.end_cycle_id = event.data.end_cycle_id?.toString() ?? null; + value.start_cycle_id = event.data.start_cycle_id?.toString() ?? null; + } break; } case SyntheticPoxEventName.DelegateStackIncrease: { value.increase_by = event.data.increase_by.toString(); value.total_locked = event.data.total_locked.toString(); value.delegator = event.data.delegator; + if (poxTable === 'pox4_events') { + value.end_cycle_id = event.data.end_cycle_id?.toString() ?? null; + value.start_cycle_id = event.data.start_cycle_id?.toString() ?? null; + } break; } case SyntheticPoxEventName.DelegateStackExtend: { value.extend_count = event.data.extend_count.toString(); value.unlock_burn_height = event.data.unlock_burn_height.toString(); value.delegator = event.data.delegator; + if (poxTable === 'pox4_events') { + value.end_cycle_id = event.data.end_cycle_id?.toString() ?? null; + value.start_cycle_id = event.data.start_cycle_id?.toString() ?? null; + } break; } case SyntheticPoxEventName.StackAggregationCommit: { @@ -878,6 +919,8 @@ export class PgWriteStore extends PgStore { value.amount_ustx = event.data.amount_ustx.toString(); if (poxTable === 'pox4_events') { value.signer_key = event.data.signer_key; + value.end_cycle_id = event.data.end_cycle_id?.toString() ?? null; + value.start_cycle_id = event.data.start_cycle_id?.toString() ?? null; } break; } @@ -886,16 +929,26 @@ export class PgWriteStore extends PgStore { value.amount_ustx = event.data.amount_ustx.toString(); if (poxTable === 'pox4_events') { value.signer_key = event.data.signer_key; + value.end_cycle_id = event.data.end_cycle_id?.toString() ?? null; + value.start_cycle_id = event.data.start_cycle_id?.toString() ?? null; } break; } case SyntheticPoxEventName.StackAggregationIncrease: { value.reward_cycle = event.data.reward_cycle.toString(); value.amount_ustx = event.data.amount_ustx.toString(); + if (poxTable === 'pox4_events') { + value.end_cycle_id = event.data.end_cycle_id?.toString() ?? null; + value.start_cycle_id = event.data.start_cycle_id?.toString() ?? null; + } break; } case SyntheticPoxEventName.RevokeDelegateStx: { value.delegate_to = event.data.delegate_to; + if (poxTable === 'pox4_events') { + value.end_cycle_id = event.data.end_cycle_id?.toString() ?? null; + value.start_cycle_id = event.data.start_cycle_id?.toString() ?? null; + } break; } default: { @@ -1319,6 +1372,53 @@ export class PgWriteStore extends PgStore { `; } + async updatePoxSetsBatch(sql: PgSqlClient, block: DbBlock, poxSet: DbPoxSetSigners) { + const totalWeight = poxSet.signers.reduce((acc, signer) => acc + signer.weight, 0); + const totalStacked = poxSet.signers.reduce((acc, signer) => acc + signer.stacked_amount, 0n); + + const cycleValues: PoxCycleInsertValues = { + canonical: block.canonical, + block_height: block.block_height, + index_block_hash: block.index_block_hash, + parent_index_block_hash: block.parent_index_block_hash, + cycle_number: poxSet.cycle_number, + total_stacked_amount: totalStacked, + total_weight: totalWeight, + total_signers: poxSet.signers.length, + }; + await sql` + INSERT INTO pox_cycles ${sql(cycleValues)} + ON CONFLICT ON CONSTRAINT pox_cycles_unique DO NOTHING + `; + + for (const signer of poxSet.signers) { + const values: PoxSetSignerValues = { + canonical: block.canonical, + index_block_hash: block.index_block_hash, + parent_index_block_hash: block.parent_index_block_hash, + block_height: block.block_height, + cycle_number: poxSet.cycle_number, + pox_ustx_threshold: poxSet.pox_ustx_threshold, + signing_key: signer.signing_key, + weight: signer.weight, + stacked_amount: signer.stacked_amount, + weight_percent: (signer.weight / totalWeight) * 100, + stacked_amount_percent: new BigNumber(signer.stacked_amount.toString()) + .div(totalStacked.toString()) + .times(100) + .toNumber(), + total_stacked_amount: totalStacked, + total_weight: totalWeight, + }; + const signerInsertResult = await sql` + INSERT into pox_sets ${sql(values)} + `; + if (signerInsertResult.count !== 1) { + throw new Error(`Failed to insert pox signer set at block ${block.index_block_hash}`); + } + } + } + async updateAttachments(attachments: DataStoreAttachmentData[]): Promise { await this.sqlWriteTransaction(async sql => { // Each attachment will batch insert zonefiles for name and all subdomains that apply. @@ -2730,6 +2830,31 @@ export class PgWriteStore extends PgStore { updatedEntities.markedNonCanonical.subdomains += subdomainResult.count; } }); + q.enqueue(async () => { + const poxSetResult = await sql` + UPDATE pox_sets + SET canonical = ${canonical} + WHERE index_block_hash = ${indexBlockHash} AND canonical != ${canonical} + `; + if (canonical) { + updatedEntities.markedCanonical.poxSigners += poxSetResult.count; + } else { + updatedEntities.markedNonCanonical.poxSigners += poxSetResult.count; + } + }); + q.enqueue(async () => { + const poxCycleResult = await sql` + UPDATE pox_cycles + SET canonical = ${canonical} + WHERE index_block_hash = ${indexBlockHash} AND canonical != ${canonical} + `; + if (canonical) { + updatedEntities.markedCanonical.poxCycles += poxCycleResult.count; + } else { + updatedEntities.markedNonCanonical.poxCycles += poxCycleResult.count; + } + }); + await q.done(); return result; diff --git a/src/event-stream/core-node-message.ts b/src/event-stream/core-node-message.ts index d37d61f961..93d711c496 100644 --- a/src/event-stream/core-node-message.ts +++ b/src/event-stream/core-node-message.ts @@ -255,6 +255,21 @@ export interface CoreNodeBlockMessage { pox_v1_unlock_height?: number; pox_v2_unlock_height?: number; pox_v3_unlock_height?: number; + /** Available starting in epoch3, only included in blocks where the pox cycle rewards are first calculated */ + cycle_number?: number; + /** Available starting in epoch3, only included in blocks where the pox cycle rewards are first calculated */ + reward_set?: { + pox_ustx_threshold: string; // "666720000000000" + rewarded_addresses: string[]; // burnchain (btc) addresses + signers?: { + signing_key: string; // "03a80704b1eb07b4d526f069d6ac592bb9b8216bcf1734fa40badd8f9867b4c79e", + weight: number; // 1, + stacked_amt: string; // "3000225000000000" + }[]; + start_cycle_state: { + missed_reward_slots: []; + }; + }; block_time: number; } diff --git a/src/event-stream/event-server.ts b/src/event-stream/event-server.ts index e782505fe1..8e4c240eb5 100644 --- a/src/event-stream/event-server.ts +++ b/src/event-stream/event-server.ts @@ -6,7 +6,7 @@ import * as bodyParser from 'body-parser'; import { asyncHandler } from '../api/async-handler'; import PQueue from 'p-queue'; import * as prom from 'prom-client'; -import { ChainID, getChainIDNetwork, getIbdBlockHeight } from '../helpers'; +import { ChainID, assertNotNullish, getChainIDNetwork, getIbdBlockHeight } from '../helpers'; import { CoreNodeBlockMessage, CoreNodeEventType, @@ -38,6 +38,7 @@ import { DbPoxSyntheticEvent, DbTxStatus, DbBnsSubdomain, + DbPoxSetSigners, } from '../datastore/common'; import { getTxSenderAddress, @@ -359,6 +360,38 @@ async function handleBlockMessage( return microblock; }); + let poxSetSigners: DbPoxSetSigners | undefined; + if (msg.reward_set) { + assertNotNullish( + msg.cycle_number, + () => 'Cycle number must be present if reward set is present' + ); + let signers: DbPoxSetSigners['signers'] = []; + if (msg.reward_set.signers) { + signers = msg.reward_set.signers.map(signer => ({ + signing_key: '0x' + signer.signing_key, + weight: signer.weight, + stacked_amount: BigInt(signer.stacked_amt), + })); + logger.info( + `Received new pox set message, block=${msg.block_height}, cycle=${msg.cycle_number}, signers=${msg.reward_set.signers.length}` + ); + } + let rewardedAddresses: string[] = []; + if (msg.reward_set.rewarded_addresses) { + rewardedAddresses = msg.reward_set.rewarded_addresses; + logger.info( + `Received new pox set message, ${rewardedAddresses.length} rewarded BTC addresses` + ); + } + poxSetSigners = { + cycle_number: msg.cycle_number, + pox_ustx_threshold: BigInt(msg.reward_set.pox_ustx_threshold), + signers, + rewarded_addresses: rewardedAddresses, + }; + } + const dbData: DataStoreBlockUpdateData = { block: dbBlock, microblocks: dbMicroblocks, @@ -367,6 +400,7 @@ async function handleBlockMessage( pox_v1_unlock_height: msg.pox_v1_unlock_height, pox_v2_unlock_height: msg.pox_v2_unlock_height, pox_v3_unlock_height: msg.pox_v3_unlock_height, + poxSetSigners: poxSetSigners, }; await db.update(dbData); diff --git a/src/event-stream/pox-event-parsing.ts b/src/event-stream/pox-event-parsing.ts index d5d49e652d..5466fea729 100644 --- a/src/event-stream/pox-event-parsing.ts +++ b/src/event-stream/pox-event-parsing.ts @@ -19,6 +19,7 @@ import { ClarityValue, ClarityValueAbstract, ClarityValueBuffer, + ClarityValueOptional, ClarityValueOptionalNone, ClarityValueOptionalSome, ClarityValuePrincipalContract, @@ -98,22 +99,31 @@ interface PoxSyntheticPrintEventTypes { 'start-burn-height': ClarityValueUInt; 'unlock-burn-height': ClarityValueUInt; 'signer-key'?: ClarityValueBuffer | ClarityValueOptionalNone; + 'end-cycle-id'?: ClarityValueOptional; + 'start-cycle-id'?: ClarityValueUInt; }; [SyntheticPoxEventName.StackIncrease]: { 'increase-by': ClarityValueUInt; 'total-locked': ClarityValueUInt; + 'signer-key'?: ClarityValueBuffer | ClarityValueOptionalNone; + 'end-cycle-id'?: ClarityValueOptional; + 'start-cycle-id'?: ClarityValueUInt; }; [SyntheticPoxEventName.StackExtend]: { 'extend-count': ClarityValueUInt; 'unlock-burn-height': ClarityValueUInt; 'pox-addr': PoxSyntheticEventAddr; 'signer-key'?: ClarityValueBuffer | ClarityValueOptionalNone; + 'end-cycle-id'?: ClarityValueOptional; + 'start-cycle-id'?: ClarityValueUInt; }; [SyntheticPoxEventName.DelegateStx]: { 'amount-ustx': ClarityValueUInt; 'delegate-to': ClarityValuePrincipalStandard | ClarityValuePrincipalContract; 'unlock-burn-height': ClarityValueOptionalSome | ClarityValueOptionalNone; 'pox-addr': PoxSyntheticEventAddr | ClarityValueOptionalNone; + 'end-cycle-id'?: ClarityValueOptional; + 'start-cycle-id'?: ClarityValueUInt; // TODO: add this to core node }; [SyntheticPoxEventName.DelegateStackStx]: { 'lock-amount': ClarityValueUInt; @@ -122,12 +132,16 @@ interface PoxSyntheticPrintEventTypes { 'start-burn-height': ClarityValueUInt; 'lock-period': ClarityValueUInt; delegator: ClarityValuePrincipalStandard | ClarityValuePrincipalContract; + 'end-cycle-id'?: ClarityValueOptional; + 'start-cycle-id'?: ClarityValueUInt; }; [SyntheticPoxEventName.DelegateStackIncrease]: { 'pox-addr': PoxSyntheticEventAddr; 'increase-by': ClarityValueUInt; 'total-locked': ClarityValueUInt; delegator: ClarityValuePrincipalStandard | ClarityValuePrincipalContract; + 'end-cycle-id'?: ClarityValueOptional; + 'start-cycle-id'?: ClarityValueUInt; // TODO: add this to core node }; [SyntheticPoxEventName.DelegateStackExtend]: { 'pox-addr': PoxSyntheticEventAddr; @@ -135,26 +149,37 @@ interface PoxSyntheticPrintEventTypes { 'extend-count': ClarityValueUInt; delegator: ClarityValuePrincipalStandard | ClarityValuePrincipalContract; 'signer-key'?: ClarityValueBuffer | ClarityValueOptionalNone; + 'end-cycle-id'?: ClarityValueOptional; + 'start-cycle-id'?: ClarityValueUInt; // TODO: add this to core node }; [SyntheticPoxEventName.StackAggregationCommit]: { 'pox-addr': PoxSyntheticEventAddr; 'reward-cycle': ClarityValueUInt; 'amount-ustx': ClarityValueUInt; 'signer-key'?: ClarityValueBuffer | ClarityValueOptionalNone; + 'end-cycle-id'?: ClarityValueOptional; + 'start-cycle-id'?: ClarityValueUInt; }; [SyntheticPoxEventName.StackAggregationCommitIndexed]: { 'pox-addr': PoxSyntheticEventAddr; 'reward-cycle': ClarityValueUInt; 'amount-ustx': ClarityValueUInt; 'signer-key'?: ClarityValueBuffer | ClarityValueOptionalNone; + 'end-cycle-id'?: ClarityValueOptional; + 'start-cycle-id'?: ClarityValueUInt; }; [SyntheticPoxEventName.StackAggregationIncrease]: { 'pox-addr': PoxSyntheticEventAddr; 'reward-cycle': ClarityValueUInt; 'amount-ustx': ClarityValueUInt; + 'reward-cycle-index'?: ClarityValueUInt; + 'end-cycle-id'?: ClarityValueOptional; + 'start-cycle-id'?: ClarityValueUInt; }; [SyntheticPoxEventName.RevokeDelegateStx]: { 'delegate-to': ClarityValuePrincipalStandard | ClarityValuePrincipalContract; + 'end-cycle-id'?: ClarityValueOptional; + 'start-cycle-id'?: ClarityValueUInt; }; } @@ -259,6 +284,11 @@ export function decodePoxSyntheticPrintEvent( unlock_burn_height: BigInt(d['unlock-burn-height'].value), signer_key: d['signer-key']?.type_id === ClarityTypeID.Buffer ? d['signer-key'].buffer : null, + end_cycle_id: + d['end-cycle-id']?.type_id === ClarityTypeID.OptionalSome + ? BigInt(d['end-cycle-id'].value.value) + : null, + start_cycle_id: d['start-cycle-id']?.value ? BigInt(d['start-cycle-id'].value) : null, }, }; if (PATCH_EVENT_BALANCES) { @@ -276,6 +306,13 @@ export function decodePoxSyntheticPrintEvent( data: { increase_by: BigInt(d['increase-by'].value), total_locked: BigInt(d['total-locked'].value), + signer_key: + d['signer-key']?.type_id === ClarityTypeID.Buffer ? d['signer-key'].buffer : null, + end_cycle_id: + d['end-cycle-id']?.type_id === ClarityTypeID.OptionalSome + ? BigInt(d['end-cycle-id'].value.value) + : null, + start_cycle_id: d['start-cycle-id']?.value ? BigInt(d['start-cycle-id'].value) : null, }, }; if (PATCH_EVENT_BALANCES) { @@ -294,6 +331,11 @@ export function decodePoxSyntheticPrintEvent( unlock_burn_height: BigInt(d['unlock-burn-height'].value), signer_key: d['signer-key']?.type_id === ClarityTypeID.Buffer ? d['signer-key'].buffer : null, + end_cycle_id: + d['end-cycle-id']?.type_id === ClarityTypeID.OptionalSome + ? BigInt(d['end-cycle-id'].value.value) + : null, + start_cycle_id: d['start-cycle-id']?.value ? BigInt(d['start-cycle-id'].value) : null, }, }; if (PATCH_EVENT_BALANCES) { @@ -313,6 +355,11 @@ export function decodePoxSyntheticPrintEvent( d['unlock-burn-height'].type_id === ClarityTypeID.OptionalSome ? BigInt(d['unlock-burn-height'].value.value) : null, + end_cycle_id: + d['end-cycle-id']?.type_id === ClarityTypeID.OptionalSome + ? BigInt(d['end-cycle-id'].value.value) + : null, + start_cycle_id: d['start-cycle-id']?.value ? BigInt(d['start-cycle-id'].value) : null, }, }; if (PATCH_EVENT_BALANCES) { @@ -333,6 +380,11 @@ export function decodePoxSyntheticPrintEvent( start_burn_height: BigInt(d['start-burn-height'].value), lock_period: BigInt(d['lock-period'].value), delegator: clarityPrincipalToFullAddress(d['delegator']), + end_cycle_id: + d['end-cycle-id']?.type_id === ClarityTypeID.OptionalSome + ? BigInt(d['end-cycle-id'].value.value) + : null, + start_cycle_id: d['start-cycle-id']?.value ? BigInt(d['start-cycle-id'].value) : null, }, }; if (PATCH_EVENT_BALANCES) { @@ -351,6 +403,11 @@ export function decodePoxSyntheticPrintEvent( increase_by: BigInt(d['increase-by'].value), total_locked: BigInt(d['total-locked'].value), delegator: clarityPrincipalToFullAddress(d['delegator']), + end_cycle_id: + d['end-cycle-id']?.type_id === ClarityTypeID.OptionalSome + ? BigInt(d['end-cycle-id'].value.value) + : null, + start_cycle_id: d['start-cycle-id']?.value ? BigInt(d['start-cycle-id'].value) : null, }, }; if (PATCH_EVENT_BALANCES) { @@ -368,6 +425,11 @@ export function decodePoxSyntheticPrintEvent( unlock_burn_height: BigInt(d['unlock-burn-height'].value), extend_count: BigInt(d['extend-count'].value), delegator: clarityPrincipalToFullAddress(d['delegator']), + end_cycle_id: + d['end-cycle-id']?.type_id === ClarityTypeID.OptionalSome + ? BigInt(d['end-cycle-id'].value.value) + : null, + start_cycle_id: d['start-cycle-id']?.value ? BigInt(d['start-cycle-id'].value) : null, }, }; if (PATCH_EVENT_BALANCES) { @@ -385,6 +447,11 @@ export function decodePoxSyntheticPrintEvent( amount_ustx: BigInt(d['amount-ustx'].value), signer_key: d['signer-key']?.type_id === ClarityTypeID.Buffer ? d['signer-key'].buffer : null, + end_cycle_id: + d['end-cycle-id']?.type_id === ClarityTypeID.OptionalSome + ? BigInt(d['end-cycle-id'].value.value) + : null, + start_cycle_id: d['start-cycle-id']?.value ? BigInt(d['start-cycle-id'].value) : null, }, }; return parsedData; @@ -399,6 +466,11 @@ export function decodePoxSyntheticPrintEvent( amount_ustx: BigInt(d['amount-ustx'].value), signer_key: d['signer-key']?.type_id === ClarityTypeID.Buffer ? d['signer-key'].buffer : null, + end_cycle_id: + d['end-cycle-id']?.type_id === ClarityTypeID.OptionalSome + ? BigInt(d['end-cycle-id'].value.value) + : null, + start_cycle_id: d['start-cycle-id']?.value ? BigInt(d['start-cycle-id'].value) : null, }, }; return parsedData; @@ -411,6 +483,11 @@ export function decodePoxSyntheticPrintEvent( data: { reward_cycle: BigInt(d['reward-cycle'].value), amount_ustx: BigInt(d['amount-ustx'].value), + end_cycle_id: + d['end-cycle-id']?.type_id === ClarityTypeID.OptionalSome + ? BigInt(d['end-cycle-id'].value.value) + : null, + start_cycle_id: d['start-cycle-id']?.value ? BigInt(d['start-cycle-id'].value) : null, }, }; return parsedData; @@ -422,6 +499,11 @@ export function decodePoxSyntheticPrintEvent( name: eventName, data: { delegate_to: clarityPrincipalToFullAddress(d['delegate-to']), + end_cycle_id: + d['end-cycle-id']?.type_id === ClarityTypeID.OptionalSome + ? BigInt(d['end-cycle-id'].value.value) + : null, + start_cycle_id: d['start-cycle-id']?.value ? BigInt(d['start-cycle-id'].value) : null, }, }; return parsedData; diff --git a/src/event-stream/reader.ts b/src/event-stream/reader.ts index f7bc1b50f2..11d47de21a 100644 --- a/src/event-stream/reader.ts +++ b/src/event-stream/reader.ts @@ -1,5 +1,6 @@ import { BurnchainOp, + CoreNodeBlockMessage, CoreNodeEvent, CoreNodeEventType, CoreNodeParsedTxMessage, @@ -59,14 +60,16 @@ import { UIntCV, stringAsciiCV, hexToCV, + AddressVersion, } from '@stacks/transactions'; -import { poxAddressToTuple } from '@stacks/stacking'; +import { poxAddressToBtcAddress, poxAddressToTuple } from '@stacks/stacking'; import { c32ToB58 } from 'c32check'; import { decodePoxSyntheticPrintEvent } from './pox-event-parsing'; import { PoxContractIdentifiers, SyntheticPoxEventName } from '../pox-helpers'; import { principalCV } from '@stacks/transactions/dist/clarity/types/principalCV'; import { logger } from '../logger'; import { bufferToHex, hexToBuffer } from '@hirosystems/api-toolkit'; +import { PoXAddressVersion } from '@stacks/stacking/dist/constants'; export function getTxSenderAddress(tx: DecodedTxResult): string { const txSender = tx.auth.origin_condition.signer.address; diff --git a/src/helpers.ts b/src/helpers.ts index 6b68845c94..2adc885dd7 100644 --- a/src/helpers.ts +++ b/src/helpers.ts @@ -427,7 +427,7 @@ export function unwrapOptionalProp( return val as Exclude; } -export function assertNotNullish( +export function unwrapNotNullish( val: T, onNullish?: () => string ): val is Exclude { @@ -440,6 +440,15 @@ export function assertNotNullish( return true; } +export function assertNotNullish( + val: T | null | undefined, + onNullish?: () => string +): asserts val is T { + if (val === undefined || val === null) { + throw new Error(onNullish?.() ?? 'value is nullish'); + } +} + function intMax(args: bigint[]): bigint; function intMax(args: number[]): number; function intMax(args: bigint[] | number[]): any { diff --git a/src/tests/datastore-tests.ts b/src/tests/datastore-tests.ts index 71d57d7616..40220dfb52 100644 --- a/src/tests/datastore-tests.ts +++ b/src/tests/datastore-tests.ts @@ -20,15 +20,17 @@ import { DbTokenOfferingLocked, DbTx, DataStoreBnsBlockTxData, + ReOrgUpdatedEntities, } from '../datastore/common'; import { getBlocksWithMetadata, parseDbEvent } from '../api/controllers/db-controller'; import * as assert from 'assert'; import { PgWriteStore } from '../datastore/pg-write-store'; -import { bnsNameCV, I32_MAX } from '../helpers'; +import { bnsNameCV, I32_MAX, NETWORK_CHAIN_ID } from '../helpers'; import { ChainID } from '@stacks/transactions'; import { TestBlockBuilder } from '../test-utils/test-builders'; import { PgSqlClient, bufferToHex } from '@hirosystems/api-toolkit'; import { migrate } from '../test-utils/test-helpers'; +import { CoreNodeBlockMessage } from '../event-stream/core-node-message'; describe('postgres datastore', () => { let db: PgWriteStore; @@ -3618,7 +3620,7 @@ describe('postgres datastore', () => { }; const reorgResult = await db.handleReorg(client, block5, 0); - expect(reorgResult).toEqual({ + const expectedReorgResult: ReOrgUpdatedEntities = { markedCanonical: { blocks: 4, microblocks: 0, @@ -3636,6 +3638,8 @@ describe('postgres datastore', () => { names: 0, namespaces: 0, subdomains: 0, + poxCycles: 0, + poxSigners: 0, }, markedNonCanonical: { blocks: 1, @@ -3654,10 +3658,13 @@ describe('postgres datastore', () => { names: 0, namespaces: 0, subdomains: 0, + poxCycles: 0, + poxSigners: 0, }, prunedMempoolTxs: 0, restoredMempoolTxs: 0, - }); + }; + expect(reorgResult).toEqual(expectedReorgResult); const blockQuery1 = await db.getBlock({ hash: block1.block_hash }); expect(blockQuery1.result?.canonical).toBe(true); diff --git a/src/tests/helpers-tests.ts b/src/tests/helpers-tests.ts index 67c2574824..9e1994b8c0 100644 --- a/src/tests/helpers-tests.ts +++ b/src/tests/helpers-tests.ts @@ -7,6 +7,7 @@ import { isValidBitcoinAddress, getUintEnvOrDefault } from '../helpers'; import { ECPair, getBitcoinAddressFromKey } from '../ec-helpers'; import { decodeBtcAddress, poxAddressToBtcAddress } from '@stacks/stacking'; import { has0xPrefix } from '@hirosystems/api-toolkit'; +import { CoreNodeBlockMessage } from '../event-stream/core-node-message'; describe('has0xPrefix()', () => { test('falsy case, where there be no 0x', () => { diff --git a/src/tests/pox-tests.ts b/src/tests/pox-tests.ts new file mode 100644 index 0000000000..d9890d6fb3 --- /dev/null +++ b/src/tests/pox-tests.ts @@ -0,0 +1,144 @@ +import * as supertest from 'supertest'; +import { PgSqlClient } from '@hirosystems/api-toolkit'; +import { ChainID } from '@stacks/common'; +import { ApiServer, startApiServer } from '../api/init'; +import { PgWriteStore } from '../datastore/pg-write-store'; +import { importEventsFromTsv } from '../event-replay/event-replay'; + +describe('PoX tests', () => { + let db: PgWriteStore; + let client: PgSqlClient; + let api: ApiServer; + + beforeEach(async () => { + db = await PgWriteStore.connect({ + usageName: 'tests', + withNotifier: true, + skipMigrations: true, + }); + client = db.sql; + api = await startApiServer({ datastore: db, chainId: ChainID.Mainnet }); + }); + + afterEach(async () => { + await api.terminate(); + await db?.close(); + }); + + test('api', async () => { + await importEventsFromTsv('src/tests/tsv/epoch-3-transition.tsv', 'archival', true, true); + const cycles = await supertest(api.server).get(`/extended/v2/pox/cycles`); + expect(cycles.status).toBe(200); + expect(cycles.type).toBe('application/json'); + expect(JSON.parse(cycles.text)).toStrictEqual({ + limit: 20, + offset: 0, + results: [ + { + block_height: 50, + cycle_number: 14, + index_block_hash: '0xf5be33abc4e508bdaf2191e88339372edcb3358c44e2a31e1b9b44f2880dde09', + total_signers: 3, + total_stacked_amount: '1372502700000000000', + total_weight: 9, + }, + { + block_height: 22, + cycle_number: 13, + index_block_hash: '0x5077c7d971dd83cd3ba19dca579e3cc8dcf17913186b66093c94520e50d3b7b2', + total_signers: 3, + total_stacked_amount: '1372502700000000000', + total_weight: 9, + }, + { + block_height: 13, + cycle_number: 12, + index_block_hash: '0x62d06851fe03f17cb45a488ae70bd8e0c5c308c523f37814ad4df36bd2108713', + total_signers: 3, + total_stacked_amount: '1372502700000000000', + total_weight: 9, + }, + { + block_height: 6, + cycle_number: 11, + index_block_hash: '0xe1fb9b3beaa302392d183151d3e5394f86eb64c3d46616b8ec18f5ebe734c4cb', + total_signers: 0, + total_stacked_amount: '0', + total_weight: 0, + }, + ], + total: 4, + }); + const cycle = await supertest(api.server).get(`/extended/v2/pox/cycles/14`); + expect(cycle.status).toBe(200); + expect(cycle.type).toBe('application/json'); + expect(JSON.parse(cycle.text)).toStrictEqual({ + block_height: 50, + cycle_number: 14, + index_block_hash: '0xf5be33abc4e508bdaf2191e88339372edcb3358c44e2a31e1b9b44f2880dde09', + total_signers: 3, + total_stacked_amount: '1372502700000000000', + total_weight: 9, + }); + const signers = await supertest(api.server).get(`/extended/v2/pox/cycles/14/signers`); + expect(signers.status).toBe(200); + expect(signers.type).toBe('application/json'); + expect(JSON.parse(signers.text)).toStrictEqual({ + limit: 100, + offset: 0, + results: [ + { + signing_key: '0x038e3c4529395611be9abf6fa3b6987e81d402385e3d605a073f42f407565a4a3d', + stacked_amount: '686251350000000000', + stacked_amount_percent: 50, + weight: 5, + weight_percent: 55.55555555555556, + }, + { + signing_key: '0x029874497a7952483aa23890e9d0898696f33864d3df90939930a1f45421fe3b09', + stacked_amount: '457500900000000000', + stacked_amount_percent: 33.333333333333336, + weight: 3, + weight_percent: 33.33333333333333, + }, + { + signing_key: '0x02dcde79b38787b72d8e5e0af81cffa802f0a3c8452d6b46e08859165f49a72736', + stacked_amount: '228750450000000000', + stacked_amount_percent: 16.666666666666668, + weight: 1, + weight_percent: 11.11111111111111, + }, + ], + total: 3, + }); + const signer = await supertest(api.server).get( + `/extended/v2/pox/cycles/14/signers/0x038e3c4529395611be9abf6fa3b6987e81d402385e3d605a073f42f407565a4a3d` + ); + expect(signer.status).toBe(200); + expect(signer.type).toBe('application/json'); + expect(JSON.parse(signer.text)).toStrictEqual({ + signing_key: '0x029874497a7952483aa23890e9d0898696f33864d3df90939930a1f45421fe3b09', + stacked_amount: '457500900000000000', + stacked_amount_percent: 33.333333333333336, + weight: 3, + weight_percent: 33.33333333333333, + }); + const stackers = await supertest(api.server).get( + `/extended/v2/pox/cycles/14/signers/0x038e3c4529395611be9abf6fa3b6987e81d402385e3d605a073f42f407565a4a3d/stackers` + ); + expect(stackers.status).toBe(200); + expect(stackers.type).toBe('application/json'); + expect(JSON.parse(stackers.text)).toStrictEqual({ + limit: 100, + offset: 0, + results: [ + { + pox_address: '15Z2sAvjgVDpcBh4vx9g2XKU8FVHYcXNaj', + stacked_amount: '686251350000000000', + stacker_address: 'STRYYQQ9M8KAF4NS7WNZQYY59X93XEKR31JP64CP', + }, + ], + total: 1, + }); + }); +}); diff --git a/src/tests/tsv/epoch-3-transition.tsv b/src/tests/tsv/epoch-3-transition.tsv new file mode 100644 index 0000000000..e9149efc54 --- /dev/null +++ b/src/tests/tsv/epoch-3-transition.tsv @@ -0,0 +1,238 @@ +1 2024-03-13 15:34:10.446375+00 /new_block {"events": [{"txid": "0xcba511741b230bd85cb5b3b10d26e0b92695d4a83f95c260cad82a40cd764235", "type": "stx_mint_event", "committed": true, "event_index": 22, "stx_mint_event": {"amount": "347222222225", "recipient": "SN3ZZ8E2MKH6MYV8Z0A19HYF85AQPW47EWWGYQEJ0"}}, {"txid": "0xcba511741b230bd85cb5b3b10d26e0b92695d4a83f95c260cad82a40cd764235", "type": "stx_mint_event", "committed": true, "event_index": 16, "stx_mint_event": {"amount": "347222222225", "recipient": "SN3ZPMSASBYXQPN9SVH9YZF7M2FHCDH95YR5QAF56"}}, {"txid": "0xcba511741b230bd85cb5b3b10d26e0b92695d4a83f95c260cad82a40cd764235", "type": "stx_mint_event", "committed": true, "event_index": 24, "stx_mint_event": {"amount": "833333000000", "recipient": "ST000000000000000000002AMW42H"}}, {"txid": "0xcba511741b230bd85cb5b3b10d26e0b92695d4a83f95c260cad82a40cd764235", "type": "stx_mint_event", "committed": true, "event_index": 23, "stx_mint_event": {"amount": "2500000000000", "recipient": "ST000000000000000000002AMW42H"}}, {"txid": "0xcba511741b230bd85cb5b3b10d26e0b92695d4a83f95c260cad82a40cd764235", "type": "stx_mint_event", "committed": true, "event_index": 13, "stx_mint_event": {"amount": "100000000", "recipient": "ST00167GZ66DB0JZ1CHFAKRYM4JTQJWBWYFWR1TV"}}, {"txid": "0xcba511741b230bd85cb5b3b10d26e0b92695d4a83f95c260cad82a40cd764235", "type": "stx_mint_event", "committed": true, "event_index": 15, "stx_mint_event": {"amount": "100000000", "recipient": "ST033JVB3H287EV94KTSD7Y3QFVDMJ4MC6AHSSXT"}}, {"txid": "0xcba511741b230bd85cb5b3b10d26e0b92695d4a83f95c260cad82a40cd764235", "type": "stx_mint_event", "committed": true, "event_index": 20, "stx_mint_event": {"amount": "347222222225", "recipient": "SN3ZWA4SKZ2TZHCRMPF3KEWEAD6BEFD00K39DXPFM"}}, {"txid": "0xcba511741b230bd85cb5b3b10d26e0b92695d4a83f95c260cad82a40cd764235", "type": "stx_mint_event", "committed": true, "event_index": 8, "stx_mint_event": {"amount": "1000000000000000000", "recipient": "ST18MDW2PDTBSCR1ACXYRJP2JX70FWNM6YY2VX4SS"}}, {"txid": "0xcba511741b230bd85cb5b3b10d26e0b92695d4a83f95c260cad82a40cd764235", "type": "stx_mint_event", "committed": true, "event_index": 19, "stx_mint_event": {"amount": "1442833333", "recipient": "SN3ZVEZR48WJPAR095YAG8X5JXXE281SWVD232JX8"}}, {"txid": "0xcba511741b230bd85cb5b3b10d26e0b92695d4a83f95c260cad82a40cd764235", "type": "stx_mint_event", "committed": true, "event_index": 31, "stx_mint_event": {"amount": "291667000000", "recipient": "SN2ZP9PPEHXGPAAMYRJNMPVET8WRKBSYY198R9PR3"}}, {"txid": "0xcba511741b230bd85cb5b3b10d26e0b92695d4a83f95c260cad82a40cd764235", "type": "stx_mint_event", "committed": true, "event_index": 14, "stx_mint_event": {"amount": "100000000", "recipient": "ST0315GJK6AS1YKNXM1RBPSVXS1F1N39MHE8KEY5"}}, {"txid": "0xcba511741b230bd85cb5b3b10d26e0b92695d4a83f95c260cad82a40cd764235", "type": "stx_mint_event", "committed": true, "event_index": 21, "stx_mint_event": {"amount": "69445222225", "recipient": "SN3ZY8ZX6A5XAZFJRPR4S0EXDN4B9A7JV11JPKD38"}}, {"txid": "0xcba511741b230bd85cb5b3b10d26e0b92695d4a83f95c260cad82a40cd764235", "type": "stx_mint_event", "committed": true, "event_index": 4, "stx_mint_event": {"amount": "10000000000000000", "recipient": "ST2PGGD0ZXAWEMY4EZ025RD1X47EEVH287SQKA8BC"}}, {"txid": "0xcba511741b230bd85cb5b3b10d26e0b92695d4a83f95c260cad82a40cd764235", "type": "stx_mint_event", "committed": true, "event_index": 27, "stx_mint_event": {"amount": "180555557", "recipient": "SN1ZH700J7CEDSEHM5AJ4C4MKKWNESTS35EKNW89D"}}, {"txid": "0xcba511741b230bd85cb5b3b10d26e0b92695d4a83f95c260cad82a40cd764235", "type": "stx_mint_event", "committed": true, "event_index": 7, "stx_mint_event": {"amount": "1000000000000000000", "recipient": "STF9B75ADQAVXQHNEQ6KGHXTG7JP305J2GRWF3A2"}}, {"txid": "0xcba511741b230bd85cb5b3b10d26e0b92695d4a83f95c260cad82a40cd764235", "type": "stx_mint_event", "committed": true, "event_index": 25, "stx_mint_event": {"amount": "180555557", "recipient": "SN37EFPD9ZVR3YRJE7673MJ3W0T350JM1HV9XMNQN"}}, {"txid": "0xcba511741b230bd85cb5b3b10d26e0b92695d4a83f95c260cad82a40cd764235", "type": "stx_mint_event", "committed": true, "event_index": 30, "stx_mint_event": {"amount": "166667000000", "recipient": "SN1TP7CNY63KQY7DVRDVPNE1X73ND3PT8JWQ13DYM"}}, {"txid": "0xb3847b7e852b0d731061ff144e4467065c6e7b159a9eee2f883fdc41f261ee13", "type": "contract_event", "committed": true, "event_index": 0, "contract_event": {"topic": "print", "value": {"Sequence": {"String": {"ASCII": {"data": [96, 96, 46, 46, 46, 32, 116, 111, 32, 98, 101, 32, 97, 32, 99, 111, 109, 112, 108, 101, 116, 101, 108, 121, 32, 115, 101, 112, 97, 114, 97, 116, 101, 32, 110, 101, 116, 119, 111, 114, 107, 32, 97, 110, 100, 32, 115, 101, 112, 97, 114, 97, 116, 101, 32, 98, 108, 111, 99, 107, 32, 99, 104, 97, 105, 110, 44, 32, 121, 101, 116, 32, 115, 104, 97, 114, 101, 32, 67, 80, 85, 32, 112, 111, 119, 101, 114, 32, 119, 105, 116, 104, 32, 66, 105, 116, 99, 111, 105, 110, 96, 96, 32, 45, 32, 83, 97, 116, 111, 115, 104, 105, 32, 78, 97, 107, 97, 109, 111, 116, 111]}}}}, "raw_value": "0x0d0000007960602e2e2e20746f206265206120636f6d706c6574656c79207365706172617465206e6574776f726b20616e6420736570617261746520626c6f636b20636861696e2c207965742073686172652043505520706f776572207769746820426974636f696e6060202d205361746f736869204e616b616d6f746f", "contract_identifier": "ST000000000000000000002AMW42H.genesis"}}, {"txid": "0xcba511741b230bd85cb5b3b10d26e0b92695d4a83f95c260cad82a40cd764235", "type": "stx_mint_event", "committed": true, "event_index": 17, "stx_mint_event": {"amount": "347222222225", "recipient": "SN3ZQZRMWK50G4MDNA8GFP15GD6SXGN84Y2ZVTSSG"}}, {"txid": "0xcba511741b230bd85cb5b3b10d26e0b92695d4a83f95c260cad82a40cd764235", "type": "stx_mint_event", "committed": true, "event_index": 26, "stx_mint_event": {"amount": "356850000", "recipient": "SN28P04DXXDEY3WY02VQJD4TS7VZS00Z6SYX6SCG5"}}, {"txid": "0xcba511741b230bd85cb5b3b10d26e0b92695d4a83f95c260cad82a40cd764235", "type": "stx_mint_event", "committed": true, "event_index": 28, "stx_mint_event": {"amount": "2708333337", "recipient": "SN260QHD6ZM2KKPBKZB8PFE5XWP0MHSKTD1JNTPNW"}}, {"txid": "0xcba511741b230bd85cb5b3b10d26e0b92695d4a83f95c260cad82a40cd764235", "type": "stx_mint_event", "committed": true, "event_index": 11, "stx_mint_event": {"amount": "100000000", "recipient": "ST00E20T0ZA7P7XSME11MKDMJ8T82Q2J0E0HDFG"}}, {"txid": "0xcba511741b230bd85cb5b3b10d26e0b92695d4a83f95c260cad82a40cd764235", "type": "stx_mint_event", "committed": true, "event_index": 5, "stx_mint_event": {"amount": "10000000000000000", "recipient": "ST29V10QEA7BRZBTWRFC4M70NJ4J6RJB5P1C6EE84"}}, {"txid": "0xcba511741b230bd85cb5b3b10d26e0b92695d4a83f95c260cad82a40cd764235", "type": "stx_mint_event", "committed": true, "event_index": 1, "stx_mint_event": {"amount": "10000000000000000", "recipient": "STB44HYPYAT2BB2QE513NSP81HTMYWBJP02HPGK6"}}, {"txid": "0xcba511741b230bd85cb5b3b10d26e0b92695d4a83f95c260cad82a40cd764235", "type": "stx_mint_event", "committed": true, "event_index": 3, "stx_mint_event": {"amount": "10000000000000000", "recipient": "ST1HB1T8WRNBYB0Y3T7WXZS38NKKPTBR3EG9EPJKR"}}, {"txid": "0xcba511741b230bd85cb5b3b10d26e0b92695d4a83f95c260cad82a40cd764235", "type": "stx_mint_event", "committed": true, "event_index": 6, "stx_mint_event": {"amount": "1000000000000000000", "recipient": "STRYYQQ9M8KAF4NS7WNZQYY59X93XEKR31JP64CP"}}, {"txid": "0xcba511741b230bd85cb5b3b10d26e0b92695d4a83f95c260cad82a40cd764235", "type": "stx_mint_event", "committed": true, "event_index": 10, "stx_mint_event": {"amount": "100000000", "recipient": "ST00D05PBCPZ8X4EE7GM3XJWSZ5FGFEVC3Y01QH"}}, {"txid": "0xcba511741b230bd85cb5b3b10d26e0b92695d4a83f95c260cad82a40cd764235", "type": "stx_mint_event", "committed": true, "event_index": 29, "stx_mint_event": {"amount": "24295000000", "recipient": "SN65WYACEEX6KBM3B27XX0DE1NAPHT5WJ9YHXX7F"}}, {"txid": "0xcba511741b230bd85cb5b3b10d26e0b92695d4a83f95c260cad82a40cd764235", "type": "stx_mint_event", "committed": true, "event_index": 9, "stx_mint_event": {"amount": "100000000", "recipient": "ST001WPX85Y3WPZR5QBV15WA7Q0CGJC59ZR0H9S7"}}, {"txid": "0xcba511741b230bd85cb5b3b10d26e0b92695d4a83f95c260cad82a40cd764235", "type": "stx_mint_event", "committed": true, "event_index": 32, "stx_mint_event": {"amount": "42311000000", "recipient": "SN3TJ7J6DR9KFQXQGK9SY7M7AEJT33C8NV5CZG0D1"}}, {"txid": "0xcba511741b230bd85cb5b3b10d26e0b92695d4a83f95c260cad82a40cd764235", "type": "stx_mint_event", "committed": true, "event_index": 2, "stx_mint_event": {"amount": "10000000000000000", "recipient": "ST11NJTTKGVT6D1HY4NJRVQWMQM7TVAR091EJ8P2Y"}}, {"txid": "0xcba511741b230bd85cb5b3b10d26e0b92695d4a83f95c260cad82a40cd764235", "type": "stx_mint_event", "committed": true, "event_index": 12, "stx_mint_event": {"amount": "100000000", "recipient": "ST00PNN2ZKQVYDMJ6PRGVCK8V47CNDR34V4D1SQ"}}, {"txid": "0xcba511741b230bd85cb5b3b10d26e0b92695d4a83f95c260cad82a40cd764235", "type": "stx_mint_event", "committed": true, "event_index": 18, "stx_mint_event": {"amount": "347222222225", "recipient": "SN3ZRSCSK7EGSQH14ZVMFR7NVHZGJVE0WJNVTQXZ0"}}], "block_hash": "0x0000000000000000000000000000000000000000000000000000000000000000", "miner_txid": "0x0000000000000000000000000000000000000000000000000000000000000000", "block_height": 0, "transactions": [{"txid": "0xfc878ab9c29f3d822a96ee73898000579bdf69619a174e748672eabfc7cfc589", "raw_tx": "0x800000000004000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000302000000000103706f78000079e43b3b20506f5820746573746e657420636f6e7374616e74730a3b3b204d696e2f6d6178206e756d626572206f6620726577617264206379636c657320755354582063616e206265206c6f636b656420666f720a28646566696e652d636f6e7374616e74204d494e5f504f585f5245574152445f4359434c4553207531290a28646566696e652d636f6e7374616e74204d41585f504f585f5245574152445f4359434c455320753132290a0a3b3b2044656661756c74206c656e677468206f662074686520506f5820726567697374726174696f6e2077696e646f772c20696e206275726e636861696e20626c6f636b732e0a28646566696e652d636f6e7374616e7420505245504152455f4359434c455f4c454e47544820753530290a0a3b3b2044656661756c74206c656e677468206f662074686520506f5820726577617264206379636c652c20696e206275726e636861696e20626c6f636b732e0a28646566696e652d636f6e7374616e74205245574152445f4359434c455f4c454e475448207531303530290a0a3b3b2056616c69642076616c75657320666f72206275726e636861696e20616464726573732076657273696f6e732e0a3b3b20546865736520636f72726573706f6e6420746f20616464726573732068617368206d6f64657320696e20537461636b7320322e302e0a28646566696e652d636f6e7374616e7420414444524553535f56455253494f4e5f5032504b482030783030290a28646566696e652d636f6e7374616e7420414444524553535f56455253494f4e5f503253482030783031290a28646566696e652d636f6e7374616e7420414444524553535f56455253494f4e5f503257504b482030783032290a28646566696e652d636f6e7374616e7420414444524553535f56455253494f4e5f50325753482030783033290a0a3b3b20537461636b696e67207468726573686f6c64730a28646566696e652d636f6e7374616e7420535441434b494e475f5448524553484f4c445f3235207538303030290a28646566696e652d636f6e7374616e7420535441434b494e475f5448524553484f4c445f313030207532303030290a0a3b3b20546865202e706f7820636f6e74726163740a3b3b204572726f7220636f6465730a28646566696e652d636f6e7374616e74204552525f535441434b494e475f554e524541434841424c4520323535290a28646566696e652d636f6e7374616e74204552525f535441434b494e475f494e53554646494349454e545f46554e44532031290a28646566696e652d636f6e7374616e74204552525f535441434b494e475f494e56414c49445f4c4f434b5f504552494f442032290a28646566696e652d636f6e7374616e74204552525f535441434b494e475f414c52454144595f535441434b45442033290a28646566696e652d636f6e7374616e74204552525f535441434b494e475f4e4f5f535543485f5052494e434950414c2034290a28646566696e652d636f6e7374616e74204552525f535441434b494e475f455850495245442035290a28646566696e652d636f6e7374616e74204552525f535441434b494e475f5354585f4c4f434b45442036290a28646566696e652d636f6e7374616e74204552525f535441434b494e475f5045524d495353494f4e5f44454e4945442039290a28646566696e652d636f6e7374616e74204552525f535441434b494e475f5448524553484f4c445f4e4f545f4d4554203131290a28646566696e652d636f6e7374616e74204552525f535441434b494e475f504f585f414444524553535f494e5f555345203132290a28646566696e652d636f6e7374616e74204552525f535441434b494e475f494e56414c49445f504f585f41444452455353203133290a28646566696e652d636f6e7374616e74204552525f535441434b494e475f414c52454144595f52454a4543544544203137290a28646566696e652d636f6e7374616e74204552525f535441434b494e475f494e56414c49445f414d4f554e54203138290a28646566696e652d636f6e7374616e74204552525f4e4f545f414c4c4f574544203139290a28646566696e652d636f6e7374616e74204552525f535441434b494e475f414c52454144595f44454c454741544544203230290a28646566696e652d636f6e7374616e74204552525f44454c45474154494f4e5f455850495245535f445552494e475f4c4f434b203231290a28646566696e652d636f6e7374616e74204552525f44454c45474154494f4e5f544f4f5f4d5543485f4c4f434b4544203232290a28646566696e652d636f6e7374616e74204552525f44454c45474154494f4e5f504f585f414444525f5245515549524544203233290a28646566696e652d636f6e7374616e74204552525f494e56414c49445f53544152545f4255524e5f484549474854203234290a0a3b3b20506f582064697361626c696e67207468726573686f6c642028612070657263656e74290a28646566696e652d636f6e7374616e7420504f585f52454a454354494f4e5f4652414354494f4e20753235290a0a3b3b2044617461207661727320746861742073746f7265206120636f7079206f6620746865206275726e636861696e20636f6e66696775726174696f6e2e0a3b3b20496d706c656d656e74656420617320646174612d766172732c20736f207468617420646966666572656e7420636f6e66696775726174696f6e732063616e2062650a3b3b207573656420696e20652e672e2074657374206861726e65737365732e0a28646566696e652d646174612d76617220706f782d707265706172652d6379636c652d6c656e6774682075696e7420505245504152455f4359434c455f4c454e475448290a28646566696e652d646174612d76617220706f782d7265776172642d6379636c652d6c656e6774682075696e74205245574152445f4359434c455f4c454e475448290a28646566696e652d646174612d76617220706f782d72656a656374696f6e2d6672616374696f6e2075696e7420504f585f52454a454354494f4e5f4652414354494f4e290a28646566696e652d646174612d7661722066697273742d6275726e636861696e2d626c6f636b2d6865696768742075696e74207530290a28646566696e652d646174612d76617220636f6e6669677572656420626f6f6c2066616c7365290a0a3b3b20546869732066756e6374696f6e2063616e206f6e6c792062652063616c6c6564206f6e63652c207768656e20697420626f6f74732075700a28646566696e652d7075626c696320287365742d6275726e636861696e2d706172616d6574657273202866697273742d6275726e2d6865696768742075696e74292028707265706172652d6379636c652d6c656e6774682075696e742920287265776172642d6379636c652d6c656e6774682075696e7429202872656a656374696f6e2d6672616374696f6e2075696e7429290a2020202028626567696e0a202020202020202028617373657274732120286e6f7420287661722d67657420636f6e6669677572656429292028657272204552525f4e4f545f414c4c4f57454429290a2020202020202020287661722d7365742066697273742d6275726e636861696e2d626c6f636b2d6865696768742066697273742d6275726e2d686569676874290a2020202020202020287661722d73657420706f782d707265706172652d6379636c652d6c656e67746820707265706172652d6379636c652d6c656e677468290a2020202020202020287661722d73657420706f782d7265776172642d6379636c652d6c656e677468207265776172642d6379636c652d6c656e677468290a2020202020202020287661722d73657420706f782d72656a656374696f6e2d6672616374696f6e2072656a656374696f6e2d6672616374696f6e290a2020202020202020287661722d73657420636f6e666967757265642074727565290a2020202020202020286f6b207472756529290a290a0a3b3b2054686520537461636b696e67206c6f636b2d757020737461746520616e64206173736f636961746564206d657461646174612e0a3b3b205265636f7264732063616e20626520696e73657274656420696e746f2074686973206d617020766961206f6e65206f662074776f20776179733a0a3b3b202a2076696120636f6e74726163742d63616c6c3f20746f207468652028737461636b2d73747829206d6574686f642c206f720a3b3b202a207669612061207472616e73616374696f6e20696e2074686520756e6465726c79696e67206275726e636861696e207468617420656e636f646573207468652073616d6520646174612e0a3b3b20496e20746865206c617474657220636173652c2074686973206d61702077696c6c20626520757064617465642062792074686520537461636b730a3b3b206e6f646520697473656c662c20616e64207472616e73616374696f6e7320696e20746865206275726e636861696e2077696c6c2074616b65207072696f726974790a3b3b206f766572207472616e73616374696f6e7320696e2074686520537461636b7320636861696e207768656e2070726f63657373696e67207468697320626c6f636b2e0a28646566696e652d6d617020737461636b696e672d73746174650a202020207b20737461636b65723a207072696e636970616c207d0a202020207b0a20202020202020203b3b20686f77206d616e792075535458206c6f636b65643f0a2020202020202020616d6f756e742d757374783a2075696e742c0a20202020202020203b3b204465736372697074696f6e206f662074686520756e6465726c79696e67206275726e636861696e206164647265737320746861742077696c6c0a20202020202020203b3b207265636569766520506f5827656420746f6b656e732e205472616e736c6174696e67207468697320696e746f20616e20616464726573730a20202020202020203b3b20646570656e6473206f6e20746865206275726e636861696e206265696e6720757365642e20205768656e20426974636f696e2069730a20202020202020203b3b20746865206275726e636861696e2c20746869732067657473207472616e736c6174656420696e746f2061207032706b682c20703273682c0a20202020202020203b3b20703277706b682d703273682c206f722070327773682d70327368205554584f2c20646570656e64696e67206f6e207468652076657273696f6e2e0a2020202020202020706f782d616464723a207b2076657273696f6e3a2028627566662031292c206861736862797465733a20286275666620323029207d2c0a20202020202020203b3b20686f77206c6f6e6720746865207553545820617265206c6f636b65642c20696e20726577617264206379636c65732e0a20202020202020206c6f636b2d706572696f643a2075696e742c0a20202020202020203b3b20726577617264206379636c65207768656e207265776172647320626567696e0a202020202020202066697273742d7265776172642d6379636c653a2075696e740a202020207d0a290a0a3b3b2044656c65676174696f6e2072656c6174696f6e73686970730a28646566696e652d6d61702064656c65676174696f6e2d73746174650a202020207b20737461636b65723a207072696e636970616c207d0a202020207b200a2020202020202020616d6f756e742d757374783a2075696e742c20202020202020202020202020203b3b20686f77206d616e7920755354582064656c6567617465643f0a202020202020202064656c6567617465642d746f3a207072696e636970616c2c20202020202020203b3b2077686f206172652077652064656c65676174696e673f0a2020202020202020756e74696c2d6275726e2d68743a20286f7074696f6e616c2075696e74292c203b3b20686f77206c6f6e6720646f6573207468652064656c65676174696f6e206c6173743f0a20202020202020203b3b20646f6573207468652064656c6567617465205f6e6565645f20746f2075736520612073706563696669630a20202020202020203b3b20706f7820726563697069656e7420616464726573733f0a2020202020202020706f782d616464723a20286f7074696f6e616c207b2076657273696f6e3a2028627566662031292c206861736862797465733a20286275666620323029207d290a202020207d0a290a0a3b3b20616c6c6f77656420636f6e74726163742d63616c6c6572730a28646566696e652d6d617020616c6c6f77616e63652d636f6e74726163742d63616c6c6572730a202020207b2073656e6465723a207072696e636970616c2c20636f6e74726163742d63616c6c65723a207072696e636970616c207d0a202020207b20756e74696c2d6275726e2d68743a20286f7074696f6e616c2075696e7429207d290a0a3b3b20486f77206d616e7920755354582061726520737461636b656420696e206120676976656e20726577617264206379636c652e0a3b3b2055706461746564207768656e2061206e657720506f58206164647265737320697320726567697374657265642c206f72207768656e206d6f72652053545820617265206772616e7465640a3b3b20746f2069742e0a28646566696e652d6d6170207265776172642d6379636c652d746f74616c2d737461636b65640a202020207b207265776172642d6379636c653a2075696e74207d0a202020207b20746f74616c2d757374783a2075696e74207d0a290a0a3b3b20496e7465726e616c206d617020726561642062792074686520537461636b73206e6f646520746f2069746572617465207468726f75676820746865206c697374206f660a3b3b20506f582072657761726420616464726573736573206f6e2061207065722d7265776172642d6379636c652062617369732e0a28646566696e652d6d6170207265776172642d6379636c652d706f782d616464726573732d6c6973740a202020207b207265776172642d6379636c653a2075696e742c20696e6465783a2075696e74207d0a202020207b0a2020202020202020706f782d616464723a207b2076657273696f6e3a2028627566662031292c206861736862797465733a20286275666620323029207d2c0a2020202020202020746f74616c2d757374783a2075696e740a202020207d0a290a0a28646566696e652d6d6170207265776172642d6379636c652d706f782d616464726573732d6c6973742d6c656e0a202020207b207265776172642d6379636c653a2075696e74207d0a202020207b206c656e3a2075696e74207d0a290a0a3b3b20686f77206d75636820686173206265656e206c6f636b656420757020666f7220746869732061646472657373206265666f72650a3b3b202020636f6d6d697474696e673f0a3b3b2074686973206d617020616c6c6f777320737461636b65727320746f20737461636b20616d6f756e7473203c206d696e696d756d0a3b3b202020627920706179696e672074686520636f7374206f66206167677265676174696f6e20647572696e672074686520636f6d6d69740a28646566696e652d6d6170207061727469616c2d737461636b65642d62792d6379636c650a202020207b200a2020202020202020706f782d616464723a207b2076657273696f6e3a2028627566662031292c206861736862797465733a20286275666620323029207d2c0a20202020202020207265776172642d6379636c653a2075696e742c0a202020202020202073656e6465723a207072696e636970616c0a202020207d0a202020207b20737461636b65642d616d6f756e743a2075696e74207d0a290a0a3b3b20416d6f756e74206f66207553545820746861742072656a65637420506f582c20627920726577617264206379636c650a28646566696e652d6d617020737461636b696e672d72656a656374696f6e0a202020207b207265776172642d6379636c653a2075696e74207d0a202020207b20616d6f756e743a2075696e74207d0a290a0a3b3b2057686f2072656a656374656420696e20776869636820726577617264206379636c650a28646566696e652d6d617020737461636b696e672d72656a6563746f72730a202020207b20737461636b65723a207072696e636970616c2c207265776172642d6379636c653a2075696e74207d0a202020207b20616d6f756e743a2075696e74207d0a290a0a3b3b2047657474657220666f7220737461636b696e672d72656a6563746f72730a28646566696e652d726561642d6f6e6c7920286765742d706f782d72656a656374696f6e2028737461636b6572207072696e636970616c2920287265776172642d6379636c652075696e7429290a20202020286d61702d6765743f20737461636b696e672d72656a6563746f7273207b20737461636b65723a20737461636b65722c207265776172642d6379636c653a207265776172642d6379636c65207d29290a0a3b3b2048617320506f58206265656e2072656a656374656420696e2074686520676976656e20726577617264206379636c653f0a28646566696e652d726561642d6f6e6c79202869732d706f782d61637469766520287265776172642d6379636c652075696e7429290a20202020286c657420280a20202020202020202872656a6563742d766f746573200a2020202020202020202020202864656661756c742d746f0a2020202020202020202020202020202075300a202020202020202020202020202020202867657420616d6f756e7420286d61702d6765743f20737461636b696e672d72656a656374696f6e207b207265776172642d6379636c653a207265776172642d6379636c65207d292929290a20202020290a202020203b3b2028313030202a2072656a6563742d766f74657329202f207374782d6c69717569642d737570706c79203c20706f782d72656a656374696f6e2d6672616374696f6e202020200a20202020283c20282a20753130302072656a6563742d766f74657329200a20202020202020282a20287661722d67657420706f782d72656a656374696f6e2d6672616374696f6e29207374782d6c69717569642d737570706c792929290a290a0a3b3b205768617427732074686520726577617264206379636c65206e756d626572206f6620746865206275726e636861696e20626c6f636b206865696768743f0a3b3b2057696c6c2072756e74696d652d61626f727420696620686569676874206973206c657373207468616e20746865206669727374206275726e636861696e20626c6f636b20287468697320697320696e74656e74696f6e616c290a28646566696e652d7072697661746520286275726e2d6865696768742d746f2d7265776172642d6379636c6520286865696768742075696e742929200a20202020282f20282d2068656967687420287661722d6765742066697273742d6275726e636861696e2d626c6f636b2d686569676874292920287661722d67657420706f782d7265776172642d6379636c652d6c656e6774682929290a0a3b3b205768617427732074686520626c6f636b2068656967687420617420746865207374617274206f66206120676976656e20726577617264206379636c653f0a28646566696e652d7072697661746520287265776172642d6379636c652d746f2d6275726e2d68656967687420286379636c652075696e7429290a20202020282b20287661722d6765742066697273742d6275726e636861696e2d626c6f636b2d6865696768742920282a206379636c6520287661722d67657420706f782d7265776172642d6379636c652d6c656e677468292929290a0a3b3b20576861742773207468652063757272656e7420506f5820726577617264206379636c653f0a28646566696e652d70726976617465202863757272656e742d706f782d7265776172642d6379636c65290a20202020286275726e2d6865696768742d746f2d7265776172642d6379636c65206275726e2d626c6f636b2d68656967687429290a0a3b3b2047657420746865205f63757272656e745f20506f5820737461636b696e67207072696e636970616c20696e666f726d6174696f6e2e202049662074686520696e666f726d6174696f6e0a3b3b20697320657870697265642c206f722069662074686572652773206e65766572206265656e2073756368206120737461636b65722c207468656e2072657475726e73206e6f6e652e0a28646566696e652d726561642d6f6e6c7920286765742d737461636b65722d696e666f2028737461636b6572207072696e636970616c29290a20202020286d6174636820286d61702d6765743f20737461636b696e672d7374617465207b20737461636b65723a20737461636b6572207d290a2020202020202020737461636b696e672d696e666f0a20202020202020202020202028696620283c3d20282b20286765742066697273742d7265776172642d6379636c6520737461636b696e672d696e666f292028676574206c6f636b2d706572696f6420737461636b696e672d696e666f2929202863757272656e742d706f782d7265776172642d6379636c6529290a202020202020202020202020202020203b3b2070726573656e742c20627574206c6f636b2068617320657870697265640a202020202020202020202020202020206e6f6e650a202020202020202020202020202020203b3b2070726573656e742c20616e64206c6f636b20686173206e6f7420657870697265640a2020202020202020202020202020202028736f6d6520737461636b696e672d696e666f290a202020202020202020202020290a20202020202020203b3b206e6f20737461746520617420616c6c0a20202020202020206e6f6e650a2020202029290a0a28646566696e652d707269766174652028636865636b2d63616c6c65722d616c6c6f776564290a20202020286f72202869732d65712074782d73656e64657220636f6e74726163742d63616c6c6572290a2020202020202020286c657420282863616c6c65722d616c6c6f776564200a20202020202020202020202020202020203b3b206966206e6f7420696e207468652063616c6c6572206d61702c2072657475726e2066616c73650a202020202020202020202020202020202028756e777261702120286d61702d6765743f20616c6c6f77616e63652d636f6e74726163742d63616c6c6572730a2020202020202020202020202020202020202020202020202020202020202020202020207b2073656e6465723a2074782d73656e6465722c20636f6e74726163742d63616c6c65723a20636f6e74726163742d63616c6c6572207d290a202020202020202020202020202020202020202020202020202066616c73652929290a202020202020202020203b3b206973207468652063616c6c657220616c6c6f77616e636520657870697265643f0a2020202020202020202028696620283c206275726e2d626c6f636b2d6865696768742028756e7772617021202867657420756e74696c2d6275726e2d68742063616c6c65722d616c6c6f77656429207472756529290a202020202020202020202020202066616c73650a202020202020202020202020202074727565292929290a0a28646566696e652d7072697661746520286765742d636865636b2d64656c65676174696f6e2028737461636b6572207072696e636970616c29290a20202020286c657420282864656c65676174696f6e2d696e666f20287472792120286d61702d6765743f2064656c65676174696f6e2d7374617465207b20737461636b65723a20737461636b6572207d292929290a2020202020203b3b2064696420746865206578697374696e672064656c65676174696f6e206578706972653f0a20202020202028696620286d61746368202867657420756e74696c2d6275726e2d68742064656c65676174696f6e2d696e666f290a2020202020202020202020202020202020756e74696c2d6275726e2d687420283e206275726e2d626c6f636b2d68656967687420756e74696c2d6275726e2d6874290a202020202020202020202020202020202066616c7365290a202020202020202020203b3b20697420657870697265642c2072657475726e206e6f6e650a202020202020202020206e6f6e650a202020202020202020203b3b2064656c65676174696f6e206973206163746976650a2020202020202020202028736f6d652064656c65676174696f6e2d696e666f292929290a0a3b3b20476574207468652073697a65206f6620746865207265776172642073657420666f72206120726577617264206379636c652e0a3b3b204e6f74652074686174207468697320646f6573205f6e6f745f2072657475726e206475706c696361746520506f58206164647265737365732e0a3b3b204e6f74652074686174207468697320616c736f205f77696c6c5f2072657475726e20506f58206164647265737365732074686174206172652062656e656174680a3b3b20746865206d696e696d756d207468726573686f6c64202d2d20692e652e20746865207468726573686f6c642063616e20696e63726561736520616674657220696e73657274696f6e2e0a3b3b205573656420696e7465726e616c6c792062792074686520537461636b73206e6f64652c2077686963682066696c74657273206f75742074686520656e74726965730a3b3b20696e2074686973206d617020746f2073656c65637420506f5820616464726573736573207769746820656e6f756768205354582e0a28646566696e652d726561642d6f6e6c7920286765742d7265776172642d7365742d73697a6520287265776172642d6379636c652075696e7429290a202020202864656661756c742d746f0a202020202020202075300a202020202020202028676574206c656e20286d61702d6765743f207265776172642d6379636c652d706f782d616464726573732d6c6973742d6c656e207b207265776172642d6379636c653a207265776172642d6379636c65207d292929290a0a3b3b20486f77206d616e792072656a656374696f6e20766f7465732068617665207765206265656e20616363756d756c6174696e6720666f7220746865206e65787420626c6f636b0a28646566696e652d7072697661746520286e6578742d6379636c652d72656a656374696f6e2d766f746573290a202020202864656661756c742d746f0a202020202020202075300a20202020202020202867657420616d6f756e7420286d61702d6765743f20737461636b696e672d72656a656374696f6e207b207265776172642d6379636c653a20282b207531202863757272656e742d706f782d7265776172642d6379636c652929207d292929290a0a3b3b2041646420612073696e676c6520506f58206164647265737320746f20612073696e676c6520726577617264206379636c652e0a3b3b205573656420746f206275696c64207570206120736574206f66207065722d7265776172642d6379636c6520506f58206164647265737365732e0a3b3b204e6f20636865636b696e672077696c6c20626520646f6e65202d2d20646f6e27742063616c6c206966207468697320506f58206164647265737320697320616c7265616479207265676973746572656420696e207468697320726577617264206379636c65210a28646566696e652d707269766174652028617070656e642d7265776172642d6379636c652d706f782d616464722028706f782d6164647220287475706c65202876657273696f6e202862756666203129292028686173686279746573202862756666203230292929290a20202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020287265776172642d6379636c652075696e74290a2020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202028616d6f756e742d757374782075696e7429290a20202020286c657420280a202020202020202028737a20286765742d7265776172642d7365742d73697a65207265776172642d6379636c6529290a20202020290a20202020286d61702d736574207265776172642d6379636c652d706f782d616464726573732d6c6973740a20202020202020207b207265776172642d6379636c653a207265776172642d6379636c652c20696e6465783a20737a207d0a20202020202020207b20706f782d616464723a20706f782d616464722c20746f74616c2d757374783a20616d6f756e742d75737478207d290a20202020286d61702d736574207265776172642d6379636c652d706f782d616464726573732d6c6973742d6c656e0a20202020202020207b207265776172642d6379636c653a207265776172642d6379636c65207d0a20202020202020207b206c656e3a20282b20753120737a29207d290a20202020282b20753120737a29290a290a0a3b3b20486f77206d616e7920755354582061726520737461636b65643f0a28646566696e652d726561642d6f6e6c7920286765742d746f74616c2d757374782d737461636b656420287265776172642d6379636c652075696e7429290a202020202864656661756c742d746f0a202020202020202075300a20202020202020202867657420746f74616c2d7573747820286d61702d6765743f207265776172642d6379636c652d746f74616c2d737461636b6564207b207265776172642d6379636c653a207265776172642d6379636c65207d2929290a290a0a3b3b2043616c6c656420696e7465726e616c6c7920627920746865206e6f646520746f2069746572617465207468726f75676820746865206c697374206f6620506f582061646472657373657320696e207468697320726577617264206379636c652e0a3b3b2052657475726e7320286f7074696f6e616c20287475706c652028706f782d61646472203c706f782d616464726573733e292028746f74616c2d75737478203c75696e743e2929290a28646566696e652d726561642d6f6e6c7920286765742d7265776172642d7365742d706f782d6164647265737320287265776172642d6379636c652075696e74292028696e6465782075696e7429290a20202020286d61702d6765743f207265776172642d6379636c652d706f782d616464726573732d6c697374207b207265776172642d6379636c653a207265776172642d6379636c652c20696e6465783a20696e646578207d29290a0a3b3b20416464206120506f58206164647265737320746f207468652069746820726577617264206379636c652c2069662069206973206265747765656e203020616e642074686520676976656e206e756d2d6379636c657320286578636c7573697665292e0a3b3b20417267756d656e74732061726520676976656e2061732061207475706c652c20736f20746869732066756e6374696f6e2063616e20626520286d6170202e2e29276564206f6e746f2061206c697374206f662069747320617267756d656e74732e0a3b3b2055736564206279206164642d706f782d616464722d746f2d7265776172642d6379636c65732e0a3b3b204e6f20636865636b696e6720697320646f6e652e0a3b3b2052657475726e7320312069662061646465642e0a3b3b2052657475726e732030206966206e6f742061646465642e0a28646566696e652d7072697661746520286164642d706f782d616464722d746f2d6974682d7265776172642d6379636c6520286379636c652d696e6465782075696e74292028706172616d7320287475706c65200a20202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202028706f782d6164647220287475706c65202876657273696f6e202862756666203129292028686173686279746573202862756666203230292929290a2020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202866697273742d7265776172642d6379636c652075696e74290a202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020286e756d2d6379636c65732075696e74290a20202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202028616d6f756e742d757374782075696e74290a20202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202028692075696e74292929290a20202020286c65742028287265776172642d6379636c6520282b20286765742066697273742d7265776172642d6379636c6520706172616d73292028676574206920706172616d732929290a20202020202020202020286e756d2d6379636c65732028676574206e756d2d6379636c657320706172616d7329290a2020202020202020202028692028676574206920706172616d732929290a202020207b0a2020202020202020706f782d616464723a202867657420706f782d6164647220706172616d73292c0a202020202020202066697273742d7265776172642d6379636c653a20286765742066697273742d7265776172642d6379636c6520706172616d73292c0a20202020202020206e756d2d6379636c65733a206e756d2d6379636c65732c0a2020202020202020616d6f756e742d757374783a202867657420616d6f756e742d7573747820706172616d73292c0a2020202020202020693a2028696620283c2069206e756d2d6379636c6573290a202020202020202020202020286c6574202828746f74616c2d7573747820286765742d746f74616c2d757374782d737461636b6564207265776172642d6379636c652929290a20202020202020202020202020203b3b207265636f726420686f77206d616e792075535458207468697320706f782d616464722077696c6c20737461636b20666f7220696e2074686520676976656e20726577617264206379636c650a202020202020202020202020202028617070656e642d7265776172642d6379636c652d706f782d616464720a202020202020202020202020202020202867657420706f782d6164647220706172616d73290a202020202020202020202020202020207265776172642d6379636c650a202020202020202020202020202020202867657420616d6f756e742d7573747820706172616d7329290a0a20202020202020202020202020203b3b207570646174652072756e6e696e6720746f74616c0a2020202020202020202020202020286d61702d736574207265776172642d6379636c652d746f74616c2d737461636b65640a20202020202020202020202020202020207b207265776172642d6379636c653a207265776172642d6379636c65207d0a20202020202020202020202020202020207b20746f74616c2d757374783a20282b202867657420616d6f756e742d7573747820706172616d732920746f74616c2d7573747829207d290a0a20202020202020202020202020203b3b2075706461746564205f746869735f20726577617264206379636c650a2020202020202020202020202020282b206920753129290a202020202020202020202020282b206920753029290a202020207d29290a0a3b3b20416464206120506f58206164647265737320746f206120676976656e2073657175656e6365206f6620726577617264206379636c65206c697374732e0a3b3b204120506f5820616464726573732063616e20626520616464656420746f206174206d6f737420313220636f6e7365637574697665206379636c65732e0a3b3b204e6f20636865636b696e6720697320646f6e652e0a28646566696e652d7072697661746520286164642d706f782d616464722d746f2d7265776172642d6379636c65732028706f782d6164647220287475706c65202876657273696f6e202862756666203129292028686173686279746573202862756666203230292929290a20202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202866697273742d7265776172642d6379636c652075696e74290a2020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020286e756d2d6379636c65732075696e74290a202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202028616d6f756e742d757374782075696e7429290a2020286c65742028286379636c652d696e646578657320286c69737420753020753120753220753320753420753520753620753720753820753920753130207531312929290a202020203b3b20466f72207361666574792c2061646420757020746865206e756d626572206f662074696d657320286164642d7072696e636970616c2d746f2d6974682d7265776172642d6379636c65292072657475726e7320312e0a202020203b3b204974205f73686f756c645f20626520657175616c20746f206e756d2d6379636c65732e0a20202020286173736572747321200a20202020202869732d6571206e756d2d6379636c6573200a2020202020202020202020202867657420692028666f6c64206164642d706f782d616464722d746f2d6974682d7265776172642d6379636c65206379636c652d696e6465786573200a202020202020202020202020202020202020202020202020207b20706f782d616464723a20706f782d616464722c2066697273742d7265776172642d6379636c653a2066697273742d7265776172642d6379636c652c206e756d2d6379636c65733a206e756d2d6379636c65732c20616d6f756e742d757374783a20616d6f756e742d757374782c20693a207530207d2929290a202020202028657272204552525f535441434b494e475f554e524541434841424c4529290a20202020286f6b20747275652929290a0a28646566696e652d7072697661746520286164642d706f782d7061727469616c2d737461636b65642d746f2d6974682d6379636c650a2020202020202020202020202020202020286379636c652d696e6465782075696e74290a202020202020202020202020202020202028706172616d73207b20706f782d616464723a207b2076657273696f6e3a2028627566662031292c206861736862797465733a20286275666620323029207d2c0a2020202020202020202020202020202020202020202020202020207265776172642d6379636c653a2075696e742c0a2020202020202020202020202020202020202020202020202020206e756d2d6379636c65733a2075696e742c0a202020202020202020202020202020202020202020202020202020616d6f756e742d757374783a2075696e74207d29290a2020286c6574202828706f782d6164647220202020202867657420706f782d616464722020202020706172616d7329290a2020202020202020286e756d2d6379636c657320202028676574206e756d2d6379636c6573202020706172616d7329290a2020202020202020287265776172642d6379636c652028676574207265776172642d6379636c6520706172616d7329290a202020202020202028616d6f756e742d7573747820202867657420616d6f756e742d757374782020706172616d732929290a20202020286c657420282863757272656e742d616d6f756e740a20202020202020202020202864656661756c742d746f2075300a202020202020202020202020202867657420737461636b65642d616d6f756e740a202020202020202020202020202020202020286d61702d6765743f207061727469616c2d737461636b65642d62792d6379636c65207b2073656e6465723a2074782d73656e6465722c20706f782d616464723a20706f782d616464722c207265776172642d6379636c653a207265776172642d6379636c65207d29292929290a20202020202028696620283e3d206379636c652d696e646578206e756d2d6379636c6573290a202020202020202020203b3b20646f206e6f742061646420746f206379636c6573203e3d206379636c652d696e6465780a2020202020202020202066616c73650a202020202020202020203b3b206f74686572776973652c2061646420746f20746865207061727469616c2d737461636b65642d62792d6379636c650a20202020202020202020286d61702d736574207061727469616c2d737461636b65642d62792d6379636c650a202020202020202020202020202020202020207b2073656e6465723a2074782d73656e6465722c20706f782d616464723a20706f782d616464722c207265776172642d6379636c653a207265776172642d6379636c65207d0a202020202020202020202020202020202020207b20737461636b65642d616d6f756e743a20282b20616d6f756e742d757374782063757272656e742d616d6f756e7429207d29290a2020202020203b3b2070726f6475636520746865206e65787420706172616d73207475706c650a2020202020207b20706f782d616464723a20706f782d616464722c0a20202020202020207265776172642d6379636c653a20282b207531207265776172642d6379636c65292c0a20202020202020206e756d2d6379636c65733a206e756d2d6379636c65732c0a2020202020202020616d6f756e742d757374783a20616d6f756e742d75737478207d2929290a0a3b3b20416464206120506f58206164647265737320746f206120676976656e2073657175656e6365206f66207061727469616c20726577617264206379636c65206c697374732e0a3b3b204120506f5820616464726573732063616e20626520616464656420746f206174206d6f737420313220636f6e7365637574697665206379636c65732e0a3b3b204e6f20636865636b696e6720697320646f6e652e0a28646566696e652d7072697661746520286164642d706f782d7061727469616c2d737461636b65642028706f782d6164647220287475706c65202876657273696f6e202862756666203129292028686173686279746573202862756666203230292929290a20202020202020202020202020202020202020202020202020202020202020202020202020202020202866697273742d7265776172642d6379636c652075696e74290a2020202020202020202020202020202020202020202020202020202020202020202020202020202020286e756d2d6379636c65732075696e74290a202020202020202020202020202020202020202020202020202020202020202020202020202020202028616d6f756e742d757374782075696e7429290a2020286c65742028286379636c652d696e646578657320286c69737420753020753120753220753320753420753520753620753720753820753920753130207531312929290a2020202028666f6c64206164642d706f782d7061727469616c2d737461636b65642d746f2d6974682d6379636c65206379636c652d696e6465786573200a202020202020202020207b20706f782d616464723a20706f782d616464722c207265776172642d6379636c653a2066697273742d7265776172642d6379636c652c206e756d2d6379636c65733a206e756d2d6379636c65732c20616d6f756e742d757374783a20616d6f756e742d75737478207d290a202020207472756529290a0a3b3b205768617420697320746865206d696e696d756d206e756d626572206f66207553545820746f20626520737461636b656420696e2074686520676976656e20726577617264206379636c653f0a3b3b205573656420696e7465726e616c6c792062792074686520537461636b73206e6f64652c20616e642076697369626c65207075626c69636c792e0a28646566696e652d726561642d6f6e6c7920286765742d737461636b696e672d6d696e696d756d290a20202020282f207374782d6c69717569642d737570706c7920535441434b494e475f5448524553484f4c445f323529290a0a3b3b204973207468652061646472657373206d6f64652076616c696420666f72206120506f58206275726e20616464726573733f0a28646566696e652d707269766174652028636865636b2d706f782d616464722d76657273696f6e202876657273696f6e20286275666620312929290a20202020286f72202869732d65712076657273696f6e20414444524553535f56455253494f4e5f5032504b48290a20202020202020202869732d65712076657273696f6e20414444524553535f56455253494f4e5f50325348290a20202020202020202869732d65712076657273696f6e20414444524553535f56455253494f4e5f503257504b48290a20202020202020202869732d65712076657273696f6e20414444524553535f56455253494f4e5f50325753482929290a0a3b3b2049732074686520676976656e206c6f636b20706572696f642076616c69643f0a28646566696e652d707269766174652028636865636b2d706f782d6c6f636b2d706572696f6420286c6f636b2d706572696f642075696e742929200a2020202028616e6420283e3d206c6f636b2d706572696f64204d494e5f504f585f5245574152445f4359434c455329200a202020202020202020283c3d206c6f636b2d706572696f64204d41585f504f585f5245574152445f4359434c45532929290a0a3b3b204576616c756174652069662061207061727469636970616e742063616e20737461636b20616e20616d6f756e74206f662053545820666f72206120676976656e20706572696f642e0a3b3b2054686973206d6574686f642069732064657369676e6564206173206120726561642d6f6e6c79206d6574686f6420736f20746861742069742063616e2062652075736564206173200a3b3b206120736574206f6620677561726420636f6e646974696f6e7320616e6420616c736f206173206120726561642d6f6e6c79205250432063616c6c20746861742063616e2062650a3b3b20706572666f726d6564206265666f726568616e642e0a28646566696e652d726561642d6f6e6c79202863616e2d737461636b2d7374782028706f782d6164647220287475706c65202876657273696f6e202862756666203129292028686173686279746573202862756666203230292929290a2020202020202020202020202020202020202020202020202020202020202020202028616d6f756e742d757374782075696e74290a202020202020202020202020202020202020202020202020202020202020202020202866697273742d7265776172642d6379636c652075696e74290a20202020202020202020202020202020202020202020202020202020202020202020286e756d2d6379636c65732075696e7429290a202028626567696e0a202020203b3b206d696e696d756d2075535458206d757374206265206d65740a2020202028617373657274732120283c3d20287072696e7420286765742d737461636b696e672d6d696e696d756d292920616d6f756e742d75737478290a202020202020202020202020202028657272204552525f535441434b494e475f5448524553484f4c445f4e4f545f4d455429290a0a20202020286d696e696d616c2d63616e2d737461636b2d73747820706f782d6164647220616d6f756e742d757374782066697273742d7265776172642d6379636c65206e756d2d6379636c65732929290a0a3b3b204576616c756174652069662061207061727469636970616e742063616e20737461636b20616e20616d6f756e74206f662053545820666f72206120676976656e20706572696f642e0a3b3b2054686973206d6574686f642069732064657369676e6564206173206120726561642d6f6e6c79206d6574686f6420736f20746861742069742063616e2062652075736564206173200a3b3b206120736574206f6620677561726420636f6e646974696f6e7320616e6420616c736f206173206120726561642d6f6e6c79205250432063616c6c20746861742063616e2062650a3b3b20706572666f726d6564206265666f726568616e642e0a28646566696e652d726561642d6f6e6c7920286d696e696d616c2d63616e2d737461636b2d737478200a2020202020202020202020202020202020202028706f782d6164647220287475706c65202876657273696f6e202862756666203129292028686173686279746573202862756666203230292929290a2020202020202020202020202020202020202028616d6f756e742d757374782075696e74290a202020202020202020202020202020202020202866697273742d7265776172642d6379636c652075696e74290a20202020202020202020202020202020202020286e756d2d6379636c65732075696e7429290a202028626567696e0a202020203b3b20616d6f756e74206d7573742062652076616c69640a2020202028617373657274732120283e20616d6f756e742d75737478207530290a202020202020202020202020202028657272204552525f535441434b494e475f494e56414c49445f414d4f554e5429290a0a202020203b3b2073656e646572207072696e636970616c206d757374206e6f7420686176652072656a656374656420696e2074686973207570636f6d696e6720726577617264206379636c650a20202020286173736572747321202869732d6e6f6e6520286765742d706f782d72656a656374696f6e2074782d73656e6465722066697273742d7265776172642d6379636c6529290a202020202020202020202020202028657272204552525f535441434b494e475f414c52454144595f52454a454354454429290a0a202020203b3b206c6f636b20706572696f64206d75737420626520696e2061636365707461626c652072616e67652e0a202020202861737365727473212028636865636b2d706f782d6c6f636b2d706572696f64206e756d2d6379636c6573290a202020202020202020202020202028657272204552525f535441434b494e475f494e56414c49445f4c4f434b5f504552494f4429290a0a202020203b3b20616464726573732076657273696f6e206d7573742062652076616c69640a202020202861737365727473212028636865636b2d706f782d616464722d76657273696f6e20286765742076657273696f6e20706f782d6164647229290a202020202020202020202020202028657272204552525f535441434b494e475f494e56414c49445f504f585f4144445245535329290a20202020286f6b20747275652929290a0a3b3b205265766f6b6520636f6e74726163742d63616c6c657220617574686f72697a6174696f6e20746f2063616c6c20737461636b696e67206d6574686f64730a28646566696e652d7075626c69632028646973616c6c6f772d636f6e74726163742d63616c6c6572202863616c6c6572207072696e636970616c29290a202028626567696e200a20202020286173736572747321202869732d65712074782d73656e64657220636f6e74726163742d63616c6c6572290a202020202020202020202020202028657272204552525f535441434b494e475f5045524d495353494f4e5f44454e49454429290a20202020286f6b20286d61702d64656c65746520616c6c6f77616e63652d636f6e74726163742d63616c6c657273207b2073656e6465723a2074782d73656e6465722c20636f6e74726163742d63616c6c65723a2063616c6c6572207d292929290a0a3b3b2047697665206120636f6e74726163742d63616c6c657220617574686f72697a6174696f6e20746f2063616c6c20737461636b696e67206d6574686f64730a3b3b20206e6f726d616c6c792c20737461636b696e67206d6574686f6473206d6179206f6e6c7920626520696e766f6b6564206279205f6469726563745f207472616e73616374696f6e730a3b3b20202028692e652e2c207468652074782d73656e6465722069737375657320612064697265637420636f6e74726163742d63616c6c20746f2074686520737461636b696e67206d6574686f6473290a3b3b202062792069737375696e6720616e20616c6c6f77616e63652c207468652074782d73656e646572206d61792063616c6c207468726f7567682074686520616c6c6f77656420636f6e74726163740a28646566696e652d7075626c69632028616c6c6f772d636f6e74726163742d63616c6c6572202863616c6c6572207072696e636970616c292028756e74696c2d6275726e2d687420286f7074696f6e616c2075696e742929290a202028626567696e0a20202020286173736572747321202869732d65712074782d73656e64657220636f6e74726163742d63616c6c6572290a202020202020202020202020202028657272204552525f535441434b494e475f5045524d495353494f4e5f44454e49454429290a20202020286f6b20286d61702d73657420616c6c6f77616e63652d636f6e74726163742d63616c6c6572730a2020202020202020202020202020207b2073656e6465723a2074782d73656e6465722c20636f6e74726163742d63616c6c65723a2063616c6c6572207d0a2020202020202020202020202020207b20756e74696c2d6275726e2d68743a20756e74696c2d6275726e2d6874207d292929290a0a3b3b204c6f636b20757020736f6d65207553545820666f7220737461636b696e672120204e6f746520746861742074686520676976656e20616d6f756e74206865726520697320696e206d6963726f2d535458202875535458292e0a3b3b20546865205354582077696c6c206265206c6f636b656420666f722074686520676976656e206e756d626572206f6620726577617264206379636c657320286c6f636b2d706572696f64292e0a3b3b2054686973206973207468652073656c662d7365727669636520696e746572666163652e202074782d73656e6465722077696c6c2062652074686520537461636b65722e0a3b3b0a3b3b202a2054686520676976656e20737461636b65722063616e6e6f742063757272656e746c7920626520737461636b696e672e0a3b3b202a20596f752077696c6c206e65656420746865206d696e696d756d2075535458207468726573686f6c642e2020546869732077696c6c2062652064657465726d696e656420627920286765742d737461636b696e672d6d696e696d756d290a3b3b206174207468652074696d652074686973206d6574686f642069732063616c6c65642e0a3b3b202a20596f75206d6179206e65656420746f20696e6372656173652074686520616d6f756e74206f662075535458206c6f636b6564207570206c617465722c2073696e636520746865206d696e696d756d2075535458207468726573686f6c640a3b3b206d617920696e637265617365206265747765656e20726577617264206379636c65732e0a3b3b202a2054686520537461636b65722077696c6c2072656365697665207265776172647320696e2074686520726577617264206379636c6520666f6c6c6f77696e67206073746172742d6275726e2d6874602e0a3b3b20496d706f7274616e746c792c206073746172742d6275726e2d687460206d6179206e6f74206265206675727468657220696e746f2074686520667574757265207468616e20746865206e65787420726577617264206379636c652c0a3b3b20616e6420696e206d6f73742063617365732073686f756c642062652073657420746f207468652063757272656e74206275726e20626c6f636b206865696768742e0a3b3b0a3b3b2054686520746f6b656e732077696c6c20756e6c6f636b20616e642062652072657475726e656420746f2074686520537461636b6572202874782d73656e64657229206175746f6d61746963616c6c792e0a28646566696e652d7075626c69632028737461636b2d7374782028616d6f756e742d757374782075696e74290a202020202020202020202020202020202020202020202020202028706f782d6164647220287475706c65202876657273696f6e202862756666203129292028686173686279746573202862756666203230292929290a20202020202020202020202020202020202020202020202020202873746172742d6275726e2d68742075696e74290a2020202020202020202020202020202020202020202020202020286c6f636b2d706572696f642075696e7429290a202020203b3b207468697320737461636b6572277320666972737420726577617264206379636c6520697320746865205f6e6578745f20726577617264206379636c650a20202020286c657420282866697273742d7265776172642d6379636c6520282b207531202863757272656e742d706f782d7265776172642d6379636c652929290a20202020202020202020287370656369666965642d7265776172642d6379636c6520282b20753120286275726e2d6865696768742d746f2d7265776172642d6379636c652073746172742d6275726e2d6874292929290a2020202020203b3b207468652073746172742d6275726e2d6874206d75737420726573756c7420696e20746865206e65787420726577617264206379636c652c20646f206e6f7420616c6c6f7720737461636b6572730a2020202020203b3b2020746f2022706f73742d64617465222074686569722060737461636b2d73747860207472616e73616374696f6e0a202020202020286173736572747321202869732d65712066697273742d7265776172642d6379636c65207370656369666965642d7265776172642d6379636c65290a2020202020202020202020202020202028657272204552525f494e56414c49445f53544152545f4255524e5f48454947485429290a0a2020202020203b3b206d7573742062652063616c6c6564206469726563746c79206279207468652074782d73656e646572206f7220627920616e20616c6c6f77656420636f6e74726163742d63616c6c65720a2020202020202861737365727473212028636865636b2d63616c6c65722d616c6c6f776564290a2020202020202020202020202020202028657272204552525f535441434b494e475f5045524d495353494f4e5f44454e49454429290a0a2020202020203b3b2074782d73656e646572207072696e636970616c206d757374206e6f7420626520737461636b696e670a202020202020286173736572747321202869732d6e6f6e6520286765742d737461636b65722d696e666f2074782d73656e64657229290a202020202020202028657272204552525f535441434b494e475f414c52454144595f535441434b454429290a0a2020202020203b3b2074782d73656e646572206d757374206e6f742062652064656c65676174696e670a202020202020286173736572747321202869732d6e6f6e6520286765742d636865636b2d64656c65676174696f6e2074782d73656e64657229290a202020202020202028657272204552525f535441434b494e475f414c52454144595f44454c45474154454429290a0a2020202020203b3b2074686520537461636b6572206d75737420686176652073756666696369656e7420756e6c6f636b65642066756e64730a20202020202028617373657274732120283e3d20287374782d6765742d62616c616e63652074782d73656e6465722920616d6f756e742d75737478290a202020202020202028657272204552525f535441434b494e475f494e53554646494349454e545f46554e445329290a0a2020202020203b3b20656e73757265207468617420737461636b696e672063616e20626520706572666f726d65640a2020202020202874727921202863616e2d737461636b2d73747820706f782d6164647220616d6f756e742d757374782066697273742d7265776172642d6379636c65206c6f636b2d706572696f6429290a0a2020202020203b3b2072656769737465722074686520506f58206164647265737320776974682074686520616d6f756e7420737461636b65640a202020202020287472792120286164642d706f782d616464722d746f2d7265776172642d6379636c657320706f782d616464722066697273742d7265776172642d6379636c65206c6f636b2d706572696f6420616d6f756e742d7573747829290a0a2020202020203b3b2061646420737461636b6572207265636f72640a202020202020286d61702d73657420737461636b696e672d73746174650a20202020202020207b20737461636b65723a2074782d73656e646572207d0a20202020202020207b20616d6f756e742d757374783a20616d6f756e742d757374782c0a20202020202020202020706f782d616464723a20706f782d616464722c0a2020202020202020202066697273742d7265776172642d6379636c653a2066697273742d7265776172642d6379636c652c0a202020202020202020206c6f636b2d706572696f643a206c6f636b2d706572696f64207d290a0a2020202020203b3b2072657475726e20746865206c6f636b2d757020696e666f726d6174696f6e2c20736f20746865206e6f64652063616e2061637475616c6c79206361727279206f757420746865206c6f636b2e200a202020202020286f6b207b20737461636b65723a2074782d73656e6465722c206c6f636b2d616d6f756e743a20616d6f756e742d757374782c20756e6c6f636b2d6275726e2d6865696768743a20287265776172642d6379636c652d746f2d6275726e2d68656967687420282b2066697273742d7265776172642d6379636c65206c6f636b2d706572696f642929207d29290a290a0a28646566696e652d7075626c696320287265766f6b652d64656c65676174652d737478290a202028626567696e0a202020203b3b206d7573742062652063616c6c6564206469726563746c79206279207468652074782d73656e646572206f7220627920616e20616c6c6f77656420636f6e74726163742d63616c6c65720a202020202861737365727473212028636865636b2d63616c6c65722d616c6c6f776564290a202020202020202020202020202028657272204552525f535441434b494e475f5045524d495353494f4e5f44454e49454429290a20202020286f6b20286d61702d64656c6574652064656c65676174696f6e2d7374617465207b20737461636b65723a2074782d73656e646572207d292929290a0a3b3b2044656c656761746520746f206064656c65676174652d746f6020746865206162696c69747920746f20737461636b2066726f6d206120676976656e20616464726573732e0a3b3b202054686973206d6574686f64205f646f6573206e6f745f206c6f636b207468652066756e64732c207261746865722c20697420616c6c6f7773207468652064656c65676174650a3b3b2020746f2069737375652074686520737461636b696e67206c6f636b2e0a3b3b205468652063616c6c6572207370656369666965733a0a3b3b2020202a20616d6f756e742d757374783a2074686520746f74616c20616d6f756e74206f662075737478207468652064656c6567617465206d617920626520616c6c6f77656420746f206c6f636b0a3b3b2020202a20756e74696c2d6275726e2d68743a20616e206f7074696f6e616c206275726e2068656967687420617420776869636820746869732064656c65676174696f6e2065787069726174696f6e0a3b3b2020202a20706f782d616464723a20616e206f7074696f6e616c206164647265737320746f20776869636820616e792072657761726473202a6d7573742a2062652073656e740a28646566696e652d7075626c6963202864656c65676174652d7374782028616d6f756e742d757374782075696e74290a20202020202020202020202020202020202020202020202020202020202864656c65676174652d746f207072696e636970616c290a202020202020202020202020202020202020202020202020202020202028756e74696c2d6275726e2d687420286f7074696f6e616c2075696e7429290a202020202020202020202020202020202020202020202020202020202028706f782d6164647220286f7074696f6e616c207b2076657273696f6e3a2028627566662031292c0a2020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020206861736862797465733a20286275666620323029207d2929290a2020202028626567696e0a2020202020203b3b206d7573742062652063616c6c6564206469726563746c79206279207468652074782d73656e646572206f7220627920616e20616c6c6f77656420636f6e74726163742d63616c6c65720a2020202020202861737365727473212028636865636b2d63616c6c65722d616c6c6f776564290a2020202020202020202020202020202028657272204552525f535441434b494e475f5045524d495353494f4e5f44454e49454429290a0a2020202020203b3b2074782d73656e646572207072696e636970616c206d757374206e6f7420626520737461636b696e670a202020202020286173736572747321202869732d6e6f6e6520286765742d737461636b65722d696e666f2074782d73656e64657229290a202020202020202028657272204552525f535441434b494e475f414c52454144595f535441434b454429290a0a2020202020203b3b2074782d73656e646572206d757374206e6f742062652064656c65676174696e670a202020202020286173736572747321202869732d6e6f6e6520286765742d636865636b2d64656c65676174696f6e2074782d73656e64657229290a202020202020202028657272204552525f535441434b494e475f414c52454144595f44454c45474154454429290a0a2020202020203b3b206164642064656c65676174696f6e207265636f72640a202020202020286d61702d7365742064656c65676174696f6e2d73746174650a20202020202020207b20737461636b65723a2074782d73656e646572207d0a20202020202020207b20616d6f756e742d757374783a20616d6f756e742d757374782c0a2020202020202020202064656c6567617465642d746f3a2064656c65676174652d746f2c0a20202020202020202020756e74696c2d6275726e2d68743a20756e74696c2d6275726e2d68742c0a20202020202020202020706f782d616464723a20706f782d61646472207d290a0a202020202020286f6b20747275652929290a0a3b3b20436f6d6d6974207061727469616c6c7920737461636b6564205354582e0a3b3b2020205468697320616c6c6f7773206120737461636b65722f64656c656761746520746f206c6f636b20666577657220535458207468616e20746865206d696e696d616c207468726573686f6c6420696e206d756c7469706c65207472616e73616374696f6e732c0a3b3b202020736f206c6f6e672061733a20312e2054686520706f782d61646472206973207468652073616d652e0a3b3b202020202020202020202020202020322e20546869732022636f6d6d697422207472616e73616374696f6e2069732063616c6c6564205f6265666f72655f2074686520506f5820616e63686f7220626c6f636b2e0a3b3b2020205468697320656e73757265732074686174206561636820656e74727920696e2074686520726577617264207365742072657475726e656420746f2074686520737461636b732d6e6f64652069732067726561746572207468616e20746865207468726573686f6c642c0a3b3b20202062757420646f6573206e6f74207265717569726520697420626520616c6c206c6f636b65642075702077697468696e20612073696e676c65207472616e73616374696f6e0a28646566696e652d7075626c69632028737461636b2d6167677265676174696f6e2d636f6d6d69742028706f782d61646472207b2076657273696f6e3a2028627566662031292c206861736862797465733a20286275666620323029207d290a2020202020202020202020202020202020202020202020202020202020202020202020202020202020287265776172642d6379636c652075696e7429290a2020286c65742028287061727469616c2d737461636b65640a2020202020202020203b3b20666574636820746865207061727469616c20636f6d6d69746d656e74730a20202020202020202028756e777261702120286d61702d6765743f207061727469616c2d737461636b65642d62792d6379636c65207b20706f782d616464723a20706f782d616464722c2073656e6465723a2074782d73656e6465722c207265776172642d6379636c653a207265776172642d6379636c65207d290a20202020202020202020202020202020202028657272204552525f535441434b494e475f4e4f5f535543485f5052494e434950414c292929290a202020203b3b206d7573742062652063616c6c6564206469726563746c79206279207468652074782d73656e646572206f7220627920616e20616c6c6f77656420636f6e74726163742d63616c6c65720a202020202861737365727473212028636865636b2d63616c6c65722d616c6c6f776564290a202020202020202020202020202028657272204552525f535441434b494e475f5045524d495353494f4e5f44454e49454429290a20202020286c6574202828616d6f756e742d75737478202867657420737461636b65642d616d6f756e74207061727469616c2d737461636b65642929290a2020202020202874727921202863616e2d737461636b2d73747820706f782d6164647220616d6f756e742d75737478207265776172642d6379636c6520753129290a2020202020203b3b206164642074686520706f78206164647220746f2074686520726577617264206379636c650a202020202020286164642d706f782d616464722d746f2d6974682d7265776172642d6379636c650a2020202020202075300a202020202020207b20706f782d616464723a20706f782d616464722c0a20202020202020202066697273742d7265776172642d6379636c653a207265776172642d6379636c652c0a2020202020202020206e756d2d6379636c65733a2075312c0a202020202020202020616d6f756e742d757374783a20616d6f756e742d757374782c0a202020202020202020693a207530207d290a2020202020203b3b20646f6e2774207570646174652074686520737461636b696e672d7374617465206d61702c0a2020202020203b3b202062656361757365206974205f616c7265616479206861735f207468697320737461636b657227732073746174650a2020202020203b3b20646f6e2774206c6f636b20746865205354582c2062656361757365207468652053545820697320616c7265616479206c6f636b65640a2020202020203b3b0a2020202020203b3b20636c65617220746865207061727469616c2d737461636b65642073746174650a202020202020286d61702d64656c657465207061727469616c2d737461636b65642d62792d6379636c65207b20706f782d616464723a20706f782d616464722c2073656e6465723a2074782d73656e6465722c207265776172642d6379636c653a207265776172642d6379636c65207d290a202020202020286f6b2074727565292929290a0a3b3b20417320612064656c65676174652c20737461636b2074686520676976656e207072696e636970616c277320535458207573696e67207061727469616c2d737461636b65642d62792d6379636c650a3b3b204f6e6365207468652064656c65676174652068617320737461636b6564203e206d696e696d756d2c207468652064656c65676174652073686f756c642063616c6c20737461636b2d6167677265676174696f6e2d636f6d6d69740a28646566696e652d7075626c6963202864656c65676174652d737461636b2d7374782028737461636b6572207072696e636970616c290a202020202020202020202020202020202020202020202020202020202020202020202028616d6f756e742d757374782075696e74290a202020202020202020202020202020202020202020202020202020202020202020202028706f782d61646472207b2076657273696f6e3a2028627566662031292c206861736862797465733a20286275666620323029207d290a20202020202020202020202020202020202020202020202020202020202020202020202873746172742d6275726e2d68742075696e74290a2020202020202020202020202020202020202020202020202020202020202020202020286c6f636b2d706572696f642075696e7429290a202020203b3b207468697320737461636b6572277320666972737420726577617264206379636c6520697320746865205f6e6578745f20726577617264206379636c650a20202020286c657420282866697273742d7265776172642d6379636c6520282b207531202863757272656e742d706f782d7265776172642d6379636c652929290a20202020202020202020287370656369666965642d7265776172642d6379636c6520282b20753120286275726e2d6865696768742d746f2d7265776172642d6379636c652073746172742d6275726e2d68742929290a2020202020202020202028756e6c6f636b2d6275726e2d68656967687420287265776172642d6379636c652d746f2d6275726e2d68656967687420282b202863757272656e742d706f782d7265776172642d6379636c6529207531206c6f636b2d706572696f64292929290a2020202020203b3b207468652073746172742d6275726e2d6874206d75737420726573756c7420696e20746865206e65787420726577617264206379636c652c20646f206e6f7420616c6c6f7720737461636b6572730a2020202020203b3b2020746f2022706f73742d64617465222074686569722060737461636b2d73747860207472616e73616374696f6e0a202020202020286173736572747321202869732d65712066697273742d7265776172642d6379636c65207370656369666965642d7265776172642d6379636c65290a2020202020202020202020202020202028657272204552525f494e56414c49445f53544152545f4255524e5f48454947485429290a0a2020202020203b3b206d7573742062652063616c6c6564206469726563746c79206279207468652074782d73656e646572206f7220627920616e20616c6c6f77656420636f6e74726163742d63616c6c65720a2020202020202861737365727473212028636865636b2d63616c6c65722d616c6c6f776564290a202020202020202028657272204552525f535441434b494e475f5045524d495353494f4e5f44454e49454429290a0a2020202020203b3b20737461636b6572206d75737420686176652064656c65676174656420746f207468652063616c6c65720a202020202020286c657420282864656c65676174696f6e2d696e666f2028756e777261702120286765742d636865636b2d64656c65676174696f6e20737461636b6572292028657272204552525f535441434b494e475f5045524d495353494f4e5f44454e494544292929290a20202020202020203b3b206d75737420686176652064656c65676174656420746f2074782d73656e6465720a2020202020202020286173736572747321202869732d657120286765742064656c6567617465642d746f2064656c65676174696f6e2d696e666f292074782d73656e646572290a20202020202020202020202020202020202028657272204552525f535441434b494e475f5045524d495353494f4e5f44454e49454429290a20202020202020203b3b206d75737420686176652064656c65676174656420656e6f756768207374780a202020202020202028617373657274732120283e3d202867657420616d6f756e742d757374782064656c65676174696f6e2d696e666f2920616d6f756e742d75737478290a20202020202020202020202020202020202028657272204552525f44454c45474154494f4e5f544f4f5f4d5543485f4c4f434b454429290a20202020202020203b3b20696620706f782d61646472206973207365742c206d75737420626520657175616c20746f20706f782d616464720a202020202020202028617373657274732120286d61746368202867657420706f782d616464722064656c65676174696f6e2d696e666f290a202020202020202020202020202020202020202020202020207370656369666965642d706f782d61646472202869732d657120706f782d61646472207370656369666965642d706f782d61646472290a2020202020202020202020202020202020202020202020202074727565290a20202020202020202020202020202020202028657272204552525f44454c45474154494f4e5f504f585f414444525f524551554952454429290a20202020202020203b3b2064656c65676174696f6e206d757374206e6f7420657870697265206265666f7265206c6f636b20706572696f640a202020202020202028617373657274732120286d61746368202867657420756e74696c2d6275726e2d68742064656c65676174696f6e2d696e666f290a20202020202020202020202020202020202020202020202020756e74696c2d6275726e2d687420283e3d20756e74696c2d6275726e2d68740a20202020202020202020202020202020202020202020202020202020202020202020202020202020202020756e6c6f636b2d6275726e2d686569676874290a2020202020202020202020202020202020202020202074727565290a20202020202020202020202020202020202028657272204552525f44454c45474154494f4e5f455850495245535f445552494e475f4c4f434b2929290a0a2020202020203b3b20737461636b6572207072696e636970616c206d757374206e6f7420626520737461636b696e670a202020202020286173736572747321202869732d6e6f6e6520286765742d737461636b65722d696e666f20737461636b657229290a202020202020202028657272204552525f535441434b494e475f414c52454144595f535441434b454429290a0a2020202020203b3b2074686520537461636b6572206d75737420686176652073756666696369656e7420756e6c6f636b65642066756e64730a20202020202028617373657274732120283e3d20287374782d6765742d62616c616e636520737461636b65722920616d6f756e742d75737478290a202020202020202028657272204552525f535441434b494e475f494e53554646494349454e545f46554e445329290a0a2020202020203b3b20656e73757265207468617420737461636b696e672063616e20626520706572666f726d65640a202020202020287472792120286d696e696d616c2d63616e2d737461636b2d73747820706f782d6164647220616d6f756e742d757374782066697273742d7265776172642d6379636c65206c6f636b2d706572696f6429290a0a2020202020203b3b2072656769737465722074686520506f58206164647265737320776974682074686520616d6f756e7420737461636b656420766961207061727469616c20737461636b696e670a2020202020203b3b2020206265666f72652069742063616e20626520696e636c7564656420696e2074686520726577617264207365742c2074686973206d75737420626520636f6d6d6974746564210a202020202020286164642d706f782d7061727469616c2d737461636b656420706f782d616464722066697273742d7265776172642d6379636c65206c6f636b2d706572696f6420616d6f756e742d75737478290a0a2020202020203b3b2061646420737461636b6572207265636f72640a202020202020286d61702d73657420737461636b696e672d73746174650a20202020202020207b20737461636b65723a20737461636b6572207d0a20202020202020207b20616d6f756e742d757374783a20616d6f756e742d757374782c0a20202020202020202020706f782d616464723a20706f782d616464722c0a2020202020202020202066697273742d7265776172642d6379636c653a2066697273742d7265776172642d6379636c652c0a202020202020202020206c6f636b2d706572696f643a206c6f636b2d706572696f64207d290a0a2020202020203b3b2072657475726e20746865206c6f636b2d757020696e666f726d6174696f6e2c20736f20746865206e6f64652063616e2061637475616c6c79206361727279206f757420746865206c6f636b2e200a202020202020286f6b207b20737461636b65723a20737461636b65722c0a2020202020202020202020206c6f636b2d616d6f756e743a20616d6f756e742d757374782c0a202020202020202020202020756e6c6f636b2d6275726e2d6865696768743a20756e6c6f636b2d6275726e2d686569676874207d2929290a0a3b3b2052656a65637420537461636b696e6720666f72207468697320726577617264206379636c652e0a3b3b2074782d73656e64657220766f74657320616c6c20697473207553545820666f722072656a656374696f6e2e0a3b3b204e6f7465207468617420756e6c696b6520506f582c2072656a656374696e6720506f5820646f6573206e6f74206c6f636b207468652074782d73656e64657227730a3b3b20746f6b656e732e2020506f582072656a656374696f6e2061637473206c696b65206120636f696e20766f74652e0a28646566696e652d7075626c6963202872656a6563742d706f78290a20202020286c657420280a20202020202020202862616c616e636520287374782d6765742d62616c616e63652074782d73656e64657229290a202020202020202028766f74652d7265776172642d6379636c6520282b207531202863757272656e742d706f782d7265776172642d6379636c652929290a20202020290a0a202020203b3b2074782d73656e646572207072696e636970616c206d757374206e6f7420686176652072656a656374656420696e2074686973207570636f6d696e6720726577617264206379636c650a20202020286173736572747321202869732d6e6f6e6520286765742d706f782d72656a656374696f6e2074782d73656e64657220766f74652d7265776172642d6379636c6529290a202020202020202028657272204552525f535441434b494e475f414c52454144595f52454a454354454429290a0a202020203b3b2074782d73656e6465722063616e2774206265206120737461636b65720a20202020286173736572747321202869732d6e6f6e6520286765742d737461636b65722d696e666f2074782d73656e64657229290a202020202020202028657272204552525f535441434b494e475f414c52454144595f535441434b454429290a0a202020203b3b20766f746520666f722072656a656374696f6e0a20202020286d61702d73657420737461636b696e672d72656a656374696f6e0a20202020202020207b207265776172642d6379636c653a20766f74652d7265776172642d6379636c65207d0a20202020202020207b20616d6f756e743a20282b20286e6578742d6379636c652d72656a656374696f6e2d766f746573292062616c616e636529207d0a20202020290a0a202020203b3b206d61726b20766f7465640a20202020286d61702d73657420737461636b696e672d72656a6563746f72730a20202020202020207b20737461636b65723a2074782d73656e6465722c207265776172642d6379636c653a20766f74652d7265776172642d6379636c65207d0a20202020202020207b20616d6f756e743a2062616c616e6365207d0a20202020290a0a20202020286f6b207472756529290a290a0a3b3b205573656420666f7220506f5820706172616d657465727320646973636f766572790a28646566696e652d726561642d6f6e6c7920286765742d706f782d696e666f290a20202020286f6b207b0a20202020202020206d696e2d616d6f756e742d757374783a20286765742d737461636b696e672d6d696e696d756d292c0a20202020202020207265776172642d6379636c652d69643a202863757272656e742d706f782d7265776172642d6379636c65292c0a2020202020202020707265706172652d6379636c652d6c656e6774683a20287661722d67657420706f782d707265706172652d6379636c652d6c656e677468292c0a202020202020202066697273742d6275726e636861696e2d626c6f636b2d6865696768743a20287661722d6765742066697273742d6275726e636861696e2d626c6f636b2d686569676874292c0a20202020202020207265776172642d6379636c652d6c656e6774683a20287661722d67657420706f782d7265776172642d6379636c652d6c656e677468292c0a202020202020202072656a656374696f6e2d6672616374696f6e3a20287661722d67657420706f782d72656a656374696f6e2d6672616374696f6e292c0a202020202020202063757272656e742d72656a656374696f6e2d766f7465733a20286e6578742d6379636c652d72656a656374696f6e2d766f746573292c0a2020202020202020746f74616c2d6c69717569642d737570706c792d757374783a207374782d6c69717569642d737570706c792c0a202020207d290a290a", "status": "success", "tx_index": 0, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": {"maps": [{"key": {"tuple": [{"name": "contract-caller", "type": "principal"}, {"name": "sender", "type": "principal"}]}, "name": "allowance-contract-callers", "value": {"tuple": [{"name": "until-burn-ht", "type": {"optional": "uint128"}}]}}, {"key": {"tuple": [{"name": "stacker", "type": "principal"}]}, "name": "delegation-state", "value": {"tuple": [{"name": "amount-ustx", "type": "uint128"}, {"name": "delegated-to", "type": "principal"}, {"name": "pox-addr", "type": {"optional": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 20}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}}, {"name": "until-burn-ht", "type": {"optional": "uint128"}}]}}, {"key": {"tuple": [{"name": "pox-addr", "type": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 20}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}, {"name": "reward-cycle", "type": "uint128"}, {"name": "sender", "type": "principal"}]}, "name": "partial-stacked-by-cycle", "value": {"tuple": [{"name": "stacked-amount", "type": "uint128"}]}}, {"key": {"tuple": [{"name": "index", "type": "uint128"}, {"name": "reward-cycle", "type": "uint128"}]}, "name": "reward-cycle-pox-address-list", "value": {"tuple": [{"name": "pox-addr", "type": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 20}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}, {"name": "total-ustx", "type": "uint128"}]}}, {"key": {"tuple": [{"name": "reward-cycle", "type": "uint128"}]}, "name": "reward-cycle-pox-address-list-len", "value": {"tuple": [{"name": "len", "type": "uint128"}]}}, {"key": {"tuple": [{"name": "reward-cycle", "type": "uint128"}]}, "name": "reward-cycle-total-stacked", "value": {"tuple": [{"name": "total-ustx", "type": "uint128"}]}}, {"key": {"tuple": [{"name": "reward-cycle", "type": "uint128"}]}, "name": "stacking-rejection", "value": {"tuple": [{"name": "amount", "type": "uint128"}]}}, {"key": {"tuple": [{"name": "reward-cycle", "type": "uint128"}, {"name": "stacker", "type": "principal"}]}, "name": "stacking-rejectors", "value": {"tuple": [{"name": "amount", "type": "uint128"}]}}, {"key": {"tuple": [{"name": "stacker", "type": "principal"}]}, "name": "stacking-state", "value": {"tuple": [{"name": "amount-ustx", "type": "uint128"}, {"name": "first-reward-cycle", "type": "uint128"}, {"name": "lock-period", "type": "uint128"}, {"name": "pox-addr", "type": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 20}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}]}}], "epoch": "Epoch20", "functions": [{"args": [{"name": "cycle-index", "type": "uint128"}, {"name": "params", "type": {"tuple": [{"name": "amount-ustx", "type": "uint128"}, {"name": "first-reward-cycle", "type": "uint128"}, {"name": "i", "type": "uint128"}, {"name": "num-cycles", "type": "uint128"}, {"name": "pox-addr", "type": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 20}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}]}}], "name": "add-pox-addr-to-ith-reward-cycle", "access": "private", "outputs": {"type": {"tuple": [{"name": "amount-ustx", "type": "uint128"}, {"name": "first-reward-cycle", "type": "uint128"}, {"name": "i", "type": "uint128"}, {"name": "num-cycles", "type": "uint128"}, {"name": "pox-addr", "type": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 20}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}]}}}, {"args": [{"name": "pox-addr", "type": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 20}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}, {"name": "first-reward-cycle", "type": "uint128"}, {"name": "num-cycles", "type": "uint128"}, {"name": "amount-ustx", "type": "uint128"}], "name": "add-pox-addr-to-reward-cycles", "access": "private", "outputs": {"type": {"response": {"ok": "bool", "error": "int128"}}}}, {"args": [{"name": "pox-addr", "type": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 20}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}, {"name": "first-reward-cycle", "type": "uint128"}, {"name": "num-cycles", "type": "uint128"}, {"name": "amount-ustx", "type": "uint128"}], "name": "add-pox-partial-stacked", "access": "private", "outputs": {"type": "bool"}}, {"args": [{"name": "cycle-index", "type": "uint128"}, {"name": "params", "type": {"tuple": [{"name": "amount-ustx", "type": "uint128"}, {"name": "num-cycles", "type": "uint128"}, {"name": "pox-addr", "type": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 20}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}, {"name": "reward-cycle", "type": "uint128"}]}}], "name": "add-pox-partial-stacked-to-ith-cycle", "access": "private", "outputs": {"type": {"tuple": [{"name": "amount-ustx", "type": "uint128"}, {"name": "num-cycles", "type": "uint128"}, {"name": "pox-addr", "type": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 20}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}, {"name": "reward-cycle", "type": "uint128"}]}}}, {"args": [{"name": "pox-addr", "type": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 20}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}, {"name": "reward-cycle", "type": "uint128"}, {"name": "amount-ustx", "type": "uint128"}], "name": "append-reward-cycle-pox-addr", "access": "private", "outputs": {"type": "uint128"}}, {"args": [{"name": "height", "type": "uint128"}], "name": "burn-height-to-reward-cycle", "access": "private", "outputs": {"type": "uint128"}}, {"args": [], "name": "check-caller-allowed", "access": "private", "outputs": {"type": "bool"}}, {"args": [{"name": "version", "type": {"buffer": {"length": 1}}}], "name": "check-pox-addr-version", "access": "private", "outputs": {"type": "bool"}}, {"args": [{"name": "lock-period", "type": "uint128"}], "name": "check-pox-lock-period", "access": "private", "outputs": {"type": "bool"}}, {"args": [], "name": "current-pox-reward-cycle", "access": "private", "outputs": {"type": "uint128"}}, {"args": [{"name": "stacker", "type": "principal"}], "name": "get-check-delegation", "access": "private", "outputs": {"type": {"optional": {"tuple": [{"name": "amount-ustx", "type": "uint128"}, {"name": "delegated-to", "type": "principal"}, {"name": "pox-addr", "type": {"optional": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 20}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}}, {"name": "until-burn-ht", "type": {"optional": "uint128"}}]}}}}, {"args": [], "name": "next-cycle-rejection-votes", "access": "private", "outputs": {"type": "uint128"}}, {"args": [{"name": "cycle", "type": "uint128"}], "name": "reward-cycle-to-burn-height", "access": "private", "outputs": {"type": "uint128"}}, {"args": [{"name": "caller", "type": "principal"}, {"name": "until-burn-ht", "type": {"optional": "uint128"}}], "name": "allow-contract-caller", "access": "public", "outputs": {"type": {"response": {"ok": "bool", "error": "int128"}}}}, {"args": [{"name": "stacker", "type": "principal"}, {"name": "amount-ustx", "type": "uint128"}, {"name": "pox-addr", "type": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 20}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}, {"name": "start-burn-ht", "type": "uint128"}, {"name": "lock-period", "type": "uint128"}], "name": "delegate-stack-stx", "access": "public", "outputs": {"type": {"response": {"ok": {"tuple": [{"name": "lock-amount", "type": "uint128"}, {"name": "stacker", "type": "principal"}, {"name": "unlock-burn-height", "type": "uint128"}]}, "error": "int128"}}}}, {"args": [{"name": "amount-ustx", "type": "uint128"}, {"name": "delegate-to", "type": "principal"}, {"name": "until-burn-ht", "type": {"optional": "uint128"}}, {"name": "pox-addr", "type": {"optional": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 20}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}}], "name": "delegate-stx", "access": "public", "outputs": {"type": {"response": {"ok": "bool", "error": "int128"}}}}, {"args": [{"name": "caller", "type": "principal"}], "name": "disallow-contract-caller", "access": "public", "outputs": {"type": {"response": {"ok": "bool", "error": "int128"}}}}, {"args": [], "name": "reject-pox", "access": "public", "outputs": {"type": {"response": {"ok": "bool", "error": "int128"}}}}, {"args": [], "name": "revoke-delegate-stx", "access": "public", "outputs": {"type": {"response": {"ok": "bool", "error": "int128"}}}}, {"args": [{"name": "first-burn-height", "type": "uint128"}, {"name": "prepare-cycle-length", "type": "uint128"}, {"name": "reward-cycle-length", "type": "uint128"}, {"name": "rejection-fraction", "type": "uint128"}], "name": "set-burnchain-parameters", "access": "public", "outputs": {"type": {"response": {"ok": "bool", "error": "int128"}}}}, {"args": [{"name": "pox-addr", "type": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 20}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}, {"name": "reward-cycle", "type": "uint128"}], "name": "stack-aggregation-commit", "access": "public", "outputs": {"type": {"response": {"ok": "bool", "error": "int128"}}}}, {"args": [{"name": "amount-ustx", "type": "uint128"}, {"name": "pox-addr", "type": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 20}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}, {"name": "start-burn-ht", "type": "uint128"}, {"name": "lock-period", "type": "uint128"}], "name": "stack-stx", "access": "public", "outputs": {"type": {"response": {"ok": {"tuple": [{"name": "lock-amount", "type": "uint128"}, {"name": "stacker", "type": "principal"}, {"name": "unlock-burn-height", "type": "uint128"}]}, "error": "int128"}}}}, {"args": [{"name": "pox-addr", "type": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 20}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}, {"name": "amount-ustx", "type": "uint128"}, {"name": "first-reward-cycle", "type": "uint128"}, {"name": "num-cycles", "type": "uint128"}], "name": "can-stack-stx", "access": "read_only", "outputs": {"type": {"response": {"ok": "bool", "error": "int128"}}}}, {"args": [], "name": "get-pox-info", "access": "read_only", "outputs": {"type": {"response": {"ok": {"tuple": [{"name": "current-rejection-votes", "type": "uint128"}, {"name": "first-burnchain-block-height", "type": "uint128"}, {"name": "min-amount-ustx", "type": "uint128"}, {"name": "prepare-cycle-length", "type": "uint128"}, {"name": "rejection-fraction", "type": "uint128"}, {"name": "reward-cycle-id", "type": "uint128"}, {"name": "reward-cycle-length", "type": "uint128"}, {"name": "total-liquid-supply-ustx", "type": "uint128"}]}, "error": "none"}}}}, {"args": [{"name": "stacker", "type": "principal"}, {"name": "reward-cycle", "type": "uint128"}], "name": "get-pox-rejection", "access": "read_only", "outputs": {"type": {"optional": {"tuple": [{"name": "amount", "type": "uint128"}]}}}}, {"args": [{"name": "reward-cycle", "type": "uint128"}, {"name": "index", "type": "uint128"}], "name": "get-reward-set-pox-address", "access": "read_only", "outputs": {"type": {"optional": {"tuple": [{"name": "pox-addr", "type": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 20}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}, {"name": "total-ustx", "type": "uint128"}]}}}}, {"args": [{"name": "reward-cycle", "type": "uint128"}], "name": "get-reward-set-size", "access": "read_only", "outputs": {"type": "uint128"}}, {"args": [{"name": "stacker", "type": "principal"}], "name": "get-stacker-info", "access": "read_only", "outputs": {"type": {"optional": {"tuple": [{"name": "amount-ustx", "type": "uint128"}, {"name": "first-reward-cycle", "type": "uint128"}, {"name": "lock-period", "type": "uint128"}, {"name": "pox-addr", "type": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 20}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}]}}}}, {"args": [], "name": "get-stacking-minimum", "access": "read_only", "outputs": {"type": "uint128"}}, {"args": [{"name": "reward-cycle", "type": "uint128"}], "name": "get-total-ustx-stacked", "access": "read_only", "outputs": {"type": "uint128"}}, {"args": [{"name": "reward-cycle", "type": "uint128"}], "name": "is-pox-active", "access": "read_only", "outputs": {"type": "bool"}}, {"args": [{"name": "pox-addr", "type": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 20}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}, {"name": "amount-ustx", "type": "uint128"}, {"name": "first-reward-cycle", "type": "uint128"}, {"name": "num-cycles", "type": "uint128"}], "name": "minimal-can-stack-stx", "access": "read_only", "outputs": {"type": {"response": {"ok": "bool", "error": "int128"}}}}], "variables": [{"name": "ADDRESS_VERSION_P2PKH", "type": {"buffer": {"length": 1}}, "access": "constant"}, {"name": "ADDRESS_VERSION_P2SH", "type": {"buffer": {"length": 1}}, "access": "constant"}, {"name": "ADDRESS_VERSION_P2WPKH", "type": {"buffer": {"length": 1}}, "access": "constant"}, {"name": "ADDRESS_VERSION_P2WSH", "type": {"buffer": {"length": 1}}, "access": "constant"}, {"name": "ERR_DELEGATION_EXPIRES_DURING_LOCK", "type": "int128", "access": "constant"}, {"name": "ERR_DELEGATION_POX_ADDR_REQUIRED", "type": "int128", "access": "constant"}, {"name": "ERR_DELEGATION_TOO_MUCH_LOCKED", "type": "int128", "access": "constant"}, {"name": "ERR_INVALID_START_BURN_HEIGHT", "type": "int128", "access": "constant"}, {"name": "ERR_NOT_ALLOWED", "type": "int128", "access": "constant"}, {"name": "ERR_STACKING_ALREADY_DELEGATED", "type": "int128", "access": "constant"}, {"name": "ERR_STACKING_ALREADY_REJECTED", "type": "int128", "access": "constant"}, {"name": "ERR_STACKING_ALREADY_STACKED", "type": "int128", "access": "constant"}, {"name": "ERR_STACKING_EXPIRED", "type": "int128", "access": "constant"}, {"name": "ERR_STACKING_INSUFFICIENT_FUNDS", "type": "int128", "access": "constant"}, {"name": "ERR_STACKING_INVALID_AMOUNT", "type": "int128", "access": "constant"}, {"name": "ERR_STACKING_INVALID_LOCK_PERIOD", "type": "int128", "access": "constant"}, {"name": "ERR_STACKING_INVALID_POX_ADDRESS", "type": "int128", "access": "constant"}, {"name": "ERR_STACKING_NO_SUCH_PRINCIPAL", "type": "int128", "access": "constant"}, {"name": "ERR_STACKING_PERMISSION_DENIED", "type": "int128", "access": "constant"}, {"name": "ERR_STACKING_POX_ADDRESS_IN_USE", "type": "int128", "access": "constant"}, {"name": "ERR_STACKING_STX_LOCKED", "type": "int128", "access": "constant"}, {"name": "ERR_STACKING_THRESHOLD_NOT_MET", "type": "int128", "access": "constant"}, {"name": "ERR_STACKING_UNREACHABLE", "type": "int128", "access": "constant"}, {"name": "MAX_POX_REWARD_CYCLES", "type": "uint128", "access": "constant"}, {"name": "MIN_POX_REWARD_CYCLES", "type": "uint128", "access": "constant"}, {"name": "POX_REJECTION_FRACTION", "type": "uint128", "access": "constant"}, {"name": "PREPARE_CYCLE_LENGTH", "type": "uint128", "access": "constant"}, {"name": "REWARD_CYCLE_LENGTH", "type": "uint128", "access": "constant"}, {"name": "STACKING_THRESHOLD_100", "type": "uint128", "access": "constant"}, {"name": "STACKING_THRESHOLD_25", "type": "uint128", "access": "constant"}, {"name": "configured", "type": "bool", "access": "variable"}, {"name": "first-burnchain-block-height", "type": "uint128", "access": "variable"}, {"name": "pox-prepare-cycle-length", "type": "uint128", "access": "variable"}, {"name": "pox-rejection-fraction", "type": "uint128", "access": "variable"}, {"name": "pox-reward-cycle-length", "type": "uint128", "access": "variable"}], "clarity_version": "Clarity1", "fungible_tokens": [], "non_fungible_tokens": []}, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}, {"txid": "0x6c7d2954afd43389359a67d510f1a5c7541e51509301f6ee9d9501348f7f9bd5", "raw_tx": "0x8000000000040000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003020000000001066c6f636b75700000015b28646566696e652d6d6170206c6f636b7570732075696e7420286c6973742034343330207b20726563697069656e743a207072696e636970616c2c20616d6f756e743a2075696e74207d29290a0a28646566696e652d726561642d6f6e6c7920286765742d6c6f636b75707320287374782d626c6f636b2d6865696768742d6f707420286f7074696f6e616c2075696e742929290a20202020286c65742028287374782d626c6f636b2d686569676874202864656661756c742d746f20626c6f636b2d686569676874207374782d626c6f636b2d6865696768742d6f70742929290a2020202020202020286c65742028286475652d7363686564756c6573202864656661756c742d746f20286c6973742920286d61702d6765743f206c6f636b757073207374782d626c6f636b2d686569676874292929290a202020202020202020202020286f6b206475652d7363686564756c6573292929290a", "status": "success", "tx_index": 1, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": {"maps": [{"key": "uint128", "name": "lockups", "value": {"list": {"type": {"tuple": [{"name": "amount", "type": "uint128"}, {"name": "recipient", "type": "principal"}]}, "length": 4430}}}], "epoch": "Epoch20", "functions": [{"args": [{"name": "stx-block-height-opt", "type": {"optional": "uint128"}}], "name": "get-lockups", "access": "read_only", "outputs": {"type": {"response": {"ok": {"list": {"type": {"tuple": [{"name": "amount", "type": "uint128"}, {"name": "recipient", "type": "principal"}]}, "length": 4430}}, "error": "none"}}}}], "variables": [], "clarity_version": "Clarity1", "fungible_tokens": [], "non_fungible_tokens": []}, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}, {"txid": "0xe07949dee1d40a6b1d25ed7cbaceb0e615b50ce68737635438e5e6156ab168ea", "raw_tx": "0x800000000004000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000302000000000105636f737473000033cf3b3b20746865202e636f73747320636f6e74726163740a0a3b3b2048656c7065722046756e6374696f6e730a0a3b3b2052657475726e206120436f73742053706563696669636174696f6e2077697468206a75737420612072756e74696d6520636f73740a28646566696e652d70726976617465202872756e74696d652028722075696e7429290a202020207b0a202020202020202072756e74696d653a20722c0a202020202020202077726974655f6c656e6774683a2075302c0a202020202020202077726974655f636f756e743a2075302c0a2020202020202020726561645f636f756e743a2075302c0a2020202020202020726561645f6c656e6774683a2075302c0a202020207d290a0a3b3b204c696e65617220636f73742d6173736573736d656e742066756e6374696f6e0a28646566696e652d7072697661746520286c696e65617220286e2075696e74292028612075696e74292028622075696e7429290a20202020282b20282a2061206e29206229290a0a3b3b204c6f674e20636f73742d6173736573736d656e742066756e6374696f6e0a28646566696e652d7072697661746520286c6f676e20286e2075696e74292028612075696e74292028622075696e7429290a20202020282b20282a206120286c6f6732206e2929206229290a0a3b3b204e4c6f674e20636f73742d6173736573736d656e742066756e6374696f6e0a28646566696e652d7072697661746520286e6c6f676e20286e2075696e74292028612075696e74292028622075696e7429290a20202020282b20282a206120282a206e20286c6f6732206e292929206229290a0a0a3b3b20436f73742046756e6374696f6e730a28646566696e652d726561642d6f6e6c792028636f73745f616e616c797369735f747970655f616e6e6f7461746520286e2075696e7429290a202020202872756e74696d6520286c696e656172206e2075313030302075313030302929290a0a28646566696e652d726561642d6f6e6c792028636f73745f616e616c797369735f747970655f636865636b20286e2075696e7429290a202020202872756e74696d6520286c696e656172206e2075313030302075313030302929290a0a28646566696e652d726561642d6f6e6c792028636f73745f616e616c797369735f747970655f6c6f6f6b757020286e2075696e7429290a202020202872756e74696d6520286c696e656172206e2075313030302075313030302929290a0a28646566696e652d726561642d6f6e6c792028636f73745f616e616c797369735f766973697420286e2075696e7429290a202020202872756e74696d6520753130303029290a0a28646566696e652d726561642d6f6e6c792028636f73745f616e616c797369735f6974657261626c655f66756e6320286e2075696e7429290a202020202872756e74696d6520286c696e656172206e2075313030302075313030302929290a0a28646566696e652d726561642d6f6e6c792028636f73745f616e616c797369735f6f7074696f6e5f636f6e7320286e2075696e7429290a202020202872756e74696d6520753130303029290a0a28646566696e652d726561642d6f6e6c792028636f73745f616e616c797369735f6f7074696f6e5f636865636b20286e2075696e7429290a202020202872756e74696d6520753130303029290a0a28646566696e652d726561642d6f6e6c792028636f73745f616e616c797369735f62696e645f6e616d6520286e2075696e7429290a202020202872756e74696d6520286c696e656172206e2075313030302075313030302929290a0a28646566696e652d726561642d6f6e6c792028636f73745f616e616c797369735f6c6973745f6974656d735f636865636b20286e2075696e7429290a202020202872756e74696d6520286c696e656172206e2075313030302075313030302929290a0a28646566696e652d726561642d6f6e6c792028636f73745f616e616c797369735f636865636b5f7475706c655f67657420286e2075696e7429290a202020202872756e74696d6520286c6f676e206e2075313030302075313030302929290a0a28646566696e652d726561642d6f6e6c792028636f73745f616e616c797369735f636865636b5f7475706c655f6d6572676520286e2075696e742929200a202020202872756e74696d6520286c696e656172206e2075313030302075313030302929290a0a28646566696e652d726561642d6f6e6c792028636f73745f616e616c797369735f636865636b5f7475706c655f636f6e7320286e2075696e7429290a202020202872756e74696d6520286e6c6f676e206e2075313030302075313030302929290a0a28646566696e652d726561642d6f6e6c792028636f73745f616e616c797369735f7475706c655f6974656d735f636865636b20286e2075696e7429290a202020202872756e74696d6520286c696e656172206e2075313030302075313030302929290a0a28646566696e652d726561642d6f6e6c792028636f73745f616e616c797369735f636865636b5f6c657420286e2075696e7429290a202020202872756e74696d6520286c696e656172206e2075313030302075313030302929290a0a28646566696e652d726561642d6f6e6c792028636f73745f616e616c797369735f6c6f6f6b75705f66756e6374696f6e20286e2075696e7429290a202020202872756e74696d6520753130303029290a0a28646566696e652d726561642d6f6e6c792028636f73745f616e616c797369735f6c6f6f6b75705f66756e6374696f6e5f747970657320286e2075696e7429290a202020202872756e74696d6520286c696e656172206e2075313030302075313030302929290a0a28646566696e652d726561642d6f6e6c792028636f73745f616e616c797369735f6c6f6f6b75705f7661726961626c655f636f6e737420286e2075696e7429290a202020202872756e74696d6520753130303029290a0a28646566696e652d726561642d6f6e6c792028636f73745f616e616c797369735f6c6f6f6b75705f7661726961626c655f646570746820286e2075696e7429290a202020202872756e74696d6520286e6c6f676e206e2075313030302075313030302929290a0a3b3b206173742d70617273652069732061207665727920657870656e73697665206c696e656172206f7065726174696f6e2c200a3b3b2020207072696d6172696c79206265636175736520697420646f65732074686520776f726b206f6620636170747572696e670a3b3b2020206d6f7374206f662074686520616e616c797369732070686173652773206c696e65617220636f73742c2062757420616c736f0a3b3b2020206265636175736520746865206d6f737420657870656e736976652070617274206f662074686520616e616c79736973207068617365200a3b3b202020697320746865206173740a28646566696e652d726561642d6f6e6c792028636f73745f6173745f706172736520286e2075696e7429290a202020202872756e74696d6520286c696e656172206e207531303030302075313030302929290a0a28646566696e652d726561642d6f6e6c792028636f73745f6173745f6379636c655f646574656374696f6e20286e2075696e7429290a202020202872756e74696d6520286c696e656172206e2075313030302075313030302929290a0a28646566696e652d726561642d6f6e6c792028636f73745f616e616c797369735f73746f7261676520286e2075696e7429290a202020207b0a202020202020202072756e74696d653a20286c696e656172206e207531303030207531303030292c0a202020202020202077726974655f6c656e6774683a20286c696e656172206e207531207531292c0a202020202020202077726974655f636f756e743a2075312c0a2020202020202020726561645f636f756e743a2075312c0a2020202020202020726561645f6c656e6774683a2075310a202020207d290a0a28646566696e652d726561642d6f6e6c792028636f73745f616e616c797369735f7573655f74726169745f656e74727920286e2075696e7429290a202020207b0a202020202020202072756e74696d653a20286c696e656172206e207531303030207531303030292c0a202020202020202077726974655f6c656e6774683a20286c696e656172206e207531207531292c0a202020202020202077726974655f636f756e743a2075302c0a2020202020202020726561645f636f756e743a2075312c0a2020202020202020726561645f6c656e6774683a20286c696e656172206e207531207531290a202020207d290a0a28646566696e652d726561642d6f6e6c792028636f73745f616e616c797369735f6765745f66756e6374696f6e5f656e74727920286e2075696e7429290a202020207b0a202020202020202072756e74696d653a20286c696e656172206e207531303030207531303030292c0a202020202020202077726974655f6c656e6774683a2075302c0a202020202020202077726974655f636f756e743a2075302c0a2020202020202020726561645f636f756e743a2075312c0a2020202020202020726561645f6c656e6774683a20286c696e656172206e207531207531290a202020207d290a0a28646566696e652d726561642d6f6e6c792028636f73745f616e616c797369735f66657463685f636f6e74726163745f656e74727920286e2075696e7429290a202020207b0a202020202020202072756e74696d653a20286c696e656172206e207531303030207531303030292c0a202020202020202077726974655f6c656e6774683a2075302c0a202020202020202077726974655f636f756e743a2075302c0a2020202020202020726561645f636f756e743a2075312c0a2020202020202020726561645f6c656e6774683a20286c696e656172206e207531207531290a202020207d290a0a28646566696e652d726561642d6f6e6c792028636f73745f6c6f6f6b75705f7661726961626c655f646570746820286e2075696e7429290a202020202872756e74696d6520286c696e656172206e2075313030302075313030302929290a0a28646566696e652d726561642d6f6e6c792028636f73745f6c6f6f6b75705f7661726961626c655f73697a6520286e2075696e7429290a202020202872756e74696d6520286c696e656172206e2075313030302075302929290a0a28646566696e652d726561642d6f6e6c792028636f73745f6c6f6f6b75705f66756e6374696f6e20286e2075696e7429290a202020202872756e74696d6520753130303029290a0a28646566696e652d726561642d6f6e6c792028636f73745f62696e645f6e616d6520286e2075696e7429290a202020202872756e74696d6520753130303029290a0a28646566696e652d726561642d6f6e6c792028636f73745f696e6e65725f747970655f636865636b5f636f737420286e2075696e7429290a202020202872756e74696d6520286c696e656172206e2075313030302075313030302929290a0a28646566696e652d726561642d6f6e6c792028636f73745f757365725f66756e6374696f6e5f6170706c69636174696f6e20286e2075696e7429290a202020202872756e74696d6520286c696e656172206e2075313030302075313030302929290a0a28646566696e652d726561642d6f6e6c792028636f73745f6c657420286e2075696e7429290a202020202872756e74696d6520286c696e656172206e2075313030302075313030302929290a0a28646566696e652d726561642d6f6e6c792028636f73745f696620286e2075696e7429290a202020202872756e74696d6520753130303029290a0a28646566696e652d726561642d6f6e6c792028636f73745f6173736572747320286e2075696e7429290a202020202872756e74696d6520753130303029290a0a28646566696e652d726561642d6f6e6c792028636f73745f6d617020286e2075696e7429290a202020202872756e74696d6520286c696e656172206e2075313030302075313030302929290a0a28646566696e652d726561642d6f6e6c792028636f73745f66696c74657220286e2075696e7429290a202020202872756e74696d6520753130303029290a0a28646566696e652d726561642d6f6e6c792028636f73745f6c656e20286e2075696e7429290a202020202872756e74696d6520753130303029290a0a28646566696e652d726561642d6f6e6c792028636f73745f656c656d656e745f617420286e2075696e7429290a202020202872756e74696d6520753130303029290a0a28646566696e652d726561642d6f6e6c792028636f73745f696e6465785f6f6620286e2075696e7429290a202020202872756e74696d6520286c696e656172206e2075313030302075313030302929290a0a28646566696e652d726561642d6f6e6c792028636f73745f666f6c6420286e2075696e7429290a202020202872756e74696d6520753130303029290a0a28646566696e652d726561642d6f6e6c792028636f73745f6c6973745f636f6e7320286e2075696e7429290a202020202872756e74696d6520286c696e656172206e2075313030302075313030302929290a0a28646566696e652d726561642d6f6e6c792028636f73745f747970655f70617273655f7374657020286e2075696e7429290a202020202872756e74696d6520753130303029290a0a28646566696e652d726561642d6f6e6c792028636f73745f646174615f686173685f636f737420286e2075696e7429290a202020202872756e74696d6520286c696e656172206e2075313030302075313030302929290a0a28646566696e652d726561642d6f6e6c792028636f73745f7475706c655f67657420286e2075696e7429290a202020202872756e74696d6520286e6c6f676e206e2075313030302075313030302929290a0a28646566696e652d726561642d6f6e6c792028636f73745f7475706c655f6d6572676520286e2075696e7429290a202020202872756e74696d6520286c696e656172206e2075313030302075313030302929290a0a28646566696e652d726561642d6f6e6c792028636f73745f7475706c655f636f6e7320286e2075696e7429290a202020202872756e74696d6520286e6c6f676e206e2075313030302075313030302929290a0a28646566696e652d726561642d6f6e6c792028636f73745f61646420286e2075696e7429290a202020202872756e74696d6520286c696e656172206e2075313030302075313030302929290a0a28646566696e652d726561642d6f6e6c792028636f73745f73756220286e2075696e7429290a202020202872756e74696d6520286c696e656172206e2075313030302075313030302929290a0a28646566696e652d726561642d6f6e6c792028636f73745f6d756c20286e2075696e7429290a202020202872756e74696d6520286c696e656172206e2075313030302075313030302929290a0a28646566696e652d726561642d6f6e6c792028636f73745f64697620286e2075696e7429290a202020202872756e74696d6520286c696e656172206e2075313030302075313030302929290a0a28646566696e652d726561642d6f6e6c792028636f73745f67657120286e2075696e7429290a202020202872756e74696d6520753130303029290a0a28646566696e652d726561642d6f6e6c792028636f73745f6c657120286e2075696e7429290a202020202872756e74696d6520753130303029290a0a28646566696e652d726561642d6f6e6c792028636f73745f6c6520286e2075696e7429290a202020202872756e74696d6520753130303029290a0a28646566696e652d726561642d6f6e6c792028636f73745f67652020286e2075696e7429290a202020202872756e74696d6520753130303029290a0a28646566696e652d726561642d6f6e6c792028636f73745f696e745f6361737420286e2075696e7429290a202020202872756e74696d6520753130303029290a0a28646566696e652d726561642d6f6e6c792028636f73745f6d6f6420286e2075696e7429290a202020202872756e74696d6520753130303029290a0a28646566696e652d726561642d6f6e6c792028636f73745f706f7720286e2075696e7429290a202020202872756e74696d6520753130303029290a0a28646566696e652d726561642d6f6e6c792028636f73745f737172746920286e2075696e7429290a202020202872756e74696d6520753130303029290a0a28646566696e652d726561642d6f6e6c792028636f73745f6c6f673220286e2075696e7429290a202020202872756e74696d6520753130303029290a0a28646566696e652d726561642d6f6e6c792028636f73745f786f7220286e2075696e7429290a202020202872756e74696d6520753130303029290a0a28646566696e652d726561642d6f6e6c792028636f73745f6e6f7420286e2075696e7429290a202020202872756e74696d6520753130303029290a0a28646566696e652d726561642d6f6e6c792028636f73745f657120286e2075696e7429290a202020202872756e74696d6520286c696e656172206e2075313030302075313030302929290a0a28646566696e652d726561642d6f6e6c792028636f73745f626567696e20286e2075696e7429290a202020202872756e74696d6520753130303029290a0a28646566696e652d726561642d6f6e6c792028636f73745f6861736831363020286e2075696e7429290a202020202872756e74696d6520286c696e656172206e2075313030302075313030302929290a0a28646566696e652d726561642d6f6e6c792028636f73745f73686132353620286e2075696e7429290a202020202872756e74696d6520286c696e656172206e2075313030302075313030302929290a0a28646566696e652d726561642d6f6e6c792028636f73745f73686135313220286e2075696e7429290a202020202872756e74696d6520286c696e656172206e2075313030302075313030302929290a0a28646566696e652d726561642d6f6e6c792028636f73745f7368613531327432353620286e2075696e7429290a202020202872756e74696d6520286c696e656172206e2075313030302075313030302929290a0a28646566696e652d726561642d6f6e6c792028636f73745f6b656363616b32353620286e2075696e7429290a202020202872756e74696d6520286c696e656172206e2075313030302075313030302929290a0a28646566696e652d726561642d6f6e6c792028636f73745f736563703235366b317265636f76657220286e2075696e7429290a202020202872756e74696d6520753130303029290a0a28646566696e652d726561642d6f6e6c792028636f73745f736563703235366b3176657269667920286e2075696e7429290a202020202872756e74696d6520753130303029290a0a28646566696e652d726561642d6f6e6c792028636f73745f7072696e7420286e2075696e7429290a202020202872756e74696d6520286c696e656172206e2075313030302075313030302929290a0a28646566696e652d726561642d6f6e6c792028636f73745f736f6d655f636f6e7320286e2075696e7429290a202020202872756e74696d6520753130303029290a0a28646566696e652d726561642d6f6e6c792028636f73745f6f6b5f636f6e7320286e2075696e7429290a202020202872756e74696d6520753130303029290a0a28646566696e652d726561642d6f6e6c792028636f73745f6572725f636f6e7320286e2075696e7429290a202020202872756e74696d6520753130303029290a0a28646566696e652d726561642d6f6e6c792028636f73745f64656661756c745f746f20286e2075696e7429290a202020202872756e74696d6520753130303029290a0a28646566696e652d726561642d6f6e6c792028636f73745f756e777261705f72657420286e2075696e7429290a202020202872756e74696d6520753130303029290a0a28646566696e652d726561642d6f6e6c792028636f73745f756e777261705f6572725f6f725f72657420286e2075696e7429290a202020202872756e74696d6520753130303029290a0a28646566696e652d726561642d6f6e6c792028636f73745f69735f6f6b617920286e2075696e7429290a202020202872756e74696d6520753130303029290a0a28646566696e652d726561642d6f6e6c792028636f73745f69735f6e6f6e6520286e2075696e7429290a202020202872756e74696d6520753130303029290a0a28646566696e652d726561642d6f6e6c792028636f73745f69735f65727220286e2075696e7429290a202020202872756e74696d6520753130303029290a0a28646566696e652d726561642d6f6e6c792028636f73745f69735f736f6d6520286e2075696e7429290a202020202872756e74696d6520753130303029290a0a28646566696e652d726561642d6f6e6c792028636f73745f756e7772617020286e2075696e7429290a202020202872756e74696d6520753130303029290a0a28646566696e652d726561642d6f6e6c792028636f73745f756e777261705f65727220286e2075696e7429290a202020202872756e74696d6520753130303029290a0a28646566696e652d726561642d6f6e6c792028636f73745f7472795f72657420286e2075696e7429290a202020202872756e74696d6520753130303029290a0a28646566696e652d726561642d6f6e6c792028636f73745f6d6174636820286e2075696e7429290a202020202872756e74696d6520753130303029290a0a28646566696e652d726561642d6f6e6c792028636f73745f6f7220286e2075696e7429290a202020202872756e74696d6520286c696e656172206e2075313030302075313030302929290a0a28646566696e652d726561642d6f6e6c792028636f73745f616e6420286e2075696e7429290a202020202872756e74696d6520286c696e656172206e2075313030302075313030302929290a0a28646566696e652d726561642d6f6e6c792028636f73745f617070656e6420286e2075696e7429290a202020202872756e74696d6520286c696e656172206e2075313030302075313030302929290a0a28646566696e652d726561642d6f6e6c792028636f73745f636f6e63617420286e2075696e7429290a202020202872756e74696d6520286c696e656172206e2075313030302075313030302929290a0a28646566696e652d726561642d6f6e6c792028636f73745f61735f6d61785f6c656e20286e2075696e7429290a202020202872756e74696d6520753130303029290a0a28646566696e652d726561642d6f6e6c792028636f73745f636f6e74726163745f63616c6c20286e2075696e7429290a202020202872756e74696d6520753130303029290a0a28646566696e652d726561642d6f6e6c792028636f73745f636f6e74726163745f6f6620286e2075696e7429290a202020202872756e74696d6520753130303029290a0a28646566696e652d726561642d6f6e6c792028636f73745f7072696e636970616c5f6f6620286e2075696e7429290a202020202872756e74696d6520753130303029290a0a28646566696e652d726561642d6f6e6c792028636f73745f61745f626c6f636b20286e2075696e7429290a202020207b0a202020202020202072756e74696d653a2075313030302c0a202020202020202077726974655f6c656e6774683a2075302c0a202020202020202077726974655f636f756e743a2075302c0a2020202020202020726561645f636f756e743a2075312c0a2020202020202020726561645f6c656e6774683a2075310a202020207d290a0a28646566696e652d726561642d6f6e6c792028636f73745f6c6f61645f636f6e747261637420286e2075696e7429290a202020207b0a202020202020202072756e74696d653a20286c696e656172206e207531303030207531303030292c0a202020202020202077726974655f6c656e6774683a2075302c0a202020202020202077726974655f636f756e743a2075302c0a20202020202020203b3b2073657420746f20332062656361757365206f6620746865206173736f636961746564206d65746164617461206c6f6164730a2020202020202020726561645f636f756e743a2075332c0a2020202020202020726561645f6c656e6774683a20286c696e656172206e207531207531290a202020207d290a0a28646566696e652d726561642d6f6e6c792028636f73745f6372656174655f6d617020286e2075696e7429290a202020207b0a202020202020202072756e74696d653a20286c696e656172206e207531303030207531303030292c0a202020202020202077726974655f6c656e6774683a20286c696e656172206e207531207531292c0a202020202020202077726974655f636f756e743a2075312c0a2020202020202020726561645f636f756e743a2075302c0a2020202020202020726561645f6c656e6774683a2075300a202020207d290a0a28646566696e652d726561642d6f6e6c792028636f73745f6372656174655f76617220286e2075696e7429290a202020207b0a202020202020202072756e74696d653a20286c696e656172206e207531303030207531303030292c0a202020202020202077726974655f6c656e6774683a20286c696e656172206e207531207531292c0a202020202020202077726974655f636f756e743a2075322c0a2020202020202020726561645f636f756e743a2075302c0a2020202020202020726561645f6c656e6774683a2075300a202020207d290a0a28646566696e652d726561642d6f6e6c792028636f73745f6372656174655f6e667420286e2075696e7429290a202020207b0a202020202020202072756e74696d653a20286c696e656172206e207531303030207531303030292c0a202020202020202077726974655f6c656e6774683a20286c696e656172206e207531207531292c0a202020202020202077726974655f636f756e743a2075312c0a2020202020202020726561645f636f756e743a2075302c0a2020202020202020726561645f6c656e6774683a2075300a202020207d290a0a28646566696e652d726561642d6f6e6c792028636f73745f6372656174655f667420286e2075696e7429290a202020207b0a202020202020202072756e74696d653a2075313030302c0a202020202020202077726974655f6c656e6774683a2075312c0a202020202020202077726974655f636f756e743a2075322c0a2020202020202020726561645f636f756e743a2075302c0a2020202020202020726561645f6c656e6774683a2075300a202020207d290a0a28646566696e652d726561642d6f6e6c792028636f73745f66657463685f656e74727920286e2075696e7429290a202020207b0a202020202020202072756e74696d653a20286c696e656172206e207531303030207531303030292c0a202020202020202077726974655f6c656e6774683a2075302c0a202020202020202077726974655f636f756e743a2075302c0a2020202020202020726561645f636f756e743a2075312c0a2020202020202020726561645f6c656e6774683a20286c696e656172206e207531207531290a202020207d290a0a28646566696e652d726561642d6f6e6c792028636f73745f7365745f656e74727920286e2075696e7429290a202020207b0a202020202020202072756e74696d653a20286c696e656172206e207531303030207531303030292c0a202020202020202077726974655f6c656e6774683a20286c696e656172206e207531207531292c0a202020202020202077726974655f636f756e743a2075312c0a2020202020202020726561645f636f756e743a2075312c0a2020202020202020726561645f6c656e6774683a2075300a202020207d290a0a28646566696e652d726561642d6f6e6c792028636f73745f66657463685f76617220286e2075696e7429290a202020207b0a202020202020202072756e74696d653a20286c696e656172206e207531303030207531303030292c0a202020202020202077726974655f6c656e6774683a2075302c0a202020202020202077726974655f636f756e743a2075302c0a2020202020202020726561645f636f756e743a2075312c0a2020202020202020726561645f6c656e6774683a20286c696e656172206e207531207531290a202020207d290a0a28646566696e652d726561642d6f6e6c792028636f73745f7365745f76617220286e2075696e7429290a202020207b0a202020202020202072756e74696d653a20286c696e656172206e207531303030207531303030292c0a202020202020202077726974655f6c656e6774683a20286c696e656172206e207531207531292c0a202020202020202077726974655f636f756e743a2075312c0a2020202020202020726561645f636f756e743a2075312c0a2020202020202020726561645f6c656e6774683a2075300a202020207d290a0a28646566696e652d726561642d6f6e6c792028636f73745f636f6e74726163745f73746f7261676520286e2075696e7429290a202020207b0a202020202020202072756e74696d653a20286c696e656172206e207531303030207531303030292c0a202020202020202077726974655f6c656e6774683a20286c696e656172206e207531207531292c0a202020202020202077726974655f636f756e743a2075312c0a2020202020202020726561645f636f756e743a2075302c0a2020202020202020726561645f6c656e6774683a2075300a202020207d290a0a28646566696e652d726561642d6f6e6c792028636f73745f626c6f636b5f696e666f20286e2075696e7429290a202020207b0a202020202020202072756e74696d653a2075313030302c0a202020202020202077726974655f6c656e6774683a2075302c0a202020202020202077726974655f636f756e743a2075302c0a2020202020202020726561645f636f756e743a2075312c0a2020202020202020726561645f6c656e6774683a2075310a202020207d290a0a28646566696e652d726561642d6f6e6c792028636f73745f7374785f62616c616e636520286e2075696e7429290a202020207b0a202020202020202072756e74696d653a2075313030302c0a202020202020202077726974655f6c656e6774683a2075302c0a202020202020202077726974655f636f756e743a2075302c0a2020202020202020726561645f636f756e743a2075312c0a2020202020202020726561645f6c656e6774683a2075310a202020207d290a0a28646566696e652d726561642d6f6e6c792028636f73745f7374785f7472616e7366657220286e2075696e7429290a202020207b0a202020202020202072756e74696d653a2075313030302c0a202020202020202077726974655f6c656e6774683a2075312c0a202020202020202077726974655f636f756e743a2075312c0a2020202020202020726561645f636f756e743a2075312c0a2020202020202020726561645f6c656e6774683a2075310a202020207d290a0a28646566696e652d726561642d6f6e6c792028636f73745f66745f6d696e7420286e2075696e7429290a202020207b0a202020202020202072756e74696d653a2075313030302c0a202020202020202077726974655f6c656e6774683a2075312c0a202020202020202077726974655f636f756e743a2075322c0a2020202020202020726561645f636f756e743a2075322c0a2020202020202020726561645f6c656e6774683a2075310a202020207d290a0a28646566696e652d726561642d6f6e6c792028636f73745f66745f7472616e7366657220286e2075696e7429290a202020207b0a202020202020202072756e74696d653a2075313030302c0a202020202020202077726974655f6c656e6774683a2075312c0a202020202020202077726974655f636f756e743a2075322c0a2020202020202020726561645f636f756e743a2075322c0a2020202020202020726561645f6c656e6774683a2075310a202020207d290a0a28646566696e652d726561642d6f6e6c792028636f73745f66745f62616c616e636520286e2075696e7429290a202020207b0a202020202020202072756e74696d653a2075313030302c0a202020202020202077726974655f6c656e6774683a2075302c0a202020202020202077726974655f636f756e743a2075302c0a2020202020202020726561645f636f756e743a2075312c0a2020202020202020726561645f6c656e6774683a2075310a202020207d290a0a28646566696e652d726561642d6f6e6c792028636f73745f6e66745f6d696e7420286e2075696e7429290a202020207b0a202020202020202072756e74696d653a20286c696e656172206e207531303030207531303030292c0a202020202020202077726974655f6c656e6774683a2075312c0a202020202020202077726974655f636f756e743a2075312c0a2020202020202020726561645f636f756e743a2075312c0a2020202020202020726561645f6c656e6774683a2075310a202020207d290a0a28646566696e652d726561642d6f6e6c792028636f73745f6e66745f7472616e7366657220286e2075696e7429290a202020207b0a202020202020202072756e74696d653a20286c696e656172206e207531303030207531303030292c0a202020202020202077726974655f6c656e6774683a2075312c0a202020202020202077726974655f636f756e743a2075312c0a2020202020202020726561645f636f756e743a2075312c0a2020202020202020726561645f6c656e6774683a2075310a202020207d290a0a28646566696e652d726561642d6f6e6c792028636f73745f6e66745f6f776e657220286e2075696e7429290a202020207b0a202020202020202072756e74696d653a20286c696e656172206e207531303030207531303030292c0a202020202020202077726974655f6c656e6774683a2075302c0a202020202020202077726974655f636f756e743a2075302c0a2020202020202020726561645f636f756e743a2075312c0a2020202020202020726561645f6c656e6774683a2075310a202020207d290a0a28646566696e652d726561642d6f6e6c792028636f73745f66745f6765745f737570706c7920286e2075696e7429290a202020207b0a202020202020202072756e74696d653a2075313030302c0a202020202020202077726974655f6c656e6774683a2075302c0a202020202020202077726974655f636f756e743a2075302c0a2020202020202020726561645f636f756e743a2075312c0a2020202020202020726561645f6c656e6774683a2075310a202020207d290a0a28646566696e652d726561642d6f6e6c792028636f73745f66745f6275726e20286e2075696e7429290a202020207b0a202020202020202072756e74696d653a2075313030302c0a202020202020202077726974655f6c656e6774683a2075312c0a202020202020202077726974655f636f756e743a2075322c0a2020202020202020726561645f636f756e743a2075322c0a2020202020202020726561645f6c656e6774683a2075310a202020207d290a0a28646566696e652d726561642d6f6e6c792028636f73745f6e66745f6275726e20286e2075696e7429290a202020207b0a202020202020202072756e74696d653a20286c696e656172206e207531303030207531303030292c0a202020202020202077726974655f6c656e6774683a2075312c0a202020202020202077726974655f636f756e743a2075312c0a2020202020202020726561645f636f756e743a2075312c0a2020202020202020726561645f6c656e6774683a2075310a202020207d290a0a28646566696e652d726561642d6f6e6c792028706f69736f6e5f6d6963726f626c6f636b20286e2075696e7429290a202020207b0a202020202020202072756e74696d653a2075313030302c0a202020202020202077726974655f6c656e6774683a2075312c0a202020202020202077726974655f636f756e743a2075312c0a2020202020202020726561645f636f756e743a2075312c200a2020202020202020726561645f6c656e6774683a2075310a202020207d290a", "status": "success", "tx_index": 2, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": {"maps": [], "epoch": "Epoch20", "functions": [{"args": [{"name": "n", "type": "uint128"}, {"name": "a", "type": "uint128"}, {"name": "b", "type": "uint128"}], "name": "linear", "access": "private", "outputs": {"type": "uint128"}}, {"args": [{"name": "n", "type": "uint128"}, {"name": "a", "type": "uint128"}, {"name": "b", "type": "uint128"}], "name": "logn", "access": "private", "outputs": {"type": "uint128"}}, {"args": [{"name": "n", "type": "uint128"}, {"name": "a", "type": "uint128"}, {"name": "b", "type": "uint128"}], "name": "nlogn", "access": "private", "outputs": {"type": "uint128"}}, {"args": [{"name": "r", "type": "uint128"}], "name": "runtime", "access": "private", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_add", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_analysis_bind_name", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_analysis_check_let", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_analysis_check_tuple_cons", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_analysis_check_tuple_get", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_analysis_check_tuple_merge", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_analysis_fetch_contract_entry", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_analysis_get_function_entry", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_analysis_iterable_func", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_analysis_list_items_check", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_analysis_lookup_function", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_analysis_lookup_function_types", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_analysis_lookup_variable_const", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_analysis_lookup_variable_depth", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_analysis_option_check", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_analysis_option_cons", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_analysis_storage", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_analysis_tuple_items_check", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_analysis_type_annotate", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_analysis_type_check", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_analysis_type_lookup", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_analysis_use_trait_entry", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_analysis_visit", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_and", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_append", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_as_max_len", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_asserts", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_ast_cycle_detection", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_ast_parse", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_at_block", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_begin", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_bind_name", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_block_info", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_concat", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_contract_call", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_contract_of", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_contract_storage", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_create_ft", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_create_map", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_create_nft", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_create_var", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_data_hash_cost", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_default_to", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_div", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_element_at", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_eq", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_err_cons", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_fetch_entry", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_fetch_var", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_filter", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_fold", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_ft_balance", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_ft_burn", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_ft_get_supply", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_ft_mint", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_ft_transfer", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_ge", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_geq", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_hash160", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_if", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_index_of", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_inner_type_check_cost", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_int_cast", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_is_err", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_is_none", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_is_okay", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_is_some", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_keccak256", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_le", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_len", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_leq", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_let", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_list_cons", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_load_contract", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_log2", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_lookup_function", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_lookup_variable_depth", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_lookup_variable_size", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_map", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_match", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_mod", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_mul", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_nft_burn", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_nft_mint", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_nft_owner", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_nft_transfer", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_not", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_ok_cons", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_or", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_pow", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_principal_of", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_print", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_secp256k1recover", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_secp256k1verify", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_set_entry", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_set_var", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_sha256", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_sha512", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_sha512t256", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_some_cons", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_sqrti", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_stx_balance", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_stx_transfer", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_sub", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_try_ret", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_tuple_cons", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_tuple_get", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_tuple_merge", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_type_parse_step", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_unwrap", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_unwrap_err", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_unwrap_err_or_ret", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_unwrap_ret", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_user_function_application", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_xor", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "poison_microblock", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}], "variables": [], "clarity_version": "Clarity1", "fungible_tokens": [], "non_fungible_tokens": []}, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}, {"txid": "0xd3125fcb5e797969d908c5b855e12f36e28087bfb339d88e329d5ab06fc5e36b", "raw_tx": "0x80000000000400000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030200000000010b636f73742d766f74696e6700002cff3b3b20546865202e636f73742d766f74696e6720636f6e74726163740a0a3b3b206572726f7220636f6465730a28646566696e652d636f6e7374616e74204552525f4e4f5f535543485f50524f504f53414c202020202020202031290a28646566696e652d636f6e7374616e74204552525f414d4f554e545f4e4f545f504f534954495645202020202032290a28646566696e652d636f6e7374616e74204552525f50524f504f53414c5f45585049524544202020202020202033290a28646566696e652d636f6e7374616e74204552525f564f54455f454e444544202020202020202020202020202034290a28646566696e652d636f6e7374616e74204552525f494e53554646494349454e545f46554e445320202020202035290a28646566696e652d636f6e7374616e74204552525f46545f5452414e534645522020202020202020202020202036290a28646566696e652d636f6e7374616e74204552525f5354585f5452414e5346455220202020202020202020202037290a28646566696e652d636f6e7374616e74204552525f564f54455f4e4f545f434f4e4649524d454420202020202038290a28646566696e652d636f6e7374616e74204552525f414c52454144595f5645544f45442020202020202020202039290a28646566696e652d636f6e7374616e74204552525f4e4f545f4c4153545f4d494e4552202020202020202020203130290a28646566696e652d636f6e7374616e74204552525f494e53554646494349454e545f564f5445532020202020203131290a28646566696e652d636f6e7374616e74204552525f5645544f5f504552494f445f4f56455220202020202020203132290a28646566696e652d636f6e7374616e74204552525f5645544f5f504552494f445f4e4f545f4f564552202020203133290a28646566696e652d636f6e7374616e74204552525f50524f504f53414c5f5645544f45442020202020202020203134290a28646566696e652d636f6e7374616e74204552525f50524f504f53414c5f434f4e4649524d45442020202020203135290a28646566696e652d636f6e7374616e74204552525f4645544348494e475f424c4f434b5f494e464f20202020203136290a28646566696e652d636f6e7374616e74204552525f544f4f5f4d414e595f434f4e4649524d45442020202020203137290a28646566696e652d636f6e7374616e74204552525f554e524541434841424c4520202020202020202020202020323535290a0a28646566696e652d636f6e7374616e7420564f54455f4c454e475448207532303136290a28646566696e652d636f6e7374616e74205645544f5f4c454e47544820753530290a28646566696e652d636f6e7374616e742052455155495245445f50455243454e545f5354585f564f544520753230290a28646566696e652d636f6e7374616e742052455155495245445f5645544f455320753235290a0a28646566696e652d636f6e7374616e74204d41585f434f4e4649524d45445f5045525f424c4f434b20753130290a0a3b3b20636f737420766f746520746f6b656e0a28646566696e652d66756e6769626c652d746f6b656e20636f73742d766f74652d746f6b656e290a0a3b3b2070726f706f73616c20636f756e746572730a28646566696e652d646174612d7661722070726f706f73616c2d636f756e742075696e74207530290a28646566696e652d646174612d76617220636f6e6669726d65642d70726f706f73616c2d636f756e742075696e74207530290a0a3b3b20636f73742d66756e6374696f6e2070726f706f73616c730a28646566696e652d6d61702070726f706f73616c730a202020207b2070726f706f73616c2d69643a2075696e74207d0a202020207b0a2020202020202020636f73742d66756e6374696f6e2d636f6e74726163743a207072696e636970616c2c0a2020202020202020636f73742d66756e6374696f6e2d6e616d653a2028737472696e672d617363696920313238292c0a202020202020202066756e6374696f6e2d636f6e74726163743a207072696e636970616c2c0a202020202020202066756e6374696f6e2d6e616d653a2028737472696e672d617363696920313238292c0a202020202020202065787069726174696f6e2d626c6f636b2d6865696768743a2075696e740a202020207d0a290a0a3b3b20766f746520636f6e6669726d656420636f73742d66756e6374696f6e2070726f706f73616c730a28646566696e652d6d617020766f74652d636f6e6669726d65642d70726f706f73616c730a202020207b2070726f706f73616c2d69643a2075696e74207d0a202020207b2065787069726174696f6e2d626c6f636b2d6865696768743a2075696e74207d0a290a0a3b3b206d696e657220636f6e6669726d656420636f73742d66756e6374696f6e2070726f706f73616c730a28646566696e652d6d617020636f6e6669726d65642d70726f706f73616c730a2020207b20636f6e6669726d65642d69643a2075696e74207d0a2020207b0a2020202020202066756e6374696f6e2d636f6e74726163743a207072696e636970616c2c0a2020202020202066756e6374696f6e2d6e616d653a2028737472696e672d617363696920313238292c0a20202020202020636f73742d66756e6374696f6e2d636f6e74726163743a207072696e636970616c2c0a20202020202020636f73742d66756e6374696f6e2d6e616d653a2028737472696e672d617363696920313238292c0a20202020202020636f6e6669726d65642d6865696768743a2075696e740a202020207d0a290a0a3b3b206c696d697420746865206e756d626572206f66206d696e657220636f6e6669726d65642d70726f706f73616c730a3b3b202020746861742063616e20626520696e74726f64756365642070657220626c6f636b0a3b3b20747261636b207468652023206f662070726f706f73616c7320636f6e6669726d6564206174206120676976656e20626c6f636b2d6865696768740a28646566696e652d6d617020636f6e6669726d65642d636f756e742d61742d626c6f636b2075696e742075696e74290a0a28646566696e652d6d61702070726f706f73616c2d636f6e6669726d65642d69640a202020207b2070726f706f73616c2d69643a2075696e74207d0a202020207b20636f6e6669726d65642d69643a2075696e74207d0a290a0a28646566696e652d6d61702066756e6374696f6e732d746f2d636f6e6669726d65642d6964730a2020207b2066756e6374696f6e2d636f6e74726163743a207072696e636970616c2c2066756e6374696f6e2d6e616d653a2028737472696e672d61736369692031323829207d0a2020207b2070726f706f73616c2d69643a2075696e74207d0a290a0a3b3b20636f73742d66756e6374696f6e2070726f706f73616c20766f7465730a28646566696e652d6d61702070726f706f73616c2d766f746573207b2070726f706f73616c2d69643a2075696e74207d207b20766f7465733a2075696e74207d290a0a3b3b20636f73742d66756e6374696f6e2070726f706f73616c207665746f730a28646566696e652d6d61702070726f706f73616c2d7665746f73207b2070726f706f73616c2d69643a2075696e74207d207b207665746f733a2075696e74207d290a0a3b3b2070726f706f73616c207665746f732070657220626c6f636b0a28646566696e652d6d6170206578657263697365642d7665746f207b2070726f706f73616c2d69643a2075696e742c207665746f2d6865696768743a2075696e74207d207b207665746f65643a20626f6f6c207d290a0a3b3b20746865206e756d626572206f6620766f7465732061207370656369666963207072696e636970616c2068617320636f6d6d697474656420746f20612070726f706f73616c0a28646566696e652d6d6170207072696e636970616c2d70726f706f73616c2d766f746573207b20616464726573733a207072696e636970616c2c2070726f706f73616c2d69643a2075696e74207d207b20766f7465733a2075696e74207d290a0a3b3b2067657474657220666f7220636f73742d66756e6374696f6e2070726f706f73616c730a28646566696e652d726561642d6f6e6c7920286765742d70726f706f73616c202870726f706f73616c2d69642075696e7429290a20202020286d61702d6765743f2070726f706f73616c73207b2070726f706f73616c2d69643a2070726f706f73616c2d6964207d29290a0a3b3b2067657474657220666f7220636f6e6669726d656420636f73742d66756e6374696f6e2070726f706f73616c730a28646566696e652d726561642d6f6e6c7920286765742d636f6e6669726d65642d70726f706f73616c2028636f6e6669726d65642d69642075696e7429290a20202020286d61702d6765743f20636f6e6669726d65642d70726f706f73616c73207b20636f6e6669726d65642d69643a20636f6e6669726d65642d6964207d29290a0a3b3b2067657474657220666f7220636f73742d66756e6374696f6e2070726f706f73616c20766f7465730a28646566696e652d726561642d6f6e6c7920286765742d70726f706f73616c2d766f746573202870726f706f73616c2d69642075696e7429290a202020202867657420766f74657320286d61702d6765743f2070726f706f73616c2d766f746573207b2070726f706f73616c2d69643a2070726f706f73616c2d6964207d2929290a0a3b3b2067657474657220666f7220636f73742d66756e6374696f6e2070726f706f73616c207665746f730a28646566696e652d726561642d6f6e6c7920286765742d70726f706f73616c2d7665746f73202870726f706f73616c2d69642075696e7429290a2020202028676574207665746f7320286d61702d6765743f2070726f706f73616c2d7665746f73207b2070726f706f73616c2d69643a2070726f706f73616c2d6964207d2929290a0a3b3b2067657474657220666f7220636f73742d66756e6374696f6e2070726f706f73616c20766f7465732c20666f72207370656369666963207072696e636970616c0a28646566696e652d726561642d6f6e6c7920286765742d7072696e636970616c2d766f746573202861646472657373207072696e636970616c29202870726f706f73616c2d69642075696e7429290a202020202867657420766f74657320286d61702d6765743f207072696e636970616c2d70726f706f73616c2d766f746573207b20616464726573733a20616464726573732c2070726f706f73616c2d69643a2070726f706f73616c2d6964207d2929290a0a3b3b2050726f706f736520636f73742d66756e6374696f6e730a28646566696e652d7075626c696320287375626d69742d70726f706f73616c202866756e6374696f6e2d636f6e7472616374207072696e636970616c290a20202020202020202020202020202020202020202020202020202020202020202866756e6374696f6e2d6e616d652028737472696e672d61736369692031323829290a202020202020202020202020202020202020202020202020202020202020202028636f73742d66756e6374696f6e2d636f6e7472616374207072696e636970616c290a202020202020202020202020202020202020202020202020202020202020202028636f73742d66756e6374696f6e2d6e616d652028737472696e672d6173636969203132382929290a2020202028626567696e0a2020202020202020286d61702d696e736572742070726f706f73616c73207b2070726f706f73616c2d69643a20287661722d6765742070726f706f73616c2d636f756e7429207d0a2020202020202020202020202020202020202020202020202020202020207b20636f73742d66756e6374696f6e2d636f6e74726163743a20636f73742d66756e6374696f6e2d636f6e74726163742c0a2020202020202020202020202020202020202020202020202020202020202020636f73742d66756e6374696f6e2d6e616d653a20636f73742d66756e6374696f6e2d6e616d652c0a202020202020202020202020202020202020202020202020202020202020202066756e6374696f6e2d636f6e74726163743a2066756e6374696f6e2d636f6e74726163742c0a202020202020202020202020202020202020202020202020202020202020202066756e6374696f6e2d6e616d653a2066756e6374696f6e2d6e616d652c0a202020202020202020202020202020202020202020202020202020202020202065787069726174696f6e2d626c6f636b2d6865696768743a20282b20626c6f636b2d68656967687420564f54455f4c454e47544829207d290a2020202020202020286d61702d696e736572742070726f706f73616c2d766f746573207b2070726f706f73616c2d69643a20287661722d6765742070726f706f73616c2d636f756e7429207d207b20766f7465733a207530207d290a2020202020202020287661722d7365742070726f706f73616c2d636f756e7420282b20287661722d6765742070726f706f73616c2d636f756e742920753129290a2020202020202020286f6b20282d20287661722d6765742070726f706f73616c2d636f756e7429207531292929290a0a3b3b20566f7465206f6e20612070726f706f73616c0a28646566696e652d7075626c69632028766f74652d70726f706f73616c202870726f706f73616c2d69642075696e74292028616d6f756e742075696e7429290a20202020286c657420280a20202020202020202865787069726174696f6e2d626c6f636b2d68656967687420286765742065787069726174696f6e2d626c6f636b2d6865696768742028756e777261702120286d61702d6765743f2070726f706f73616c73207b0a20202020202020202020202070726f706f73616c2d69643a2070726f706f73616c2d6964207d292028657272204552525f4e4f5f535543485f50524f504f53414c292929290a2020202020202020286375722d766f746573202864656661756c742d746f207530202867657420766f74657320286d61702d6765743f2070726f706f73616c2d766f746573207b2070726f706f73616c2d69643a2070726f706f73616c2d6964207d292929290a2020202020202020286375722d7072696e636970616c2d766f746573202864656661756c742d746f207530202867657420766f74657320286d61702d6765743f207072696e636970616c2d70726f706f73616c2d766f746573207b0a202020202020202020202020616464726573733a2074782d73656e6465722c0a20202020202020202020202070726f706f73616c2d69643a2070726f706f73616c2d6964207d29292929290a0a202020203b3b206120766f7465206d7573742068617665206120706f73697469766520616d6f756e740a2020202028617373657274732120283e20616d6f756e74207530292028657272204552525f414d4f554e545f4e4f545f504f53495449564529290a0a202020203b3b2074686520766f7465206d757374206f63637572206265666f7265207468652065787069726174696f6e0a2020202028617373657274732120283c20626c6f636b2d6865696768742065787069726174696f6e2d626c6f636b2d686569676874292028657272204552525f50524f504f53414c5f4558504952454429290a0a202020203b3b207468652070726f706f73616c206d757374206e6f7420616c726561647920626520766f74657220636f6e6669726d65640a20202020286173736572747321202869732d6e6f6e6520286d61702d6765743f20766f74652d636f6e6669726d65642d70726f706f73616c73207b2070726f706f73616c2d69643a2070726f706f73616c2d6964207d29290a202020202020202028657272204552525f564f54455f454e44454429290a0a2020202028756e777261702120287374782d7472616e736665723f20616d6f756e742074782d73656e646572202861732d636f6e74726163742074782d73656e64657229292028657272204552525f494e53554646494349454e545f46554e445329290a2020202028756e7772617021202866742d6d696e743f20636f73742d766f74652d746f6b656e20616d6f756e742074782d73656e646572292028657272204552525f554e524541434841424c4529290a0a20202020286d61702d7365742070726f706f73616c2d766f746573207b2070726f706f73616c2d69643a2070726f706f73616c2d6964207d207b20766f7465733a20282b20616d6f756e74206375722d766f74657329207d290a20202020286d61702d736574207072696e636970616c2d70726f706f73616c2d766f746573207b20616464726573733a2074782d73656e6465722c2070726f706f73616c2d69643a2070726f706f73616c2d69647d0a2020202020202020202020202020202020202020202020202020202020202020202020207b20766f7465733a20282b20616d6f756e74206375722d7072696e636970616c2d766f746573297d290a20202020286f6b20747275652929290a0a3b3b20576974686472617720766f7465730a28646566696e652d7075626c6963202877697468647261772d766f746573202870726f706f73616c2d69642075696e74292028616d6f756e742075696e7429290a20202020286c657420280a2020202020202020286375722d766f746573202864656661756c742d746f207530202867657420766f74657320286d61702d6765743f2070726f706f73616c2d766f746573207b2070726f706f73616c2d69643a2070726f706f73616c2d6964207d292929290a2020202020202020286375722d7072696e636970616c2d766f746573202864656661756c742d746f207530202867657420766f74657320286d61702d6765743f207072696e636970616c2d70726f706f73616c2d766f746573207b0a202020202020202020202020616464726573733a2074782d73656e6465722c0a20202020202020202020202070726f706f73616c2d69643a2070726f706f73616c2d6964207d292929290a20202020202020202873656e6465722074782d73656e64657229290a0a2020202028617373657274732120283e20616d6f756e74207530292028657272204552525f414d4f554e545f4e4f545f504f53495449564529290a2020202028617373657274732120283e3d206375722d7072696e636970616c2d766f74657320616d6f756e74292028657272204552525f494e53554646494349454e545f46554e445329290a0a2020202028756e7772617021202861732d636f6e747261637420287374782d7472616e736665723f20616d6f756e742074782d73656e6465722073656e64657229292028657272204552525f5354585f5452414e5346455229290a2020202028756e7772617021202861732d636f6e7472616374202866742d7472616e736665723f20636f73742d766f74652d746f6b656e20616d6f756e742073656e6465722074782d73656e64657229290a202020202020202028657272204552525f46545f5452414e5346455229290a0a20202020286d61702d7365742070726f706f73616c2d766f746573207b2070726f706f73616c2d69643a2070726f706f73616c2d6964207d207b20766f7465733a20282d206375722d766f74657320616d6f756e7429207d290a20202020286d61702d736574207072696e636970616c2d70726f706f73616c2d766f746573207b20616464726573733a2074782d73656e6465722c2070726f706f73616c2d69643a2070726f706f73616c2d6964207d0a202020202020202020202020202020202020202020202020202020202020202020202020202020207b20766f7465733a20282d206375722d7072696e636970616c2d766f74657320616d6f756e7429207d290a20202020286f6b20747275652929290a0a3b3b204d696e6572207665746f0a28646566696e652d7075626c696320287665746f202870726f706f73616c2d69642075696e7429290a20202020286c657420280a2020202020202020286375722d7665746f73202864656661756c742d746f2075302028676574207665746f7320286d61702d6765743f2070726f706f73616c2d7665746f73207b2070726f706f73616c2d69643a2070726f706f73616c2d6964207d292929290a20202020202020202865787069726174696f6e2d626c6f636b2d68656967687420286765742065787069726174696f6e2d626c6f636b2d6865696768742028756e77726170210a202020202020202020202020286d61702d6765743f20766f74652d636f6e6669726d65642d70726f706f73616c73207b2070726f706f73616c2d69643a2070726f706f73616c2d6964207d290a2020202020202020202020202020202028657272204552525f564f54455f4e4f545f434f4e4649524d4544292929290a2020202020202020287665746f6564202864656661756c742d746f2066616c73652028676574207665746f656420286d61702d6765743f206578657263697365642d7665746f207b2070726f706f73616c2d69643a2070726f706f73616c2d69642c0a202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020207665746f2d6865696768743a20626c6f636b2d686569676874207d292929290a2020202020202020286c6173742d6d696e65722028756e777261702120286765742d626c6f636b2d696e666f3f206d696e65722d6164647265737320282d20626c6f636b2d68656967687420753129290a20202020202020202020202028657272204552525f4645544348494e475f424c4f434b5f494e464f292929290a0a202020203b3b2061206d696e65722063616e206f6e6c79207665746f206f6e63652070657220626c6f636b0a2020202028617373657274732120286e6f74207665746f6564292028657272204552525f414c52454144595f5645544f454429290a0a202020203b3b207665746f6573206d75737420626520636173742077697468696e20746865207665746f20706572696f640a2020202028617373657274732120283c20626c6f636b2d6865696768742065787069726174696f6e2d626c6f636b2d686569676874292028657272204552525f5645544f5f504552494f445f4f56455229290a0a202020203b3b2061206d696e65722063616e206f6e6c79207665746f2069662074686579206d696e6564207468652070726576696f757320626c6f636b0a20202020286173736572747321202869732d657120636f6e74726163742d63616c6c6572206c6173742d6d696e6572292028657272204552525f4e4f545f4c4153545f4d494e455229290a0a202020203b3b2061207665746f2063616e6e6f74206265206361737420696620612070726f706f73616c2068617320616c7265616479206265656e206d696e657220636f6e6669726d65640a20202020286173736572747321202869732d6e6f6e6520286d61702d6765743f2070726f706f73616c2d636f6e6669726d65642d6964207b2070726f706f73616c2d69643a2070726f706f73616c2d6964207d29290a202020202020202028657272204552525f50524f504f53414c5f434f4e4649524d454429290a0a20202020286d61702d7365742070726f706f73616c2d7665746f73207b2070726f706f73616c2d69643a2070726f706f73616c2d6964207d207b207665746f733a20282b207531206375722d7665746f7329207d290a20202020286d61702d736574206578657263697365642d7665746f207b2070726f706f73616c2d69643a2070726f706f73616c2d69642c207665746f2d6865696768743a20626c6f636b2d686569676874207d0a202020202020202020202020202020202020202020202020202020207b207665746f65643a2074727565207d290a20202020286f6b20747275652929290a0a3b3b20436f6e6669726d2070726f706f73616c20686173207265616368656420726571756972656420766f746520636f756e740a28646566696e652d7075626c69632028636f6e6669726d2d766f746573202870726f706f73616c2d69642075696e7429290a20202020286c657420280a202020202020202028766f746573202864656661756c742d746f207530202867657420766f74657320286d61702d6765743f2070726f706f73616c2d766f746573207b2070726f706f73616c2d69643a2070726f706f73616c2d6964207d292929290a20202020202020202870726f706f73616c2028756e777261702120286d61702d6765743f2070726f706f73616c73207b2070726f706f73616c2d69643a2070726f706f73616c2d6964207d292028657272204552525f4e4f5f535543485f50524f504f53414c2929290a202020202020202028636f6e6669726d65642d636f756e7420287661722d67657420636f6e6669726d65642d70726f706f73616c2d636f756e7429290a20202020202020202865787069726174696f6e2d626c6f636b2d68656967687420286765742065787069726174696f6e2d626c6f636b2d6865696768742070726f706f73616c2929290a0a202020203b3b20636f6e6669726d6174696f6e206661696c7320696620696e766f6b65642061667465722070726f706f73616c2068617320657870697265640a2020202028617373657274732120283c20626c6f636b2d6865696768742065787069726174696f6e2d626c6f636b2d686569676874292028657272204552525f50524f504f53414c5f4558504952454429290a0a202020203b3b20636f6e6669726d6174696f6e206661696c7320696620746865207265717569726564207468726573686f6c64206f6620766f746573206973206e6f74206d65740a2020202028617373657274732120283e3d20282f20282a20766f746573207531303029207374782d6c69717569642d737570706c79292052455155495245445f50455243454e545f5354585f564f5445290a202020202020202028657272204552525f494e53554646494349454e545f564f54455329290a0a20202020286d61702d696e7365727420766f74652d636f6e6669726d65642d70726f706f73616c73207b2070726f706f73616c2d69643a2070726f706f73616c2d6964207d0a20202020202020207b2065787069726174696f6e2d626c6f636b2d6865696768743a20282b205645544f5f4c454e47544820626c6f636b2d68656967687429207d290a0a20202020286f6b20747275652929290a0a3b3b20436f6e6669726d2070726f706f73616c206861736e2774206265656e207665746f65640a28646566696e652d7075626c69632028636f6e6669726d2d6d696e657273202870726f706f73616c2d69642075696e7429290a20202020286c65742028287665746f73202864656661756c742d746f2075302028676574207665746f7320286d61702d6765743f2070726f706f73616c2d7665746f73207b2070726f706f73616c2d69643a2070726f706f73616c2d6964207d292929290a2020202020202020202028766f74652d636f6e6669726d65642d70726f706f73616c2028756e777261702120286d61702d6765743f20766f74652d636f6e6669726d65642d70726f706f73616c730a2020202020202020202020207b2070726f706f73616c2d69643a2070726f706f73616c2d6964207d292028657272204552525f4e4f5f535543485f50524f504f53414c2929290a202020202020202020202870726f706f73616c2028756e777261702120286d61702d6765743f2070726f706f73616c73207b2070726f706f73616c2d69643a2070726f706f73616c2d6964207d290a20202020202020202020202028657272204552525f4e4f5f535543485f50524f504f53414c2929290a2020202020202020202028636f6e6669726d65642d636f756e7420287661722d67657420636f6e6669726d65642d70726f706f73616c2d636f756e7429290a202020202020202020202865787069726174696f6e2d626c6f636b2d68656967687420286765742065787069726174696f6e2d626c6f636b2d68656967687420766f74652d636f6e6669726d65642d70726f706f73616c29290a2020202020202020202028636f6e6669726d65642d746869732d626c6f636b202864656661756c742d746f20753020286d61702d6765743f20636f6e6669726d65642d636f756e742d61742d626c6f636b20626c6f636b2d686569676874292929290a0a202020203b3b206861766520776520616c726561647920636f6e6669726d656420746f6f206d616e792070726f706f73616c7320696e207468697320626c6f636b0a2020202028617373657274732120283c20636f6e6669726d65642d746869732d626c6f636b204d41585f434f4e4649524d45445f5045525f424c4f434b292028657272204552525f544f4f5f4d414e595f434f4e4649524d454429290a20202020286d61702d73657420636f6e6669726d65642d636f756e742d61742d626c6f636b20626c6f636b2d68656967687420282b20753120636f6e6669726d65642d746869732d626c6f636b29290a0a202020203b3b206d696e657220636f6e6669726d6174696f6e2077696c6c206661696c20696620696e766f6b6564206265666f7265207468652065787069726174696f6e0a2020202028617373657274732120283e3d20626c6f636b2d6865696768742065787069726174696f6e2d626c6f636b2d686569676874292028657272204552525f5645544f5f504552494f445f4e4f545f4f56455229290a0a202020203b3b206d696e657220636f6e6669726d6174696f6e2077696c6c206661696c2069662074686572652061726520656e6f756768207665746f730a2020202028617373657274732120283c207665746f732052455155495245445f5645544f4553292028657272204552525f50524f504f53414c5f5645544f454429290a0a20202020286d61702d696e7365727420636f6e6669726d65642d70726f706f73616c73207b20636f6e6669726d65642d69643a20636f6e6669726d65642d636f756e74207d0a20202020202020207b200a20202020202020202020202066756e6374696f6e2d636f6e74726163743a20286765742066756e6374696f6e2d636f6e74726163742070726f706f73616c292c0a20202020202020202020202066756e6374696f6e2d6e616d653a20286765742066756e6374696f6e2d6e616d652070726f706f73616c292c0a202020202020202020202020636f73742d66756e6374696f6e2d636f6e74726163743a202867657420636f73742d66756e6374696f6e2d636f6e74726163742070726f706f73616c292c0a202020202020202020202020636f73742d66756e6374696f6e2d6e616d653a202867657420636f73742d66756e6374696f6e2d6e616d652070726f706f73616c292c0a202020202020202020202020636f6e6669726d65642d6865696768743a20626c6f636b2d6865696768740a20202020202020207d290a0a20202020286d61702d696e736572742070726f706f73616c2d636f6e6669726d65642d6964207b2070726f706f73616c2d69643a2070726f706f73616c2d6964207d207b20636f6e6669726d65642d69643a20636f6e6669726d65642d636f756e74207d290a20202020287661722d73657420636f6e6669726d65642d70726f706f73616c2d636f756e7420282b20636f6e6669726d65642d636f756e7420753129290a20202020286f6b20747275652929290a", "status": "success", "tx_index": 3, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": {"maps": [{"key": "uint128", "name": "confirmed-count-at-block", "value": "uint128"}, {"key": {"tuple": [{"name": "confirmed-id", "type": "uint128"}]}, "name": "confirmed-proposals", "value": {"tuple": [{"name": "confirmed-height", "type": "uint128"}, {"name": "cost-function-contract", "type": "principal"}, {"name": "cost-function-name", "type": {"string-ascii": {"length": 128}}}, {"name": "function-contract", "type": "principal"}, {"name": "function-name", "type": {"string-ascii": {"length": 128}}}]}}, {"key": {"tuple": [{"name": "proposal-id", "type": "uint128"}, {"name": "veto-height", "type": "uint128"}]}, "name": "exercised-veto", "value": {"tuple": [{"name": "vetoed", "type": "bool"}]}}, {"key": {"tuple": [{"name": "function-contract", "type": "principal"}, {"name": "function-name", "type": {"string-ascii": {"length": 128}}}]}, "name": "functions-to-confirmed-ids", "value": {"tuple": [{"name": "proposal-id", "type": "uint128"}]}}, {"key": {"tuple": [{"name": "address", "type": "principal"}, {"name": "proposal-id", "type": "uint128"}]}, "name": "principal-proposal-votes", "value": {"tuple": [{"name": "votes", "type": "uint128"}]}}, {"key": {"tuple": [{"name": "proposal-id", "type": "uint128"}]}, "name": "proposal-confirmed-id", "value": {"tuple": [{"name": "confirmed-id", "type": "uint128"}]}}, {"key": {"tuple": [{"name": "proposal-id", "type": "uint128"}]}, "name": "proposal-vetos", "value": {"tuple": [{"name": "vetos", "type": "uint128"}]}}, {"key": {"tuple": [{"name": "proposal-id", "type": "uint128"}]}, "name": "proposal-votes", "value": {"tuple": [{"name": "votes", "type": "uint128"}]}}, {"key": {"tuple": [{"name": "proposal-id", "type": "uint128"}]}, "name": "proposals", "value": {"tuple": [{"name": "cost-function-contract", "type": "principal"}, {"name": "cost-function-name", "type": {"string-ascii": {"length": 128}}}, {"name": "expiration-block-height", "type": "uint128"}, {"name": "function-contract", "type": "principal"}, {"name": "function-name", "type": {"string-ascii": {"length": 128}}}]}}, {"key": {"tuple": [{"name": "proposal-id", "type": "uint128"}]}, "name": "vote-confirmed-proposals", "value": {"tuple": [{"name": "expiration-block-height", "type": "uint128"}]}}], "epoch": "Epoch20", "functions": [{"args": [{"name": "proposal-id", "type": "uint128"}], "name": "confirm-miners", "access": "public", "outputs": {"type": {"response": {"ok": "bool", "error": "int128"}}}}, {"args": [{"name": "proposal-id", "type": "uint128"}], "name": "confirm-votes", "access": "public", "outputs": {"type": {"response": {"ok": "bool", "error": "int128"}}}}, {"args": [{"name": "function-contract", "type": "principal"}, {"name": "function-name", "type": {"string-ascii": {"length": 128}}}, {"name": "cost-function-contract", "type": "principal"}, {"name": "cost-function-name", "type": {"string-ascii": {"length": 128}}}], "name": "submit-proposal", "access": "public", "outputs": {"type": {"response": {"ok": "uint128", "error": "none"}}}}, {"args": [{"name": "proposal-id", "type": "uint128"}], "name": "veto", "access": "public", "outputs": {"type": {"response": {"ok": "bool", "error": "int128"}}}}, {"args": [{"name": "proposal-id", "type": "uint128"}, {"name": "amount", "type": "uint128"}], "name": "vote-proposal", "access": "public", "outputs": {"type": {"response": {"ok": "bool", "error": "int128"}}}}, {"args": [{"name": "proposal-id", "type": "uint128"}, {"name": "amount", "type": "uint128"}], "name": "withdraw-votes", "access": "public", "outputs": {"type": {"response": {"ok": "bool", "error": "int128"}}}}, {"args": [{"name": "confirmed-id", "type": "uint128"}], "name": "get-confirmed-proposal", "access": "read_only", "outputs": {"type": {"optional": {"tuple": [{"name": "confirmed-height", "type": "uint128"}, {"name": "cost-function-contract", "type": "principal"}, {"name": "cost-function-name", "type": {"string-ascii": {"length": 128}}}, {"name": "function-contract", "type": "principal"}, {"name": "function-name", "type": {"string-ascii": {"length": 128}}}]}}}}, {"args": [{"name": "address", "type": "principal"}, {"name": "proposal-id", "type": "uint128"}], "name": "get-principal-votes", "access": "read_only", "outputs": {"type": {"optional": "uint128"}}}, {"args": [{"name": "proposal-id", "type": "uint128"}], "name": "get-proposal", "access": "read_only", "outputs": {"type": {"optional": {"tuple": [{"name": "cost-function-contract", "type": "principal"}, {"name": "cost-function-name", "type": {"string-ascii": {"length": 128}}}, {"name": "expiration-block-height", "type": "uint128"}, {"name": "function-contract", "type": "principal"}, {"name": "function-name", "type": {"string-ascii": {"length": 128}}}]}}}}, {"args": [{"name": "proposal-id", "type": "uint128"}], "name": "get-proposal-vetos", "access": "read_only", "outputs": {"type": {"optional": "uint128"}}}, {"args": [{"name": "proposal-id", "type": "uint128"}], "name": "get-proposal-votes", "access": "read_only", "outputs": {"type": {"optional": "uint128"}}}], "variables": [{"name": "ERR_ALREADY_VETOED", "type": "int128", "access": "constant"}, {"name": "ERR_AMOUNT_NOT_POSITIVE", "type": "int128", "access": "constant"}, {"name": "ERR_FETCHING_BLOCK_INFO", "type": "int128", "access": "constant"}, {"name": "ERR_FT_TRANSFER", "type": "int128", "access": "constant"}, {"name": "ERR_INSUFFICIENT_FUNDS", "type": "int128", "access": "constant"}, {"name": "ERR_INSUFFICIENT_VOTES", "type": "int128", "access": "constant"}, {"name": "ERR_NOT_LAST_MINER", "type": "int128", "access": "constant"}, {"name": "ERR_NO_SUCH_PROPOSAL", "type": "int128", "access": "constant"}, {"name": "ERR_PROPOSAL_CONFIRMED", "type": "int128", "access": "constant"}, {"name": "ERR_PROPOSAL_EXPIRED", "type": "int128", "access": "constant"}, {"name": "ERR_PROPOSAL_VETOED", "type": "int128", "access": "constant"}, {"name": "ERR_STX_TRANSFER", "type": "int128", "access": "constant"}, {"name": "ERR_TOO_MANY_CONFIRMED", "type": "int128", "access": "constant"}, {"name": "ERR_UNREACHABLE", "type": "int128", "access": "constant"}, {"name": "ERR_VETO_PERIOD_NOT_OVER", "type": "int128", "access": "constant"}, {"name": "ERR_VETO_PERIOD_OVER", "type": "int128", "access": "constant"}, {"name": "ERR_VOTE_ENDED", "type": "int128", "access": "constant"}, {"name": "ERR_VOTE_NOT_CONFIRMED", "type": "int128", "access": "constant"}, {"name": "MAX_CONFIRMED_PER_BLOCK", "type": "uint128", "access": "constant"}, {"name": "REQUIRED_PERCENT_STX_VOTE", "type": "uint128", "access": "constant"}, {"name": "REQUIRED_VETOES", "type": "uint128", "access": "constant"}, {"name": "VETO_LENGTH", "type": "uint128", "access": "constant"}, {"name": "VOTE_LENGTH", "type": "uint128", "access": "constant"}, {"name": "confirmed-proposal-count", "type": "uint128", "access": "variable"}, {"name": "proposal-count", "type": "uint128", "access": "variable"}], "clarity_version": "Clarity1", "fungible_tokens": [{"name": "cost-vote-token"}], "non_fungible_tokens": []}, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}, {"txid": "0x55bb3a37f9b2e8c58905c95099d5fc21aa47d073a918f3b30cc5abe4e3be44c6", "raw_tx": "0x800000000004000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000302000000000103626e7300009f363b3b3b3b204572726f72730a28646566696e652d636f6e7374616e74204552525f50414e49432030290a28646566696e652d636f6e7374616e74204552525f4e414d4553504143455f5052454f524445525f4e4f545f464f554e442031303031290a28646566696e652d636f6e7374616e74204552525f4e414d4553504143455f5052454f524445525f455850495245442031303032290a28646566696e652d636f6e7374616e74204552525f4e414d4553504143455f5052454f524445525f414c52454144595f4558495354532031303033290a28646566696e652d636f6e7374616e74204552525f4e414d4553504143455f554e415641494c41424c452031303034290a28646566696e652d636f6e7374616e74204552525f4e414d4553504143455f4e4f545f464f554e442031303035290a28646566696e652d636f6e7374616e74204552525f4e414d4553504143455f414c52454144595f4558495354532031303036290a28646566696e652d636f6e7374616e74204552525f4e414d4553504143455f4e4f545f4c41554e434845442031303037290a28646566696e652d636f6e7374616e74204552525f4e414d4553504143455f50524943455f46554e4354494f4e5f494e56414c49442031303038290a28646566696e652d636f6e7374616e74204552525f4e414d4553504143455f5052454f524445525f434c41494d4142494c4954595f455850495245442031303039290a28646566696e652d636f6e7374616e74204552525f4e414d4553504143455f5052454f524445525f4c41554e43484142494c4954595f455850495245442031303130290a28646566696e652d636f6e7374616e74204552525f4e414d4553504143455f4f5045524154494f4e5f554e415554484f52495a45442031303131290a28646566696e652d636f6e7374616e74204552525f4e414d4553504143455f5354585f4255524e545f494e53554646494349454e542031303132290a28646566696e652d636f6e7374616e74204552525f4e414d4553504143455f424c414e4b2031303133290a28646566696e652d636f6e7374616e74204552525f4e414d4553504143455f414c52454144595f4c41554e434845442031303134290a28646566696e652d636f6e7374616e74204552525f4e414d4553504143455f484153485f4d414c464f524d45442031303135290a28646566696e652d636f6e7374616e74204552525f4e414d4553504143455f434841525345545f494e56414c49442031303136290a0a28646566696e652d636f6e7374616e74204552525f4e414d455f5052454f524445525f4e4f545f464f554e442032303031290a28646566696e652d636f6e7374616e74204552525f4e414d455f5052454f524445525f455850495245442032303032290a28646566696e652d636f6e7374616e74204552525f4e414d455f5052454f524445525f46554e44535f494e53554646494349454e542032303033290a28646566696e652d636f6e7374616e74204552525f4e414d455f554e415641494c41424c452032303034290a28646566696e652d636f6e7374616e74204552525f4e414d455f4f5045524154494f4e5f554e415554484f52495a45442032303036290a28646566696e652d636f6e7374616e74204552525f4e414d455f5354585f4255524e545f494e53554646494349454e542032303037290a28646566696e652d636f6e7374616e74204552525f4e414d455f455850495245442032303038290a28646566696e652d636f6e7374616e74204552525f4e414d455f47524143455f504552494f442032303039290a28646566696e652d636f6e7374616e74204552525f4e414d455f424c414e4b2032303130290a28646566696e652d636f6e7374616e74204552525f4e414d455f414c52454144595f434c41494d45442032303131290a28646566696e652d636f6e7374616e74204552525f4e414d455f434c41494d4142494c4954595f455850495245442032303132290a28646566696e652d636f6e7374616e74204552525f4e414d455f4e4f545f464f554e442032303133290a28646566696e652d636f6e7374616e74204552525f4e414d455f5245564f4b45442032303134290a28646566696e652d636f6e7374616e74204552525f4e414d455f5452414e534645525f4641494c45442032303135290a28646566696e652d636f6e7374616e74204552525f4e414d455f5052454f524445525f414c52454144595f4558495354532032303136290a28646566696e652d636f6e7374616e74204552525f4e414d455f484153485f4d414c464f524d45442032303137290a28646566696e652d636f6e7374616e74204552525f4e414d455f5052454f5244455245445f4245464f52455f4e414d4553504143455f4c41554e43482032303138290a28646566696e652d636f6e7374616e74204552525f4e414d455f4e4f545f5245534f4c5641424c452032303139290a28646566696e652d636f6e7374616e74204552525f4e414d455f434f554c445f4e4f545f42455f4d494e5445442032303230290a28646566696e652d636f6e7374616e74204552525f4e414d455f434f554c445f4e4f545f42455f5452414e5346455245442032303231290a28646566696e652d636f6e7374616e74204552525f4e414d455f434841525345545f494e56414c49442032303232290a0a28646566696e652d636f6e7374616e74204552525f5052494e434950414c5f414c52454144595f4153534f4349415445442033303031290a28646566696e652d636f6e7374616e74204552525f494e53554646494349454e545f46554e44532034303031290a0a28646566696e652d636f6e7374616e74204e414d4553504143455f5052454f524445525f434c41494d4142494c4954595f54544c2075313434290a28646566696e652d636f6e7374616e74204e414d4553504143455f4c41554e43484142494c4954595f54544c20753532353935290a28646566696e652d636f6e7374616e74204e414d455f5052454f524445525f434c41494d4142494c4954595f54544c2075313434290a28646566696e652d636f6e7374616e74204e414d455f47524143455f504552494f445f4455524154494f4e207535303030290a0a28646566696e652d646174612d766172206174746163686d656e742d696e6465782075696e74207530290a0a3b3b205072696365207461626c65730a28646566696e652d636f6e7374616e74204e414d4553504143455f50524943455f544945525320286c6973740a2020753634303030303030303030300a202075363430303030303030303020753634303030303030303030200a20207536343030303030303030207536343030303030303030207536343030303030303030207536343030303030303030200a20207536343030303030303020753634303030303030302075363430303030303030207536343030303030303020753634303030303030302075363430303030303030207536343030303030303020753634303030303030302075363430303030303030207536343030303030303020753634303030303030302075363430303030303030207536343030303030303029290a0a3b3b3b3b20446174610a28646566696e652d6d6170206e616d657370616365730a20202862756666203230290a20207b206e616d6573706163652d696d706f72743a207072696e636970616c2c0a2020202072657665616c65642d61743a2075696e742c0a202020206c61756e636865642d61743a20286f7074696f6e616c2075696e74292c0a202020206c69666574696d653a2075696e742c0a2020202063616e2d7570646174652d70726963652d66756e6374696f6e3a20626f6f6c2c0a2020202070726963652d66756e6374696f6e3a207b0a2020202020206275636b6574733a20286c6973742031362075696e74292c0a202020202020626173653a2075696e742c200a202020202020636f6566663a2075696e742c200a2020202020206e6f6e616c7068612d646973636f756e743a2075696e742c200a2020202020206e6f2d766f77656c2d646973636f756e743a2075696e740a202020207d0a20207d290a0a28646566696e652d6d6170206e616d6573706163652d7072656f72646572730a20207b206861736865642d73616c7465642d6e616d6573706163653a202862756666203230292c2062757965723a207072696e636970616c207d0a20207b20637265617465642d61743a2075696e742c20636c61696d65643a20626f6f6c2c207374782d6275726e65643a2075696e74207d290a0a28646566696e652d6e6f6e2d66756e6769626c652d746f6b656e206e616d6573207b206e616d653a202862756666203438292c206e616d6573706163653a20286275666620323029207d290a0a3b3b2052756c6520312d31202d3e2031207072696e636970616c2c2031206e616d650a28646566696e652d6d6170206f776e65722d6e616d65207072696e636970616c207b206e616d653a202862756666203438292c206e616d6573706163653a20286275666620323029207d290a3b3b204f6e6c79206170706c69657320746f206e6f6e2d7265766f6b65642c206e6f6e2d65787069726564206e616d65732e200a3b3b2041207072696e636970616c2063616e206f776e206d616e792065787069726564206e616d6573202862757420746865792077696c6c206265207472616e736665727265642061776179206f6e636520736f6d656f6e652072652d726567697374657273207468656d292c200a3b3b20616e642063616e206f776e206d616e79207265766f6b6564206e616d65732028627574207468657920646f206e6f74207265736f6c766520616e642063616e6e6f74206265207472616e73666572726564206f722075706461746564292e0a0a28646566696e652d6d6170206e616d652d70726f706572746965730a20207b206e616d653a202862756666203438292c206e616d6573706163653a20286275666620323029207d0a20207b20726567697374657265642d61743a20286f7074696f6e616c2075696e74292c0a20202020696d706f727465642d61743a20286f7074696f6e616c2075696e74292c0a202020207265766f6b65642d61743a20286f7074696f6e616c2075696e74292c0a202020207a6f6e6566696c652d686173683a20286275666620323029207d290a0a28646566696e652d6d6170206e616d652d7072656f72646572730a20207b206861736865642d73616c7465642d66716e3a202862756666203230292c2062757965723a207072696e636970616c207d0a20207b20637265617465642d61743a2075696e742c20636c61696d65643a20626f6f6c2c207374782d6275726e65643a2075696e74207d290a0a28646566696e652d7072697661746520286d696e2028612075696e74292028622075696e7429290a202028696620283c3d20612062292061206229290a0a28646566696e652d7072697661746520286d61782028612075696e74292028622075696e7429290a202028696620283e20612062292061206229290a0a28646566696e652d7072697661746520286765742d6578702d61742d696e64657820286275636b65747320286c6973742031362075696e7429292028696e6465782075696e7429290a202028756e777261702d70616e69632028656c656d656e742d6174206275636b65747320696e6465782929290a0a28646566696e652d70726976617465202869732d646967697420286368617220286275666620312929290a2020286f72200a202020202869732d65712063686172203078333029203b3b20300a202020202869732d65712063686172203078333129203b3b20310a202020202869732d65712063686172203078333229203b3b20320a202020202869732d65712063686172203078333329203b3b20330a202020202869732d65712063686172203078333429203b3b20340a202020202869732d65712063686172203078333529203b3b20350a202020202869732d65712063686172203078333629203b3b20360a202020202869732d65712063686172203078333729203b3b20370a202020202869732d65712063686172203078333829203b3b20380a202020202869732d657120636861722030783339292929203b3b20390a0a28646566696e652d70726976617465202869732d6c6f776572636173652d616c70686120286368617220286275666620312929290a2020286f72200a202020202869732d65712063686172203078363129203b3b20610a202020202869732d65712063686172203078363229203b3b20620a202020202869732d65712063686172203078363329203b3b20630a202020202869732d65712063686172203078363429203b3b20640a202020202869732d65712063686172203078363529203b3b20650a202020202869732d65712063686172203078363629203b3b20660a202020202869732d65712063686172203078363729203b3b20670a202020202869732d65712063686172203078363829203b3b20680a202020202869732d65712063686172203078363929203b3b20690a202020202869732d65712063686172203078366129203b3b206a0a202020202869732d65712063686172203078366229203b3b206b0a202020202869732d65712063686172203078366329203b3b206c0a202020202869732d65712063686172203078366429203b3b206d0a202020202869732d65712063686172203078366529203b3b206e0a202020202869732d65712063686172203078366629203b3b206f0a202020202869732d65712063686172203078373029203b3b20700a202020202869732d65712063686172203078373129203b3b20710a202020202869732d65712063686172203078373229203b3b20720a202020202869732d65712063686172203078373329203b3b20730a202020202869732d65712063686172203078373429203b3b20740a202020202869732d65712063686172203078373529203b3b20750a202020202869732d65712063686172203078373629203b3b20760a202020202869732d65712063686172203078373729203b3b20770a202020202869732d65712063686172203078373829203b3b20780a202020202869732d65712063686172203078373929203b3b20790a202020202869732d657120636861722030783761292929203b3b207a0a0a28646566696e652d70726976617465202869732d766f77656c20286368617220286275666620312929290a2020286f72200a202020202869732d65712063686172203078363129203b3b20610a202020202869732d65712063686172203078363529203b3b20650a202020202869732d65712063686172203078363929203b3b20690a202020202869732d65712063686172203078366629203b3b206f0a202020202869732d65712063686172203078373529203b3b20750a202020202869732d657120636861722030783739292929203b3b20790a0a28646566696e652d70726976617465202869732d7370656369616c2d6368617220286368617220286275666620312929290a2020286f72200a202020202869732d65712063686172203078326429203b3b202d0a202020202869732d657120636861722030783566292929203b3b205f0a0a28646566696e652d70726976617465202869732d636861722d76616c696420286368617220286275666620312929290a2020286f72200a202020202869732d6c6f776572636173652d616c7068612063686172290a202020202869732d64696769742063686172290a202020202869732d7370656369616c2d6368617220636861722929290a0a28646566696e652d70726976617465202869732d6e6f6e616c70686120286368617220286275666620312929290a2020286f72200a202020202869732d64696769742063686172290a202020202869732d7370656369616c2d6368617220636861722929290a0a28646566696e652d7072697661746520286861732d766f77656c732d636861727320286e616d652028627566662034382929290a2020283e20286c656e202866696c7465722069732d766f77656c206e616d65292920753029290a0a28646566696e652d7072697661746520286861732d6e6f6e616c7068612d636861727320286e616d652028627566662034382929290a2020283e20286c656e202866696c7465722069732d6e6f6e616c706861206e616d65292920753029290a0a28646566696e652d7072697661746520286861732d696e76616c69642d636861727320286e616d652028627566662034382929290a2020283c20286c656e202866696c7465722069732d636861722d76616c6964206e616d65292920286c656e206e616d652929290a0a28646566696e652d7072697661746520286e616d652d6c656173652d737461727465642d61743f20286e616d6573706163652d6c61756e636865642d617420286f7074696f6e616c2075696e742929200a20202020202020202020202020202020202020202020202020202020202020202020202020202020286e616d6573706163652d72657665616c65642d61742075696e74290a20202020202020202020202020202020202020202020202020202020202020202020202020202020286e616d652d70726f707320287475706c65200a202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202028726567697374657265642d617420286f7074696f6e616c2075696e7429290a202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202028696d706f727465642d617420286f7074696f6e616c2075696e7429290a2020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020287265766f6b65642d617420286f7074696f6e616c2075696e7429290a2020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020287a6f6e6566696c652d6861736820286275666620323029292929290a202020202020286c6574202828726567697374657265642d6174202867657420726567697374657265642d6174206e616d652d70726f707329290a20202020202020202020202028696d706f727465642d6174202867657420696d706f727465642d6174206e616d652d70726f70732929290a2020202020202020286966202869732d6e6f6e65206e616d6573706163652d6c61756e636865642d6174290a2020202020202020202028626567696e0a2020202020202020202020203b3b20546865206e616d657370616365206d757374206e6f7420626520657870697265640a202020202020202020202020286173736572747321200a2020202020202020202020202020283e20282b206e616d6573706163652d72657665616c65642d6174204e414d4553504143455f4c41554e43484142494c4954595f54544c2920626c6f636b2d68656967687429200a202020202020202020202020202028657272204552525f4e414d4553504143455f5052454f524445525f4c41554e43484142494c4954595f4558504952454429290a202020202020202020202020286f6b2028756e777261702d70616e696320696d706f727465642d61742929290a2020202020202020202028626567696e0a2020202020202020202020203b3b20546865206e616d657370616365206d757374206265206c61756e636865640a202020202020202020202020286173736572747321202869732d736f6d65206e616d6573706163652d6c61756e636865642d6174292028657272204552525f4e414d4553504143455f4e4f545f4c41554e4348454429290a2020202020202020202020203b3b2053616e69747920636865636b3a20746865206e616d65206d7573742068617665206265656e206569746865722062652072656769737465726564206f7220696d706f727465640a202020202020202020202020286173736572747321202869732d65712028786f72200a2020202020202020202020202020286d6174636820726567697374657265642d61742072657320312030290a2020202020202020202020202020286d6174636820696d706f727465642d61742020207265732031203029292031292028657272204552525f50414e494329290a2020202020202020202020203b3b20496620746865206e616d6520776173206c61756e636865642c207468656e20737461727465642d61742077696c6c20636f6d652066726f6d20726567697374657265642d61740a202020202020202020202020286966202869732d736f6d6520726567697374657265642d6174290a20202020202020202020202020203b3b20546865206e616d65207761732072656769737465726564202d2057652072657475726e2074686520726567697374726174696f6e20626c6f636b206865696768740a2020202020202020202020202020286f6b2028756e777261702d70616e696320726567697374657265642d617429290a20202020202020202020202020203b3b20546865206e616d652077617320696d706f727465640a20202020202020202020202020202869662028616e6420283e3d2028756e777261702d70616e696320696d706f727465642d617429206e616d6573706163652d72657665616c65642d6174290a20202020202020202020202020202020202020202020283c3d2028756e777261702d70616e696320696d706f727465642d6174292028756e777261702d70616e6963206e616d6573706163652d6c61756e636865642d61742929290a202020202020202020202020202020203b3b20546865206e616d652077617320696d706f727465642061667465722072657665616c696e6720746865206e616d65737061636520616e64206265666f7265206c61756e6368696e6720746865206e616d657370616365202d2057652072657475726e20746865206c61756e636820626c6f636b206865696768740a20202020202020202020202020202020286f6b2028756e777261702d70616e6963206e616d6573706163652d6c61756e636865642d617429290a20202020202020202020202020202020286f6b207530292929292929290a0a3b3b204e6f74653a2074686520666f6c6c6f77696e67206d6574686f64206973207573656420696e206e616d652d696d706f727420616e64206e616d652d72656769737465722e20546865206c617474657220656e73757265207468617420746865206e616d650a3b3b2063616e20626520726567697374657265642c2074686520666f726d657220646f6573206e6f742e200a28646566696e652d7072697661746520286d696e742d6f722d7472616e736665722d6e616d653f20286e616d657370616365202862756666203230292920286e616d652028627566662034382929202862656e6566696369617279207072696e636970616c29290a20202020286c657420280a2020202020202863757272656e742d6f776e657220286e66742d6765742d6f776e65723f206e616d657320287475706c6520286e616d65206e616d652920286e616d657370616365206e616d65737061636529292929290a2020202020203b3b20546865207072696e636970616c2063616e2072656769737465722061206e616d650a2020202020202861737365727473210a20202020202020202874727921202863616e2d726563656976652d6e616d652062656e656669636961727929290a202020202020202028657272204552525f5052494e434950414c5f414c52454144595f4153534f43494154454429290a202020202020286966202869732d6e6f6e652063757272656e742d6f776e6572290a20202020202020203b3b20546869732069732061206e6577206e616d652c206c65742773206d696e742069740a202020202020202028626567696e0a2020202020202020202028756e7772617021200a202020202020202020202020286e66742d6d696e743f0a20202020202020202020202020206e616d6573200a20202020202020202020202020207b206e616d653a206e616d652c206e616d6573706163653a206e616d657370616365207d0a202020202020202020202020202062656e6566696369617279290a20202020202020202020202028657272204552525f4e414d455f434f554c445f4e4f545f42455f4d494e54454429290a20202020202020202020286d61702d736574206f776e65722d6e616d650a20202020202020202020202062656e65666963696172790a2020202020202020202020207b206e616d653a206e616d652c206e616d6573706163653a206e616d657370616365207d290a20202020202020202020286f6b207472756529290a2020202020202020287570646174652d6e616d652d6f776e6572736869703f206e616d657370616365206e616d652028756e777261702d70616e69632063757272656e742d6f776e6572292062656e6566696369617279292929290a0a28646566696e652d7072697661746520287570646174652d6e616d652d6f776e6572736869703f20286e616d6573706163652028627566662032302929200a20202020202020202020202020202020202020202020202020202020202020202020202020202020286e616d652028627566662034382929200a202020202020202020202020202020202020202020202020202020202020202020202020202020202866726f6d207072696e636970616c29200a2020202020202020202020202020202020202020202020202020202020202020202020202020202028746f207072696e636970616c29290a2020286966202869732d65712066726f6d20746f290a20202020286f6b2074727565290a2020202028626567696e0a20202020202028756e77726170210a2020202020202020286e66742d7472616e736665723f206e616d6573207b206e616d653a206e616d652c206e616d6573706163653a206e616d657370616365207d2066726f6d20746f290a202020202020202028657272204552525f4e414d455f434f554c445f4e4f545f42455f5452414e53464552454429290a202020202020286d61702d64656c657465206f776e65722d6e616d652066726f6d290a202020202020286d61702d736574206f776e65722d6e616d650a2020202020202020746f0a20202020202020207b206e616d653a206e616d652c206e616d6573706163653a206e616d657370616365207d290a202020202020286f6b2074727565292929290a0a28646566696e652d7072697661746520287570646174652d7a6f6e6566696c652d616e642d70726f707320286e616d65737061636520286275666620323029290a20202020202020202020202020202020202020202020202020202020202020202020202020202020202020286e616d6520286275666620343829290a2020202020202020202020202020202020202020202020202020202020202020202020202020202020202028726567697374657265642d617420286f7074696f6e616c2075696e742929200a2020202020202020202020202020202020202020202020202020202020202020202020202020202020202028696d706f727465642d617420286f7074696f6e616c2075696e742929200a20202020202020202020202020202020202020202020202020202020202020202020202020202020202020287265766f6b65642d617420286f7074696f6e616c2075696e742929200a20202020202020202020202020202020202020202020202020202020202020202020202020202020202020287a6f6e6566696c652d6861736820286275666620323029290a20202020202020202020202020202020202020202020202020202020202020202020202020202020202020286f702028737472696e672d61736369692031362929290a2020286c6574200a20202020282863757272656e742d696e64657820287661722d676574206174746163686d656e742d696e6465782929290a2020202020203b3b20456d6974206576656e74207573656420617320612073797374656d2068696e7465720a202020202020287072696e74207b0a20202020202020206174746163686d656e743a207b0a20202020202020202020686173683a207a6f6e6566696c652d686173682c0a202020202020202020206174746163686d656e742d696e6465783a2063757272656e742d696e6465782c0a202020202020202020206d657461646174613a207b0a2020202020202020202020206e616d653a206e616d652c0a2020202020202020202020206e616d6573706163653a206e616d6573706163652c0a20202020202020202020202074782d73656e6465723a2074782d73656e6465722c0a2020202020202020202020206f703a206f700a202020202020202020207d0a20202020202020207d7d290a2020202020203b3b2055706461746520637572736f720a202020202020287661722d736574206174746163686d656e742d696e64657820282b2075312063757272656e742d696e64657829290a202020202020286d61702d736574206e616d652d70726f706572746965730a20202020202020207b206e616d653a206e616d652c206e616d6573706163653a206e616d657370616365207d0a20202020202020207b20726567697374657265642d61743a20726567697374657265642d61742c0a20202020202020202020696d706f727465642d61743a20696d706f727465642d61742c0a202020202020202020207265766f6b65642d61743a207265766f6b65642d61742c0a202020202020202020207a6f6e6566696c652d686173683a207a6f6e6566696c652d68617368207d2929290a0a28646566696e652d70726976617465202869732d6e616d6573706163652d617661696c61626c6520286e616d6573706163652028627566662032302929290a2020286d6174636820286d61702d6765743f206e616d65737061636573206e616d65737061636529206e616d6573706163652d70726f70730a2020202028626567696e0a2020202020203b3b20497320746865206e616d657370616365206c61756e636865643f0a202020202020286966202869732d736f6d652028676574206c61756e636865642d6174206e616d6573706163652d70726f70732929200a202020202020202066616c73650a2020202020202020283e20626c6f636b2d68656967687420282b20286765742072657665616c65642d6174206e616d6573706163652d70726f707329204e414d4553504143455f4c41554e43484142494c4954595f54544c29292929203b3b20497320746865206e616d65737061636520657870697265643f0a202020207472756529290a0a28646566696e652d707269766174652028636f6d707574652d6e616d652d707269636520286e616d6520286275666620343829290a2020202020202020202020202020202020202020202020202020202020202020202020202870726963652d66756e6374696f6e20287475706c6520286275636b65747320286c6973742031362075696e742929200a202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202028626173652075696e7429200a202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202028636f6566662075696e7429200a2020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020286e6f6e616c7068612d646973636f756e742075696e7429200a2020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020286e6f2d766f77656c2d646973636f756e742075696e74292929290a2020286c657420280a20202020286578706f6e656e7420286765742d6578702d61742d696e6465782028676574206275636b6574732070726963652d66756e6374696f6e2920286d696e2075313520282d20286c656e206e616d6529207531292929290a20202020286e6f2d766f77656c2d646973636f756e742028696620286e6f7420286861732d766f77656c732d6368617273206e616d6529292028676574206e6f2d766f77656c2d646973636f756e742070726963652d66756e6374696f6e2920753129290a20202020286e6f6e616c7068612d646973636f756e742028696620286861732d6e6f6e616c7068612d6368617273206e616d65292028676574206e6f6e616c7068612d646973636f756e742070726963652d66756e6374696f6e292075312929290a20202020282a0a202020202020282f0a2020202020202020282a0a202020202020202020202867657420636f6566662070726963652d66756e6374696f6e290a2020202020202020202028706f77202867657420626173652070726963652d66756e6374696f6e29206578706f6e656e7429290a2020202020202020286d6178206e6f6e616c7068612d646973636f756e74206e6f2d766f77656c2d646973636f756e7429290a2020202020207531302929290a0a3b3b3b3b204e414d455350414345530a3b3b204e414d4553504143455f5052454f524445520a3b3b2054686973207374657020726567697374657273207468652073616c7465642068617368206f6620746865206e616d657370616365207769746820424e53206e6f6465732c20616e64206275726e73207468652072657175697369746520616d6f756e74206f662063727970746f63757272656e63792e0a3b3b204164646974696f6e616c6c792c207468697320737465702070726f76657320746f2074686520424e53206e6f646573207468617420757365722068617320686f6e6f7265642074686520424e5320636f6e73656e7375732072756c657320627920696e636c7564696e67206120726563656e740a3b3b20636f6e73656e737573206861736820696e20746865207472616e73616374696f6e2e0a3b3b2052657475726e73207072652d6f7264657227732065787069726174696f6e20646174652028696e20626c6f636b73292e0a28646566696e652d7075626c696320286e616d6573706163652d7072656f7264657220286861736865642d73616c7465642d6e616d65737061636520286275666620323029290a2020202020202020202020202020202020202020202020202020202020202020202020287374782d746f2d6275726e2075696e7429290a2020286c6574200a202020202828666f726d65722d7072656f72646572200a202020202020286d61702d6765743f206e616d6573706163652d7072656f7264657273207b206861736865642d73616c7465642d6e616d6573706163653a206861736865642d73616c7465642d6e616d6573706163652c2062757965723a2074782d73656e646572207d2929290a202020203b3b20456e73757265206576656e7475616c20666f726d6572207072652d6f726465722065787069726564200a20202020286173736572747321200a202020202020286966202869732d6e6f6e6520666f726d65722d7072656f72646572290a2020202020202020747275650a2020202020202020283e3d20626c6f636b2d68656967687420282b204e414d4553504143455f5052454f524445525f434c41494d4142494c4954595f54544c0a2020202020202020202020202020202020202020202020202020202028756e777261702d70616e6963202867657420637265617465642d617420666f726d65722d7072656f7264657229292929290a20202020202028657272204552525f4e414d4553504143455f5052454f524445525f414c52454144595f45584953545329290a202020203b3b20456e7375726520746861742074686520686173686564206e616d657370616365206973203230206279746573206c6f6e670a20202020286173736572747321202869732d657120286c656e206861736865642d73616c7465642d6e616d6573706163652920753230292028657272204552525f4e414d4553504143455f484153485f4d414c464f524d454429290a202020203b3b20456e73757265207468617420757365722077696c6c206265206275726e696e67206120706f73697469766520616d6f756e74206f6620746f6b656e730a2020202028617373657274732120283e207374782d746f2d6275726e207530292028657272204552525f4e414d4553504143455f5354585f4255524e545f494e53554646494349454e5429290a202020203b3b204275726e2074686520746f6b656e730a2020202028756e777261702120287374782d6275726e3f207374782d746f2d6275726e2074782d73656e646572292028657272204552525f494e53554646494349454e545f46554e445329290a202020203b3b20526567697374657220746865207072656f726465720a20202020286d61702d736574206e616d6573706163652d7072656f72646572730a2020202020207b206861736865642d73616c7465642d6e616d6573706163653a206861736865642d73616c7465642d6e616d6573706163652c2062757965723a2074782d73656e646572207d0a2020202020207b20637265617465642d61743a20626c6f636b2d6865696768742c20636c61696d65643a2066616c73652c207374782d6275726e65643a207374782d746f2d6275726e207d290a20202020286f6b20282b20626c6f636b2d686569676874204e414d4553504143455f5052454f524445525f434c41494d4142494c4954595f54544c292929290a0a3b3b204e414d4553504143455f52455645414c0a3b3b2054686973207365636f6e6420737465702072657665616c73207468652073616c7420616e6420746865206e616d657370616365204944202870616972696e67206974207769746820697473204e414d4553504143455f5052454f52444552292e2049742072657665616c7320686f77206c6f6e670a3b3b206e616d6573206c61737420696e2074686973206e616d657370616365206265666f7265207468657920657870697265206f72206d7573742062652072656e657765642c20616e64206974207365747320612070726963652066756e6374696f6e20666f7220746865206e616d6573706163650a3b3b20746861742064657465726d696e657320686f77206368656170206f7220657870656e73697665206e616d6573206974732077696c6c2062652e0a28646566696e652d7075626c696320286e616d6573706163652d72657665616c20286e616d65737061636520286275666620323029290a202020202020202020202020202020202020202020202020202020202020202020286e616d6573706163652d73616c7420286275666620323029290a20202020202020202020202020202020202020202020202020202020202020202028702d66756e632d626173652075696e74290a20202020202020202020202020202020202020202020202020202020202020202028702d66756e632d636f6566662075696e74290a20202020202020202020202020202020202020202020202020202020202020202028702d66756e632d62312075696e74290a20202020202020202020202020202020202020202020202020202020202020202028702d66756e632d62322075696e74290a20202020202020202020202020202020202020202020202020202020202020202028702d66756e632d62332075696e74290a20202020202020202020202020202020202020202020202020202020202020202028702d66756e632d62342075696e74290a20202020202020202020202020202020202020202020202020202020202020202028702d66756e632d62352075696e74290a20202020202020202020202020202020202020202020202020202020202020202028702d66756e632d62362075696e74290a20202020202020202020202020202020202020202020202020202020202020202028702d66756e632d62372075696e74290a20202020202020202020202020202020202020202020202020202020202020202028702d66756e632d62382075696e74290a20202020202020202020202020202020202020202020202020202020202020202028702d66756e632d62392075696e74290a20202020202020202020202020202020202020202020202020202020202020202028702d66756e632d6231302075696e74290a20202020202020202020202020202020202020202020202020202020202020202028702d66756e632d6231312075696e74290a20202020202020202020202020202020202020202020202020202020202020202028702d66756e632d6231322075696e74290a20202020202020202020202020202020202020202020202020202020202020202028702d66756e632d6231332075696e74290a20202020202020202020202020202020202020202020202020202020202020202028702d66756e632d6231342075696e74290a20202020202020202020202020202020202020202020202020202020202020202028702d66756e632d6231352075696e74290a20202020202020202020202020202020202020202020202020202020202020202028702d66756e632d6231362075696e74290a20202020202020202020202020202020202020202020202020202020202020202028702d66756e632d6e6f6e2d616c7068612d646973636f756e742075696e74290a20202020202020202020202020202020202020202020202020202020202020202028702d66756e632d6e6f2d766f77656c2d646973636f756e742075696e74290a202020202020202020202020202020202020202020202020202020202020202020286c69666574696d652075696e74290a202020202020202020202020202020202020202020202020202020202020202020286e616d6573706163652d696d706f7274207072696e636970616c29290a20203b3b205468652073616c7420616e64206e616d657370616365206d757374206861736820746f2061207072656f7264657220656e74727920696e2074686520606e616d6573706163655f7072656f726465727360207461626c652e0a20203b3b205468652073656e646572206d757374206d6174636820746865207072696e636970616c20696e20746865207072656f7264657220656e7472792028696d706c696564290a2020286c657420280a20202020286861736865642d73616c7465642d6e616d6573706163652028686173683136302028636f6e636174206e616d657370616365206e616d6573706163652d73616c742929290a202020202870726963652d66756e6374696f6e20287475706c65200a202020202020286275636b65747320286c6973740a2020202020202020702d66756e632d62310a2020202020202020702d66756e632d62320a2020202020202020702d66756e632d62330a2020202020202020702d66756e632d62340a2020202020202020702d66756e632d62350a2020202020202020702d66756e632d62360a2020202020202020702d66756e632d62370a2020202020202020702d66756e632d62380a2020202020202020702d66756e632d62390a2020202020202020702d66756e632d6231300a2020202020202020702d66756e632d6231310a2020202020202020702d66756e632d6231320a2020202020202020702d66756e632d6231330a2020202020202020702d66756e632d6231340a2020202020202020702d66756e632d6231350a2020202020202020702d66756e632d62313629290a202020202020286261736520702d66756e632d62617365290a20202020202028636f65666620702d66756e632d636f656666290a202020202020286e6f6e616c7068612d646973636f756e7420702d66756e632d6e6f6e2d616c7068612d646973636f756e74290a202020202020286e6f2d766f77656c2d646973636f756e7420702d66756e632d6e6f2d766f77656c2d646973636f756e742929290a20202020287072656f726465722028756e77726170210a202020202020286d61702d6765743f206e616d6573706163652d7072656f7264657273207b206861736865642d73616c7465642d6e616d6573706163653a206861736865642d73616c7465642d6e616d6573706163652c2062757965723a2074782d73656e646572207d290a20202020202028657272204552525f4e414d4553504143455f5052454f524445525f4e4f545f464f554e442929290a20202020286e616d6573706163652d707269636520287472792120286765742d6e616d6573706163652d7072696365206e616d657370616365292929290a202020203b3b20546865206e616d657370616365206d757374206f6e6c7920686176652076616c69642063686172730a202020202861737365727473210a202020202020286e6f7420286861732d696e76616c69642d6368617273206e616d65737061636529290a20202020202028657272204552525f4e414d4553504143455f434841525345545f494e56414c494429290a202020203b3b20546865206e616d657370616365206d757374206e6f7420657869737420696e2074686520606e616d6573706163657360207461626c652c206f7220626520657870697265640a20202020286173736572747321200a2020202020202869732d6e616d6573706163652d617661696c61626c65206e616d657370616365290a20202020202028657272204552525f4e414d4553504143455f414c52454144595f45584953545329290a202020203b3b2054686520616d6f756e74206275726e74206d75737420626520657175616c20746f206f722067726561746572207468616e2074686520636f7374206f6620746865206e616d6573706163650a202020202861737365727473210a202020202020283e3d2028676574207374782d6275726e6564207072656f7264657229206e616d6573706163652d7072696365290a20202020202028657272204552525f4e414d4553504143455f5354585f4255524e545f494e53554646494349454e5429290a202020203b3b2054686973207472616e73616374696f6e206d757374206172726976652077697468696e20323420686f757273206f662069747320604e414d4553504143455f5052454f52444552600a202020202861737365727473210a202020202020283c20626c6f636b2d68656967687420282b202867657420637265617465642d6174207072656f7264657229204e414d4553504143455f5052454f524445525f434c41494d4142494c4954595f54544c29290a20202020202028657272204552525f4e414d4553504143455f5052454f524445525f434c41494d4142494c4954595f4558504952454429290a202020203b3b20546865207072656f72646572207265636f726420666f722074686973206e616d6573706163652077696c6c206265206d61726b65642061732022636c61696d6564220a20202020286d61702d736574206e616d6573706163652d7072656f72646572730a2020202020207b206861736865642d73616c7465642d6e616d6573706163653a206861736865642d73616c7465642d6e616d6573706163652c2062757965723a2074782d73656e646572207d0a2020202020207b20637265617465642d61743a202867657420637265617465642d6174207072656f72646572292c20636c61696d65643a20747275652c207374782d6275726e65643a2028676574207374782d6275726e6564207072656f7264657229207d290a202020203b3b20546865206e616d6573706163652077696c6c20626520736574206173202272657665616c65642220627574206e6f7420226c61756e63686564222c206974732070726963652066756e6374696f6e2c206974732072656e6577616c2072756c65732c206974732076657273696f6e2c0a202020203b3b20616e642069747320696d706f7274207072696e636970616c2077696c6c206265207772697474656e20746f207468652020606e616d6573706163657360207461626c652e0a20202020286d61702d736574206e616d657370616365730a2020202020206e616d6573706163650a2020202020207b206e616d6573706163652d696d706f72743a206e616d6573706163652d696d706f72742c0a202020202020202072657665616c65642d61743a20626c6f636b2d6865696768742c0a20202020202020206c61756e636865642d61743a206e6f6e652c0a20202020202020206c69666574696d653a206c69666574696d652c0a202020202020202063616e2d7570646174652d70726963652d66756e6374696f6e3a20747275652c0a202020202020202070726963652d66756e6374696f6e3a2070726963652d66756e6374696f6e207d290a20202020286f6b20747275652929290a0a3b3b204e414d455f494d504f52540a3b3b204f6e63652061206e616d6573706163652069732072657665616c65642c2074686520757365722068617320746865206f7074696f6e20746f20706f70756c6174652069742077697468206120736574206f66206e616d65732e204561636820696d706f72746564206e616d6520697320676976656e0a3b3b20626f746820616e206f776e657220616e6420736f6d65206f66662d636861696e2073746174652e20546869732073746570206973206f7074696f6e616c3b204e616d6573706163652063726561746f727320617265206e6f7420726571756972656420746f20696d706f7274206e616d65732e0a28646566696e652d7075626c696320286e616d652d696d706f727420286e616d65737061636520286275666620323029290a20202020202020202020202020202020202020202020202020202020286e616d6520286275666620343829290a202020202020202020202020202020202020202020202020202020202862656e6566696369617279207072696e636970616c290a20202020202020202020202020202020202020202020202020202020287a6f6e6566696c652d686173682028627566662032302929290a2020286c657420280a20202020286e616d6573706163652d70726f70732028756e77726170210a202020202020286d61702d6765743f206e616d65737061636573206e616d657370616365290a20202020202028657272204552525f4e414d4553504143455f4e4f545f464f554e44292929290a2020202020203b3b20546865206e616d65206d757374206f6e6c7920686176652076616c69642063686172730a2020202020202861737365727473210a2020202020202020286e6f7420286861732d696e76616c69642d6368617273206e616d6529290a202020202020202028657272204552525f4e414d455f434841525345545f494e56414c494429290a2020202020203b3b205468652073656e646572207072696e636970616c206d757374206d6174636820746865206e616d657370616365277320696d706f7274207072696e636970616c0a2020202020202861737365727473210a20202020202020202869732d65712028676574206e616d6573706163652d696d706f7274206e616d6573706163652d70726f7073292074782d73656e646572290a202020202020202028657272204552525f4e414d4553504143455f4f5045524154494f4e5f554e415554484f52495a454429290a2020202020203b3b20546865206e616d652773206e616d657370616365206d757374206e6f74206265206c61756e636865640a2020202020202861737365727473210a20202020202020202869732d6e6f6e652028676574206c61756e636865642d6174206e616d6573706163652d70726f707329290a202020202020202028657272204552525f4e414d4553504143455f414c52454144595f4c41554e4348454429290a2020202020203b3b204c657373207468616e20312079656172206d7573742068617665207061737365642073696e636520746865206e616d65737061636520776173202272657665616c6564220a2020202020202861737365727473210a2020202020202020283c20626c6f636b2d68656967687420282b20286765742072657665616c65642d6174206e616d6573706163652d70726f707329204e414d4553504143455f4c41554e43484142494c4954595f54544c29290a202020202020202028657272204552525f4e414d4553504143455f5052454f524445525f4c41554e43484142494c4954595f4558504952454429290a2020202020203b3b204d696e7420746865206e6577206e616d650a202020202020287472792120286d696e742d6f722d7472616e736665722d6e616d653f206e616d657370616365206e616d652062656e656669636961727929290a2020202020203b3b20557064617465207a6f6e6566696c6520616e642070726f70730a202020202020287570646174652d7a6f6e6566696c652d616e642d70726f70730a20202020202020206e616d657370616365200a20202020202020206e616d6520200a20202020202020206e6f6e650a202020202020202028736f6d6520626c6f636b2d68656967687429203b3b2053657420696d706f727465642d61740a20202020202020206e6f6e650a20202020202020207a6f6e6566696c652d686173680a2020202020202020226e616d652d696d706f727422290a202020202020286f6b20747275652929290a0a3b3b204e414d4553504143455f52454144590a3b3b205468652066696e616c2073746570206f66207468652070726f63657373206c61756e6368657320746865206e616d65737061636520616e64206d616b657320746865206e616d65737061636520617661696c61626c6520746f20746865207075626c69632e204f6e63652061206e616d6573706163650a3b3b206973206c61756e636865642c20616e796f6e652063616e2072656769737465722061206e616d6520696e2069742069662074686579207061792074686520617070726f70726961746520616d6f756e74206f662063727970746f63757272656e63792e0a28646566696e652d7075626c696320286e616d6573706163652d726561647920286e616d6573706163652028627566662032302929290a2020286c657420280a202020202020286e616d6573706163652d70726f70732028756e77726170210a2020202020202020286d61702d6765743f206e616d65737061636573206e616d657370616365290a202020202020202028657272204552525f4e414d4553504143455f4e4f545f464f554e44292929290a202020203b3b205468652073656e646572207072696e636970616c206d757374206d6174636820746865206e616d657370616365277320696d706f7274207072696e636970616c0a202020202861737365727473210a2020202020202869732d65712028676574206e616d6573706163652d696d706f7274206e616d6573706163652d70726f7073292074782d73656e646572290a20202020202028657272204552525f4e414d4553504143455f4f5045524154494f4e5f554e415554484f52495a454429290a202020203b3b20546865206e616d652773206e616d657370616365206d757374206e6f74206265206c61756e636865640a202020202861737365727473210a2020202020202869732d6e6f6e652028676574206c61756e636865642d6174206e616d6573706163652d70726f707329290a20202020202028657272204552525f4e414d4553504143455f414c52454144595f4c41554e4348454429290a202020203b3b204c657373207468616e20312079656172206d7573742068617665207061737365642073696e636520746865206e616d65737061636520776173202272657665616c6564220a202020202861737365727473210a202020202020283c20626c6f636b2d68656967687420282b20286765742072657665616c65642d6174206e616d6573706163652d70726f707329204e414d4553504143455f4c41554e43484142494c4954595f54544c29290a20202020202028657272204552525f4e414d4553504143455f5052454f524445525f4c41554e43484142494c4954595f45585049524544292920202020202020200a20202020286c65742028286e616d6573706163652d70726f70732d7570646174656420286d65726765206e616d6573706163652d70726f7073207b206c61756e636865642d61743a2028736f6d6520626c6f636b2d68656967687429207d2929290a2020202020203b3b20546865206e616d6573706163652077696c6c2062652073657420746f20226c61756e63686564220a202020202020286d61702d736574206e616d65737061636573206e616d657370616365206e616d6573706163652d70726f70732d75706461746564290a2020202020203b3b20456d697420616e206576656e740a202020202020287072696e74207b206e616d6573706163653a206e616d6573706163652c207374617475733a20227265616479222c2070726f706572746965733a206e616d6573706163652d70726f70732d75706461746564207d290a202020202020286f6b2074727565292929290a0a3b3b204e414d4553504143455f5550444154455f46554e4354494f4e5f50524943450a28646566696e652d7075626c696320286e616d6573706163652d7570646174652d66756e6374696f6e2d707269636520286e616d65737061636520286275666620323029290a2020202020202020202020202020202020202020202020202020202020202020202020202020202028702d66756e632d626173652075696e74290a2020202020202020202020202020202020202020202020202020202020202020202020202020202028702d66756e632d636f6566662075696e74290a2020202020202020202020202020202020202020202020202020202020202020202020202020202028702d66756e632d62312075696e74290a2020202020202020202020202020202020202020202020202020202020202020202020202020202028702d66756e632d62322075696e74290a2020202020202020202020202020202020202020202020202020202020202020202020202020202028702d66756e632d62332075696e74290a2020202020202020202020202020202020202020202020202020202020202020202020202020202028702d66756e632d62342075696e74290a2020202020202020202020202020202020202020202020202020202020202020202020202020202028702d66756e632d62352075696e74290a2020202020202020202020202020202020202020202020202020202020202020202020202020202028702d66756e632d62362075696e74290a2020202020202020202020202020202020202020202020202020202020202020202020202020202028702d66756e632d62372075696e74290a2020202020202020202020202020202020202020202020202020202020202020202020202020202028702d66756e632d62382075696e74290a2020202020202020202020202020202020202020202020202020202020202020202020202020202028702d66756e632d62392075696e74290a2020202020202020202020202020202020202020202020202020202020202020202020202020202028702d66756e632d6231302075696e74290a2020202020202020202020202020202020202020202020202020202020202020202020202020202028702d66756e632d6231312075696e74290a2020202020202020202020202020202020202020202020202020202020202020202020202020202028702d66756e632d6231322075696e74290a2020202020202020202020202020202020202020202020202020202020202020202020202020202028702d66756e632d6231332075696e74290a2020202020202020202020202020202020202020202020202020202020202020202020202020202028702d66756e632d6231342075696e74290a2020202020202020202020202020202020202020202020202020202020202020202020202020202028702d66756e632d6231352075696e74290a2020202020202020202020202020202020202020202020202020202020202020202020202020202028702d66756e632d6231362075696e74290a2020202020202020202020202020202020202020202020202020202020202020202020202020202028702d66756e632d6e6f6e2d616c7068612d646973636f756e742075696e74290a2020202020202020202020202020202020202020202020202020202020202020202020202020202028702d66756e632d6e6f2d766f77656c2d646973636f756e742075696e7429290a2020286c657420280a202020202020286e616d6573706163652d70726f70732028756e77726170210a2020202020202020286d61702d6765743f206e616d65737061636573206e616d657370616365290a202020202020202028657272204552525f4e414d4553504143455f4e4f545f464f554e442929290a2020202020202870726963652d66756e6374696f6e20287475706c65200a2020202020202020286275636b65747320286c6973740a20202020202020202020702d66756e632d62310a20202020202020202020702d66756e632d62320a20202020202020202020702d66756e632d62330a20202020202020202020702d66756e632d62340a20202020202020202020702d66756e632d62350a20202020202020202020702d66756e632d62360a20202020202020202020702d66756e632d62370a20202020202020202020702d66756e632d62380a20202020202020202020702d66756e632d62390a20202020202020202020702d66756e632d6231300a20202020202020202020702d66756e632d6231310a20202020202020202020702d66756e632d6231320a20202020202020202020702d66756e632d6231330a20202020202020202020702d66756e632d6231340a20202020202020202020702d66756e632d6231350a20202020202020202020702d66756e632d62313629290a2020202020202020286261736520702d66756e632d62617365290a202020202020202028636f65666620702d66756e632d636f656666290a2020202020202020286e6f6e616c7068612d646973636f756e7420702d66756e632d6e6f6e2d616c7068612d646973636f756e74290a2020202020202020286e6f2d766f77656c2d646973636f756e7420702d66756e632d6e6f2d766f77656c2d646973636f756e74292929290a202020203b3b205468652073656e646572207072696e636970616c206d757374206d6174636820746865206e616d657370616365277320696d706f7274207072696e636970616c0a202020202861737365727473210a2020202020202869732d65712028676574206e616d6573706163652d696d706f7274206e616d6573706163652d70726f7073292074782d73656e646572290a20202020202028657272204552525f4e414d4553504143455f4f5045524154494f4e5f554e415554484f52495a454429290a202020203b3b20546865206e616d6573706163652070726963652066756e6374696f6e206d757374207374696c6c206265206564697461626c650a202020202861737365727473210a202020202020286765742063616e2d7570646174652d70726963652d66756e6374696f6e206e616d6573706163652d70726f7073290a20202020202028657272204552525f4e414d4553504143455f4f5045524154494f4e5f554e415554484f52495a454429290a20202020286d61702d736574206e616d657370616365730a2020202020206e616d6573706163650a202020202020286d65726765206e616d6573706163652d70726f7073207b2070726963652d66756e6374696f6e3a2070726963652d66756e6374696f6e207d29290a20202020286f6b20747275652929290a0a3b3b204e414d4553504143455f5245564f4b455f50524943455f45444954494f4e0a28646566696e652d7075626c696320286e616d6573706163652d7265766f6b652d66756e6374696f6e2d70726963652d65646974696f6e20286e616d6573706163652028627566662032302929290a2020286c657420280a202020202020286e616d6573706163652d70726f70732028756e77726170210a2020202020202020286d61702d6765743f206e616d65737061636573206e616d657370616365290a202020202020202028657272204552525f4e414d4553504143455f4e4f545f464f554e44292929290a202020203b3b205468652073656e646572207072696e636970616c206d757374206d6174636820746865206e616d657370616365277320696d706f7274207072696e636970616c0a202020202861737365727473210a2020202020202869732d65712028676574206e616d6573706163652d696d706f7274206e616d6573706163652d70726f7073292074782d73656e646572290a20202020202028657272204552525f4e414d4553504143455f4f5045524154494f4e5f554e415554484f52495a454429290a20202020286d61702d736574206e616d657370616365730a2020202020206e616d6573706163650a202020202020286d65726765206e616d6573706163652d70726f7073207b2063616e2d7570646174652d70726963652d66756e6374696f6e3a2066616c7365207d29290a20202020286f6b20747275652929290a0a3b3b204e414d455f5052454f524445520a3b3b205468697320697320746865206669727374207472616e73616374696f6e20746f2062652073656e742e2049742074656c6c7320616c6c20424e53206e6f646573207468652073616c7465642068617368206f662074686520424e53206e616d652c0a3b3b20616e64206974206275726e732074686520726567697374726174696f6e206665652e0a28646566696e652d7075626c696320286e616d652d7072656f7264657220286861736865642d73616c7465642d66716e20286275666620323029290a202020202020202020202020202020202020202020202020202020202020287374782d746f2d6275726e2075696e7429290a2020286c6574200a202020202828666f726d65722d7072656f72646572200a202020202020286d61702d6765743f206e616d652d7072656f7264657273207b206861736865642d73616c7465642d66716e3a206861736865642d73616c7465642d66716e2c2062757965723a2074782d73656e646572207d2929290a202020203b3b20456e73757265206576656e7475616c20666f726d6572207072652d6f726465722065787069726564200a20202020286173736572747321200a202020202020286966202869732d6e6f6e6520666f726d65722d7072656f72646572290a2020202020202020747275650a2020202020202020283e3d20626c6f636b2d68656967687420282b204e414d455f5052454f524445525f434c41494d4142494c4954595f54544c0a2020202020202020202020202020202020202020202020202020202028756e777261702d70616e6963202867657420637265617465642d617420666f726d65722d7072656f7264657229292929290a20202020202028657272204552525f4e414d455f5052454f524445525f414c52454144595f45584953545329290a2020202020202020202028617373657274732120283e207374782d746f2d6275726e207530292028657272204552525f4e414d4553504143455f5354585f4255524e545f494e53554646494349454e542929202020200a202020203b3b20456e73757265207468617420746865206861736865642066716e206973203230206279746573206c6f6e670a20202020286173736572747321202869732d657120286c656e206861736865642d73616c7465642d66716e2920753230292028657272204552525f4e414d455f484153485f4d414c464f524d454429290a202020203b3b20456e73757265207468617420757365722077696c6c206265206275726e696e67206120706f73697469766520616d6f756e74206f6620746f6b656e730a2020202028617373657274732120283e207374782d746f2d6275726e207530292028657272204552525f4e414d455f5354585f4255524e545f494e53554646494349454e5429290a202020203b3b204275726e2074686520746f6b656e730a2020202028756e777261702120287374782d6275726e3f207374782d746f2d6275726e2074782d73656e646572292028657272204552525f494e53554646494349454e545f46554e445329290a202020203b3b20526567697374657220746865207072652d6f726465720a20202020286d61702d736574206e616d652d7072656f72646572730a2020202020207b206861736865642d73616c7465642d66716e3a206861736865642d73616c7465642d66716e2c2062757965723a2074782d73656e646572207d0a2020202020207b20637265617465642d61743a20626c6f636b2d6865696768742c207374782d6275726e65643a207374782d746f2d6275726e2c20636c61696d65643a2066616c7365207d290a20202020286f6b20282b20626c6f636b2d686569676874204e414d455f5052454f524445525f434c41494d4142494c4954595f54544c292929290a0a3b3b204e414d455f524547495354524154494f4e0a3b3b205468697320697320746865207365636f6e64207472616e73616374696f6e20746f2062652073656e742e2049742072657665616c73207468652073616c7420616e6420746865206e616d6520746f20616c6c20424e53206e6f6465732c0a3b3b20616e642061737369676e7320746865206e616d6520616e20696e697469616c207075626c6963206b6579206861736820616e64207a6f6e652066696c6520686173680a28646566696e652d7075626c696320286e616d652d726567697374657220286e616d65737061636520286275666620323029290a202020202020202020202020202020202020202020202020202020202020286e616d6520286275666620343829290a2020202020202020202020202020202020202020202020202020202020202873616c7420286275666620323029290a202020202020202020202020202020202020202020202020202020202020287a6f6e6566696c652d686173682028627566662032302929290a2020286c657420280a20202020286861736865642d73616c7465642d66716e2028686173683136302028636f6e6361742028636f6e6361742028636f6e636174206e616d65203078326529206e616d657370616365292073616c742929290a20202020286e616d6573706163652d70726f70732028756e77726170210a20202020202020202020286d61702d6765743f206e616d65737061636573206e616d657370616365290a2020202020202020202028657272204552525f4e414d4553504143455f4e4f545f464f554e442929290a20202020287072656f726465722028756e77726170210a202020202020286d61702d6765743f206e616d652d7072656f7264657273207b206861736865642d73616c7465642d66716e3a206861736865642d73616c7465642d66716e2c2062757965723a2074782d73656e646572207d290a20202020202028657272204552525f4e414d455f5052454f524445525f4e4f545f464f554e44292929290a2020202020203b3b20546865206e616d652063616e20626520726567697374657265640a202020202020286173736572747321202874727921202863616e2d6e616d652d62652d72656769737465726564206e616d657370616365206e616d6529290a202020202020202028657272204552525f4e414d455f554e415641494c41424c4529290a2020202020203b3b20546865207072656f72646572206d7573742068617665206265656e206372656174656420616674657220746865206c61756e6368206f6620746865206e616d6573706163650a2020202020202861737365727473210a2020202020202020283e202867657420637265617465642d6174207072656f72646572292028756e777261702d70616e69632028676574206c61756e636865642d6174206e616d6573706163652d70726f70732929290a202020202020202028657272204552525f4e414d455f5052454f5244455245445f4245464f52455f4e414d4553504143455f4c41554e434829290a2020202020203b3b20546865207072656f7264657220656e747279206d75737420626520756e636c61696d65640a2020202020202861737365727473210a20202020202020202869732d6571202867657420636c61696d6564207072656f72646572292066616c7365290a202020202020202028657272204552525f4e414d455f414c52454144595f434c41494d454429290a2020202020203b3b204c657373207468616e20323420686f757273206d7573742068617665207061737365642073696e636520746865206e616d6520776173207072656f7264657265640a2020202020202861737365727473210a2020202020202020283c20626c6f636b2d68656967687420282b202867657420637265617465642d6174207072656f7264657229204e414d455f5052454f524445525f434c41494d4142494c4954595f54544c29290a202020202020202028657272204552525f4e414d455f434c41494d4142494c4954595f4558504952454429290a2020202020203b3b2054686520616d6f756e74206275726e74206d75737420626520657175616c20746f206f722067726561746572207468616e2074686520636f7374206f6620746865206e616d650a2020202020202861737365727473210a2020202020202020283e3d2028676574207374782d6275726e6564207072656f72646572292028636f6d707574652d6e616d652d7072696365206e616d6520286765742070726963652d66756e6374696f6e206e616d6573706163652d70726f70732929290a202020202020202028657272204552525f4e414d455f5354585f4255524e545f494e53554646494349454e5429290a2020202020203b3b204d696e7420746865206e616d65206966206e65772c207472616e7366657220746865206e616d65206f74686572776973652e0a202020202020287472792120286d696e742d6f722d7472616e736665722d6e616d653f206e616d657370616365206e616d652074782d73656e64657229290a2020202020203b3b20557064617465206e616d652773206d65746164617461202f2070726f706572746965730a202020202020287570646174652d7a6f6e6566696c652d616e642d70726f70730a20202020202020206e616d657370616365200a20202020202020206e616d650a202020202020202028736f6d6520626c6f636b2d686569676874290a20202020202020206e6f6e650a20202020202020206e6f6e650a20202020202020207a6f6e6566696c652d686173680a2020202020202020226e616d652d726567697374657222290a202020202020286f6b20747275652929290a0a3b3b204e414d455f5550444154450a3b3b2041204e414d455f555044415445207472616e73616374696f6e206368616e67657320746865206e616d652773207a6f6e652066696c6520686173682e20596f7520776f756c642073656e64206f6e65206f66207468657365207472616e73616374696f6e73200a3b3b20696620796f752077616e74656420746f206368616e676520746865206e616d652773207a6f6e652066696c6520636f6e74656e74732e200a3b3b20466f72206578616d706c652c20796f7520776f756c6420646f207468697320696620796f752077616e7420746f206465706c6f7920796f7572206f776e20476169612068756220616e642077616e74206f746865722070656f706c6520746f20726561642066726f6d2069742e0a28646566696e652d7075626c696320286e616d652d75706461746520286e616d65737061636520286275666620323029290a20202020202020202020202020202020202020202020202020202020286e616d6520286275666620343829290a20202020202020202020202020202020202020202020202020202020287a6f6e6566696c652d686173682028627566662032302929290a2020286c657420280a2020202028646174612028747279212028636865636b2d6e616d652d6f70732d707265636f6e646974696f6e73206e616d657370616365206e616d65292929290a202020203b3b2055706461746520746865207a6f6e6566696c650a20202020287570646174652d7a6f6e6566696c652d616e642d70726f70730a2020202020206e616d657370616365200a2020202020206e616d6520200a2020202020202867657420726567697374657265642d61742028676574206e616d652d70726f7073206461746129290a2020202020202867657420696d706f727465642d61742028676574206e616d652d70726f7073206461746129290a2020202020206e6f6e650a2020202020207a6f6e6566696c652d686173680a202020202020226e616d652d75706461746522290a20202020286f6b20747275652929290a0a3b3b204e414d455f5452414e534645520a3b3b2041204e414d455f5452414e53464552207472616e73616374696f6e206368616e67657320746865206e616d652773207075626c6963206b657920686173682e20596f7520776f756c642073656e64206f6e65206f66207468657365207472616e73616374696f6e7320696620796f752077616e74656420746f3a0a3b3b202d204368616e676520796f75722070726976617465206b65790a3b3b202d2053656e6420746865206e616d6520746f20736f6d656f6e6520656c73650a3b3b205768656e207472616e7366657272696e672061206e616d652c20796f75206861766520746865206f7074696f6e20746f20616c736f20636c65617220746865206e616d652773207a6f6e652066696c6520686173682028692e652e2073657420697420746f206e756c6c292e200a3b3b20546869732069732075736566756c20666f72207768656e20796f752073656e6420746865206e616d6520746f20736f6d656f6e6520656c73652c20736f2074686520726563697069656e742773206e616d6520646f6573206e6f74207265736f6c766520746f20796f7572207a6f6e652066696c652e0a28646566696e652d7075626c696320286e616d652d7472616e7366657220286e616d65737061636520286275666620323029290a202020202020202020202020202020202020202020202020202020202020286e616d6520286275666620343829290a202020202020202020202020202020202020202020202020202020202020286e65772d6f776e6572207072696e636970616c290a202020202020202020202020202020202020202020202020202020202020287a6f6e6566696c652d6861736820286f7074696f6e616c202862756666203230292929290a2020286c657420280a2020202028646174612028747279212028636865636b2d6e616d652d6f70732d707265636f6e646974696f6e73206e616d657370616365206e616d652929290a202020202863616e2d6e65772d6f776e65722d6765742d6e616d65202874727921202863616e2d726563656976652d6e616d65206e65772d6f776e6572292929290a202020203b3b20546865206e6577206f776e657220646f6573206e6f74206f776e2061206e616d650a202020202861737365727473210a20202020202063616e2d6e65772d6f776e65722d6765742d6e616d650a20202020202028657272204552525f5052494e434950414c5f414c52454144595f4153534f43494154454429290a202020203b3b205472616e7366657220746865206e616d650a2020202028756e77726170210a202020202020287570646174652d6e616d652d6f776e6572736869703f206e616d657370616365206e616d652074782d73656e646572206e65772d6f776e6572290a20202020202028657272204552525f4e414d455f5452414e534645525f4641494c454429290a202020203b3b20557064617465206f7220636c65617220746865207a6f6e6566696c650a20202020287570646174652d7a6f6e6566696c652d616e642d70726f70730a20202020202020206e616d657370616365200a20202020202020206e616d6520200a20202020202020202867657420726567697374657265642d61742028676574206e616d652d70726f7073206461746129290a20202020202020202867657420696d706f727465642d61742028676574206e616d652d70726f7073206461746129290a20202020202020206e6f6e650a2020202020202020286966202869732d6e6f6e65207a6f6e6566696c652d68617368290a2020202020202020202030780a2020202020202020202028756e777261702d70616e6963207a6f6e6566696c652d6861736829290a2020202020202020226e616d652d7472616e7366657222290a20202020286f6b20747275652929290a0a3b3b204e414d455f5245564f4b450a3b3b2041204e414d455f5245564f4b45207472616e73616374696f6e206d616b65732061206e616d6520756e7265736f6c7661626c652e2054686520424e5320636f6e73656e7375732072756c65732073746970756c6174652074686174206f6e63652061206e616d65200a3b3b206973207265766f6b65642c206e6f206f6e652063616e206368616e676520697473207075626c6963206b65792068617368206f7220697473207a6f6e652066696c6520686173682e200a3b3b20546865206e616d652773207a6f6e652066696c6520686173682069732073657420746f206e756c6c20746f2070726576656e742069742066726f6d207265736f6c76696e672e0a3b3b20596f752073686f756c64206f6e6c7920646f207468697320696620796f75722070726976617465206b657920697320636f6d70726f6d697365642c206f7220696620796f752077616e7420746f2072656e64657220796f7572206e616d6520756e757361626c6520666f7220776861746576657220726561736f6e2e0a28646566696e652d7075626c696320286e616d652d7265766f6b6520286e616d65737061636520286275666620323029290a20202020202020202020202020202020202020202020202020202020286e616d652028627566662034382929290a2020286c657420280a2020202028646174612028747279212028636865636b2d6e616d652d6f70732d707265636f6e646974696f6e73206e616d657370616365206e616d65292929290a202020203b3b20436c65617220746865207a6f6e6566696c650a20202020287570646174652d7a6f6e6566696c652d616e642d70726f70730a20202020202020206e616d657370616365200a20202020202020206e616d6520200a20202020202020202867657420726567697374657265642d61742028676574206e616d652d70726f7073206461746129290a20202020202020202867657420696d706f727465642d61742028676574206e616d652d70726f7073206461746129290a202020202020202028736f6d6520626c6f636b2d686569676874290a202020202020202030780a2020202020202020226e616d652d7265766f6b6522290a20202020286f6b20747275652929290a0a3b3b204e414d455f52454e4557414c0a3b3b20446570656e64696e6720696e20746865206e616d6573706163652072756c65732c2061206e616d652063616e206578706972652e20466f72206578616d706c652c206e616d657320696e20746865202e6964206e616d6573706163652065787069726520616674657220322079656172732e200a3b3b20596f75206e65656420746f2073656e642061204e414d455f52454e4557414c20657665727920736f206f6674656e20746f206b65657020796f7572206e616d652e0a3b3b20596f752077696c6c207061792074686520726567697374726174696f6e20636f7374206f6620796f7572206e616d6520746f20746865206e616d65737061636527732064657369676e61746564206275726e2061646472657373207768656e20796f752072656e65772069742e0a3b3b205768656e2061206e616d6520657870697265732c20697420656e746572732061206d6f6e74682d6c6f6e672022677261636520706572696f642220283530303020626c6f636b73292e200a3b3b2049742077696c6c2073746f70207265736f6c76696e6720696e2074686520677261636520706572696f642c20616e6420616c6c206f66207468652061626f7665206f7065726174696f6e732077696c6c20636561736520746f20626520686f6e6f7265642062792074686520424e5320636f6e73656e7375732072756c65732e0a3b3b20596f75206d61792c20686f77657665722c2073656e642061204e414d455f52454e4557414c20647572696e67207468697320677261636520706572696f6420746f20707265736572766520796f7572206e616d652e0a3b3b20496620796f7572206e616d6520697320696e2061206e616d657370616365207768657265206e616d657320646f206e6f74206578706972652c207468656e20796f75206e65766572206e65656420746f207573652074686973207472616e73616374696f6e2e0a28646566696e652d7075626c696320286e616d652d72656e6577616c20286e616d65737061636520286275666620323029290a2020202020202020202020202020202020202020202020202020202020286e616d6520286275666620343829290a2020202020202020202020202020202020202020202020202020202020287374782d746f2d6275726e2075696e74290a2020202020202020202020202020202020202020202020202020202020286e65772d6f776e657220286f7074696f6e616c207072696e636970616c29290a2020202020202020202020202020202020202020202020202020202020287a6f6e6566696c652d6861736820286f7074696f6e616c202862756666203230292929290a2020286c657420280a20202020286e616d6573706163652d70726f70732028756e77726170210a202020202020286d61702d6765743f206e616d65737061636573206e616d657370616365290a20202020202028657272204552525f4e414d4553504143455f4e4f545f464f554e442929290a20202020286f776e65722028756e77726170210a202020202020286e66742d6765742d6f776e65723f206e616d6573207b206e616d653a206e616d652c206e616d6573706163653a206e616d657370616365207d290a20202020202028657272204552525f4e414d455f4e4f545f464f554e44292929203b3b20546865206e616d65206d7573742065786973740a20202020286e616d652d70726f70732028756e77726170210a202020202020286d61702d6765743f206e616d652d70726f70657274696573207b206e616d653a206e616d652c206e616d6573706163653a206e616d657370616365207d290a20202020202028657272204552525f4e414d455f4e4f545f464f554e4429292929203b3b20546865206e616d65206d7573742065786973740a202020203b3b20546865206e616d657370616365206d757374206265206c61756e636865640a202020202861737365727473210a2020202020202869732d736f6d652028676574206c61756e636865642d6174206e616d6573706163652d70726f707329290a20202020202028657272204552525f4e414d4553504143455f4e4f545f4c41554e4348454429290a202020203b3b20546865206e616d6573706163652073686f756c6420726571756972652072656e6577616c730a202020202861737365727473210a202020202020283e2028676574206c69666574696d65206e616d6573706163652d70726f707329207530290a20202020202028657272204552525f4e414d455f4f5045524154494f4e5f554e415554484f52495a454429290a202020203b3b205468652073656e646572206d757374206d6174636820746865206e616d6527732063757272656e74206f776e65720a202020202861737365727473210a2020202020202869732d6571206f776e65722074782d73656e646572290a20202020202028657272204552525f4e414d455f4f5045524154494f4e5f554e415554484f52495a454429290a202020203b3b20496620657870697265642c20746865206e616d65206d75737420626520696e207468652072656e6577616c20677261636520706572696f642e0a20202020286966202874727921202869732d6e616d652d6c656173652d65787069726564206e616d657370616365206e616d6529290a2020202020202861737365727473210a20202020202020202869732d6571202874727921202869732d6e616d652d696e2d67726163652d706572696f64206e616d657370616365206e616d6529292074727565290a202020202020202028657272204552525f4e414d455f4558504952454429290a20202020202074727565290a202020203b3b2054686520616d6f756e74206275726e74206d75737420626520657175616c20746f206f722067726561746572207468616e2074686520636f7374206f6620746865206e616d6573706163650a202020202861737365727473210a202020202020283e3d207374782d746f2d6275726e2028636f6d707574652d6e616d652d7072696365206e616d6520286765742070726963652d66756e6374696f6e206e616d6573706163652d70726f70732929290a20202020202028657272204552525f4e414d455f5354585f4255524e545f494e53554646494349454e5429290a202020203b3b20546865206e616d65206d757374206e6f74206265207265766f6b65640a202020202861737365727473210a2020202020202869732d6e6f6e652028676574207265766f6b65642d6174206e616d652d70726f707329290a20202020202028657272204552525f4e414d455f5245564f4b454429290a202020203b3b205472616e7366657220746865206e616d652c20696620616e79206e65772d6f776e65720a20202020286966202869732d6e6f6e65206e65772d6f776e6572290a20202020202074727565200a2020202020202874727921202863616e2d726563656976652d6e616d652028756e777261702d70616e6963206e65772d6f776e6572292929290a202020203b3b2055706461746520746865207a6f6e6566696c652c20696620616e792e0a20202020286966202869732d6e6f6e65207a6f6e6566696c652d68617368290a202020202020286d61702d736574206e616d652d70726f706572746965730a20202020202020207b206e616d653a206e616d652c206e616d6573706163653a206e616d657370616365207d0a20202020202020207b20726567697374657265642d61743a2028736f6d6520626c6f636b2d686569676874292c0a20202020202020202020696d706f727465642d61743a206e6f6e652c0a202020202020202020207265766f6b65642d61743a206e6f6e652c0a202020202020202020207a6f6e6566696c652d686173683a2028676574207a6f6e6566696c652d68617368206e616d652d70726f707329207d290a202020202020287570646174652d7a6f6e6566696c652d616e642d70726f70730a20202020202020202020202020206e616d657370616365200a20202020202020202020202020206e616d650a202020202020202020202020202028736f6d6520626c6f636b2d686569676874290a20202020202020202020202020206e6f6e650a20202020202020202020202020206e6f6e650a202020202020202020202020202028756e777261702d70616e6963207a6f6e6566696c652d68617368290a2020202020202020202020202020226e616d652d72656e6577616c22292920200a20202020286f6b20747275652929290a0a3b3b204164646974696f6e616c73207075626c6963206d6574686f64730a0a28646566696e652d726561642d6f6e6c7920286765742d6e616d6573706163652d707269636520286e616d6573706163652028627566662032302929290a2020286c65742028286e616d6573706163652d6c656e20286c656e206e616d6573706163652929290a202020202861737365727473210a202020202020283e206e616d6573706163652d6c656e207530290a20202020202028657272204552525f4e414d4553504143455f424c414e4b29290a20202020286f6b2028756e777261702d70616e69630a20202020202028656c656d656e742d6174204e414d4553504143455f50524943455f544945525320286d696e20753720282d206e616d6573706163652d6c656e207531292929292929290a0a28646566696e652d726561642d6f6e6c7920286765742d6e616d652d707269636520286e616d657370616365202862756666203230292920286e616d652028627566662034382929290a2020286c657420280a202020202020286e616d6573706163652d70726f70732028756e77726170210a2020202020202020286d61702d6765743f206e616d65737061636573206e616d657370616365290a202020202020202028657272204552525f4e414d4553504143455f4e4f545f464f554e44292929290a20202020286f6b2028636f6d707574652d6e616d652d7072696365206e616d6520286765742070726963652d66756e6374696f6e206e616d6573706163652d70726f707329292929290a0a28646566696e652d726561642d6f6e6c792028636865636b2d6e616d652d6f70732d707265636f6e646974696f6e7320286e616d657370616365202862756666203230292920286e616d652028627566662034382929290a2020286c657420280a20202020286f776e65722028756e77726170210a202020202020286e66742d6765742d6f776e65723f206e616d6573207b206e616d653a206e616d652c206e616d6573706163653a206e616d657370616365207d290a20202020202028657272204552525f4e414d455f4e4f545f464f554e44292929203b3b20546865206e616d65206d7573742065786973740a20202020286e616d6573706163652d70726f70732028756e77726170210a202020202020286d61702d6765743f206e616d65737061636573206e616d657370616365290a20202020202028657272204552525f4e414d4553504143455f4e4f545f464f554e442929290a20202020286e616d652d70726f70732028756e77726170210a202020202020286d61702d6765743f206e616d652d70726f70657274696573207b206e616d653a206e616d652c206e616d6573706163653a206e616d657370616365207d290a20202020202028657272204552525f4e414d455f4e4f545f464f554e4429292929203b3b20546865206e616d65206d7573742065786973740a2020202020203b3b20546865206e616d657370616365206d757374206265206c61756e636865640a2020202020202861737365727473210a20202020202020202869732d736f6d652028676574206c61756e636865642d6174206e616d6573706163652d70726f707329290a202020202020202028657272204552525f4e414d4553504143455f4e4f545f4c41554e4348454429290a2020202020203b3b205468652073656e646572206d757374206d6174636820746865206e616d6527732063757272656e74206f776e65720a2020202020202861737365727473210a20202020202020202869732d6571206f776e65722074782d73656e646572290a202020202020202028657272204552525f4e414d455f4f5045524154494f4e5f554e415554484f52495a454429290a2020202020203b3b20546865206e616d65206d757374206e6f7420626520696e207468652072656e6577616c20677261636520706572696f640a2020202020202861737365727473210a20202020202020202869732d6571202874727921202869732d6e616d652d696e2d67726163652d706572696f64206e616d657370616365206e616d6529292066616c7365290a202020202020202028657272204552525f4e414d455f47524143455f504552494f4429290a2020202020203b3b20546865206e616d65206d757374206e6f7420626520657870697265640a2020202020202861737365727473210a20202020202020202869732d6571202874727921202869732d6e616d652d6c656173652d65787069726564206e616d657370616365206e616d6529292066616c7365290a202020202020202028657272204552525f4e414d455f4558504952454429290a2020202020203b3b20546865206e616d65206d757374206e6f74206265207265766f6b65640a2020202020202861737365727473210a20202020202020202869732d6e6f6e652028676574207265766f6b65642d6174206e616d652d70726f707329290a202020202020202028657272204552525f4e414d455f5245564f4b454429290a202020202020286f6b207b206e616d6573706163652d70726f70733a206e616d6573706163652d70726f70732c206e616d652d70726f70733a206e616d652d70726f70732c206f776e65723a206f776e6572207d2929290a0a28646566696e652d726561642d6f6e6c79202863616e2d6e616d6573706163652d62652d7265676973746572656420286e616d6573706163652028627566662032302929290a2020286f6b202869732d6e616d6573706163652d617661696c61626c65206e616d6573706163652929290a0a28646566696e652d726561642d6f6e6c79202869732d6e616d652d6c656173652d6578706972656420286e616d657370616365202862756666203230292920286e616d652028627566662034382929290a2020286c657420280a20202020286e616d6573706163652d70726f70732028756e7772617021200a202020202020286d61702d6765743f206e616d65737061636573206e616d65737061636529200a20202020202028657272204552525f4e414d4553504143455f4e4f545f464f554e442929290a20202020286e616d652d70726f70732028756e7772617021200a202020202020286d61702d6765743f206e616d652d70726f70657274696573207b206e616d653a206e616d652c206e616d6573706163653a206e616d657370616365207d29200a20202020202028657272204552525f4e414d455f4e4f545f464f554e442929290a20202020286c656173652d737461727465642d617420287472792120286e616d652d6c656173652d737461727465642d61743f2028676574206c61756e636865642d6174206e616d6573706163652d70726f70732920286765742072657665616c65642d6174206e616d6573706163652d70726f707329206e616d652d70726f70732929290a20202020286c69666574696d652028676574206c69666574696d65206e616d6573706163652d70726f70732929290a202020202020286966202869732d6571206c69666574696d65207530290a2020202020202020286f6b2066616c7365290a2020202020202020286f6b20283e20626c6f636b2d68656967687420282b206c69666574696d65206c656173652d737461727465642d61742929292929290a0a28646566696e652d726561642d6f6e6c79202869732d6e616d652d696e2d67726163652d706572696f6420286e616d657370616365202862756666203230292920286e616d652028627566662034382929290a2020286c657420280a20202020286e616d6573706163652d70726f70732028756e7772617021200a202020202020286d61702d6765743f206e616d65737061636573206e616d65737061636529200a20202020202028657272204552525f4e414d4553504143455f4e4f545f464f554e442929290a20202020286e616d652d70726f70732028756e7772617021200a202020202020286d61702d6765743f206e616d652d70726f70657274696573207b206e616d653a206e616d652c206e616d6573706163653a206e616d657370616365207d29200a20202020202028657272204552525f4e414d455f4e4f545f464f554e442929290a20202020286c656173652d737461727465642d617420287472792120286e616d652d6c656173652d737461727465642d61743f2028676574206c61756e636865642d6174206e616d6573706163652d70726f70732920286765742072657665616c65642d6174206e616d6573706163652d70726f707329206e616d652d70726f70732929290a20202020286c69666574696d652028676574206c69666574696d65206e616d6573706163652d70726f70732929290a202020202020286966202869732d6571206c69666574696d65207530290a2020202020202020286f6b2066616c7365290a2020202020202020286f6b2028616e64200a20202020202020202020283e20626c6f636b2d68656967687420282b206c69666574696d65206c656173652d737461727465642d61742929200a20202020202020202020283c3d20626c6f636b2d68656967687420282b20282b206c69666574696d65206c656173652d737461727465642d617429204e414d455f47524143455f504552494f445f4455524154494f4e292929292929290a0a28646566696e652d726561642d6f6e6c7920287265736f6c76652d7072696e636970616c20286f776e6572207072696e636970616c29290a2020286d6174636820286d61702d6765743f206f776e65722d6e616d65206f776e6572290a202020206e616d6520286d6174636820286e616d652d7265736f6c76652028676574206e616d657370616365206e616d65292028676574206e616d65206e616d6529290a2020202020207265736f6c7665642d6e616d6520286f6b206e616d65290a2020202020206572726f722028657272207b636f64653a206572726f722c206e616d653a2028736f6d65206e616d65297d29290a2020202028657272207b636f64653a204552525f4e414d455f4e4f545f464f554e442c206e616d653a206e6f6e657d2929290a0a28646566696e652d726561642d6f6e6c79202863616e2d726563656976652d6e616d6520286f776e6572207072696e636970616c29290a2020286c657420282863757272656e742d6f776e65642d6e616d6520286d61702d6765743f206f776e65722d6e616d65206f776e65722929290a20202020286966202869732d6e6f6e652063757272656e742d6f776e65642d6e616d65290a202020202020286f6b2074727565290a202020202020286c657420280a2020202020202020286e616d6573706163652028756e777261702d70616e69632028676574206e616d6573706163652063757272656e742d6f776e65642d6e616d652929290a2020202020202020286e616d652028756e777261702d70616e69632028676574206e616d652063757272656e742d6f776e65642d6e616d65292929290a2020202020202020286966202869732d6e616d6573706163652d617661696c61626c65206e616d657370616365290a20202020202020202020286f6b2074727565290a2020202020202020202028626567696e0a2020202020202020202020203b3b204561726c792072657475726e206966206c6561736520697320657870697265640a202020202020202020202020286173736572747321200a2020202020202020202020202020286e6f74202874727921202869732d6e616d652d6c656173652d65787069726564206e616d657370616365206e616d652929290a2020202020202020202020202020286f6b207472756529290a202020202020202020202020286c657420280a2020202020202020202020202020286e616d652d70726f70732028756e777261702d70616e696320286d61702d6765743f206e616d652d70726f70657274696573207b206e616d653a206e616d652c206e616d6573706163653a206e616d657370616365207d292929290a20202020202020202020202020203b3b20486173206e616d65206265656e207265766f6b65643f0a2020202020202020202020202020286173736572747321202869732d736f6d652028676574207265766f6b65642d6174206e616d652d70726f7073292920286f6b2066616c736529290a2020202020202020202020202020286f6b207472756529292929292929290a0a28646566696e652d726561642d6f6e6c79202863616e2d6e616d652d62652d7265676973746572656420286e616d657370616365202862756666203230292920286e616d652028627566662034382929290a2020286c657420280a20202020202028777261707065642d6e616d652d70726f707320286d61702d6765743f206e616d652d70726f70657274696573207b206e616d653a206e616d652c206e616d6573706163653a206e616d657370616365207d29290a202020202020286e616d6573706163652d70726f70732028756e777261702120286d61702d6765743f206e616d65737061636573206e616d6573706163652920286f6b2066616c7365292929290a202020203b3b20546865206e616d65206d757374206f6e6c7920686176652076616c69642063686172730a202020202861737365727473210a202020202020286e6f7420286861732d696e76616c69642d6368617273206e616d6529290a20202020202028657272204552525f4e414d455f434841525345545f494e56414c494429290a202020203b3b20456e737572652074686174206e616d65737061636520686173206265656e206c61756e63686564200a2020202028756e77726170212028676574206c61756e636865642d6174206e616d6573706163652d70726f70732920286f6b2066616c736529290a202020203b3b204561726c792072657475726e202d204e616d6520686173206e65766572206265206d696e7465640a20202020286173736572747321202869732d736f6d6520286e66742d6765742d6f776e65723f206e616d6573207b206e616d653a206e616d652c206e616d6573706163653a206e616d657370616365207d292920286f6b207472756529290a20202020286c65742028286e616d652d70726f70732028756e777261702d70616e696320777261707065642d6e616d652d70726f70732929290a2020202020203b3b20496e7465677269747920636865636b202d20456e73757265207468617420746865206e616d6520776173206569746865722022696d706f7274656422206f72202272656769737465726564222e0a202020202020286173736572747321202869732d65712028786f72200a2020202020202020286d61746368202867657420726567697374657265642d6174206e616d652d70726f7073292072657320312030290a2020202020202020286d61746368202867657420696d706f727465642d6174206e616d652d70726f7073292020207265732031203029292031292028657272204552525f50414e494329290a2020202020203b3b204973206c6561736520657870697265643f0a2020202020202869732d6e616d652d6c656173652d65787069726564206e616d657370616365206e616d65292929290a0a28646566696e652d726561642d6f6e6c7920286e616d652d7265736f6c766520286e616d657370616365202862756666203230292920286e616d652028627566662034382929290a2020286c657420280a20202020286f776e65722028756e77726170210a202020202020286e66742d6765742d6f776e65723f206e616d6573207b206e616d653a206e616d652c206e616d6573706163653a206e616d657370616365207d290a20202020202028657272204552525f4e414d455f4e4f545f464f554e44292929203b3b20546865206e616d65206d7573742065786973740a20202020286e616d652d70726f70732028756e77726170210a202020202020286d61702d6765743f206e616d652d70726f70657274696573207b206e616d653a206e616d652c206e616d6573706163653a206e616d657370616365207d290a20202020202028657272204552525f4e414d455f4e4f545f464f554e442929290a20202020286e616d6573706163652d70726f70732028756e7772617021200a202020202020286d61702d6765743f206e616d65737061636573206e616d65737061636529200a20202020202028657272204552525f4e414d4553504143455f4e4f545f464f554e44292929290a202020203b3b20546865206e616d65206d757374206e6f7420626520696e20677261636520706572696f640a202020202861737365727473210a202020202020286e6f74202874727921202869732d6e616d652d696e2d67726163652d706572696f64206e616d657370616365206e616d652929290a20202020202028657272204552525f4e414d455f47524143455f504552494f4429290a202020203b3b20546865206e616d65206d757374206e6f7420626520657870697265640a20202020286173736572747321200a202020202020286e6f74202874727921202869732d6e616d652d6c656173652d65787069726564206e616d657370616365206e616d652929290a20202020202028657272204552525f4e414d455f4558504952454429290a202020203b3b20546865206e616d65206d757374206e6f74206265207265766f6b65640a202020202861737365727473210a2020202020202869732d6e6f6e652028676574207265766f6b65642d6174206e616d652d70726f707329290a20202020202028657272204552525f4e414d455f5245564f4b454429290a202020203b3b2047657420746865207a6f6e6566696c650a20202020286c657420280a202020202020286c656173652d737461727465642d617420287472792120286e616d652d6c656173652d737461727465642d61743f2028676574206c61756e636865642d6174206e616d6573706163652d70726f70732920286765742072657665616c65642d6174206e616d6573706163652d70726f707329206e616d652d70726f7073292929290a202020202020286f6b207b200a20202020202020207a6f6e6566696c652d686173683a2028676574207a6f6e6566696c652d68617368206e616d652d70726f7073292c200a20202020202020206f776e65723a206f776e65722c0a20202020202020206c656173652d737461727465642d61743a206c656173652d737461727465642d61742c0a20202020202020206c656173652d656e64696e672d61743a20286966202869732d65712028676574206c69666574696d65206e616d6573706163652d70726f70732920753029206e6f6e652028736f6d6520282b206c656173652d737461727465642d61742028676574206c69666574696d65206e616d6573706163652d70726f7073292929290a2020202020207d292929290a0a28646566696e652d726561642d6f6e6c7920286765742d6e616d6573706163652d70726f7065727469657320286e616d6573706163652028627566662032302929290a2020286c657420280a20202020286e616d6573706163652d70726f70732028756e77726170210a202020202020286d61702d6765743f206e616d65737061636573206e616d657370616365290a20202020202028657272204552525f4e414d4553504143455f4e4f545f464f554e44292929290a20202020286f6b207b206e616d6573706163653a206e616d6573706163652c2070726f706572746965733a206e616d6573706163652d70726f7073207d2929290a", "status": "success", "tx_index": 4, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": {"maps": [{"key": {"tuple": [{"name": "buyer", "type": "principal"}, {"name": "hashed-salted-fqn", "type": {"buffer": {"length": 20}}}]}, "name": "name-preorders", "value": {"tuple": [{"name": "claimed", "type": "bool"}, {"name": "created-at", "type": "uint128"}, {"name": "stx-burned", "type": "uint128"}]}}, {"key": {"tuple": [{"name": "name", "type": {"buffer": {"length": 48}}}, {"name": "namespace", "type": {"buffer": {"length": 20}}}]}, "name": "name-properties", "value": {"tuple": [{"name": "imported-at", "type": {"optional": "uint128"}}, {"name": "registered-at", "type": {"optional": "uint128"}}, {"name": "revoked-at", "type": {"optional": "uint128"}}, {"name": "zonefile-hash", "type": {"buffer": {"length": 20}}}]}}, {"key": {"tuple": [{"name": "buyer", "type": "principal"}, {"name": "hashed-salted-namespace", "type": {"buffer": {"length": 20}}}]}, "name": "namespace-preorders", "value": {"tuple": [{"name": "claimed", "type": "bool"}, {"name": "created-at", "type": "uint128"}, {"name": "stx-burned", "type": "uint128"}]}}, {"key": {"buffer": {"length": 20}}, "name": "namespaces", "value": {"tuple": [{"name": "can-update-price-function", "type": "bool"}, {"name": "launched-at", "type": {"optional": "uint128"}}, {"name": "lifetime", "type": "uint128"}, {"name": "namespace-import", "type": "principal"}, {"name": "price-function", "type": {"tuple": [{"name": "base", "type": "uint128"}, {"name": "buckets", "type": {"list": {"type": "uint128", "length": 16}}}, {"name": "coeff", "type": "uint128"}, {"name": "no-vowel-discount", "type": "uint128"}, {"name": "nonalpha-discount", "type": "uint128"}]}}, {"name": "revealed-at", "type": "uint128"}]}}, {"key": "principal", "name": "owner-name", "value": {"tuple": [{"name": "name", "type": {"buffer": {"length": 48}}}, {"name": "namespace", "type": {"buffer": {"length": 20}}}]}}], "epoch": "Epoch20", "functions": [{"args": [{"name": "name", "type": {"buffer": {"length": 48}}}, {"name": "price-function", "type": {"tuple": [{"name": "base", "type": "uint128"}, {"name": "buckets", "type": {"list": {"type": "uint128", "length": 16}}}, {"name": "coeff", "type": "uint128"}, {"name": "no-vowel-discount", "type": "uint128"}, {"name": "nonalpha-discount", "type": "uint128"}]}}], "name": "compute-name-price", "access": "private", "outputs": {"type": "uint128"}}, {"args": [{"name": "buckets", "type": {"list": {"type": "uint128", "length": 16}}}, {"name": "index", "type": "uint128"}], "name": "get-exp-at-index", "access": "private", "outputs": {"type": "uint128"}}, {"args": [{"name": "name", "type": {"buffer": {"length": 48}}}], "name": "has-invalid-chars", "access": "private", "outputs": {"type": "bool"}}, {"args": [{"name": "name", "type": {"buffer": {"length": 48}}}], "name": "has-nonalpha-chars", "access": "private", "outputs": {"type": "bool"}}, {"args": [{"name": "name", "type": {"buffer": {"length": 48}}}], "name": "has-vowels-chars", "access": "private", "outputs": {"type": "bool"}}, {"args": [{"name": "char", "type": {"buffer": {"length": 1}}}], "name": "is-char-valid", "access": "private", "outputs": {"type": "bool"}}, {"args": [{"name": "char", "type": {"buffer": {"length": 1}}}], "name": "is-digit", "access": "private", "outputs": {"type": "bool"}}, {"args": [{"name": "char", "type": {"buffer": {"length": 1}}}], "name": "is-lowercase-alpha", "access": "private", "outputs": {"type": "bool"}}, {"args": [{"name": "namespace", "type": {"buffer": {"length": 20}}}], "name": "is-namespace-available", "access": "private", "outputs": {"type": "bool"}}, {"args": [{"name": "char", "type": {"buffer": {"length": 1}}}], "name": "is-nonalpha", "access": "private", "outputs": {"type": "bool"}}, {"args": [{"name": "char", "type": {"buffer": {"length": 1}}}], "name": "is-special-char", "access": "private", "outputs": {"type": "bool"}}, {"args": [{"name": "char", "type": {"buffer": {"length": 1}}}], "name": "is-vowel", "access": "private", "outputs": {"type": "bool"}}, {"args": [{"name": "a", "type": "uint128"}, {"name": "b", "type": "uint128"}], "name": "max", "access": "private", "outputs": {"type": "uint128"}}, {"args": [{"name": "a", "type": "uint128"}, {"name": "b", "type": "uint128"}], "name": "min", "access": "private", "outputs": {"type": "uint128"}}, {"args": [{"name": "namespace", "type": {"buffer": {"length": 20}}}, {"name": "name", "type": {"buffer": {"length": 48}}}, {"name": "beneficiary", "type": "principal"}], "name": "mint-or-transfer-name?", "access": "private", "outputs": {"type": {"response": {"ok": "bool", "error": "int128"}}}}, {"args": [{"name": "namespace-launched-at", "type": {"optional": "uint128"}}, {"name": "namespace-revealed-at", "type": "uint128"}, {"name": "name-props", "type": {"tuple": [{"name": "imported-at", "type": {"optional": "uint128"}}, {"name": "registered-at", "type": {"optional": "uint128"}}, {"name": "revoked-at", "type": {"optional": "uint128"}}, {"name": "zonefile-hash", "type": {"buffer": {"length": 20}}}]}}], "name": "name-lease-started-at?", "access": "private", "outputs": {"type": {"response": {"ok": "uint128", "error": "int128"}}}}, {"args": [{"name": "namespace", "type": {"buffer": {"length": 20}}}, {"name": "name", "type": {"buffer": {"length": 48}}}, {"name": "from", "type": "principal"}, {"name": "to", "type": "principal"}], "name": "update-name-ownership?", "access": "private", "outputs": {"type": {"response": {"ok": "bool", "error": "int128"}}}}, {"args": [{"name": "namespace", "type": {"buffer": {"length": 20}}}, {"name": "name", "type": {"buffer": {"length": 48}}}, {"name": "registered-at", "type": {"optional": "uint128"}}, {"name": "imported-at", "type": {"optional": "uint128"}}, {"name": "revoked-at", "type": {"optional": "uint128"}}, {"name": "zonefile-hash", "type": {"buffer": {"length": 20}}}, {"name": "op", "type": {"string-ascii": {"length": 16}}}], "name": "update-zonefile-and-props", "access": "private", "outputs": {"type": "bool"}}, {"args": [{"name": "namespace", "type": {"buffer": {"length": 20}}}, {"name": "name", "type": {"buffer": {"length": 48}}}, {"name": "beneficiary", "type": "principal"}, {"name": "zonefile-hash", "type": {"buffer": {"length": 20}}}], "name": "name-import", "access": "public", "outputs": {"type": {"response": {"ok": "bool", "error": "int128"}}}}, {"args": [{"name": "hashed-salted-fqn", "type": {"buffer": {"length": 20}}}, {"name": "stx-to-burn", "type": "uint128"}], "name": "name-preorder", "access": "public", "outputs": {"type": {"response": {"ok": "uint128", "error": "int128"}}}}, {"args": [{"name": "namespace", "type": {"buffer": {"length": 20}}}, {"name": "name", "type": {"buffer": {"length": 48}}}, {"name": "salt", "type": {"buffer": {"length": 20}}}, {"name": "zonefile-hash", "type": {"buffer": {"length": 20}}}], "name": "name-register", "access": "public", "outputs": {"type": {"response": {"ok": "bool", "error": "int128"}}}}, {"args": [{"name": "namespace", "type": {"buffer": {"length": 20}}}, {"name": "name", "type": {"buffer": {"length": 48}}}, {"name": "stx-to-burn", "type": "uint128"}, {"name": "new-owner", "type": {"optional": "principal"}}, {"name": "zonefile-hash", "type": {"optional": {"buffer": {"length": 20}}}}], "name": "name-renewal", "access": "public", "outputs": {"type": {"response": {"ok": "bool", "error": "int128"}}}}, {"args": [{"name": "namespace", "type": {"buffer": {"length": 20}}}, {"name": "name", "type": {"buffer": {"length": 48}}}], "name": "name-revoke", "access": "public", "outputs": {"type": {"response": {"ok": "bool", "error": "int128"}}}}, {"args": [{"name": "namespace", "type": {"buffer": {"length": 20}}}, {"name": "name", "type": {"buffer": {"length": 48}}}, {"name": "new-owner", "type": "principal"}, {"name": "zonefile-hash", "type": {"optional": {"buffer": {"length": 20}}}}], "name": "name-transfer", "access": "public", "outputs": {"type": {"response": {"ok": "bool", "error": "int128"}}}}, {"args": [{"name": "namespace", "type": {"buffer": {"length": 20}}}, {"name": "name", "type": {"buffer": {"length": 48}}}, {"name": "zonefile-hash", "type": {"buffer": {"length": 20}}}], "name": "name-update", "access": "public", "outputs": {"type": {"response": {"ok": "bool", "error": "int128"}}}}, {"args": [{"name": "hashed-salted-namespace", "type": {"buffer": {"length": 20}}}, {"name": "stx-to-burn", "type": "uint128"}], "name": "namespace-preorder", "access": "public", "outputs": {"type": {"response": {"ok": "uint128", "error": "int128"}}}}, {"args": [{"name": "namespace", "type": {"buffer": {"length": 20}}}], "name": "namespace-ready", "access": "public", "outputs": {"type": {"response": {"ok": "bool", "error": "int128"}}}}, {"args": [{"name": "namespace", "type": {"buffer": {"length": 20}}}, {"name": "namespace-salt", "type": {"buffer": {"length": 20}}}, {"name": "p-func-base", "type": "uint128"}, {"name": "p-func-coeff", "type": "uint128"}, {"name": "p-func-b1", "type": "uint128"}, {"name": "p-func-b2", "type": "uint128"}, {"name": "p-func-b3", "type": "uint128"}, {"name": "p-func-b4", "type": "uint128"}, {"name": "p-func-b5", "type": "uint128"}, {"name": "p-func-b6", "type": "uint128"}, {"name": "p-func-b7", "type": "uint128"}, {"name": "p-func-b8", "type": "uint128"}, {"name": "p-func-b9", "type": "uint128"}, {"name": "p-func-b10", "type": "uint128"}, {"name": "p-func-b11", "type": "uint128"}, {"name": "p-func-b12", "type": "uint128"}, {"name": "p-func-b13", "type": "uint128"}, {"name": "p-func-b14", "type": "uint128"}, {"name": "p-func-b15", "type": "uint128"}, {"name": "p-func-b16", "type": "uint128"}, {"name": "p-func-non-alpha-discount", "type": "uint128"}, {"name": "p-func-no-vowel-discount", "type": "uint128"}, {"name": "lifetime", "type": "uint128"}, {"name": "namespace-import", "type": "principal"}], "name": "namespace-reveal", "access": "public", "outputs": {"type": {"response": {"ok": "bool", "error": "int128"}}}}, {"args": [{"name": "namespace", "type": {"buffer": {"length": 20}}}], "name": "namespace-revoke-function-price-edition", "access": "public", "outputs": {"type": {"response": {"ok": "bool", "error": "int128"}}}}, {"args": [{"name": "namespace", "type": {"buffer": {"length": 20}}}, {"name": "p-func-base", "type": "uint128"}, {"name": "p-func-coeff", "type": "uint128"}, {"name": "p-func-b1", "type": "uint128"}, {"name": "p-func-b2", "type": "uint128"}, {"name": "p-func-b3", "type": "uint128"}, {"name": "p-func-b4", "type": "uint128"}, {"name": "p-func-b5", "type": "uint128"}, {"name": "p-func-b6", "type": "uint128"}, {"name": "p-func-b7", "type": "uint128"}, {"name": "p-func-b8", "type": "uint128"}, {"name": "p-func-b9", "type": "uint128"}, {"name": "p-func-b10", "type": "uint128"}, {"name": "p-func-b11", "type": "uint128"}, {"name": "p-func-b12", "type": "uint128"}, {"name": "p-func-b13", "type": "uint128"}, {"name": "p-func-b14", "type": "uint128"}, {"name": "p-func-b15", "type": "uint128"}, {"name": "p-func-b16", "type": "uint128"}, {"name": "p-func-non-alpha-discount", "type": "uint128"}, {"name": "p-func-no-vowel-discount", "type": "uint128"}], "name": "namespace-update-function-price", "access": "public", "outputs": {"type": {"response": {"ok": "bool", "error": "int128"}}}}, {"args": [{"name": "namespace", "type": {"buffer": {"length": 20}}}, {"name": "name", "type": {"buffer": {"length": 48}}}], "name": "can-name-be-registered", "access": "read_only", "outputs": {"type": {"response": {"ok": "bool", "error": "int128"}}}}, {"args": [{"name": "namespace", "type": {"buffer": {"length": 20}}}], "name": "can-namespace-be-registered", "access": "read_only", "outputs": {"type": {"response": {"ok": "bool", "error": "none"}}}}, {"args": [{"name": "owner", "type": "principal"}], "name": "can-receive-name", "access": "read_only", "outputs": {"type": {"response": {"ok": "bool", "error": "int128"}}}}, {"args": [{"name": "namespace", "type": {"buffer": {"length": 20}}}, {"name": "name", "type": {"buffer": {"length": 48}}}], "name": "check-name-ops-preconditions", "access": "read_only", "outputs": {"type": {"response": {"ok": {"tuple": [{"name": "name-props", "type": {"tuple": [{"name": "imported-at", "type": {"optional": "uint128"}}, {"name": "registered-at", "type": {"optional": "uint128"}}, {"name": "revoked-at", "type": {"optional": "uint128"}}, {"name": "zonefile-hash", "type": {"buffer": {"length": 20}}}]}}, {"name": "namespace-props", "type": {"tuple": [{"name": "can-update-price-function", "type": "bool"}, {"name": "launched-at", "type": {"optional": "uint128"}}, {"name": "lifetime", "type": "uint128"}, {"name": "namespace-import", "type": "principal"}, {"name": "price-function", "type": {"tuple": [{"name": "base", "type": "uint128"}, {"name": "buckets", "type": {"list": {"type": "uint128", "length": 16}}}, {"name": "coeff", "type": "uint128"}, {"name": "no-vowel-discount", "type": "uint128"}, {"name": "nonalpha-discount", "type": "uint128"}]}}, {"name": "revealed-at", "type": "uint128"}]}}, {"name": "owner", "type": "principal"}]}, "error": "int128"}}}}, {"args": [{"name": "namespace", "type": {"buffer": {"length": 20}}}, {"name": "name", "type": {"buffer": {"length": 48}}}], "name": "get-name-price", "access": "read_only", "outputs": {"type": {"response": {"ok": "uint128", "error": "int128"}}}}, {"args": [{"name": "namespace", "type": {"buffer": {"length": 20}}}], "name": "get-namespace-price", "access": "read_only", "outputs": {"type": {"response": {"ok": "uint128", "error": "int128"}}}}, {"args": [{"name": "namespace", "type": {"buffer": {"length": 20}}}], "name": "get-namespace-properties", "access": "read_only", "outputs": {"type": {"response": {"ok": {"tuple": [{"name": "namespace", "type": {"buffer": {"length": 20}}}, {"name": "properties", "type": {"tuple": [{"name": "can-update-price-function", "type": "bool"}, {"name": "launched-at", "type": {"optional": "uint128"}}, {"name": "lifetime", "type": "uint128"}, {"name": "namespace-import", "type": "principal"}, {"name": "price-function", "type": {"tuple": [{"name": "base", "type": "uint128"}, {"name": "buckets", "type": {"list": {"type": "uint128", "length": 16}}}, {"name": "coeff", "type": "uint128"}, {"name": "no-vowel-discount", "type": "uint128"}, {"name": "nonalpha-discount", "type": "uint128"}]}}, {"name": "revealed-at", "type": "uint128"}]}}]}, "error": "int128"}}}}, {"args": [{"name": "namespace", "type": {"buffer": {"length": 20}}}, {"name": "name", "type": {"buffer": {"length": 48}}}], "name": "is-name-in-grace-period", "access": "read_only", "outputs": {"type": {"response": {"ok": "bool", "error": "int128"}}}}, {"args": [{"name": "namespace", "type": {"buffer": {"length": 20}}}, {"name": "name", "type": {"buffer": {"length": 48}}}], "name": "is-name-lease-expired", "access": "read_only", "outputs": {"type": {"response": {"ok": "bool", "error": "int128"}}}}, {"args": [{"name": "namespace", "type": {"buffer": {"length": 20}}}, {"name": "name", "type": {"buffer": {"length": 48}}}], "name": "name-resolve", "access": "read_only", "outputs": {"type": {"response": {"ok": {"tuple": [{"name": "lease-ending-at", "type": {"optional": "uint128"}}, {"name": "lease-started-at", "type": "uint128"}, {"name": "owner", "type": "principal"}, {"name": "zonefile-hash", "type": {"buffer": {"length": 20}}}]}, "error": "int128"}}}}, {"args": [{"name": "owner", "type": "principal"}], "name": "resolve-principal", "access": "read_only", "outputs": {"type": {"response": {"ok": {"tuple": [{"name": "name", "type": {"buffer": {"length": 48}}}, {"name": "namespace", "type": {"buffer": {"length": 20}}}]}, "error": {"tuple": [{"name": "code", "type": "int128"}, {"name": "name", "type": {"optional": {"tuple": [{"name": "name", "type": {"buffer": {"length": 48}}}, {"name": "namespace", "type": {"buffer": {"length": 20}}}]}}}]}}}}}], "variables": [{"name": "ERR_INSUFFICIENT_FUNDS", "type": "int128", "access": "constant"}, {"name": "ERR_NAMESPACE_ALREADY_EXISTS", "type": "int128", "access": "constant"}, {"name": "ERR_NAMESPACE_ALREADY_LAUNCHED", "type": "int128", "access": "constant"}, {"name": "ERR_NAMESPACE_BLANK", "type": "int128", "access": "constant"}, {"name": "ERR_NAMESPACE_CHARSET_INVALID", "type": "int128", "access": "constant"}, {"name": "ERR_NAMESPACE_HASH_MALFORMED", "type": "int128", "access": "constant"}, {"name": "ERR_NAMESPACE_NOT_FOUND", "type": "int128", "access": "constant"}, {"name": "ERR_NAMESPACE_NOT_LAUNCHED", "type": "int128", "access": "constant"}, {"name": "ERR_NAMESPACE_OPERATION_UNAUTHORIZED", "type": "int128", "access": "constant"}, {"name": "ERR_NAMESPACE_PREORDER_ALREADY_EXISTS", "type": "int128", "access": "constant"}, {"name": "ERR_NAMESPACE_PREORDER_CLAIMABILITY_EXPIRED", "type": "int128", "access": "constant"}, {"name": "ERR_NAMESPACE_PREORDER_EXPIRED", "type": "int128", "access": "constant"}, {"name": "ERR_NAMESPACE_PREORDER_LAUNCHABILITY_EXPIRED", "type": "int128", "access": "constant"}, {"name": "ERR_NAMESPACE_PREORDER_NOT_FOUND", "type": "int128", "access": "constant"}, {"name": "ERR_NAMESPACE_PRICE_FUNCTION_INVALID", "type": "int128", "access": "constant"}, {"name": "ERR_NAMESPACE_STX_BURNT_INSUFFICIENT", "type": "int128", "access": "constant"}, {"name": "ERR_NAMESPACE_UNAVAILABLE", "type": "int128", "access": "constant"}, {"name": "ERR_NAME_ALREADY_CLAIMED", "type": "int128", "access": "constant"}, {"name": "ERR_NAME_BLANK", "type": "int128", "access": "constant"}, {"name": "ERR_NAME_CHARSET_INVALID", "type": "int128", "access": "constant"}, {"name": "ERR_NAME_CLAIMABILITY_EXPIRED", "type": "int128", "access": "constant"}, {"name": "ERR_NAME_COULD_NOT_BE_MINTED", "type": "int128", "access": "constant"}, {"name": "ERR_NAME_COULD_NOT_BE_TRANSFERED", "type": "int128", "access": "constant"}, {"name": "ERR_NAME_EXPIRED", "type": "int128", "access": "constant"}, {"name": "ERR_NAME_GRACE_PERIOD", "type": "int128", "access": "constant"}, {"name": "ERR_NAME_HASH_MALFORMED", "type": "int128", "access": "constant"}, {"name": "ERR_NAME_NOT_FOUND", "type": "int128", "access": "constant"}, {"name": "ERR_NAME_NOT_RESOLVABLE", "type": "int128", "access": "constant"}, {"name": "ERR_NAME_OPERATION_UNAUTHORIZED", "type": "int128", "access": "constant"}, {"name": "ERR_NAME_PREORDERED_BEFORE_NAMESPACE_LAUNCH", "type": "int128", "access": "constant"}, {"name": "ERR_NAME_PREORDER_ALREADY_EXISTS", "type": "int128", "access": "constant"}, {"name": "ERR_NAME_PREORDER_EXPIRED", "type": "int128", "access": "constant"}, {"name": "ERR_NAME_PREORDER_FUNDS_INSUFFICIENT", "type": "int128", "access": "constant"}, {"name": "ERR_NAME_PREORDER_NOT_FOUND", "type": "int128", "access": "constant"}, {"name": "ERR_NAME_REVOKED", "type": "int128", "access": "constant"}, {"name": "ERR_NAME_STX_BURNT_INSUFFICIENT", "type": "int128", "access": "constant"}, {"name": "ERR_NAME_TRANSFER_FAILED", "type": "int128", "access": "constant"}, {"name": "ERR_NAME_UNAVAILABLE", "type": "int128", "access": "constant"}, {"name": "ERR_PANIC", "type": "int128", "access": "constant"}, {"name": "ERR_PRINCIPAL_ALREADY_ASSOCIATED", "type": "int128", "access": "constant"}, {"name": "NAMESPACE_LAUNCHABILITY_TTL", "type": "uint128", "access": "constant"}, {"name": "NAMESPACE_PREORDER_CLAIMABILITY_TTL", "type": "uint128", "access": "constant"}, {"name": "NAMESPACE_PRICE_TIERS", "type": {"list": {"type": "uint128", "length": 20}}, "access": "constant"}, {"name": "NAME_GRACE_PERIOD_DURATION", "type": "uint128", "access": "constant"}, {"name": "NAME_PREORDER_CLAIMABILITY_TTL", "type": "uint128", "access": "constant"}, {"name": "attachment-index", "type": "uint128", "access": "variable"}], "clarity_version": "Clarity1", "fungible_tokens": [], "non_fungible_tokens": [{"name": "names", "type": {"tuple": [{"name": "name", "type": {"buffer": {"length": 48}}}, {"name": "namespace", "type": {"buffer": {"length": 20}}}]}}]}, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}, {"txid": "0xb3847b7e852b0d731061ff144e4467065c6e7b159a9eee2f883fdc41f261ee13", "raw_tx": "0x80000000000400000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030200000000010767656e657369730000009a3b3b20537461636b7320322e302047656e657369730a287072696e74202260602e2e2e20746f206265206120636f6d706c6574656c79207365706172617465206e6574776f726b20616e6420736570617261746520626c6f636b20636861696e2c207965742073686172652043505520706f776572207769746820426974636f696e6060202d205361746f736869204e616b616d6f746f22290a", "status": "success", "tx_index": 5, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": {"maps": [], "epoch": "Epoch20", "functions": [], "variables": [], "clarity_version": "Clarity1", "fungible_tokens": [], "non_fungible_tokens": []}, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}, {"txid": "0xcba511741b230bd85cb5b3b10d26e0b92695d4a83f95c260cad82a40cd764235", "raw_tx": "0x8000000000040000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003020000000000051a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "status": "success", "tx_index": 6, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": null, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}], "anchored_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "burn_block_hash": "0x0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206", "burn_block_time": 0, "index_block_hash": "0x55c9861be5cff984a20ce6d99d4aa65941412889bdc665094136429b84f8c2ee", "burn_block_height": 0, "parent_block_hash": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", "parent_microblock": "0x0000000000000000000000000000000000000000000000000000000000000000", "pox_v1_unlock_height": 104, "pox_v2_unlock_height": 106, "pox_v3_unlock_height": 109, "matured_miner_rewards": [], "parent_burn_block_hash": "0x0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206", "parent_index_block_hash": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", "parent_burn_block_height": 0, "confirmed_microblocks_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "parent_microblock_sequence": 0, "parent_burn_block_timestamp": 0} +2 2024-03-13 15:34:10.503624+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x498d2b8f083c2f7ad3467e7ec0d4013ef3309a44987f433acf1c546b9aa20648", "burn_block_height": 1, "reward_recipients": [], "reward_slot_holders": []} +3 2024-03-13 15:34:12.748354+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x65812c2c31681ce0bbee0db1facfba1dc07b07f5eb5f91008e21d22442b7cd54", "burn_block_height": 2, "reward_recipients": [], "reward_slot_holders": []} +4 2024-03-13 15:34:12.757267+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x61f2e816cda6700cbd38717bbce05459ae02fea3776df837b8e2a98002a018e6", "burn_block_height": 3, "reward_recipients": [], "reward_slot_holders": []} +5 2024-03-13 15:34:12.767789+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x4e162cf3f28641621e4438426b2819c13cd9766fd13901be802084529bbb2eed", "burn_block_height": 4, "reward_recipients": [], "reward_slot_holders": []} +6 2024-03-13 15:34:12.783257+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x16ac5583c3ed5e2e898f773d336007baff8536591b6a5cc5a9ab0dbc6f9c502d", "burn_block_height": 5, "reward_recipients": [], "reward_slot_holders": []} +7 2024-03-13 15:34:12.792714+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x2cc41f4b30e220888290b6c4739c684bf93a6adf4aa1505cc15bf2eff6835c3b", "burn_block_height": 6, "reward_recipients": [], "reward_slot_holders": []} +8 2024-03-13 15:34:12.802581+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x0cd74e9a96d202e67c91df522a20273bbc2000e19f2f2019ebde23de920c476e", "burn_block_height": 7, "reward_recipients": [], "reward_slot_holders": []} +9 2024-03-13 15:34:12.813051+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x5f686b991fdcb839951e3cc4b792f8d605ec59eaf07d82d10d7d23f2f331dbf4", "burn_block_height": 8, "reward_recipients": [], "reward_slot_holders": []} +10 2024-03-13 15:34:12.822074+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x46ccddc7da0f63cedad3c116ab3af950fdece849e7b4d08b486fab041ac68f6d", "burn_block_height": 9, "reward_recipients": [], "reward_slot_holders": []} +11 2024-03-13 15:34:12.828452+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x38d90a8bc11f999f009ecc48e6bbde43eb32c28c2d428ff93e8876cf3d12bd2b", "burn_block_height": 10, "reward_recipients": [], "reward_slot_holders": []} +12 2024-03-13 15:34:14.093521+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x7a79736f9dda89de31a2f10be64818d90d636682067eade2a04022c2d0501859", "burn_block_height": 11, "reward_recipients": [], "reward_slot_holders": []} +13 2024-03-13 15:34:14.121784+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x024d2ff1b3d716c84d2fdf6f4b8ccd76a74f1bb7b55fab542687d38fee94e825", "burn_block_height": 12, "reward_recipients": [], "reward_slot_holders": []} +14 2024-03-13 15:34:14.144129+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x377704b9a26839989c7ef6f8f2bc02cfefe4a47db3f017da3ee317b1cd56b8eb", "burn_block_height": 13, "reward_recipients": [], "reward_slot_holders": []} +15 2024-03-13 15:34:14.164604+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x1f5a6bccc446794b09bf2561ce0a581b70db0ee5d44473b878bebeedb2da1de0", "burn_block_height": 14, "reward_recipients": [], "reward_slot_holders": []} +16 2024-03-13 15:34:14.182911+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x20f2c089b3f990d8ddba9ab7460d76a096dd536605fe54fdcb5c77e8de73684e", "burn_block_height": 15, "reward_recipients": [], "reward_slot_holders": []} +17 2024-03-13 15:34:14.2089+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x7e52990c6c2502cc4362725d34983e6b31c14f4d9492327f10e67f9cc01e4b3f", "burn_block_height": 16, "reward_recipients": [], "reward_slot_holders": []} +18 2024-03-13 15:34:14.23855+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x5e8e8ac6a2f05e907203a6904d97ca189270fd62cbd6a652fac8513dc963a74c", "burn_block_height": 17, "reward_recipients": [], "reward_slot_holders": []} +19 2024-03-13 15:34:14.256894+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x0c7f2dc879fc88463bde61a4a0392df759b946830b02e2c46dd04f5838e4b91d", "burn_block_height": 18, "reward_recipients": [], "reward_slot_holders": []} +20 2024-03-13 15:34:14.274718+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x125644a638b0f7b06314ddbbb93966b8a793f2823c47b42cb3bd961e3db15631", "burn_block_height": 19, "reward_recipients": [], "reward_slot_holders": []} +21 2024-03-13 15:34:14.298289+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x13e30fbbd3255aa08940eaf514d48a7b31d84d45412a890a1dede98ae1c56bfd", "burn_block_height": 20, "reward_recipients": [], "reward_slot_holders": []} +22 2024-03-13 15:34:14.332835+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x282ad3d8cbaafc5a2d5ebe6f5139385d6547812d7c691cb33ab6f5b1f65a48a4", "burn_block_height": 21, "reward_recipients": [], "reward_slot_holders": []} +23 2024-03-13 15:34:14.374607+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x35c32cbb3a29bc041b885f00170c45ea8ad97be756a79bf0d460c29f24d22d1f", "burn_block_height": 22, "reward_recipients": [], "reward_slot_holders": []} +24 2024-03-13 15:34:14.401044+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x08c0d6c62de8ad51535af97f93f64164736080ffb33d6ed6fb761484a2277c7e", "burn_block_height": 23, "reward_recipients": [], "reward_slot_holders": []} +25 2024-03-13 15:34:14.424851+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x0a8a22e7fd175ddab78cdd63a2dea74ab3bdcecfc868593377e82d3c73f69244", "burn_block_height": 24, "reward_recipients": [], "reward_slot_holders": []} +26 2024-03-13 15:34:14.454345+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x1b78d7144c6cbb945de07a01d1aae921b3deadae706633a863d803076fc6cd8a", "burn_block_height": 25, "reward_recipients": [], "reward_slot_holders": []} +27 2024-03-13 15:34:14.480643+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x2e50880d85ee646c6882aa75d0de2a985d2dabdc3e24f064682365530c27e883", "burn_block_height": 26, "reward_recipients": [], "reward_slot_holders": []} +28 2024-03-13 15:34:14.51532+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x132ea99d0e89d9ea6167cae660134bfabdd4eee4f5849233655eb4c2e45da007", "burn_block_height": 27, "reward_recipients": [], "reward_slot_holders": []} +29 2024-03-13 15:34:14.544354+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x01426d40953ede420e6facc5ae398247a3108328ee6a9fe30d9ccb81099a7a01", "burn_block_height": 28, "reward_recipients": [], "reward_slot_holders": []} +30 2024-03-13 15:34:14.574098+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x3b817eb3c120042c1531c5d79cf04505a7d2b4ed8828e0354bbd8aed16892679", "burn_block_height": 29, "reward_recipients": [], "reward_slot_holders": []} +31 2024-03-13 15:34:14.606184+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x4e70e4fc0d8e63f76ae7f0e8fdc9f63b39811a937dec51802c54e0c9ab46abdb", "burn_block_height": 30, "reward_recipients": [], "reward_slot_holders": []} +32 2024-03-13 15:34:14.653984+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x6c7665577aa1655a6e53303f04026b5d0b17eb6420148a91f1ff558689c9d9e9", "burn_block_height": 31, "reward_recipients": [], "reward_slot_holders": []} +33 2024-03-13 15:34:14.699401+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x0bd4b54ccb5cd63fc9cc3a6ad8e644747a5f29687307be5e6b89ece6a424d06b", "burn_block_height": 32, "reward_recipients": [], "reward_slot_holders": []} +34 2024-03-13 15:34:14.747132+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x0014a4f7b050c3ba727d6374dca4253ec0b8c2921027d17e68854590ecafe2b3", "burn_block_height": 33, "reward_recipients": [], "reward_slot_holders": []} +35 2024-03-13 15:34:14.788983+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x0fa89abe7137e73c3553a1e2be7cb9ae034bad699d39c4bacdeb626d594b9011", "burn_block_height": 34, "reward_recipients": [], "reward_slot_holders": []} +36 2024-03-13 15:34:14.825306+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x5539c05f706c7263396716f5160568e3c759aa1d875a879aca1d24afe7f98685", "burn_block_height": 35, "reward_recipients": [], "reward_slot_holders": []} +37 2024-03-13 15:34:14.868693+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x3e06bec692702446b8630239539b3a8ac3cf2bbcc800da4e6e0bccc3a8d3f18f", "burn_block_height": 36, "reward_recipients": [], "reward_slot_holders": []} +38 2024-03-13 15:34:14.917735+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x3055ff4f11734c7934839bd4248659d9e121c19db491ba33f3a7ffdf6b36af3f", "burn_block_height": 37, "reward_recipients": [], "reward_slot_holders": []} +39 2024-03-13 15:34:14.972808+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x0f9d3077fcbf4afcc7423800090bf5e68766e045835ab4d4159ee10055fe713f", "burn_block_height": 38, "reward_recipients": [], "reward_slot_holders": []} +40 2024-03-13 15:34:15.034888+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x3c6585e195d358844ebc7ef44a751a9badc934704c539adeefd58a7b8d60618b", "burn_block_height": 39, "reward_recipients": [], "reward_slot_holders": []} +41 2024-03-13 15:34:15.083249+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x2682b1db9dd21790dd7f7ede8542122228fb44adf43d39d57480faddf6a9745b", "burn_block_height": 40, "reward_recipients": [], "reward_slot_holders": []} +42 2024-03-13 15:34:15.139409+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x6a232943a4cd0887ef2ca0d45235219265ac0e2425ee191b3da00587aebcf25c", "burn_block_height": 41, "reward_recipients": [], "reward_slot_holders": []} +43 2024-03-13 15:34:15.200734+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x79d9aa5a2c59ac72425d8c79fbc4882868bba7615b5298ece6cf515710111d5f", "burn_block_height": 42, "reward_recipients": [], "reward_slot_holders": []} +44 2024-03-13 15:34:15.258773+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x03cf97bb61e4c2edcc39c5c537bf462846e66e5716454ac9b0222d627511e918", "burn_block_height": 43, "reward_recipients": [], "reward_slot_holders": []} +45 2024-03-13 15:34:15.302671+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x41b52dc1a08399756bc56fc80d729c788cf40eac3ae210a20da81fe40368a95a", "burn_block_height": 44, "reward_recipients": [], "reward_slot_holders": []} +46 2024-03-13 15:34:15.339362+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x40a680c27f3e389bf42a8ea615f9ac78eb23d58f5e4b08923a39ea3cf264493d", "burn_block_height": 45, "reward_recipients": [], "reward_slot_holders": []} +47 2024-03-13 15:34:15.378318+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x33be93894212bf70b504286dd2e79d11493c05e31b62f9009f89fd249afa1c39", "burn_block_height": 46, "reward_recipients": [], "reward_slot_holders": []} +48 2024-03-13 15:34:15.430847+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x542ba80a06a9f45985b5a53569bd7a32e3a4f47a33387118da243574c2bc5981", "burn_block_height": 47, "reward_recipients": [], "reward_slot_holders": []} +49 2024-03-13 15:34:15.477791+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x18a0d910d1b7d1edceacb939cbe616571917208029c33d6d16ca75a4c565bbf7", "burn_block_height": 48, "reward_recipients": [], "reward_slot_holders": []} +50 2024-03-13 15:34:15.520223+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x52d03dad10d455ebf6a04ca93b949f24fdb31dbf97e77a9ceceda1d2548b58cc", "burn_block_height": 49, "reward_recipients": [], "reward_slot_holders": []} +51 2024-03-13 15:34:15.579866+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x3b17b36dec1818ef7b45603b851337d3c8c3683c671b38d342d2ab144da8d30a", "burn_block_height": 50, "reward_recipients": [], "reward_slot_holders": []} +52 2024-03-13 15:34:15.634986+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x7daba95f8bb19ff0fc66c9bdf5f71001ab4228ab7f828d47cc8edca0327b28f9", "burn_block_height": 51, "reward_recipients": [], "reward_slot_holders": []} +53 2024-03-13 15:34:15.682486+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x241802cc0bc26fc4258fbd06c0ae9ab2371b1eee6f4626b0b2f1ebb3c7ff297e", "burn_block_height": 52, "reward_recipients": [], "reward_slot_holders": []} +54 2024-03-13 15:34:15.737147+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x2b852d43902c7be22b7f6b969aa29b37b194f249ffcb9e76e9cf63fdffbf2f86", "burn_block_height": 53, "reward_recipients": [], "reward_slot_holders": []} +55 2024-03-13 15:34:15.800576+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x4bb9d3ed9f5ede4addb35553323d068627c9a9081c12df538d13e35021137247", "burn_block_height": 54, "reward_recipients": [], "reward_slot_holders": []} +56 2024-03-13 15:34:15.862266+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x5a1b9c4bcc3f36659ed3294a7eec6644606cf0b8282c145cbc07771e953e9941", "burn_block_height": 55, "reward_recipients": [], "reward_slot_holders": []} +57 2024-03-13 15:34:15.907057+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x66f0e873a38e2ee9dbda582a16fc06993a120298148d5f5e196d39512faf7853", "burn_block_height": 56, "reward_recipients": [], "reward_slot_holders": []} +58 2024-03-13 15:34:15.978032+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x07f0991885573c5d0df0785e89c00bc09d1df0411fa5991e62a644f181d805d3", "burn_block_height": 57, "reward_recipients": [], "reward_slot_holders": []} +59 2024-03-13 15:34:16.026303+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x25b7fdc95d118e6141424798d587e1b19f83f11c75ef14093ce9ec7540e257f1", "burn_block_height": 58, "reward_recipients": [], "reward_slot_holders": []} +60 2024-03-13 15:34:16.091036+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x36192311d2a01685b3e8cc865eed405121014499b750fb1d3d6df938c2ad91aa", "burn_block_height": 59, "reward_recipients": [], "reward_slot_holders": []} +61 2024-03-13 15:34:16.146576+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x4acffe91f002b2cb9c84dfdd31b21da16088db48c410976f5e1b76dd7feffac7", "burn_block_height": 60, "reward_recipients": [], "reward_slot_holders": []} +62 2024-03-13 15:34:16.196154+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x5205cd9af300e6c9f967ca5541ef00d98efafdd2d0f7b671785d09490e6e3951", "burn_block_height": 61, "reward_recipients": [], "reward_slot_holders": []} +63 2024-03-13 15:34:16.240483+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x2e64c8ee52b9280aba58f975f91c7c4194e3041f2e43f8377db227d3a9a5744c", "burn_block_height": 62, "reward_recipients": [], "reward_slot_holders": []} +64 2024-03-13 15:34:16.279633+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x2457f24bc17273b256737a7252a8c64429056ddb5ac8d50232ee558194bdfc6a", "burn_block_height": 63, "reward_recipients": [], "reward_slot_holders": []} +65 2024-03-13 15:34:16.339101+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x3973ed8225e46f126cbcf82116eb798d1f52a675f0e5d04d5fd54babbfe35178", "burn_block_height": 64, "reward_recipients": [], "reward_slot_holders": []} +66 2024-03-13 15:34:16.388512+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x2cedc2ccdb5b8db01f81b122535f6b18b0a94833cb4d385058b48ff70a13d41f", "burn_block_height": 65, "reward_recipients": [], "reward_slot_holders": []} +67 2024-03-13 15:34:16.44406+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x4c1ca5f2b81017d6c844ddd7036d98b67740d910329e0a3a48d91963343c32ca", "burn_block_height": 66, "reward_recipients": [], "reward_slot_holders": []} +68 2024-03-13 15:34:16.501006+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x5781e82230f185c83258d8a5313cd78a7e4616985d667a906e6f570a5ff4b418", "burn_block_height": 67, "reward_recipients": [], "reward_slot_holders": []} +69 2024-03-13 15:34:16.562345+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x55eecb0ef1f88d505024fddd5e31e2c942895eafd7a2f3f592813d05d8c79514", "burn_block_height": 68, "reward_recipients": [], "reward_slot_holders": []} +70 2024-03-13 15:34:16.629825+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x5794a309735443fa8ff5c5e36d7a1c496f2a5fa37e8dc7c5570f1b59a32daaf7", "burn_block_height": 69, "reward_recipients": [], "reward_slot_holders": []} +71 2024-03-13 15:34:16.705072+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x392ae00e8f3e887ce9a7ed81203948698e71e9cf6ed35f0246d8909825c2a6db", "burn_block_height": 70, "reward_recipients": [], "reward_slot_holders": []} +72 2024-03-13 15:34:16.770649+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x23c30819896615d296fde9651e3b61abb5f79ef59bd6cc35eadefe45a25ccff6", "burn_block_height": 71, "reward_recipients": [], "reward_slot_holders": []} +73 2024-03-13 15:34:16.851552+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x723745b225c4e31f5f25a33d1425b72926bea2f630295915ba79605020f3cec1", "burn_block_height": 72, "reward_recipients": [], "reward_slot_holders": []} +74 2024-03-13 15:34:16.921542+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x495880934aee6fb212cf0ee65adf8db4be41d26a17942271a1c750b6800c4fe1", "burn_block_height": 73, "reward_recipients": [], "reward_slot_holders": []} +75 2024-03-13 15:34:16.999557+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x6e730614f3ade1a1b4119e303840b0e944e36c11c5ccabc770994b089bf1074c", "burn_block_height": 74, "reward_recipients": [], "reward_slot_holders": []} +76 2024-03-13 15:34:17.074403+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x084822b33ec330bef0933d574445553d5614ecd0a91a1a173acc28a232047d17", "burn_block_height": 75, "reward_recipients": [], "reward_slot_holders": []} +77 2024-03-13 15:34:17.108182+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x2783db0d2dfa52b1c78514024444a36d6b10bc74fd2686865e73bc445f4b07f7", "burn_block_height": 76, "reward_recipients": [], "reward_slot_holders": []} +78 2024-03-13 15:34:17.168816+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x4f98cc75fa7d8afef199da8017f1c9cbafbf93df97277d1b4210ec84db35fca6", "burn_block_height": 77, "reward_recipients": [], "reward_slot_holders": []} +79 2024-03-13 15:34:17.227807+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x688cb202a8f6872709fe2d1066cc7414a8ad739fe60435d656081c84c0e4fd92", "burn_block_height": 78, "reward_recipients": [], "reward_slot_holders": []} +80 2024-03-13 15:34:17.291988+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x15ca988ef0d5ce6ba90010218e11fd08b5e7edebe29e7f770b92e25c44abe904", "burn_block_height": 79, "reward_recipients": [], "reward_slot_holders": []} +81 2024-03-13 15:34:17.361101+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x301a63fd1902d2d3d15c98018a08d2a4fa34aa4ed8e045125c423cc567388d42", "burn_block_height": 80, "reward_recipients": [], "reward_slot_holders": []} +82 2024-03-13 15:34:17.404852+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x0f8df8a402457b7c907e483f3fe0297a059291629341218f043ad98f692ba80a", "burn_block_height": 81, "reward_recipients": [], "reward_slot_holders": []} +83 2024-03-13 15:34:17.467329+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x3bfa1f8731d352fa84fa0c71930936520622776d1d97aa48586670410fc9c013", "burn_block_height": 82, "reward_recipients": [], "reward_slot_holders": []} +84 2024-03-13 15:34:17.538367+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x5a54d22c018e92b127539f379f7fe4e49a2f94637178c63a8d9c7d4cbd50ef29", "burn_block_height": 83, "reward_recipients": [], "reward_slot_holders": []} +85 2024-03-13 15:34:17.614922+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x639e661e6b3e0704da0f2d46b21d3cdd8ba03c4674daa455350d18924f18737e", "burn_block_height": 84, "reward_recipients": [], "reward_slot_holders": []} +86 2024-03-13 15:34:17.700474+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x6af96caec14b2032040da56d7162a14f0027e9634950477101dd930fedde2b97", "burn_block_height": 85, "reward_recipients": [], "reward_slot_holders": []} +87 2024-03-13 15:34:17.732675+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x345943b8182df7cfa66e27721f4ce0d3deb153f5907850687faf9961c4108329", "burn_block_height": 86, "reward_recipients": [], "reward_slot_holders": []} +88 2024-03-13 15:34:17.805509+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x178ace15fee7c3142a2368710bdd2add386263772f256f267d626d35e23ccf6d", "burn_block_height": 87, "reward_recipients": [], "reward_slot_holders": []} +89 2024-03-13 15:34:17.877807+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x5e13cc06a2fc9eba9f8128e3d2eb16c9fe2adfe394d1d39e2b131104951bb4e7", "burn_block_height": 88, "reward_recipients": [], "reward_slot_holders": []} +90 2024-03-13 15:34:17.963385+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x6f26eb432850dbd61737c3dcd751c69594e70d65792c475a42e88046e1e076f6", "burn_block_height": 89, "reward_recipients": [], "reward_slot_holders": []} +91 2024-03-13 15:34:18.044788+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x0992a2de7deeebf13fd4b28e74f86b36e3f3a7fdfc3b21db70af7d0df19a1a7b", "burn_block_height": 90, "reward_recipients": [], "reward_slot_holders": []} +92 2024-03-13 15:34:18.114912+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x2e4b7ad85398d4dc61cf8a86b585232795a09d8816a56abb23af5b38a78511f0", "burn_block_height": 91, "reward_recipients": [], "reward_slot_holders": []} +93 2024-03-13 15:34:18.195547+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x775e6963eca32dab4ea2a5bc7cc7e3e4eb4fd3a781e4502ecb2ab8de15525aa4", "burn_block_height": 92, "reward_recipients": [], "reward_slot_holders": []} +94 2024-03-13 15:34:18.292314+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x2113233bde6ea2323c10790114f057af70fb28debe0de17ce711363f917214b1", "burn_block_height": 93, "reward_recipients": [], "reward_slot_holders": []} +95 2024-03-13 15:34:18.375869+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x68a3cf315dec721b117ec640bd02db62aea19536e18d553da59cd5dabb9edaa4", "burn_block_height": 94, "reward_recipients": [], "reward_slot_holders": []} +96 2024-03-13 15:34:18.437958+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x0db8b9ba19c36c91d36b2b4400056cd0c9ad6562ef5bd1d337444d8ad88cb331", "burn_block_height": 95, "reward_recipients": [], "reward_slot_holders": []} +97 2024-03-13 15:34:18.457559+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x621043c05d788fe2c222d61c25021774e16d0ebb1d7b9473e9a17cd0f92d33e7", "burn_block_height": 96, "reward_recipients": [], "reward_slot_holders": []} +98 2024-03-13 15:34:18.523253+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x0ae64066093ac83da8f7a2cb5e53b61d734d89240203c0eca3bf2d150fb50ab9", "burn_block_height": 97, "reward_recipients": [], "reward_slot_holders": []} +99 2024-03-13 15:34:18.5906+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x7b55abcc3ef58624ee0e3813d9c8d18c451e74417d95ac6b30e0aca5f80ff104", "burn_block_height": 98, "reward_recipients": [], "reward_slot_holders": []} +100 2024-03-13 15:34:18.657193+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x449316832246ec5f7ca451e8c760dfcd50a026883eb33737e7ede4a6103fa81c", "burn_block_height": 99, "reward_recipients": [], "reward_slot_holders": []} +101 2024-03-13 15:34:18.726382+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x27992bec3e6fe8643c4c014f73f58951f2f04a5ca6f3be065216204a7ed155ec", "burn_block_height": 100, "reward_recipients": [], "reward_slot_holders": []} +102 2024-03-13 15:34:18.755135+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x3fa002069dc6bb449173eb150a22dd4d1ce65f0af8399f4e4b5ef1ced22cf6af", "burn_block_height": 101, "reward_recipients": [], "reward_slot_holders": []} +103 2024-03-13 15:34:19.221487+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x4d5a8aa380b502accb30a402a0ecea75d7af926c02317256470b1440c980c46c", "burn_block_height": 102, "reward_recipients": [], "reward_slot_holders": []} +104 2024-03-13 15:34:20.220543+00 /new_burn_block {"burn_amount": 20000, "burn_block_hash": "0x6413a6c48b84d2c470cc83d7fa8f2703a9125aad6dfeb63d810090e4d4c38071", "burn_block_height": 103, "reward_recipients": [], "reward_slot_holders": []} +105 2024-03-13 15:34:20.477352+00 /new_block {"events": [{"txid": "0xe143a658d386ccd67fb51a7a1eb84b4acffbbe17eadd1c9781c09325df14bff7", "type": "stx_transfer_event", "committed": true, "event_index": 0, "stx_transfer_event": {"memo": "00000000000000000000000000000000000000000000000000000000000000000000", "amount": "1000", "sender": "ST29V10QEA7BRZBTWRFC4M70NJ4J6RJB5P1C6EE84", "recipient": "ST2PGGD0ZXAWEMY4EZ025RD1X47EEVH287SQKA8BC"}}], "block_hash": "0x4a7fad40823c89c3529de996c3aacfc91d5c55c3b9880a8a2656743f558dbd74", "miner_txid": "0x95bd6c7cea771d119f36cb835100fc483ebcae009f07669a95df0f4e7721e21b", "block_height": 1, "transactions": [{"txid": "0xef13fb69ad25f49400fad61d82fb678cb59f8e584acd70450acd84b3e49ef706", "raw_tx": "0x800000000004000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000302000000000107636f7374732d320000319a3b3b20746865202e636f7374732d3220636f6e74726163740a0a3b3b2048656c7065722046756e6374696f6e730a0a3b3b2052657475726e206120436f73742053706563696669636174696f6e2077697468206a75737420612072756e74696d6520636f73740a28646566696e652d70726976617465202872756e74696d652028722075696e7429290a202020207b0a202020202020202072756e74696d653a20722c0a202020202020202077726974655f6c656e6774683a2075302c0a202020202020202077726974655f636f756e743a2075302c0a2020202020202020726561645f636f756e743a2075302c0a2020202020202020726561645f6c656e6774683a2075302c0a202020207d290a0a3b3b204c696e65617220636f73742d6173736573736d656e742066756e6374696f6e0a28646566696e652d7072697661746520286c696e65617220286e2075696e74292028612075696e74292028622075696e7429290a20202020282b20282a2061206e29206229290a0a3b3b204c6f674e20636f73742d6173736573736d656e742066756e6374696f6e0a28646566696e652d7072697661746520286c6f676e20286e2075696e74292028612075696e74292028622075696e7429290a20202020282b20282a206120286c6f6732206e2929206229290a0a3b3b204e4c6f674e20636f73742d6173736573736d656e742066756e6374696f6e0a28646566696e652d7072697661746520286e6c6f676e20286e2075696e74292028612075696e74292028622075696e7429290a20202020282b20282a206120282a206e20286c6f6732206e292929206229290a0a0a3b3b20436f73742046756e6374696f6e730a28646566696e652d726561642d6f6e6c792028636f73745f616e616c797369735f747970655f616e6e6f7461746520286e2075696e7429290a202020202872756e74696d6520286c696e656172206e2075312075392929290a0a28646566696e652d726561642d6f6e6c792028636f73745f616e616c797369735f747970655f636865636b20286e2075696e7429290a202020202872756e74696d6520286c696e656172206e20753131332075312929290a0a28646566696e652d726561642d6f6e6c792028636f73745f616e616c797369735f747970655f6c6f6f6b757020286e2075696e7429290a202020202872756e74696d6520286c696e656172206e2075312075362929290a0a28646566696e652d726561642d6f6e6c792028636f73745f616e616c797369735f766973697420286e2075696e7429290a202020202872756e74696d6520753129290a0a28646566696e652d726561642d6f6e6c792028636f73745f616e616c797369735f6974657261626c655f66756e6320286e2075696e7429290a202020202872756e74696d6520286c696e656172206e207532207531342929290a0a28646566696e652d726561642d6f6e6c792028636f73745f616e616c797369735f6f7074696f6e5f636f6e7320286e2075696e7429290a202020202872756e74696d6520753629290a0a28646566696e652d726561642d6f6e6c792028636f73745f616e616c797369735f6f7074696f6e5f636865636b20286e2075696e7429290a202020202872756e74696d6520753329290a0a28646566696e652d726561642d6f6e6c792028636f73745f616e616c797369735f62696e645f6e616d6520286e2075696e7429290a202020202872756e74696d6520286c696e656172206e20753220753137362929290a0a28646566696e652d726561642d6f6e6c792028636f73745f616e616c797369735f6c6973745f6974656d735f636865636b20286e2075696e7429290a202020202872756e74696d6520286c696e656172206e2075322075342929290a0a28646566696e652d726561642d6f6e6c792028636f73745f616e616c797369735f636865636b5f7475706c655f67657420286e2075696e7429290a202020202872756e74696d6520286c6f676e206e2075312075322929290a0a28646566696e652d726561642d6f6e6c792028636f73745f616e616c797369735f636865636b5f7475706c655f6d6572676520286e2075696e7429290a202020202872756e74696d6520286c696e656172206e2075313030302075313030302929290a0a28646566696e652d726561642d6f6e6c792028636f73745f616e616c797369735f636865636b5f7475706c655f636f6e7320286e2075696e7429290a202020202872756e74696d6520286e6c6f676e206e2075332075352929290a0a28646566696e652d726561642d6f6e6c792028636f73745f616e616c797369735f7475706c655f6974656d735f636865636b20286e2075696e7429290a202020202872756e74696d6520286c696e656172206e207531207535392929290a0a28646566696e652d726561642d6f6e6c792028636f73745f616e616c797369735f636865636b5f6c657420286e2075696e7429290a202020202872756e74696d6520286c696e656172206e207531207531322929290a0a28646566696e652d726561642d6f6e6c792028636f73745f616e616c797369735f6c6f6f6b75705f66756e6374696f6e20286e2075696e7429290a202020202872756e74696d652075323029290a0a28646566696e652d726561642d6f6e6c792028636f73745f616e616c797369735f6c6f6f6b75705f66756e6374696f6e5f747970657320286e2075696e7429290a202020202872756e74696d6520286c696e656172206e207531207532382929290a0a28646566696e652d726561642d6f6e6c792028636f73745f616e616c797369735f6c6f6f6b75705f7661726961626c655f636f6e737420286e2075696e7429290a202020202872756e74696d652075313529290a0a28646566696e652d726561642d6f6e6c792028636f73745f616e616c797369735f6c6f6f6b75705f7661726961626c655f646570746820286e2075696e7429290a202020202872756e74696d6520286e6c6f676e206e207531207533342929290a0a28646566696e652d726561642d6f6e6c792028636f73745f6173745f706172736520286e2075696e7429290a202020202872756e74696d6520286c696e656172206e207531373220753238373434312929290a0a28646566696e652d726561642d6f6e6c792028636f73745f6173745f6379636c655f646574656374696f6e20286e2075696e7429290a202020202872756e74696d6520286c696e656172206e2075313431207537322929290a0a28646566696e652d726561642d6f6e6c792028636f73745f616e616c797369735f73746f7261676520286e2075696e7429290a202020207b0a202020202020202072756e74696d653a20286c696e656172206e2075322075313030292c0a202020202020202077726974655f6c656e6774683a20286c696e656172206e207531207531292c0a202020202020202077726974655f636f756e743a2075312c0a2020202020202020726561645f636f756e743a2075312c0a2020202020202020726561645f6c656e6774683a2075310a202020207d290a0a28646566696e652d726561642d6f6e6c792028636f73745f616e616c797369735f7573655f74726169745f656e74727920286e2075696e7429290a202020207b0a202020202020202072756e74696d653a20286c696e656172206e2075392075373233292c0a202020202020202077726974655f6c656e6774683a20286c696e656172206e207531207531292c0a202020202020202077726974655f636f756e743a2075302c0a2020202020202020726561645f636f756e743a2075312c0a2020202020202020726561645f6c656e6774683a20286c696e656172206e207531207531290a202020207d290a0a0a28646566696e652d726561642d6f6e6c792028636f73745f616e616c797369735f6765745f66756e6374696f6e5f656e74727920286e2075696e7429290a202020207b0a202020202020202072756e74696d653a20286c696e656172206e20753831207531333033292c0a202020202020202077726974655f6c656e6774683a2075302c0a202020202020202077726974655f636f756e743a2075302c0a2020202020202020726561645f636f756e743a2075312c0a2020202020202020726561645f6c656e6774683a20286c696e656172206e207531207531290a202020207d290a0a0a28646566696e652d726561642d6f6e6c792028636f73745f616e616c797369735f66657463685f636f6e74726163745f656e74727920286e2075696e7429290a202020207b0a202020202020202072756e74696d653a20286c696e656172206e207531303030207531303030292c0a202020202020202077726974655f6c656e6774683a2075302c0a202020202020202077726974655f636f756e743a2075302c0a2020202020202020726561645f636f756e743a2075312c0a2020202020202020726561645f6c656e6774683a20286c696e656172206e207531207531290a202020207d290a0a28646566696e652d726561642d6f6e6c792028636f73745f6c6f6f6b75705f7661726961626c655f646570746820286e2075696e7429290a202020202872756e74696d6520286c696e656172206e207532207531342929290a0a28646566696e652d726561642d6f6e6c792028636f73745f6c6f6f6b75705f7661726961626c655f73697a6520286e2075696e7429290a202020202872756e74696d6520286c696e656172206e2075322075312929290a0a28646566696e652d726561642d6f6e6c792028636f73745f6c6f6f6b75705f66756e6374696f6e20286e2075696e7429290a202020202872756e74696d652075313629290a0a28646566696e652d726561642d6f6e6c792028636f73745f62696e645f6e616d6520286e2075696e7429290a202020202872756e74696d65207532353629290a0a28646566696e652d726561642d6f6e6c792028636f73745f696e6e65725f747970655f636865636b5f636f737420286e2075696e7429290a202020202872756e74696d6520286c696e656172206e2075322075392929290a0a28646566696e652d726561642d6f6e6c792028636f73745f757365725f66756e6374696f6e5f6170706c69636174696f6e20286e2075696e7429290a202020202872756e74696d6520286c696e656172206e2075323620753134302929290a0a28646566696e652d726561642d6f6e6c792028636f73745f6c657420286e2075696e7429290a202020202872756e74696d6520286c696e656172206e207531343620753836322929290a0a28646566696e652d726561642d6f6e6c792028636f73745f696620286e2075696e7429290a202020202872756e74696d65207532303029290a0a28646566696e652d726561642d6f6e6c792028636f73745f6173736572747320286e2075696e7429290a202020202872756e74696d65207531353829290a0a28646566696e652d726561642d6f6e6c792028636f73745f6d617020286e2075696e7429290a202020202872756e74696d6520286c696e656172206e2075313231302075333331342929290a0a28646566696e652d726561642d6f6e6c792028636f73745f66696c74657220286e2075696e7429290a202020202872756e74696d65207534363029290a0a28646566696e652d726561642d6f6e6c792028636f73745f6c656e20286e2075696e7429290a202020202872756e74696d65207534383629290a0a28646566696e652d726561642d6f6e6c792028636f73745f656c656d656e745f617420286e2075696e7429290a202020202872756e74696d65207536313929290a0a28646566696e652d726561642d6f6e6c792028636f73745f696e6465785f6f6620286e2075696e7429290a202020202872756e74696d6520286c696e656172206e20753120753234332929290a0a28646566696e652d726561642d6f6e6c792028636f73745f666f6c6420286e2075696e7429290a202020202872756e74696d65207534383329290a0a28646566696e652d726561642d6f6e6c792028636f73745f6c6973745f636f6e7320286e2075696e7429290a202020202872756e74696d6520286c696e656172206e2075313420753139382929290a0a28646566696e652d726561642d6f6e6c792028636f73745f747970655f70617273655f7374657020286e2075696e7429290a202020202872756e74696d6520753529290a0a28646566696e652d726561642d6f6e6c792028636f73745f7475706c655f67657420286e2075696e7429290a202020202872756e74696d6520286e6c6f676e206e2075342075313738302929290a0a28646566696e652d726561642d6f6e6c792028636f73745f7475706c655f6d6572676520286e2075696e7429290a202020202872756e74696d6520286c696e656172206e20753420753634362929290a0a28646566696e652d726561642d6f6e6c792028636f73745f7475706c655f636f6e7320286e2075696e7429290a202020202872756e74696d6520286e6c6f676e206e207531312075313130312929290a0a28646566696e652d726561642d6f6e6c792028636f73745f61646420286e2075696e7429290a202020202872756e74696d6520286c696e656172206e2075313220753135362929290a0a28646566696e652d726561642d6f6e6c792028636f73745f73756220286e2075696e7429290a202020202872756e74696d6520286c696e656172206e2075313220753135362929290a0a28646566696e652d726561642d6f6e6c792028636f73745f6d756c20286e2075696e7429290a202020202872756e74696d6520286c696e656172206e2075313420753135372929290a0a28646566696e652d726561642d6f6e6c792028636f73745f64697620286e2075696e7429290a202020202872756e74696d6520286c696e656172206e2075313420753135372929290a0a28646566696e652d726561642d6f6e6c792028636f73745f67657120286e2075696e7429290a202020202872756e74696d65207531363629290a0a28646566696e652d726561642d6f6e6c792028636f73745f6c657120286e2075696e7429290a202020202872756e74696d65207531363629290a0a28646566696e652d726561642d6f6e6c792028636f73745f6c6520286e2075696e7429290a202020202872756e74696d65207531363629290a0a28646566696e652d726561642d6f6e6c792028636f73745f676520286e2075696e7429290a202020202872756e74696d65207531363629290a0a28646566696e652d726561642d6f6e6c792028636f73745f696e745f6361737420286e2075696e7429290a202020202872756e74696d65207531363429290a0a28646566696e652d726561642d6f6e6c792028636f73745f6d6f6420286e2075696e7429290a202020202872756e74696d65207531363829290a0a28646566696e652d726561642d6f6e6c792028636f73745f706f7720286e2075696e7429290a202020202872756e74696d65207531373029290a0a28646566696e652d726561642d6f6e6c792028636f73745f737172746920286e2075696e7429290a202020202872756e74696d65207531363729290a0a28646566696e652d726561642d6f6e6c792028636f73745f6c6f673220286e2075696e7429290a202020202872756e74696d65207531363129290a0a28646566696e652d726561642d6f6e6c792028636f73745f786f7220286e2075696e7429290a202020202872756e74696d65207531363729290a0a28646566696e652d726561642d6f6e6c792028636f73745f6e6f7420286e2075696e7429290a202020202872756e74696d65207531363229290a0a28646566696e652d726561642d6f6e6c792028636f73745f657120286e2075696e7429290a202020202872756e74696d6520286c696e656172206e20753720753137322929290a0a28646566696e652d726561642d6f6e6c792028636f73745f626567696e20286e2075696e7429290a202020202872756e74696d65207532303229290a0a28646566696e652d726561642d6f6e6c792028636f73745f6861736831363020286e2075696e7429290a202020202872756e74696d6520286c696e656172206e20753120753230312929290a0a28646566696e652d726561642d6f6e6c792028636f73745f73686132353620286e2075696e7429290a202020202872756e74696d6520286c696e656172206e20753120753130302929290a0a28646566696e652d726561642d6f6e6c792028636f73745f73686135313220286e2075696e7429290a202020202872756e74696d6520286c696e656172206e20753120753137362929290a0a28646566696e652d726561642d6f6e6c792028636f73745f7368613531327432353620286e2075696e7429290a202020202872756e74696d6520286c696e656172206e20753120753138382929290a0a28646566696e652d726561642d6f6e6c792028636f73745f6b656363616b32353620286e2075696e7429290a202020202872756e74696d6520286c696e656172206e20753120753232312929290a0a28646566696e652d726561642d6f6e6c792028636f73745f736563703235366b317265636f76657220286e2075696e7429290a202020202872756e74696d652075313433343429290a0a28646566696e652d726561642d6f6e6c792028636f73745f736563703235366b3176657269667920286e2075696e7429290a202020202872756e74696d652075313335343029290a0a28646566696e652d726561642d6f6e6c792028636f73745f7072696e7420286e2075696e7429290a202020202872756e74696d6520286c696e656172206e2075332075313431332929290a0a28646566696e652d726561642d6f6e6c792028636f73745f736f6d655f636f6e7320286e2075696e7429290a202020202872756e74696d65207532333029290a0a28646566696e652d726561642d6f6e6c792028636f73745f6f6b5f636f6e7320286e2075696e7429290a202020202872756e74696d65207532333029290a0a28646566696e652d726561642d6f6e6c792028636f73745f6572725f636f6e7320286e2075696e7429290a202020202872756e74696d65207532333029290a0a28646566696e652d726561642d6f6e6c792028636f73745f64656661756c745f746f20286e2075696e7429290a202020202872756e74696d65207532343929290a0a28646566696e652d726561642d6f6e6c792028636f73745f756e777261705f72657420286e2075696e7429290a202020202872756e74696d65207532393929290a0a28646566696e652d726561642d6f6e6c792028636f73745f756e777261705f6572725f6f725f72657420286e2075696e7429290a202020202872756e74696d65207533333929290a0a28646566696e652d726561642d6f6e6c792028636f73745f69735f6f6b617920286e2075696e7429290a202020202872756e74696d65207532383729290a0a28646566696e652d726561642d6f6e6c792028636f73745f69735f6e6f6e6520286e2075696e7429290a202020202872756e74696d65207532383729290a0a28646566696e652d726561642d6f6e6c792028636f73745f69735f65727220286e2075696e7429290a202020202872756e74696d65207532383729290a0a28646566696e652d726561642d6f6e6c792028636f73745f69735f736f6d6520286e2075696e7429290a202020202872756e74696d65207532383729290a0a28646566696e652d726561642d6f6e6c792028636f73745f756e7772617020286e2075696e7429290a202020202872756e74696d65207532383429290a0a28646566696e652d726561642d6f6e6c792028636f73745f756e777261705f65727220286e2075696e7429290a202020202872756e74696d65207532363429290a0a28646566696e652d726561642d6f6e6c792028636f73745f7472795f72657420286e2075696e7429290a202020202872756e74696d65207532353629290a0a28646566696e652d726561642d6f6e6c792028636f73745f6d6174636820286e2075696e7429290a202020202872756e74696d65207532383629290a0a28646566696e652d726561642d6f6e6c792028636f73745f6f7220286e2075696e7429290a202020202872756e74696d6520286c696e656172206e20753320753134392929290a0a28646566696e652d726561642d6f6e6c792028636f73745f616e6420286e2075696e7429290a202020202872756e74696d6520286c696e656172206e20753320753134392929290a0a28646566696e652d726561642d6f6e6c792028636f73745f617070656e6420286e2075696e7429290a202020202872756e74696d6520286c696e656172206e2075373120753137362929290a0a28646566696e652d726561642d6f6e6c792028636f73745f636f6e63617420286e2075696e7429290a202020202872756e74696d6520286c696e656172206e2075373520753234342929290a0a28646566696e652d726561642d6f6e6c792028636f73745f61735f6d61785f6c656e20286e2075696e7429290a202020202872756e74696d65207534373529290a0a28646566696e652d726561642d6f6e6c792028636f73745f636f6e74726163745f63616c6c20286e2075696e7429290a202020202872756e74696d65207531353329290a0a28646566696e652d726561642d6f6e6c792028636f73745f636f6e74726163745f6f6620286e2075696e7429290a202020202872756e74696d652075313334303029290a0a28646566696e652d726561642d6f6e6c792028636f73745f7072696e636970616c5f6f6620286e2075696e7429290a202020202872756e74696d652075333929290a0a0a28646566696e652d726561642d6f6e6c792028636f73745f61745f626c6f636b20286e2075696e7429290a202020207b0a202020202020202072756e74696d653a20753231302c0a202020202020202077726974655f6c656e6774683a2075302c0a202020202020202077726974655f636f756e743a2075302c0a2020202020202020726561645f636f756e743a2075312c0a2020202020202020726561645f6c656e6774683a2075310a202020207d290a0a0a28646566696e652d726561642d6f6e6c792028636f73745f6c6f61645f636f6e747261637420286e2075696e7429290a202020207b0a202020202020202072756e74696d653a20286c696e656172206e2075312075313537292c0a202020202020202077726974655f6c656e6774683a2075302c0a202020202020202077726974655f636f756e743a2075302c0a20202020202020203b3b2073657420746f20332062656361757365206f6620746865206173736f636961746564206d65746164617461206c6f6164730a2020202020202020726561645f636f756e743a2075332c0a2020202020202020726561645f6c656e6774683a20286c696e656172206e207531207531290a202020207d290a0a0a28646566696e652d726561642d6f6e6c792028636f73745f6372656174655f6d617020286e2075696e7429290a202020207b0a202020202020202072756e74696d653a20286c696e656172206e207531207531363331292c0a202020202020202077726974655f6c656e6774683a20286c696e656172206e207531207531292c0a202020202020202077726974655f636f756e743a2075312c0a2020202020202020726561645f636f756e743a2075302c0a2020202020202020726561645f6c656e6774683a2075300a202020207d290a0a0a28646566696e652d726561642d6f6e6c792028636f73745f6372656174655f76617220286e2075696e7429290a202020207b0a202020202020202072756e74696d653a20286c696e656172206e207537207532313532292c0a202020202020202077726974655f6c656e6774683a20286c696e656172206e207531207531292c0a202020202020202077726974655f636f756e743a2075322c0a2020202020202020726561645f636f756e743a2075302c0a2020202020202020726561645f6c656e6774683a2075300a202020207d290a0a0a28646566696e652d726561642d6f6e6c792028636f73745f6372656174655f6e667420286e2075696e7429290a202020207b0a202020202020202072756e74696d653a20286c696e656172206e207531207531363130292c0a202020202020202077726974655f6c656e6774683a20286c696e656172206e207531207531292c0a202020202020202077726974655f636f756e743a2075312c0a2020202020202020726561645f636f756e743a2075302c0a2020202020202020726561645f6c656e6774683a2075300a202020207d290a0a0a28646566696e652d726561642d6f6e6c792028636f73745f6372656174655f667420286e2075696e7429290a202020207b0a202020202020202072756e74696d653a2075313937322c0a202020202020202077726974655f6c656e6774683a2075312c0a202020202020202077726974655f636f756e743a2075322c0a2020202020202020726561645f636f756e743a2075302c0a2020202020202020726561645f6c656e6774683a2075300a202020207d290a0a0a28646566696e652d726561642d6f6e6c792028636f73745f66657463685f656e74727920286e2075696e7429290a202020207b0a202020202020202072756e74696d653a20286c696e656172206e207531207531353339292c0a202020202020202077726974655f6c656e6774683a2075302c0a202020202020202077726974655f636f756e743a2075302c0a2020202020202020726561645f636f756e743a2075312c0a2020202020202020726561645f6c656e6774683a20286c696e656172206e207531207531290a202020207d290a0a0a28646566696e652d726561642d6f6e6c792028636f73745f7365745f656e74727920286e2075696e7429290a202020207b0a202020202020202072756e74696d653a20286c696e656172206e207534207532323034292c0a202020202020202077726974655f6c656e6774683a20286c696e656172206e207531207531292c0a202020202020202077726974655f636f756e743a2075312c0a2020202020202020726561645f636f756e743a2075312c0a2020202020202020726561645f6c656e6774683a2075300a202020207d290a0a0a28646566696e652d726561642d6f6e6c792028636f73745f66657463685f76617220286e2075696e7429290a202020207b0a202020202020202072756e74696d653a20286c696e656172206e2075312075353433292c0a202020202020202077726974655f6c656e6774683a2075302c0a202020202020202077726974655f636f756e743a2075302c0a2020202020202020726561645f636f756e743a2075312c0a2020202020202020726561645f6c656e6774683a20286c696e656172206e207531207531290a202020207d290a0a0a28646566696e652d726561642d6f6e6c792028636f73745f7365745f76617220286e2075696e7429290a202020207b0a202020202020202072756e74696d653a20286c696e656172206e2075352075363931292c0a202020202020202077726974655f6c656e6774683a20286c696e656172206e207531207531292c0a202020202020202077726974655f636f756e743a2075312c0a2020202020202020726561645f636f756e743a2075312c0a2020202020202020726561645f6c656e6774683a2075300a202020207d290a0a0a28646566696e652d726561642d6f6e6c792028636f73745f636f6e74726163745f73746f7261676520286e2075696e7429290a202020207b0a202020202020202072756e74696d653a20286c696e656172206e20753133207537393832292c0a202020202020202077726974655f6c656e6774683a20286c696e656172206e207531207531292c0a202020202020202077726974655f636f756e743a2075312c0a2020202020202020726561645f636f756e743a2075302c0a2020202020202020726561645f6c656e6774683a2075300a202020207d290a0a0a28646566696e652d726561642d6f6e6c792028636f73745f626c6f636b5f696e666f20286e2075696e7429290a202020207b0a202020202020202072756e74696d653a2075363332312c0a202020202020202077726974655f6c656e6774683a2075302c0a202020202020202077726974655f636f756e743a2075302c0a2020202020202020726561645f636f756e743a2075312c0a2020202020202020726561645f6c656e6774683a2075310a202020207d290a0a0a28646566696e652d726561642d6f6e6c792028636f73745f7374785f62616c616e636520286e2075696e7429290a202020207b0a202020202020202072756e74696d653a2075313338352c0a202020202020202077726974655f6c656e6774683a2075302c0a202020202020202077726974655f636f756e743a2075302c0a2020202020202020726561645f636f756e743a2075312c0a2020202020202020726561645f6c656e6774683a2075310a202020207d290a0a0a28646566696e652d726561642d6f6e6c792028636f73745f7374785f7472616e7366657220286e2075696e7429290a202020207b0a202020202020202072756e74696d653a2075313433302c0a202020202020202077726974655f6c656e6774683a2075312c0a202020202020202077726974655f636f756e743a2075312c0a2020202020202020726561645f636f756e743a2075312c0a2020202020202020726561645f6c656e6774683a2075310a202020207d290a0a0a28646566696e652d726561642d6f6e6c792028636f73745f66745f6d696e7420286e2075696e7429290a202020207b0a202020202020202072756e74696d653a2075313634352c0a202020202020202077726974655f6c656e6774683a2075312c0a202020202020202077726974655f636f756e743a2075322c0a2020202020202020726561645f636f756e743a2075322c0a2020202020202020726561645f6c656e6774683a2075310a202020207d290a0a0a28646566696e652d726561642d6f6e6c792028636f73745f66745f7472616e7366657220286e2075696e7429290a202020207b0a202020202020202072756e74696d653a20753631322c0a202020202020202077726974655f6c656e6774683a2075312c0a202020202020202077726974655f636f756e743a2075322c0a2020202020202020726561645f636f756e743a2075322c0a2020202020202020726561645f6c656e6774683a2075310a202020207d290a0a0a28646566696e652d726561642d6f6e6c792028636f73745f66745f62616c616e636520286e2075696e7429290a202020207b0a202020202020202072756e74696d653a20753534372c0a202020202020202077726974655f6c656e6774683a2075302c0a202020202020202077726974655f636f756e743a2075302c0a2020202020202020726561645f636f756e743a2075312c0a2020202020202020726561645f6c656e6774683a2075310a202020207d290a0a0a28646566696e652d726561642d6f6e6c792028636f73745f6e66745f6d696e7420286e2075696e7429290a202020207b0a202020202020202072756e74696d653a20286c696e656172206e2075392075373935292c0a202020202020202077726974655f6c656e6774683a2075312c0a202020202020202077726974655f636f756e743a2075312c0a2020202020202020726561645f636f756e743a2075312c0a2020202020202020726561645f6c656e6774683a2075310a202020207d290a0a0a28646566696e652d726561642d6f6e6c792028636f73745f6e66745f7472616e7366657220286e2075696e7429290a202020207b0a202020202020202072756e74696d653a20286c696e656172206e2075392075373935292c0a202020202020202077726974655f6c656e6774683a2075312c0a202020202020202077726974655f636f756e743a2075312c0a2020202020202020726561645f636f756e743a2075312c0a2020202020202020726561645f6c656e6774683a2075310a202020207d290a0a0a28646566696e652d726561642d6f6e6c792028636f73745f6e66745f6f776e657220286e2075696e7429290a202020207b0a202020202020202072756e74696d653a20286c696e656172206e2075392075373935292c0a202020202020202077726974655f6c656e6774683a2075302c0a202020202020202077726974655f636f756e743a2075302c0a2020202020202020726561645f636f756e743a2075312c0a2020202020202020726561645f6c656e6774683a2075310a202020207d290a0a0a28646566696e652d726561642d6f6e6c792028636f73745f66745f6765745f737570706c7920286e2075696e7429290a202020207b0a202020202020202072756e74696d653a20753438332c0a202020202020202077726974655f6c656e6774683a2075302c0a202020202020202077726974655f636f756e743a2075302c0a2020202020202020726561645f636f756e743a2075312c0a2020202020202020726561645f6c656e6774683a2075310a202020207d290a0a0a28646566696e652d726561642d6f6e6c792028636f73745f66745f6275726e20286e2075696e7429290a202020207b0a202020202020202072756e74696d653a20753631322c0a202020202020202077726974655f6c656e6774683a2075312c0a202020202020202077726974655f636f756e743a2075322c0a2020202020202020726561645f636f756e743a2075322c0a2020202020202020726561645f6c656e6774683a2075310a202020207d290a0a0a28646566696e652d726561642d6f6e6c792028636f73745f6e66745f6275726e20286e2075696e7429290a202020207b0a202020202020202072756e74696d653a20286c696e656172206e2075392075373935292c0a202020202020202077726974655f6c656e6774683a2075312c0a202020202020202077726974655f636f756e743a2075312c0a2020202020202020726561645f636f756e743a2075312c0a2020202020202020726561645f6c656e6774683a2075310a202020207d290a0a0a28646566696e652d726561642d6f6e6c792028706f69736f6e5f6d6963726f626c6f636b20286e2075696e7429290a202020207b0a202020202020202072756e74696d653a207532393536382c0a202020202020202077726974655f6c656e6774683a2075312c0a202020202020202077726974655f636f756e743a2075312c0a2020202020202020726561645f636f756e743a2075312c0a2020202020202020726561645f6c656e6774683a2075310a202020207d290a", "status": "success", "tx_index": 0, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": {"maps": [], "epoch": "Epoch20", "functions": [{"args": [{"name": "n", "type": "uint128"}, {"name": "a", "type": "uint128"}, {"name": "b", "type": "uint128"}], "name": "linear", "access": "private", "outputs": {"type": "uint128"}}, {"args": [{"name": "n", "type": "uint128"}, {"name": "a", "type": "uint128"}, {"name": "b", "type": "uint128"}], "name": "logn", "access": "private", "outputs": {"type": "uint128"}}, {"args": [{"name": "n", "type": "uint128"}, {"name": "a", "type": "uint128"}, {"name": "b", "type": "uint128"}], "name": "nlogn", "access": "private", "outputs": {"type": "uint128"}}, {"args": [{"name": "r", "type": "uint128"}], "name": "runtime", "access": "private", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_add", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_analysis_bind_name", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_analysis_check_let", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_analysis_check_tuple_cons", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_analysis_check_tuple_get", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_analysis_check_tuple_merge", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_analysis_fetch_contract_entry", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_analysis_get_function_entry", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_analysis_iterable_func", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_analysis_list_items_check", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_analysis_lookup_function", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_analysis_lookup_function_types", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_analysis_lookup_variable_const", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_analysis_lookup_variable_depth", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_analysis_option_check", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_analysis_option_cons", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_analysis_storage", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_analysis_tuple_items_check", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_analysis_type_annotate", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_analysis_type_check", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_analysis_type_lookup", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_analysis_use_trait_entry", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_analysis_visit", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_and", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_append", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_as_max_len", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_asserts", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_ast_cycle_detection", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_ast_parse", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_at_block", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_begin", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_bind_name", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_block_info", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_concat", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_contract_call", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_contract_of", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_contract_storage", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_create_ft", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_create_map", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_create_nft", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_create_var", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_default_to", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_div", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_element_at", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_eq", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_err_cons", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_fetch_entry", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_fetch_var", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_filter", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_fold", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_ft_balance", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_ft_burn", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_ft_get_supply", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_ft_mint", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_ft_transfer", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_ge", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_geq", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_hash160", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_if", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_index_of", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_inner_type_check_cost", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_int_cast", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_is_err", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_is_none", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_is_okay", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_is_some", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_keccak256", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_le", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_len", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_leq", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_let", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_list_cons", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_load_contract", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_log2", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_lookup_function", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_lookup_variable_depth", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_lookup_variable_size", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_map", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_match", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_mod", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_mul", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_nft_burn", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_nft_mint", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_nft_owner", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_nft_transfer", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_not", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_ok_cons", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_or", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_pow", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_principal_of", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_print", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_secp256k1recover", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_secp256k1verify", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_set_entry", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_set_var", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_sha256", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_sha512", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_sha512t256", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_some_cons", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_sqrti", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_stx_balance", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_stx_transfer", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_sub", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_try_ret", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_tuple_cons", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_tuple_get", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_tuple_merge", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_type_parse_step", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_unwrap", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_unwrap_err", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_unwrap_err_or_ret", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_unwrap_ret", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_user_function_application", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_xor", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "poison_microblock", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}], "variables": [], "clarity_version": "Clarity1", "fungible_tokens": [], "non_fungible_tokens": []}, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}, {"txid": "0x1bede82377127966b54032fce154577f685b413d726a8638bc40abbed2cf2a51", "raw_tx": "0x80000000000400000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030200000000060205706f782d320001050e3b3b20506f5820746573746e657420636f6e7374616e74730a3b3b204d696e2f6d6178206e756d626572206f6620726577617264206379636c657320755354582063616e206265206c6f636b656420666f720a28646566696e652d636f6e7374616e74204d494e5f504f585f5245574152445f4359434c4553207531290a28646566696e652d636f6e7374616e74204d41585f504f585f5245574152445f4359434c455320753132290a0a3b3b2044656661756c74206c656e677468206f662074686520506f5820726567697374726174696f6e2077696e646f772c20696e206275726e636861696e20626c6f636b732e0a28646566696e652d636f6e7374616e7420505245504152455f4359434c455f4c454e47544820753530290a0a3b3b2044656661756c74206c656e677468206f662074686520506f5820726577617264206379636c652c20696e206275726e636861696e20626c6f636b732e0a28646566696e652d636f6e7374616e74205245574152445f4359434c455f4c454e475448207531303530290a0a3b3b2056616c69642076616c75657320666f72206275726e636861696e20616464726573732076657273696f6e732e0a3b3b20546865736520636f72726573706f6e6420746f20616464726573732068617368206d6f64657320696e20537461636b7320322e302e0a28646566696e652d636f6e7374616e7420414444524553535f56455253494f4e5f5032504b482030783030290a28646566696e652d636f6e7374616e7420414444524553535f56455253494f4e5f503253482030783031290a28646566696e652d636f6e7374616e7420414444524553535f56455253494f4e5f503257504b482030783032290a28646566696e652d636f6e7374616e7420414444524553535f56455253494f4e5f50325753482030783033290a0a3b3b20537461636b696e67207468726573686f6c64730a28646566696e652d636f6e7374616e7420535441434b494e475f5448524553484f4c445f3235207538303030290a28646566696e652d636f6e7374616e7420535441434b494e475f5448524553484f4c445f313030207532303030290a0a3b3b20546865202e706f782d3220636f6e74726163740a3b3b204572726f7220636f6465730a28646566696e652d636f6e7374616e74204552525f535441434b494e475f554e524541434841424c4520323535290a28646566696e652d636f6e7374616e74204552525f535441434b494e475f434f525255505445445f535441544520323534290a28646566696e652d636f6e7374616e74204552525f535441434b494e475f494e53554646494349454e545f46554e44532031290a28646566696e652d636f6e7374616e74204552525f535441434b494e475f494e56414c49445f4c4f434b5f504552494f442032290a28646566696e652d636f6e7374616e74204552525f535441434b494e475f414c52454144595f535441434b45442033290a28646566696e652d636f6e7374616e74204552525f535441434b494e475f4e4f5f535543485f5052494e434950414c2034290a28646566696e652d636f6e7374616e74204552525f535441434b494e475f455850495245442035290a28646566696e652d636f6e7374616e74204552525f535441434b494e475f5354585f4c4f434b45442036290a28646566696e652d636f6e7374616e74204552525f535441434b494e475f5045524d495353494f4e5f44454e4945442039290a28646566696e652d636f6e7374616e74204552525f535441434b494e475f5448524553484f4c445f4e4f545f4d4554203131290a28646566696e652d636f6e7374616e74204552525f535441434b494e475f504f585f414444524553535f494e5f555345203132290a28646566696e652d636f6e7374616e74204552525f535441434b494e475f494e56414c49445f504f585f41444452455353203133290a28646566696e652d636f6e7374616e74204552525f535441434b494e475f414c52454144595f52454a4543544544203137290a28646566696e652d636f6e7374616e74204552525f535441434b494e475f494e56414c49445f414d4f554e54203138290a28646566696e652d636f6e7374616e74204552525f4e4f545f414c4c4f574544203139290a28646566696e652d636f6e7374616e74204552525f535441434b494e475f414c52454144595f44454c454741544544203230290a28646566696e652d636f6e7374616e74204552525f44454c45474154494f4e5f455850495245535f445552494e475f4c4f434b203231290a28646566696e652d636f6e7374616e74204552525f44454c45474154494f4e5f544f4f5f4d5543485f4c4f434b4544203232290a28646566696e652d636f6e7374616e74204552525f44454c45474154494f4e5f504f585f414444525f5245515549524544203233290a28646566696e652d636f6e7374616e74204552525f494e56414c49445f53544152545f4255524e5f484549474854203234290a28646566696e652d636f6e7374616e74204552525f4e4f545f43555252454e545f535441434b4552203235290a28646566696e652d636f6e7374616e74204552525f535441434b5f455854454e445f4e4f545f4c4f434b4544203236290a28646566696e652d636f6e7374616e74204552525f535441434b5f494e4352454153455f4e4f545f4c4f434b4544203237290a28646566696e652d636f6e7374616e74204552525f44454c45474154494f4e5f4e4f5f5245574152445f534c4f54203238290a28646566696e652d636f6e7374616e74204552525f44454c45474154494f4e5f57524f4e475f5245574152445f534c4f54203239290a0a3b3b20506f582064697361626c696e67207468726573686f6c642028612070657263656e74290a28646566696e652d636f6e7374616e7420504f585f52454a454354494f4e5f4652414354494f4e20753235290a0a3b3b2056616c69642076616c75657320666f72206275726e636861696e20616464726573732076657273696f6e732e0a3b3b20546865736520666972737420666f757220636f72726573706f6e6420746f20616464726573732068617368206d6f64657320696e20537461636b7320322e312c0a3b3b20616e642061726520646566696e656420696e20706f782d6d61696e6e65742e636c617220616e6420706f782d746573746e65742e636c61722028736f20746865790a3b3b2063616e6e6f7420626520646566696e6564206865726520616761696e292e0a3b3b2028646566696e652d636f6e7374616e7420414444524553535f56455253494f4e5f5032504b482030783030290a3b3b2028646566696e652d636f6e7374616e7420414444524553535f56455253494f4e5f503253482030783031290a3b3b2028646566696e652d636f6e7374616e7420414444524553535f56455253494f4e5f503257504b482030783032290a3b3b2028646566696e652d636f6e7374616e7420414444524553535f56455253494f4e5f50325753482030783033290a28646566696e652d636f6e7374616e7420414444524553535f56455253494f4e5f4e41544956455f503257504b482030783034290a28646566696e652d636f6e7374616e7420414444524553535f56455253494f4e5f4e41544956455f50325753482030783035290a28646566696e652d636f6e7374616e7420414444524553535f56455253494f4e5f4e41544956455f503254522030783036290a3b3b204b65657020746865736520636f6e7374616e747320696e206c6f636b2d7374657020776974682074686520616464726573732076657273696f6e2062756666732061626f76650a3b3b204d6178696d756d2076616c7565206f6620616e20616464726573732076657273696f6e20617320612075696e740a28646566696e652d636f6e7374616e74204d41585f414444524553535f56455253494f4e207536290a3b3b204d6178696d756d2076616c7565206f6620616e20616464726573732076657273696f6e20746861742068617320612032302d62797465206861736862797465730a3b3b2028307830302c20307830312c20307830322c20307830332c20616e64203078303420686176652032302d6279746520686173686279746573290a28646566696e652d636f6e7374616e74204d41585f414444524553535f56455253494f4e5f425546465f3230207534290a3b3b204d6178696d756d2076616c7565206f6620616e20616464726573732076657273696f6e20746861742068617320612033322d62797465206861736862797465730a3b3b20283078303520616e64203078303620686176652033322d6279746520686173686279746573290a28646566696e652d636f6e7374616e74204d41585f414444524553535f56455253494f4e5f425546465f3332207536290a0a3b3b2044617461207661727320746861742073746f7265206120636f7079206f6620746865206275726e636861696e20636f6e66696775726174696f6e2e0a3b3b20496d706c656d656e74656420617320646174612d766172732c20736f207468617420646966666572656e7420636f6e66696775726174696f6e732063616e2062650a3b3b207573656420696e20652e672e2074657374206861726e65737365732e0a28646566696e652d646174612d76617220706f782d707265706172652d6379636c652d6c656e6774682075696e7420505245504152455f4359434c455f4c454e475448290a28646566696e652d646174612d76617220706f782d7265776172642d6379636c652d6c656e6774682075696e74205245574152445f4359434c455f4c454e475448290a28646566696e652d646174612d76617220706f782d72656a656374696f6e2d6672616374696f6e2075696e7420504f585f52454a454354494f4e5f4652414354494f4e290a28646566696e652d646174612d7661722066697273742d6275726e636861696e2d626c6f636b2d6865696768742075696e74207530290a28646566696e652d646174612d76617220636f6e6669677572656420626f6f6c2066616c7365290a28646566696e652d646174612d7661722066697273742d322d312d7265776172642d6379636c652075696e74207530290a0a3b3b20546869732066756e6374696f6e2063616e206f6e6c792062652063616c6c6564206f6e63652c207768656e20697420626f6f74732075700a28646566696e652d7075626c696320287365742d6275726e636861696e2d706172616d6574657273202866697273742d6275726e2d6865696768742075696e74290a202020202020202020202020202020202020202020202020202020202020202020202020202020202028707265706172652d6379636c652d6c656e6774682075696e74290a2020202020202020202020202020202020202020202020202020202020202020202020202020202020287265776172642d6379636c652d6c656e6774682075696e74290a20202020202020202020202020202020202020202020202020202020202020202020202020202020202872656a656374696f6e2d6672616374696f6e2075696e74290a202020202020202020202020202020202020202020202020202020202020202020202020202020202028626567696e2d322d312d7265776172642d6379636c652075696e7429290a2020202028626567696e0a202020202020202028617373657274732120286e6f7420287661722d67657420636f6e6669677572656429292028657272204552525f4e4f545f414c4c4f57454429290a2020202020202020287661722d7365742066697273742d6275726e636861696e2d626c6f636b2d6865696768742066697273742d6275726e2d686569676874290a2020202020202020287661722d73657420706f782d707265706172652d6379636c652d6c656e67746820707265706172652d6379636c652d6c656e677468290a2020202020202020287661722d73657420706f782d7265776172642d6379636c652d6c656e677468207265776172642d6379636c652d6c656e677468290a2020202020202020287661722d73657420706f782d72656a656374696f6e2d6672616374696f6e2072656a656374696f6e2d6672616374696f6e290a2020202020202020287661722d7365742066697273742d322d312d7265776172642d6379636c6520626567696e2d322d312d7265776172642d6379636c65290a2020202020202020287661722d73657420636f6e666967757265642074727565290a2020202020202020286f6b207472756529290a290a0a3b3b2054686520537461636b696e67206c6f636b2d757020737461746520616e64206173736f636961746564206d657461646174612e0a3b3b205265636f7264732061726520696e73657274656420696e746f2074686973206d6170207669612060737461636b2d737478602c206064656c65676174652d737461636b2d737478602c2060737461636b2d657874656e64600a3b3b20206064656c65676174652d737461636b2d657874656e646020616e64206275726e636861696e207472616e73616374696f6e7320666f7220696e766f6b696e672060737461636b2d737478602c206574632e0a3b3b205265636f7264732077696c6c2062652064656c657465642066726f6d2074686973206d6170207768656e206175746f2d756e6c6f636b73206172652070726f6365737365640a3b3b0a3b3b2054686973206d61702064652d6e6f726d616c697a657320736f6d652073746174652066726f6d2074686520607265776172642d6379636c652d706f782d616464726573732d6c69737460206d61700a3b3b2020616e64207468652060706f782d326020636f6e747261637420747269657320746f206b656570207468697320737461746520696e2073796e63207769746820746865207265776172642d6379636c650a3b3b202073746174652e20546865206d616a6f7220696e76617269616e7473206f6620746869732060737461636b696e672d737461746560206d6170206172653a0a3b3b2020202028312920616e7920656e74727920696e20607265776172642d6379636c652d706f782d616464726573732d6c6973746020776974682060736f6d6520737461636b65726020706f696e747320746f2061207265616c2060737461636b696e672d7374617465600a3b3b202020202832292060737461636b696e672d73746174652e7265776172642d7365742d696e646578657360206d6174636865732074686520696e646578206f66207468617420607265776172642d6379636c652d706f782d616464726573732d6c697374600a3b3b2020202028332920616c6c2060737461636b696e672d73746174652e7265776172642d7365742d696e646578657360206d617463682074686520696e646578206f6620746865697220726577617264206379636c6520656e74726965730a3b3b202020202834292060737461636b696e672d73746174652e706f782d6164647260206d61746368657320607265776172642d6379636c652d706f782d616464726573732d6c6973742e706f782d61646472600a3b3b20202020283529206966207365742c20286c656e207265776172642d7365742d696e646578657329203d3d206c6f636b2d706572696f640a3b3b2020202028362920287265776172642d6379636c652d746f2d6275726e2d68656967687420282b206c6f636b2d706572696f642066697273742d7265776172642d6379636c652929203d3d202867657420756e6c6f636b2d68656967687420287374782d6163636f756e7420737461636b657229290a3b3b2020546865736520696e76617269616e7473206f6e6c7920686f6c64207768696c6520606375722d7265776172642d6379636c65203c20282b206c6f636b2d706572696f642066697273742d7265776172642d6379636c6529600a3b3b0a28646566696e652d6d617020737461636b696e672d73746174650a202020207b20737461636b65723a207072696e636970616c207d0a202020207b0a20202020202020203b3b204465736372697074696f6e206f662074686520756e6465726c79696e67206275726e636861696e206164647265737320746861742077696c6c0a20202020202020203b3b207265636569766520506f5827656420746f6b656e732e205472616e736c6174696e67207468697320696e746f20616e20616464726573730a20202020202020203b3b20646570656e6473206f6e20746865206275726e636861696e206265696e6720757365642e20205768656e20426974636f696e2069730a20202020202020203b3b20746865206275726e636861696e2c20746869732067657473207472616e736c6174656420696e746f2061207032706b682c20703273682c0a20202020202020203b3b20703277706b682d703273682c2070327773682d703273682c20703277706b682c2070327773682c206f722070327472205554584f2c0a20202020202020203b3b20646570656e64696e67206f6e207468652076657273696f6e2e2020546865206068617368627974657360206669656c64202a6d7573742a2062650a20202020202020203b3b20656974686572203230206279746573206f722033322062797465732c20646570656e64696e67206f6e20746865206f75747075742e0a2020202020202020706f782d616464723a207b2076657273696f6e3a2028627566662031292c206861736862797465733a20286275666620333229207d2c0a20202020202020203b3b20686f77206c6f6e6720746865207553545820617265206c6f636b65642c20696e20726577617264206379636c65732e0a20202020202020206c6f636b2d706572696f643a2075696e742c0a20202020202020203b3b20726577617264206379636c65207768656e207265776172647320626567696e0a202020202020202066697273742d7265776172642d6379636c653a2075696e742c0a20202020202020203b3b20696e646578657320696e2065616368207265776172642d736574206173736f6369617465642077697468207468697320757365722e0a20202020202020203b3b20746865736520696e646578657320617265206f6e6c792076616c6964206c6f6f6b696e6720666f72776172642066726f6d0a20202020202020203b3b20206066697273742d7265776172642d6379636c65602028692e652e2c207468657920646f206e6f7420636f72726573706f6e640a20202020202020203b3b2020746f20656e747269657320696e2074686520726577617264207365742074686174206d61792068617665206265656e2066726f6d0a20202020202020203b3b202070726576696f757320737461636b2d7374782063616c6c732c206f72207072696f7220746f20616e20657874656e64290a20202020202020207265776172642d7365742d696e64657865733a20286c6973742031322075696e74290a202020207d0a290a0a3b3b2044656c65676174696f6e2072656c6174696f6e73686970730a28646566696e652d6d61702064656c65676174696f6e2d73746174650a202020207b20737461636b65723a207072696e636970616c207d0a202020207b0a2020202020202020616d6f756e742d757374783a2075696e742c20202020202020202020202020203b3b20686f77206d616e7920755354582064656c6567617465643f0a202020202020202064656c6567617465642d746f3a207072696e636970616c2c20202020202020203b3b2077686f206172652077652064656c65676174696e673f0a2020202020202020756e74696c2d6275726e2d68743a20286f7074696f6e616c2075696e74292c203b3b20686f77206c6f6e6720646f6573207468652064656c65676174696f6e206c6173743f0a20202020202020203b3b20646f6573207468652064656c6567617465205f6e6565645f20746f2075736520612073706563696669630a20202020202020203b3b20706f7820726563697069656e7420616464726573733f0a2020202020202020706f782d616464723a20286f7074696f6e616c207b2076657273696f6e3a2028627566662031292c206861736862797465733a20286275666620333229207d290a202020207d0a290a0a3b3b20616c6c6f77656420636f6e74726163742d63616c6c6572730a28646566696e652d6d617020616c6c6f77616e63652d636f6e74726163742d63616c6c6572730a202020207b2073656e6465723a207072696e636970616c2c20636f6e74726163742d63616c6c65723a207072696e636970616c207d0a202020207b20756e74696c2d6275726e2d68743a20286f7074696f6e616c2075696e7429207d290a0a3b3b20486f77206d616e7920755354582061726520737461636b656420696e206120676976656e20726577617264206379636c652e0a3b3b2055706461746564207768656e2061206e657720506f58206164647265737320697320726567697374657265642c206f72207768656e206d6f72652053545820617265206772616e7465640a3b3b20746f2069742e0a28646566696e652d6d6170207265776172642d6379636c652d746f74616c2d737461636b65640a202020207b207265776172642d6379636c653a2075696e74207d0a202020207b20746f74616c2d757374783a2075696e74207d0a290a0a3b3b20496e7465726e616c206d617020726561642062792074686520537461636b73206e6f646520746f2069746572617465207468726f75676820746865206c697374206f660a3b3b20506f582072657761726420616464726573736573206f6e2061207065722d7265776172642d6379636c652062617369732e0a28646566696e652d6d6170207265776172642d6379636c652d706f782d616464726573732d6c6973740a202020207b207265776172642d6379636c653a2075696e742c20696e6465783a2075696e74207d0a202020207b0a2020202020202020706f782d616464723a207b2076657273696f6e3a2028627566662031292c206861736862797465733a20286275666620333229207d2c0a2020202020202020746f74616c2d757374783a2075696e742c0a2020202020202020737461636b65723a20286f7074696f6e616c207072696e636970616c290a202020207d0a290a0a28646566696e652d6d6170207265776172642d6379636c652d706f782d616464726573732d6c6973742d6c656e0a202020207b207265776172642d6379636c653a2075696e74207d0a202020207b206c656e3a2075696e74207d0a290a0a3b3b20686f77206d75636820686173206265656e206c6f636b656420757020666f7220746869732061646472657373206265666f72650a3b3b202020636f6d6d697474696e673f0a3b3b2074686973206d617020616c6c6f777320737461636b65727320746f20737461636b20616d6f756e7473203c206d696e696d756d0a3b3b202020627920706179696e672074686520636f7374206f66206167677265676174696f6e20647572696e672074686520636f6d6d69740a28646566696e652d6d6170207061727469616c2d737461636b65642d62792d6379636c650a202020207b0a2020202020202020706f782d616464723a207b2076657273696f6e3a2028627566662031292c206861736862797465733a20286275666620333229207d2c0a20202020202020207265776172642d6379636c653a2075696e742c0a202020202020202073656e6465723a207072696e636970616c0a202020207d0a202020207b20737461636b65642d616d6f756e743a2075696e74207d0a290a0a3b3b2054686973206973206964656e746963616c20746f207061727469616c2d737461636b65642d62792d6379636c652c20627574206974732064617461206973206e657665722064656c657465642e0a3b3b204974206973207573656420746f207072657365727665206461746120666f7220646f776e73747265616d20636c69656e747320746f206f627365727665206167677265676174650a3b3b20636f6d6d6974732e202045616368206b65792f76616c7565207061697220696e2074686973206d61702069732073696d706c7920746865206c6173742076616c7565206f660a3b3b207061727469616c2d737461636b65642d62792d6379636c65207269676874206166746572206974207761732064656c657465642028736f2c2073756273657175656e742063616c6c730a3b3b20746f207468652060737461636b2d6167677265676174696f6e2d2a602066756e6374696f6e732077696c6c206f76657277726974652074686973292e0a28646566696e652d6d6170206c6f676765642d7061727469616c2d737461636b65642d62792d6379636c650a202020207b200a2020202020202020706f782d616464723a207b2076657273696f6e3a2028627566662031292c206861736862797465733a20286275666620333229207d2c0a20202020202020207265776172642d6379636c653a2075696e742c0a202020202020202073656e6465723a207072696e636970616c0a202020207d0a202020207b20737461636b65642d616d6f756e743a2075696e74207d0a290a0a3b3b20416d6f756e74206f66207553545820746861742072656a65637420506f582c20627920726577617264206379636c650a28646566696e652d6d617020737461636b696e672d72656a656374696f6e0a202020207b207265776172642d6379636c653a2075696e74207d0a202020207b20616d6f756e743a2075696e74207d0a290a0a3b3b2057686f2072656a656374656420696e20776869636820726577617264206379636c650a28646566696e652d6d617020737461636b696e672d72656a6563746f72730a202020207b20737461636b65723a207072696e636970616c2c207265776172642d6379636c653a2075696e74207d0a202020207b20616d6f756e743a2075696e74207d0a290a0a3b3b2047657474657220666f7220737461636b696e672d72656a6563746f72730a28646566696e652d726561642d6f6e6c7920286765742d706f782d72656a656374696f6e2028737461636b6572207072696e636970616c2920287265776172642d6379636c652075696e7429290a20202020286d61702d6765743f20737461636b696e672d72656a6563746f7273207b20737461636b65723a20737461636b65722c207265776172642d6379636c653a207265776172642d6379636c65207d29290a0a3b3b2048617320506f58206265656e2072656a656374656420696e2074686520676976656e20726577617264206379636c653f0a28646566696e652d726561642d6f6e6c79202869732d706f782d61637469766520287265776172642d6379636c652075696e7429290a20202020286c657420280a20202020202020202872656a6563742d766f7465730a2020202020202020202020202864656661756c742d746f0a2020202020202020202020202020202075300a202020202020202020202020202020202867657420616d6f756e7420286d61702d6765743f20737461636b696e672d72656a656374696f6e207b207265776172642d6379636c653a207265776172642d6379636c65207d292929290a20202020290a202020203b3b2028313030202a2072656a6563742d766f74657329202f207374782d6c69717569642d737570706c79203c20706f782d72656a656374696f6e2d6672616374696f6e0a20202020283c20282a20753130302072656a6563742d766f746573290a20202020202020282a20287661722d67657420706f782d72656a656374696f6e2d6672616374696f6e29207374782d6c69717569642d737570706c792929290a290a0a3b3b205768617427732074686520726577617264206379636c65206e756d626572206f6620746865206275726e636861696e20626c6f636b206865696768743f0a3b3b2057696c6c2072756e74696d652d61626f727420696620686569676874206973206c657373207468616e20746865206669727374206275726e636861696e20626c6f636b20287468697320697320696e74656e74696f6e616c290a28646566696e652d726561642d6f6e6c7920286275726e2d6865696768742d746f2d7265776172642d6379636c6520286865696768742075696e7429290a20202020282f20282d2068656967687420287661722d6765742066697273742d6275726e636861696e2d626c6f636b2d686569676874292920287661722d67657420706f782d7265776172642d6379636c652d6c656e6774682929290a0a3b3b205768617427732074686520626c6f636b2068656967687420617420746865207374617274206f66206120676976656e20726577617264206379636c653f0a28646566696e652d726561642d6f6e6c7920287265776172642d6379636c652d746f2d6275726e2d68656967687420286379636c652075696e7429290a20202020282b20287661722d6765742066697273742d6275726e636861696e2d626c6f636b2d6865696768742920282a206379636c6520287661722d67657420706f782d7265776172642d6379636c652d6c656e677468292929290a0a3b3b20576861742773207468652063757272656e7420506f5820726577617264206379636c653f0a28646566696e652d726561642d6f6e6c79202863757272656e742d706f782d7265776172642d6379636c65290a20202020286275726e2d6865696768742d746f2d7265776172642d6379636c65206275726e2d626c6f636b2d68656967687429290a0a3b3b2047657420746865205f63757272656e745f20506f5820737461636b696e67207072696e636970616c20696e666f726d6174696f6e2e202049662074686520696e666f726d6174696f6e0a3b3b20697320657870697265642c206f722069662074686572652773206e65766572206265656e2073756368206120737461636b65722c207468656e2072657475726e73206e6f6e652e0a28646566696e652d726561642d6f6e6c7920286765742d737461636b65722d696e666f2028737461636b6572207072696e636970616c29290a20202020286d6174636820286d61702d6765743f20737461636b696e672d7374617465207b20737461636b65723a20737461636b6572207d290a2020202020202020737461636b696e672d696e666f0a20202020202020202020202028696620283c3d20282b20286765742066697273742d7265776172642d6379636c6520737461636b696e672d696e666f292028676574206c6f636b2d706572696f6420737461636b696e672d696e666f2929202863757272656e742d706f782d7265776172642d6379636c6529290a202020202020202020202020202020203b3b2070726573656e742c20627574206c6f636b2068617320657870697265640a202020202020202020202020202020206e6f6e650a202020202020202020202020202020203b3b2070726573656e742c20616e64206c6f636b20686173206e6f7420657870697265640a2020202020202020202020202020202028736f6d6520737461636b696e672d696e666f290a202020202020202020202020290a20202020202020203b3b206e6f20737461746520617420616c6c0a20202020202020206e6f6e650a2020202029290a0a28646566696e652d726561642d6f6e6c792028636865636b2d63616c6c65722d616c6c6f776564290a20202020286f72202869732d65712074782d73656e64657220636f6e74726163742d63616c6c6572290a2020202020202020286c657420282863616c6c65722d616c6c6f7765640a20202020202020202020202020202020203b3b206966206e6f7420696e207468652063616c6c6572206d61702c2072657475726e2066616c73650a202020202020202020202020202020202028756e777261702120286d61702d6765743f20616c6c6f77616e63652d636f6e74726163742d63616c6c6572730a2020202020202020202020202020202020202020202020202020202020202020202020207b2073656e6465723a2074782d73656e6465722c20636f6e74726163742d63616c6c65723a20636f6e74726163742d63616c6c6572207d290a202020202020202020202020202020202020202020202020202066616c736529290a20202020202020202020202020202028657870697265732d61740a20202020202020202020202020202020203b3b20696620756e74696c2d6275726e2d6874206e6f74207365742c207468656e2072657475726e2074727565202862656361757365206e6f20657870697279290a202020202020202020202020202020202028756e7772617021202867657420756e74696c2d6275726e2d68742063616c6c65722d616c6c6f7765642920747275652929290a202020202020202020203b3b206973207468652063616c6c657220616c6c6f77616e636520657870697265643f0a2020202020202020202028696620283e3d206275726e2d626c6f636b2d68656967687420657870697265732d6174290a202020202020202020202020202066616c73650a202020202020202020202020202074727565292929290a0a28646566696e652d726561642d6f6e6c7920286765742d636865636b2d64656c65676174696f6e2028737461636b6572207072696e636970616c29290a20202020286c657420282864656c65676174696f6e2d696e666f20287472792120286d61702d6765743f2064656c65676174696f6e2d7374617465207b20737461636b65723a20737461636b6572207d292929290a2020202020203b3b2064696420746865206578697374696e672064656c65676174696f6e206578706972653f0a20202020202028696620286d61746368202867657420756e74696c2d6275726e2d68742064656c65676174696f6e2d696e666f290a2020202020202020202020202020202020756e74696c2d6275726e2d687420283e206275726e2d626c6f636b2d68656967687420756e74696c2d6275726e2d6874290a202020202020202020202020202020202066616c7365290a202020202020202020203b3b20697420657870697265642c2072657475726e206e6f6e650a202020202020202020206e6f6e650a202020202020202020203b3b2064656c65676174696f6e206973206163746976650a2020202020202020202028736f6d652064656c65676174696f6e2d696e666f292929290a0a3b3b20476574207468652073697a65206f6620746865207265776172642073657420666f72206120726577617264206379636c652e0a3b3b204e6f74652074686174207468697320646f6573205f6e6f745f2072657475726e206475706c696361746520506f58206164647265737365732e0a3b3b204e6f74652074686174207468697320616c736f205f77696c6c5f2072657475726e20506f58206164647265737365732074686174206172652062656e656174680a3b3b20746865206d696e696d756d207468726573686f6c64202d2d20692e652e20746865207468726573686f6c642063616e20696e63726561736520616674657220696e73657274696f6e2e0a3b3b205573656420696e7465726e616c6c792062792074686520537461636b73206e6f64652c2077686963682066696c74657273206f75742074686520656e74726965730a3b3b20696e2074686973206d617020746f2073656c65637420506f5820616464726573736573207769746820656e6f756768205354582e0a28646566696e652d726561642d6f6e6c7920286765742d7265776172642d7365742d73697a6520287265776172642d6379636c652075696e7429290a202020202864656661756c742d746f0a202020202020202075300a202020202020202028676574206c656e20286d61702d6765743f207265776172642d6379636c652d706f782d616464726573732d6c6973742d6c656e207b207265776172642d6379636c653a207265776172642d6379636c65207d292929290a0a3b3b20486f77206d616e792072656a656374696f6e20766f7465732068617665207765206265656e20616363756d756c6174696e6720666f7220746865206e65787420626c6f636b0a28646566696e652d726561642d6f6e6c7920286e6578742d6379636c652d72656a656374696f6e2d766f746573290a202020202864656661756c742d746f0a202020202020202075300a20202020202020202867657420616d6f756e7420286d61702d6765743f20737461636b696e672d72656a656374696f6e207b207265776172642d6379636c653a20282b207531202863757272656e742d706f782d7265776172642d6379636c652929207d292929290a0a3b3b2041646420612073696e676c6520506f58206164647265737320746f20612073696e676c6520726577617264206379636c652e0a3b3b205573656420746f206275696c64207570206120736574206f66207065722d7265776172642d6379636c6520506f58206164647265737365732e0a3b3b204e6f20636865636b696e672077696c6c20626520646f6e65202d2d20646f6e27742063616c6c206966207468697320506f58206164647265737320697320616c7265616479207265676973746572656420696e207468697320726577617264206379636c65210a3b3b2052657475726e732074686520696e64657820696e746f2074686520726577617264206379636c6520746861742074686520506f5820616464726573732069732073746f72656420746f0a28646566696e652d707269766174652028617070656e642d7265776172642d6379636c652d706f782d616464722028706f782d6164647220287475706c65202876657273696f6e202862756666203129292028686173686279746573202862756666203332292929290a20202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020287265776172642d6379636c652075696e74290a2020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202028616d6f756e742d757374782075696e74290a2020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202028737461636b657220286f7074696f6e616c207072696e636970616c2929290a20202020286c6574202828737a20286765742d7265776172642d7365742d73697a65207265776172642d6379636c652929290a2020202020202020286d61702d736574207265776172642d6379636c652d706f782d616464726573732d6c6973740a2020202020202020202020207b207265776172642d6379636c653a207265776172642d6379636c652c20696e6465783a20737a207d0a2020202020202020202020207b20706f782d616464723a20706f782d616464722c20746f74616c2d757374783a20616d6f756e742d757374782c20737461636b65723a20737461636b6572207d290a2020202020202020286d61702d736574207265776172642d6379636c652d706f782d616464726573732d6c6973742d6c656e0a2020202020202020202020207b207265776172642d6379636c653a207265776172642d6379636c65207d0a2020202020202020202020207b206c656e3a20282b20753120737a29207d290a20202020737a29290a0a3b3b20486f77206d616e7920755354582061726520737461636b65643f0a28646566696e652d726561642d6f6e6c7920286765742d746f74616c2d757374782d737461636b656420287265776172642d6379636c652075696e7429290a202020202864656661756c742d746f0a202020202020202075300a20202020202020202867657420746f74616c2d7573747820286d61702d6765743f207265776172642d6379636c652d746f74616c2d737461636b6564207b207265776172642d6379636c653a207265776172642d6379636c65207d2929290a290a0a3b3b2043616c6c656420696e7465726e616c6c7920627920746865206e6f646520746f2069746572617465207468726f75676820746865206c697374206f6620506f582061646472657373657320696e207468697320726577617264206379636c652e0a3b3b2052657475726e7320286f7074696f6e616c20287475706c652028706f782d61646472203c706f782d616464726573733e292028746f74616c2d75737478203c75696e743e2929290a28646566696e652d726561642d6f6e6c7920286765742d7265776172642d7365742d706f782d6164647265737320287265776172642d6379636c652075696e74292028696e6465782075696e7429290a20202020286d61702d6765743f207265776172642d6379636c652d706f782d616464726573732d6c697374207b207265776172642d6379636c653a207265776172642d6379636c652c20696e6465783a20696e646578207d29290a0a28646566696e652d707269766174652028666f6c642d756e6c6f636b2d7265776172642d6379636c6520287365742d696e6465782075696e74290a20202020202020202020202020202020202020202020202020202020202020202020202020202020202028646174612d7265732028726573706f6e7365207b206379636c653a2075696e742c0a20202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202066697273742d756e6c6f636b65642d6379636c653a2075696e742c0a202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020737461636b65723a207072696e636970616c0a202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020207d20696e742929290a20202020286c65742028286461746120287472792120646174612d72657329290a20202020202020202020286379636c652028676574206379636c65206461746129290a202020202020202020202866697273742d756e6c6f636b65642d6379636c6520286765742066697273742d756e6c6f636b65642d6379636c6520646174612929290a2020202020202020203b3b2069662063757272656e742d6379636c65206861736e277420726561636865642066697273742d756e6c6f636b65642d6379636c652c206a75737420636f6e74696e756520746f206e65787420697465720a20202020202020202028617373657274732120283e3d206379636c652066697273742d756e6c6f636b65642d6379636c652920286f6b20286d657267652064617461207b206379636c653a20282b207531206379636c6529207d2929290a202020202020202020286c65742028286379636c652d656e7472792028756e777261702d70616e696320286d61702d6765743f207265776172642d6379636c652d706f782d616464726573732d6c697374207b207265776172642d6379636c653a206379636c652c20696e6465783a207365742d696e646578207d2929290a202020202020202020202020202020286379636c652d656e7472792d75202867657420737461636b6572206379636c652d656e74727929290a202020202020202020202020202020286379636c652d656e7472792d746f74616c2d75737478202867657420746f74616c2d75737478206379636c652d656e74727929290a202020202020202020202020202020286379636c652d6c6173742d656e7472792d697820282d2028676574206c656e2028756e777261702d70616e696320286d61702d6765743f207265776172642d6379636c652d706f782d616464726573732d6c6973742d6c656e207b207265776172642d6379636c653a206379636c65207d2929292075312929290a202020202020202020202020286173736572747321202869732d6571206379636c652d656e7472792d752028736f6d65202867657420737461636b657220646174612929292028657272204552525f535441434b494e475f434f525255505445445f535441544529290a20202020202020202020202028696620286e6f74202869732d6571206379636c652d6c6173742d656e7472792d6978207365742d696e64657829290a202020202020202020202020202020203b3b20646f206120226d6f7665222069662074686520656e74727920746f2072656d6f76652069736e2774206c6173740a20202020202020202020202020202020286c65742028286d6f76652d656e7472792028756e777261702d70616e696320286d61702d6765743f207265776172642d6379636c652d706f782d616464726573732d6c697374207b207265776172642d6379636c653a206379636c652c20696e6465783a206379636c652d6c6173742d656e7472792d6978207d292929290a2020202020202020202020202020202020202020286d61702d736574207265776172642d6379636c652d706f782d616464726573732d6c6973740a20202020202020202020202020202020202020202020202020202020207b207265776172642d6379636c653a206379636c652c20696e6465783a207365742d696e646578207d0a20202020202020202020202020202020202020202020202020202020206d6f76652d656e747279290a2020202020202020202020202020202020202020286d61746368202867657420737461636b6572206d6f76652d656e74727929206d6f7665642d737461636b65720a2020202020202020202020202020202020202020203b3b20696620746865206d6f76656420656e7472792068616420616e206173736f63696174656420737461636b65722c20757064617465206974732073746174650a202020202020202020202020202020202020202020286c65742028286d6f7665642d73746174652028756e777261702d70616e696320286d61702d6765743f20737461636b696e672d7374617465207b20737461636b65723a206d6f7665642d737461636b6572207d2929290a2020202020202020202020202020202020202020202020202020203b3b2063616c63756c6174652074686520696e64657820696e746f20746865207265776172642d7365742d696e6465786573207468617420606379636c65602069732061740a202020202020202020202020202020202020202020202020202020286d6f7665642d6379636c652d696e64657820282d206379636c6520286765742066697273742d7265776172642d6379636c65206d6f7665642d73746174652929290a202020202020202020202020202020202020202020202020202020286d6f7665642d7265776172642d6c6973742028676574207265776172642d7365742d696e6465786573206d6f7665642d737461746529290a2020202020202020202020202020202020202020202020202020203b3b207265776172642d7365742d696e64657865735b6d6f7665642d6379636c652d696e6465785d203d207365742d696e6465782076696120736c6963653f2c20617070656e642c20636f6e6361742e0a202020202020202020202020202020202020202020202020202020287570646174652d6c6973742028756e777261702d70616e696320287265706c6163652d61743f206d6f7665642d7265776172642d6c697374206d6f7665642d6379636c652d696e646578207365742d696e646578292929290a2020202020202020202020202020202020202020202020202020286d61702d73657420737461636b696e672d7374617465207b20737461636b65723a206d6f7665642d737461636b6572207d0a2020202020202020202020202020202020202020202020202020202020202020202020286d65726765206d6f7665642d7374617465207b207265776172642d7365742d696e64657865733a207570646174652d6c697374207d2929290a2020202020202020202020202020202020202020203b3b206f74686572776973652c20776520646f6e2774206e65656420746f2075706461746520737461636b696e672d7374617465206166746572206d6f76650a2020202020202020202020202020202020202020207472756529290a202020202020202020202020202020203b3b206966206e6f74206d6f76696e672c206a757374206e6f6f700a2020202020202020202020202020202074727565290a2020202020202020202020203b3b20696e20616c6c2063617365732c207765206e6f77206e65656420746f2064656c65746520746865206c617374206c69737420656e7472790a202020202020202020202020286d61702d64656c657465207265776172642d6379636c652d706f782d616464726573732d6c697374207b207265776172642d6379636c653a206379636c652c20696e6465783a206379636c652d6c6173742d656e7472792d6978207d290a202020202020202020202020286d61702d736574207265776172642d6379636c652d706f782d616464726573732d6c6973742d6c656e207b207265776172642d6379636c653a206379636c65207d207b206c656e3a206379636c652d6c6173742d656e7472792d6978207d290a2020202020202020202020203b3b2066696e616c6c792c2075706461746520607265776172642d6379636c652d746f74616c2d737461636b6564600a202020202020202020202020286d61702d736574207265776172642d6379636c652d746f74616c2d737461636b6564207b207265776172642d6379636c653a206379636c65207d0a202020202020202020202020202020207b20746f74616c2d757374783a20282d202867657420746f74616c2d757374782028756e777261702d70616e696320286d61702d6765743f207265776172642d6379636c652d746f74616c2d737461636b6564207b207265776172642d6379636c653a206379636c65207d2929290a2020202020202020202020202020202020202020202020202020202020202020206379636c652d656e7472792d746f74616c2d7573747829207d290a202020202020202020202020286f6b20286d657267652064617461207b206379636c653a20282b207531206379636c65297d2029292929290a0a3b3b2054686973206d6574686f642069732063616c6c65642062792074686520537461636b7320626c6f636b2070726f636573736f72206469726563746c7920696e206f7264657220746f2068616e646c652074686520636f6e7472616374207374617465206d75746174696f6e730a3b3b20206173736f636961746564207769746820616e206561726c7920756e6c6f636b2e20546869732063616e206f6e6c7920626520696e766f6b65642062792074686520626c6f636b2070726f636573736f723a20697420697320707269766174652c20616e64206e6f206d6574686f64730a3b3b202066726f6d207468697320636f6e747261637420696e766f6b652069742e0a28646566696e652d70726976617465202868616e646c652d756e6c6f636b202875736572207072696e636970616c292028616d6f756e742d6c6f636b65642075696e742920286379636c652d746f2d756e6c6f636b2075696e7429290a20202020286c6574202828757365722d737461636b696e672d73746174652028756e777261702d70616e696320286d61702d6765743f20737461636b696e672d7374617465207b20737461636b65723a2075736572207d2929290a202020202020202020202866697273742d6379636c652d6c6f636b656420286765742066697273742d7265776172642d6379636c6520757365722d737461636b696e672d737461746529290a20202020202020202020287265776172642d7365742d696e64657865732028676574207265776172642d7365742d696e646578657320757365722d737461636b696e672d73746174652929290a20202020202020203b3b2069746572617465206f766572206561636820726577617264207365742074686520757365722069732061206d656d626572206f662c20616e642072656d6f7665207468656d2066726f6d2074686520736574732e206f6e6c79206170706c7920746f207265776172642073657473206166746572206379636c652d746f2d756e6c6f636b2e0a202020202020202028747279212028666f6c6420666f6c642d756e6c6f636b2d7265776172642d6379636c65207265776172642d7365742d696e646578657320286f6b207b206379636c653a2066697273742d6379636c652d6c6f636b65642c2066697273742d756e6c6f636b65642d6379636c653a206379636c652d746f2d756e6c6f636b2c20737461636b65723a2075736572207d2929290a20202020202020203b3b204e6f77207468617420776527766520636c65616e656420757020616c6c20746865207265776172642073657420656e747269657320666f722074686520757365722c2064656c657465207468652075736572277320737461636b696e672d73746174650a2020202020202020286d61702d64656c65746520737461636b696e672d7374617465207b20737461636b65723a2075736572207d290a2020202020202020286f6b20747275652929290a0a3b3b20416464206120506f58206164647265737320746f2074686520606379636c652d696e646578602d746820726577617264206379636c652c20696620606379636c652d696e64657860206973206265747765656e203020616e642074686520676976656e206e756d2d6379636c657320286578636c7573697665292e0a3b3b20417267756d656e74732061726520676976656e2061732061207475706c652c20736f20746869732066756e6374696f6e2063616e2062652028666f6c646564202e2e29276564206f6e746f2061206c697374206f662069747320617267756d656e74732e0a3b3b2055736564206279206164642d706f782d616464722d746f2d7265776172642d6379636c65732e0a3b3b204e6f20636865636b696e6720697320646f6e652e0a3b3b205468652072657475726e6564207475706c65206973207468652073616d6520617320696e7075747465642060706172616d73602c206275742074686520606960206669656c6420697320696e6372656d656e7465642069660a3b3b202074686520706f782d616464722077617320616464656420746f2074686520676976656e206379636c652e2020416c736f2c20607265776172642d7365742d696e6465786573602067726f777320746f20696e636c75646520616c6c0a3b3b20206f662074686520607265776172642d6379636c652d696e64657860206b6579207061727473206f662074686520607265776172642d6379636c652d706f782d616464726573732d6c697374602077686963682067657420616464656420627920746869732066756e6374696f6e2e0a3b3b202054686973207761792c207468652063616c6c6572206b6e6f7773207768696368206974656d7320696e206120676976656e20726577617264206379636c65277320506f582061646472657373206c69737420676f7420757064617465642e0a28646566696e652d7072697661746520286164642d706f782d616464722d746f2d6974682d7265776172642d6379636c6520286379636c652d696e6465782075696e74292028706172616d7320287475706c650a20202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202028706f782d6164647220287475706c65202876657273696f6e202862756666203129292028686173686279746573202862756666203332292929290a202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020287265776172642d7365742d696e646578657320286c6973742031322075696e7429290a2020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202866697273742d7265776172642d6379636c652075696e74290a202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020286e756d2d6379636c65732075696e74290a20202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202028737461636b657220286f7074696f6e616c207072696e636970616c29290a20202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202028616d6f756e742d757374782075696e74290a20202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202028692075696e74292929290a20202020286c65742028287265776172642d6379636c6520282b20286765742066697273742d7265776172642d6379636c6520706172616d73292028676574206920706172616d732929290a20202020202020202020286e756d2d6379636c65732028676574206e756d2d6379636c657320706172616d7329290a2020202020202020202028692028676574206920706172616d7329290a20202020202020202020287265776172642d7365742d696e6465782028696620283c2069206e756d2d6379636c6573290a202020202020202020202020286c6574202828746f74616c2d7573747820286765742d746f74616c2d757374782d737461636b6564207265776172642d6379636c6529290a202020202020202020202020202020202020287265776172642d696e6465780a202020202020202020202020202020202020202020203b3b207265636f726420686f77206d616e792075535458207468697320706f782d616464722077696c6c20737461636b20666f7220696e2074686520676976656e20726577617264206379636c650a2020202020202020202020202020202020202020202028617070656e642d7265776172642d6379636c652d706f782d616464720a2020202020202020202020202020202020202020202020202867657420706f782d6164647220706172616d73290a2020202020202020202020202020202020202020202020207265776172642d6379636c650a2020202020202020202020202020202020202020202020202867657420616d6f756e742d7573747820706172616d73290a2020202020202020202020202020202020202020202020202867657420737461636b657220706172616d73290a2020202020202020202020202020202020202020202020202929290a2020202020202020202020202020202020203b3b207570646174652072756e6e696e6720746f74616c0a202020202020202020202020202020202020286d61702d736574207265776172642d6379636c652d746f74616c2d737461636b65640a2020202020202020202020202020202020202020207b207265776172642d6379636c653a207265776172642d6379636c65207d0a2020202020202020202020202020202020202020207b20746f74616c2d757374783a20282b202867657420616d6f756e742d7573747820706172616d732920746f74616c2d7573747829207d290a20202020202020202020202020202020202028736f6d65207265776172642d696e64657829290a2020202020202020202020206e6f6e6529290a20202020202020202020286e6578742d692028696620283c2069206e756d2d6379636c65732920282b20692075312920692929290a202020207b0a2020202020202020706f782d616464723a202867657420706f782d6164647220706172616d73292c0a202020202020202066697273742d7265776172642d6379636c653a20286765742066697273742d7265776172642d6379636c6520706172616d73292c0a20202020202020206e756d2d6379636c65733a206e756d2d6379636c65732c0a2020202020202020616d6f756e742d757374783a202867657420616d6f756e742d7573747820706172616d73292c0a2020202020202020737461636b65723a202867657420737461636b657220706172616d73292c0a20202020202020207265776172642d7365742d696e64657865733a20286d617463680a2020202020202020202020207265776172642d7365742d696e646578206e65772028756e777261702d70616e6963202861732d6d61782d6c656e3f2028617070656e642028676574207265776172642d7365742d696e646578657320706172616d7329206e6577292075313229290a20202020202020202020202028676574207265776172642d7365742d696e646578657320706172616d7329292c0a2020202020202020693a206e6578742d690a202020207d29290a0a3b3b20416464206120506f58206164647265737320746f206120676976656e2073657175656e6365206f6620726577617264206379636c65206c697374732e0a3b3b204120506f5820616464726573732063616e20626520616464656420746f206174206d6f737420313220636f6e7365637574697665206379636c65732e0a3b3b204e6f20636865636b696e6720697320646f6e652e0a28646566696e652d7072697661746520286164642d706f782d616464722d746f2d7265776172642d6379636c65732028706f782d6164647220287475706c65202876657273696f6e202862756666203129292028686173686279746573202862756666203332292929290a20202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202866697273742d7265776172642d6379636c652075696e74290a2020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020286e756d2d6379636c65732075696e74290a202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202028616d6f756e742d757374782075696e74290a202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202028737461636b6572207072696e636970616c29290a2020286c65742028286379636c652d696e646578657320286c697374207530207531207532207533207534207535207536207537207538207539207531302075313129290a202020202020202028726573756c74732028666f6c64206164642d706f782d616464722d746f2d6974682d7265776172642d6379636c65206379636c652d696e64657865730a202020202020202020202020202020202020202020202020207b20706f782d616464723a20706f782d616464722c2066697273742d7265776172642d6379636c653a2066697273742d7265776172642d6379636c652c206e756d2d6379636c65733a206e756d2d6379636c65732c0a2020202020202020202020202020202020202020202020202020207265776172642d7365742d696e64657865733a20286c697374292c20616d6f756e742d757374783a20616d6f756e742d757374782c20693a2075302c20737461636b65723a2028736f6d6520737461636b657229207d29290a2020202020202020287265776172642d7365742d696e64657865732028676574207265776172642d7365742d696e646578657320726573756c74732929290a202020203b3b20466f72207361666574792c2061646420757020746865206e756d626572206f662074696d657320286164642d7072696e636970616c2d746f2d6974682d7265776172642d6379636c65292072657475726e7320312e0a202020203b3b204974205f73686f756c645f20626520657175616c20746f206e756d2d6379636c65732e0a20202020286173736572747321202869732d6571206e756d2d6379636c65732028676574206920726573756c747329292028657272204552525f535441434b494e475f554e524541434841424c4529290a20202020286173736572747321202869732d6571206e756d2d6379636c657320286c656e207265776172642d7365742d696e646578657329292028657272204552525f535441434b494e475f554e524541434841424c4529290a20202020286f6b207265776172642d7365742d696e64657865732929290a0a28646566696e652d7072697661746520286164642d706f782d7061727469616c2d737461636b65642d746f2d6974682d6379636c650a2020202020202020202020202020202020286379636c652d696e6465782075696e74290a202020202020202020202020202020202028706172616d73207b20706f782d616464723a207b2076657273696f6e3a2028627566662031292c206861736862797465733a20286275666620333229207d2c0a2020202020202020202020202020202020202020202020202020207265776172642d6379636c653a2075696e742c0a2020202020202020202020202020202020202020202020202020206e756d2d6379636c65733a2075696e742c0a202020202020202020202020202020202020202020202020202020616d6f756e742d757374783a2075696e74207d29290a2020286c6574202828706f782d6164647220202020202867657420706f782d616464722020202020706172616d7329290a2020202020202020286e756d2d6379636c657320202028676574206e756d2d6379636c6573202020706172616d7329290a2020202020202020287265776172642d6379636c652028676574207265776172642d6379636c6520706172616d7329290a202020202020202028616d6f756e742d7573747820202867657420616d6f756e742d757374782020706172616d732929290a20202020286c657420282863757272656e742d616d6f756e740a20202020202020202020202864656661756c742d746f2075300a202020202020202020202020202867657420737461636b65642d616d6f756e740a202020202020202020202020202020202020286d61702d6765743f207061727469616c2d737461636b65642d62792d6379636c65207b2073656e6465723a2074782d73656e6465722c20706f782d616464723a20706f782d616464722c207265776172642d6379636c653a207265776172642d6379636c65207d29292929290a20202020202028696620283e3d206379636c652d696e646578206e756d2d6379636c6573290a202020202020202020203b3b20646f206e6f742061646420746f206379636c6573203e3d206379636c652d696e6465780a2020202020202020202066616c73650a202020202020202020203b3b206f74686572776973652c2061646420746f20746865207061727469616c2d737461636b65642d62792d6379636c650a20202020202020202020286d61702d736574207061727469616c2d737461636b65642d62792d6379636c650a202020202020202020202020202020202020207b2073656e6465723a2074782d73656e6465722c20706f782d616464723a20706f782d616464722c207265776172642d6379636c653a207265776172642d6379636c65207d0a202020202020202020202020202020202020207b20737461636b65642d616d6f756e743a20282b20616d6f756e742d757374782063757272656e742d616d6f756e7429207d29290a2020202020203b3b2070726f6475636520746865206e65787420706172616d73207475706c650a2020202020207b20706f782d616464723a20706f782d616464722c0a20202020202020207265776172642d6379636c653a20282b207531207265776172642d6379636c65292c0a20202020202020206e756d2d6379636c65733a206e756d2d6379636c65732c0a2020202020202020616d6f756e742d757374783a20616d6f756e742d75737478207d2929290a0a3b3b20416464206120506f58206164647265737320746f206120676976656e2073657175656e6365206f66207061727469616c20726577617264206379636c65206c697374732e0a3b3b204120506f5820616464726573732063616e20626520616464656420746f206174206d6f737420313220636f6e7365637574697665206379636c65732e0a3b3b204e6f20636865636b696e6720697320646f6e652e0a28646566696e652d7072697661746520286164642d706f782d7061727469616c2d737461636b65642028706f782d6164647220287475706c65202876657273696f6e202862756666203129292028686173686279746573202862756666203332292929290a20202020202020202020202020202020202020202020202020202020202020202020202020202020202866697273742d7265776172642d6379636c652075696e74290a2020202020202020202020202020202020202020202020202020202020202020202020202020202020286e756d2d6379636c65732075696e74290a202020202020202020202020202020202020202020202020202020202020202020202020202020202028616d6f756e742d757374782075696e7429290a2020286c65742028286379636c652d696e646578657320286c69737420753020753120753220753320753420753520753620753720753820753920753130207531312929290a2020202028666f6c64206164642d706f782d7061727469616c2d737461636b65642d746f2d6974682d6379636c65206379636c652d696e64657865730a202020202020202020207b20706f782d616464723a20706f782d616464722c207265776172642d6379636c653a2066697273742d7265776172642d6379636c652c206e756d2d6379636c65733a206e756d2d6379636c65732c20616d6f756e742d757374783a20616d6f756e742d75737478207d290a202020207472756529290a0a3b3b205768617420697320746865206d696e696d756d206e756d626572206f66207553545820746f20626520737461636b656420696e2074686520676976656e20726577617264206379636c653f0a3b3b205573656420696e7465726e616c6c792062792074686520537461636b73206e6f64652c20616e642076697369626c65207075626c69636c792e0a28646566696e652d726561642d6f6e6c7920286765742d737461636b696e672d6d696e696d756d290a20202020282f207374782d6c69717569642d737570706c7920535441434b494e475f5448524553484f4c445f323529290a0a3b3b204973207468652061646472657373206d6f64652076616c696420666f72206120506f5820616464726573733f0a28646566696e652d726561642d6f6e6c792028636865636b2d706f782d616464722d76657273696f6e202876657273696f6e20286275666620312929290a20202020283c3d2028627566662d746f2d75696e742d62652076657273696f6e29204d41585f414444524553535f56455253494f4e29290a0a3b3b20497320746869732062756666657220746865207269676874206c656e67746820666f722074686520676976656e20506f5820616464726573733f0a28646566696e652d726561642d6f6e6c792028636865636b2d706f782d616464722d686173686279746573202876657273696f6e2028627566662031292920286861736862797465732028627566662033322929290a2020202028696620283c3d2028627566662d746f2d75696e742d62652076657273696f6e29204d41585f414444524553535f56455253494f4e5f425546465f3230290a20202020202020202869732d657120286c656e206861736862797465732920753230290a202020202020202028696620283c3d2028627566662d746f2d75696e742d62652076657273696f6e29204d41585f414444524553535f56455253494f4e5f425546465f3332290a2020202020202020202020202869732d657120286c656e206861736862797465732920753332290a20202020202020202020202066616c73652929290a0a3b3b2049732074686520676976656e206c6f636b20706572696f642076616c69643f0a28646566696e652d726561642d6f6e6c792028636865636b2d706f782d6c6f636b2d706572696f6420286c6f636b2d706572696f642075696e7429290a2020202028616e6420283e3d206c6f636b2d706572696f64204d494e5f504f585f5245574152445f4359434c4553290a202020202020202020283c3d206c6f636b2d706572696f64204d41585f504f585f5245574152445f4359434c45532929290a0a3b3b204576616c756174652069662061207061727469636970616e742063616e20737461636b20616e20616d6f756e74206f662053545820666f72206120676976656e20706572696f642e0a3b3b2054686973206d6574686f642069732064657369676e6564206173206120726561642d6f6e6c79206d6574686f6420736f20746861742069742063616e20626520757365642061730a3b3b206120736574206f6620677561726420636f6e646974696f6e7320616e6420616c736f206173206120726561642d6f6e6c79205250432063616c6c20746861742063616e2062650a3b3b20706572666f726d6564206265666f726568616e642e0a28646566696e652d726561642d6f6e6c79202863616e2d737461636b2d7374782028706f782d6164647220287475706c65202876657273696f6e202862756666203129292028686173686279746573202862756666203332292929290a2020202020202020202020202020202020202020202020202020202020202020202028616d6f756e742d757374782075696e74290a202020202020202020202020202020202020202020202020202020202020202020202866697273742d7265776172642d6379636c652075696e74290a20202020202020202020202020202020202020202020202020202020202020202020286e756d2d6379636c65732075696e7429290a202028626567696e0a202020203b3b206d696e696d756d2075535458206d757374206265206d65740a2020202028617373657274732120283c3d20286765742d737461636b696e672d6d696e696d756d2920616d6f756e742d75737478290a202020202020202020202020202028657272204552525f535441434b494e475f5448524553484f4c445f4e4f545f4d455429290a0a20202020286d696e696d616c2d63616e2d737461636b2d73747820706f782d6164647220616d6f756e742d757374782066697273742d7265776172642d6379636c65206e756d2d6379636c65732929290a0a3b3b204576616c756174652069662061207061727469636970616e742063616e20737461636b20616e20616d6f756e74206f662053545820666f72206120676976656e20706572696f642e0a3b3b2054686973206d6574686f642069732064657369676e6564206173206120726561642d6f6e6c79206d6574686f6420736f20746861742069742063616e20626520757365642061730a3b3b206120736574206f6620677561726420636f6e646974696f6e7320616e6420616c736f206173206120726561642d6f6e6c79205250432063616c6c20746861742063616e2062650a3b3b20706572666f726d6564206265666f726568616e642e0a28646566696e652d726561642d6f6e6c7920286d696e696d616c2d63616e2d737461636b2d7374780a2020202020202020202020202020202020202028706f782d6164647220287475706c65202876657273696f6e202862756666203129292028686173686279746573202862756666203332292929290a2020202020202020202020202020202020202028616d6f756e742d757374782075696e74290a202020202020202020202020202020202020202866697273742d7265776172642d6379636c652075696e74290a20202020202020202020202020202020202020286e756d2d6379636c65732075696e7429290a202028626567696e0a202020203b3b20616d6f756e74206d7573742062652076616c69640a2020202028617373657274732120283e20616d6f756e742d75737478207530290a202020202020202020202020202028657272204552525f535441434b494e475f494e56414c49445f414d4f554e5429290a0a202020203b3b2073656e646572207072696e636970616c206d757374206e6f7420686176652072656a656374656420696e2074686973207570636f6d696e6720726577617264206379636c650a20202020286173736572747321202869732d6e6f6e6520286765742d706f782d72656a656374696f6e2074782d73656e6465722066697273742d7265776172642d6379636c6529290a202020202020202020202020202028657272204552525f535441434b494e475f414c52454144595f52454a454354454429290a0a202020203b3b206c6f636b20706572696f64206d75737420626520696e2061636365707461626c652072616e67652e0a202020202861737365727473212028636865636b2d706f782d6c6f636b2d706572696f64206e756d2d6379636c6573290a202020202020202020202020202028657272204552525f535441434b494e475f494e56414c49445f4c4f434b5f504552494f4429290a0a202020203b3b20616464726573732076657273696f6e206d7573742062652076616c69640a202020202861737365727473212028636865636b2d706f782d616464722d76657273696f6e20286765742076657273696f6e20706f782d6164647229290a202020202020202020202020202028657272204552525f535441434b494e475f494e56414c49445f504f585f4144445245535329290a0a202020203b3b206164647265737320686173686279746573206d7573742062652076616c696420666f72207468652076657273696f6e0a202020202861737365727473212028636865636b2d706f782d616464722d68617368627974657320286765742076657273696f6e20706f782d616464722920286765742068617368627974657320706f782d6164647229290a202020202020202020202020202028657272204552525f535441434b494e475f494e56414c49445f504f585f4144445245535329290a0a20202020286f6b20747275652929290a0a3b3b205265766f6b6520636f6e74726163742d63616c6c657220617574686f72697a6174696f6e20746f2063616c6c20737461636b696e67206d6574686f64730a28646566696e652d7075626c69632028646973616c6c6f772d636f6e74726163742d63616c6c6572202863616c6c6572207072696e636970616c29290a202028626567696e0a20202020286173736572747321202869732d65712074782d73656e64657220636f6e74726163742d63616c6c6572290a202020202020202020202020202028657272204552525f535441434b494e475f5045524d495353494f4e5f44454e49454429290a20202020286f6b20286d61702d64656c65746520616c6c6f77616e63652d636f6e74726163742d63616c6c657273207b2073656e6465723a2074782d73656e6465722c20636f6e74726163742d63616c6c65723a2063616c6c6572207d292929290a0a3b3b2047697665206120636f6e74726163742d63616c6c657220617574686f72697a6174696f6e20746f2063616c6c20737461636b696e67206d6574686f64730a3b3b20206e6f726d616c6c792c20737461636b696e67206d6574686f6473206d6179206f6e6c7920626520696e766f6b6564206279205f6469726563745f207472616e73616374696f6e730a3b3b20202028692e652e2c207468652074782d73656e6465722069737375657320612064697265637420636f6e74726163742d63616c6c20746f2074686520737461636b696e67206d6574686f6473290a3b3b202062792069737375696e6720616e20616c6c6f77616e63652c207468652074782d73656e646572206d61792063616c6c207468726f7567682074686520616c6c6f77656420636f6e74726163740a28646566696e652d7075626c69632028616c6c6f772d636f6e74726163742d63616c6c6572202863616c6c6572207072696e636970616c292028756e74696c2d6275726e2d687420286f7074696f6e616c2075696e742929290a202028626567696e0a20202020286173736572747321202869732d65712074782d73656e64657220636f6e74726163742d63616c6c6572290a202020202020202020202020202028657272204552525f535441434b494e475f5045524d495353494f4e5f44454e49454429290a20202020286f6b20286d61702d73657420616c6c6f77616e63652d636f6e74726163742d63616c6c6572730a2020202020202020202020202020207b2073656e6465723a2074782d73656e6465722c20636f6e74726163742d63616c6c65723a2063616c6c6572207d0a2020202020202020202020202020207b20756e74696c2d6275726e2d68743a20756e74696c2d6275726e2d6874207d292929290a0a3b3b204c6f636b20757020736f6d65207553545820666f7220737461636b696e672120204e6f746520746861742074686520676976656e20616d6f756e74206865726520697320696e206d6963726f2d535458202875535458292e0a3b3b20546865205354582077696c6c206265206c6f636b656420666f722074686520676976656e206e756d626572206f6620726577617264206379636c657320286c6f636b2d706572696f64292e0a3b3b2054686973206973207468652073656c662d7365727669636520696e746572666163652e202074782d73656e6465722077696c6c2062652074686520537461636b65722e0a3b3b0a3b3b202a2054686520676976656e20737461636b65722063616e6e6f742063757272656e746c7920626520737461636b696e672e0a3b3b202a20596f752077696c6c206e65656420746865206d696e696d756d2075535458207468726573686f6c642e2020546869732077696c6c2062652064657465726d696e656420627920286765742d737461636b696e672d6d696e696d756d290a3b3b206174207468652074696d652074686973206d6574686f642069732063616c6c65642e0a3b3b202a20596f75206d6179206e65656420746f20696e6372656173652074686520616d6f756e74206f662075535458206c6f636b6564207570206c617465722c2073696e636520746865206d696e696d756d2075535458207468726573686f6c640a3b3b206d617920696e637265617365206265747765656e20726577617264206379636c65732e0a3b3b202a2054686520537461636b65722077696c6c2072656365697665207265776172647320696e2074686520726577617264206379636c6520666f6c6c6f77696e67206073746172742d6275726e2d6874602e0a3b3b20496d706f7274616e746c792c206073746172742d6275726e2d687460206d6179206e6f74206265206675727468657220696e746f2074686520667574757265207468616e20746865206e65787420726577617264206379636c652c0a3b3b20616e6420696e206d6f73742063617365732073686f756c642062652073657420746f207468652063757272656e74206275726e20626c6f636b206865696768742e0a3b3b0a3b3b2054686520746f6b656e732077696c6c20756e6c6f636b20616e642062652072657475726e656420746f2074686520537461636b6572202874782d73656e64657229206175746f6d61746963616c6c792e0a28646566696e652d7075626c69632028737461636b2d7374782028616d6f756e742d757374782075696e74290a202020202020202020202020202020202020202020202020202028706f782d6164647220287475706c65202876657273696f6e202862756666203129292028686173686279746573202862756666203332292929290a20202020202020202020202020202020202020202020202020202873746172742d6275726e2d68742075696e74290a2020202020202020202020202020202020202020202020202020286c6f636b2d706572696f642075696e7429290a202020203b3b207468697320737461636b6572277320666972737420726577617264206379636c6520697320746865205f6e6578745f20726577617264206379636c650a20202020286c657420282866697273742d7265776172642d6379636c6520282b207531202863757272656e742d706f782d7265776172642d6379636c652929290a20202020202020202020287370656369666965642d7265776172642d6379636c6520282b20753120286275726e2d6865696768742d746f2d7265776172642d6379636c652073746172742d6275726e2d6874292929290a2020202020203b3b207468652073746172742d6275726e2d6874206d75737420726573756c7420696e20746865206e65787420726577617264206379636c652c20646f206e6f7420616c6c6f7720737461636b6572730a2020202020203b3b2020746f2022706f73742d64617465222074686569722060737461636b2d73747860207472616e73616374696f6e0a202020202020286173736572747321202869732d65712066697273742d7265776172642d6379636c65207370656369666965642d7265776172642d6379636c65290a2020202020202020202020202020202028657272204552525f494e56414c49445f53544152545f4255524e5f48454947485429290a0a2020202020203b3b206d7573742062652063616c6c6564206469726563746c79206279207468652074782d73656e646572206f7220627920616e20616c6c6f77656420636f6e74726163742d63616c6c65720a2020202020202861737365727473212028636865636b2d63616c6c65722d616c6c6f776564290a2020202020202020202020202020202028657272204552525f535441434b494e475f5045524d495353494f4e5f44454e49454429290a0a2020202020203b3b2074782d73656e646572207072696e636970616c206d757374206e6f7420626520737461636b696e670a202020202020286173736572747321202869732d6e6f6e6520286765742d737461636b65722d696e666f2074782d73656e64657229290a202020202020202028657272204552525f535441434b494e475f414c52454144595f535441434b454429290a0a2020202020203b3b2074782d73656e646572206d757374206e6f742062652064656c65676174696e670a202020202020286173736572747321202869732d6e6f6e6520286765742d636865636b2d64656c65676174696f6e2074782d73656e64657229290a202020202020202028657272204552525f535441434b494e475f414c52454144595f44454c45474154454429290a0a2020202020203b3b2074686520537461636b6572206d75737420686176652073756666696369656e7420756e6c6f636b65642066756e64730a20202020202028617373657274732120283e3d20287374782d6765742d62616c616e63652074782d73656e6465722920616d6f756e742d75737478290a202020202020202028657272204552525f535441434b494e475f494e53554646494349454e545f46554e445329290a0a2020202020203b3b20656e73757265207468617420737461636b696e672063616e20626520706572666f726d65640a2020202020202874727921202863616e2d737461636b2d73747820706f782d6164647220616d6f756e742d757374782066697273742d7265776172642d6379636c65206c6f636b2d706572696f6429290a0a2020202020203b3b2072656769737465722074686520506f58206164647265737320776974682074686520616d6f756e7420737461636b65640a202020202020286c65742028287265776172642d7365742d696e646578657320287472792120286164642d706f782d616464722d746f2d7265776172642d6379636c657320706f782d616464722066697273742d7265776172642d6379636c65206c6f636b2d706572696f6420616d6f756e742d757374782074782d73656e646572292929290a202020202020202020203b3b2061646420737461636b6572207265636f72640a202020202020202020286d61702d73657420737461636b696e672d73746174650a20202020202020202020207b20737461636b65723a2074782d73656e646572207d0a20202020202020202020207b20706f782d616464723a20706f782d616464722c0a202020202020202020202020207265776172642d7365742d696e64657865733a207265776172642d7365742d696e64657865732c0a2020202020202020202020202066697273742d7265776172642d6379636c653a2066697273742d7265776172642d6379636c652c0a202020202020202020202020206c6f636b2d706572696f643a206c6f636b2d706572696f64207d290a0a202020202020202020203b3b2072657475726e20746865206c6f636b2d757020696e666f726d6174696f6e2c20736f20746865206e6f64652063616e2061637475616c6c79206361727279206f757420746865206c6f636b2e0a20202020202020202020286f6b207b20737461636b65723a2074782d73656e6465722c206c6f636b2d616d6f756e743a20616d6f756e742d757374782c20756e6c6f636b2d6275726e2d6865696768743a20287265776172642d6379636c652d746f2d6275726e2d68656967687420282b2066697273742d7265776172642d6379636c65206c6f636b2d706572696f642929207d292929290a0a28646566696e652d7075626c696320287265766f6b652d64656c65676174652d737478290a202028626567696e0a202020203b3b206d7573742062652063616c6c6564206469726563746c79206279207468652074782d73656e646572206f7220627920616e20616c6c6f77656420636f6e74726163742d63616c6c65720a202020202861737365727473212028636865636b2d63616c6c65722d616c6c6f776564290a202020202020202020202020202028657272204552525f535441434b494e475f5045524d495353494f4e5f44454e49454429290a20202020286f6b20286d61702d64656c6574652064656c65676174696f6e2d7374617465207b20737461636b65723a2074782d73656e646572207d292929290a0a3b3b2044656c656761746520746f206064656c65676174652d746f6020746865206162696c69747920746f20737461636b2066726f6d206120676976656e20616464726573732e0a3b3b202054686973206d6574686f64205f646f6573206e6f745f206c6f636b207468652066756e64732c207261746865722c20697420616c6c6f7773207468652064656c65676174650a3b3b2020746f2069737375652074686520737461636b696e67206c6f636b2e0a3b3b205468652063616c6c6572207370656369666965733a0a3b3b2020202a20616d6f756e742d757374783a2074686520746f74616c20616d6f756e74206f662075737478207468652064656c6567617465206d617920626520616c6c6f77656420746f206c6f636b0a3b3b2020202a20756e74696c2d6275726e2d68743a20616e206f7074696f6e616c206275726e2068656967687420617420776869636820746869732064656c65676174696f6e20657870697265730a3b3b2020202a20706f782d616464723a20616e206f7074696f6e616c206164647265737320746f20776869636820616e792072657761726473202a6d7573742a2062652073656e740a28646566696e652d7075626c6963202864656c65676174652d7374782028616d6f756e742d757374782075696e74290a20202020202020202020202020202020202020202020202020202020202864656c65676174652d746f207072696e636970616c290a202020202020202020202020202020202020202020202020202020202028756e74696c2d6275726e2d687420286f7074696f6e616c2075696e7429290a202020202020202020202020202020202020202020202020202020202028706f782d6164647220286f7074696f6e616c207b2076657273696f6e3a2028627566662031292c0a2020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020206861736862797465733a20286275666620333229207d2929290a2020202028626567696e0a2020202020203b3b206d7573742062652063616c6c6564206469726563746c79206279207468652074782d73656e646572206f7220627920616e20616c6c6f77656420636f6e74726163742d63616c6c65720a2020202020202861737365727473212028636865636b2d63616c6c65722d616c6c6f776564290a2020202020202020202020202020202028657272204552525f535441434b494e475f5045524d495353494f4e5f44454e49454429290a0a2020202020203b3b2064656c65676174652d737478206e6f206c6f6e676572207265717569726573207468652064656c656761746f7220746f206e6f742063757272656e746c790a2020202020203b3b2020626520737461636b696e672e0a0a2020202020203b3b20706f782d616464722c20696620676976656e2c206d7573742062652076616c69640a202020202020286d6174636820706f782d616464720a202020202020202020616464726573730a2020202020202020202020202861737365727473212028636865636b2d706f782d616464722d76657273696f6e20286765742076657273696f6e206164647265737329290a2020202020202020202020202020202028657272204552525f535441434b494e475f494e56414c49445f504f585f4144445245535329290a20202020202020202074727565290a0a2020202020203b3b2074782d73656e646572206d757374206e6f742062652064656c65676174696e670a202020202020286173736572747321202869732d6e6f6e6520286765742d636865636b2d64656c65676174696f6e2074782d73656e64657229290a202020202020202028657272204552525f535441434b494e475f414c52454144595f44454c45474154454429290a0a2020202020203b3b206164642064656c65676174696f6e207265636f72640a202020202020286d61702d7365742064656c65676174696f6e2d73746174650a20202020202020207b20737461636b65723a2074782d73656e646572207d0a20202020202020207b20616d6f756e742d757374783a20616d6f756e742d757374782c0a2020202020202020202064656c6567617465642d746f3a2064656c65676174652d746f2c0a20202020202020202020756e74696c2d6275726e2d68743a20756e74696c2d6275726e2d68742c0a20202020202020202020706f782d616464723a20706f782d61646472207d290a0a202020202020286f6b20747275652929290a0a3b3b20436f6d6d6974207061727469616c6c7920737461636b65642053545820616e6420616c6c6f636174652061206e657720506f5820726577617264206164647265737320736c6f742e0a3b3b2020205468697320616c6c6f7773206120737461636b65722f64656c656761746520746f206c6f636b20666577657220535458207468616e20746865206d696e696d616c207468726573686f6c6420696e206d756c7469706c65207472616e73616374696f6e732c0a3b3b202020736f206c6f6e672061733a20312e2054686520706f782d61646472206973207468652073616d652e0a3b3b202020202020202020202020202020322e20546869732022636f6d6d697422207472616e73616374696f6e2069732063616c6c6564205f6265666f72655f2074686520506f5820616e63686f7220626c6f636b2e0a3b3b2020205468697320656e73757265732074686174206561636820656e74727920696e2074686520726577617264207365742072657475726e656420746f2074686520737461636b732d6e6f64652069732067726561746572207468616e20746865207468726573686f6c642c0a3b3b20202062757420646f6573206e6f74207265717569726520697420626520616c6c206c6f636b65642075702077697468696e20612073696e676c65207472616e73616374696f6e0a3b3b0a3b3b2052657475726e7320286f6b2075696e7429206f6e20737563636573732c2077686572652074686520676976656e2075696e7420697320746865207265776172642061646472657373277320696e64657820696e20746865206c697374206f66207265776172640a3b3b2061646472657373657320616c6c6f636174656420696e207468697320726577617264206379636c652e20205468697320696e6465782063616e207468656e2062652070617373656420746f2060737461636b2d6167677265676174696f6e2d696e637265617365600a3b3b20746f206c6174657220696e6372656d656e742074686520535458207468697320506f58206164647265737320726570726573656e74732c20696e20616d6f756e7473206c657373207468616e2074686520737461636b696e67206d696e696d756d2e0a3b3b0a3b3b202a4e657720696e20537461636b7320322e312e2a0a28646566696e652d707269766174652028696e6e65722d737461636b2d6167677265676174696f6e2d636f6d6d69742028706f782d61646472207b2076657273696f6e3a2028627566662031292c206861736862797465733a20286275666620333229207d290a202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020287265776172642d6379636c652075696e7429290a2020286c65742028287061727469616c2d737461636b65640a2020202020202020203b3b20666574636820746865207061727469616c20636f6d6d69746d656e74730a20202020202020202028756e777261702120286d61702d6765743f207061727469616c2d737461636b65642d62792d6379636c65207b20706f782d616464723a20706f782d616464722c2073656e6465723a2074782d73656e6465722c207265776172642d6379636c653a207265776172642d6379636c65207d290a20202020202020202020202020202020202028657272204552525f535441434b494e475f4e4f5f535543485f5052494e434950414c292929290a202020203b3b206d7573742062652063616c6c6564206469726563746c79206279207468652074782d73656e646572206f7220627920616e20616c6c6f77656420636f6e74726163742d63616c6c65720a202020202861737365727473212028636865636b2d63616c6c65722d616c6c6f776564290a202020202020202020202020202028657272204552525f535441434b494e475f5045524d495353494f4e5f44454e49454429290a20202020286c6574202828616d6f756e742d75737478202867657420737461636b65642d616d6f756e74207061727469616c2d737461636b65642929290a2020202020202874727921202863616e2d737461636b2d73747820706f782d6164647220616d6f756e742d75737478207265776172642d6379636c6520753129290a2020202020203b3b204164642074686520706f78206164647220746f2074686520726577617264206379636c652c20616e6420657874726163742074686520696e646578206f662074686520506f5820616464726573730a2020202020203b3b20736f207468652064656c656761746f722063616e206c617465722075736520697420746f2063616c6c20737461636b2d6167677265676174696f6e2d696e6372656173652e0a202020202020286c65742028286164642d706f782d616464722d696e666f0a20202020202020202020202020202020286164642d706f782d616464722d746f2d6974682d7265776172642d6379636c650a2020202020202020202020202020202020202075300a202020202020202020202020202020202020207b20706f782d616464723a20706f782d616464722c0a20202020202020202020202020202020202020202066697273742d7265776172642d6379636c653a207265776172642d6379636c652c0a2020202020202020202020202020202020202020206e756d2d6379636c65733a2075312c0a2020202020202020202020202020202020202020207265776172642d7365742d696e64657865733a20286c697374292c0a202020202020202020202020202020202020202020737461636b65723a206e6f6e652c0a202020202020202020202020202020202020202020616d6f756e742d757374783a20616d6f756e742d757374782c0a202020202020202020202020202020202020202020693a207530207d29290a202020202020202020202028706f782d616464722d696e6465782028756e777261702d70616e69630a2020202020202020202020202020202028656c656d656e742d61742028676574207265776172642d7365742d696e6465786573206164642d706f782d616464722d696e666f29207530292929290a0a20202020202020203b3b20646f6e2774207570646174652074686520737461636b696e672d7374617465206d61702c0a20202020202020203b3b202062656361757365206974205f616c7265616479206861735f207468697320737461636b657227732073746174650a20202020202020203b3b20646f6e2774206c6f636b20746865205354582c2062656361757365207468652053545820697320616c7265616479206c6f636b65640a20202020202020203b3b0a20202020202020203b3b20636c65617220746865207061727469616c2d737461636b65642073746174652c20616e64206c6f672069740a2020202020202020286d61702d64656c657465207061727469616c2d737461636b65642d62792d6379636c65207b20706f782d616464723a20706f782d616464722c2073656e6465723a2074782d73656e6465722c207265776172642d6379636c653a207265776172642d6379636c65207d290a2020202020202020286d61702d736574206c6f676765642d7061727469616c2d737461636b65642d62792d6379636c65207b20706f782d616464723a20706f782d616464722c2073656e6465723a2074782d73656e6465722c207265776172642d6379636c653a207265776172642d6379636c65207d207061727469616c2d737461636b6564290a2020202020202020286f6b20706f782d616464722d696e64657829292929290a0a3b3b204c656761637920696e7465726661636520666f7220737461636b2d6167677265676174696f6e2d636f6d6d69742e0a3b3b20577261707320696e6e65722d737461636b2d6167677265676174696f6e2d636f6d6d69742e20205365652069747320646f63737472696e6720666f722064657461696c732e0a3b3b2052657475726e7320286f6b207472756529206f6e20737563636573730a3b3b2052657475726e732028657272202e2e2e29206f6e206661696c7572652e0a28646566696e652d7075626c69632028737461636b2d6167677265676174696f6e2d636f6d6d69742028706f782d61646472207b2076657273696f6e3a2028627566662031292c206861736862797465733a20286275666620333229207d290a2020202020202020202020202020202020202020202020202020202020202020202020202020202020287265776172642d6379636c652075696e7429290a20202020286d617463682028696e6e65722d737461636b2d6167677265676174696f6e2d636f6d6d697420706f782d61646472207265776172642d6379636c65290a2020202020202020706f782d616464722d696e64657820286f6b2074727565290a2020202020202020636f6d6d69742d657272202865727220636f6d6d69742d6572722929290a0a3b3b205075626c696320696e7465726661636520746f2060696e6e65722d737461636b2d6167677265676174696f6e2d636f6d6d6974602e20205365652069747320646f63756d656e746174696f6e20666f722064657461696c732e0a3b3b202a4e657720696e20537461636b7320322e312e2a0a28646566696e652d7075626c69632028737461636b2d6167677265676174696f6e2d636f6d6d69742d696e64657865642028706f782d61646472207b2076657273696f6e3a2028627566662031292c206861736862797465733a20286275666620333229207d290a20202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020287265776172642d6379636c652075696e7429290a2020202028696e6e65722d737461636b2d6167677265676174696f6e2d636f6d6d697420706f782d61646472207265776172642d6379636c6529290a0a3b3b20436f6d6d6974207061727469616c6c7920737461636b65642053545820746f206120506f5820616464726573732077686963682068617320616c726561647920726563656976656420736f6d652053545820286d6f7265207468616e2074686520537461636b696e67206d696e292e0a3b3b205468697320616c6c6f777320612064656c656761746f7220746f206c6f636b207570206d617267696e616c6c79206d6f7265205354582066726f6d206e65772064656c6567617465732c206576656e206966207468657920636f6c6c6563746976656c7920646f206e6f740a3b3b206578636565642074686520537461636b696e67206d696e696d756d2c20736f206c6f6e67206173207468652074617267657420506f58206164647265737320616c726561647920726570726573656e7473206174206c65617374206173206d616e7920535458206173207468650a3b3b20537461636b696e67206d696e696d756d2e0a3b3b0a3b3b2054686520607265776172642d6379636c652d696e6465786020697320656d6974746564206173206120636f6e7472616374206576656e742066726f6d2060737461636b2d6167677265676174696f6e2d636f6d6d697460207768656e2074686520696e697469616c20535458206172650a3b3b206c6f636b656420757020627920746869732064656c656761746f722e20204974206d75737420626520706173736564206865726520746f20616464206d6f72652053545820626568696e64207468697320506f5820616464726573732e20204966207468652064656c656761746f720a3b3b2063616c6c65642060737461636b2d6167677265676174696f6e2d636f6d6d697460206d756c7469706c652074696d657320666f72207468652073616d6520506f5820616464726573732c207468656e20616e79207375636820607265776172642d6379636c652d696e646578602077696c6c0a3b3b20776f726b20686572652e0a3b3b0a3b3b202a4e657720696e20537461636b7320322e312a0a3b3b0a28646566696e652d7075626c69632028737461636b2d6167677265676174696f6e2d696e6372656173652028706f782d61646472207b2076657273696f6e3a2028627566662031292c206861736862797465733a20286275666620333229207d290a20202020202020202020202020202020202020202020202020202020202020202020202020202020202020287265776172642d6379636c652075696e74290a20202020202020202020202020202020202020202020202020202020202020202020202020202020202020287265776172642d6379636c652d696e6465782075696e7429290a2020286c65742028287061727469616c2d737461636b65640a2020202020202020203b3b20666574636820746865207061727469616c20636f6d6d69746d656e74730a20202020202020202028756e777261702120286d61702d6765743f207061727469616c2d737461636b65642d62792d6379636c65207b20706f782d616464723a20706f782d616464722c2073656e6465723a2074782d73656e6465722c207265776172642d6379636c653a207265776172642d6379636c65207d290a20202020202020202020202020202020202028657272204552525f535441434b494e475f4e4f5f535543485f5052494e434950414c292929290a0a202020203b3b206d7573742062652063616c6c6564206469726563746c79206279207468652074782d73656e646572206f7220627920616e20616c6c6f77656420636f6e74726163742d63616c6c65720a202020202861737365727473212028636865636b2d63616c6c65722d616c6c6f776564290a202020202020202020202020202028657272204552525f535441434b494e475f5045524d495353494f4e5f44454e49454429290a0a202020203b3b207265776172642d6379636c65206d75737420626520696e20746865206675747572650a2020202028617373657274732120283e207265776172642d6379636c65202863757272656e742d706f782d7265776172642d6379636c6529290a202020202020202020202020202028657272204552525f535441434b494e475f494e56414c49445f4c4f434b5f504552494f4429290a0a20202020286c6574202828616d6f756e742d75737478202867657420737461636b65642d616d6f756e74207061727469616c2d737461636b656429290a202020202020202020203b3b207265776172642d6379636c65206d75737420706f696e7420746f20616e206578697374696e67207265636f726420696e207265776172642d6379636c652d746f74616c2d737461636b65640a202020202020202020203b3b20696e66616c6c69626c653b2067657474696e6720736f6d657468696e672066726f6d207061727469616c2d737461636b65642d62792d6379636c652073756363656564656420736f2074686973206d75737420737563636565640a20202020202020202020286578697374696e672d746f74616c2028756e777261702d70616e696320286d61702d6765743f207265776172642d6379636c652d746f74616c2d737461636b6564207b207265776172642d6379636c653a207265776172642d6379636c65207d2929290a202020202020202020203b3b207265776172642d6379636c6520616e64207265776172642d6379636c652d696e646578206d75737420706f696e7420746f20616e206578697374696e67207265636f726420696e207265776172642d6379636c652d706f782d616464726573732d6c6973740a20202020202020202020286578697374696e672d656e7472792028756e777261702120286d61702d6765743f207265776172642d6379636c652d706f782d616464726573732d6c697374207b207265776172642d6379636c653a207265776172642d6379636c652c20696e6465783a207265776172642d6379636c652d696e646578207d290a202020202020202020202020202020202020202020202020202028657272204552525f44454c45474154494f4e5f4e4f5f5245574152445f534c4f542929290a2020202020202020202028696e637265617365642d7573747820282b202867657420746f74616c2d75737478206578697374696e672d656e7472792920616d6f756e742d7573747829290a2020202020202020202028746f74616c2d7573747820282b202867657420746f74616c2d75737478206578697374696e672d746f74616c2920616d6f756e742d757374782929290a0a202020202020202020203b3b206d75737420626520737461636b61626c650a20202020202020202020287472792120286d696e696d616c2d63616e2d737461636b2d73747820706f782d6164647220746f74616c2d75737478207265776172642d6379636c6520753129290a0a202020202020202020203b3b206e657720746f74616c206d757374206578636565642074686520737461636b696e67206d696e696d756d0a2020202020202020202028617373657274732120283c3d20286765742d737461636b696e672d6d696e696d756d2920746f74616c2d75737478290a202020202020202020202020202020202020202028657272204552525f535441434b494e475f5448524553484f4c445f4e4f545f4d455429290a0a202020202020202020203b3b207468657265206d757374202a6e6f742a206265206120737461636b657220656e747279202873696e6365207468697320697320612064656c656761746f72290a20202020202020202020286173736572747321202869732d6e6f6e65202867657420737461636b6572206578697374696e672d656e74727929290a202020202020202020202020202020202020202028657272204552525f44454c45474154494f4e5f57524f4e475f5245574152445f534c4f5429290a0a202020202020202020203b3b2074686520676976656e20506f582061646472657373206d757374206d6174636820746865206f6e65206f6e207265636f72640a20202020202020202020286173736572747321202869732d657120706f782d61646472202867657420706f782d61646472206578697374696e672d656e74727929290a202020202020202020202020202020202020202028657272204552525f44454c45474154494f4e5f57524f4e475f5245574152445f534c4f5429290a0a202020202020202020203b3b207570646174652074686520706f782d61646472657373206c697374202d2d2062756d702074686520746f74616c2d757374780a20202020202020202020286d61702d736574207265776172642d6379636c652d706f782d616464726573732d6c6973740a202020202020202020202020202020202020207b207265776172642d6379636c653a207265776172642d6379636c652c20696e6465783a207265776172642d6379636c652d696e646578207d0a202020202020202020202020202020202020207b20706f782d616464723a20706f782d616464722c0a202020202020202020202020202020202020202020746f74616c2d757374783a20696e637265617365642d757374782c0a202020202020202020202020202020202020202020737461636b65723a206e6f6e65207d290a0a202020202020202020203b3b207570646174652074686520746f74616c207573747820696e2074686973206379636c650a20202020202020202020286d61702d736574207265776172642d6379636c652d746f74616c2d737461636b65640a202020202020202020202020202020202020207b207265776172642d6379636c653a207265776172642d6379636c65207d0a202020202020202020202020202020202020207b20746f74616c2d757374783a20746f74616c2d75737478207d290a0a202020202020202020203b3b20646f6e2774207570646174652074686520737461636b696e672d7374617465206d61702c0a202020202020202020203b3b202062656361757365206974205f616c7265616479206861735f207468697320737461636b657227732073746174650a202020202020202020203b3b20646f6e2774206c6f636b20746865205354582c2062656361757365207468652053545820697320616c7265616479206c6f636b65640a202020202020202020203b3b0a202020202020202020203b3b20636c65617220746865207061727469616c2d737461636b65642073746174652c20616e64206c6f672069740a20202020202020202020286d61702d64656c657465207061727469616c2d737461636b65642d62792d6379636c65207b20706f782d616464723a20706f782d616464722c2073656e6465723a2074782d73656e6465722c207265776172642d6379636c653a207265776172642d6379636c65207d290a20202020202020202020286d61702d736574206c6f676765642d7061727469616c2d737461636b65642d62792d6379636c65207b20706f782d616464723a20706f782d616464722c2073656e6465723a2074782d73656e6465722c207265776172642d6379636c653a207265776172642d6379636c65207d207061727469616c2d737461636b6564290a20202020202020202020286f6b2074727565292929290a0a3b3b20417320612064656c65676174652c20737461636b2074686520676976656e207072696e636970616c277320535458207573696e67207061727469616c2d737461636b65642d62792d6379636c650a3b3b204f6e6365207468652064656c65676174652068617320737461636b6564203e206d696e696d756d2c207468652064656c65676174652073686f756c642063616c6c20737461636b2d6167677265676174696f6e2d636f6d6d69740a28646566696e652d7075626c6963202864656c65676174652d737461636b2d7374782028737461636b6572207072696e636970616c290a202020202020202020202020202020202020202020202020202020202020202020202028616d6f756e742d757374782075696e74290a202020202020202020202020202020202020202020202020202020202020202020202028706f782d61646472207b2076657273696f6e3a2028627566662031292c206861736862797465733a20286275666620333229207d290a20202020202020202020202020202020202020202020202020202020202020202020202873746172742d6275726e2d68742075696e74290a2020202020202020202020202020202020202020202020202020202020202020202020286c6f636b2d706572696f642075696e7429290a202020203b3b207468697320737461636b6572277320666972737420726577617264206379636c6520697320746865205f6e6578745f20726577617264206379636c650a20202020286c657420282866697273742d7265776172642d6379636c6520282b207531202863757272656e742d706f782d7265776172642d6379636c652929290a20202020202020202020287370656369666965642d7265776172642d6379636c6520282b20753120286275726e2d6865696768742d746f2d7265776172642d6379636c652073746172742d6275726e2d68742929290a2020202020202020202028756e6c6f636b2d6275726e2d68656967687420287265776172642d6379636c652d746f2d6275726e2d68656967687420282b202863757272656e742d706f782d7265776172642d6379636c6529207531206c6f636b2d706572696f64292929290a2020202020203b3b207468652073746172742d6275726e2d6874206d75737420726573756c7420696e20746865206e65787420726577617264206379636c652c20646f206e6f7420616c6c6f7720737461636b6572730a2020202020203b3b2020746f2022706f73742d64617465222074686569722060737461636b2d73747860207472616e73616374696f6e0a202020202020286173736572747321202869732d65712066697273742d7265776172642d6379636c65207370656369666965642d7265776172642d6379636c65290a2020202020202020202020202020202028657272204552525f494e56414c49445f53544152545f4255524e5f48454947485429290a0a2020202020203b3b206d7573742062652063616c6c6564206469726563746c79206279207468652074782d73656e646572206f7220627920616e20616c6c6f77656420636f6e74726163742d63616c6c65720a2020202020202861737365727473212028636865636b2d63616c6c65722d616c6c6f776564290a202020202020202028657272204552525f535441434b494e475f5045524d495353494f4e5f44454e49454429290a0a2020202020203b3b20737461636b6572206d75737420686176652064656c65676174656420746f207468652063616c6c65720a202020202020286c657420282864656c65676174696f6e2d696e666f2028756e777261702120286765742d636865636b2d64656c65676174696f6e20737461636b6572292028657272204552525f535441434b494e475f5045524d495353494f4e5f44454e494544292929290a20202020202020203b3b206d75737420686176652064656c65676174656420746f2074782d73656e6465720a2020202020202020286173736572747321202869732d657120286765742064656c6567617465642d746f2064656c65676174696f6e2d696e666f292074782d73656e646572290a20202020202020202020202020202020202028657272204552525f535441434b494e475f5045524d495353494f4e5f44454e49454429290a20202020202020203b3b206d75737420686176652064656c65676174656420656e6f756768207374780a202020202020202028617373657274732120283e3d202867657420616d6f756e742d757374782064656c65676174696f6e2d696e666f2920616d6f756e742d75737478290a20202020202020202020202020202020202028657272204552525f44454c45474154494f4e5f544f4f5f4d5543485f4c4f434b454429290a20202020202020203b3b20696620706f782d61646472206973207365742c206d75737420626520657175616c20746f20706f782d616464720a202020202020202028617373657274732120286d61746368202867657420706f782d616464722064656c65676174696f6e2d696e666f290a202020202020202020202020202020202020202020202020207370656369666965642d706f782d61646472202869732d657120706f782d61646472207370656369666965642d706f782d61646472290a2020202020202020202020202020202020202020202020202074727565290a20202020202020202020202020202020202028657272204552525f44454c45474154494f4e5f504f585f414444525f524551554952454429290a20202020202020203b3b2064656c65676174696f6e206d757374206e6f7420657870697265206265666f7265206c6f636b20706572696f640a202020202020202028617373657274732120286d61746368202867657420756e74696c2d6275726e2d68742064656c65676174696f6e2d696e666f290a20202020202020202020202020202020202020202020202020756e74696c2d6275726e2d687420283e3d20756e74696c2d6275726e2d68740a20202020202020202020202020202020202020202020202020202020202020202020202020202020202020756e6c6f636b2d6275726e2d686569676874290a2020202020202020202020202020202020202020202074727565290a20202020202020202020202020202020202028657272204552525f44454c45474154494f4e5f455850495245535f445552494e475f4c4f434b2929290a0a2020202020203b3b20737461636b6572207072696e636970616c206d757374206e6f7420626520737461636b696e670a202020202020286173736572747321202869732d6e6f6e6520286765742d737461636b65722d696e666f20737461636b657229290a202020202020202028657272204552525f535441434b494e475f414c52454144595f535441434b454429290a0a2020202020203b3b2074686520537461636b6572206d75737420686176652073756666696369656e7420756e6c6f636b65642066756e64730a20202020202028617373657274732120283e3d20287374782d6765742d62616c616e636520737461636b65722920616d6f756e742d75737478290a202020202020202028657272204552525f535441434b494e475f494e53554646494349454e545f46554e445329290a0a2020202020203b3b20656e73757265207468617420737461636b696e672063616e20626520706572666f726d65640a202020202020287472792120286d696e696d616c2d63616e2d737461636b2d73747820706f782d6164647220616d6f756e742d757374782066697273742d7265776172642d6379636c65206c6f636b2d706572696f6429290a0a2020202020203b3b2072656769737465722074686520506f58206164647265737320776974682074686520616d6f756e7420737461636b656420766961207061727469616c20737461636b696e670a2020202020203b3b2020206265666f72652069742063616e20626520696e636c7564656420696e2074686520726577617264207365742c2074686973206d75737420626520636f6d6d6974746564210a202020202020286164642d706f782d7061727469616c2d737461636b656420706f782d616464722066697273742d7265776172642d6379636c65206c6f636b2d706572696f6420616d6f756e742d75737478290a0a2020202020203b3b2061646420737461636b6572207265636f72640a202020202020286d61702d73657420737461636b696e672d73746174650a20202020202020207b20737461636b65723a20737461636b6572207d0a20202020202020207b20706f782d616464723a20706f782d616464722c0a2020202020202020202066697273742d7265776172642d6379636c653a2066697273742d7265776172642d6379636c652c0a202020202020202020207265776172642d7365742d696e64657865733a20286c697374292c0a202020202020202020206c6f636b2d706572696f643a206c6f636b2d706572696f64207d290a0a2020202020203b3b2072657475726e20746865206c6f636b2d757020696e666f726d6174696f6e2c20736f20746865206e6f64652063616e2061637475616c6c79206361727279206f757420746865206c6f636b2e0a202020202020286f6b207b20737461636b65723a20737461636b65722c0a2020202020202020202020206c6f636b2d616d6f756e743a20616d6f756e742d757374782c0a202020202020202020202020756e6c6f636b2d6275726e2d6865696768743a20756e6c6f636b2d6275726e2d686569676874207d2929290a0a3b3b2052656a65637420537461636b696e6720666f72207468697320726577617264206379636c652e0a3b3b2074782d73656e64657220766f74657320616c6c20697473207553545820666f722072656a656374696f6e2e0a3b3b204e6f7465207468617420756e6c696b6520506f582c2072656a656374696e6720506f5820646f6573206e6f74206c6f636b207468652074782d73656e64657227730a3b3b20746f6b656e732e2020506f582072656a656374696f6e2061637473206c696b65206120636f696e20766f74652e0a28646566696e652d7075626c6963202872656a6563742d706f78290a20202020286c657420280a20202020202020202862616c616e636520287374782d6765742d62616c616e63652074782d73656e64657229290a202020202020202028766f74652d7265776172642d6379636c6520282b207531202863757272656e742d706f782d7265776172642d6379636c652929290a20202020290a0a202020203b3b2074782d73656e646572207072696e636970616c206d757374206e6f7420686176652072656a656374656420696e2074686973207570636f6d696e6720726577617264206379636c650a20202020286173736572747321202869732d6e6f6e6520286765742d706f782d72656a656374696f6e2074782d73656e64657220766f74652d7265776172642d6379636c6529290a202020202020202028657272204552525f535441434b494e475f414c52454144595f52454a454354454429290a0a202020203b3b2074782d73656e6465722063616e2774206265206120737461636b65720a20202020286173736572747321202869732d6e6f6e6520286765742d737461636b65722d696e666f2074782d73656e64657229290a202020202020202028657272204552525f535441434b494e475f414c52454144595f535441434b454429290a0a202020203b3b20766f746520666f722072656a656374696f6e0a20202020286d61702d73657420737461636b696e672d72656a656374696f6e0a20202020202020207b207265776172642d6379636c653a20766f74652d7265776172642d6379636c65207d0a20202020202020207b20616d6f756e743a20282b20286e6578742d6379636c652d72656a656374696f6e2d766f746573292062616c616e636529207d0a20202020290a0a202020203b3b206d61726b20766f7465640a20202020286d61702d73657420737461636b696e672d72656a6563746f72730a20202020202020207b20737461636b65723a2074782d73656e6465722c207265776172642d6379636c653a20766f74652d7265776172642d6379636c65207d0a20202020202020207b20616d6f756e743a2062616c616e6365207d0a20202020290a0a20202020286f6b207472756529290a290a0a3b3b205573656420666f7220506f5820706172616d657465727320646973636f766572790a28646566696e652d726561642d6f6e6c7920286765742d706f782d696e666f290a20202020286f6b207b0a20202020202020206d696e2d616d6f756e742d757374783a20286765742d737461636b696e672d6d696e696d756d292c0a20202020202020207265776172642d6379636c652d69643a202863757272656e742d706f782d7265776172642d6379636c65292c0a2020202020202020707265706172652d6379636c652d6c656e6774683a20287661722d67657420706f782d707265706172652d6379636c652d6c656e677468292c0a202020202020202066697273742d6275726e636861696e2d626c6f636b2d6865696768743a20287661722d6765742066697273742d6275726e636861696e2d626c6f636b2d686569676874292c0a20202020202020207265776172642d6379636c652d6c656e6774683a20287661722d67657420706f782d7265776172642d6379636c652d6c656e677468292c0a202020202020202072656a656374696f6e2d6672616374696f6e3a20287661722d67657420706f782d72656a656374696f6e2d6672616374696f6e292c0a202020202020202063757272656e742d72656a656374696f6e2d766f7465733a20286e6578742d6379636c652d72656a656374696f6e2d766f746573292c0a2020202020202020746f74616c2d6c69717569642d737570706c792d757374783a207374782d6c69717569642d737570706c792c0a202020207d290a290a0a3b3b2055706461746520746865206e756d626572206f6620737461636b65642053545820696e206120676976656e20726577617264206379636c6520656e7472792e0a3b3b20607265776172642d6379636c652d696e646578602069732074686520696e64657820696e746f2074686520607265776172642d6379636c652d706f782d616464726573732d6c69737460206d617020666f72206120676976656e20726577617264206379636c65206e756d6265722e0a3b3b206075706461746573602c206966206028736f6d65202e2e29602c20656e636f64657320776869636820506f5820726577617264206379636c6520656e7472792028696620616e7929206765747320757064617465642e2020496e20706172746963756c61722c206974206d75737420686176650a3b3b206028736f6d6520737461636b6572296020617320746865206c697374656420737461636b65722c20616e64206d75737420626520616e207570636f6d696e6720726577617264206379636c652e0a28646566696e652d707269766174652028696e6372656173652d7265776172642d6379636c652d656e7472790a202020202020202020202020202020202020287265776172642d6379636c652d696e6465782075696e74290a202020202020202020202020202020202020287570646174657320286f7074696f6e616c207b2066697273742d6379636c653a2075696e742c207265776172642d6379636c653a2075696e742c20737461636b65723a207072696e636970616c2c206164642d616d6f756e743a2075696e74207d2929290a20202020286c657420282864617461202874727921207570646174657329290a202020202020202020202866697273742d6379636c6520286765742066697273742d6379636c65206461746129290a20202020202020202020287265776172642d6379636c652028676574207265776172642d6379636c6520646174612929290a2020202028696620283e2066697273742d6379636c65207265776172642d6379636c65290a20202020202020203b3b206e6f74206174206669727374206379636c6520746f2070726f63657373207965740a202020202020202028736f6d65207b2066697273742d6379636c653a2066697273742d6379636c652c207265776172642d6379636c653a20282b207531207265776172642d6379636c65292c20737461636b65723a202867657420737461636b65722064617461292c206164642d616d6f756e743a2028676574206164642d616d6f756e74206461746129207d290a2020202020202020286c65742028286578697374696e672d656e7472792028756e777261702d70616e696320286d61702d6765743f207265776172642d6379636c652d706f782d616464726573732d6c697374207b207265776172642d6379636c653a207265776172642d6379636c652c20696e6465783a207265776172642d6379636c652d696e646578207d2929290a2020202020202020202020202020286578697374696e672d746f74616c2028756e777261702d70616e696320286d61702d6765743f207265776172642d6379636c652d746f74616c2d737461636b6564207b207265776172642d6379636c653a207265776172642d6379636c65207d2929290a202020202020202020202020202028746f74616c2d7573747820282b202867657420746f74616c2d75737478206578697374696e672d746f74616c292028676574206164642d616d6f756e742064617461292929290a2020202020202020202020203b3b20737461636b6572206d757374206d617463680a202020202020202020202020286173736572747321202869732d6571202867657420737461636b6572206578697374696e672d656e747279292028736f6d65202867657420737461636b65722064617461292929206e6f6e65290a2020202020202020202020203b3b207570646174652074686520706f782d61646472657373206c6973740a202020202020202020202020286d61702d736574207265776172642d6379636c652d706f782d616464726573732d6c6973740a2020202020202020202020202020202020202020207b207265776172642d6379636c653a207265776172642d6379636c652c20696e6465783a207265776172642d6379636c652d696e646578207d0a2020202020202020202020202020202020202020207b20706f782d616464723a202867657420706f782d61646472206578697374696e672d656e747279292c0a2020202020202020202020202020202020202020202020746f74616c2d757374783a20746f74616c2d757374782c0a2020202020202020202020202020202020202020202020737461636b65723a2028736f6d65202867657420737461636b657220646174612929207d290a2020202020202020202020203b3b207570646174652074686520746f74616c0a202020202020202020202020286d61702d736574207265776172642d6379636c652d746f74616c2d737461636b65640a2020202020202020202020202020202020202020207b207265776172642d6379636c653a207265776172642d6379636c65207d0a2020202020202020202020202020202020202020207b20746f74616c2d757374783a20746f74616c2d75737478207d290a20202020202020202020202028736f6d65207b2066697273742d6379636c653a2066697273742d6379636c652c0a20202020202020202020202020202020202020207265776172642d6379636c653a20282b207531207265776172642d6379636c65292c0a2020202020202020202020202020202020202020737461636b65723a202867657420737461636b65722064617461292c0a20202020202020202020202020202020202020206164642d616d6f756e743a2028676574206164642d616d6f756e74206461746129207d29292929290a0a3b3b20496e63726561736520746865206e756d626572206f6620535458206c6f636b65642e0a3b3b202a4e657720696e20537461636b7320322e312a0a3b3b2054686973206d6574686f64206c6f636b7320757020616e206164646974696f6e616c20616d6f756e74206f66205354582066726f6d206074782d73656e6465726027732c20696e646963617465640a3b3b2062792060696e6372656173652d6279602e2020546865206074782d73656e64657260206d75737420616c726561647920626520537461636b696e672e0a28646566696e652d7075626c69632028737461636b2d696e6372656173652028696e6372656173652d62792075696e7429290a202020286c6574202828737461636b65722d696e666f20287374782d6163636f756e742074782d73656e64657229290a20202020202020202028616d6f756e742d737461636b65642028676574206c6f636b656420737461636b65722d696e666f29290a20202020202020202028616d6f756e742d756e6c6f636b6564202867657420756e6c6f636b656420737461636b65722d696e666f29290a20202020202020202028756e6c6f636b2d686569676874202867657420756e6c6f636b2d68656967687420737461636b65722d696e666f29290a20202020202020202028756e6c6f636b2d696e2d6379636c6520286275726e2d6865696768742d746f2d7265776172642d6379636c6520756e6c6f636b2d68656967687429290a202020202020202020286375722d6379636c65202863757272656e742d706f782d7265776172642d6379636c6529290a2020202020202020202866697273742d696e637265617365642d6379636c6520282b206375722d6379636c6520753129290a20202020202020202028737461636b65722d73746174652028756e777261702120286d61702d6765743f20737461636b696e672d73746174650a2020202020202020202020202020202020202020202020202020202020202020202020202020202020207b20737461636b65723a2074782d73656e646572207d290a20202020202020202020202020202020202020202020202020202020202020202020202020202020202028657272204552525f535441434b5f494e4352454153455f4e4f545f4c4f434b4544292929290a2020202020203b3b2074782d73656e646572206d7573742062652063757272656e746c79206c6f636b65640a20202020202028617373657274732120283e20616d6f756e742d737461636b6564207530290a2020202020202020202020202020202028657272204552525f535441434b5f494e4352454153455f4e4f545f4c4f434b454429290a2020202020203b3b206d7573742062652063616c6c6564207769746820706f7369746976652060696e6372656173652d6279600a20202020202028617373657274732120283e3d20696e6372656173652d6279207531290a2020202020202020202020202020202028657272204552525f535441434b494e475f494e56414c49445f414d4f554e5429290a2020202020203b3b20737461636b6572206d757374206861766520656e6f7567682073747820746f206c6f636b0a20202020202028617373657274732120283e3d20616d6f756e742d756e6c6f636b656420696e6372656173652d6279290a2020202020202020202020202020202028657272204552525f535441434b494e475f494e53554646494349454e545f46554e445329290a2020202020203b3b206d7573742062652063616c6c6564206469726563746c79206279207468652074782d73656e646572206f7220627920616e20616c6c6f77656420636f6e74726163742d63616c6c65720a2020202020202861737365727473212028636865636b2d63616c6c65722d616c6c6f776564290a2020202020202020202020202020202028657272204552525f535441434b494e475f5045524d495353494f4e5f44454e49454429290a2020202020203b3b20737461636b6572206d757374206265206469726563746c7920737461636b696e670a20202020202028617373657274732120283e20286c656e2028676574207265776172642d7365742d696e646578657320737461636b65722d73746174652929207530290a2020202020202020202020202020202028657272204552525f535441434b494e475f414c52454144595f44454c45474154454429290a2020202020203b3b2075706461746520726577617264206379636c6520616d6f756e74730a202020202020286173736572747321202869732d736f6d652028666f6c6420696e6372656173652d7265776172642d6379636c652d656e7472790a20202020202020202020202028676574207265776172642d7365742d696e646578657320737461636b65722d7374617465290a20202020202020202020202028736f6d65207b2066697273742d6379636c653a2066697273742d696e637265617365642d6379636c652c0a20202020202020202020202020202020202020207265776172642d6379636c653a20286765742066697273742d7265776172642d6379636c6520737461636b65722d7374617465292c0a2020202020202020202020202020202020202020737461636b65723a2074782d73656e6465722c0a20202020202020202020202020202020202020206164642d616d6f756e743a20696e6372656173652d6279207d2929290a20202020202020202020202028657272204552525f535441434b494e475f554e524541434841424c4529290a2020202020203b3b204e4f54453a20737461636b696e672d7374617465206d617020697320756e6368616e6765643a206974206e6f206c6f6e67657220747261636b7320616d6f756e742d737461636b656420696e20506f582d320a202020202020286f6b207b20737461636b65723a2074782d73656e6465722c20746f74616c2d6c6f636b65643a20282b20616d6f756e742d737461636b656420696e6372656173652d6279297d2929290a0a3b3b20457874656e6420616e2061637469766520537461636b696e67206c6f636b2e0a3b3b202a4e657720696e20537461636b7320322e312a0a3b3b2054686973206d6574686f6420657874656e647320746865206074782d73656e6465726027732063757272656e74206c6f636b757020666f7220616e206164646974696f6e616c2060657874656e642d636f756e74600a3b3b20202020616e64206173736f6369617465732060706f782d616464726020776974682074686520726577617264730a28646566696e652d7075626c69632028737461636b2d657874656e642028657874656e642d636f756e742075696e74290a202020202020202020202020202020202020202020202020202020202028706f782d61646472207b2076657273696f6e3a2028627566662031292c206861736862797465733a20286275666620333229207d29290a202020286c6574202828737461636b65722d696e666f20287374782d6163636f756e742074782d73656e64657229290a20202020202020202028737461636b65722d737461746520286765742d737461636b65722d696e666f2074782d73656e64657229290a20202020202020202028616d6f756e742d757374782028676574206c6f636b656420737461636b65722d696e666f29290a20202020202020202028756e6c6f636b2d686569676874202867657420756e6c6f636b2d68656967687420737461636b65722d696e666f29290a202020202020202020286375722d6379636c65202863757272656e742d706f782d7265776172642d6379636c6529290a20202020202020202028756e6c6f636b2d696e2d6379636c6520286275726e2d6865696768742d746f2d7265776172642d6379636c6520756e6c6f636b2d68656967687429290a2020202020202020203b3b20696620746865206163636f756e7420756e6c6f636b73202a647572696e672a2074686973206379636c65202873686f756c64206f6e6c79206f6363757220647572696e672074657374696e67292c0a2020202020202020203b3b207365742066697273742d657874656e642d6379636c6520746f20746865206e657874206379636c652e0a2020202020202020202866697273742d657874656e642d6379636c652028696620283e20282b206375722d6379636c652075312920756e6c6f636b2d696e2d6379636c65290a202020202020202020202020202020202020202020202020202020202020202020202020282b206375722d6379636c652075312920756e6c6f636b2d696e2d6379636c6529290a2020202020202020203b3b206d61696e7461696e696e672076616c696420737461636b696e672d737461746520656e747269657320726571756972657320636865636b696e670a2020202020202020203b3b20207768657468657220746865726520697320616e206578697374696e6720656e74727920666f722074686520737461636b657220696e207468652073746174650a2020202020202020203b3b207468697320776f756c642062652074686520636173652069662074686520737461636b657220697320657874656e64696e672061206c6f636b75702066726f6d20506f582d310a2020202020202020203b3b2020746f20506f582d320a2020202020202020202866697273742d7265776172642d6379636c6520286d6174636820286765742066697273742d7265776172642d6379636c6520737461636b65722d7374617465290a2020202020202020202020202020202020202020202020202020202020202020202020202020203b3b20696620776527766520737461636b656420696e20506f58322c207468656e206d6178286375722d6379636c652c20737461636b65722d73746174652e66697273742d7265776172642d6379636c65292069732076616c69640a2020202020202020202020202020202020202020202020202020202020202020202020202020206f6c642d66697273742d6379636c652028696620283e206375722d6379636c65206f6c642d66697273742d6379636c6529206375722d6379636c65206f6c642d66697273742d6379636c65290a2020202020202020202020202020202020202020202020202020202020202020202020202020203b3b206f74686572776973652c207468657265206172656e277420506f583220656e747269657320756e74696c2066697273742d657874656e642d6379636c650a20202020202020202020202020202020202020202020202020202020202020202020202020202066697273742d657874656e642d6379636c652929290a0a202020203b3b206d7573742062652063616c6c6564207769746820706f73697469766520657874656e642d636f756e740a2020202028617373657274732120283e3d20657874656e642d636f756e74207531290a202020202020202020202020202028657272204552525f535441434b494e475f494e56414c49445f4c4f434b5f504552494f4429290a0a20202020286c65742028286c6173742d657874656e642d6379636c652020282d20282b2066697273742d657874656e642d6379636c6520657874656e642d636f756e742920753129290a20202020202020202020286c6f636b2d706572696f6420282b20753120282d206c6173742d657874656e642d6379636c652066697273742d7265776172642d6379636c652929290a20202020202020202020286e65772d756e6c6f636b2d687420287265776172642d6379636c652d746f2d6275726e2d68656967687420282b207531206c6173742d657874656e642d6379636c65292929290a0a2020202020203b3b206669727374206379636c65206d757374206265206166746572207468652063757272656e74206379636c650a20202020202028617373657274732120283e2066697273742d657874656e642d6379636c65206375722d6379636c65292028657272204552525f535441434b494e475f494e56414c49445f4c4f434b5f504552494f4429290a2020202020203b3b206c6f636b20706572696f64206d75737420626520706f7369746976650a20202020202028617373657274732120283e206c6f636b2d706572696f64207530292028657272204552525f535441434b494e475f494e56414c49445f4c4f434b5f504552494f4429290a0a2020202020203b3b206d7573742062652063616c6c6564206469726563746c79206279207468652074782d73656e646572206f7220627920616e20616c6c6f77656420636f6e74726163742d63616c6c65720a2020202020202861737365727473212028636865636b2d63616c6c65722d616c6c6f776564290a2020202020202020202020202020202028657272204552525f535441434b494e475f5045524d495353494f4e5f44454e49454429290a0a2020202020203b3b2074782d73656e646572206d757374206265206c6f636b65640a20202020202028617373657274732120283e20616d6f756e742d75737478207530290a202020202020202028657272204552525f535441434b5f455854454e445f4e4f545f4c4f434b454429290a0a2020202020203b3b2074782d73656e646572206d757374206e6f742062652064656c65676174696e670a202020202020286173736572747321202869732d6e6f6e6520286765742d636865636b2d64656c65676174696f6e2074782d73656e64657229290a202020202020202028657272204552525f535441434b494e475f414c52454144595f44454c45474154454429290a0a2020202020203b3b207374616e646172642063616e2d737461636b2d73747820636865636b730a2020202020202874727921202863616e2d737461636b2d73747820706f782d6164647220616d6f756e742d757374782066697273742d657874656e642d6379636c65206c6f636b2d706572696f6429290a0a2020202020203b3b2072656769737465722074686520506f58206164647265737320776974682074686520616d6f756e7420737461636b65640a2020202020203b3b202020666f7220746865206e6577206379636c65730a202020202020286c6574202828657874656e6465642d7265776172642d7365742d696e646578657320287472792120286164642d706f782d616464722d746f2d7265776172642d6379636c657320706f782d616464722066697273742d657874656e642d6379636c6520657874656e642d636f756e7420616d6f756e742d757374782074782d73656e6465722929290a202020202020202020202020287265776172642d7365742d696e646578657320286d6174636820737461636b65722d73746174650a2020202020202020202020202020202020202020202020202020202020202020202020202020203b3b20696620746865726527732061637469766520737461636b65722073746174652c207765206e65656420746f20657874656e6420746865206578697374696e67207265776172642d7365742d696e64657865730a2020202020202020202020202020202020202020202020202020202020202020202020202020206f6c642d737461746520286c65742028286375722d6379636c652d696e64657820282d2066697273742d7265776172642d6379636c6520286765742066697273742d7265776172642d6379636c65206f6c642d73746174652929290a20202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020286f6c642d696e64657865732028676574207265776172642d7365742d696e6465786573206f6c642d737461746529290a202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020203b3b206275696c6420696e646578206c6973742062792074616b696e6720746865206f6c642d696e6465786573207374617274696e672066726f6d20637572206379636c650a202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020203b3b2020616e6420616464696e6720746865206e657720696e646578657320746f2069742e2074686973207761792c2074686520696e6465782069732076616c6964207374617274696e672066726f6d207468652063757272656e74206379636c650a20202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020286e65772d6c6973742028636f6e636174202864656661756c742d746f20286c697374292028736c6963653f206f6c642d696e6465786573206375722d6379636c652d696e64657820286c656e206f6c642d696e64657865732929290a2020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020657874656e6465642d7265776172642d7365742d696e64657865732929290a202020202020202020202020202020202020202020202020202020202020202020202020202020202020202028756e777261702d70616e6963202861732d6d61782d6c656e3f206e65772d6c697374207531322929290a202020202020202020202020202020202020202020202020202020202020202020202020202020657874656e6465642d7265776172642d7365742d696e64657865732929290a202020202020202020203b3b2075706461746520737461636b6572207265636f72640a20202020202020202020286d61702d73657420737461636b696e672d73746174650a2020202020202020202020207b20737461636b65723a2074782d73656e646572207d0a2020202020202020202020207b20706f782d616464723a20706f782d616464722c0a20202020202020202020202020207265776172642d7365742d696e64657865733a207265776172642d7365742d696e64657865732c0a202020202020202020202020202066697273742d7265776172642d6379636c653a2066697273742d7265776172642d6379636c652c0a20202020202020202020202020206c6f636b2d706572696f643a206c6f636b2d706572696f64207d290a0a20202020202020203b3b2072657475726e206c6f636b2d757020696e666f726d6174696f6e0a2020202020202020286f6b207b20737461636b65723a2074782d73656e6465722c20756e6c6f636b2d6275726e2d6865696768743a206e65772d756e6c6f636b2d6874207d29292929290a0a3b3b20417320612064656c656761746f722c20696e63726561736520616e2061637469766520537461636b696e67206c6f636b2c2069737375696e67206120227061727469616c20636f6d6d69746d656e742220666f72207468650a3b3b202020696e63726561736564206379636c65732e0a3b3b202a4e657720696e20537461636b7320322e312a0a3b3b2054686973206d6574686f6420696e637265617365732060737461636b65726027732063757272656e74206c6f636b757020616e64207061727469616c6c7920636f6d6d69747320746865206164646974696f6e616c0a3b3b20202053545820746f2060706f782d61646472600a28646566696e652d7075626c6963202864656c65676174652d737461636b2d696e6372656173650a202020202020202020202020202020202020202028737461636b6572207072696e636970616c290a202020202020202020202020202020202020202028706f782d61646472207b2076657273696f6e3a2028627566662031292c206861736862797465733a20286275666620333229207d290a202020202020202020202020202020202020202028696e6372656173652d62792075696e7429290a20202020286c6574202828737461636b65722d696e666f20287374782d6163636f756e7420737461636b657229290a20202020202020202020286578697374696e672d6c6f636b2028676574206c6f636b656420737461636b65722d696e666f29290a2020202020202020202028617661696c61626c652d737478202867657420756e6c6f636b656420737461636b65722d696e666f29290a2020202020202020202028756e6c6f636b2d686569676874202867657420756e6c6f636b2d68656967687420737461636b65722d696e666f2929290a0a20202020203b3b206d7573742062652063616c6c6564207769746820706f7369746976652060696e6372656173652d6279600a202020202028617373657274732120283e3d20696e6372656173652d6279207531290a20202020202020202020202020202028657272204552525f535441434b494e475f494e56414c49445f414d4f554e5429290a0a2020202020286c6574202828756e6c6f636b2d696e2d6379636c6520286275726e2d6865696768742d746f2d7265776172642d6379636c6520756e6c6f636b2d68656967687429290a2020202020202020202020286375722d6379636c65202863757272656e742d706f782d7265776172642d6379636c6529290a20202020202020202020202866697273742d696e6372656173652d6379636c6520282b206375722d6379636c6520753129290a2020202020202020202020286c6173742d696e6372656173652d6379636c6520282d20756e6c6f636b2d696e2d6379636c6520753129290a2020202020202020202020286379636c652d636f756e742028747279212028696620283c3d2066697273742d696e6372656173652d6379636c65206c6173742d696e6372656173652d6379636c65290a20202020202020202020202020202020202020202020202020202020202020202020286f6b20282b20753120282d206c6173742d696e6372656173652d6379636c652066697273742d696e6372656173652d6379636c652929290a2020202020202020202020202020202020202020202020202020202020202020202028657272204552525f535441434b494e475f494e56414c49445f4c4f434b5f504552494f44292929290a2020202020202020202020286e65772d746f74616c2d6c6f636b656420282b20696e6372656173652d6279206578697374696e672d6c6f636b29290a202020202020202020202028737461636b65722d73746174650a2020202020202020202020202020202028756e777261702120286d61702d6765743f20737461636b696e672d7374617465207b20737461636b65723a20737461636b6572207d290a202020202020202020202020202020202028657272204552525f535441434b5f494e4352454153455f4e4f545f4c4f434b4544292929290a0a2020202020203b3b206d7573742062652063616c6c6564206469726563746c79206279207468652074782d73656e646572206f7220627920616e20616c6c6f77656420636f6e74726163742d63616c6c65720a2020202020202861737365727473212028636865636b2d63616c6c65722d616c6c6f776564290a202020202020202028657272204552525f535441434b494e475f5045524d495353494f4e5f44454e49454429290a0a2020202020203b3b20737461636b6572206d7573742062652063757272656e746c79206c6f636b65640a20202020202028617373657274732120283e206578697374696e672d6c6f636b207530290a202020202020202028657272204552525f535441434b5f494e4352454153455f4e4f545f4c4f434b454429290a0a2020202020203b3b20737461636b6572206d757374206861766520656e6f7567682073747820746f206c6f636b0a20202020202028617373657274732120283e3d20617661696c61626c652d73747820696e6372656173652d6279290a202020202020202028657272204552525f535441434b494e475f494e53554646494349454e545f46554e445329290a0a2020202020203b3b20737461636b6572206d75737420686176652064656c65676174656420746f207468652063616c6c65720a202020202020286c657420282864656c65676174696f6e2d696e666f2028756e777261702120286765742d636865636b2d64656c65676174696f6e20737461636b6572292028657272204552525f535441434b494e475f5045524d495353494f4e5f44454e4945442929290a2020202020202020202020202864656c6567617465642d746f20286765742064656c6567617465642d746f2064656c65676174696f6e2d696e666f29290a2020202020202020202020202864656c6567617465642d616d6f756e74202867657420616d6f756e742d757374782064656c65676174696f6e2d696e666f29290a2020202020202020202020202864656c6567617465642d706f782d61646472202867657420706f782d616464722064656c65676174696f6e2d696e666f29290a2020202020202020202020202864656c6567617465642d756e74696c202867657420756e74696c2d6275726e2d68742064656c65676174696f6e2d696e666f2929290a20202020202020203b3b206d75737420686176652064656c65676174656420746f2074782d73656e6465720a2020202020202020286173736572747321202869732d65712064656c6567617465642d746f2074782d73656e646572290a20202020202020202020202020202020202028657272204552525f535441434b494e475f5045524d495353494f4e5f44454e49454429290a20202020202020203b3b206d75737420686176652064656c65676174656420656e6f756768207374780a202020202020202028617373657274732120283e3d2064656c6567617465642d616d6f756e74206e65772d746f74616c2d6c6f636b6564290a20202020202020202020202020202020202028657272204552525f44454c45474154494f4e5f544f4f5f4d5543485f4c4f434b454429290a20202020202020203b3b20696620706f782d61646472206973207365742c206d75737420626520657175616c20746f20706f782d616464720a202020202020202028617373657274732120286d617463682064656c6567617465642d706f782d616464720a202020202020202020202020202020202020202020202020207370656369666965642d706f782d61646472202869732d657120706f782d61646472207370656369666965642d706f782d61646472290a2020202020202020202020202020202020202020202020202074727565290a20202020202020202020202020202020202028657272204552525f44454c45474154494f4e5f504f585f414444525f524551554952454429290a20202020202020203b3b2064656c65676174696f6e206d757374206e6f7420657870697265206265666f7265206c6f636b20706572696f640a202020202020202028617373657274732120286d617463682064656c6567617465642d756e74696c0a202020202020202020202020202020202020202020202020756e74696c2d6275726e2d68740a20202020202020202020202020202020202020202020202020202020283e3d20756e74696c2d6275726e2d687420756e6c6f636b2d686569676874290a20202020202020202020202020202020202020202020202074727565290a20202020202020202020202020202020202028657272204552525f44454c45474154494f4e5f455850495245535f445552494e475f4c4f434b2929290a0a2020202020203b3b2064656c656761746520737461636b696e6720646f6573206d696e696d616c2d63616e2d737461636b2d7374780a202020202020287472792120286d696e696d616c2d63616e2d737461636b2d73747820706f782d61646472206e65772d746f74616c2d6c6f636b65642066697273742d696e6372656173652d6379636c6520282b20753120282d206c6173742d696e6372656173652d6379636c652066697273742d696e6372656173652d6379636c65292929290a0a2020202020203b3b2072656769737465722074686520506f58206164647265737320776974682074686520616d6f756e7420737461636b656420766961207061727469616c20737461636b696e670a2020202020203b3b2020206265666f72652069742063616e20626520696e636c7564656420696e2074686520726577617264207365742c2074686973206d75737420626520636f6d6d6974746564210a202020202020286164642d706f782d7061727469616c2d737461636b656420706f782d616464722066697273742d696e6372656173652d6379636c65206379636c652d636f756e7420696e6372656173652d6279290a0a2020202020203b3b20737461636b696e672d737461746520697320756e6368616e6765642c20736f206e6f206e65656420746f207570646174650a0a2020202020203b3b2072657475726e20746865206c6f636b2d757020696e666f726d6174696f6e2c20736f20746865206e6f64652063616e2061637475616c6c79206361727279206f757420746865206c6f636b2e0a202020202020286f6b207b20737461636b65723a20737461636b65722c20746f74616c2d6c6f636b65643a206e65772d746f74616c2d6c6f636b65647d292929290a0a3b3b20417320612064656c656761746f722c20657874656e6420616e2061637469766520737461636b696e67206c6f636b2c2069737375696e67206120227061727469616c20636f6d6d69746d656e742220666f72207468650a3b3b202020657874656e6465642d746f206379636c65732e0a3b3b202a4e657720696e20537461636b7320322e312a0a3b3b2054686973206d6574686f6420657874656e64732060737461636b65726027732063757272656e74206c6f636b757020666f7220616e206164646974696f6e616c2060657874656e642d636f756e74600a3b3b20202020616e64207061727469616c6c7920636f6d6d6974732074686f7365206e6577206379636c657320746f2060706f782d61646472600a28646566696e652d7075626c6963202864656c65676174652d737461636b2d657874656e640a202020202020202020202020202020202020202028737461636b6572207072696e636970616c290a202020202020202020202020202020202020202028706f782d61646472207b2076657273696f6e3a2028627566662031292c206861736862797465733a20286275666620333229207d290a202020202020202020202020202020202020202028657874656e642d636f756e742075696e7429290a20202020286c6574202828737461636b65722d696e666f20287374782d6163636f756e7420737461636b657229290a2020202020202020202028737461636b65722d737461746520286765742d737461636b65722d696e666f20737461636b657229290a2020202020202020202028616d6f756e742d757374782028676574206c6f636b656420737461636b65722d696e666f29290a2020202020202020202028756e6c6f636b2d686569676874202867657420756e6c6f636b2d68656967687420737461636b65722d696e666f29290a2020202020202020202028756e6c6f636b2d696e2d6379636c6520286275726e2d6865696768742d746f2d7265776172642d6379636c6520756e6c6f636b2d68656967687429290a202020202020202020203b3b20696620746865206163636f756e7420756e6c6f636b73202a647572696e672a2074686973206379636c65202873686f756c64206f6e6c79206f6363757220647572696e672074657374696e67292c0a202020202020202020203b3b207365742066697273742d657874656e642d6379636c6520746f20746865206e657874206379636c652e0a20202020202020202020286375722d6379636c65202863757272656e742d706f782d7265776172642d6379636c6529290a202020202020202020202866697273742d657874656e642d6379636c652028696620283e20282b206375722d6379636c652075312920756e6c6f636b2d696e2d6379636c65290a20202020202020202020202020202020202020202020202020202020202020202020202020282b206375722d6379636c652075312920756e6c6f636b2d696e2d6379636c6529290a202020202020202020203b3b2075706461746520737461636b6572207265636f72640a202020202020202020203b3b206d61696e7461696e696e672076616c696420737461636b696e672d737461746520656e747269657320726571756972657320636865636b696e670a202020202020202020203b3b20207768657468657220746865726520697320616e206578697374696e6720656e74727920666f722074686520737461636b657220696e207468652073746174650a202020202020202020203b3b207468697320776f756c642062652074686520636173652069662074686520737461636b657220697320657874656e64696e672061206c6f636b75702066726f6d20506f582d310a202020202020202020203b3b2020746f20506f582d320a202020202020202020202866697273742d7265776172642d6379636c6520286d6174636820286765742066697273742d7265776172642d6379636c6520737461636b65722d7374617465290a2020202020202020202020202020202020202020202020202020202020202020202020202020203b3b20696620737461636b657220737461636b656420696e20506f58322c207468656e206d6178286375722d6379636c652c20737461636b65722d73746174652e66697273742d7265776172642d6379636c65292069732076616c69640a2020202020202020202020202020202020202020202020202020202020202020202020202020206f6c642d66697273742d6379636c652028696620283e206375722d6379636c65206f6c642d66697273742d6379636c6529206375722d6379636c65206f6c642d66697273742d6379636c65290a2020202020202020202020202020202020202020202020202020202020202020202020202020203b3b206f74686572776973652c207468657265206172656e277420506f583220656e747269657320756e74696c2066697273742d657874656e642d6379636c650a20202020202020202020202020202020202020202020202020202020202020202020202020202066697273742d657874656e642d6379636c652929290a0a20202020203b3b206d7573742062652063616c6c6564207769746820706f73697469766520657874656e642d636f756e740a202020202028617373657274732120283e3d20657874656e642d636f756e74207531290a20202020202020202020202020202028657272204552525f535441434b494e475f494e56414c49445f4c4f434b5f504552494f4429290a0a2020202020286c65742028286c6173742d657874656e642d6379636c652020282d20282b2066697273742d657874656e642d6379636c6520657874656e642d636f756e742920753129290a2020202020202020202020286c6f636b2d706572696f6420282b20753120282d206c6173742d657874656e642d6379636c652066697273742d7265776172642d6379636c652929290a2020202020202020202020286e65772d756e6c6f636b2d687420287265776172642d6379636c652d746f2d6275726e2d68656967687420282b207531206c6173742d657874656e642d6379636c65292929290a0a2020202020203b3b206669727374206379636c65206d757374206265206166746572207468652063757272656e74206379636c650a20202020202028617373657274732120283e2066697273742d657874656e642d6379636c65206375722d6379636c65292028657272204552525f535441434b494e475f494e56414c49445f4c4f434b5f504552494f4429290a2020202020203b3b206c6f636b20706572696f64206d75737420626520706f7369746976650a20202020202028617373657274732120283e206c6f636b2d706572696f64207530292028657272204552525f535441434b494e475f494e56414c49445f4c4f434b5f504552494f4429290a0a2020202020203b3b206d7573742062652063616c6c6564206469726563746c79206279207468652074782d73656e646572206f7220627920616e20616c6c6f77656420636f6e74726163742d63616c6c65720a2020202020202861737365727473212028636865636b2d63616c6c65722d616c6c6f776564290a202020202020202028657272204552525f535441434b494e475f5045524d495353494f4e5f44454e49454429290a0a2020202020203b3b20636865636b2076616c6964206c6f636b20706572696f640a2020202020202861737365727473212028636865636b2d706f782d6c6f636b2d706572696f64206c6f636b2d706572696f64290a202020202020202028657272204552525f535441434b494e475f494e56414c49445f4c4f434b5f504552494f4429290a0a2020202020203b3b20737461636b6572206d7573742062652063757272656e746c79206c6f636b65640a20202020202028617373657274732120283e20616d6f756e742d75737478207530290a202020202020202028657272204552525f535441434b5f455854454e445f4e4f545f4c4f434b454429290a0a2020202020203b3b20737461636b6572206d75737420686176652064656c65676174656420746f207468652063616c6c65720a202020202020286c657420282864656c65676174696f6e2d696e666f2028756e777261702120286765742d636865636b2d64656c65676174696f6e20737461636b6572292028657272204552525f535441434b494e475f5045524d495353494f4e5f44454e494544292929290a20202020202020203b3b206d75737420686176652064656c65676174656420746f2074782d73656e6465720a2020202020202020286173736572747321202869732d657120286765742064656c6567617465642d746f2064656c65676174696f6e2d696e666f292074782d73656e646572290a20202020202020202020202020202020202028657272204552525f535441434b494e475f5045524d495353494f4e5f44454e49454429290a20202020202020203b3b206d75737420686176652064656c65676174656420656e6f756768207374780a202020202020202028617373657274732120283e3d202867657420616d6f756e742d757374782064656c65676174696f6e2d696e666f2920616d6f756e742d75737478290a20202020202020202020202020202020202028657272204552525f44454c45474154494f4e5f544f4f5f4d5543485f4c4f434b454429290a20202020202020203b3b20696620706f782d61646472206973207365742c206d75737420626520657175616c20746f20706f782d616464720a202020202020202028617373657274732120286d61746368202867657420706f782d616464722064656c65676174696f6e2d696e666f290a202020202020202020202020202020202020202020202020207370656369666965642d706f782d61646472202869732d657120706f782d61646472207370656369666965642d706f782d61646472290a2020202020202020202020202020202020202020202020202074727565290a20202020202020202020202020202020202028657272204552525f44454c45474154494f4e5f504f585f414444525f524551554952454429290a20202020202020203b3b2064656c65676174696f6e206d757374206e6f7420657870697265206265666f7265206c6f636b20706572696f640a202020202020202028617373657274732120286d61746368202867657420756e74696c2d6275726e2d68742064656c65676174696f6e2d696e666f290a20202020202020202020202020202020202020202020202020756e74696c2d6275726e2d687420283e3d20756e74696c2d6275726e2d68740a202020202020202020202020202020202020202020202020202020202020202020202020202020202020206e65772d756e6c6f636b2d6874290a2020202020202020202020202020202020202020202074727565290a20202020202020202020202020202020202028657272204552525f44454c45474154494f4e5f455850495245535f445552494e475f4c4f434b2929290a0a2020202020203b3b2064656c656761746520737461636b696e6720646f6573206d696e696d616c2d63616e2d737461636b2d7374780a202020202020287472792120286d696e696d616c2d63616e2d737461636b2d73747820706f782d6164647220616d6f756e742d757374782066697273742d657874656e642d6379636c65206c6f636b2d706572696f6429290a0a2020202020203b3b2072656769737465722074686520506f58206164647265737320776974682074686520616d6f756e7420737461636b656420766961207061727469616c20737461636b696e670a2020202020203b3b2020206265666f72652069742063616e20626520696e636c7564656420696e2074686520726577617264207365742c2074686973206d75737420626520636f6d6d6974746564210a202020202020286164642d706f782d7061727469616c2d737461636b656420706f782d616464722066697273742d657874656e642d6379636c6520657874656e642d636f756e7420616d6f756e742d75737478290a0a202020202020286d61702d73657420737461636b696e672d73746174650a20202020202020207b20737461636b65723a20737461636b6572207d0a20202020202020207b20706f782d616464723a20706f782d616464722c0a202020202020202020207265776172642d7365742d696e64657865733a20286c697374292c0a2020202020202020202066697273742d7265776172642d6379636c653a2066697273742d7265776172642d6379636c652c0a202020202020202020206c6f636b2d706572696f643a206c6f636b2d706572696f64207d290a0a2020202020203b3b2072657475726e20746865206c6f636b2d757020696e666f726d6174696f6e2c20736f20746865206e6f64652063616e2061637475616c6c79206361727279206f757420746865206c6f636b2e0a202020202020286f6b207b20737461636b65723a20737461636b65722c0a202020202020202020202020756e6c6f636b2d6275726e2d6865696768743a206e65772d756e6c6f636b2d6874207d292929290a0a3b3b2047657420746865205f63757272656e745f20506f5820737461636b696e672064656c65676174696f6e20696e666f726d6174696f6e20666f72206120737461636b65722e202049662074686520696e666f726d6174696f6e0a3b3b20697320657870697265642c206f722069662074686572652773206e65766572206265656e2073756368206120737461636b65722c207468656e2072657475726e73206e6f6e652e0a3b3b202a4e657720696e20537461636b7320322e312a0a28646566696e652d726561642d6f6e6c7920286765742d64656c65676174696f6e2d696e666f2028737461636b6572207072696e636970616c29290a20202020286765742d636865636b2d64656c65676174696f6e20737461636b6572290a290a0a3b3b2047657420746865206275726e20686569676874206174207768696368206120706172746963756c617220636f6e747261637420697320616c6c6f77656420746f20737461636b20666f72206120706172746963756c6172207072696e636970616c2e0a3b3b202a4e657720696e20537461636b7320322e312a0a3b3b2052657475726e732028736f6d652028736f6d6520582929206966205820697320746865206275726e206865696768742061742077686963682074686520616c6c6f77616e6365207465726d696e617465730a3b3b2052657475726e732028736f6d65206e6f6e6529206966207468652063616c6c657220697320616c6c6f77656420696e646566696e6974656c790a3b3b2052657475726e73206e6f6e65206966207468657265206973206e6f20616c6c6f77616e6365207265636f72640a28646566696e652d726561642d6f6e6c7920286765742d616c6c6f77616e63652d636f6e74726163742d63616c6c657273202873656e646572207072696e636970616c29202863616c6c696e672d636f6e7472616374207072696e636970616c29290a20202020286d61702d6765743f20616c6c6f77616e63652d636f6e74726163742d63616c6c657273207b2073656e6465723a2073656e6465722c20636f6e74726163742d63616c6c65723a2063616c6c696e672d636f6e7472616374207d290a290a0a3b3b20486f77206d616e7920506f582061646472657373657320696e207468697320726577617264206379636c653f0a3b3b202a4e657720696e20537461636b7320322e312a0a28646566696e652d726561642d6f6e6c7920286765742d6e756d2d7265776172642d7365742d706f782d61646472657373657320287265776172642d6379636c652075696e7429290a20202020286d6174636820286d61702d6765743f207265776172642d6379636c652d706f782d616464726573732d6c6973742d6c656e207b207265776172642d6379636c653a207265776172642d6379636c65207d290a20202020202020206e756d2d61646472730a20202020202020202020202028676574206c656e206e756d2d6164647273290a202020202020202075300a20202020290a290a0a3b3b20486f77206d616e7920755354582068617665206265656e206c6f636b656420757020666f722074686973206164647265737320736f206661722c206265666f7265207468652064656c656761746f7220636f6d6d697473207468656d3f0a3b3b202a4e657720696e20537461636b7320322e312a0a28646566696e652d726561642d6f6e6c7920286765742d7061727469616c2d737461636b65642d62792d6379636c652028706f782d61646472207b2076657273696f6e3a2028627566662031292c206861736862797465733a20286275666620333229207d2920287265776172642d6379636c652075696e7429202873656e646572207072696e636970616c29290a20202020286d61702d6765743f207061727469616c2d737461636b65642d62792d6379636c65207b20706f782d616464723a20706f782d616464722c207265776172642d6379636c653a207265776172642d6379636c652c2073656e6465723a2073656e646572207d290a290a0a3b3b20486f77206d616e792075535458206861766520766f74656420746f2072656a65637420506f5820696e206120676976656e20726577617264206379636c653f0a3b3b202a4e657720696e20537461636b7320322e312a0a28646566696e652d726561642d6f6e6c7920286765742d746f74616c2d706f782d72656a656374696f6e20287265776172642d6379636c652075696e7429290a20202020286d6174636820286d61702d6765743f20737461636b696e672d72656a656374696f6e207b207265776172642d6379636c653a207265776172642d6379636c65207d290a202020202020202072656a65637465640a2020202020202020202020202867657420616d6f756e742072656a6563746564290a202020202020202075300a20202020290a290a", "status": "success", "tx_index": 1, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": {"maps": [{"key": {"tuple": [{"name": "contract-caller", "type": "principal"}, {"name": "sender", "type": "principal"}]}, "name": "allowance-contract-callers", "value": {"tuple": [{"name": "until-burn-ht", "type": {"optional": "uint128"}}]}}, {"key": {"tuple": [{"name": "stacker", "type": "principal"}]}, "name": "delegation-state", "value": {"tuple": [{"name": "amount-ustx", "type": "uint128"}, {"name": "delegated-to", "type": "principal"}, {"name": "pox-addr", "type": {"optional": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 32}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}}, {"name": "until-burn-ht", "type": {"optional": "uint128"}}]}}, {"key": {"tuple": [{"name": "pox-addr", "type": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 32}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}, {"name": "reward-cycle", "type": "uint128"}, {"name": "sender", "type": "principal"}]}, "name": "logged-partial-stacked-by-cycle", "value": {"tuple": [{"name": "stacked-amount", "type": "uint128"}]}}, {"key": {"tuple": [{"name": "pox-addr", "type": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 32}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}, {"name": "reward-cycle", "type": "uint128"}, {"name": "sender", "type": "principal"}]}, "name": "partial-stacked-by-cycle", "value": {"tuple": [{"name": "stacked-amount", "type": "uint128"}]}}, {"key": {"tuple": [{"name": "index", "type": "uint128"}, {"name": "reward-cycle", "type": "uint128"}]}, "name": "reward-cycle-pox-address-list", "value": {"tuple": [{"name": "pox-addr", "type": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 32}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}, {"name": "stacker", "type": {"optional": "principal"}}, {"name": "total-ustx", "type": "uint128"}]}}, {"key": {"tuple": [{"name": "reward-cycle", "type": "uint128"}]}, "name": "reward-cycle-pox-address-list-len", "value": {"tuple": [{"name": "len", "type": "uint128"}]}}, {"key": {"tuple": [{"name": "reward-cycle", "type": "uint128"}]}, "name": "reward-cycle-total-stacked", "value": {"tuple": [{"name": "total-ustx", "type": "uint128"}]}}, {"key": {"tuple": [{"name": "reward-cycle", "type": "uint128"}]}, "name": "stacking-rejection", "value": {"tuple": [{"name": "amount", "type": "uint128"}]}}, {"key": {"tuple": [{"name": "reward-cycle", "type": "uint128"}, {"name": "stacker", "type": "principal"}]}, "name": "stacking-rejectors", "value": {"tuple": [{"name": "amount", "type": "uint128"}]}}, {"key": {"tuple": [{"name": "stacker", "type": "principal"}]}, "name": "stacking-state", "value": {"tuple": [{"name": "first-reward-cycle", "type": "uint128"}, {"name": "lock-period", "type": "uint128"}, {"name": "pox-addr", "type": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 32}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}, {"name": "reward-set-indexes", "type": {"list": {"type": "uint128", "length": 12}}}]}}], "epoch": "Epoch21", "functions": [{"args": [{"name": "cycle-index", "type": "uint128"}, {"name": "params", "type": {"tuple": [{"name": "amount-ustx", "type": "uint128"}, {"name": "first-reward-cycle", "type": "uint128"}, {"name": "i", "type": "uint128"}, {"name": "num-cycles", "type": "uint128"}, {"name": "pox-addr", "type": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 32}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}, {"name": "reward-set-indexes", "type": {"list": {"type": "uint128", "length": 12}}}, {"name": "stacker", "type": {"optional": "principal"}}]}}], "name": "add-pox-addr-to-ith-reward-cycle", "access": "private", "outputs": {"type": {"tuple": [{"name": "amount-ustx", "type": "uint128"}, {"name": "first-reward-cycle", "type": "uint128"}, {"name": "i", "type": "uint128"}, {"name": "num-cycles", "type": "uint128"}, {"name": "pox-addr", "type": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 32}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}, {"name": "reward-set-indexes", "type": {"list": {"type": "uint128", "length": 12}}}, {"name": "stacker", "type": {"optional": "principal"}}]}}}, {"args": [{"name": "pox-addr", "type": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 32}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}, {"name": "first-reward-cycle", "type": "uint128"}, {"name": "num-cycles", "type": "uint128"}, {"name": "amount-ustx", "type": "uint128"}, {"name": "stacker", "type": "principal"}], "name": "add-pox-addr-to-reward-cycles", "access": "private", "outputs": {"type": {"response": {"ok": {"list": {"type": "uint128", "length": 12}}, "error": "int128"}}}}, {"args": [{"name": "pox-addr", "type": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 32}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}, {"name": "first-reward-cycle", "type": "uint128"}, {"name": "num-cycles", "type": "uint128"}, {"name": "amount-ustx", "type": "uint128"}], "name": "add-pox-partial-stacked", "access": "private", "outputs": {"type": "bool"}}, {"args": [{"name": "cycle-index", "type": "uint128"}, {"name": "params", "type": {"tuple": [{"name": "amount-ustx", "type": "uint128"}, {"name": "num-cycles", "type": "uint128"}, {"name": "pox-addr", "type": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 32}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}, {"name": "reward-cycle", "type": "uint128"}]}}], "name": "add-pox-partial-stacked-to-ith-cycle", "access": "private", "outputs": {"type": {"tuple": [{"name": "amount-ustx", "type": "uint128"}, {"name": "num-cycles", "type": "uint128"}, {"name": "pox-addr", "type": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 32}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}, {"name": "reward-cycle", "type": "uint128"}]}}}, {"args": [{"name": "pox-addr", "type": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 32}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}, {"name": "reward-cycle", "type": "uint128"}, {"name": "amount-ustx", "type": "uint128"}, {"name": "stacker", "type": {"optional": "principal"}}], "name": "append-reward-cycle-pox-addr", "access": "private", "outputs": {"type": "uint128"}}, {"args": [{"name": "set-index", "type": "uint128"}, {"name": "data-res", "type": {"response": {"ok": {"tuple": [{"name": "cycle", "type": "uint128"}, {"name": "first-unlocked-cycle", "type": "uint128"}, {"name": "stacker", "type": "principal"}]}, "error": "int128"}}}], "name": "fold-unlock-reward-cycle", "access": "private", "outputs": {"type": {"response": {"ok": {"tuple": [{"name": "cycle", "type": "uint128"}, {"name": "first-unlocked-cycle", "type": "uint128"}, {"name": "stacker", "type": "principal"}]}, "error": "int128"}}}}, {"args": [{"name": "user", "type": "principal"}, {"name": "amount-locked", "type": "uint128"}, {"name": "cycle-to-unlock", "type": "uint128"}], "name": "handle-unlock", "access": "private", "outputs": {"type": {"response": {"ok": "bool", "error": "int128"}}}}, {"args": [{"name": "reward-cycle-index", "type": "uint128"}, {"name": "updates", "type": {"optional": {"tuple": [{"name": "add-amount", "type": "uint128"}, {"name": "first-cycle", "type": "uint128"}, {"name": "reward-cycle", "type": "uint128"}, {"name": "stacker", "type": "principal"}]}}}], "name": "increase-reward-cycle-entry", "access": "private", "outputs": {"type": {"optional": {"tuple": [{"name": "add-amount", "type": "uint128"}, {"name": "first-cycle", "type": "uint128"}, {"name": "reward-cycle", "type": "uint128"}, {"name": "stacker", "type": "principal"}]}}}}, {"args": [{"name": "pox-addr", "type": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 32}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}, {"name": "reward-cycle", "type": "uint128"}], "name": "inner-stack-aggregation-commit", "access": "private", "outputs": {"type": {"response": {"ok": "uint128", "error": "int128"}}}}, {"args": [{"name": "caller", "type": "principal"}, {"name": "until-burn-ht", "type": {"optional": "uint128"}}], "name": "allow-contract-caller", "access": "public", "outputs": {"type": {"response": {"ok": "bool", "error": "int128"}}}}, {"args": [{"name": "stacker", "type": "principal"}, {"name": "pox-addr", "type": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 32}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}, {"name": "extend-count", "type": "uint128"}], "name": "delegate-stack-extend", "access": "public", "outputs": {"type": {"response": {"ok": {"tuple": [{"name": "stacker", "type": "principal"}, {"name": "unlock-burn-height", "type": "uint128"}]}, "error": "int128"}}}}, {"args": [{"name": "stacker", "type": "principal"}, {"name": "pox-addr", "type": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 32}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}, {"name": "increase-by", "type": "uint128"}], "name": "delegate-stack-increase", "access": "public", "outputs": {"type": {"response": {"ok": {"tuple": [{"name": "stacker", "type": "principal"}, {"name": "total-locked", "type": "uint128"}]}, "error": "int128"}}}}, {"args": [{"name": "stacker", "type": "principal"}, {"name": "amount-ustx", "type": "uint128"}, {"name": "pox-addr", "type": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 32}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}, {"name": "start-burn-ht", "type": "uint128"}, {"name": "lock-period", "type": "uint128"}], "name": "delegate-stack-stx", "access": "public", "outputs": {"type": {"response": {"ok": {"tuple": [{"name": "lock-amount", "type": "uint128"}, {"name": "stacker", "type": "principal"}, {"name": "unlock-burn-height", "type": "uint128"}]}, "error": "int128"}}}}, {"args": [{"name": "amount-ustx", "type": "uint128"}, {"name": "delegate-to", "type": "principal"}, {"name": "until-burn-ht", "type": {"optional": "uint128"}}, {"name": "pox-addr", "type": {"optional": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 32}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}}], "name": "delegate-stx", "access": "public", "outputs": {"type": {"response": {"ok": "bool", "error": "int128"}}}}, {"args": [{"name": "caller", "type": "principal"}], "name": "disallow-contract-caller", "access": "public", "outputs": {"type": {"response": {"ok": "bool", "error": "int128"}}}}, {"args": [], "name": "reject-pox", "access": "public", "outputs": {"type": {"response": {"ok": "bool", "error": "int128"}}}}, {"args": [], "name": "revoke-delegate-stx", "access": "public", "outputs": {"type": {"response": {"ok": "bool", "error": "int128"}}}}, {"args": [{"name": "first-burn-height", "type": "uint128"}, {"name": "prepare-cycle-length", "type": "uint128"}, {"name": "reward-cycle-length", "type": "uint128"}, {"name": "rejection-fraction", "type": "uint128"}, {"name": "begin-2-1-reward-cycle", "type": "uint128"}], "name": "set-burnchain-parameters", "access": "public", "outputs": {"type": {"response": {"ok": "bool", "error": "int128"}}}}, {"args": [{"name": "pox-addr", "type": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 32}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}, {"name": "reward-cycle", "type": "uint128"}], "name": "stack-aggregation-commit", "access": "public", "outputs": {"type": {"response": {"ok": "bool", "error": "int128"}}}}, {"args": [{"name": "pox-addr", "type": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 32}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}, {"name": "reward-cycle", "type": "uint128"}], "name": "stack-aggregation-commit-indexed", "access": "public", "outputs": {"type": {"response": {"ok": "uint128", "error": "int128"}}}}, {"args": [{"name": "pox-addr", "type": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 32}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}, {"name": "reward-cycle", "type": "uint128"}, {"name": "reward-cycle-index", "type": "uint128"}], "name": "stack-aggregation-increase", "access": "public", "outputs": {"type": {"response": {"ok": "bool", "error": "int128"}}}}, {"args": [{"name": "extend-count", "type": "uint128"}, {"name": "pox-addr", "type": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 32}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}], "name": "stack-extend", "access": "public", "outputs": {"type": {"response": {"ok": {"tuple": [{"name": "stacker", "type": "principal"}, {"name": "unlock-burn-height", "type": "uint128"}]}, "error": "int128"}}}}, {"args": [{"name": "increase-by", "type": "uint128"}], "name": "stack-increase", "access": "public", "outputs": {"type": {"response": {"ok": {"tuple": [{"name": "stacker", "type": "principal"}, {"name": "total-locked", "type": "uint128"}]}, "error": "int128"}}}}, {"args": [{"name": "amount-ustx", "type": "uint128"}, {"name": "pox-addr", "type": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 32}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}, {"name": "start-burn-ht", "type": "uint128"}, {"name": "lock-period", "type": "uint128"}], "name": "stack-stx", "access": "public", "outputs": {"type": {"response": {"ok": {"tuple": [{"name": "lock-amount", "type": "uint128"}, {"name": "stacker", "type": "principal"}, {"name": "unlock-burn-height", "type": "uint128"}]}, "error": "int128"}}}}, {"args": [{"name": "height", "type": "uint128"}], "name": "burn-height-to-reward-cycle", "access": "read_only", "outputs": {"type": "uint128"}}, {"args": [{"name": "pox-addr", "type": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 32}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}, {"name": "amount-ustx", "type": "uint128"}, {"name": "first-reward-cycle", "type": "uint128"}, {"name": "num-cycles", "type": "uint128"}], "name": "can-stack-stx", "access": "read_only", "outputs": {"type": {"response": {"ok": "bool", "error": "int128"}}}}, {"args": [], "name": "check-caller-allowed", "access": "read_only", "outputs": {"type": "bool"}}, {"args": [{"name": "version", "type": {"buffer": {"length": 1}}}, {"name": "hashbytes", "type": {"buffer": {"length": 32}}}], "name": "check-pox-addr-hashbytes", "access": "read_only", "outputs": {"type": "bool"}}, {"args": [{"name": "version", "type": {"buffer": {"length": 1}}}], "name": "check-pox-addr-version", "access": "read_only", "outputs": {"type": "bool"}}, {"args": [{"name": "lock-period", "type": "uint128"}], "name": "check-pox-lock-period", "access": "read_only", "outputs": {"type": "bool"}}, {"args": [], "name": "current-pox-reward-cycle", "access": "read_only", "outputs": {"type": "uint128"}}, {"args": [{"name": "sender", "type": "principal"}, {"name": "calling-contract", "type": "principal"}], "name": "get-allowance-contract-callers", "access": "read_only", "outputs": {"type": {"optional": {"tuple": [{"name": "until-burn-ht", "type": {"optional": "uint128"}}]}}}}, {"args": [{"name": "stacker", "type": "principal"}], "name": "get-check-delegation", "access": "read_only", "outputs": {"type": {"optional": {"tuple": [{"name": "amount-ustx", "type": "uint128"}, {"name": "delegated-to", "type": "principal"}, {"name": "pox-addr", "type": {"optional": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 32}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}}, {"name": "until-burn-ht", "type": {"optional": "uint128"}}]}}}}, {"args": [{"name": "stacker", "type": "principal"}], "name": "get-delegation-info", "access": "read_only", "outputs": {"type": {"optional": {"tuple": [{"name": "amount-ustx", "type": "uint128"}, {"name": "delegated-to", "type": "principal"}, {"name": "pox-addr", "type": {"optional": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 32}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}}, {"name": "until-burn-ht", "type": {"optional": "uint128"}}]}}}}, {"args": [{"name": "reward-cycle", "type": "uint128"}], "name": "get-num-reward-set-pox-addresses", "access": "read_only", "outputs": {"type": "uint128"}}, {"args": [{"name": "pox-addr", "type": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 32}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}, {"name": "reward-cycle", "type": "uint128"}, {"name": "sender", "type": "principal"}], "name": "get-partial-stacked-by-cycle", "access": "read_only", "outputs": {"type": {"optional": {"tuple": [{"name": "stacked-amount", "type": "uint128"}]}}}}, {"args": [], "name": "get-pox-info", "access": "read_only", "outputs": {"type": {"response": {"ok": {"tuple": [{"name": "current-rejection-votes", "type": "uint128"}, {"name": "first-burnchain-block-height", "type": "uint128"}, {"name": "min-amount-ustx", "type": "uint128"}, {"name": "prepare-cycle-length", "type": "uint128"}, {"name": "rejection-fraction", "type": "uint128"}, {"name": "reward-cycle-id", "type": "uint128"}, {"name": "reward-cycle-length", "type": "uint128"}, {"name": "total-liquid-supply-ustx", "type": "uint128"}]}, "error": "none"}}}}, {"args": [{"name": "stacker", "type": "principal"}, {"name": "reward-cycle", "type": "uint128"}], "name": "get-pox-rejection", "access": "read_only", "outputs": {"type": {"optional": {"tuple": [{"name": "amount", "type": "uint128"}]}}}}, {"args": [{"name": "reward-cycle", "type": "uint128"}, {"name": "index", "type": "uint128"}], "name": "get-reward-set-pox-address", "access": "read_only", "outputs": {"type": {"optional": {"tuple": [{"name": "pox-addr", "type": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 32}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}, {"name": "stacker", "type": {"optional": "principal"}}, {"name": "total-ustx", "type": "uint128"}]}}}}, {"args": [{"name": "reward-cycle", "type": "uint128"}], "name": "get-reward-set-size", "access": "read_only", "outputs": {"type": "uint128"}}, {"args": [{"name": "stacker", "type": "principal"}], "name": "get-stacker-info", "access": "read_only", "outputs": {"type": {"optional": {"tuple": [{"name": "first-reward-cycle", "type": "uint128"}, {"name": "lock-period", "type": "uint128"}, {"name": "pox-addr", "type": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 32}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}, {"name": "reward-set-indexes", "type": {"list": {"type": "uint128", "length": 12}}}]}}}}, {"args": [], "name": "get-stacking-minimum", "access": "read_only", "outputs": {"type": "uint128"}}, {"args": [{"name": "reward-cycle", "type": "uint128"}], "name": "get-total-pox-rejection", "access": "read_only", "outputs": {"type": "uint128"}}, {"args": [{"name": "reward-cycle", "type": "uint128"}], "name": "get-total-ustx-stacked", "access": "read_only", "outputs": {"type": "uint128"}}, {"args": [{"name": "reward-cycle", "type": "uint128"}], "name": "is-pox-active", "access": "read_only", "outputs": {"type": "bool"}}, {"args": [{"name": "pox-addr", "type": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 32}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}, {"name": "amount-ustx", "type": "uint128"}, {"name": "first-reward-cycle", "type": "uint128"}, {"name": "num-cycles", "type": "uint128"}], "name": "minimal-can-stack-stx", "access": "read_only", "outputs": {"type": {"response": {"ok": "bool", "error": "int128"}}}}, {"args": [], "name": "next-cycle-rejection-votes", "access": "read_only", "outputs": {"type": "uint128"}}, {"args": [{"name": "cycle", "type": "uint128"}], "name": "reward-cycle-to-burn-height", "access": "read_only", "outputs": {"type": "uint128"}}], "variables": [{"name": "ADDRESS_VERSION_NATIVE_P2TR", "type": {"buffer": {"length": 1}}, "access": "constant"}, {"name": "ADDRESS_VERSION_NATIVE_P2WPKH", "type": {"buffer": {"length": 1}}, "access": "constant"}, {"name": "ADDRESS_VERSION_NATIVE_P2WSH", "type": {"buffer": {"length": 1}}, "access": "constant"}, {"name": "ADDRESS_VERSION_P2PKH", "type": {"buffer": {"length": 1}}, "access": "constant"}, {"name": "ADDRESS_VERSION_P2SH", "type": {"buffer": {"length": 1}}, "access": "constant"}, {"name": "ADDRESS_VERSION_P2WPKH", "type": {"buffer": {"length": 1}}, "access": "constant"}, {"name": "ADDRESS_VERSION_P2WSH", "type": {"buffer": {"length": 1}}, "access": "constant"}, {"name": "ERR_DELEGATION_EXPIRES_DURING_LOCK", "type": "int128", "access": "constant"}, {"name": "ERR_DELEGATION_NO_REWARD_SLOT", "type": "int128", "access": "constant"}, {"name": "ERR_DELEGATION_POX_ADDR_REQUIRED", "type": "int128", "access": "constant"}, {"name": "ERR_DELEGATION_TOO_MUCH_LOCKED", "type": "int128", "access": "constant"}, {"name": "ERR_DELEGATION_WRONG_REWARD_SLOT", "type": "int128", "access": "constant"}, {"name": "ERR_INVALID_START_BURN_HEIGHT", "type": "int128", "access": "constant"}, {"name": "ERR_NOT_ALLOWED", "type": "int128", "access": "constant"}, {"name": "ERR_NOT_CURRENT_STACKER", "type": "int128", "access": "constant"}, {"name": "ERR_STACKING_ALREADY_DELEGATED", "type": "int128", "access": "constant"}, {"name": "ERR_STACKING_ALREADY_REJECTED", "type": "int128", "access": "constant"}, {"name": "ERR_STACKING_ALREADY_STACKED", "type": "int128", "access": "constant"}, {"name": "ERR_STACKING_CORRUPTED_STATE", "type": "int128", "access": "constant"}, {"name": "ERR_STACKING_EXPIRED", "type": "int128", "access": "constant"}, {"name": "ERR_STACKING_INSUFFICIENT_FUNDS", "type": "int128", "access": "constant"}, {"name": "ERR_STACKING_INVALID_AMOUNT", "type": "int128", "access": "constant"}, {"name": "ERR_STACKING_INVALID_LOCK_PERIOD", "type": "int128", "access": "constant"}, {"name": "ERR_STACKING_INVALID_POX_ADDRESS", "type": "int128", "access": "constant"}, {"name": "ERR_STACKING_NO_SUCH_PRINCIPAL", "type": "int128", "access": "constant"}, {"name": "ERR_STACKING_PERMISSION_DENIED", "type": "int128", "access": "constant"}, {"name": "ERR_STACKING_POX_ADDRESS_IN_USE", "type": "int128", "access": "constant"}, {"name": "ERR_STACKING_STX_LOCKED", "type": "int128", "access": "constant"}, {"name": "ERR_STACKING_THRESHOLD_NOT_MET", "type": "int128", "access": "constant"}, {"name": "ERR_STACKING_UNREACHABLE", "type": "int128", "access": "constant"}, {"name": "ERR_STACK_EXTEND_NOT_LOCKED", "type": "int128", "access": "constant"}, {"name": "ERR_STACK_INCREASE_NOT_LOCKED", "type": "int128", "access": "constant"}, {"name": "MAX_ADDRESS_VERSION", "type": "uint128", "access": "constant"}, {"name": "MAX_ADDRESS_VERSION_BUFF_20", "type": "uint128", "access": "constant"}, {"name": "MAX_ADDRESS_VERSION_BUFF_32", "type": "uint128", "access": "constant"}, {"name": "MAX_POX_REWARD_CYCLES", "type": "uint128", "access": "constant"}, {"name": "MIN_POX_REWARD_CYCLES", "type": "uint128", "access": "constant"}, {"name": "POX_REJECTION_FRACTION", "type": "uint128", "access": "constant"}, {"name": "PREPARE_CYCLE_LENGTH", "type": "uint128", "access": "constant"}, {"name": "REWARD_CYCLE_LENGTH", "type": "uint128", "access": "constant"}, {"name": "STACKING_THRESHOLD_100", "type": "uint128", "access": "constant"}, {"name": "STACKING_THRESHOLD_25", "type": "uint128", "access": "constant"}, {"name": "configured", "type": "bool", "access": "variable"}, {"name": "first-2-1-reward-cycle", "type": "uint128", "access": "variable"}, {"name": "first-burnchain-block-height", "type": "uint128", "access": "variable"}, {"name": "pox-prepare-cycle-length", "type": "uint128", "access": "variable"}, {"name": "pox-rejection-fraction", "type": "uint128", "access": "variable"}, {"name": "pox-reward-cycle-length", "type": "uint128", "access": "variable"}], "clarity_version": "Clarity2", "fungible_tokens": [], "non_fungible_tokens": []}, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}, {"txid": "0x156c299912a7d09ef3baa68b535f26eeb0dc0f3ae1b847e8414bca0b861ee578", "raw_tx": "0x800000000004000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000302000000000107636f7374732d33000039f80a3b3b20746865202e636f7374732d3320636f6e74726163740a0a3b3b2048656c7065722046756e6374696f6e730a0a3b3b2052657475726e206120436f73742053706563696669636174696f6e2077697468206a75737420612072756e74696d6520636f73740a28646566696e652d70726976617465202872756e74696d652028722075696e7429290a202020207b0a202020202020202072756e74696d653a20722c0a202020202020202077726974655f6c656e6774683a2075302c0a202020202020202077726974655f636f756e743a2075302c0a2020202020202020726561645f636f756e743a2075302c0a2020202020202020726561645f6c656e6774683a2075302c0a202020207d290a0a3b3b204c696e65617220636f73742d6173736573736d656e742066756e6374696f6e0a28646566696e652d7072697661746520286c696e65617220286e2075696e74292028612075696e74292028622075696e7429290a20202020282b20282a2061206e29206229290a0a3b3b204c6f674e20636f73742d6173736573736d656e742066756e6374696f6e0a28646566696e652d7072697661746520286c6f676e20286e2075696e74292028612075696e74292028622075696e7429290a20202020282b20282a206120286c6f6732206e2929206229290a0a3b3b204e4c6f674e20636f73742d6173736573736d656e742066756e6374696f6e0a28646566696e652d7072697661746520286e6c6f676e20286e2075696e74292028612075696e74292028622075696e7429290a20202020282b20282a206120282a206e20286c6f6732206e292929206229290a0a0a3b3b20436f73742046756e6374696f6e730a28646566696e652d726561642d6f6e6c792028636f73745f616e616c797369735f747970655f616e6e6f7461746520286e2075696e7429290a202020202872756e74696d6520286c696e656172206e2075312075392929290a0a28646566696e652d726561642d6f6e6c792028636f73745f616e616c797369735f747970655f636865636b20286e2075696e7429290a202020202872756e74696d6520286c696e656172206e20753131332075312929290a0a28646566696e652d726561642d6f6e6c792028636f73745f616e616c797369735f747970655f6c6f6f6b757020286e2075696e7429290a202020202872756e74696d6520286c696e656172206e2075312075342929290a0a28646566696e652d726561642d6f6e6c792028636f73745f616e616c797369735f766973697420286e2075696e7429290a202020202872756e74696d6520753129290a0a28646566696e652d726561642d6f6e6c792028636f73745f616e616c797369735f6974657261626c655f66756e6320286e2075696e7429290a202020202872756e74696d6520286c696e656172206e207532207531342929290a0a28646566696e652d726561642d6f6e6c792028636f73745f616e616c797369735f6f7074696f6e5f636f6e7320286e2075696e7429290a202020202872756e74696d6520753529290a0a28646566696e652d726561642d6f6e6c792028636f73745f616e616c797369735f6f7074696f6e5f636865636b20286e2075696e7429290a202020202872756e74696d6520753429290a0a28646566696e652d726561642d6f6e6c792028636f73745f616e616c797369735f62696e645f6e616d6520286e2075696e7429290a202020202872756e74696d6520286c696e656172206e207531207535392929290a0a28646566696e652d726561642d6f6e6c792028636f73745f616e616c797369735f6c6973745f6974656d735f636865636b20286e2075696e7429290a202020202872756e74696d6520286c696e656172206e2075322075342929290a0a28646566696e652d726561642d6f6e6c792028636f73745f616e616c797369735f636865636b5f7475706c655f67657420286e2075696e7429290a202020202872756e74696d6520286c6f676e206e2075312075322929290a0a28646566696e652d726561642d6f6e6c792028636f73745f616e616c797369735f636865636b5f7475706c655f6d6572676520286e2075696e7429290a202020202872756e74696d6520286e6c6f676e206e20753435207534392929290a0a28646566696e652d726561642d6f6e6c792028636f73745f616e616c797369735f636865636b5f7475706c655f636f6e7320286e2075696e7429290a202020202872756e74696d6520286e6c6f676e206e2075332075352929290a0a28646566696e652d726561642d6f6e6c792028636f73745f616e616c797369735f7475706c655f6974656d735f636865636b20286e2075696e7429290a202020202872756e74696d6520286c696e656172206e207531207532382929290a0a28646566696e652d726561642d6f6e6c792028636f73745f616e616c797369735f636865636b5f6c657420286e2075696e7429290a202020202872756e74696d6520286c696e656172206e207531207531302929290a0a28646566696e652d726561642d6f6e6c792028636f73745f616e616c797369735f6c6f6f6b75705f66756e6374696f6e20286e2075696e7429290a202020202872756e74696d652075313829290a0a28646566696e652d726561642d6f6e6c792028636f73745f616e616c797369735f6c6f6f6b75705f66756e6374696f6e5f747970657320286e2075696e7429290a202020202872756e74696d6520286c696e656172206e207531207532362929290a0a28646566696e652d726561642d6f6e6c792028636f73745f616e616c797369735f6c6f6f6b75705f7661726961626c655f636f6e737420286e2075696e7429290a202020202872756e74696d652075313529290a0a28646566696e652d726561642d6f6e6c792028636f73745f616e616c797369735f6c6f6f6b75705f7661726961626c655f646570746820286e2075696e7429290a202020202872756e74696d6520286e6c6f676e206e207531207531322929290a0a28646566696e652d726561642d6f6e6c792028636f73745f6173745f706172736520286e2075696e7429290a202020202872756e74696d6520286c696e656172206e20753237207538312929290a0a28646566696e652d726561642d6f6e6c792028636f73745f6173745f6379636c655f646574656374696f6e20286e2075696e7429290a202020202872756e74696d6520286c696e656172206e2075313431207537322929290a0a28646566696e652d726561642d6f6e6c792028636f73745f616e616c797369735f73746f7261676520286e2075696e7429290a202020207b0a202020202020202072756e74696d653a20286c696e656172206e20753220753934292c0a202020202020202077726974655f6c656e6774683a20286c696e656172206e207531207531292c0a202020202020202077726974655f636f756e743a2075312c0a2020202020202020726561645f636f756e743a2075312c0a2020202020202020726561645f6c656e6774683a2075310a202020207d290a0a28646566696e652d726561642d6f6e6c792028636f73745f616e616c797369735f7573655f74726169745f656e74727920286e2075696e7429290a202020207b0a202020202020202072756e74696d653a20286c696e656172206e2075392075363938292c0a202020202020202077726974655f6c656e6774683a20286c696e656172206e207531207531292c0a202020202020202077726974655f636f756e743a2075302c0a2020202020202020726561645f636f756e743a2075312c0a2020202020202020726561645f6c656e6774683a20286c696e656172206e207531207531290a202020207d290a0a28646566696e652d726561642d6f6e6c792028636f73745f616e616c797369735f66657463685f636f6e74726163745f656e74727920286e2075696e7429290a202020207b0a202020202020202072756e74696d653a20286c696e656172206e207531207531353136292c0a202020202020202077726974655f6c656e6774683a2075302c0a202020202020202077726974655f636f756e743a2075302c0a2020202020202020726561645f636f756e743a2075312c0a2020202020202020726561645f6c656e6774683a20286c696e656172206e207531207531290a202020207d290a0a28646566696e652d726561642d6f6e6c792028636f73745f616e616c797369735f6765745f66756e6374696f6e5f656e74727920286e2075696e7429290a202020207b0a202020202020202072756e74696d653a20286c696e656172206e20753738207531333037292c0a202020202020202077726974655f6c656e6774683a2075302c0a202020202020202077726974655f636f756e743a2075302c0a2020202020202020726561645f636f756e743a2075312c0a2020202020202020726561645f6c656e6774683a20286c696e656172206e207531207531290a202020207d290a0a28646566696e652d726561642d6f6e6c792028636f73745f6c6f6f6b75705f7661726961626c655f646570746820286e2075696e7429290a202020202872756e74696d6520286c696e656172206e2075312075312929290a0a28646566696e652d726561642d6f6e6c792028636f73745f6c6f6f6b75705f7661726961626c655f73697a6520286e2075696e7429290a202020202872756e74696d6520286c696e656172206e2075322075312929290a0a28646566696e652d726561642d6f6e6c792028636f73745f6c6f6f6b75705f66756e6374696f6e20286e2075696e7429290a202020202872756e74696d652075313629290a0a28646566696e652d726561642d6f6e6c792028636f73745f62696e645f6e616d6520286e2075696e7429290a202020202872756e74696d65207532313629290a0a28646566696e652d726561642d6f6e6c792028636f73745f696e6e65725f747970655f636865636b5f636f737420286e2075696e7429290a202020202872756e74696d6520286c696e656172206e2075322075352929290a0a28646566696e652d726561642d6f6e6c792028636f73745f757365725f66756e6374696f6e5f6170706c69636174696f6e20286e2075696e7429290a202020202872756e74696d6520286c696e656172206e207532362075352929290a0a28646566696e652d726561642d6f6e6c792028636f73745f6c657420286e2075696e7429290a202020202872756e74696d6520286c696e656172206e207531313720753137382929290a0a28646566696e652d726561642d6f6e6c792028636f73745f696620286e2075696e7429290a202020202872756e74696d65207531363829290a0a28646566696e652d726561642d6f6e6c792028636f73745f6173736572747320286e2075696e7429290a202020202872756e74696d65207531323829290a0a28646566696e652d726561642d6f6e6c792028636f73745f6d617020286e2075696e7429290a202020202872756e74696d6520286c696e656172206e2075313139382075333036372929290a0a28646566696e652d726561642d6f6e6c792028636f73745f66696c74657220286e2075696e7429290a202020202872756e74696d65207534303729290a0a28646566696e652d726561642d6f6e6c792028636f73745f6c656e20286e2075696e7429290a202020202872756e74696d65207534323929290a0a28646566696e652d726561642d6f6e6c792028636f73745f656c656d656e745f617420286e2075696e7429290a202020202872756e74696d65207534393829290a0a28646566696e652d726561642d6f6e6c792028636f73745f696e6465785f6f6620286e2075696e7429290a202020202872756e74696d6520286c696e656172206e20753120753231312929290a0a28646566696e652d726561642d6f6e6c792028636f73745f666f6c6420286e2075696e7429290a202020202872756e74696d65207534363029290a0a28646566696e652d726561642d6f6e6c792028636f73745f6c6973745f636f6e7320286e2075696e7429290a202020202872756e74696d6520286c696e656172206e2075313420753136342929290a0a28646566696e652d726561642d6f6e6c792028636f73745f747970655f70617273655f7374657020286e2075696e7429290a202020202872756e74696d6520753429290a0a28646566696e652d726561642d6f6e6c792028636f73745f7475706c655f67657420286e2075696e7429290a202020202872756e74696d6520286e6c6f676e206e2075342075313733362929290a0a28646566696e652d726561642d6f6e6c792028636f73745f7475706c655f6d6572676520286e2075696e7429290a202020202872756e74696d6520286c696e656172206e20753420753430382929290a0a28646566696e652d726561642d6f6e6c792028636f73745f7475706c655f636f6e7320286e2075696e7429290a202020202872756e74696d6520286e6c6f676e206e207531302075313837362929290a0a28646566696e652d726561642d6f6e6c792028636f73745f61646420286e2075696e7429290a202020202872756e74696d6520286c696e656172206e2075313120753132352929290a0a28646566696e652d726561642d6f6e6c792028636f73745f73756220286e2075696e7429290a202020202872756e74696d6520286c696e656172206e2075313120753132352929290a0a28646566696e652d726561642d6f6e6c792028636f73745f6d756c20286e2075696e7429290a202020202872756e74696d6520286c696e656172206e2075313320753132352929290a0a28646566696e652d726561642d6f6e6c792028636f73745f64697620286e2075696e7429290a202020202872756e74696d6520286c696e656172206e2075313320753132352929290a0a28646566696e652d726561642d6f6e6c792028636f73745f67657120286e2075696e7429290a202020202872756e74696d6520286c696e656172206e20753720753132382929290a0a28646566696e652d726561642d6f6e6c792028636f73745f6c657120286e2075696e7429290a202020202872756e74696d6520286c696e656172206e20753720753132382929290a0a28646566696e652d726561642d6f6e6c792028636f73745f6c6520286e2075696e7429290a202020202872756e74696d6520286c696e656172206e20753720753132382929290a0a28646566696e652d726561642d6f6e6c792028636f73745f676520286e2075696e7429290a202020202872756e74696d6520286c696e656172206e20753720753132382929290a0a28646566696e652d726561642d6f6e6c792028636f73745f696e745f6361737420286e2075696e7429290a202020202872756e74696d65207531333529290a0a28646566696e652d726561642d6f6e6c792028636f73745f6d6f6420286e2075696e7429290a202020202872756e74696d65207531343129290a0a28646566696e652d726561642d6f6e6c792028636f73745f706f7720286e2075696e7429290a202020202872756e74696d65207531343329290a0a28646566696e652d726561642d6f6e6c792028636f73745f737172746920286e2075696e7429290a202020202872756e74696d65207531343229290a0a28646566696e652d726561642d6f6e6c792028636f73745f6c6f673220286e2075696e7429290a202020202872756e74696d65207531333329290a0a28646566696e652d726561642d6f6e6c792028636f73745f786f7220286e2075696e7429290a202020202872756e74696d6520286c696e656172206e2075313520753132392929290a0a28646566696e652d726561642d6f6e6c792028636f73745f6e6f7420286e2075696e7429290a202020202872756e74696d65207531333829290a0a28646566696e652d726561642d6f6e6c792028636f73745f657120286e2075696e7429290a202020202872756e74696d6520286c696e656172206e20753720753135312929290a0a28646566696e652d726561642d6f6e6c792028636f73745f626567696e20286e2075696e7429290a202020202872756e74696d65207531353129290a0a28646566696e652d726561642d6f6e6c792028636f73745f6861736831363020286e2075696e7429290a202020202872756e74696d6520286c696e656172206e20753120753138382929290a0a28646566696e652d726561642d6f6e6c792028636f73745f73686132353620286e2075696e7429290a202020202872756e74696d6520286c696e656172206e20753120753130302929290a0a28646566696e652d726561642d6f6e6c792028636f73745f73686135313220286e2075696e7429290a202020202872756e74696d6520286c696e656172206e20753120753137362929290a0a28646566696e652d726561642d6f6e6c792028636f73745f7368613531327432353620286e2075696e7429290a202020202872756e74696d6520286c696e656172206e207531207535362929290a0a28646566696e652d726561642d6f6e6c792028636f73745f6b656363616b32353620286e2075696e7429290a202020202872756e74696d6520286c696e656172206e20753120753132372929290a0a28646566696e652d726561642d6f6e6c792028636f73745f736563703235366b317265636f76657220286e2075696e7429290a202020202872756e74696d6520753836353529290a0a28646566696e652d726561642d6f6e6c792028636f73745f736563703235366b3176657269667920286e2075696e7429290a202020202872756e74696d6520753833343929290a0a28646566696e652d726561642d6f6e6c792028636f73745f7072696e7420286e2075696e7429290a202020202872756e74696d6520286c696e656172206e207531352075313435382929290a0a28646566696e652d726561642d6f6e6c792028636f73745f736f6d655f636f6e7320286e2075696e7429290a202020202872756e74696d65207531393929290a0a28646566696e652d726561642d6f6e6c792028636f73745f6f6b5f636f6e7320286e2075696e7429290a202020202872756e74696d65207531393929290a0a28646566696e652d726561642d6f6e6c792028636f73745f6572725f636f6e7320286e2075696e7429290a202020202872756e74696d65207531393929290a0a28646566696e652d726561642d6f6e6c792028636f73745f64656661756c745f746f20286e2075696e7429290a202020202872756e74696d65207532363829290a0a28646566696e652d726561642d6f6e6c792028636f73745f756e777261705f72657420286e2075696e7429290a202020202872756e74696d65207532373429290a0a28646566696e652d726561642d6f6e6c792028636f73745f756e777261705f6572725f6f725f72657420286e2075696e7429290a202020202872756e74696d65207533303229290a0a28646566696e652d726561642d6f6e6c792028636f73745f69735f6f6b617920286e2075696e7429290a202020202872756e74696d65207532353829290a0a28646566696e652d726561642d6f6e6c792028636f73745f69735f6e6f6e6520286e2075696e7429290a202020202872756e74696d65207532313429290a0a28646566696e652d726561642d6f6e6c792028636f73745f69735f65727220286e2075696e7429290a202020202872756e74696d65207532343529290a0a28646566696e652d726561642d6f6e6c792028636f73745f69735f736f6d6520286e2075696e7429290a202020202872756e74696d65207531393529290a0a28646566696e652d726561642d6f6e6c792028636f73745f756e7772617020286e2075696e7429290a202020202872756e74696d65207532353229290a0a28646566696e652d726561642d6f6e6c792028636f73745f756e777261705f65727220286e2075696e7429290a202020202872756e74696d65207532343829290a0a28646566696e652d726561642d6f6e6c792028636f73745f7472795f72657420286e2075696e7429290a202020202872756e74696d65207532343029290a0a28646566696e652d726561642d6f6e6c792028636f73745f6d6174636820286e2075696e7429290a202020202872756e74696d65207532363429290a0a28646566696e652d726561642d6f6e6c792028636f73745f6f7220286e2075696e7429290a202020202872756e74696d6520286c696e656172206e20753320753132302929290a0a28646566696e652d726561642d6f6e6c792028636f73745f616e6420286e2075696e7429290a202020202872756e74696d6520286c696e656172206e20753320753132302929290a0a28646566696e652d726561642d6f6e6c792028636f73745f617070656e6420286e2075696e7429290a202020202872756e74696d6520286c696e656172206e2075373320753238352929290a0a28646566696e652d726561642d6f6e6c792028636f73745f636f6e63617420286e2075696e7429290a202020202872756e74696d6520286c696e656172206e2075333720753232302929290a0a28646566696e652d726561642d6f6e6c792028636f73745f61735f6d61785f6c656e20286e2075696e7429290a202020202872756e74696d65207534373529290a0a28646566696e652d726561642d6f6e6c792028636f73745f636f6e74726163745f63616c6c20286e2075696e7429290a202020202872756e74696d65207531333429290a0a28646566696e652d726561642d6f6e6c792028636f73745f636f6e74726163745f6f6620286e2075696e7429290a202020202872756e74696d652075313334303029290a0a28646566696e652d726561642d6f6e6c792028636f73745f7072696e636970616c5f6f6620286e2075696e7429290a202020202872756e74696d65207539383429290a0a28646566696e652d726561642d6f6e6c792028636f73745f61745f626c6f636b20286e2075696e7429290a202020207b0a202020202020202072756e74696d653a2075313332372c0a202020202020202077726974655f6c656e6774683a2075302c0a202020202020202077726974655f636f756e743a2075302c0a2020202020202020726561645f636f756e743a2075312c0a2020202020202020726561645f6c656e6774683a2075310a202020207d290a0a0a28646566696e652d726561642d6f6e6c792028636f73745f6c6f61645f636f6e747261637420286e2075696e7429290a202020207b0a202020202020202072756e74696d653a20286c696e656172206e20753120753830292c0a202020202020202077726974655f6c656e6774683a2075302c0a202020202020202077726974655f636f756e743a2075302c0a20202020202020203b3b2073657420746f20332062656361757365206f6620746865206173736f636961746564206d65746164617461206c6f6164730a2020202020202020726561645f636f756e743a2075332c0a2020202020202020726561645f6c656e6774683a20286c696e656172206e207531207531290a202020207d290a0a0a28646566696e652d726561642d6f6e6c792028636f73745f6372656174655f6d617020286e2075696e7429290a202020207b0a202020202020202072756e74696d653a20286c696e656172206e207531207531353634292c0a202020202020202077726974655f6c656e6774683a20286c696e656172206e207531207531292c0a202020202020202077726974655f636f756e743a2075312c0a2020202020202020726561645f636f756e743a2075302c0a2020202020202020726561645f6c656e6774683a2075300a202020207d290a0a0a28646566696e652d726561642d6f6e6c792028636f73745f6372656174655f76617220286e2075696e7429290a202020207b0a202020202020202072756e74696d653a20286c696e656172206e207537207532303235292c0a202020202020202077726974655f6c656e6774683a20286c696e656172206e207531207531292c0a202020202020202077726974655f636f756e743a2075322c0a2020202020202020726561645f636f756e743a2075302c0a2020202020202020726561645f6c656e6774683a2075300a202020207d290a0a0a28646566696e652d726561642d6f6e6c792028636f73745f6372656174655f6e667420286e2075696e7429290a202020207b0a202020202020202072756e74696d653a20286c696e656172206e207531207531353730292c0a202020202020202077726974655f6c656e6774683a20286c696e656172206e207531207531292c0a202020202020202077726974655f636f756e743a2075312c0a2020202020202020726561645f636f756e743a2075302c0a2020202020202020726561645f6c656e6774683a2075300a202020207d290a0a0a28646566696e652d726561642d6f6e6c792028636f73745f6372656174655f667420286e2075696e7429290a202020207b0a202020202020202072756e74696d653a2075313833312c0a202020202020202077726974655f6c656e6774683a2075312c0a202020202020202077726974655f636f756e743a2075322c0a2020202020202020726561645f636f756e743a2075302c0a2020202020202020726561645f6c656e6774683a2075300a202020207d290a0a0a28646566696e652d726561642d6f6e6c792028636f73745f66657463685f656e74727920286e2075696e7429290a202020207b0a202020202020202072756e74696d653a20286c696e656172206e207531207531303235292c0a202020202020202077726974655f6c656e6774683a2075302c0a202020202020202077726974655f636f756e743a2075302c0a2020202020202020726561645f636f756e743a2075312c0a2020202020202020726561645f6c656e6774683a20286c696e656172206e207531207531290a202020207d290a0a0a28646566696e652d726561642d6f6e6c792028636f73745f7365745f656e74727920286e2075696e7429290a202020207b0a202020202020202072756e74696d653a20286c696e656172206e207534207531383939292c0a202020202020202077726974655f6c656e6774683a20286c696e656172206e207531207531292c0a202020202020202077726974655f636f756e743a2075312c0a2020202020202020726561645f636f756e743a2075312c0a2020202020202020726561645f6c656e6774683a2075300a202020207d290a0a0a28646566696e652d726561642d6f6e6c792028636f73745f66657463685f76617220286e2075696e7429290a202020207b0a202020202020202072756e74696d653a20286c696e656172206e2075312075343638292c0a202020202020202077726974655f6c656e6774683a2075302c0a202020202020202077726974655f636f756e743a2075302c0a2020202020202020726561645f636f756e743a2075312c0a2020202020202020726561645f6c656e6774683a20286c696e656172206e207531207531290a202020207d290a0a0a28646566696e652d726561642d6f6e6c792028636f73745f7365745f76617220286e2075696e7429290a202020207b0a202020202020202072756e74696d653a20286c696e656172206e2075352075363535292c0a202020202020202077726974655f6c656e6774683a20286c696e656172206e207531207531292c0a202020202020202077726974655f636f756e743a2075312c0a2020202020202020726561645f636f756e743a2075312c0a2020202020202020726561645f6c656e6774683a2075300a202020207d290a0a0a28646566696e652d726561642d6f6e6c792028636f73745f636f6e74726163745f73746f7261676520286e2075696e7429290a202020207b0a202020202020202072756e74696d653a20286c696e656172206e20753131207537313635292c0a202020202020202077726974655f6c656e6774683a20286c696e656172206e207531207531292c0a202020202020202077726974655f636f756e743a2075312c0a2020202020202020726561645f636f756e743a2075302c0a2020202020202020726561645f6c656e6774683a2075300a202020207d290a0a0a28646566696e652d726561642d6f6e6c792028636f73745f626c6f636b5f696e666f20286e2075696e7429290a202020207b0a202020202020202072756e74696d653a2075363332312c0a202020202020202077726974655f6c656e6774683a2075302c0a202020202020202077726974655f636f756e743a2075302c0a2020202020202020726561645f636f756e743a2075312c0a2020202020202020726561645f6c656e6774683a2075310a202020207d290a0a28646566696e652d726561642d6f6e6c792028636f73745f7374785f62616c616e636520286e2075696e7429290a202020207b0a202020202020202072756e74696d653a2075343239342c0a202020202020202077726974655f6c656e6774683a2075302c0a202020202020202077726974655f636f756e743a2075302c0a2020202020202020726561645f636f756e743a2075312c0a2020202020202020726561645f6c656e6774683a2075310a202020207d290a0a28646566696e652d726561642d6f6e6c792028636f73745f7374785f7472616e7366657220286e2075696e7429290a202020207b0a202020202020202072756e74696d653a2075343634302c0a202020202020202077726974655f6c656e6774683a2075312c0a202020202020202077726974655f636f756e743a2075312c0a2020202020202020726561645f636f756e743a2075312c0a2020202020202020726561645f6c656e6774683a2075310a202020207d290a0a0a28646566696e652d726561642d6f6e6c792028636f73745f66745f6d696e7420286e2075696e7429290a202020207b0a202020202020202072756e74696d653a2075313437392c0a202020202020202077726974655f6c656e6774683a2075312c0a202020202020202077726974655f636f756e743a2075322c0a2020202020202020726561645f636f756e743a2075322c0a2020202020202020726561645f6c656e6774683a2075310a202020207d290a0a0a28646566696e652d726561642d6f6e6c792028636f73745f66745f7472616e7366657220286e2075696e7429290a202020207b0a202020202020202072756e74696d653a20753534392c0a202020202020202077726974655f6c656e6774683a2075312c0a202020202020202077726974655f636f756e743a2075322c0a2020202020202020726561645f636f756e743a2075322c0a2020202020202020726561645f6c656e6774683a2075310a202020207d290a0a0a28646566696e652d726561642d6f6e6c792028636f73745f66745f62616c616e636520286e2075696e7429290a202020207b0a202020202020202072756e74696d653a20753437392c0a202020202020202077726974655f6c656e6774683a2075302c0a202020202020202077726974655f636f756e743a2075302c0a2020202020202020726561645f636f756e743a2075312c0a2020202020202020726561645f6c656e6774683a2075310a202020207d290a0a0a28646566696e652d726561642d6f6e6c792028636f73745f6e66745f6d696e7420286e2075696e7429290a202020207b0a202020202020202072756e74696d653a20286c696e656172206e2075392075353735292c0a202020202020202077726974655f6c656e6774683a2075312c0a202020202020202077726974655f636f756e743a2075312c0a2020202020202020726561645f636f756e743a2075312c0a2020202020202020726561645f6c656e6774683a2075310a202020207d290a0a0a28646566696e652d726561642d6f6e6c792028636f73745f6e66745f7472616e7366657220286e2075696e7429290a202020207b0a202020202020202072756e74696d653a20286c696e656172206e2075392075353732292c0a202020202020202077726974655f6c656e6774683a2075312c0a202020202020202077726974655f636f756e743a2075312c0a2020202020202020726561645f636f756e743a2075312c0a2020202020202020726561645f6c656e6774683a2075310a202020207d290a0a28646566696e652d726561642d6f6e6c792028636f73745f6e66745f6f776e657220286e2075696e7429290a202020207b0a202020202020202072756e74696d653a20286c696e656172206e2075392075373935292c0a202020202020202077726974655f6c656e6774683a2075302c0a202020202020202077726974655f636f756e743a2075302c0a2020202020202020726561645f636f756e743a2075312c0a2020202020202020726561645f6c656e6774683a2075310a202020207d290a0a0a28646566696e652d726561642d6f6e6c792028636f73745f66745f6765745f737570706c7920286e2075696e7429290a202020207b0a202020202020202072756e74696d653a20753432302c0a202020202020202077726974655f6c656e6774683a2075302c0a202020202020202077726974655f636f756e743a2075302c0a2020202020202020726561645f636f756e743a2075312c0a2020202020202020726561645f6c656e6774683a2075310a202020207d290a0a0a28646566696e652d726561642d6f6e6c792028636f73745f66745f6275726e20286e2075696e7429290a202020207b0a202020202020202072756e74696d653a20753534392c0a202020202020202077726974655f6c656e6774683a2075312c0a202020202020202077726974655f636f756e743a2075322c0a2020202020202020726561645f636f756e743a2075322c0a2020202020202020726561645f6c656e6774683a2075310a202020207d290a0a0a28646566696e652d726561642d6f6e6c792028636f73745f6e66745f6275726e20286e2075696e7429290a202020207b0a202020202020202072756e74696d653a20286c696e656172206e2075392075353732292c0a202020202020202077726974655f6c656e6774683a2075312c0a202020202020202077726974655f636f756e743a2075312c0a2020202020202020726561645f636f756e743a2075312c0a2020202020202020726561645f6c656e6774683a2075310a202020207d290a0a0a28646566696e652d726561642d6f6e6c792028706f69736f6e5f6d6963726f626c6f636b20286e2075696e7429290a202020207b0a202020202020202072756e74696d653a207531373438352c0a202020202020202077726974655f6c656e6774683a2075312c0a202020202020202077726974655f636f756e743a2075312c0a2020202020202020726561645f636f756e743a2075312c0a2020202020202020726561645f6c656e6774683a2075310a202020207d290a0a28646566696e652d726561642d6f6e6c792028636f73745f627566665f746f5f696e745f6c6520286e2075696e7429290a202020202872756e74696d65207531343129290a0a28646566696e652d726561642d6f6e6c792028636f73745f627566665f746f5f75696e745f6c6520286e2075696e7429290a202020202872756e74696d65207531343129290a0a28646566696e652d726561642d6f6e6c792028636f73745f627566665f746f5f696e745f626520286e2075696e7429290a202020202872756e74696d65207531343129290a0a28646566696e652d726561642d6f6e6c792028636f73745f627566665f746f5f75696e745f626520286e2075696e7429290a202020202872756e74696d65207531343129290a0a28646566696e652d726561642d6f6e6c792028636f73745f69735f7374616e6461726420286e2075696e7429290a202020202872756e74696d65207531323729290a0a28646566696e652d726561642d6f6e6c792028636f73745f7072696e636970616c5f646573747275637420286e2075696e7429290a202020202872756e74696d65207533313429290a0a28646566696e652d726561642d6f6e6c792028636f73745f7072696e636970616c5f636f6e73747275637420286e2075696e7429290a202020202872756e74696d65207533393829290a0a28646566696e652d726561642d6f6e6c792028636f73745f737472696e675f746f5f696e7420286e2075696e7429290a202020202872756e74696d65207531363829290a0a28646566696e652d726561642d6f6e6c792028636f73745f737472696e675f746f5f75696e7420286e2075696e7429290a202020202872756e74696d65207531363829290a0a28646566696e652d726561642d6f6e6c792028636f73745f696e745f746f5f617363696920286e2075696e7429290a202020202872756e74696d65207531343729290a0a28646566696e652d726561642d6f6e6c792028636f73745f696e745f746f5f7574663820286e2075696e7429290a202020202872756e74696d65207531383129290a0a0a28646566696e652d726561642d6f6e6c792028636f73745f6275726e5f626c6f636b5f696e666f20286e2075696e7429290a202020207b0a202020202020202072756e74696d653a207539363437392c0a202020202020202077726974655f6c656e6774683a2075302c0a202020202020202077726974655f636f756e743a2075302c0a2020202020202020726561645f636f756e743a2075312c0a2020202020202020726561645f6c656e6774683a2075310a202020207d290a0a28646566696e652d726561642d6f6e6c792028636f73745f7374785f6163636f756e7420286e2075696e7429290a202020207b0a202020202020202072756e74696d653a2075343635342c0a202020202020202077726974655f6c656e6774683a2075302c0a202020202020202077726974655f636f756e743a2075302c0a2020202020202020726561645f636f756e743a2075312c0a2020202020202020726561645f6c656e6774683a2075310a202020207d290a0a28646566696e652d726561642d6f6e6c792028636f73745f736c69636520286e2075696e7429290a202020202872756e74696d65207534343829290a0a28646566696e652d726561642d6f6e6c792028636f73745f746f5f636f6e73656e7375735f6275666620286e2075696e7429290a202020202872756e74696d6520286c696e656172206e20753120753233332929290a0a28646566696e652d726561642d6f6e6c792028636f73745f66726f6d5f636f6e73656e7375735f6275666620286e2075696e7429290a202020202872756e74696d6520286e6c6f676e206e20753320753138352929290a0a28646566696e652d726561642d6f6e6c792028636f73745f7374785f7472616e736665725f6d656d6f20286e2075696e7429290a202020207b0a202020202020202072756e74696d653a2075343730392c0a202020202020202077726974655f6c656e6774683a2075312c0a202020202020202077726974655f636f756e743a2075312c0a2020202020202020726561645f636f756e743a2075312c0a2020202020202020726561645f6c656e6774683a2075310a202020207d290a0a28646566696e652d726561642d6f6e6c792028636f73745f7265706c6163655f617420286e2075696e7429290a202020202872756e74696d6520286c696e656172206e20753120753536312929290a0a28646566696e652d726561642d6f6e6c792028636f73745f61735f636f6e747261637420286e2075696e7429290a202020202872756e74696d65207531333829290a0a28646566696e652d726561642d6f6e6c792028636f73745f626974776973655f616e6420286e2075696e7429290a202020202872756e74696d6520286c696e656172206e2075313520753132392929290a0a28646566696e652d726561642d6f6e6c792028636f73745f626974776973655f6f7220286e2075696e7429290a202020202872756e74696d6520286c696e656172206e2075313520753132392929290a0a28646566696e652d726561642d6f6e6c792028636f73745f626974776973655f6e6f7420286e2075696e7429290a202020202872756e74696d65207531343729290a0a28646566696e652d726561642d6f6e6c792028636f73745f626974776973655f6c6566745f736869667420286e2075696e7429290a202020202872756e74696d65207531363729290a0a28646566696e652d726561642d6f6e6c792028636f73745f626974776973655f72696768745f736869667420286e2075696e7429290a202020202872756e74696d65207531363729290a", "status": "success", "tx_index": 2, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": {"maps": [], "epoch": "Epoch21", "functions": [{"args": [{"name": "n", "type": "uint128"}, {"name": "a", "type": "uint128"}, {"name": "b", "type": "uint128"}], "name": "linear", "access": "private", "outputs": {"type": "uint128"}}, {"args": [{"name": "n", "type": "uint128"}, {"name": "a", "type": "uint128"}, {"name": "b", "type": "uint128"}], "name": "logn", "access": "private", "outputs": {"type": "uint128"}}, {"args": [{"name": "n", "type": "uint128"}, {"name": "a", "type": "uint128"}, {"name": "b", "type": "uint128"}], "name": "nlogn", "access": "private", "outputs": {"type": "uint128"}}, {"args": [{"name": "r", "type": "uint128"}], "name": "runtime", "access": "private", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_add", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_analysis_bind_name", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_analysis_check_let", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_analysis_check_tuple_cons", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_analysis_check_tuple_get", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_analysis_check_tuple_merge", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_analysis_fetch_contract_entry", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_analysis_get_function_entry", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_analysis_iterable_func", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_analysis_list_items_check", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_analysis_lookup_function", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_analysis_lookup_function_types", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_analysis_lookup_variable_const", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_analysis_lookup_variable_depth", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_analysis_option_check", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_analysis_option_cons", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_analysis_storage", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_analysis_tuple_items_check", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_analysis_type_annotate", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_analysis_type_check", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_analysis_type_lookup", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_analysis_use_trait_entry", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_analysis_visit", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_and", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_append", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_as_contract", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_as_max_len", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_asserts", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_ast_cycle_detection", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_ast_parse", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_at_block", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_begin", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_bind_name", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_bitwise_and", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_bitwise_left_shift", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_bitwise_not", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_bitwise_or", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_bitwise_right_shift", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_block_info", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_buff_to_int_be", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_buff_to_int_le", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_buff_to_uint_be", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_buff_to_uint_le", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_burn_block_info", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_concat", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_contract_call", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_contract_of", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_contract_storage", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_create_ft", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_create_map", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_create_nft", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_create_var", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_default_to", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_div", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_element_at", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_eq", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_err_cons", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_fetch_entry", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_fetch_var", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_filter", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_fold", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_from_consensus_buff", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_ft_balance", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_ft_burn", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_ft_get_supply", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_ft_mint", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_ft_transfer", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_ge", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_geq", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_hash160", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_if", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_index_of", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_inner_type_check_cost", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_int_cast", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_int_to_ascii", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_int_to_utf8", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_is_err", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_is_none", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_is_okay", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_is_some", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_is_standard", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_keccak256", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_le", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_len", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_leq", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_let", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_list_cons", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_load_contract", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_log2", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_lookup_function", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_lookup_variable_depth", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_lookup_variable_size", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_map", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_match", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_mod", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_mul", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_nft_burn", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_nft_mint", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_nft_owner", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_nft_transfer", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_not", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_ok_cons", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_or", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_pow", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_principal_construct", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_principal_destruct", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_principal_of", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_print", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_replace_at", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_secp256k1recover", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_secp256k1verify", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_set_entry", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_set_var", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_sha256", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_sha512", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_sha512t256", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_slice", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_some_cons", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_sqrti", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_string_to_int", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_string_to_uint", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_stx_account", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_stx_balance", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_stx_transfer", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_stx_transfer_memo", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_sub", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_to_consensus_buff", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_try_ret", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_tuple_cons", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_tuple_get", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_tuple_merge", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_type_parse_step", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_unwrap", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_unwrap_err", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_unwrap_err_or_ret", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_unwrap_ret", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_user_function_application", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "cost_xor", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}, {"args": [{"name": "n", "type": "uint128"}], "name": "poison_microblock", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "read_count", "type": "uint128"}, {"name": "read_length", "type": "uint128"}, {"name": "runtime", "type": "uint128"}, {"name": "write_count", "type": "uint128"}, {"name": "write_length", "type": "uint128"}]}}}], "variables": [], "clarity_version": "Clarity2", "fungible_tokens": [], "non_fungible_tokens": []}, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}, {"txid": "0x9f9b928c0a43354802d546f1edffba605a1f47e359b8cf28a53f7351891a3e47", "raw_tx": "0x808000000004001dc27eba0247f8cc9575e7d45e50a0bc7e72427d00000000000000000000000000000000000198ec733c2bbd7e8621cdf50190313364bacc7be5a822ff0560c01caada2200d028e0853bcad27425098b8c2c9e02859cfb22247d3946f91f335d9f4812ddddfb010200000000050000000000000000000000000000000000000000000000000000000000000000051a2f438f17611dd028079f201915ccfcbcbfe49991", "status": "success", "tx_index": 3, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": null, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}, {"txid": "0xe143a658d386ccd67fb51a7a1eb84b4acffbbe17eadd1c9781c09325df14bff7", "raw_tx": "0x8080000000040093b082ee51d78faf5cc3d84a1c1591246c4965b00000000000000000000000000000012c00000a73d17c1549aa96eeef27d8502bc6c9c6ddbeaf7acebb4f3c40b8a6aeeaf644627bc00b65c75fdbd9afbe7170c58a9ce575a06aa46ef6add3e54b55ac2bb3b603020000000000051aad08341feab8ea788ef8045c343d21dcedc4483e00000000000003e800000000000000000000000000000000000000000000000000000000000000000000", "status": "success", "tx_index": 4, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": null, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}], "anchored_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "burn_block_hash": "0x6413a6c48b84d2c470cc83d7fa8f2703a9125aad6dfeb63d810090e4d4c38071", "burn_block_time": 1710344064, "index_block_hash": "0xd65032cfa1689e246bc97f6d351596b75902f4f23fc2ba6dd9984b894de06c93", "burn_block_height": 103, "parent_block_hash": "0x0000000000000000000000000000000000000000000000000000000000000000", "parent_microblock": "0x0000000000000000000000000000000000000000000000000000000000000000", "pox_v1_unlock_height": 104, "pox_v2_unlock_height": 106, "pox_v3_unlock_height": 109, "matured_miner_rewards": [], "parent_burn_block_hash": "0x0000000000000000000000000000000000000000000000000000000000000000", "parent_index_block_hash": "0x55c9861be5cff984a20ce6d99d4aa65941412889bdc665094136429b84f8c2ee", "parent_burn_block_height": 0, "confirmed_microblocks_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "parent_microblock_sequence": 0, "parent_burn_block_timestamp": 0} +106 2024-03-13 15:34:20.97639+00 /new_mempool_tx ["0x80800000000400ad08341feab8ea788ef8045c343d21dcedc4483e0000000000000000000000000000012c00018ebc106d9348b2638573b891aa0ebaad6303d8f18f801a3600e4175baf7d44d412d2af6ec95a541a9224a538a22b7c82055730f8293fcd91899eb3757d426f6003020000000000051a62b0e91cc557e583c3d1f9dfe468ace76d2f037400000000000003e800000000000000000000000000000000000000000000000000000000000000000000"] +107 2024-03-13 15:34:21.223926+00 /new_burn_block {"burn_amount": 20000, "burn_block_hash": "0x1c1fc089f0f7bac3bc406552a68ca6bc9a94fb4a2e3c00983cea8443fc48d3a8", "burn_block_height": 104, "reward_recipients": [], "reward_slot_holders": []} +108 2024-03-13 15:34:21.268523+00 /new_block {"events": [{"txid": "0x1d4ee5c1e5ebb75b5342bd8161da35cf8177a8bfd9c89f0fb0ae8af6e022aa06", "type": "stx_transfer_event", "committed": true, "event_index": 0, "stx_transfer_event": {"memo": "00000000000000000000000000000000000000000000000000000000000000000000", "amount": "1000", "sender": "ST2PGGD0ZXAWEMY4EZ025RD1X47EEVH287SQKA8BC", "recipient": "ST1HB1T8WRNBYB0Y3T7WXZS38NKKPTBR3EG9EPJKR"}}], "block_hash": "0xe5b2535769f697b58cabd0aa4b84a179c7f21a2c070e534842221eaae797cd31", "miner_txid": "0x1968c07fa2dacee89f3c16426c06b729f41a41692d9e0e6abd98bed9e0d39f4d", "block_height": 2, "transactions": [{"txid": "0x9b2fca07c2882ad6ce2e657cc16bd82a3327305b7644272e213806b0df656330", "raw_tx": "0x808000000004001dc27eba0247f8cc9575e7d45e50a0bc7e72427d0000000000000001000000000000000000003c82bbf1d2e080e29d2d55d71d8b76727ad11e28f708f8e95ce588f27d42f606711575ffa5932c687f4659485de8b1f8b8dc1f4e64e3c18ca0bce39089383010010200000000050000000000000000000000000000000000000000000000000000000000000000051a2f438f17611dd028079f201915ccfcbcbfe49991", "status": "success", "tx_index": 0, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": null, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}, {"txid": "0x1d4ee5c1e5ebb75b5342bd8161da35cf8177a8bfd9c89f0fb0ae8af6e022aa06", "raw_tx": "0x80800000000400ad08341feab8ea788ef8045c343d21dcedc4483e0000000000000000000000000000012c00018ebc106d9348b2638573b891aa0ebaad6303d8f18f801a3600e4175baf7d44d412d2af6ec95a541a9224a538a22b7c82055730f8293fcd91899eb3757d426f6003020000000000051a62b0e91cc557e583c3d1f9dfe468ace76d2f037400000000000003e800000000000000000000000000000000000000000000000000000000000000000000", "status": "success", "tx_index": 1, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": null, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}], "anchored_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "burn_block_hash": "0x1c1fc089f0f7bac3bc406552a68ca6bc9a94fb4a2e3c00983cea8443fc48d3a8", "burn_block_time": 1710344065, "index_block_hash": "0xd2a451cdb476931a9d3e5e5316cb2280ac41848e47ff5631d87000cfdca95cd4", "burn_block_height": 104, "parent_block_hash": "0x4a7fad40823c89c3529de996c3aacfc91d5c55c3b9880a8a2656743f558dbd74", "parent_microblock": "0x0000000000000000000000000000000000000000000000000000000000000000", "pox_v1_unlock_height": 104, "pox_v2_unlock_height": 106, "pox_v3_unlock_height": 109, "matured_miner_rewards": [], "parent_burn_block_hash": "0x6413a6c48b84d2c470cc83d7fa8f2703a9125aad6dfeb63d810090e4d4c38071", "parent_index_block_hash": "0xd65032cfa1689e246bc97f6d351596b75902f4f23fc2ba6dd9984b894de06c93", "parent_burn_block_height": 103, "confirmed_microblocks_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "parent_microblock_sequence": 0, "parent_burn_block_timestamp": 1710344064} +109 2024-03-13 15:34:22.264739+00 /new_burn_block {"burn_amount": 20000, "burn_block_hash": "0x4014f1e3f77f7d95dc6fbdb5a0ad1de128ecaa5eaa4dc7e9c9adf8a1ea1142c6", "burn_block_height": 105, "reward_recipients": [], "reward_slot_holders": []} +110 2024-03-13 15:34:22.310664+00 /new_block {"events": [{"txid": "0xa484e11b80d20ebf38315826ca0b5ec2648ac049be08fec3538cb6da7d65e9f7", "type": "stx_mint_event", "committed": true, "event_index": 1, "stx_mint_event": {"amount": "13888888889", "recipient": "SN3Z4MMRJ29FVZB38FGYPE94N1D8ZGF55R7YWH00A"}}, {"txid": "0xa484e11b80d20ebf38315826ca0b5ec2648ac049be08fec3538cb6da7d65e9f7", "type": "stx_mint_event", "committed": true, "event_index": 0, "stx_mint_event": {"amount": "13888888889", "recipient": "SN3Z4MMRJ29FVZB38FGYPE94N1D8ZGF55R7YWH00A"}}], "block_hash": "0x4edbbbd43c33e5df458174cf72818a411202c9ab3a4c2e2ebb1e1744c466c2a6", "miner_txid": "0x6f62b61c774bc081ccdad82ed2c2be51ad6ec985b8b51be7836122f559daaf98", "block_height": 3, "transactions": [{"txid": "0xa484e11b80d20ebf38315826ca0b5ec2648ac049be08fec3538cb6da7d65e9f7", "raw_tx": "0x808000000004001dc27eba0247f8cc9575e7d45e50a0bc7e72427d0000000000000002000000000000000000009399879452b80a198641202eff0ea3a955cc120617074a8b557e7a545ccb0e463eb81c87680205c648b001868c38ef9215a2447d154af77361402039b0c80575010200000000050000000000000000000000000000000000000000000000000000000000000000051a2f438f17611dd028079f201915ccfcbcbfe49991", "status": "success", "tx_index": 0, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": null, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}], "anchored_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "burn_block_hash": "0x4014f1e3f77f7d95dc6fbdb5a0ad1de128ecaa5eaa4dc7e9c9adf8a1ea1142c6", "burn_block_time": 1710344065, "index_block_hash": "0xa76eb2fd35adbb5ad672a2dea56f92b407bdddd2c15df39e86dd7f28a041277d", "burn_block_height": 105, "parent_block_hash": "0xe5b2535769f697b58cabd0aa4b84a179c7f21a2c070e534842221eaae797cd31", "parent_microblock": "0x0000000000000000000000000000000000000000000000000000000000000000", "pox_v1_unlock_height": 104, "pox_v2_unlock_height": 106, "pox_v3_unlock_height": 109, "matured_miner_rewards": [], "parent_burn_block_hash": "0x1c1fc089f0f7bac3bc406552a68ca6bc9a94fb4a2e3c00983cea8443fc48d3a8", "parent_index_block_hash": "0xd2a451cdb476931a9d3e5e5316cb2280ac41848e47ff5631d87000cfdca95cd4", "parent_burn_block_height": 104, "confirmed_microblocks_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "parent_microblock_sequence": 0, "parent_burn_block_timestamp": 1710344065} +111 2024-03-13 15:34:23.306533+00 /new_burn_block {"burn_amount": 10000, "burn_block_hash": "0x268c6eb783678a8137785cc43a3592f6e683ab779f1f0bc7131b5dfefaa2559f", "burn_block_height": 106, "reward_recipients": [], "reward_slot_holders": []} +112 2024-03-13 15:34:24.355208+00 /new_burn_block {"burn_amount": 20000, "burn_block_hash": "0x4e1428aa1464183b1458d10b72aacd39884e37956a84c13d7c502f99e211e08b", "burn_block_height": 107, "reward_recipients": [], "reward_slot_holders": []} +113 2024-03-13 15:34:24.427452+00 /new_block {"events": [], "block_hash": "0xd675ca9395f2bab6f7c15c46706dd60441e472043f5d53823c0d355e95a3a2ac", "miner_txid": "0xd0beeccfd8da867e59c6dac814e4ac99be991fa31a824769d8e60c0cb7ae1bad", "block_height": 4, "transactions": [{"txid": "0x5cfeb94713cf412e80da72532d33b2c8a1e48815b7687507ee532e5eff41c29c", "raw_tx": "0x80000000000400000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030200000000060205706f782d33000107b33b3b20506f5820746573746e657420636f6e7374616e74730a3b3b204d696e2f6d6178206e756d626572206f6620726577617264206379636c657320755354582063616e206265206c6f636b656420666f720a28646566696e652d636f6e7374616e74204d494e5f504f585f5245574152445f4359434c4553207531290a28646566696e652d636f6e7374616e74204d41585f504f585f5245574152445f4359434c455320753132290a0a3b3b2044656661756c74206c656e677468206f662074686520506f5820726567697374726174696f6e2077696e646f772c20696e206275726e636861696e20626c6f636b732e0a28646566696e652d636f6e7374616e7420505245504152455f4359434c455f4c454e47544820753530290a0a3b3b2044656661756c74206c656e677468206f662074686520506f5820726577617264206379636c652c20696e206275726e636861696e20626c6f636b732e0a28646566696e652d636f6e7374616e74205245574152445f4359434c455f4c454e475448207531303530290a0a3b3b2056616c69642076616c75657320666f72206275726e636861696e20616464726573732076657273696f6e732e0a3b3b20546865736520636f72726573706f6e6420746f20616464726573732068617368206d6f64657320696e20537461636b7320322e302e0a28646566696e652d636f6e7374616e7420414444524553535f56455253494f4e5f5032504b482030783030290a28646566696e652d636f6e7374616e7420414444524553535f56455253494f4e5f503253482030783031290a28646566696e652d636f6e7374616e7420414444524553535f56455253494f4e5f503257504b482030783032290a28646566696e652d636f6e7374616e7420414444524553535f56455253494f4e5f50325753482030783033290a0a3b3b20537461636b696e67207468726573686f6c64730a28646566696e652d636f6e7374616e7420535441434b494e475f5448524553484f4c445f3235207538303030290a28646566696e652d636f6e7374616e7420535441434b494e475f5448524553484f4c445f313030207532303030290a0a3b3b20546865202e706f782d3320636f6e74726163740a3b3b204572726f7220636f6465730a28646566696e652d636f6e7374616e74204552525f535441434b494e475f554e524541434841424c4520323535290a28646566696e652d636f6e7374616e74204552525f535441434b494e475f434f525255505445445f535441544520323534290a28646566696e652d636f6e7374616e74204552525f535441434b494e475f494e53554646494349454e545f46554e44532031290a28646566696e652d636f6e7374616e74204552525f535441434b494e475f494e56414c49445f4c4f434b5f504552494f442032290a28646566696e652d636f6e7374616e74204552525f535441434b494e475f414c52454144595f535441434b45442033290a28646566696e652d636f6e7374616e74204552525f535441434b494e475f4e4f5f535543485f5052494e434950414c2034290a28646566696e652d636f6e7374616e74204552525f535441434b494e475f455850495245442035290a28646566696e652d636f6e7374616e74204552525f535441434b494e475f5354585f4c4f434b45442036290a28646566696e652d636f6e7374616e74204552525f535441434b494e475f5045524d495353494f4e5f44454e4945442039290a28646566696e652d636f6e7374616e74204552525f535441434b494e475f5448524553484f4c445f4e4f545f4d4554203131290a28646566696e652d636f6e7374616e74204552525f535441434b494e475f504f585f414444524553535f494e5f555345203132290a28646566696e652d636f6e7374616e74204552525f535441434b494e475f494e56414c49445f504f585f41444452455353203133290a28646566696e652d636f6e7374616e74204552525f535441434b494e475f414c52454144595f52454a4543544544203137290a28646566696e652d636f6e7374616e74204552525f535441434b494e475f494e56414c49445f414d4f554e54203138290a28646566696e652d636f6e7374616e74204552525f4e4f545f414c4c4f574544203139290a28646566696e652d636f6e7374616e74204552525f535441434b494e475f414c52454144595f44454c454741544544203230290a28646566696e652d636f6e7374616e74204552525f44454c45474154494f4e5f455850495245535f445552494e475f4c4f434b203231290a28646566696e652d636f6e7374616e74204552525f44454c45474154494f4e5f544f4f5f4d5543485f4c4f434b4544203232290a28646566696e652d636f6e7374616e74204552525f44454c45474154494f4e5f504f585f414444525f5245515549524544203233290a28646566696e652d636f6e7374616e74204552525f494e56414c49445f53544152545f4255524e5f484549474854203234290a28646566696e652d636f6e7374616e74204552525f4e4f545f43555252454e545f535441434b4552203235290a28646566696e652d636f6e7374616e74204552525f535441434b5f455854454e445f4e4f545f4c4f434b4544203236290a28646566696e652d636f6e7374616e74204552525f535441434b5f494e4352454153455f4e4f545f4c4f434b4544203237290a28646566696e652d636f6e7374616e74204552525f44454c45474154494f4e5f4e4f5f5245574152445f534c4f54203238290a28646566696e652d636f6e7374616e74204552525f44454c45474154494f4e5f57524f4e475f5245574152445f534c4f54203239290a28646566696e652d636f6e7374616e74204552525f535441434b494e475f49535f44454c454741544544203330290a28646566696e652d636f6e7374616e74204552525f535441434b494e475f4e4f545f44454c454741544544203331290a0a3b3b20506f582064697361626c696e67207468726573686f6c642028612070657263656e74290a28646566696e652d636f6e7374616e7420504f585f52454a454354494f4e5f4652414354494f4e20753235290a0a3b3b2056616c69642076616c75657320666f72206275726e636861696e20616464726573732076657273696f6e732e0a3b3b20546865736520666972737420666f757220636f72726573706f6e6420746f20616464726573732068617368206d6f64657320696e20537461636b7320322e312c0a3b3b20616e642061726520646566696e656420696e20706f782d6d61696e6e65742e636c617220616e6420706f782d746573746e65742e636c61722028736f20746865790a3b3b2063616e6e6f7420626520646566696e6564206865726520616761696e292e0a3b3b2028646566696e652d636f6e7374616e7420414444524553535f56455253494f4e5f5032504b482030783030290a3b3b2028646566696e652d636f6e7374616e7420414444524553535f56455253494f4e5f503253482030783031290a3b3b2028646566696e652d636f6e7374616e7420414444524553535f56455253494f4e5f503257504b482030783032290a3b3b2028646566696e652d636f6e7374616e7420414444524553535f56455253494f4e5f50325753482030783033290a28646566696e652d636f6e7374616e7420414444524553535f56455253494f4e5f4e41544956455f503257504b482030783034290a28646566696e652d636f6e7374616e7420414444524553535f56455253494f4e5f4e41544956455f50325753482030783035290a28646566696e652d636f6e7374616e7420414444524553535f56455253494f4e5f4e41544956455f503254522030783036290a3b3b204b65657020746865736520636f6e7374616e747320696e206c6f636b2d7374657020776974682074686520616464726573732076657273696f6e2062756666732061626f76650a3b3b204d6178696d756d2076616c7565206f6620616e20616464726573732076657273696f6e20617320612075696e740a28646566696e652d636f6e7374616e74204d41585f414444524553535f56455253494f4e207536290a3b3b204d6178696d756d2076616c7565206f6620616e20616464726573732076657273696f6e20746861742068617320612032302d62797465206861736862797465730a3b3b2028307830302c20307830312c20307830322c20307830332c20616e64203078303420686176652032302d6279746520686173686279746573290a28646566696e652d636f6e7374616e74204d41585f414444524553535f56455253494f4e5f425546465f3230207534290a3b3b204d6178696d756d2076616c7565206f6620616e20616464726573732076657273696f6e20746861742068617320612033322d62797465206861736862797465730a3b3b20283078303520616e64203078303620686176652033322d6279746520686173686279746573290a28646566696e652d636f6e7374616e74204d41585f414444524553535f56455253494f4e5f425546465f3332207536290a0a3b3b2044617461207661727320746861742073746f7265206120636f7079206f6620746865206275726e636861696e20636f6e66696775726174696f6e2e0a3b3b20496d706c656d656e74656420617320646174612d766172732c20736f207468617420646966666572656e7420636f6e66696775726174696f6e732063616e2062650a3b3b207573656420696e20652e672e2074657374206861726e65737365732e0a28646566696e652d646174612d76617220706f782d707265706172652d6379636c652d6c656e6774682075696e7420505245504152455f4359434c455f4c454e475448290a28646566696e652d646174612d76617220706f782d7265776172642d6379636c652d6c656e6774682075696e74205245574152445f4359434c455f4c454e475448290a28646566696e652d646174612d76617220706f782d72656a656374696f6e2d6672616374696f6e2075696e7420504f585f52454a454354494f4e5f4652414354494f4e290a28646566696e652d646174612d7661722066697273742d6275726e636861696e2d626c6f636b2d6865696768742075696e74207530290a28646566696e652d646174612d76617220636f6e6669677572656420626f6f6c2066616c7365290a28646566696e652d646174612d7661722066697273742d322d312d7265776172642d6379636c652075696e74207530290a0a3b3b20546869732066756e6374696f6e2063616e206f6e6c792062652063616c6c6564206f6e63652c207768656e20697420626f6f74732075700a28646566696e652d7075626c696320287365742d6275726e636861696e2d706172616d6574657273202866697273742d6275726e2d6865696768742075696e74290a202020202020202020202020202020202020202020202020202020202020202020202020202020202028707265706172652d6379636c652d6c656e6774682075696e74290a2020202020202020202020202020202020202020202020202020202020202020202020202020202020287265776172642d6379636c652d6c656e6774682075696e74290a20202020202020202020202020202020202020202020202020202020202020202020202020202020202872656a656374696f6e2d6672616374696f6e2075696e74290a202020202020202020202020202020202020202020202020202020202020202020202020202020202028626567696e2d322d312d7265776172642d6379636c652075696e7429290a2020202028626567696e0a202020202020202028617373657274732120286e6f7420287661722d67657420636f6e6669677572656429292028657272204552525f4e4f545f414c4c4f57454429290a2020202020202020287661722d7365742066697273742d6275726e636861696e2d626c6f636b2d6865696768742066697273742d6275726e2d686569676874290a2020202020202020287661722d73657420706f782d707265706172652d6379636c652d6c656e67746820707265706172652d6379636c652d6c656e677468290a2020202020202020287661722d73657420706f782d7265776172642d6379636c652d6c656e677468207265776172642d6379636c652d6c656e677468290a2020202020202020287661722d73657420706f782d72656a656374696f6e2d6672616374696f6e2072656a656374696f6e2d6672616374696f6e290a2020202020202020287661722d7365742066697273742d322d312d7265776172642d6379636c6520626567696e2d322d312d7265776172642d6379636c65290a2020202020202020287661722d73657420636f6e666967757265642074727565290a2020202020202020286f6b207472756529290a290a0a3b3b2054686520537461636b696e67206c6f636b2d757020737461746520616e64206173736f636961746564206d657461646174612e0a3b3b205265636f7264732061726520696e73657274656420696e746f2074686973206d6170207669612060737461636b2d737478602c206064656c65676174652d737461636b2d737478602c2060737461636b2d657874656e64600a3b3b20206064656c65676174652d737461636b2d657874656e646020616e64206275726e636861696e207472616e73616374696f6e7320666f7220696e766f6b696e672060737461636b2d737478602c206574632e0a3b3b205265636f7264732077696c6c2062652064656c657465642066726f6d2074686973206d6170207768656e206175746f2d756e6c6f636b73206172652070726f6365737365640a3b3b0a3b3b2054686973206d61702064652d6e6f726d616c697a657320736f6d652073746174652066726f6d2074686520607265776172642d6379636c652d706f782d616464726573732d6c69737460206d61700a3b3b2020616e64207468652060706f782d336020636f6e747261637420747269657320746f206b656570207468697320737461746520696e2073796e63207769746820746865207265776172642d6379636c650a3b3b202073746174652e20546865206d616a6f7220696e76617269616e7473206f6620746869732060737461636b696e672d737461746560206d6170206172653a0a3b3b2020202028312920616e7920656e74727920696e20607265776172642d6379636c652d706f782d616464726573732d6c6973746020776974682060736f6d6520737461636b65726020706f696e747320746f2061207265616c2060737461636b696e672d7374617465600a3b3b202020202832292060737461636b696e672d73746174652e7265776172642d7365742d696e646578657360206d6174636865732074686520696e646578206f66207468617420607265776172642d6379636c652d706f782d616464726573732d6c697374600a3b3b2020202028332920616c6c2060737461636b696e672d73746174652e7265776172642d7365742d696e646578657360206d617463682074686520696e646578206f6620746865697220726577617264206379636c6520656e74726965730a3b3b202020202834292060737461636b696e672d73746174652e706f782d6164647260206d61746368657320607265776172642d6379636c652d706f782d616464726573732d6c6973742e706f782d61646472600a3b3b20202020283529206966207365742c20286c656e207265776172642d7365742d696e646578657329203d3d206c6f636b2d706572696f640a3b3b2020202028362920287265776172642d6379636c652d746f2d6275726e2d68656967687420282b206c6f636b2d706572696f642066697273742d7265776172642d6379636c652929203d3d202867657420756e6c6f636b2d68656967687420287374782d6163636f756e7420737461636b657229290a3b3b2020546865736520696e76617269616e7473206f6e6c7920686f6c64207768696c6520606375722d7265776172642d6379636c65203c20282b206c6f636b2d706572696f642066697273742d7265776172642d6379636c6529600a3b3b0a28646566696e652d6d617020737461636b696e672d73746174650a202020207b20737461636b65723a207072696e636970616c207d0a202020207b0a20202020202020203b3b204465736372697074696f6e206f662074686520756e6465726c79696e67206275726e636861696e206164647265737320746861742077696c6c0a20202020202020203b3b207265636569766520506f5827656420746f6b656e732e205472616e736c6174696e67207468697320696e746f20616e20616464726573730a20202020202020203b3b20646570656e6473206f6e20746865206275726e636861696e206265696e6720757365642e20205768656e20426974636f696e2069730a20202020202020203b3b20746865206275726e636861696e2c20746869732067657473207472616e736c6174656420696e746f2061207032706b682c20703273682c0a20202020202020203b3b20703277706b682d703273682c2070327773682d703273682c20703277706b682c2070327773682c206f722070327472205554584f2c0a20202020202020203b3b20646570656e64696e67206f6e207468652076657273696f6e2e2020546865206068617368627974657360206669656c64202a6d7573742a2062650a20202020202020203b3b20656974686572203230206279746573206f722033322062797465732c20646570656e64696e67206f6e20746865206f75747075742e0a2020202020202020706f782d616464723a207b2076657273696f6e3a2028627566662031292c206861736862797465733a20286275666620333229207d2c0a20202020202020203b3b20686f77206c6f6e6720746865207553545820617265206c6f636b65642c20696e20726577617264206379636c65732e0a20202020202020206c6f636b2d706572696f643a2075696e742c0a20202020202020203b3b20726577617264206379636c65207768656e207265776172647320626567696e0a202020202020202066697273742d7265776172642d6379636c653a2075696e742c0a20202020202020203b3b20696e646578657320696e2065616368207265776172642d736574206173736f6369617465642077697468207468697320757365722e0a20202020202020203b3b20746865736520696e646578657320617265206f6e6c792076616c6964206c6f6f6b696e6720666f72776172642066726f6d0a20202020202020203b3b20206066697273742d7265776172642d6379636c65602028692e652e2c207468657920646f206e6f7420636f72726573706f6e640a20202020202020203b3b2020746f20656e747269657320696e2074686520726577617264207365742074686174206d61792068617665206265656e2066726f6d0a20202020202020203b3b202070726576696f757320737461636b2d7374782063616c6c732c206f72207072696f7220746f20616e20657874656e64290a20202020202020207265776172642d7365742d696e64657865733a20286c6973742031322075696e74292c0a20202020202020203b3b207072696e636970616c206f66207468652064656c65676174652c20696620737461636b6572206861732064656c6567617465640a202020202020202064656c6567617465642d746f3a20286f7074696f6e616c207072696e636970616c290a202020207d0a290a0a3b3b2044656c65676174696f6e2072656c6174696f6e73686970730a28646566696e652d6d61702064656c65676174696f6e2d73746174650a202020207b20737461636b65723a207072696e636970616c207d0a202020207b0a2020202020202020616d6f756e742d757374783a2075696e742c20202020202020202020202020203b3b20686f77206d616e7920755354582064656c6567617465643f0a202020202020202064656c6567617465642d746f3a207072696e636970616c2c20202020202020203b3b2077686f206172652077652064656c65676174696e673f0a2020202020202020756e74696c2d6275726e2d68743a20286f7074696f6e616c2075696e74292c203b3b20686f77206c6f6e6720646f6573207468652064656c65676174696f6e206c6173743f0a20202020202020203b3b20646f6573207468652064656c6567617465205f6e6565645f20746f2075736520612073706563696669630a20202020202020203b3b20706f7820726563697069656e7420616464726573733f0a2020202020202020706f782d616464723a20286f7074696f6e616c207b2076657273696f6e3a2028627566662031292c206861736862797465733a20286275666620333229207d290a202020207d0a290a0a3b3b20616c6c6f77656420636f6e74726163742d63616c6c6572730a28646566696e652d6d617020616c6c6f77616e63652d636f6e74726163742d63616c6c6572730a202020207b2073656e6465723a207072696e636970616c2c20636f6e74726163742d63616c6c65723a207072696e636970616c207d0a202020207b20756e74696c2d6275726e2d68743a20286f7074696f6e616c2075696e7429207d290a0a3b3b20486f77206d616e7920755354582061726520737461636b656420696e206120676976656e20726577617264206379636c652e0a3b3b2055706461746564207768656e2061206e657720506f58206164647265737320697320726567697374657265642c206f72207768656e206d6f72652053545820617265206772616e7465640a3b3b20746f2069742e0a28646566696e652d6d6170207265776172642d6379636c652d746f74616c2d737461636b65640a202020207b207265776172642d6379636c653a2075696e74207d0a202020207b20746f74616c2d757374783a2075696e74207d0a290a0a3b3b20496e7465726e616c206d617020726561642062792074686520537461636b73206e6f646520746f2069746572617465207468726f75676820746865206c697374206f660a3b3b20506f582072657761726420616464726573736573206f6e2061207065722d7265776172642d6379636c652062617369732e0a28646566696e652d6d6170207265776172642d6379636c652d706f782d616464726573732d6c6973740a202020207b207265776172642d6379636c653a2075696e742c20696e6465783a2075696e74207d0a202020207b0a2020202020202020706f782d616464723a207b2076657273696f6e3a2028627566662031292c206861736862797465733a20286275666620333229207d2c0a2020202020202020746f74616c2d757374783a2075696e742c0a2020202020202020737461636b65723a20286f7074696f6e616c207072696e636970616c290a202020207d0a290a0a28646566696e652d6d6170207265776172642d6379636c652d706f782d616464726573732d6c6973742d6c656e0a202020207b207265776172642d6379636c653a2075696e74207d0a202020207b206c656e3a2075696e74207d0a290a0a3b3b20686f77206d75636820686173206265656e206c6f636b656420757020666f7220746869732061646472657373206265666f72650a3b3b202020636f6d6d697474696e673f0a3b3b2074686973206d617020616c6c6f777320737461636b65727320746f20737461636b20616d6f756e7473203c206d696e696d756d0a3b3b202020627920706179696e672074686520636f7374206f66206167677265676174696f6e20647572696e672074686520636f6d6d69740a28646566696e652d6d6170207061727469616c2d737461636b65642d62792d6379636c650a202020207b0a2020202020202020706f782d616464723a207b2076657273696f6e3a2028627566662031292c206861736862797465733a20286275666620333229207d2c0a20202020202020207265776172642d6379636c653a2075696e742c0a202020202020202073656e6465723a207072696e636970616c0a202020207d0a202020207b20737461636b65642d616d6f756e743a2075696e74207d0a290a0a3b3b2054686973206973206964656e746963616c20746f207061727469616c2d737461636b65642d62792d6379636c652c20627574206974732064617461206973206e657665722064656c657465642e0a3b3b204974206973207573656420746f207072657365727665206461746120666f7220646f776e73747265616d20636c69656e747320746f206f627365727665206167677265676174650a3b3b20636f6d6d6974732e202045616368206b65792f76616c7565207061697220696e2074686973206d61702069732073696d706c7920746865206c6173742076616c7565206f660a3b3b207061727469616c2d737461636b65642d62792d6379636c65207269676874206166746572206974207761732064656c657465642028736f2c2073756273657175656e742063616c6c730a3b3b20746f207468652060737461636b2d6167677265676174696f6e2d2a602066756e6374696f6e732077696c6c206f76657277726974652074686973292e0a28646566696e652d6d6170206c6f676765642d7061727469616c2d737461636b65642d62792d6379636c650a202020207b200a2020202020202020706f782d616464723a207b2076657273696f6e3a2028627566662031292c206861736862797465733a20286275666620333229207d2c0a20202020202020207265776172642d6379636c653a2075696e742c0a202020202020202073656e6465723a207072696e636970616c0a202020207d0a202020207b20737461636b65642d616d6f756e743a2075696e74207d0a290a0a3b3b20416d6f756e74206f66207553545820746861742072656a65637420506f582c20627920726577617264206379636c650a28646566696e652d6d617020737461636b696e672d72656a656374696f6e0a202020207b207265776172642d6379636c653a2075696e74207d0a202020207b20616d6f756e743a2075696e74207d0a290a0a3b3b2057686f2072656a656374656420696e20776869636820726577617264206379636c650a28646566696e652d6d617020737461636b696e672d72656a6563746f72730a202020207b20737461636b65723a207072696e636970616c2c207265776172642d6379636c653a2075696e74207d0a202020207b20616d6f756e743a2075696e74207d0a290a0a3b3b2047657474657220666f7220737461636b696e672d72656a6563746f72730a28646566696e652d726561642d6f6e6c7920286765742d706f782d72656a656374696f6e2028737461636b6572207072696e636970616c2920287265776172642d6379636c652075696e7429290a20202020286d61702d6765743f20737461636b696e672d72656a6563746f7273207b20737461636b65723a20737461636b65722c207265776172642d6379636c653a207265776172642d6379636c65207d29290a0a3b3b2048617320506f58206265656e2072656a656374656420696e2074686520676976656e20726577617264206379636c653f0a28646566696e652d726561642d6f6e6c79202869732d706f782d61637469766520287265776172642d6379636c652075696e7429290a20202020286c657420280a20202020202020202872656a6563742d766f7465730a2020202020202020202020202864656661756c742d746f0a2020202020202020202020202020202075300a202020202020202020202020202020202867657420616d6f756e7420286d61702d6765743f20737461636b696e672d72656a656374696f6e207b207265776172642d6379636c653a207265776172642d6379636c65207d292929290a20202020290a202020203b3b2028313030202a2072656a6563742d766f74657329202f207374782d6c69717569642d737570706c79203c20706f782d72656a656374696f6e2d6672616374696f6e0a20202020283c20282a20753130302072656a6563742d766f746573290a20202020202020282a20287661722d67657420706f782d72656a656374696f6e2d6672616374696f6e29207374782d6c69717569642d737570706c792929290a290a0a3b3b205768617427732074686520726577617264206379636c65206e756d626572206f6620746865206275726e636861696e20626c6f636b206865696768743f0a3b3b2057696c6c2072756e74696d652d61626f727420696620686569676874206973206c657373207468616e20746865206669727374206275726e636861696e20626c6f636b20287468697320697320696e74656e74696f6e616c290a28646566696e652d726561642d6f6e6c7920286275726e2d6865696768742d746f2d7265776172642d6379636c6520286865696768742075696e7429290a20202020282f20282d2068656967687420287661722d6765742066697273742d6275726e636861696e2d626c6f636b2d686569676874292920287661722d67657420706f782d7265776172642d6379636c652d6c656e6774682929290a0a3b3b205768617427732074686520626c6f636b2068656967687420617420746865207374617274206f66206120676976656e20726577617264206379636c653f0a28646566696e652d726561642d6f6e6c7920287265776172642d6379636c652d746f2d6275726e2d68656967687420286379636c652075696e7429290a20202020282b20287661722d6765742066697273742d6275726e636861696e2d626c6f636b2d6865696768742920282a206379636c6520287661722d67657420706f782d7265776172642d6379636c652d6c656e677468292929290a0a3b3b20576861742773207468652063757272656e7420506f5820726577617264206379636c653f0a28646566696e652d726561642d6f6e6c79202863757272656e742d706f782d7265776172642d6379636c65290a20202020286275726e2d6865696768742d746f2d7265776172642d6379636c65206275726e2d626c6f636b2d68656967687429290a0a3b3b2047657420746865205f63757272656e745f20506f5820737461636b696e67207072696e636970616c20696e666f726d6174696f6e2e202049662074686520696e666f726d6174696f6e0a3b3b20697320657870697265642c206f722069662074686572652773206e65766572206265656e2073756368206120737461636b65722c207468656e2072657475726e73206e6f6e652e0a28646566696e652d726561642d6f6e6c7920286765742d737461636b65722d696e666f2028737461636b6572207072696e636970616c29290a20202020286d6174636820286d61702d6765743f20737461636b696e672d7374617465207b20737461636b65723a20737461636b6572207d290a2020202020202020737461636b696e672d696e666f0a20202020202020202020202028696620283c3d20282b20286765742066697273742d7265776172642d6379636c6520737461636b696e672d696e666f292028676574206c6f636b2d706572696f6420737461636b696e672d696e666f2929202863757272656e742d706f782d7265776172642d6379636c6529290a202020202020202020202020202020203b3b2070726573656e742c20627574206c6f636b2068617320657870697265640a202020202020202020202020202020206e6f6e650a202020202020202020202020202020203b3b2070726573656e742c20616e64206c6f636b20686173206e6f7420657870697265640a2020202020202020202020202020202028736f6d6520737461636b696e672d696e666f290a202020202020202020202020290a20202020202020203b3b206e6f20737461746520617420616c6c0a20202020202020206e6f6e650a2020202029290a0a28646566696e652d726561642d6f6e6c792028636865636b2d63616c6c65722d616c6c6f776564290a20202020286f72202869732d65712074782d73656e64657220636f6e74726163742d63616c6c6572290a2020202020202020286c657420282863616c6c65722d616c6c6f7765640a20202020202020202020202020202020203b3b206966206e6f7420696e207468652063616c6c6572206d61702c2072657475726e2066616c73650a202020202020202020202020202020202028756e777261702120286d61702d6765743f20616c6c6f77616e63652d636f6e74726163742d63616c6c6572730a2020202020202020202020202020202020202020202020202020202020202020202020207b2073656e6465723a2074782d73656e6465722c20636f6e74726163742d63616c6c65723a20636f6e74726163742d63616c6c6572207d290a202020202020202020202020202020202020202020202020202066616c736529290a20202020202020202020202020202028657870697265732d61740a20202020202020202020202020202020203b3b20696620756e74696c2d6275726e2d6874206e6f74207365742c207468656e2072657475726e2074727565202862656361757365206e6f20657870697279290a202020202020202020202020202020202028756e7772617021202867657420756e74696c2d6275726e2d68742063616c6c65722d616c6c6f7765642920747275652929290a202020202020202020203b3b206973207468652063616c6c657220616c6c6f77616e636520657870697265643f0a2020202020202020202028696620283e3d206275726e2d626c6f636b2d68656967687420657870697265732d6174290a202020202020202020202020202066616c73650a202020202020202020202020202074727565292929290a0a28646566696e652d726561642d6f6e6c7920286765742d636865636b2d64656c65676174696f6e2028737461636b6572207072696e636970616c29290a20202020286c657420282864656c65676174696f6e2d696e666f20287472792120286d61702d6765743f2064656c65676174696f6e2d7374617465207b20737461636b65723a20737461636b6572207d292929290a2020202020203b3b2064696420746865206578697374696e672064656c65676174696f6e206578706972653f0a20202020202028696620286d61746368202867657420756e74696c2d6275726e2d68742064656c65676174696f6e2d696e666f290a2020202020202020202020202020202020756e74696c2d6275726e2d687420283e206275726e2d626c6f636b2d68656967687420756e74696c2d6275726e2d6874290a202020202020202020202020202020202066616c7365290a202020202020202020203b3b20697420657870697265642c2072657475726e206e6f6e650a202020202020202020206e6f6e650a202020202020202020203b3b2064656c65676174696f6e206973206163746976650a2020202020202020202028736f6d652064656c65676174696f6e2d696e666f292929290a0a3b3b20476574207468652073697a65206f6620746865207265776172642073657420666f72206120726577617264206379636c652e0a3b3b204e6f74652074686174207468697320646f6573205f6e6f745f2072657475726e206475706c696361746520506f58206164647265737365732e0a3b3b204e6f74652074686174207468697320616c736f205f77696c6c5f2072657475726e20506f58206164647265737365732074686174206172652062656e656174680a3b3b20746865206d696e696d756d207468726573686f6c64202d2d20692e652e20746865207468726573686f6c642063616e20696e63726561736520616674657220696e73657274696f6e2e0a3b3b205573656420696e7465726e616c6c792062792074686520537461636b73206e6f64652c2077686963682066696c74657273206f75742074686520656e74726965730a3b3b20696e2074686973206d617020746f2073656c65637420506f5820616464726573736573207769746820656e6f756768205354582e0a28646566696e652d726561642d6f6e6c7920286765742d7265776172642d7365742d73697a6520287265776172642d6379636c652075696e7429290a202020202864656661756c742d746f0a202020202020202075300a202020202020202028676574206c656e20286d61702d6765743f207265776172642d6379636c652d706f782d616464726573732d6c6973742d6c656e207b207265776172642d6379636c653a207265776172642d6379636c65207d292929290a0a3b3b20486f77206d616e792072656a656374696f6e20766f7465732068617665207765206265656e20616363756d756c6174696e6720666f7220746865206e65787420626c6f636b0a28646566696e652d726561642d6f6e6c7920286e6578742d6379636c652d72656a656374696f6e2d766f746573290a202020202864656661756c742d746f0a202020202020202075300a20202020202020202867657420616d6f756e7420286d61702d6765743f20737461636b696e672d72656a656374696f6e207b207265776172642d6379636c653a20282b207531202863757272656e742d706f782d7265776172642d6379636c652929207d292929290a0a3b3b2041646420612073696e676c6520506f58206164647265737320746f20612073696e676c6520726577617264206379636c652e0a3b3b205573656420746f206275696c64207570206120736574206f66207065722d7265776172642d6379636c6520506f58206164647265737365732e0a3b3b204e6f20636865636b696e672077696c6c20626520646f6e65202d2d20646f6e27742063616c6c206966207468697320506f58206164647265737320697320616c7265616479207265676973746572656420696e207468697320726577617264206379636c65210a3b3b2052657475726e732074686520696e64657820696e746f2074686520726577617264206379636c6520746861742074686520506f5820616464726573732069732073746f72656420746f0a28646566696e652d707269766174652028617070656e642d7265776172642d6379636c652d706f782d616464722028706f782d6164647220287475706c65202876657273696f6e202862756666203129292028686173686279746573202862756666203332292929290a20202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020287265776172642d6379636c652075696e74290a2020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202028616d6f756e742d757374782075696e74290a2020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202028737461636b657220286f7074696f6e616c207072696e636970616c2929290a20202020286c6574202828737a20286765742d7265776172642d7365742d73697a65207265776172642d6379636c652929290a2020202020202020286d61702d736574207265776172642d6379636c652d706f782d616464726573732d6c6973740a2020202020202020202020207b207265776172642d6379636c653a207265776172642d6379636c652c20696e6465783a20737a207d0a2020202020202020202020207b20706f782d616464723a20706f782d616464722c20746f74616c2d757374783a20616d6f756e742d757374782c20737461636b65723a20737461636b6572207d290a2020202020202020286d61702d736574207265776172642d6379636c652d706f782d616464726573732d6c6973742d6c656e0a2020202020202020202020207b207265776172642d6379636c653a207265776172642d6379636c65207d0a2020202020202020202020207b206c656e3a20282b20753120737a29207d290a20202020737a29290a0a3b3b20486f77206d616e7920755354582061726520737461636b65643f0a28646566696e652d726561642d6f6e6c7920286765742d746f74616c2d757374782d737461636b656420287265776172642d6379636c652075696e7429290a202020202864656661756c742d746f0a202020202020202075300a20202020202020202867657420746f74616c2d7573747820286d61702d6765743f207265776172642d6379636c652d746f74616c2d737461636b6564207b207265776172642d6379636c653a207265776172642d6379636c65207d2929290a290a0a3b3b2043616c6c656420696e7465726e616c6c7920627920746865206e6f646520746f2069746572617465207468726f75676820746865206c697374206f6620506f582061646472657373657320696e207468697320726577617264206379636c652e0a3b3b2052657475726e7320286f7074696f6e616c20287475706c652028706f782d61646472203c706f782d616464726573733e292028746f74616c2d75737478203c75696e743e2929290a28646566696e652d726561642d6f6e6c7920286765742d7265776172642d7365742d706f782d6164647265737320287265776172642d6379636c652075696e74292028696e6465782075696e7429290a20202020286d61702d6765743f207265776172642d6379636c652d706f782d616464726573732d6c697374207b207265776172642d6379636c653a207265776172642d6379636c652c20696e6465783a20696e646578207d29290a0a28646566696e652d707269766174652028666f6c642d756e6c6f636b2d7265776172642d6379636c6520287365742d696e6465782075696e74290a20202020202020202020202020202020202020202020202020202020202020202020202020202020202028646174612d7265732028726573706f6e7365207b206379636c653a2075696e742c0a20202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202066697273742d756e6c6f636b65642d6379636c653a2075696e742c0a202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020737461636b65723a207072696e636970616c0a202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020207d20696e742929290a20202020286c65742028286461746120287472792120646174612d72657329290a20202020202020202020286379636c652028676574206379636c65206461746129290a202020202020202020202866697273742d756e6c6f636b65642d6379636c6520286765742066697273742d756e6c6f636b65642d6379636c6520646174612929290a2020202020202020203b3b2069662063757272656e742d6379636c65206861736e277420726561636865642066697273742d756e6c6f636b65642d6379636c652c206a75737420636f6e74696e756520746f206e65787420697465720a20202020202020202028617373657274732120283e3d206379636c652066697273742d756e6c6f636b65642d6379636c652920286f6b20286d657267652064617461207b206379636c653a20282b207531206379636c6529207d2929290a202020202020202020286c65742028286379636c652d656e7472792028756e777261702d70616e696320286d61702d6765743f207265776172642d6379636c652d706f782d616464726573732d6c697374207b207265776172642d6379636c653a206379636c652c20696e6465783a207365742d696e646578207d2929290a202020202020202020202020202020286379636c652d656e7472792d75202867657420737461636b6572206379636c652d656e74727929290a202020202020202020202020202020286379636c652d656e7472792d746f74616c2d75737478202867657420746f74616c2d75737478206379636c652d656e74727929290a202020202020202020202020202020286379636c652d6c6173742d656e7472792d697820282d2028676574206c656e2028756e777261702d70616e696320286d61702d6765743f207265776172642d6379636c652d706f782d616464726573732d6c6973742d6c656e207b207265776172642d6379636c653a206379636c65207d2929292075312929290a202020202020202020202020286173736572747321202869732d6571206379636c652d656e7472792d752028736f6d65202867657420737461636b657220646174612929292028657272204552525f535441434b494e475f434f525255505445445f535441544529290a20202020202020202020202028696620286e6f74202869732d6571206379636c652d6c6173742d656e7472792d6978207365742d696e64657829290a202020202020202020202020202020203b3b20646f206120226d6f7665222069662074686520656e74727920746f2072656d6f76652069736e2774206c6173740a20202020202020202020202020202020286c65742028286d6f76652d656e7472792028756e777261702d70616e696320286d61702d6765743f207265776172642d6379636c652d706f782d616464726573732d6c697374207b207265776172642d6379636c653a206379636c652c20696e6465783a206379636c652d6c6173742d656e7472792d6978207d292929290a2020202020202020202020202020202020202020286d61702d736574207265776172642d6379636c652d706f782d616464726573732d6c6973740a20202020202020202020202020202020202020202020202020202020207b207265776172642d6379636c653a206379636c652c20696e6465783a207365742d696e646578207d0a20202020202020202020202020202020202020202020202020202020206d6f76652d656e747279290a2020202020202020202020202020202020202020286d61746368202867657420737461636b6572206d6f76652d656e74727929206d6f7665642d737461636b65720a2020202020202020202020202020202020202020203b3b20696620746865206d6f76656420656e7472792068616420616e206173736f63696174656420737461636b65722c20757064617465206974732073746174650a202020202020202020202020202020202020202020286c65742028286d6f7665642d73746174652028756e777261702d70616e696320286d61702d6765743f20737461636b696e672d7374617465207b20737461636b65723a206d6f7665642d737461636b6572207d2929290a2020202020202020202020202020202020202020202020202020203b3b2063616c63756c6174652074686520696e64657820696e746f20746865207265776172642d7365742d696e6465786573207468617420606379636c65602069732061740a202020202020202020202020202020202020202020202020202020286d6f7665642d6379636c652d696e64657820282d206379636c6520286765742066697273742d7265776172642d6379636c65206d6f7665642d73746174652929290a202020202020202020202020202020202020202020202020202020286d6f7665642d7265776172642d6c6973742028676574207265776172642d7365742d696e6465786573206d6f7665642d737461746529290a2020202020202020202020202020202020202020202020202020203b3b207265776172642d7365742d696e64657865735b6d6f7665642d6379636c652d696e6465785d203d207365742d696e6465782076696120736c6963653f2c20617070656e642c20636f6e6361742e0a202020202020202020202020202020202020202020202020202020287570646174652d6c6973742028756e777261702d70616e696320287265706c6163652d61743f206d6f7665642d7265776172642d6c697374206d6f7665642d6379636c652d696e646578207365742d696e646578292929290a2020202020202020202020202020202020202020202020202020286d61702d73657420737461636b696e672d7374617465207b20737461636b65723a206d6f7665642d737461636b6572207d0a2020202020202020202020202020202020202020202020202020202020202020202020286d65726765206d6f7665642d7374617465207b207265776172642d7365742d696e64657865733a207570646174652d6c697374207d2929290a2020202020202020202020202020202020202020203b3b206f74686572776973652c20776520646f6e2774206e65656420746f2075706461746520737461636b696e672d7374617465206166746572206d6f76650a2020202020202020202020202020202020202020207472756529290a202020202020202020202020202020203b3b206966206e6f74206d6f76696e672c206a757374206e6f6f700a2020202020202020202020202020202074727565290a2020202020202020202020203b3b20696e20616c6c2063617365732c207765206e6f77206e65656420746f2064656c65746520746865206c617374206c69737420656e7472790a202020202020202020202020286d61702d64656c657465207265776172642d6379636c652d706f782d616464726573732d6c697374207b207265776172642d6379636c653a206379636c652c20696e6465783a206379636c652d6c6173742d656e7472792d6978207d290a202020202020202020202020286d61702d736574207265776172642d6379636c652d706f782d616464726573732d6c6973742d6c656e207b207265776172642d6379636c653a206379636c65207d207b206c656e3a206379636c652d6c6173742d656e7472792d6978207d290a2020202020202020202020203b3b2066696e616c6c792c2075706461746520607265776172642d6379636c652d746f74616c2d737461636b6564600a202020202020202020202020286d61702d736574207265776172642d6379636c652d746f74616c2d737461636b6564207b207265776172642d6379636c653a206379636c65207d0a202020202020202020202020202020207b20746f74616c2d757374783a20282d202867657420746f74616c2d757374782028756e777261702d70616e696320286d61702d6765743f207265776172642d6379636c652d746f74616c2d737461636b6564207b207265776172642d6379636c653a206379636c65207d2929290a2020202020202020202020202020202020202020202020202020202020202020206379636c652d656e7472792d746f74616c2d7573747829207d290a202020202020202020202020286f6b20286d657267652064617461207b206379636c653a20282b207531206379636c65297d2029292929290a0a3b3b2054686973206d6574686f642069732063616c6c65642062792074686520537461636b7320626c6f636b2070726f636573736f72206469726563746c7920696e206f7264657220746f2068616e646c652074686520636f6e7472616374207374617465206d75746174696f6e730a3b3b20206173736f636961746564207769746820616e206561726c7920756e6c6f636b2e20546869732063616e206f6e6c7920626520696e766f6b65642062792074686520626c6f636b2070726f636573736f723a20697420697320707269766174652c20616e64206e6f206d6574686f64730a3b3b202066726f6d207468697320636f6e747261637420696e766f6b652069742e0a28646566696e652d70726976617465202868616e646c652d756e6c6f636b202875736572207072696e636970616c292028616d6f756e742d6c6f636b65642075696e742920286379636c652d746f2d756e6c6f636b2075696e7429290a20202020286c6574202828757365722d737461636b696e672d73746174652028756e777261702d70616e696320286d61702d6765743f20737461636b696e672d7374617465207b20737461636b65723a2075736572207d2929290a202020202020202020202866697273742d6379636c652d6c6f636b656420286765742066697273742d7265776172642d6379636c6520757365722d737461636b696e672d737461746529290a20202020202020202020287265776172642d7365742d696e64657865732028676574207265776172642d7365742d696e646578657320757365722d737461636b696e672d73746174652929290a20202020202020203b3b2069746572617465206f766572206561636820726577617264207365742074686520757365722069732061206d656d626572206f662c20616e642072656d6f7665207468656d2066726f6d2074686520736574732e206f6e6c79206170706c7920746f207265776172642073657473206166746572206379636c652d746f2d756e6c6f636b2e0a202020202020202028747279212028666f6c6420666f6c642d756e6c6f636b2d7265776172642d6379636c65207265776172642d7365742d696e646578657320286f6b207b206379636c653a2066697273742d6379636c652d6c6f636b65642c2066697273742d756e6c6f636b65642d6379636c653a206379636c652d746f2d756e6c6f636b2c20737461636b65723a2075736572207d2929290a20202020202020203b3b204e6f77207468617420776527766520636c65616e656420757020616c6c20746865207265776172642073657420656e747269657320666f722074686520757365722c2064656c657465207468652075736572277320737461636b696e672d73746174650a2020202020202020286d61702d64656c65746520737461636b696e672d7374617465207b20737461636b65723a2075736572207d290a2020202020202020286f6b20747275652929290a0a3b3b20416464206120506f58206164647265737320746f2074686520606379636c652d696e646578602d746820726577617264206379636c652c20696620606379636c652d696e64657860206973206265747765656e203020616e642074686520676976656e206e756d2d6379636c657320286578636c7573697665292e0a3b3b20417267756d656e74732061726520676976656e2061732061207475706c652c20736f20746869732066756e6374696f6e2063616e2062652028666f6c646564202e2e29276564206f6e746f2061206c697374206f662069747320617267756d656e74732e0a3b3b2055736564206279206164642d706f782d616464722d746f2d7265776172642d6379636c65732e0a3b3b204e6f20636865636b696e6720697320646f6e652e0a3b3b205468652072657475726e6564207475706c65206973207468652073616d6520617320696e7075747465642060706172616d73602c206275742074686520606960206669656c6420697320696e6372656d656e7465642069660a3b3b202074686520706f782d616464722077617320616464656420746f2074686520676976656e206379636c652e2020416c736f2c20607265776172642d7365742d696e6465786573602067726f777320746f20696e636c75646520616c6c0a3b3b20206f662074686520607265776172642d6379636c652d696e64657860206b6579207061727473206f662074686520607265776172642d6379636c652d706f782d616464726573732d6c697374602077686963682067657420616464656420627920746869732066756e6374696f6e2e0a3b3b202054686973207761792c207468652063616c6c6572206b6e6f7773207768696368206974656d7320696e206120676976656e20726577617264206379636c65277320506f582061646472657373206c69737420676f7420757064617465642e0a28646566696e652d7072697661746520286164642d706f782d616464722d746f2d6974682d7265776172642d6379636c6520286379636c652d696e6465782075696e74292028706172616d7320287475706c650a20202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202028706f782d6164647220287475706c65202876657273696f6e202862756666203129292028686173686279746573202862756666203332292929290a202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020287265776172642d7365742d696e646578657320286c6973742031322075696e7429290a2020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202866697273742d7265776172642d6379636c652075696e74290a202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020286e756d2d6379636c65732075696e74290a20202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202028737461636b657220286f7074696f6e616c207072696e636970616c29290a20202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202028616d6f756e742d757374782075696e74290a20202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202028692075696e74292929290a20202020286c65742028287265776172642d6379636c6520282b20286765742066697273742d7265776172642d6379636c6520706172616d73292028676574206920706172616d732929290a20202020202020202020286e756d2d6379636c65732028676574206e756d2d6379636c657320706172616d7329290a2020202020202020202028692028676574206920706172616d7329290a20202020202020202020287265776172642d7365742d696e6465782028696620283c2069206e756d2d6379636c6573290a202020202020202020202020286c6574202828746f74616c2d7573747820286765742d746f74616c2d757374782d737461636b6564207265776172642d6379636c6529290a202020202020202020202020202020202020287265776172642d696e6465780a202020202020202020202020202020202020202020203b3b207265636f726420686f77206d616e792075535458207468697320706f782d616464722077696c6c20737461636b20666f7220696e2074686520676976656e20726577617264206379636c650a2020202020202020202020202020202020202020202028617070656e642d7265776172642d6379636c652d706f782d616464720a2020202020202020202020202020202020202020202020202867657420706f782d6164647220706172616d73290a2020202020202020202020202020202020202020202020207265776172642d6379636c650a2020202020202020202020202020202020202020202020202867657420616d6f756e742d7573747820706172616d73290a2020202020202020202020202020202020202020202020202867657420737461636b657220706172616d73290a2020202020202020202020202020202020202020202020202929290a2020202020202020202020202020202020203b3b207570646174652072756e6e696e6720746f74616c0a202020202020202020202020202020202020286d61702d736574207265776172642d6379636c652d746f74616c2d737461636b65640a2020202020202020202020202020202020202020207b207265776172642d6379636c653a207265776172642d6379636c65207d0a2020202020202020202020202020202020202020207b20746f74616c2d757374783a20282b202867657420616d6f756e742d7573747820706172616d732920746f74616c2d7573747829207d290a20202020202020202020202020202020202028736f6d65207265776172642d696e64657829290a2020202020202020202020206e6f6e6529290a20202020202020202020286e6578742d692028696620283c2069206e756d2d6379636c65732920282b20692075312920692929290a202020207b0a2020202020202020706f782d616464723a202867657420706f782d6164647220706172616d73292c0a202020202020202066697273742d7265776172642d6379636c653a20286765742066697273742d7265776172642d6379636c6520706172616d73292c0a20202020202020206e756d2d6379636c65733a206e756d2d6379636c65732c0a2020202020202020616d6f756e742d757374783a202867657420616d6f756e742d7573747820706172616d73292c0a2020202020202020737461636b65723a202867657420737461636b657220706172616d73292c0a20202020202020207265776172642d7365742d696e64657865733a20286d617463680a2020202020202020202020207265776172642d7365742d696e646578206e65772028756e777261702d70616e6963202861732d6d61782d6c656e3f2028617070656e642028676574207265776172642d7365742d696e646578657320706172616d7329206e6577292075313229290a20202020202020202020202028676574207265776172642d7365742d696e646578657320706172616d7329292c0a2020202020202020693a206e6578742d690a202020207d29290a0a3b3b20416464206120506f58206164647265737320746f206120676976656e2073657175656e6365206f6620726577617264206379636c65206c697374732e0a3b3b204120506f5820616464726573732063616e20626520616464656420746f206174206d6f737420313220636f6e7365637574697665206379636c65732e0a3b3b204e6f20636865636b696e6720697320646f6e652e0a28646566696e652d7072697661746520286164642d706f782d616464722d746f2d7265776172642d6379636c65732028706f782d6164647220287475706c65202876657273696f6e202862756666203129292028686173686279746573202862756666203332292929290a20202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202866697273742d7265776172642d6379636c652075696e74290a2020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020286e756d2d6379636c65732075696e74290a202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202028616d6f756e742d757374782075696e74290a202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202028737461636b6572207072696e636970616c29290a2020286c65742028286379636c652d696e646578657320286c697374207530207531207532207533207534207535207536207537207538207539207531302075313129290a202020202020202028726573756c74732028666f6c64206164642d706f782d616464722d746f2d6974682d7265776172642d6379636c65206379636c652d696e64657865730a202020202020202020202020202020202020202020202020207b20706f782d616464723a20706f782d616464722c2066697273742d7265776172642d6379636c653a2066697273742d7265776172642d6379636c652c206e756d2d6379636c65733a206e756d2d6379636c65732c0a2020202020202020202020202020202020202020202020202020207265776172642d7365742d696e64657865733a20286c697374292c20616d6f756e742d757374783a20616d6f756e742d757374782c20693a2075302c20737461636b65723a2028736f6d6520737461636b657229207d29290a2020202020202020287265776172642d7365742d696e64657865732028676574207265776172642d7365742d696e646578657320726573756c74732929290a202020203b3b20466f72207361666574792c2061646420757020746865206e756d626572206f662074696d657320286164642d7072696e636970616c2d746f2d6974682d7265776172642d6379636c65292072657475726e7320312e0a202020203b3b204974205f73686f756c645f20626520657175616c20746f206e756d2d6379636c65732e0a20202020286173736572747321202869732d6571206e756d2d6379636c65732028676574206920726573756c747329292028657272204552525f535441434b494e475f554e524541434841424c4529290a20202020286173736572747321202869732d6571206e756d2d6379636c657320286c656e207265776172642d7365742d696e646578657329292028657272204552525f535441434b494e475f554e524541434841424c4529290a20202020286f6b207265776172642d7365742d696e64657865732929290a0a28646566696e652d7072697661746520286164642d706f782d7061727469616c2d737461636b65642d746f2d6974682d6379636c650a2020202020202020202020202020202020286379636c652d696e6465782075696e74290a202020202020202020202020202020202028706172616d73207b20706f782d616464723a207b2076657273696f6e3a2028627566662031292c206861736862797465733a20286275666620333229207d2c0a2020202020202020202020202020202020202020202020202020207265776172642d6379636c653a2075696e742c0a2020202020202020202020202020202020202020202020202020206e756d2d6379636c65733a2075696e742c0a202020202020202020202020202020202020202020202020202020616d6f756e742d757374783a2075696e74207d29290a2020286c6574202828706f782d6164647220202020202867657420706f782d616464722020202020706172616d7329290a2020202020202020286e756d2d6379636c657320202028676574206e756d2d6379636c6573202020706172616d7329290a2020202020202020287265776172642d6379636c652028676574207265776172642d6379636c6520706172616d7329290a202020202020202028616d6f756e742d7573747820202867657420616d6f756e742d757374782020706172616d732929290a20202020286c657420282863757272656e742d616d6f756e740a20202020202020202020202864656661756c742d746f2075300a202020202020202020202020202867657420737461636b65642d616d6f756e740a202020202020202020202020202020202020286d61702d6765743f207061727469616c2d737461636b65642d62792d6379636c65207b2073656e6465723a2074782d73656e6465722c20706f782d616464723a20706f782d616464722c207265776172642d6379636c653a207265776172642d6379636c65207d29292929290a20202020202028696620283e3d206379636c652d696e646578206e756d2d6379636c6573290a202020202020202020203b3b20646f206e6f742061646420746f206379636c6573203e3d206379636c652d696e6465780a2020202020202020202066616c73650a202020202020202020203b3b206f74686572776973652c2061646420746f20746865207061727469616c2d737461636b65642d62792d6379636c650a20202020202020202020286d61702d736574207061727469616c2d737461636b65642d62792d6379636c650a202020202020202020202020202020202020207b2073656e6465723a2074782d73656e6465722c20706f782d616464723a20706f782d616464722c207265776172642d6379636c653a207265776172642d6379636c65207d0a202020202020202020202020202020202020207b20737461636b65642d616d6f756e743a20282b20616d6f756e742d757374782063757272656e742d616d6f756e7429207d29290a2020202020203b3b2070726f6475636520746865206e65787420706172616d73207475706c650a2020202020207b20706f782d616464723a20706f782d616464722c0a20202020202020207265776172642d6379636c653a20282b207531207265776172642d6379636c65292c0a20202020202020206e756d2d6379636c65733a206e756d2d6379636c65732c0a2020202020202020616d6f756e742d757374783a20616d6f756e742d75737478207d2929290a0a3b3b20416464206120506f58206164647265737320746f206120676976656e2073657175656e6365206f66207061727469616c20726577617264206379636c65206c697374732e0a3b3b204120506f5820616464726573732063616e20626520616464656420746f206174206d6f737420313220636f6e7365637574697665206379636c65732e0a3b3b204e6f20636865636b696e6720697320646f6e652e0a28646566696e652d7072697661746520286164642d706f782d7061727469616c2d737461636b65642028706f782d6164647220287475706c65202876657273696f6e202862756666203129292028686173686279746573202862756666203332292929290a20202020202020202020202020202020202020202020202020202020202020202020202020202020202866697273742d7265776172642d6379636c652075696e74290a2020202020202020202020202020202020202020202020202020202020202020202020202020202020286e756d2d6379636c65732075696e74290a202020202020202020202020202020202020202020202020202020202020202020202020202020202028616d6f756e742d757374782075696e7429290a2020286c65742028286379636c652d696e646578657320286c69737420753020753120753220753320753420753520753620753720753820753920753130207531312929290a2020202028666f6c64206164642d706f782d7061727469616c2d737461636b65642d746f2d6974682d6379636c65206379636c652d696e64657865730a202020202020202020207b20706f782d616464723a20706f782d616464722c207265776172642d6379636c653a2066697273742d7265776172642d6379636c652c206e756d2d6379636c65733a206e756d2d6379636c65732c20616d6f756e742d757374783a20616d6f756e742d75737478207d290a202020207472756529290a0a3b3b205768617420697320746865206d696e696d756d206e756d626572206f66207553545820746f20626520737461636b656420696e2074686520676976656e20726577617264206379636c653f0a3b3b205573656420696e7465726e616c6c792062792074686520537461636b73206e6f64652c20616e642076697369626c65207075626c69636c792e0a28646566696e652d726561642d6f6e6c7920286765742d737461636b696e672d6d696e696d756d290a20202020282f207374782d6c69717569642d737570706c7920535441434b494e475f5448524553484f4c445f323529290a0a3b3b204973207468652061646472657373206d6f64652076616c696420666f72206120506f5820616464726573733f0a28646566696e652d726561642d6f6e6c792028636865636b2d706f782d616464722d76657273696f6e202876657273696f6e20286275666620312929290a20202020283c3d2028627566662d746f2d75696e742d62652076657273696f6e29204d41585f414444524553535f56455253494f4e29290a0a3b3b20497320746869732062756666657220746865207269676874206c656e67746820666f722074686520676976656e20506f5820616464726573733f0a28646566696e652d726561642d6f6e6c792028636865636b2d706f782d616464722d686173686279746573202876657273696f6e2028627566662031292920286861736862797465732028627566662033322929290a2020202028696620283c3d2028627566662d746f2d75696e742d62652076657273696f6e29204d41585f414444524553535f56455253494f4e5f425546465f3230290a20202020202020202869732d657120286c656e206861736862797465732920753230290a202020202020202028696620283c3d2028627566662d746f2d75696e742d62652076657273696f6e29204d41585f414444524553535f56455253494f4e5f425546465f3332290a2020202020202020202020202869732d657120286c656e206861736862797465732920753332290a20202020202020202020202066616c73652929290a0a3b3b2049732074686520676976656e206c6f636b20706572696f642076616c69643f0a28646566696e652d726561642d6f6e6c792028636865636b2d706f782d6c6f636b2d706572696f6420286c6f636b2d706572696f642075696e7429290a2020202028616e6420283e3d206c6f636b2d706572696f64204d494e5f504f585f5245574152445f4359434c4553290a202020202020202020283c3d206c6f636b2d706572696f64204d41585f504f585f5245574152445f4359434c45532929290a0a3b3b204576616c756174652069662061207061727469636970616e742063616e20737461636b20616e20616d6f756e74206f662053545820666f72206120676976656e20706572696f642e0a3b3b2054686973206d6574686f642069732064657369676e6564206173206120726561642d6f6e6c79206d6574686f6420736f20746861742069742063616e20626520757365642061730a3b3b206120736574206f6620677561726420636f6e646974696f6e7320616e6420616c736f206173206120726561642d6f6e6c79205250432063616c6c20746861742063616e2062650a3b3b20706572666f726d6564206265666f726568616e642e0a28646566696e652d726561642d6f6e6c79202863616e2d737461636b2d7374782028706f782d6164647220287475706c65202876657273696f6e202862756666203129292028686173686279746573202862756666203332292929290a2020202020202020202020202020202020202020202020202020202020202020202028616d6f756e742d757374782075696e74290a202020202020202020202020202020202020202020202020202020202020202020202866697273742d7265776172642d6379636c652075696e74290a20202020202020202020202020202020202020202020202020202020202020202020286e756d2d6379636c65732075696e7429290a202028626567696e0a202020203b3b206d696e696d756d2075535458206d757374206265206d65740a2020202028617373657274732120283c3d20286765742d737461636b696e672d6d696e696d756d2920616d6f756e742d75737478290a202020202020202020202020202028657272204552525f535441434b494e475f5448524553484f4c445f4e4f545f4d455429290a0a20202020286d696e696d616c2d63616e2d737461636b2d73747820706f782d6164647220616d6f756e742d757374782066697273742d7265776172642d6379636c65206e756d2d6379636c65732929290a0a3b3b204576616c756174652069662061207061727469636970616e742063616e20737461636b20616e20616d6f756e74206f662053545820666f72206120676976656e20706572696f642e0a3b3b2054686973206d6574686f642069732064657369676e6564206173206120726561642d6f6e6c79206d6574686f6420736f20746861742069742063616e20626520757365642061730a3b3b206120736574206f6620677561726420636f6e646974696f6e7320616e6420616c736f206173206120726561642d6f6e6c79205250432063616c6c20746861742063616e2062650a3b3b20706572666f726d6564206265666f726568616e642e0a28646566696e652d726561642d6f6e6c7920286d696e696d616c2d63616e2d737461636b2d7374780a2020202020202020202020202020202020202028706f782d6164647220287475706c65202876657273696f6e202862756666203129292028686173686279746573202862756666203332292929290a2020202020202020202020202020202020202028616d6f756e742d757374782075696e74290a202020202020202020202020202020202020202866697273742d7265776172642d6379636c652075696e74290a20202020202020202020202020202020202020286e756d2d6379636c65732075696e7429290a202028626567696e0a202020203b3b20616d6f756e74206d7573742062652076616c69640a2020202028617373657274732120283e20616d6f756e742d75737478207530290a202020202020202020202020202028657272204552525f535441434b494e475f494e56414c49445f414d4f554e5429290a0a202020203b3b2073656e646572207072696e636970616c206d757374206e6f7420686176652072656a656374656420696e2074686973207570636f6d696e6720726577617264206379636c650a20202020286173736572747321202869732d6e6f6e6520286765742d706f782d72656a656374696f6e2074782d73656e6465722066697273742d7265776172642d6379636c6529290a202020202020202020202020202028657272204552525f535441434b494e475f414c52454144595f52454a454354454429290a0a202020203b3b206c6f636b20706572696f64206d75737420626520696e2061636365707461626c652072616e67652e0a202020202861737365727473212028636865636b2d706f782d6c6f636b2d706572696f64206e756d2d6379636c6573290a202020202020202020202020202028657272204552525f535441434b494e475f494e56414c49445f4c4f434b5f504552494f4429290a0a202020203b3b20616464726573732076657273696f6e206d7573742062652076616c69640a202020202861737365727473212028636865636b2d706f782d616464722d76657273696f6e20286765742076657273696f6e20706f782d6164647229290a202020202020202020202020202028657272204552525f535441434b494e475f494e56414c49445f504f585f4144445245535329290a0a202020203b3b206164647265737320686173686279746573206d7573742062652076616c696420666f72207468652076657273696f6e0a202020202861737365727473212028636865636b2d706f782d616464722d68617368627974657320286765742076657273696f6e20706f782d616464722920286765742068617368627974657320706f782d6164647229290a202020202020202020202020202028657272204552525f535441434b494e475f494e56414c49445f504f585f4144445245535329290a0a20202020286f6b20747275652929290a0a3b3b205265766f6b6520636f6e74726163742d63616c6c657220617574686f72697a6174696f6e20746f2063616c6c20737461636b696e67206d6574686f64730a28646566696e652d7075626c69632028646973616c6c6f772d636f6e74726163742d63616c6c6572202863616c6c6572207072696e636970616c29290a202028626567696e0a20202020286173736572747321202869732d65712074782d73656e64657220636f6e74726163742d63616c6c6572290a202020202020202020202020202028657272204552525f535441434b494e475f5045524d495353494f4e5f44454e49454429290a20202020286f6b20286d61702d64656c65746520616c6c6f77616e63652d636f6e74726163742d63616c6c657273207b2073656e6465723a2074782d73656e6465722c20636f6e74726163742d63616c6c65723a2063616c6c6572207d292929290a0a3b3b2047697665206120636f6e74726163742d63616c6c657220617574686f72697a6174696f6e20746f2063616c6c20737461636b696e67206d6574686f64730a3b3b20206e6f726d616c6c792c20737461636b696e67206d6574686f6473206d6179206f6e6c7920626520696e766f6b6564206279205f6469726563745f207472616e73616374696f6e730a3b3b20202028692e652e2c207468652074782d73656e6465722069737375657320612064697265637420636f6e74726163742d63616c6c20746f2074686520737461636b696e67206d6574686f6473290a3b3b202062792069737375696e6720616e20616c6c6f77616e63652c207468652074782d73656e646572206d61792063616c6c207468726f7567682074686520616c6c6f77656420636f6e74726163740a28646566696e652d7075626c69632028616c6c6f772d636f6e74726163742d63616c6c6572202863616c6c6572207072696e636970616c292028756e74696c2d6275726e2d687420286f7074696f6e616c2075696e742929290a202028626567696e0a20202020286173736572747321202869732d65712074782d73656e64657220636f6e74726163742d63616c6c6572290a202020202020202020202020202028657272204552525f535441434b494e475f5045524d495353494f4e5f44454e49454429290a20202020286f6b20286d61702d73657420616c6c6f77616e63652d636f6e74726163742d63616c6c6572730a2020202020202020202020202020207b2073656e6465723a2074782d73656e6465722c20636f6e74726163742d63616c6c65723a2063616c6c6572207d0a2020202020202020202020202020207b20756e74696c2d6275726e2d68743a20756e74696c2d6275726e2d6874207d292929290a0a3b3b204c6f636b20757020736f6d65207553545820666f7220737461636b696e672120204e6f746520746861742074686520676976656e20616d6f756e74206865726520697320696e206d6963726f2d535458202875535458292e0a3b3b20546865205354582077696c6c206265206c6f636b656420666f722074686520676976656e206e756d626572206f6620726577617264206379636c657320286c6f636b2d706572696f64292e0a3b3b2054686973206973207468652073656c662d7365727669636520696e746572666163652e202074782d73656e6465722077696c6c2062652074686520537461636b65722e0a3b3b0a3b3b202a2054686520676976656e20737461636b65722063616e6e6f742063757272656e746c7920626520737461636b696e672e0a3b3b202a20596f752077696c6c206e65656420746865206d696e696d756d2075535458207468726573686f6c642e2020546869732077696c6c2062652064657465726d696e656420627920286765742d737461636b696e672d6d696e696d756d290a3b3b206174207468652074696d652074686973206d6574686f642069732063616c6c65642e0a3b3b202a20596f75206d6179206e65656420746f20696e6372656173652074686520616d6f756e74206f662075535458206c6f636b6564207570206c617465722c2073696e636520746865206d696e696d756d2075535458207468726573686f6c640a3b3b206d617920696e637265617365206265747765656e20726577617264206379636c65732e0a3b3b202a2054686520537461636b65722077696c6c2072656365697665207265776172647320696e2074686520726577617264206379636c6520666f6c6c6f77696e67206073746172742d6275726e2d6874602e0a3b3b20496d706f7274616e746c792c206073746172742d6275726e2d687460206d6179206e6f74206265206675727468657220696e746f2074686520667574757265207468616e20746865206e65787420726577617264206379636c652c0a3b3b20616e6420696e206d6f73742063617365732073686f756c642062652073657420746f207468652063757272656e74206275726e20626c6f636b206865696768742e0a3b3b0a3b3b2054686520746f6b656e732077696c6c20756e6c6f636b20616e642062652072657475726e656420746f2074686520537461636b6572202874782d73656e64657229206175746f6d61746963616c6c792e0a28646566696e652d7075626c69632028737461636b2d7374782028616d6f756e742d757374782075696e74290a202020202020202020202020202020202020202020202020202028706f782d6164647220287475706c65202876657273696f6e202862756666203129292028686173686279746573202862756666203332292929290a20202020202020202020202020202020202020202020202020202873746172742d6275726e2d68742075696e74290a2020202020202020202020202020202020202020202020202020286c6f636b2d706572696f642075696e7429290a202020203b3b207468697320737461636b6572277320666972737420726577617264206379636c6520697320746865205f6e6578745f20726577617264206379636c650a20202020286c657420282866697273742d7265776172642d6379636c6520282b207531202863757272656e742d706f782d7265776172642d6379636c652929290a20202020202020202020287370656369666965642d7265776172642d6379636c6520282b20753120286275726e2d6865696768742d746f2d7265776172642d6379636c652073746172742d6275726e2d6874292929290a2020202020203b3b207468652073746172742d6275726e2d6874206d75737420726573756c7420696e20746865206e65787420726577617264206379636c652c20646f206e6f7420616c6c6f7720737461636b6572730a2020202020203b3b2020746f2022706f73742d64617465222074686569722060737461636b2d73747860207472616e73616374696f6e0a202020202020286173736572747321202869732d65712066697273742d7265776172642d6379636c65207370656369666965642d7265776172642d6379636c65290a2020202020202020202020202020202028657272204552525f494e56414c49445f53544152545f4255524e5f48454947485429290a0a2020202020203b3b206d7573742062652063616c6c6564206469726563746c79206279207468652074782d73656e646572206f7220627920616e20616c6c6f77656420636f6e74726163742d63616c6c65720a2020202020202861737365727473212028636865636b2d63616c6c65722d616c6c6f776564290a2020202020202020202020202020202028657272204552525f535441434b494e475f5045524d495353494f4e5f44454e49454429290a0a2020202020203b3b2074782d73656e646572207072696e636970616c206d757374206e6f7420626520737461636b696e670a202020202020286173736572747321202869732d6e6f6e6520286765742d737461636b65722d696e666f2074782d73656e64657229290a202020202020202028657272204552525f535441434b494e475f414c52454144595f535441434b454429290a0a2020202020203b3b2074782d73656e646572206d757374206e6f742062652064656c65676174696e670a202020202020286173736572747321202869732d6e6f6e6520286765742d636865636b2d64656c65676174696f6e2074782d73656e64657229290a202020202020202028657272204552525f535441434b494e475f414c52454144595f44454c45474154454429290a0a2020202020203b3b2074686520537461636b6572206d75737420686176652073756666696369656e7420756e6c6f636b65642066756e64730a20202020202028617373657274732120283e3d20287374782d6765742d62616c616e63652074782d73656e6465722920616d6f756e742d75737478290a202020202020202028657272204552525f535441434b494e475f494e53554646494349454e545f46554e445329290a0a2020202020203b3b20656e73757265207468617420737461636b696e672063616e20626520706572666f726d65640a2020202020202874727921202863616e2d737461636b2d73747820706f782d6164647220616d6f756e742d757374782066697273742d7265776172642d6379636c65206c6f636b2d706572696f6429290a0a2020202020203b3b2072656769737465722074686520506f58206164647265737320776974682074686520616d6f756e7420737461636b65640a202020202020286c65742028287265776172642d7365742d696e646578657320287472792120286164642d706f782d616464722d746f2d7265776172642d6379636c657320706f782d616464722066697273742d7265776172642d6379636c65206c6f636b2d706572696f6420616d6f756e742d757374782074782d73656e646572292929290a202020202020202020203b3b2061646420737461636b6572207265636f72640a202020202020202020286d61702d73657420737461636b696e672d73746174650a20202020202020202020207b20737461636b65723a2074782d73656e646572207d0a20202020202020202020207b20706f782d616464723a20706f782d616464722c0a202020202020202020202020207265776172642d7365742d696e64657865733a207265776172642d7365742d696e64657865732c0a2020202020202020202020202066697273742d7265776172642d6379636c653a2066697273742d7265776172642d6379636c652c0a202020202020202020202020206c6f636b2d706572696f643a206c6f636b2d706572696f642c0a2020202020202020202020202064656c6567617465642d746f3a206e6f6e65207d290a0a202020202020202020203b3b2072657475726e20746865206c6f636b2d757020696e666f726d6174696f6e2c20736f20746865206e6f64652063616e2061637475616c6c79206361727279206f757420746865206c6f636b2e0a20202020202020202020286f6b207b20737461636b65723a2074782d73656e6465722c206c6f636b2d616d6f756e743a20616d6f756e742d757374782c20756e6c6f636b2d6275726e2d6865696768743a20287265776172642d6379636c652d746f2d6275726e2d68656967687420282b2066697273742d7265776172642d6379636c65206c6f636b2d706572696f642929207d292929290a0a28646566696e652d7075626c696320287265766f6b652d64656c65676174652d737478290a202028626567696e0a202020203b3b206d7573742062652063616c6c6564206469726563746c79206279207468652074782d73656e646572206f7220627920616e20616c6c6f77656420636f6e74726163742d63616c6c65720a202020202861737365727473212028636865636b2d63616c6c65722d616c6c6f776564290a202020202020202020202020202028657272204552525f535441434b494e475f5045524d495353494f4e5f44454e49454429290a20202020286f6b20286d61702d64656c6574652064656c65676174696f6e2d7374617465207b20737461636b65723a2074782d73656e646572207d292929290a0a3b3b2044656c656761746520746f206064656c65676174652d746f6020746865206162696c69747920746f20737461636b2066726f6d206120676976656e20616464726573732e0a3b3b202054686973206d6574686f64205f646f6573206e6f745f206c6f636b207468652066756e64732c207261746865722c20697420616c6c6f7773207468652064656c65676174650a3b3b2020746f2069737375652074686520737461636b696e67206c6f636b2e0a3b3b205468652063616c6c6572207370656369666965733a0a3b3b2020202a20616d6f756e742d757374783a2074686520746f74616c20616d6f756e74206f662075737478207468652064656c6567617465206d617920626520616c6c6f77656420746f206c6f636b0a3b3b2020202a20756e74696c2d6275726e2d68743a20616e206f7074696f6e616c206275726e2068656967687420617420776869636820746869732064656c65676174696f6e20657870697265730a3b3b2020202a20706f782d616464723a20616e206f7074696f6e616c206164647265737320746f20776869636820616e792072657761726473202a6d7573742a2062652073656e740a28646566696e652d7075626c6963202864656c65676174652d7374782028616d6f756e742d757374782075696e74290a20202020202020202020202020202020202020202020202020202020202864656c65676174652d746f207072696e636970616c290a202020202020202020202020202020202020202020202020202020202028756e74696c2d6275726e2d687420286f7074696f6e616c2075696e7429290a202020202020202020202020202020202020202020202020202020202028706f782d6164647220286f7074696f6e616c207b2076657273696f6e3a2028627566662031292c0a2020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020206861736862797465733a20286275666620333229207d2929290a2020202028626567696e0a2020202020203b3b206d7573742062652063616c6c6564206469726563746c79206279207468652074782d73656e646572206f7220627920616e20616c6c6f77656420636f6e74726163742d63616c6c65720a2020202020202861737365727473212028636865636b2d63616c6c65722d616c6c6f776564290a2020202020202020202020202020202028657272204552525f535441434b494e475f5045524d495353494f4e5f44454e49454429290a0a2020202020203b3b2064656c65676174652d737478206e6f206c6f6e676572207265717569726573207468652064656c656761746f7220746f206e6f742063757272656e746c790a2020202020203b3b20626520737461636b696e672e0a2020202020203b3b2064656c65676174652d737461636b2d2a2066756e6374696f6e732061737365727420746861740a2020202020203b3b20312e2075736572732063616e2774207377696d20696e2074776f20706f6f6c73206174207468652073616d652074696d652e0a2020202020203b3b20322e2075736572732063616e27742073776974636820706f6f6c7320776974686f757420636f6f6c20646f776e206379636c652e0a2020202020203b3b202020204f7468657220706f6f6c2061646d696e732063616e277420696e637265617365206f7220657874656e642e0a2020202020203b3b20332e2075736572732063616e2774206a6f696e206120706f6f6c207768696c6520616c7265616479206469726563746c7920737461636b696e672e0a0a2020202020203b3b20706f782d616464722c20696620676976656e2c206d7573742062652076616c69640a202020202020286d6174636820706f782d616464720a202020202020202020616464726573730a2020202020202020202020202861737365727473212028636865636b2d706f782d616464722d76657273696f6e20286765742076657273696f6e206164647265737329290a2020202020202020202020202020202028657272204552525f535441434b494e475f494e56414c49445f504f585f4144445245535329290a20202020202020202074727565290a0a2020202020203b3b2074782d73656e646572206d757374206e6f742062652064656c65676174696e670a202020202020286173736572747321202869732d6e6f6e6520286765742d636865636b2d64656c65676174696f6e2074782d73656e64657229290a202020202020202028657272204552525f535441434b494e475f414c52454144595f44454c45474154454429290a0a2020202020203b3b206164642064656c65676174696f6e207265636f72640a202020202020286d61702d7365742064656c65676174696f6e2d73746174650a20202020202020207b20737461636b65723a2074782d73656e646572207d0a20202020202020207b20616d6f756e742d757374783a20616d6f756e742d757374782c0a2020202020202020202064656c6567617465642d746f3a2064656c65676174652d746f2c0a20202020202020202020756e74696c2d6275726e2d68743a20756e74696c2d6275726e2d68742c0a20202020202020202020706f782d616464723a20706f782d61646472207d290a0a202020202020286f6b20747275652929290a0a3b3b20436f6d6d6974207061727469616c6c7920737461636b65642053545820616e6420616c6c6f636174652061206e657720506f5820726577617264206164647265737320736c6f742e0a3b3b2020205468697320616c6c6f7773206120737461636b65722f64656c656761746520746f206c6f636b20666577657220535458207468616e20746865206d696e696d616c207468726573686f6c6420696e206d756c7469706c65207472616e73616374696f6e732c0a3b3b202020736f206c6f6e672061733a20312e2054686520706f782d61646472206973207468652073616d652e0a3b3b202020202020202020202020202020322e20546869732022636f6d6d697422207472616e73616374696f6e2069732063616c6c6564205f6265666f72655f2074686520506f5820616e63686f7220626c6f636b2e0a3b3b2020205468697320656e73757265732074686174206561636820656e74727920696e2074686520726577617264207365742072657475726e656420746f2074686520737461636b732d6e6f64652069732067726561746572207468616e20746865207468726573686f6c642c0a3b3b20202062757420646f6573206e6f74207265717569726520697420626520616c6c206c6f636b65642075702077697468696e20612073696e676c65207472616e73616374696f6e0a3b3b0a3b3b2052657475726e7320286f6b2075696e7429206f6e20737563636573732c2077686572652074686520676976656e2075696e7420697320746865207265776172642061646472657373277320696e64657820696e20746865206c697374206f66207265776172640a3b3b2061646472657373657320616c6c6f636174656420696e207468697320726577617264206379636c652e20205468697320696e6465782063616e207468656e2062652070617373656420746f2060737461636b2d6167677265676174696f6e2d696e637265617365600a3b3b20746f206c6174657220696e6372656d656e742074686520535458207468697320506f58206164647265737320726570726573656e74732c20696e20616d6f756e7473206c657373207468616e2074686520737461636b696e67206d696e696d756d2e0a3b3b0a3b3b202a4e657720696e20537461636b7320322e312e2a0a28646566696e652d707269766174652028696e6e65722d737461636b2d6167677265676174696f6e2d636f6d6d69742028706f782d61646472207b2076657273696f6e3a2028627566662031292c206861736862797465733a20286275666620333229207d290a202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020287265776172642d6379636c652075696e7429290a2020286c65742028287061727469616c2d737461636b65640a2020202020202020203b3b20666574636820746865207061727469616c20636f6d6d69746d656e74730a20202020202020202028756e777261702120286d61702d6765743f207061727469616c2d737461636b65642d62792d6379636c65207b20706f782d616464723a20706f782d616464722c2073656e6465723a2074782d73656e6465722c207265776172642d6379636c653a207265776172642d6379636c65207d290a20202020202020202020202020202020202028657272204552525f535441434b494e475f4e4f5f535543485f5052494e434950414c292929290a202020203b3b206d7573742062652063616c6c6564206469726563746c79206279207468652074782d73656e646572206f7220627920616e20616c6c6f77656420636f6e74726163742d63616c6c65720a202020202861737365727473212028636865636b2d63616c6c65722d616c6c6f776564290a202020202020202020202020202028657272204552525f535441434b494e475f5045524d495353494f4e5f44454e49454429290a20202020286c6574202828616d6f756e742d75737478202867657420737461636b65642d616d6f756e74207061727469616c2d737461636b65642929290a2020202020202874727921202863616e2d737461636b2d73747820706f782d6164647220616d6f756e742d75737478207265776172642d6379636c6520753129290a2020202020203b3b204164642074686520706f78206164647220746f2074686520726577617264206379636c652c20616e6420657874726163742074686520696e646578206f662074686520506f5820616464726573730a2020202020203b3b20736f207468652064656c656761746f722063616e206c617465722075736520697420746f2063616c6c20737461636b2d6167677265676174696f6e2d696e6372656173652e0a202020202020286c65742028286164642d706f782d616464722d696e666f0a20202020202020202020202020202020286164642d706f782d616464722d746f2d6974682d7265776172642d6379636c650a2020202020202020202020202020202020202075300a202020202020202020202020202020202020207b20706f782d616464723a20706f782d616464722c0a20202020202020202020202020202020202020202066697273742d7265776172642d6379636c653a207265776172642d6379636c652c0a2020202020202020202020202020202020202020206e756d2d6379636c65733a2075312c0a2020202020202020202020202020202020202020207265776172642d7365742d696e64657865733a20286c697374292c0a202020202020202020202020202020202020202020737461636b65723a206e6f6e652c0a202020202020202020202020202020202020202020616d6f756e742d757374783a20616d6f756e742d757374782c0a202020202020202020202020202020202020202020693a207530207d29290a202020202020202020202028706f782d616464722d696e6465782028756e777261702d70616e69630a2020202020202020202020202020202028656c656d656e742d61742028676574207265776172642d7365742d696e6465786573206164642d706f782d616464722d696e666f29207530292929290a0a20202020202020203b3b20646f6e2774207570646174652074686520737461636b696e672d7374617465206d61702c0a20202020202020203b3b202062656361757365206974205f616c7265616479206861735f207468697320737461636b657227732073746174650a20202020202020203b3b20646f6e2774206c6f636b20746865205354582c2062656361757365207468652053545820697320616c7265616479206c6f636b65640a20202020202020203b3b0a20202020202020203b3b20636c65617220746865207061727469616c2d737461636b65642073746174652c20616e64206c6f672069740a2020202020202020286d61702d64656c657465207061727469616c2d737461636b65642d62792d6379636c65207b20706f782d616464723a20706f782d616464722c2073656e6465723a2074782d73656e6465722c207265776172642d6379636c653a207265776172642d6379636c65207d290a2020202020202020286d61702d736574206c6f676765642d7061727469616c2d737461636b65642d62792d6379636c65207b20706f782d616464723a20706f782d616464722c2073656e6465723a2074782d73656e6465722c207265776172642d6379636c653a207265776172642d6379636c65207d207061727469616c2d737461636b6564290a2020202020202020286f6b20706f782d616464722d696e64657829292929290a0a3b3b204c656761637920696e7465726661636520666f7220737461636b2d6167677265676174696f6e2d636f6d6d69742e0a3b3b20577261707320696e6e65722d737461636b2d6167677265676174696f6e2d636f6d6d69742e20205365652069747320646f63737472696e6720666f722064657461696c732e0a3b3b2052657475726e7320286f6b207472756529206f6e20737563636573730a3b3b2052657475726e732028657272202e2e2e29206f6e206661696c7572652e0a28646566696e652d7075626c69632028737461636b2d6167677265676174696f6e2d636f6d6d69742028706f782d61646472207b2076657273696f6e3a2028627566662031292c206861736862797465733a20286275666620333229207d290a2020202020202020202020202020202020202020202020202020202020202020202020202020202020287265776172642d6379636c652075696e7429290a20202020286d617463682028696e6e65722d737461636b2d6167677265676174696f6e2d636f6d6d697420706f782d61646472207265776172642d6379636c65290a2020202020202020706f782d616464722d696e64657820286f6b2074727565290a2020202020202020636f6d6d69742d657272202865727220636f6d6d69742d6572722929290a0a3b3b205075626c696320696e7465726661636520746f2060696e6e65722d737461636b2d6167677265676174696f6e2d636f6d6d6974602e20205365652069747320646f63756d656e746174696f6e20666f722064657461696c732e0a3b3b202a4e657720696e20537461636b7320322e312e2a0a28646566696e652d7075626c69632028737461636b2d6167677265676174696f6e2d636f6d6d69742d696e64657865642028706f782d61646472207b2076657273696f6e3a2028627566662031292c206861736862797465733a20286275666620333229207d290a20202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020287265776172642d6379636c652075696e7429290a2020202028696e6e65722d737461636b2d6167677265676174696f6e2d636f6d6d697420706f782d61646472207265776172642d6379636c6529290a0a3b3b20436f6d6d6974207061727469616c6c7920737461636b65642053545820746f206120506f5820616464726573732077686963682068617320616c726561647920726563656976656420736f6d652053545820286d6f7265207468616e2074686520537461636b696e67206d696e292e0a3b3b205468697320616c6c6f777320612064656c656761746f7220746f206c6f636b207570206d617267696e616c6c79206d6f7265205354582066726f6d206e65772064656c6567617465732c206576656e206966207468657920636f6c6c6563746976656c7920646f206e6f740a3b3b206578636565642074686520537461636b696e67206d696e696d756d2c20736f206c6f6e67206173207468652074617267657420506f58206164647265737320616c726561647920726570726573656e7473206174206c65617374206173206d616e7920535458206173207468650a3b3b20537461636b696e67206d696e696d756d2e0a3b3b0a3b3b2054686520607265776172642d6379636c652d696e6465786020697320656d6974746564206173206120636f6e7472616374206576656e742066726f6d2060737461636b2d6167677265676174696f6e2d636f6d6d697460207768656e2074686520696e697469616c20535458206172650a3b3b206c6f636b656420757020627920746869732064656c656761746f722e20204974206d75737420626520706173736564206865726520746f20616464206d6f72652053545820626568696e64207468697320506f5820616464726573732e20204966207468652064656c656761746f720a3b3b2063616c6c65642060737461636b2d6167677265676174696f6e2d636f6d6d697460206d756c7469706c652074696d657320666f72207468652073616d6520506f5820616464726573732c207468656e20616e79207375636820607265776172642d6379636c652d696e646578602077696c6c0a3b3b20776f726b20686572652e0a3b3b0a3b3b202a4e657720696e20537461636b7320322e312a0a3b3b0a28646566696e652d7075626c69632028737461636b2d6167677265676174696f6e2d696e6372656173652028706f782d61646472207b2076657273696f6e3a2028627566662031292c206861736862797465733a20286275666620333229207d290a20202020202020202020202020202020202020202020202020202020202020202020202020202020202020287265776172642d6379636c652075696e74290a20202020202020202020202020202020202020202020202020202020202020202020202020202020202020287265776172642d6379636c652d696e6465782075696e7429290a2020286c65742028287061727469616c2d737461636b65640a2020202020202020203b3b20666574636820746865207061727469616c20636f6d6d69746d656e74730a20202020202020202028756e777261702120286d61702d6765743f207061727469616c2d737461636b65642d62792d6379636c65207b20706f782d616464723a20706f782d616464722c2073656e6465723a2074782d73656e6465722c207265776172642d6379636c653a207265776172642d6379636c65207d290a20202020202020202020202020202020202028657272204552525f535441434b494e475f4e4f5f535543485f5052494e434950414c292929290a0a202020203b3b206d7573742062652063616c6c6564206469726563746c79206279207468652074782d73656e646572206f7220627920616e20616c6c6f77656420636f6e74726163742d63616c6c65720a202020202861737365727473212028636865636b2d63616c6c65722d616c6c6f776564290a202020202020202020202020202028657272204552525f535441434b494e475f5045524d495353494f4e5f44454e49454429290a0a202020203b3b207265776172642d6379636c65206d75737420626520696e20746865206675747572650a2020202028617373657274732120283e207265776172642d6379636c65202863757272656e742d706f782d7265776172642d6379636c6529290a202020202020202020202020202028657272204552525f535441434b494e475f494e56414c49445f4c4f434b5f504552494f4429290a0a20202020286c6574202828616d6f756e742d75737478202867657420737461636b65642d616d6f756e74207061727469616c2d737461636b656429290a202020202020202020203b3b207265776172642d6379636c65206d75737420706f696e7420746f20616e206578697374696e67207265636f726420696e207265776172642d6379636c652d746f74616c2d737461636b65640a202020202020202020203b3b20696e66616c6c69626c653b2067657474696e6720736f6d657468696e672066726f6d207061727469616c2d737461636b65642d62792d6379636c652073756363656564656420736f2074686973206d75737420737563636565640a20202020202020202020286578697374696e672d746f74616c2028756e777261702d70616e696320286d61702d6765743f207265776172642d6379636c652d746f74616c2d737461636b6564207b207265776172642d6379636c653a207265776172642d6379636c65207d2929290a202020202020202020203b3b207265776172642d6379636c6520616e64207265776172642d6379636c652d696e646578206d75737420706f696e7420746f20616e206578697374696e67207265636f726420696e207265776172642d6379636c652d706f782d616464726573732d6c6973740a20202020202020202020286578697374696e672d656e7472792028756e777261702120286d61702d6765743f207265776172642d6379636c652d706f782d616464726573732d6c697374207b207265776172642d6379636c653a207265776172642d6379636c652c20696e6465783a207265776172642d6379636c652d696e646578207d290a202020202020202020202020202020202020202020202020202028657272204552525f44454c45474154494f4e5f4e4f5f5245574152445f534c4f542929290a2020202020202020202028696e637265617365642d7573747820282b202867657420746f74616c2d75737478206578697374696e672d656e7472792920616d6f756e742d7573747829290a2020202020202020202028746f74616c2d7573747820282b202867657420746f74616c2d75737478206578697374696e672d746f74616c2920616d6f756e742d757374782929290a0a202020202020202020203b3b206d75737420626520737461636b61626c650a20202020202020202020287472792120286d696e696d616c2d63616e2d737461636b2d73747820706f782d6164647220746f74616c2d75737478207265776172642d6379636c6520753129290a0a202020202020202020203b3b206e657720746f74616c206d757374206578636565642074686520737461636b696e67206d696e696d756d0a2020202020202020202028617373657274732120283c3d20286765742d737461636b696e672d6d696e696d756d2920746f74616c2d75737478290a202020202020202020202020202020202020202028657272204552525f535441434b494e475f5448524553484f4c445f4e4f545f4d455429290a0a202020202020202020203b3b207468657265206d757374202a6e6f742a206265206120737461636b657220656e747279202873696e6365207468697320697320612064656c656761746f72290a20202020202020202020286173736572747321202869732d6e6f6e65202867657420737461636b6572206578697374696e672d656e74727929290a202020202020202020202020202020202020202028657272204552525f44454c45474154494f4e5f57524f4e475f5245574152445f534c4f5429290a0a202020202020202020203b3b2074686520676976656e20506f582061646472657373206d757374206d6174636820746865206f6e65206f6e207265636f72640a20202020202020202020286173736572747321202869732d657120706f782d61646472202867657420706f782d61646472206578697374696e672d656e74727929290a202020202020202020202020202020202020202028657272204552525f44454c45474154494f4e5f57524f4e475f5245574152445f534c4f5429290a0a202020202020202020203b3b207570646174652074686520706f782d61646472657373206c697374202d2d2062756d702074686520746f74616c2d757374780a20202020202020202020286d61702d736574207265776172642d6379636c652d706f782d616464726573732d6c6973740a202020202020202020202020202020202020207b207265776172642d6379636c653a207265776172642d6379636c652c20696e6465783a207265776172642d6379636c652d696e646578207d0a202020202020202020202020202020202020207b20706f782d616464723a20706f782d616464722c0a202020202020202020202020202020202020202020746f74616c2d757374783a20696e637265617365642d757374782c0a202020202020202020202020202020202020202020737461636b65723a206e6f6e65207d290a0a202020202020202020203b3b207570646174652074686520746f74616c207573747820696e2074686973206379636c650a20202020202020202020286d61702d736574207265776172642d6379636c652d746f74616c2d737461636b65640a202020202020202020202020202020202020207b207265776172642d6379636c653a207265776172642d6379636c65207d0a202020202020202020202020202020202020207b20746f74616c2d757374783a20746f74616c2d75737478207d290a0a202020202020202020203b3b20646f6e2774207570646174652074686520737461636b696e672d7374617465206d61702c0a202020202020202020203b3b202062656361757365206974205f616c7265616479206861735f207468697320737461636b657227732073746174650a202020202020202020203b3b20646f6e2774206c6f636b20746865205354582c2062656361757365207468652053545820697320616c7265616479206c6f636b65640a202020202020202020203b3b0a202020202020202020203b3b20636c65617220746865207061727469616c2d737461636b65642073746174652c20616e64206c6f672069740a20202020202020202020286d61702d64656c657465207061727469616c2d737461636b65642d62792d6379636c65207b20706f782d616464723a20706f782d616464722c2073656e6465723a2074782d73656e6465722c207265776172642d6379636c653a207265776172642d6379636c65207d290a20202020202020202020286d61702d736574206c6f676765642d7061727469616c2d737461636b65642d62792d6379636c65207b20706f782d616464723a20706f782d616464722c2073656e6465723a2074782d73656e6465722c207265776172642d6379636c653a207265776172642d6379636c65207d207061727469616c2d737461636b6564290a20202020202020202020286f6b2074727565292929290a0a3b3b20417320612064656c65676174652c20737461636b2074686520676976656e207072696e636970616c277320535458207573696e67207061727469616c2d737461636b65642d62792d6379636c650a3b3b204f6e6365207468652064656c65676174652068617320737461636b6564203e206d696e696d756d2c207468652064656c65676174652073686f756c642063616c6c20737461636b2d6167677265676174696f6e2d636f6d6d69740a28646566696e652d7075626c6963202864656c65676174652d737461636b2d7374782028737461636b6572207072696e636970616c290a202020202020202020202020202020202020202020202020202020202020202020202028616d6f756e742d757374782075696e74290a202020202020202020202020202020202020202020202020202020202020202020202028706f782d61646472207b2076657273696f6e3a2028627566662031292c206861736862797465733a20286275666620333229207d290a20202020202020202020202020202020202020202020202020202020202020202020202873746172742d6275726e2d68742075696e74290a2020202020202020202020202020202020202020202020202020202020202020202020286c6f636b2d706572696f642075696e7429290a202020203b3b207468697320737461636b6572277320666972737420726577617264206379636c6520697320746865205f6e6578745f20726577617264206379636c650a20202020286c657420282866697273742d7265776172642d6379636c6520282b207531202863757272656e742d706f782d7265776172642d6379636c652929290a20202020202020202020287370656369666965642d7265776172642d6379636c6520282b20753120286275726e2d6865696768742d746f2d7265776172642d6379636c652073746172742d6275726e2d68742929290a2020202020202020202028756e6c6f636b2d6275726e2d68656967687420287265776172642d6379636c652d746f2d6275726e2d68656967687420282b202863757272656e742d706f782d7265776172642d6379636c6529207531206c6f636b2d706572696f64292929290a2020202020203b3b207468652073746172742d6275726e2d6874206d75737420726573756c7420696e20746865206e65787420726577617264206379636c652c20646f206e6f7420616c6c6f7720737461636b6572730a2020202020203b3b2020746f2022706f73742d64617465222074686569722060737461636b2d73747860207472616e73616374696f6e0a202020202020286173736572747321202869732d65712066697273742d7265776172642d6379636c65207370656369666965642d7265776172642d6379636c65290a2020202020202020202020202020202028657272204552525f494e56414c49445f53544152545f4255524e5f48454947485429290a0a2020202020203b3b206d7573742062652063616c6c6564206469726563746c79206279207468652074782d73656e646572206f7220627920616e20616c6c6f77656420636f6e74726163742d63616c6c65720a2020202020202861737365727473212028636865636b2d63616c6c65722d616c6c6f776564290a202020202020202028657272204552525f535441434b494e475f5045524d495353494f4e5f44454e49454429290a0a2020202020203b3b20737461636b6572206d75737420686176652064656c65676174656420746f207468652063616c6c65720a202020202020286c657420282864656c65676174696f6e2d696e666f2028756e777261702120286765742d636865636b2d64656c65676174696f6e20737461636b6572292028657272204552525f535441434b494e475f5045524d495353494f4e5f44454e494544292929290a20202020202020203b3b206d75737420686176652064656c65676174656420746f2074782d73656e6465720a2020202020202020286173736572747321202869732d657120286765742064656c6567617465642d746f2064656c65676174696f6e2d696e666f292074782d73656e646572290a20202020202020202020202020202020202028657272204552525f535441434b494e475f5045524d495353494f4e5f44454e49454429290a20202020202020203b3b206d75737420686176652064656c65676174656420656e6f756768207374780a202020202020202028617373657274732120283e3d202867657420616d6f756e742d757374782064656c65676174696f6e2d696e666f2920616d6f756e742d75737478290a20202020202020202020202020202020202028657272204552525f44454c45474154494f4e5f544f4f5f4d5543485f4c4f434b454429290a20202020202020203b3b20696620706f782d61646472206973207365742c206d75737420626520657175616c20746f20706f782d616464720a202020202020202028617373657274732120286d61746368202867657420706f782d616464722064656c65676174696f6e2d696e666f290a202020202020202020202020202020202020202020202020207370656369666965642d706f782d61646472202869732d657120706f782d61646472207370656369666965642d706f782d61646472290a2020202020202020202020202020202020202020202020202074727565290a20202020202020202020202020202020202028657272204552525f44454c45474154494f4e5f504f585f414444525f524551554952454429290a20202020202020203b3b2064656c65676174696f6e206d757374206e6f7420657870697265206265666f7265206c6f636b20706572696f640a202020202020202028617373657274732120286d61746368202867657420756e74696c2d6275726e2d68742064656c65676174696f6e2d696e666f290a20202020202020202020202020202020202020202020202020756e74696c2d6275726e2d687420283e3d20756e74696c2d6275726e2d68740a20202020202020202020202020202020202020202020202020202020202020202020202020202020202020756e6c6f636b2d6275726e2d686569676874290a2020202020202020202020202020202020202020202074727565290a20202020202020202020202020202020202028657272204552525f44454c45474154494f4e5f455850495245535f445552494e475f4c4f434b2929290a0a2020202020203b3b20737461636b6572207072696e636970616c206d757374206e6f7420626520737461636b696e670a202020202020286173736572747321202869732d6e6f6e6520286765742d737461636b65722d696e666f20737461636b657229290a202020202020202028657272204552525f535441434b494e475f414c52454144595f535441434b454429290a0a2020202020203b3b2074686520537461636b6572206d75737420686176652073756666696369656e7420756e6c6f636b65642066756e64730a20202020202028617373657274732120283e3d20287374782d6765742d62616c616e636520737461636b65722920616d6f756e742d75737478290a202020202020202028657272204552525f535441434b494e475f494e53554646494349454e545f46554e445329290a0a2020202020203b3b20656e73757265207468617420737461636b696e672063616e20626520706572666f726d65640a202020202020287472792120286d696e696d616c2d63616e2d737461636b2d73747820706f782d6164647220616d6f756e742d757374782066697273742d7265776172642d6379636c65206c6f636b2d706572696f6429290a0a2020202020203b3b2072656769737465722074686520506f58206164647265737320776974682074686520616d6f756e7420737461636b656420766961207061727469616c20737461636b696e670a2020202020203b3b2020206265666f72652069742063616e20626520696e636c7564656420696e2074686520726577617264207365742c2074686973206d75737420626520636f6d6d6974746564210a202020202020286164642d706f782d7061727469616c2d737461636b656420706f782d616464722066697273742d7265776172642d6379636c65206c6f636b2d706572696f6420616d6f756e742d75737478290a0a2020202020203b3b2061646420737461636b6572207265636f72640a202020202020286d61702d73657420737461636b696e672d73746174650a20202020202020207b20737461636b65723a20737461636b6572207d0a20202020202020207b20706f782d616464723a20706f782d616464722c0a2020202020202020202066697273742d7265776172642d6379636c653a2066697273742d7265776172642d6379636c652c0a202020202020202020207265776172642d7365742d696e64657865733a20286c697374292c0a202020202020202020206c6f636b2d706572696f643a206c6f636b2d706572696f642c0a2020202020202020202064656c6567617465642d746f3a2028736f6d652074782d73656e64657229207d290a0a2020202020203b3b2072657475726e20746865206c6f636b2d757020696e666f726d6174696f6e2c20736f20746865206e6f64652063616e2061637475616c6c79206361727279206f757420746865206c6f636b2e0a202020202020286f6b207b20737461636b65723a20737461636b65722c0a2020202020202020202020206c6f636b2d616d6f756e743a20616d6f756e742d757374782c0a202020202020202020202020756e6c6f636b2d6275726e2d6865696768743a20756e6c6f636b2d6275726e2d686569676874207d2929290a0a3b3b2052656a65637420537461636b696e6720666f72207468697320726577617264206379636c652e0a3b3b2074782d73656e64657220766f74657320616c6c20697473207553545820666f722072656a656374696f6e2e0a3b3b204e6f7465207468617420756e6c696b6520506f582c2072656a656374696e6720506f5820646f6573206e6f74206c6f636b207468652074782d73656e64657227730a3b3b20746f6b656e732e2020506f582072656a656374696f6e2061637473206c696b65206120636f696e20766f74652e0a28646566696e652d7075626c6963202872656a6563742d706f78290a20202020286c657420280a20202020202020202862616c616e636520287374782d6765742d62616c616e63652074782d73656e64657229290a202020202020202028766f74652d7265776172642d6379636c6520282b207531202863757272656e742d706f782d7265776172642d6379636c652929290a20202020290a0a202020203b3b2074782d73656e646572207072696e636970616c206d757374206e6f7420686176652072656a656374656420696e2074686973207570636f6d696e6720726577617264206379636c650a20202020286173736572747321202869732d6e6f6e6520286765742d706f782d72656a656374696f6e2074782d73656e64657220766f74652d7265776172642d6379636c6529290a202020202020202028657272204552525f535441434b494e475f414c52454144595f52454a454354454429290a0a202020203b3b2074782d73656e6465722063616e2774206265206120737461636b65720a20202020286173736572747321202869732d6e6f6e6520286765742d737461636b65722d696e666f2074782d73656e64657229290a202020202020202028657272204552525f535441434b494e475f414c52454144595f535441434b454429290a0a202020203b3b20766f746520666f722072656a656374696f6e0a20202020286d61702d73657420737461636b696e672d72656a656374696f6e0a20202020202020207b207265776172642d6379636c653a20766f74652d7265776172642d6379636c65207d0a20202020202020207b20616d6f756e743a20282b20286e6578742d6379636c652d72656a656374696f6e2d766f746573292062616c616e636529207d0a20202020290a0a202020203b3b206d61726b20766f7465640a20202020286d61702d73657420737461636b696e672d72656a6563746f72730a20202020202020207b20737461636b65723a2074782d73656e6465722c207265776172642d6379636c653a20766f74652d7265776172642d6379636c65207d0a20202020202020207b20616d6f756e743a2062616c616e6365207d0a20202020290a0a20202020286f6b207472756529290a290a0a3b3b205573656420666f7220506f5820706172616d657465727320646973636f766572790a28646566696e652d726561642d6f6e6c7920286765742d706f782d696e666f290a20202020286f6b207b0a20202020202020206d696e2d616d6f756e742d757374783a20286765742d737461636b696e672d6d696e696d756d292c0a20202020202020207265776172642d6379636c652d69643a202863757272656e742d706f782d7265776172642d6379636c65292c0a2020202020202020707265706172652d6379636c652d6c656e6774683a20287661722d67657420706f782d707265706172652d6379636c652d6c656e677468292c0a202020202020202066697273742d6275726e636861696e2d626c6f636b2d6865696768743a20287661722d6765742066697273742d6275726e636861696e2d626c6f636b2d686569676874292c0a20202020202020207265776172642d6379636c652d6c656e6774683a20287661722d67657420706f782d7265776172642d6379636c652d6c656e677468292c0a202020202020202072656a656374696f6e2d6672616374696f6e3a20287661722d67657420706f782d72656a656374696f6e2d6672616374696f6e292c0a202020202020202063757272656e742d72656a656374696f6e2d766f7465733a20286e6578742d6379636c652d72656a656374696f6e2d766f746573292c0a2020202020202020746f74616c2d6c69717569642d737570706c792d757374783a207374782d6c69717569642d737570706c792c0a202020207d290a290a0a3b3b2055706461746520746865206e756d626572206f6620737461636b65642053545820696e206120676976656e20726577617264206379636c6520656e7472792e0a3b3b20607265776172642d6379636c652d696e646578602069732074686520696e64657820696e746f2074686520607265776172642d6379636c652d706f782d616464726573732d6c69737460206d617020666f72206120676976656e20726577617264206379636c65206e756d6265722e0a3b3b206075706461746573602c206966206028736f6d65202e2e29602c20656e636f64657320776869636820506f5820726577617264206379636c6520656e7472792028696620616e7929206765747320757064617465642e2020496e20706172746963756c61722c206974206d75737420686176650a3b3b206028736f6d6520737461636b6572296020617320746865206c697374656420737461636b65722c20616e64206d75737420626520616e207570636f6d696e6720726577617264206379636c652e0a28646566696e652d707269766174652028696e6372656173652d7265776172642d6379636c652d656e7472790a202020202020202020202020202020202020287265776172642d6379636c652d696e6465782075696e74290a202020202020202020202020202020202020287570646174657320286f7074696f6e616c207b2066697273742d6379636c653a2075696e742c207265776172642d6379636c653a2075696e742c20737461636b65723a207072696e636970616c2c206164642d616d6f756e743a2075696e74207d2929290a20202020286c657420282864617461202874727921207570646174657329290a202020202020202020202866697273742d6379636c6520286765742066697273742d6379636c65206461746129290a20202020202020202020287265776172642d6379636c652028676574207265776172642d6379636c6520646174612929290a2020202028696620283e2066697273742d6379636c65207265776172642d6379636c65290a20202020202020203b3b206e6f74206174206669727374206379636c6520746f2070726f63657373207965740a202020202020202028736f6d65207b2066697273742d6379636c653a2066697273742d6379636c652c207265776172642d6379636c653a20282b207531207265776172642d6379636c65292c20737461636b65723a202867657420737461636b65722064617461292c206164642d616d6f756e743a2028676574206164642d616d6f756e74206461746129207d290a2020202020202020286c65742028286578697374696e672d656e7472792028756e777261702d70616e696320286d61702d6765743f207265776172642d6379636c652d706f782d616464726573732d6c697374207b207265776172642d6379636c653a207265776172642d6379636c652c20696e6465783a207265776172642d6379636c652d696e646578207d2929290a2020202020202020202020202020286578697374696e672d746f74616c2028756e777261702d70616e696320286d61702d6765743f207265776172642d6379636c652d746f74616c2d737461636b6564207b207265776172642d6379636c653a207265776172642d6379636c65207d2929290a2020202020202020202020202020286164642d616d6f756e742028676574206164642d616d6f756e74206461746129290a202020202020202020202020202028746f74616c2d7573747820282b202867657420746f74616c2d75737478206578697374696e672d746f74616c29206164642d616d6f756e742929290a2020202020202020202020203b3b20737461636b6572206d757374206d617463680a202020202020202020202020286173736572747321202869732d6571202867657420737461636b6572206578697374696e672d656e747279292028736f6d65202867657420737461636b65722064617461292929206e6f6e65290a2020202020202020202020203b3b207570646174652074686520706f782d61646472657373206c6973740a202020202020202020202020286d61702d736574207265776172642d6379636c652d706f782d616464726573732d6c6973740a2020202020202020202020202020202020202020207b207265776172642d6379636c653a207265776172642d6379636c652c20696e6465783a207265776172642d6379636c652d696e646578207d0a2020202020202020202020202020202020202020207b20706f782d616464723a202867657420706f782d61646472206578697374696e672d656e747279292c0a20202020202020202020202020202020202020202020203b3b205468697320616464726573736573207468652062756720696e20706f782d322028736565205349502d303232290a2020202020202020202020202020202020202020202020746f74616c2d757374783a20282b202867657420746f74616c2d75737478206578697374696e672d656e74727929206164642d616d6f756e74292c0a2020202020202020202020202020202020202020202020737461636b65723a2028736f6d65202867657420737461636b657220646174612929207d290a2020202020202020202020203b3b207570646174652074686520746f74616c0a202020202020202020202020286d61702d736574207265776172642d6379636c652d746f74616c2d737461636b65640a2020202020202020202020202020202020202020207b207265776172642d6379636c653a207265776172642d6379636c65207d0a2020202020202020202020202020202020202020207b20746f74616c2d757374783a20746f74616c2d75737478207d290a20202020202020202020202028736f6d65207b2066697273742d6379636c653a2066697273742d6379636c652c0a20202020202020202020202020202020202020207265776172642d6379636c653a20282b207531207265776172642d6379636c65292c0a2020202020202020202020202020202020202020737461636b65723a202867657420737461636b65722064617461292c0a20202020202020202020202020202020202020206164642d616d6f756e743a2028676574206164642d616d6f756e74206461746129207d29292929290a0a3b3b20496e63726561736520746865206e756d626572206f6620535458206c6f636b65642e0a3b3b202a4e657720696e20537461636b7320322e312a0a3b3b2054686973206d6574686f64206c6f636b7320757020616e206164646974696f6e616c20616d6f756e74206f66205354582066726f6d206074782d73656e6465726027732c20696e646963617465640a3b3b2062792060696e6372656173652d6279602e2020546865206074782d73656e64657260206d75737420616c726561647920626520537461636b696e672e0a28646566696e652d7075626c69632028737461636b2d696e6372656173652028696e6372656173652d62792075696e7429290a202020286c6574202828737461636b65722d696e666f20287374782d6163636f756e742074782d73656e64657229290a20202020202020202028616d6f756e742d737461636b65642028676574206c6f636b656420737461636b65722d696e666f29290a20202020202020202028616d6f756e742d756e6c6f636b6564202867657420756e6c6f636b656420737461636b65722d696e666f29290a20202020202020202028756e6c6f636b2d686569676874202867657420756e6c6f636b2d68656967687420737461636b65722d696e666f29290a202020202020202020286375722d6379636c65202863757272656e742d706f782d7265776172642d6379636c6529290a2020202020202020202866697273742d696e637265617365642d6379636c6520282b206375722d6379636c6520753129290a20202020202020202028737461636b65722d73746174652028756e777261702120286d61702d6765743f20737461636b696e672d73746174650a2020202020202020202020202020202020202020202020202020202020202020202020202020202020207b20737461636b65723a2074782d73656e646572207d290a20202020202020202020202020202020202020202020202020202020202020202020202020202020202028657272204552525f535441434b5f494e4352454153455f4e4f545f4c4f434b4544292929290a2020202020203b3b2074782d73656e646572206d7573742062652063757272656e746c79206c6f636b65640a20202020202028617373657274732120283e20616d6f756e742d737461636b6564207530290a2020202020202020202020202020202028657272204552525f535441434b5f494e4352454153455f4e4f545f4c4f434b454429290a2020202020203b3b206d7573742062652063616c6c6564207769746820706f7369746976652060696e6372656173652d6279600a20202020202028617373657274732120283e3d20696e6372656173652d6279207531290a2020202020202020202020202020202028657272204552525f535441434b494e475f494e56414c49445f414d4f554e5429290a2020202020203b3b20737461636b6572206d757374206861766520656e6f7567682073747820746f206c6f636b0a20202020202028617373657274732120283e3d20616d6f756e742d756e6c6f636b656420696e6372656173652d6279290a2020202020202020202020202020202028657272204552525f535441434b494e475f494e53554646494349454e545f46554e445329290a2020202020203b3b206d7573742062652063616c6c6564206469726563746c79206279207468652074782d73656e646572206f7220627920616e20616c6c6f77656420636f6e74726163742d63616c6c65720a2020202020202861737365727473212028636865636b2d63616c6c65722d616c6c6f776564290a2020202020202020202020202020202028657272204552525f535441434b494e475f5045524d495353494f4e5f44454e49454429290a2020202020203b3b20737461636b6572206d757374206265206469726563746c7920737461636b696e670a20202020202028617373657274732120283e20286c656e2028676574207265776172642d7365742d696e646578657320737461636b65722d73746174652929207530290a2020202020202020202020202020202028657272204552525f535441434b494e475f49535f44454c45474154454429290a2020202020203b3b20737461636b6572206d757374206e6f742062652064656c65676174696e670a202020202020286173736572747321202869732d6e6f6e6520286765742064656c6567617465642d746f20737461636b65722d737461746529290a2020202020202020202020202020202028657272204552525f535441434b494e475f49535f44454c45474154454429290a2020202020203b3b2075706461746520726577617264206379636c6520616d6f756e74730a202020202020286173736572747321202869732d736f6d652028666f6c6420696e6372656173652d7265776172642d6379636c652d656e7472790a20202020202020202020202028676574207265776172642d7365742d696e646578657320737461636b65722d7374617465290a20202020202020202020202028736f6d65207b2066697273742d6379636c653a2066697273742d696e637265617365642d6379636c652c0a20202020202020202020202020202020202020207265776172642d6379636c653a20286765742066697273742d7265776172642d6379636c6520737461636b65722d7374617465292c0a2020202020202020202020202020202020202020737461636b65723a2074782d73656e6465722c0a20202020202020202020202020202020202020206164642d616d6f756e743a20696e6372656173652d6279207d2929290a20202020202020202020202028657272204552525f535441434b494e475f554e524541434841424c4529290a2020202020203b3b204e4f54453a20737461636b696e672d7374617465206d617020697320756e6368616e6765643a20697420646f6573206e6f7420747261636b20616d6f756e742d737461636b656420696e20506f582d330a202020202020286f6b207b20737461636b65723a2074782d73656e6465722c20746f74616c2d6c6f636b65643a20282b20616d6f756e742d737461636b656420696e6372656173652d6279297d2929290a0a3b3b20457874656e6420616e2061637469766520537461636b696e67206c6f636b2e0a3b3b202a4e657720696e20537461636b7320322e312a0a3b3b2054686973206d6574686f6420657874656e647320746865206074782d73656e6465726027732063757272656e74206c6f636b757020666f7220616e206164646974696f6e616c2060657874656e642d636f756e74600a3b3b20202020616e64206173736f6369617465732060706f782d616464726020776974682074686520726577617264730a28646566696e652d7075626c69632028737461636b2d657874656e642028657874656e642d636f756e742075696e74290a202020202020202020202020202020202020202020202020202020202028706f782d61646472207b2076657273696f6e3a2028627566662031292c206861736862797465733a20286275666620333229207d29290a202020286c6574202828737461636b65722d696e666f20287374782d6163636f756e742074782d73656e64657229290a2020202020202020203b3b20746f20657874656e642c207468657265206d75737420616c726561647920626520616e206574727920696e2074686520737461636b696e672d73746174650a20202020202020202028737461636b65722d73746174652028756e777261702120286765742d737461636b65722d696e666f2074782d73656e646572292028657272204552525f535441434b5f455854454e445f4e4f545f4c4f434b45442929290a20202020202020202028616d6f756e742d757374782028676574206c6f636b656420737461636b65722d696e666f29290a20202020202020202028756e6c6f636b2d686569676874202867657420756e6c6f636b2d68656967687420737461636b65722d696e666f29290a202020202020202020286375722d6379636c65202863757272656e742d706f782d7265776172642d6379636c6529290a2020202020202020203b3b2066697273742d657874656e642d6379636c652077696c6c20626520746865206379636c6520696e2077686963682074782d73656e646572202a776f756c6420686176652a20756e6c6f636b65640a2020202020202020202866697273742d657874656e642d6379636c6520286275726e2d6865696768742d746f2d7265776172642d6379636c6520756e6c6f636b2d68656967687429290a2020202020202020203b3b206e6577206669727374206379636c652073686f756c64206265206d6178286375722d6379636c652c20737461636b65722d73746174652e66697273742d7265776172642d6379636c65290a202020202020202020286375722d66697273742d7265776172642d6379636c6520286765742066697273742d7265776172642d6379636c6520737461636b65722d737461746529290a2020202020202020202866697273742d7265776172642d6379636c652028696620283e206375722d6379636c65206375722d66697273742d7265776172642d6379636c6529206375722d6379636c65206375722d66697273742d7265776172642d6379636c652929290a0a202020203b3b206d7573742062652063616c6c6564207769746820706f73697469766520657874656e642d636f756e740a2020202028617373657274732120283e3d20657874656e642d636f756e74207531290a202020202020202020202020202028657272204552525f535441434b494e475f494e56414c49445f4c4f434b5f504552494f4429290a0a202020203b3b20737461636b6572206d757374206265206469726563746c7920737461636b696e670a20202020202028617373657274732120283e20286c656e2028676574207265776172642d7365742d696e646578657320737461636b65722d73746174652929207530290a2020202020202020202020202020202028657272204552525f535441434b494e475f49535f44454c45474154454429290a0a202020203b3b20737461636b6572206d757374206e6f742062652064656c65676174696e670a20202020286173736572747321202869732d6e6f6e6520286765742064656c6567617465642d746f20737461636b65722d737461746529290a202020202020202020202020202028657272204552525f535441434b494e475f49535f44454c45474154454429290a0a202020203b3b20544f444f3a20616464206d6f726520617373657274696f6e7320746f2073616e69747920636865636b207468652060737461636b65722d696e666f602076616c75657320776974680a202020203b3b202020202020207468652060737461636b65722d7374617465602076616c7565730a0a20202020286c65742028286c6173742d657874656e642d6379636c652020282d20282b2066697273742d657874656e642d6379636c6520657874656e642d636f756e742920753129290a20202020202020202020286c6f636b2d706572696f6420282b20753120282d206c6173742d657874656e642d6379636c652066697273742d7265776172642d6379636c652929290a20202020202020202020286e65772d756e6c6f636b2d687420287265776172642d6379636c652d746f2d6275726e2d68656967687420282b207531206c6173742d657874656e642d6379636c65292929290a0a2020202020203b3b206669727374206379636c65206d757374206265206166746572207468652063757272656e74206379636c650a20202020202028617373657274732120283e2066697273742d657874656e642d6379636c65206375722d6379636c65292028657272204552525f535441434b494e475f494e56414c49445f4c4f434b5f504552494f4429290a2020202020203b3b206c6f636b20706572696f64206d75737420626520706f7369746976650a20202020202028617373657274732120283e206c6f636b2d706572696f64207530292028657272204552525f535441434b494e475f494e56414c49445f4c4f434b5f504552494f4429290a0a2020202020203b3b206d7573742062652063616c6c6564206469726563746c79206279207468652074782d73656e646572206f7220627920616e20616c6c6f77656420636f6e74726163742d63616c6c65720a2020202020202861737365727473212028636865636b2d63616c6c65722d616c6c6f776564290a2020202020202020202020202020202028657272204552525f535441434b494e475f5045524d495353494f4e5f44454e49454429290a0a2020202020203b3b2074782d73656e646572206d757374206265206c6f636b65640a20202020202028617373657274732120283e20616d6f756e742d75737478207530290a202020202020202028657272204552525f535441434b5f455854454e445f4e4f545f4c4f434b454429290a0a2020202020203b3b2074782d73656e646572206d757374206e6f742062652064656c65676174696e670a202020202020286173736572747321202869732d6e6f6e6520286765742d636865636b2d64656c65676174696f6e2074782d73656e64657229290a202020202020202028657272204552525f535441434b494e475f414c52454144595f44454c45474154454429290a0a2020202020203b3b207374616e646172642063616e2d737461636b2d73747820636865636b730a2020202020202874727921202863616e2d737461636b2d73747820706f782d6164647220616d6f756e742d757374782066697273742d657874656e642d6379636c65206c6f636b2d706572696f6429290a0a2020202020203b3b2072656769737465722074686520506f58206164647265737320776974682074686520616d6f756e7420737461636b65640a2020202020203b3b202020666f7220746865206e6577206379636c65730a202020202020286c6574202828657874656e6465642d7265776172642d7365742d696e646578657320287472792120286164642d706f782d616464722d746f2d7265776172642d6379636c657320706f782d616464722066697273742d657874656e642d6379636c6520657874656e642d636f756e7420616d6f756e742d757374782074782d73656e6465722929290a202020202020202020202020287265776172642d7365742d696e64657865730a202020202020202020202020202020203b3b20757365207468652061637469766520737461636b657220737461746520616e6420657874656e6420746865206578697374696e67207265776172642d7365742d696e64657865730a20202020202020202020202020202020286c65742028286375722d6379636c652d696e64657820282d2066697273742d7265776172642d6379636c6520286765742066697273742d7265776172642d6379636c6520737461636b65722d73746174652929290a20202020202020202020202020202020202020202020286f6c642d696e64657865732028676574207265776172642d7365742d696e646578657320737461636b65722d737461746529290a202020202020202020202020202020202020202020203b3b206275696c6420696e646578206c6973742062792074616b696e6720746865206f6c642d696e6465786573207374617274696e672066726f6d20637572206379636c650a202020202020202020202020202020202020202020203b3b2020616e6420616464696e6720746865206e657720696e646578657320746f2069742e2074686973207761792c2074686520696e6465782069732076616c6964207374617274696e672066726f6d207468652063757272656e74206379636c650a20202020202020202020202020202020202020202020286e65772d6c6973742028636f6e636174202864656661756c742d746f20286c697374292028736c6963653f206f6c642d696e6465786573206375722d6379636c652d696e64657820286c656e206f6c642d696e64657865732929290a20202020202020202020202020202020202020202020202020202020202020202020202020202020657874656e6465642d7265776172642d7365742d696e64657865732929290a20202020202020202020202020202020202028756e777261702d70616e6963202861732d6d61782d6c656e3f206e65772d6c6973742075313229292929290a202020202020202020203b3b2075706461746520737461636b6572207265636f72640a20202020202020202020286d61702d73657420737461636b696e672d73746174650a2020202020202020202020207b20737461636b65723a2074782d73656e646572207d0a2020202020202020202020207b20706f782d616464723a20706f782d616464722c0a20202020202020202020202020207265776172642d7365742d696e64657865733a207265776172642d7365742d696e64657865732c0a202020202020202020202020202066697273742d7265776172642d6379636c653a2066697273742d7265776172642d6379636c652c0a20202020202020202020202020206c6f636b2d706572696f643a206c6f636b2d706572696f642c0a202020202020202020202020202064656c6567617465642d746f3a206e6f6e65207d290a0a20202020202020203b3b2072657475726e206c6f636b2d757020696e666f726d6174696f6e0a2020202020202020286f6b207b20737461636b65723a2074782d73656e6465722c20756e6c6f636b2d6275726e2d6865696768743a206e65772d756e6c6f636b2d6874207d29292929290a0a3b3b20417320612064656c656761746f722c20696e63726561736520616e2061637469766520537461636b696e67206c6f636b2c2069737375696e67206120227061727469616c20636f6d6d69746d656e742220666f72207468650a3b3b202020696e63726561736564206379636c65732e0a3b3b202a4e657720696e20537461636b7320322e312a0a3b3b2054686973206d6574686f6420696e637265617365732060737461636b65726027732063757272656e74206c6f636b757020616e64207061727469616c6c7920636f6d6d69747320746865206164646974696f6e616c0a3b3b20202053545820746f2060706f782d61646472600a28646566696e652d7075626c6963202864656c65676174652d737461636b2d696e6372656173650a202020202020202020202020202020202020202028737461636b6572207072696e636970616c290a202020202020202020202020202020202020202028706f782d61646472207b2076657273696f6e3a2028627566662031292c206861736862797465733a20286275666620333229207d290a202020202020202020202020202020202020202028696e6372656173652d62792075696e7429290a20202020286c6574202828737461636b65722d696e666f20287374782d6163636f756e7420737461636b657229290a20202020202020202020286578697374696e672d6c6f636b2028676574206c6f636b656420737461636b65722d696e666f29290a2020202020202020202028617661696c61626c652d737478202867657420756e6c6f636b656420737461636b65722d696e666f29290a2020202020202020202028756e6c6f636b2d686569676874202867657420756e6c6f636b2d68656967687420737461636b65722d696e666f2929290a0a20202020203b3b206d7573742062652063616c6c6564207769746820706f7369746976652060696e6372656173652d6279600a202020202028617373657274732120283e3d20696e6372656173652d6279207531290a20202020202020202020202020202028657272204552525f535441434b494e475f494e56414c49445f414d4f554e5429290a0a2020202020286c6574202828756e6c6f636b2d696e2d6379636c6520286275726e2d6865696768742d746f2d7265776172642d6379636c6520756e6c6f636b2d68656967687429290a2020202020202020202020286375722d6379636c65202863757272656e742d706f782d7265776172642d6379636c6529290a20202020202020202020202866697273742d696e6372656173652d6379636c6520282b206375722d6379636c6520753129290a2020202020202020202020286c6173742d696e6372656173652d6379636c6520282d20756e6c6f636b2d696e2d6379636c6520753129290a2020202020202020202020286379636c652d636f756e742028747279212028696620283c3d2066697273742d696e6372656173652d6379636c65206c6173742d696e6372656173652d6379636c65290a20202020202020202020202020202020202020202020202020202020202020202020286f6b20282b20753120282d206c6173742d696e6372656173652d6379636c652066697273742d696e6372656173652d6379636c652929290a2020202020202020202020202020202020202020202020202020202020202020202028657272204552525f535441434b494e475f494e56414c49445f4c4f434b5f504552494f44292929290a2020202020202020202020286e65772d746f74616c2d6c6f636b656420282b20696e6372656173652d6279206578697374696e672d6c6f636b29290a202020202020202020202028737461636b65722d73746174650a2020202020202020202020202020202028756e777261702120286d61702d6765743f20737461636b696e672d7374617465207b20737461636b65723a20737461636b6572207d290a202020202020202020202020202020202028657272204552525f535441434b5f494e4352454153455f4e4f545f4c4f434b4544292929290a0a2020202020203b3b206d7573742062652063616c6c6564206469726563746c79206279207468652074782d73656e646572206f7220627920616e20616c6c6f77656420636f6e74726163742d63616c6c65720a2020202020202861737365727473212028636865636b2d63616c6c65722d616c6c6f776564290a202020202020202028657272204552525f535441434b494e475f5045524d495353494f4e5f44454e49454429290a0a2020202020203b3b20737461636b6572206d757374206e6f74206265206469726563746c7920737461636b696e670a202020202020286173736572747321202869732d657120286c656e2028676574207265776172642d7365742d696e646578657320737461636b65722d73746174652929207530290a2020202020202020202020202020202028657272204552525f535441434b494e475f4e4f545f44454c45474154454429290a0a2020202020203b3b20737461636b6572206d7573742062652064656c65676174656420746f2074782d73656e6465720a202020202020286173736572747321202869732d65712028756e777261702120286765742064656c6567617465642d746f20737461636b65722d7374617465290a202020202020202020202020202020202020202020202020202020202020202028657272204552525f535441434b494e475f4e4f545f44454c45474154454429290a202020202020202020202020202020202020202020202074782d73656e646572290a2020202020202020202020202020202028657272204552525f535441434b494e475f5045524d495353494f4e5f44454e49454429290a0a2020202020203b3b20737461636b6572206d7573742062652063757272656e746c79206c6f636b65640a20202020202028617373657274732120283e206578697374696e672d6c6f636b207530290a202020202020202028657272204552525f535441434b5f494e4352454153455f4e4f545f4c4f434b454429290a0a2020202020203b3b20737461636b6572206d757374206861766520656e6f7567682073747820746f206c6f636b0a20202020202028617373657274732120283e3d20617661696c61626c652d73747820696e6372656173652d6279290a202020202020202028657272204552525f535441434b494e475f494e53554646494349454e545f46554e445329290a0a2020202020203b3b20737461636b6572206d75737420686176652064656c65676174656420746f207468652063616c6c65720a202020202020286c657420282864656c65676174696f6e2d696e666f2028756e777261702120286765742d636865636b2d64656c65676174696f6e20737461636b6572292028657272204552525f535441434b494e475f5045524d495353494f4e5f44454e4945442929290a2020202020202020202020202864656c6567617465642d746f20286765742064656c6567617465642d746f2064656c65676174696f6e2d696e666f29290a2020202020202020202020202864656c6567617465642d616d6f756e74202867657420616d6f756e742d757374782064656c65676174696f6e2d696e666f29290a2020202020202020202020202864656c6567617465642d706f782d61646472202867657420706f782d616464722064656c65676174696f6e2d696e666f29290a2020202020202020202020202864656c6567617465642d756e74696c202867657420756e74696c2d6275726e2d68742064656c65676174696f6e2d696e666f2929290a20202020202020203b3b206d75737420686176652064656c65676174656420746f2074782d73656e6465720a2020202020202020286173736572747321202869732d65712064656c6567617465642d746f2074782d73656e646572290a20202020202020202020202020202020202028657272204552525f535441434b494e475f5045524d495353494f4e5f44454e49454429290a20202020202020203b3b206d75737420686176652064656c65676174656420656e6f756768207374780a202020202020202028617373657274732120283e3d2064656c6567617465642d616d6f756e74206e65772d746f74616c2d6c6f636b6564290a20202020202020202020202020202020202028657272204552525f44454c45474154494f4e5f544f4f5f4d5543485f4c4f434b454429290a20202020202020203b3b20696620706f782d61646472206973207365742c206d75737420626520657175616c20746f20706f782d616464720a202020202020202028617373657274732120286d617463682064656c6567617465642d706f782d616464720a202020202020202020202020202020202020202020202020207370656369666965642d706f782d61646472202869732d657120706f782d61646472207370656369666965642d706f782d61646472290a2020202020202020202020202020202020202020202020202074727565290a20202020202020202020202020202020202028657272204552525f44454c45474154494f4e5f504f585f414444525f524551554952454429290a20202020202020203b3b2064656c65676174696f6e206d757374206e6f7420657870697265206265666f7265206c6f636b20706572696f640a202020202020202028617373657274732120286d617463682064656c6567617465642d756e74696c0a202020202020202020202020202020202020202020202020756e74696c2d6275726e2d68740a20202020202020202020202020202020202020202020202020202020283e3d20756e74696c2d6275726e2d687420756e6c6f636b2d686569676874290a20202020202020202020202020202020202020202020202074727565290a20202020202020202020202020202020202028657272204552525f44454c45474154494f4e5f455850495245535f445552494e475f4c4f434b2929290a0a2020202020203b3b2064656c656761746520737461636b696e6720646f6573206d696e696d616c2d63616e2d737461636b2d7374780a202020202020287472792120286d696e696d616c2d63616e2d737461636b2d73747820706f782d61646472206e65772d746f74616c2d6c6f636b65642066697273742d696e6372656173652d6379636c6520282b20753120282d206c6173742d696e6372656173652d6379636c652066697273742d696e6372656173652d6379636c65292929290a0a2020202020203b3b2072656769737465722074686520506f58206164647265737320776974682074686520616d6f756e7420737461636b656420766961207061727469616c20737461636b696e670a2020202020203b3b2020206265666f72652069742063616e20626520696e636c7564656420696e2074686520726577617264207365742c2074686973206d75737420626520636f6d6d6974746564210a202020202020286164642d706f782d7061727469616c2d737461636b656420706f782d616464722066697273742d696e6372656173652d6379636c65206379636c652d636f756e7420696e6372656173652d6279290a0a2020202020203b3b20737461636b696e672d737461746520697320756e6368616e6765642c20736f206e6f206e65656420746f207570646174650a0a2020202020203b3b2072657475726e20746865206c6f636b2d757020696e666f726d6174696f6e2c20736f20746865206e6f64652063616e2061637475616c6c79206361727279206f757420746865206c6f636b2e0a202020202020286f6b207b20737461636b65723a20737461636b65722c20746f74616c2d6c6f636b65643a206e65772d746f74616c2d6c6f636b65647d292929290a0a3b3b20417320612064656c656761746f722c20657874656e6420616e2061637469766520737461636b696e67206c6f636b2c2069737375696e67206120227061727469616c20636f6d6d69746d656e742220666f72207468650a3b3b202020657874656e6465642d746f206379636c65732e0a3b3b202a4e657720696e20537461636b7320322e312a0a3b3b2054686973206d6574686f6420657874656e64732060737461636b65726027732063757272656e74206c6f636b757020666f7220616e206164646974696f6e616c2060657874656e642d636f756e74600a3b3b20202020616e64207061727469616c6c7920636f6d6d6974732074686f7365206e6577206379636c657320746f2060706f782d61646472600a28646566696e652d7075626c6963202864656c65676174652d737461636b2d657874656e640a202020202020202020202020202020202020202028737461636b6572207072696e636970616c290a202020202020202020202020202020202020202028706f782d61646472207b2076657273696f6e3a2028627566662031292c206861736862797465733a20286275666620333229207d290a202020202020202020202020202020202020202028657874656e642d636f756e742075696e7429290a20202020286c6574202828737461636b65722d696e666f20287374782d6163636f756e7420737461636b657229290a202020202020202020203b3b20746f20657874656e642c207468657265206d75737420616c726561647920626520616e20656e74727920696e2074686520737461636b696e672d73746174650a2020202020202020202028737461636b65722d73746174652028756e777261702120286765742d737461636b65722d696e666f20737461636b6572292028657272204552525f535441434b5f455854454e445f4e4f545f4c4f434b45442929290a2020202020202020202028616d6f756e742d757374782028676574206c6f636b656420737461636b65722d696e666f29290a2020202020202020202028756e6c6f636b2d686569676874202867657420756e6c6f636b2d68656967687420737461636b65722d696e666f29290a202020202020202020203b3b2066697273742d657874656e642d6379636c652077696c6c20626520746865206379636c6520696e2077686963682074782d73656e646572202a776f756c6420686176652a20756e6c6f636b65640a202020202020202020202866697273742d657874656e642d6379636c6520286275726e2d6865696768742d746f2d7265776172642d6379636c6520756e6c6f636b2d68656967687429290a20202020202020202020286375722d6379636c65202863757272656e742d706f782d7265776172642d6379636c6529290a202020202020202020203b3b206e6577206669727374206379636c652073686f756c64206265206d6178286375722d6379636c652c20737461636b65722d73746174652e66697273742d7265776172642d6379636c65290a20202020202020202020286375722d66697273742d7265776172642d6379636c6520286765742066697273742d7265776172642d6379636c6520737461636b65722d737461746529290a202020202020202020202866697273742d7265776172642d6379636c652028696620283e206375722d6379636c65206375722d66697273742d7265776172642d6379636c6529206375722d6379636c65206375722d66697273742d7265776172642d6379636c652929290a0a20202020203b3b206d7573742062652063616c6c6564207769746820706f73697469766520657874656e642d636f756e740a202020202028617373657274732120283e3d20657874656e642d636f756e74207531290a20202020202020202020202020202028657272204552525f535441434b494e475f494e56414c49445f4c4f434b5f504552494f4429290a0a2020202020286c65742028286c6173742d657874656e642d6379636c652020282d20282b2066697273742d657874656e642d6379636c6520657874656e642d636f756e742920753129290a2020202020202020202020286c6f636b2d706572696f6420282b20753120282d206c6173742d657874656e642d6379636c652066697273742d7265776172642d6379636c652929290a2020202020202020202020286e65772d756e6c6f636b2d687420287265776172642d6379636c652d746f2d6275726e2d68656967687420282b207531206c6173742d657874656e642d6379636c65292929290a0a2020202020203b3b206669727374206379636c65206d757374206265206166746572207468652063757272656e74206379636c650a20202020202028617373657274732120283e2066697273742d657874656e642d6379636c65206375722d6379636c65292028657272204552525f535441434b494e475f494e56414c49445f4c4f434b5f504552494f4429290a2020202020203b3b206c6f636b20706572696f64206d75737420626520706f7369746976650a20202020202028617373657274732120283e206c6f636b2d706572696f64207530292028657272204552525f535441434b494e475f494e56414c49445f4c4f434b5f504552494f4429290a0a2020202020203b3b206d7573742062652063616c6c6564206469726563746c79206279207468652074782d73656e646572206f7220627920616e20616c6c6f77656420636f6e74726163742d63616c6c65720a2020202020202861737365727473212028636865636b2d63616c6c65722d616c6c6f776564290a202020202020202028657272204552525f535441434b494e475f5045524d495353494f4e5f44454e49454429290a0a2020202020203b3b20737461636b6572206d757374206e6f74206265206469726563746c7920737461636b696e670a202020202020286173736572747321202869732d657120286c656e2028676574207265776172642d7365742d696e646578657320737461636b65722d73746174652929207530290a2020202020202020202020202020202028657272204552525f535441434b494e475f4e4f545f44454c45474154454429290a0a2020202020203b3b20737461636b6572206d7573742062652064656c65676174656420746f2074782d73656e6465720a202020202020286173736572747321202869732d65712028756e777261702120286765742064656c6567617465642d746f20737461636b65722d7374617465290a202020202020202020202020202020202020202020202020202020202020202028657272204552525f535441434b494e475f4e4f545f44454c45474154454429290a202020202020202020202020202020202020202020202074782d73656e646572290a2020202020202020202020202020202028657272204552525f535441434b494e475f5045524d495353494f4e5f44454e49454429290a0a2020202020203b3b20636865636b2076616c6964206c6f636b20706572696f640a2020202020202861737365727473212028636865636b2d706f782d6c6f636b2d706572696f64206c6f636b2d706572696f64290a202020202020202028657272204552525f535441434b494e475f494e56414c49445f4c4f434b5f504552494f4429290a0a2020202020203b3b20737461636b6572206d7573742062652063757272656e746c79206c6f636b65640a20202020202028617373657274732120283e20616d6f756e742d75737478207530290a202020202020202028657272204552525f535441434b5f455854454e445f4e4f545f4c4f434b454429290a0a2020202020203b3b20737461636b6572206d75737420686176652064656c65676174656420746f207468652063616c6c65720a202020202020286c657420282864656c65676174696f6e2d696e666f2028756e777261702120286765742d636865636b2d64656c65676174696f6e20737461636b6572292028657272204552525f535441434b494e475f5045524d495353494f4e5f44454e494544292929290a20202020202020203b3b206d75737420686176652064656c65676174656420746f2074782d73656e6465720a2020202020202020286173736572747321202869732d657120286765742064656c6567617465642d746f2064656c65676174696f6e2d696e666f292074782d73656e646572290a20202020202020202020202020202020202028657272204552525f535441434b494e475f5045524d495353494f4e5f44454e49454429290a20202020202020203b3b206d75737420686176652064656c65676174656420656e6f756768207374780a202020202020202028617373657274732120283e3d202867657420616d6f756e742d757374782064656c65676174696f6e2d696e666f2920616d6f756e742d75737478290a20202020202020202020202020202020202028657272204552525f44454c45474154494f4e5f544f4f5f4d5543485f4c4f434b454429290a20202020202020203b3b20696620706f782d61646472206973207365742c206d75737420626520657175616c20746f20706f782d616464720a202020202020202028617373657274732120286d61746368202867657420706f782d616464722064656c65676174696f6e2d696e666f290a202020202020202020202020202020202020202020202020207370656369666965642d706f782d61646472202869732d657120706f782d61646472207370656369666965642d706f782d61646472290a2020202020202020202020202020202020202020202020202074727565290a20202020202020202020202020202020202028657272204552525f44454c45474154494f4e5f504f585f414444525f524551554952454429290a20202020202020203b3b2064656c65676174696f6e206d757374206e6f7420657870697265206265666f7265206c6f636b20706572696f640a202020202020202028617373657274732120286d61746368202867657420756e74696c2d6275726e2d68742064656c65676174696f6e2d696e666f290a20202020202020202020202020202020202020202020202020756e74696c2d6275726e2d687420283e3d20756e74696c2d6275726e2d68740a202020202020202020202020202020202020202020202020202020202020202020202020202020202020206e65772d756e6c6f636b2d6874290a2020202020202020202020202020202020202020202074727565290a20202020202020202020202020202020202028657272204552525f44454c45474154494f4e5f455850495245535f445552494e475f4c4f434b2929290a0a2020202020203b3b2064656c656761746520737461636b696e6720646f6573206d696e696d616c2d63616e2d737461636b2d7374780a202020202020287472792120286d696e696d616c2d63616e2d737461636b2d73747820706f782d6164647220616d6f756e742d757374782066697273742d657874656e642d6379636c65206c6f636b2d706572696f6429290a0a2020202020203b3b2072656769737465722074686520506f58206164647265737320776974682074686520616d6f756e7420737461636b656420766961207061727469616c20737461636b696e670a2020202020203b3b2020206265666f72652069742063616e20626520696e636c7564656420696e2074686520726577617264207365742c2074686973206d75737420626520636f6d6d6974746564210a202020202020286164642d706f782d7061727469616c2d737461636b656420706f782d616464722066697273742d657874656e642d6379636c6520657874656e642d636f756e7420616d6f756e742d75737478290a0a202020202020286d61702d73657420737461636b696e672d73746174650a20202020202020207b20737461636b65723a20737461636b6572207d0a20202020202020207b20706f782d616464723a20706f782d616464722c0a202020202020202020207265776172642d7365742d696e64657865733a20286c697374292c0a2020202020202020202066697273742d7265776172642d6379636c653a2066697273742d7265776172642d6379636c652c0a202020202020202020206c6f636b2d706572696f643a206c6f636b2d706572696f642c0a2020202020202020202064656c6567617465642d746f3a2028736f6d652074782d73656e64657229207d290a0a2020202020203b3b2072657475726e20746865206c6f636b2d757020696e666f726d6174696f6e2c20736f20746865206e6f64652063616e2061637475616c6c79206361727279206f757420746865206c6f636b2e0a202020202020286f6b207b20737461636b65723a20737461636b65722c0a202020202020202020202020756e6c6f636b2d6275726e2d6865696768743a206e65772d756e6c6f636b2d6874207d292929290a0a3b3b2047657420746865205f63757272656e745f20506f5820737461636b696e672064656c65676174696f6e20696e666f726d6174696f6e20666f72206120737461636b65722e202049662074686520696e666f726d6174696f6e0a3b3b20697320657870697265642c206f722069662074686572652773206e65766572206265656e2073756368206120737461636b65722c207468656e2072657475726e73206e6f6e652e0a3b3b202a4e657720696e20537461636b7320322e312a0a28646566696e652d726561642d6f6e6c7920286765742d64656c65676174696f6e2d696e666f2028737461636b6572207072696e636970616c29290a20202020286765742d636865636b2d64656c65676174696f6e20737461636b6572290a290a0a3b3b2047657420746865206275726e20686569676874206174207768696368206120706172746963756c617220636f6e747261637420697320616c6c6f77656420746f20737461636b20666f72206120706172746963756c6172207072696e636970616c2e0a3b3b202a4e657720696e20537461636b7320322e312a0a3b3b2052657475726e732028736f6d652028736f6d6520582929206966205820697320746865206275726e206865696768742061742077686963682074686520616c6c6f77616e6365207465726d696e617465730a3b3b2052657475726e732028736f6d65206e6f6e6529206966207468652063616c6c657220697320616c6c6f77656420696e646566696e6974656c790a3b3b2052657475726e73206e6f6e65206966207468657265206973206e6f20616c6c6f77616e6365207265636f72640a28646566696e652d726561642d6f6e6c7920286765742d616c6c6f77616e63652d636f6e74726163742d63616c6c657273202873656e646572207072696e636970616c29202863616c6c696e672d636f6e7472616374207072696e636970616c29290a20202020286d61702d6765743f20616c6c6f77616e63652d636f6e74726163742d63616c6c657273207b2073656e6465723a2073656e6465722c20636f6e74726163742d63616c6c65723a2063616c6c696e672d636f6e7472616374207d290a290a0a3b3b20486f77206d616e7920506f582061646472657373657320696e207468697320726577617264206379636c653f0a3b3b202a4e657720696e20537461636b7320322e312a0a28646566696e652d726561642d6f6e6c7920286765742d6e756d2d7265776172642d7365742d706f782d61646472657373657320287265776172642d6379636c652075696e7429290a20202020286d6174636820286d61702d6765743f207265776172642d6379636c652d706f782d616464726573732d6c6973742d6c656e207b207265776172642d6379636c653a207265776172642d6379636c65207d290a20202020202020206e756d2d61646472730a20202020202020202020202028676574206c656e206e756d2d6164647273290a202020202020202075300a20202020290a290a0a3b3b20486f77206d616e7920755354582068617665206265656e206c6f636b656420757020666f722074686973206164647265737320736f206661722c206265666f7265207468652064656c656761746f7220636f6d6d697473207468656d3f0a3b3b202a4e657720696e20537461636b7320322e312a0a28646566696e652d726561642d6f6e6c7920286765742d7061727469616c2d737461636b65642d62792d6379636c652028706f782d61646472207b2076657273696f6e3a2028627566662031292c206861736862797465733a20286275666620333229207d2920287265776172642d6379636c652075696e7429202873656e646572207072696e636970616c29290a20202020286d61702d6765743f207061727469616c2d737461636b65642d62792d6379636c65207b20706f782d616464723a20706f782d616464722c207265776172642d6379636c653a207265776172642d6379636c652c2073656e6465723a2073656e646572207d290a290a0a3b3b20486f77206d616e792075535458206861766520766f74656420746f2072656a65637420506f5820696e206120676976656e20726577617264206379636c653f0a3b3b202a4e657720696e20537461636b7320322e312a0a28646566696e652d726561642d6f6e6c7920286765742d746f74616c2d706f782d72656a656374696f6e20287265776172642d6379636c652075696e7429290a20202020286d6174636820286d61702d6765743f20737461636b696e672d72656a656374696f6e207b207265776172642d6379636c653a207265776172642d6379636c65207d290a202020202020202072656a65637465640a2020202020202020202020202867657420616d6f756e742072656a6563746564290a202020202020202075300a20202020290a290a", "status": "success", "tx_index": 0, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": {"maps": [{"key": {"tuple": [{"name": "contract-caller", "type": "principal"}, {"name": "sender", "type": "principal"}]}, "name": "allowance-contract-callers", "value": {"tuple": [{"name": "until-burn-ht", "type": {"optional": "uint128"}}]}}, {"key": {"tuple": [{"name": "stacker", "type": "principal"}]}, "name": "delegation-state", "value": {"tuple": [{"name": "amount-ustx", "type": "uint128"}, {"name": "delegated-to", "type": "principal"}, {"name": "pox-addr", "type": {"optional": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 32}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}}, {"name": "until-burn-ht", "type": {"optional": "uint128"}}]}}, {"key": {"tuple": [{"name": "pox-addr", "type": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 32}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}, {"name": "reward-cycle", "type": "uint128"}, {"name": "sender", "type": "principal"}]}, "name": "logged-partial-stacked-by-cycle", "value": {"tuple": [{"name": "stacked-amount", "type": "uint128"}]}}, {"key": {"tuple": [{"name": "pox-addr", "type": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 32}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}, {"name": "reward-cycle", "type": "uint128"}, {"name": "sender", "type": "principal"}]}, "name": "partial-stacked-by-cycle", "value": {"tuple": [{"name": "stacked-amount", "type": "uint128"}]}}, {"key": {"tuple": [{"name": "index", "type": "uint128"}, {"name": "reward-cycle", "type": "uint128"}]}, "name": "reward-cycle-pox-address-list", "value": {"tuple": [{"name": "pox-addr", "type": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 32}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}, {"name": "stacker", "type": {"optional": "principal"}}, {"name": "total-ustx", "type": "uint128"}]}}, {"key": {"tuple": [{"name": "reward-cycle", "type": "uint128"}]}, "name": "reward-cycle-pox-address-list-len", "value": {"tuple": [{"name": "len", "type": "uint128"}]}}, {"key": {"tuple": [{"name": "reward-cycle", "type": "uint128"}]}, "name": "reward-cycle-total-stacked", "value": {"tuple": [{"name": "total-ustx", "type": "uint128"}]}}, {"key": {"tuple": [{"name": "reward-cycle", "type": "uint128"}]}, "name": "stacking-rejection", "value": {"tuple": [{"name": "amount", "type": "uint128"}]}}, {"key": {"tuple": [{"name": "reward-cycle", "type": "uint128"}, {"name": "stacker", "type": "principal"}]}, "name": "stacking-rejectors", "value": {"tuple": [{"name": "amount", "type": "uint128"}]}}, {"key": {"tuple": [{"name": "stacker", "type": "principal"}]}, "name": "stacking-state", "value": {"tuple": [{"name": "delegated-to", "type": {"optional": "principal"}}, {"name": "first-reward-cycle", "type": "uint128"}, {"name": "lock-period", "type": "uint128"}, {"name": "pox-addr", "type": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 32}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}, {"name": "reward-set-indexes", "type": {"list": {"type": "uint128", "length": 12}}}]}}], "epoch": "Epoch24", "functions": [{"args": [{"name": "cycle-index", "type": "uint128"}, {"name": "params", "type": {"tuple": [{"name": "amount-ustx", "type": "uint128"}, {"name": "first-reward-cycle", "type": "uint128"}, {"name": "i", "type": "uint128"}, {"name": "num-cycles", "type": "uint128"}, {"name": "pox-addr", "type": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 32}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}, {"name": "reward-set-indexes", "type": {"list": {"type": "uint128", "length": 12}}}, {"name": "stacker", "type": {"optional": "principal"}}]}}], "name": "add-pox-addr-to-ith-reward-cycle", "access": "private", "outputs": {"type": {"tuple": [{"name": "amount-ustx", "type": "uint128"}, {"name": "first-reward-cycle", "type": "uint128"}, {"name": "i", "type": "uint128"}, {"name": "num-cycles", "type": "uint128"}, {"name": "pox-addr", "type": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 32}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}, {"name": "reward-set-indexes", "type": {"list": {"type": "uint128", "length": 12}}}, {"name": "stacker", "type": {"optional": "principal"}}]}}}, {"args": [{"name": "pox-addr", "type": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 32}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}, {"name": "first-reward-cycle", "type": "uint128"}, {"name": "num-cycles", "type": "uint128"}, {"name": "amount-ustx", "type": "uint128"}, {"name": "stacker", "type": "principal"}], "name": "add-pox-addr-to-reward-cycles", "access": "private", "outputs": {"type": {"response": {"ok": {"list": {"type": "uint128", "length": 12}}, "error": "int128"}}}}, {"args": [{"name": "pox-addr", "type": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 32}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}, {"name": "first-reward-cycle", "type": "uint128"}, {"name": "num-cycles", "type": "uint128"}, {"name": "amount-ustx", "type": "uint128"}], "name": "add-pox-partial-stacked", "access": "private", "outputs": {"type": "bool"}}, {"args": [{"name": "cycle-index", "type": "uint128"}, {"name": "params", "type": {"tuple": [{"name": "amount-ustx", "type": "uint128"}, {"name": "num-cycles", "type": "uint128"}, {"name": "pox-addr", "type": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 32}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}, {"name": "reward-cycle", "type": "uint128"}]}}], "name": "add-pox-partial-stacked-to-ith-cycle", "access": "private", "outputs": {"type": {"tuple": [{"name": "amount-ustx", "type": "uint128"}, {"name": "num-cycles", "type": "uint128"}, {"name": "pox-addr", "type": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 32}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}, {"name": "reward-cycle", "type": "uint128"}]}}}, {"args": [{"name": "pox-addr", "type": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 32}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}, {"name": "reward-cycle", "type": "uint128"}, {"name": "amount-ustx", "type": "uint128"}, {"name": "stacker", "type": {"optional": "principal"}}], "name": "append-reward-cycle-pox-addr", "access": "private", "outputs": {"type": "uint128"}}, {"args": [{"name": "set-index", "type": "uint128"}, {"name": "data-res", "type": {"response": {"ok": {"tuple": [{"name": "cycle", "type": "uint128"}, {"name": "first-unlocked-cycle", "type": "uint128"}, {"name": "stacker", "type": "principal"}]}, "error": "int128"}}}], "name": "fold-unlock-reward-cycle", "access": "private", "outputs": {"type": {"response": {"ok": {"tuple": [{"name": "cycle", "type": "uint128"}, {"name": "first-unlocked-cycle", "type": "uint128"}, {"name": "stacker", "type": "principal"}]}, "error": "int128"}}}}, {"args": [{"name": "user", "type": "principal"}, {"name": "amount-locked", "type": "uint128"}, {"name": "cycle-to-unlock", "type": "uint128"}], "name": "handle-unlock", "access": "private", "outputs": {"type": {"response": {"ok": "bool", "error": "int128"}}}}, {"args": [{"name": "reward-cycle-index", "type": "uint128"}, {"name": "updates", "type": {"optional": {"tuple": [{"name": "add-amount", "type": "uint128"}, {"name": "first-cycle", "type": "uint128"}, {"name": "reward-cycle", "type": "uint128"}, {"name": "stacker", "type": "principal"}]}}}], "name": "increase-reward-cycle-entry", "access": "private", "outputs": {"type": {"optional": {"tuple": [{"name": "add-amount", "type": "uint128"}, {"name": "first-cycle", "type": "uint128"}, {"name": "reward-cycle", "type": "uint128"}, {"name": "stacker", "type": "principal"}]}}}}, {"args": [{"name": "pox-addr", "type": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 32}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}, {"name": "reward-cycle", "type": "uint128"}], "name": "inner-stack-aggregation-commit", "access": "private", "outputs": {"type": {"response": {"ok": "uint128", "error": "int128"}}}}, {"args": [{"name": "caller", "type": "principal"}, {"name": "until-burn-ht", "type": {"optional": "uint128"}}], "name": "allow-contract-caller", "access": "public", "outputs": {"type": {"response": {"ok": "bool", "error": "int128"}}}}, {"args": [{"name": "stacker", "type": "principal"}, {"name": "pox-addr", "type": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 32}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}, {"name": "extend-count", "type": "uint128"}], "name": "delegate-stack-extend", "access": "public", "outputs": {"type": {"response": {"ok": {"tuple": [{"name": "stacker", "type": "principal"}, {"name": "unlock-burn-height", "type": "uint128"}]}, "error": "int128"}}}}, {"args": [{"name": "stacker", "type": "principal"}, {"name": "pox-addr", "type": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 32}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}, {"name": "increase-by", "type": "uint128"}], "name": "delegate-stack-increase", "access": "public", "outputs": {"type": {"response": {"ok": {"tuple": [{"name": "stacker", "type": "principal"}, {"name": "total-locked", "type": "uint128"}]}, "error": "int128"}}}}, {"args": [{"name": "stacker", "type": "principal"}, {"name": "amount-ustx", "type": "uint128"}, {"name": "pox-addr", "type": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 32}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}, {"name": "start-burn-ht", "type": "uint128"}, {"name": "lock-period", "type": "uint128"}], "name": "delegate-stack-stx", "access": "public", "outputs": {"type": {"response": {"ok": {"tuple": [{"name": "lock-amount", "type": "uint128"}, {"name": "stacker", "type": "principal"}, {"name": "unlock-burn-height", "type": "uint128"}]}, "error": "int128"}}}}, {"args": [{"name": "amount-ustx", "type": "uint128"}, {"name": "delegate-to", "type": "principal"}, {"name": "until-burn-ht", "type": {"optional": "uint128"}}, {"name": "pox-addr", "type": {"optional": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 32}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}}], "name": "delegate-stx", "access": "public", "outputs": {"type": {"response": {"ok": "bool", "error": "int128"}}}}, {"args": [{"name": "caller", "type": "principal"}], "name": "disallow-contract-caller", "access": "public", "outputs": {"type": {"response": {"ok": "bool", "error": "int128"}}}}, {"args": [], "name": "reject-pox", "access": "public", "outputs": {"type": {"response": {"ok": "bool", "error": "int128"}}}}, {"args": [], "name": "revoke-delegate-stx", "access": "public", "outputs": {"type": {"response": {"ok": "bool", "error": "int128"}}}}, {"args": [{"name": "first-burn-height", "type": "uint128"}, {"name": "prepare-cycle-length", "type": "uint128"}, {"name": "reward-cycle-length", "type": "uint128"}, {"name": "rejection-fraction", "type": "uint128"}, {"name": "begin-2-1-reward-cycle", "type": "uint128"}], "name": "set-burnchain-parameters", "access": "public", "outputs": {"type": {"response": {"ok": "bool", "error": "int128"}}}}, {"args": [{"name": "pox-addr", "type": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 32}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}, {"name": "reward-cycle", "type": "uint128"}], "name": "stack-aggregation-commit", "access": "public", "outputs": {"type": {"response": {"ok": "bool", "error": "int128"}}}}, {"args": [{"name": "pox-addr", "type": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 32}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}, {"name": "reward-cycle", "type": "uint128"}], "name": "stack-aggregation-commit-indexed", "access": "public", "outputs": {"type": {"response": {"ok": "uint128", "error": "int128"}}}}, {"args": [{"name": "pox-addr", "type": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 32}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}, {"name": "reward-cycle", "type": "uint128"}, {"name": "reward-cycle-index", "type": "uint128"}], "name": "stack-aggregation-increase", "access": "public", "outputs": {"type": {"response": {"ok": "bool", "error": "int128"}}}}, {"args": [{"name": "extend-count", "type": "uint128"}, {"name": "pox-addr", "type": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 32}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}], "name": "stack-extend", "access": "public", "outputs": {"type": {"response": {"ok": {"tuple": [{"name": "stacker", "type": "principal"}, {"name": "unlock-burn-height", "type": "uint128"}]}, "error": "int128"}}}}, {"args": [{"name": "increase-by", "type": "uint128"}], "name": "stack-increase", "access": "public", "outputs": {"type": {"response": {"ok": {"tuple": [{"name": "stacker", "type": "principal"}, {"name": "total-locked", "type": "uint128"}]}, "error": "int128"}}}}, {"args": [{"name": "amount-ustx", "type": "uint128"}, {"name": "pox-addr", "type": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 32}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}, {"name": "start-burn-ht", "type": "uint128"}, {"name": "lock-period", "type": "uint128"}], "name": "stack-stx", "access": "public", "outputs": {"type": {"response": {"ok": {"tuple": [{"name": "lock-amount", "type": "uint128"}, {"name": "stacker", "type": "principal"}, {"name": "unlock-burn-height", "type": "uint128"}]}, "error": "int128"}}}}, {"args": [{"name": "height", "type": "uint128"}], "name": "burn-height-to-reward-cycle", "access": "read_only", "outputs": {"type": "uint128"}}, {"args": [{"name": "pox-addr", "type": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 32}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}, {"name": "amount-ustx", "type": "uint128"}, {"name": "first-reward-cycle", "type": "uint128"}, {"name": "num-cycles", "type": "uint128"}], "name": "can-stack-stx", "access": "read_only", "outputs": {"type": {"response": {"ok": "bool", "error": "int128"}}}}, {"args": [], "name": "check-caller-allowed", "access": "read_only", "outputs": {"type": "bool"}}, {"args": [{"name": "version", "type": {"buffer": {"length": 1}}}, {"name": "hashbytes", "type": {"buffer": {"length": 32}}}], "name": "check-pox-addr-hashbytes", "access": "read_only", "outputs": {"type": "bool"}}, {"args": [{"name": "version", "type": {"buffer": {"length": 1}}}], "name": "check-pox-addr-version", "access": "read_only", "outputs": {"type": "bool"}}, {"args": [{"name": "lock-period", "type": "uint128"}], "name": "check-pox-lock-period", "access": "read_only", "outputs": {"type": "bool"}}, {"args": [], "name": "current-pox-reward-cycle", "access": "read_only", "outputs": {"type": "uint128"}}, {"args": [{"name": "sender", "type": "principal"}, {"name": "calling-contract", "type": "principal"}], "name": "get-allowance-contract-callers", "access": "read_only", "outputs": {"type": {"optional": {"tuple": [{"name": "until-burn-ht", "type": {"optional": "uint128"}}]}}}}, {"args": [{"name": "stacker", "type": "principal"}], "name": "get-check-delegation", "access": "read_only", "outputs": {"type": {"optional": {"tuple": [{"name": "amount-ustx", "type": "uint128"}, {"name": "delegated-to", "type": "principal"}, {"name": "pox-addr", "type": {"optional": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 32}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}}, {"name": "until-burn-ht", "type": {"optional": "uint128"}}]}}}}, {"args": [{"name": "stacker", "type": "principal"}], "name": "get-delegation-info", "access": "read_only", "outputs": {"type": {"optional": {"tuple": [{"name": "amount-ustx", "type": "uint128"}, {"name": "delegated-to", "type": "principal"}, {"name": "pox-addr", "type": {"optional": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 32}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}}, {"name": "until-burn-ht", "type": {"optional": "uint128"}}]}}}}, {"args": [{"name": "reward-cycle", "type": "uint128"}], "name": "get-num-reward-set-pox-addresses", "access": "read_only", "outputs": {"type": "uint128"}}, {"args": [{"name": "pox-addr", "type": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 32}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}, {"name": "reward-cycle", "type": "uint128"}, {"name": "sender", "type": "principal"}], "name": "get-partial-stacked-by-cycle", "access": "read_only", "outputs": {"type": {"optional": {"tuple": [{"name": "stacked-amount", "type": "uint128"}]}}}}, {"args": [], "name": "get-pox-info", "access": "read_only", "outputs": {"type": {"response": {"ok": {"tuple": [{"name": "current-rejection-votes", "type": "uint128"}, {"name": "first-burnchain-block-height", "type": "uint128"}, {"name": "min-amount-ustx", "type": "uint128"}, {"name": "prepare-cycle-length", "type": "uint128"}, {"name": "rejection-fraction", "type": "uint128"}, {"name": "reward-cycle-id", "type": "uint128"}, {"name": "reward-cycle-length", "type": "uint128"}, {"name": "total-liquid-supply-ustx", "type": "uint128"}]}, "error": "none"}}}}, {"args": [{"name": "stacker", "type": "principal"}, {"name": "reward-cycle", "type": "uint128"}], "name": "get-pox-rejection", "access": "read_only", "outputs": {"type": {"optional": {"tuple": [{"name": "amount", "type": "uint128"}]}}}}, {"args": [{"name": "reward-cycle", "type": "uint128"}, {"name": "index", "type": "uint128"}], "name": "get-reward-set-pox-address", "access": "read_only", "outputs": {"type": {"optional": {"tuple": [{"name": "pox-addr", "type": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 32}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}, {"name": "stacker", "type": {"optional": "principal"}}, {"name": "total-ustx", "type": "uint128"}]}}}}, {"args": [{"name": "reward-cycle", "type": "uint128"}], "name": "get-reward-set-size", "access": "read_only", "outputs": {"type": "uint128"}}, {"args": [{"name": "stacker", "type": "principal"}], "name": "get-stacker-info", "access": "read_only", "outputs": {"type": {"optional": {"tuple": [{"name": "delegated-to", "type": {"optional": "principal"}}, {"name": "first-reward-cycle", "type": "uint128"}, {"name": "lock-period", "type": "uint128"}, {"name": "pox-addr", "type": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 32}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}, {"name": "reward-set-indexes", "type": {"list": {"type": "uint128", "length": 12}}}]}}}}, {"args": [], "name": "get-stacking-minimum", "access": "read_only", "outputs": {"type": "uint128"}}, {"args": [{"name": "reward-cycle", "type": "uint128"}], "name": "get-total-pox-rejection", "access": "read_only", "outputs": {"type": "uint128"}}, {"args": [{"name": "reward-cycle", "type": "uint128"}], "name": "get-total-ustx-stacked", "access": "read_only", "outputs": {"type": "uint128"}}, {"args": [{"name": "reward-cycle", "type": "uint128"}], "name": "is-pox-active", "access": "read_only", "outputs": {"type": "bool"}}, {"args": [{"name": "pox-addr", "type": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 32}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}, {"name": "amount-ustx", "type": "uint128"}, {"name": "first-reward-cycle", "type": "uint128"}, {"name": "num-cycles", "type": "uint128"}], "name": "minimal-can-stack-stx", "access": "read_only", "outputs": {"type": {"response": {"ok": "bool", "error": "int128"}}}}, {"args": [], "name": "next-cycle-rejection-votes", "access": "read_only", "outputs": {"type": "uint128"}}, {"args": [{"name": "cycle", "type": "uint128"}], "name": "reward-cycle-to-burn-height", "access": "read_only", "outputs": {"type": "uint128"}}], "variables": [{"name": "ADDRESS_VERSION_NATIVE_P2TR", "type": {"buffer": {"length": 1}}, "access": "constant"}, {"name": "ADDRESS_VERSION_NATIVE_P2WPKH", "type": {"buffer": {"length": 1}}, "access": "constant"}, {"name": "ADDRESS_VERSION_NATIVE_P2WSH", "type": {"buffer": {"length": 1}}, "access": "constant"}, {"name": "ADDRESS_VERSION_P2PKH", "type": {"buffer": {"length": 1}}, "access": "constant"}, {"name": "ADDRESS_VERSION_P2SH", "type": {"buffer": {"length": 1}}, "access": "constant"}, {"name": "ADDRESS_VERSION_P2WPKH", "type": {"buffer": {"length": 1}}, "access": "constant"}, {"name": "ADDRESS_VERSION_P2WSH", "type": {"buffer": {"length": 1}}, "access": "constant"}, {"name": "ERR_DELEGATION_EXPIRES_DURING_LOCK", "type": "int128", "access": "constant"}, {"name": "ERR_DELEGATION_NO_REWARD_SLOT", "type": "int128", "access": "constant"}, {"name": "ERR_DELEGATION_POX_ADDR_REQUIRED", "type": "int128", "access": "constant"}, {"name": "ERR_DELEGATION_TOO_MUCH_LOCKED", "type": "int128", "access": "constant"}, {"name": "ERR_DELEGATION_WRONG_REWARD_SLOT", "type": "int128", "access": "constant"}, {"name": "ERR_INVALID_START_BURN_HEIGHT", "type": "int128", "access": "constant"}, {"name": "ERR_NOT_ALLOWED", "type": "int128", "access": "constant"}, {"name": "ERR_NOT_CURRENT_STACKER", "type": "int128", "access": "constant"}, {"name": "ERR_STACKING_ALREADY_DELEGATED", "type": "int128", "access": "constant"}, {"name": "ERR_STACKING_ALREADY_REJECTED", "type": "int128", "access": "constant"}, {"name": "ERR_STACKING_ALREADY_STACKED", "type": "int128", "access": "constant"}, {"name": "ERR_STACKING_CORRUPTED_STATE", "type": "int128", "access": "constant"}, {"name": "ERR_STACKING_EXPIRED", "type": "int128", "access": "constant"}, {"name": "ERR_STACKING_INSUFFICIENT_FUNDS", "type": "int128", "access": "constant"}, {"name": "ERR_STACKING_INVALID_AMOUNT", "type": "int128", "access": "constant"}, {"name": "ERR_STACKING_INVALID_LOCK_PERIOD", "type": "int128", "access": "constant"}, {"name": "ERR_STACKING_INVALID_POX_ADDRESS", "type": "int128", "access": "constant"}, {"name": "ERR_STACKING_IS_DELEGATED", "type": "int128", "access": "constant"}, {"name": "ERR_STACKING_NOT_DELEGATED", "type": "int128", "access": "constant"}, {"name": "ERR_STACKING_NO_SUCH_PRINCIPAL", "type": "int128", "access": "constant"}, {"name": "ERR_STACKING_PERMISSION_DENIED", "type": "int128", "access": "constant"}, {"name": "ERR_STACKING_POX_ADDRESS_IN_USE", "type": "int128", "access": "constant"}, {"name": "ERR_STACKING_STX_LOCKED", "type": "int128", "access": "constant"}, {"name": "ERR_STACKING_THRESHOLD_NOT_MET", "type": "int128", "access": "constant"}, {"name": "ERR_STACKING_UNREACHABLE", "type": "int128", "access": "constant"}, {"name": "ERR_STACK_EXTEND_NOT_LOCKED", "type": "int128", "access": "constant"}, {"name": "ERR_STACK_INCREASE_NOT_LOCKED", "type": "int128", "access": "constant"}, {"name": "MAX_ADDRESS_VERSION", "type": "uint128", "access": "constant"}, {"name": "MAX_ADDRESS_VERSION_BUFF_20", "type": "uint128", "access": "constant"}, {"name": "MAX_ADDRESS_VERSION_BUFF_32", "type": "uint128", "access": "constant"}, {"name": "MAX_POX_REWARD_CYCLES", "type": "uint128", "access": "constant"}, {"name": "MIN_POX_REWARD_CYCLES", "type": "uint128", "access": "constant"}, {"name": "POX_REJECTION_FRACTION", "type": "uint128", "access": "constant"}, {"name": "PREPARE_CYCLE_LENGTH", "type": "uint128", "access": "constant"}, {"name": "REWARD_CYCLE_LENGTH", "type": "uint128", "access": "constant"}, {"name": "STACKING_THRESHOLD_100", "type": "uint128", "access": "constant"}, {"name": "STACKING_THRESHOLD_25", "type": "uint128", "access": "constant"}, {"name": "configured", "type": "bool", "access": "variable"}, {"name": "first-2-1-reward-cycle", "type": "uint128", "access": "variable"}, {"name": "first-burnchain-block-height", "type": "uint128", "access": "variable"}, {"name": "pox-prepare-cycle-length", "type": "uint128", "access": "variable"}, {"name": "pox-rejection-fraction", "type": "uint128", "access": "variable"}, {"name": "pox-reward-cycle-length", "type": "uint128", "access": "variable"}], "clarity_version": "Clarity2", "fungible_tokens": [], "non_fungible_tokens": []}, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}, {"txid": "0xf361dd2fa25ede48aaa6831d3952da149046f229d72266f045811ad560953781", "raw_tx": "0x808000000004001dc27eba0247f8cc9575e7d45e50a0bc7e72427d0000000000000003000000000000000000017c59f233a2ef27876331984222c361722c34f5cf224634ebb49e531cb9db93a36bed359bffc70cf9b0c8bb8fbf843726c7f437a519e65c6398fd417887e8a1af010200000000050000000000000000000000000000000000000000000000000000000000000000051a2f438f17611dd028079f201915ccfcbcbfe49991", "status": "success", "tx_index": 1, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": null, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}], "anchored_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "burn_block_hash": "0x4e1428aa1464183b1458d10b72aacd39884e37956a84c13d7c502f99e211e08b", "burn_block_time": 1710344065, "index_block_hash": "0x5b1fa7d3e98770f74a1906e0eb81fb31012d231cc875b058de7208007abce680", "burn_block_height": 107, "parent_block_hash": "0x4edbbbd43c33e5df458174cf72818a411202c9ab3a4c2e2ebb1e1744c466c2a6", "parent_microblock": "0x0000000000000000000000000000000000000000000000000000000000000000", "pox_v1_unlock_height": 104, "pox_v2_unlock_height": 106, "pox_v3_unlock_height": 109, "matured_miner_rewards": [], "parent_burn_block_hash": "0x4014f1e3f77f7d95dc6fbdb5a0ad1de128ecaa5eaa4dc7e9c9adf8a1ea1142c6", "parent_index_block_hash": "0xa76eb2fd35adbb5ad672a2dea56f92b407bdddd2c15df39e86dd7f28a041277d", "parent_burn_block_height": 105, "confirmed_microblocks_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "parent_microblock_sequence": 0, "parent_burn_block_timestamp": 1710344065} +114 2024-03-13 15:34:25.033127+00 /new_mempool_tx ["0x8080000000040062b0e91cc557e583c3d1f9dfe468ace76d2f03740000000000000000000000000000012c0000b96355dc82b63c7e1de129790f7f7c37c724b88aa9e7bc16277045ea700caba37fe59ce7e3b58917735acc171707f6de7b1b979d8a951f1ba23a0d59ec52dac803020000000000051a93b082ee51d78faf5cc3d84a1c1591246c4965b000000000000003e800000000000000000000000000000000000000000000000000000000000000000000"] +115 2024-03-13 15:34:25.414914+00 /new_burn_block {"burn_amount": 20000, "burn_block_hash": "0x12bc79e6459d15f9731d559d8acba72fbab32b03c1ee5a3fae3d898de4bfdc09", "burn_block_height": 108, "reward_recipients": [], "reward_slot_holders": []} +116 2024-03-13 15:34:25.59296+00 /new_block {"events": [{"txid": "0x87a8cb8eaa6c7a99953c5586ff9db418da8d938e81bb7bd5bfe49053c10ee8b3", "type": "stx_transfer_event", "committed": true, "event_index": 0, "stx_transfer_event": {"memo": "00000000000000000000000000000000000000000000000000000000000000000000", "amount": "1000", "sender": "ST1HB1T8WRNBYB0Y3T7WXZS38NKKPTBR3EG9EPJKR", "recipient": "ST29V10QEA7BRZBTWRFC4M70NJ4J6RJB5P1C6EE84"}}], "block_hash": "0x0e9ebebd58fab91c8c83143ec9af05d58d6c554e9fb562ec122855e81bc487be", "miner_txid": "0x57adf65ef3976e8144b2cedff4be95390c91f8a070ed1490dda94db893406879", "block_height": 5, "transactions": [{"txid": "0xecd32c2417cbdd04f655d7073876c225f7db3bd1e4427a3483cffb42d01b6a57", "raw_tx": "0x80000000000400000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030200000000060205706f782d34000136f23b3b20546865202e706f782d3420636f6e74726163740a3b3b204572726f7220636f6465730a28646566696e652d636f6e7374616e74204552525f535441434b494e475f554e524541434841424c4520323535290a28646566696e652d636f6e7374616e74204552525f535441434b494e475f434f525255505445445f535441544520323534290a28646566696e652d636f6e7374616e74204552525f535441434b494e475f494e53554646494349454e545f46554e44532031290a28646566696e652d636f6e7374616e74204552525f535441434b494e475f494e56414c49445f4c4f434b5f504552494f442032290a28646566696e652d636f6e7374616e74204552525f535441434b494e475f414c52454144595f535441434b45442033290a28646566696e652d636f6e7374616e74204552525f535441434b494e475f4e4f5f535543485f5052494e434950414c2034290a28646566696e652d636f6e7374616e74204552525f535441434b494e475f455850495245442035290a28646566696e652d636f6e7374616e74204552525f535441434b494e475f5354585f4c4f434b45442036290a28646566696e652d636f6e7374616e74204552525f535441434b494e475f5045524d495353494f4e5f44454e4945442039290a28646566696e652d636f6e7374616e74204552525f535441434b494e475f5448524553484f4c445f4e4f545f4d4554203131290a28646566696e652d636f6e7374616e74204552525f535441434b494e475f504f585f414444524553535f494e5f555345203132290a28646566696e652d636f6e7374616e74204552525f535441434b494e475f494e56414c49445f504f585f41444452455353203133290a0a28646566696e652d636f6e7374616e74204552525f535441434b494e475f494e56414c49445f414d4f554e54203138290a28646566696e652d636f6e7374616e74204552525f4e4f545f414c4c4f574544203139290a28646566696e652d636f6e7374616e74204552525f535441434b494e475f414c52454144595f44454c454741544544203230290a28646566696e652d636f6e7374616e74204552525f44454c45474154494f4e5f455850495245535f445552494e475f4c4f434b203231290a28646566696e652d636f6e7374616e74204552525f44454c45474154494f4e5f544f4f5f4d5543485f4c4f434b4544203232290a28646566696e652d636f6e7374616e74204552525f44454c45474154494f4e5f504f585f414444525f5245515549524544203233290a28646566696e652d636f6e7374616e74204552525f494e56414c49445f53544152545f4255524e5f484549474854203234290a28646566696e652d636f6e7374616e74204552525f4e4f545f43555252454e545f535441434b4552203235290a28646566696e652d636f6e7374616e74204552525f535441434b5f455854454e445f4e4f545f4c4f434b4544203236290a28646566696e652d636f6e7374616e74204552525f535441434b5f494e4352454153455f4e4f545f4c4f434b4544203237290a28646566696e652d636f6e7374616e74204552525f44454c45474154494f4e5f4e4f5f5245574152445f534c4f54203238290a28646566696e652d636f6e7374616e74204552525f44454c45474154494f4e5f57524f4e475f5245574152445f534c4f54203239290a28646566696e652d636f6e7374616e74204552525f535441434b494e475f49535f44454c454741544544203330290a28646566696e652d636f6e7374616e74204552525f535441434b494e475f4e4f545f44454c454741544544203331290a28646566696e652d636f6e7374616e74204552525f494e56414c49445f5349474e45525f4b4559203332290a28646566696e652d636f6e7374616e74204552525f5245555345445f5349474e45525f4b4559203333290a28646566696e652d636f6e7374616e74204552525f44454c45474154494f4e5f414c52454144595f5245564f4b4544203334290a28646566696e652d636f6e7374616e74204552525f494e56414c49445f5349474e41545552455f5055424b4559203335290a28646566696e652d636f6e7374616e74204552525f494e56414c49445f5349474e41545552455f5245434f564552203336290a28646566696e652d636f6e7374616e74204552525f494e56414c49445f5245574152445f4359434c45203337290a28646566696e652d636f6e7374616e74204552525f5349474e45525f415554485f414d4f554e545f544f4f5f48494748203338290a28646566696e652d636f6e7374616e74204552525f5349474e45525f415554485f55534544203339290a28646566696e652d636f6e7374616e74204552525f494e56414c49445f494e435245415345203430290a0a3b3b2056616c69642076616c75657320666f72206275726e636861696e20616464726573732076657273696f6e732e0a3b3b20546865736520666972737420666f757220636f72726573706f6e6420746f20616464726573732068617368206d6f64657320696e20537461636b7320322e312c0a3b3b20616e642061726520646566696e656420696e20706f782d6d61696e6e65742e636c617220616e6420706f782d746573746e65742e636c61722028736f20746865790a3b3b2063616e6e6f7420626520646566696e6564206865726520616761696e292e0a28646566696e652d636f6e7374616e7420414444524553535f56455253494f4e5f5032504b482030783030290a28646566696e652d636f6e7374616e7420414444524553535f56455253494f4e5f503253482030783031290a28646566696e652d636f6e7374616e7420414444524553535f56455253494f4e5f503257504b482030783032290a28646566696e652d636f6e7374616e7420414444524553535f56455253494f4e5f50325753482030783033290a28646566696e652d636f6e7374616e7420414444524553535f56455253494f4e5f4e41544956455f503257504b482030783034290a28646566696e652d636f6e7374616e7420414444524553535f56455253494f4e5f4e41544956455f50325753482030783035290a28646566696e652d636f6e7374616e7420414444524553535f56455253494f4e5f4e41544956455f503254522030783036290a0a3b3b2056616c75657320666f7220737461636b7320616464726573732076657273696f6e730a28646566696e652d636f6e7374616e7420535441434b535f414444525f56455253494f4e5f4d41494e4e45542030783136290a28646566696e652d636f6e7374616e7420535441434b535f414444525f56455253494f4e5f544553544e45542030783161290a0a3b3b204b65657020746865736520636f6e7374616e747320696e206c6f636b2d7374657020776974682074686520616464726573732076657273696f6e2062756666732061626f76650a3b3b204d6178696d756d2076616c7565206f6620616e20616464726573732076657273696f6e20617320612075696e740a28646566696e652d636f6e7374616e74204d41585f414444524553535f56455253494f4e207536290a3b3b204d6178696d756d2076616c7565206f6620616e20616464726573732076657273696f6e20746861742068617320612032302d62797465206861736862797465730a3b3b2028307830302c20307830312c20307830322c20307830332c20616e64203078303420686176652032302d6279746520686173686279746573290a28646566696e652d636f6e7374616e74204d41585f414444524553535f56455253494f4e5f425546465f3230207534290a3b3b204d6178696d756d2076616c7565206f6620616e20616464726573732076657273696f6e20746861742068617320612033322d62797465206861736862797465730a3b3b20283078303520616e64203078303620686176652033322d6279746520686173686279746573290a28646566696e652d636f6e7374616e74204d41585f414444524553535f56455253494f4e5f425546465f3332207536290a0a3b3b20506f58206d61696e6e657420636f6e7374616e74730a3b3b204d696e2f6d6178206e756d626572206f6620726577617264206379636c657320755354582063616e206265206c6f636b656420666f720a28646566696e652d636f6e7374616e74204d494e5f504f585f5245574152445f4359434c4553207531290a28646566696e652d636f6e7374616e74204d41585f504f585f5245574152445f4359434c455320753132290a0a3b3b2044656661756c74206c656e677468206f662074686520506f5820726567697374726174696f6e2077696e646f772c20696e206275726e636861696e20626c6f636b732e0a28646566696e652d636f6e7374616e7420505245504152455f4359434c455f4c454e475448202869662069732d696e2d6d61696e6e657420753130302075353029290a0a3b3b2044656661756c74206c656e677468206f662074686520506f5820726577617264206379636c652c20696e206275726e636861696e20626c6f636b732e0a28646566696e652d636f6e7374616e74205245574152445f4359434c455f4c454e475448202869662069732d696e2d6d61696e6e657420753231303020753130353029290a0a3b3b20537461636b696e67207468726573686f6c64730a28646566696e652d636f6e7374616e7420535441434b494e475f5448524553484f4c445f3235202869662069732d696e2d6d61696e6e65742075323030303020753830303029290a0a3b3b205349503138206d657373616765207072656669780a28646566696e652d636f6e7374616e74205349503031385f4d53475f505245464958203078353334393530333033313338290a0a3b3b2044617461207661727320746861742073746f7265206120636f7079206f6620746865206275726e636861696e20636f6e66696775726174696f6e2e0a3b3b20496d706c656d656e74656420617320646174612d766172732c20736f207468617420646966666572656e7420636f6e66696775726174696f6e732063616e2062650a3b3b207573656420696e20652e672e2074657374206861726e65737365732e0a28646566696e652d646174612d76617220706f782d707265706172652d6379636c652d6c656e6774682075696e7420505245504152455f4359434c455f4c454e475448290a28646566696e652d646174612d76617220706f782d7265776172642d6379636c652d6c656e6774682075696e74205245574152445f4359434c455f4c454e475448290a28646566696e652d646174612d7661722066697273742d6275726e636861696e2d626c6f636b2d6865696768742075696e74207530290a28646566696e652d646174612d76617220636f6e6669677572656420626f6f6c2066616c7365290a28646566696e652d646174612d7661722066697273742d706f782d342d7265776172642d6379636c652075696e74207530290a0a3b3b20546869732066756e6374696f6e2063616e206f6e6c792062652063616c6c6564206f6e63652c207768656e20697420626f6f74732075700a28646566696e652d7075626c696320287365742d6275726e636861696e2d706172616d6574657273202866697273742d6275726e2d6865696768742075696e74290a202020202020202020202020202020202020202020202020202020202020202020202020202020202028707265706172652d6379636c652d6c656e6774682075696e74290a2020202020202020202020202020202020202020202020202020202020202020202020202020202020287265776172642d6379636c652d6c656e6774682075696e74290a202020202020202020202020202020202020202020202020202020202020202020202020202020202028626567696e2d706f782d342d7265776172642d6379636c652075696e7429290a2020202028626567696e0a202020202020202028617373657274732120286e6f7420287661722d67657420636f6e6669677572656429292028657272204552525f4e4f545f414c4c4f57454429290a2020202020202020287661722d7365742066697273742d6275726e636861696e2d626c6f636b2d6865696768742066697273742d6275726e2d686569676874290a2020202020202020287661722d73657420706f782d707265706172652d6379636c652d6c656e67746820707265706172652d6379636c652d6c656e677468290a2020202020202020287661722d73657420706f782d7265776172642d6379636c652d6c656e677468207265776172642d6379636c652d6c656e677468290a2020202020202020287661722d7365742066697273742d706f782d342d7265776172642d6379636c6520626567696e2d706f782d342d7265776172642d6379636c65290a2020202020202020287661722d73657420636f6e666967757265642074727565290a2020202020202020286f6b207472756529290a290a0a3b3b2054686520537461636b696e67206c6f636b2d757020737461746520616e64206173736f636961746564206d657461646174612e0a3b3b205265636f7264732061726520696e73657274656420696e746f2074686973206d6170207669612060737461636b2d737478602c206064656c65676174652d737461636b2d737478602c2060737461636b2d657874656e64600a3b3b20206064656c65676174652d737461636b2d657874656e646020616e64206275726e636861696e207472616e73616374696f6e7320666f7220696e766f6b696e672060737461636b2d737478602c206574632e0a3b3b205265636f7264732077696c6c2062652064656c657465642066726f6d2074686973206d6170207768656e206175746f2d756e6c6f636b73206172652070726f6365737365640a3b3b0a3b3b2054686973206d61702064652d6e6f726d616c697a657320736f6d652073746174652066726f6d2074686520607265776172642d6379636c652d706f782d616464726573732d6c69737460206d61700a3b3b2020616e64207468652060706f782d346020636f6e747261637420747269657320746f206b656570207468697320737461746520696e2073796e63207769746820746865207265776172642d6379636c650a3b3b202073746174652e20546865206d616a6f7220696e76617269616e7473206f6620746869732060737461636b696e672d737461746560206d6170206172653a0a3b3b2020202028312920616e7920656e74727920696e20607265776172642d6379636c652d706f782d616464726573732d6c6973746020776974682060736f6d6520737461636b65726020706f696e747320746f2061207265616c2060737461636b696e672d7374617465600a3b3b202020202832292060737461636b696e672d73746174652e7265776172642d7365742d696e646578657360206d6174636865732074686520696e646578206f66207468617420607265776172642d6379636c652d706f782d616464726573732d6c697374600a3b3b2020202028332920616c6c2060737461636b696e672d73746174652e7265776172642d7365742d696e646578657360206d617463682074686520696e646578206f6620746865697220726577617264206379636c6520656e74726965730a3b3b202020202834292060737461636b696e672d73746174652e706f782d6164647260206d61746368657320607265776172642d6379636c652d706f782d616464726573732d6c6973742e706f782d61646472600a3b3b20202020283529206966207365742c20286c656e207265776172642d7365742d696e646578657329203d3d206c6f636b2d706572696f640a3b3b2020202028362920287265776172642d6379636c652d746f2d6275726e2d68656967687420282b206c6f636b2d706572696f642066697273742d7265776172642d6379636c652929203d3d202867657420756e6c6f636b2d68656967687420287374782d6163636f756e7420737461636b657229290a3b3b2020546865736520696e76617269616e7473206f6e6c7920686f6c64207768696c6520606375722d7265776172642d6379636c65203c20282b206c6f636b2d706572696f642066697273742d7265776172642d6379636c6529600a3b3b0a28646566696e652d6d617020737461636b696e672d73746174650a202020207b20737461636b65723a207072696e636970616c207d0a202020207b0a20202020202020203b3b204465736372697074696f6e206f662074686520756e6465726c79696e67206275726e636861696e206164647265737320746861742077696c6c0a20202020202020203b3b207265636569766520506f5827656420746f6b656e732e205472616e736c6174696e67207468697320696e746f20616e20616464726573730a20202020202020203b3b20646570656e6473206f6e20746865206275726e636861696e206265696e6720757365642e20205768656e20426974636f696e2069730a20202020202020203b3b20746865206275726e636861696e2c20746869732067657473207472616e736c6174656420696e746f2061207032706b682c20703273682c0a20202020202020203b3b20703277706b682d703273682c2070327773682d703273682c20703277706b682c2070327773682c206f722070327472205554584f2c0a20202020202020203b3b20646570656e64696e67206f6e207468652076657273696f6e2e2020546865206068617368627974657360206669656c64202a6d7573742a2062650a20202020202020203b3b20656974686572203230206279746573206f722033322062797465732c20646570656e64696e67206f6e20746865206f75747075742e0a2020202020202020706f782d616464723a207b2076657273696f6e3a2028627566662031292c206861736862797465733a20286275666620333229207d2c0a20202020202020203b3b20686f77206c6f6e6720746865207553545820617265206c6f636b65642c20696e20726577617264206379636c65732e0a20202020202020206c6f636b2d706572696f643a2075696e742c0a20202020202020203b3b20726577617264206379636c65207768656e207265776172647320626567696e0a202020202020202066697273742d7265776172642d6379636c653a2075696e742c0a20202020202020203b3b20696e646578657320696e2065616368207265776172642d736574206173736f6369617465642077697468207468697320757365722e0a20202020202020203b3b20746865736520696e646578657320617265206f6e6c792076616c6964206c6f6f6b696e6720666f72776172642066726f6d0a20202020202020203b3b20206066697273742d7265776172642d6379636c65602028692e652e2c207468657920646f206e6f7420636f72726573706f6e640a20202020202020203b3b2020746f20656e747269657320696e2074686520726577617264207365742074686174206d61792068617665206265656e2066726f6d0a20202020202020203b3b202070726576696f757320737461636b2d7374782063616c6c732c206f72207072696f7220746f20616e20657874656e64290a20202020202020207265776172642d7365742d696e64657865733a20286c6973742031322075696e74292c0a20202020202020203b3b207072696e636970616c206f66207468652064656c65676174652c20696620737461636b6572206861732064656c6567617465640a202020202020202064656c6567617465642d746f3a20286f7074696f6e616c207072696e636970616c292c0a202020207d0a290a0a3b3b2044656c65676174696f6e2072656c6174696f6e73686970730a28646566696e652d6d61702064656c65676174696f6e2d73746174650a202020207b20737461636b65723a207072696e636970616c207d0a202020207b0a2020202020202020616d6f756e742d757374783a2075696e742c20202020202020202020202020203b3b20686f77206d616e7920755354582064656c6567617465643f0a202020202020202064656c6567617465642d746f3a207072696e636970616c2c20202020202020203b3b2077686f206172652077652064656c65676174696e673f0a2020202020202020756e74696c2d6275726e2d68743a20286f7074696f6e616c2075696e74292c203b3b20686f77206c6f6e6720646f6573207468652064656c65676174696f6e206c6173743f0a20202020202020203b3b20646f6573207468652064656c6567617465205f6e6565645f20746f2075736520612073706563696669630a20202020202020203b3b20706f7820726563697069656e7420616464726573733f0a2020202020202020706f782d616464723a20286f7074696f6e616c207b2076657273696f6e3a2028627566662031292c206861736862797465733a20286275666620333229207d290a202020207d0a290a0a3b3b20616c6c6f77656420636f6e74726163742d63616c6c6572730a28646566696e652d6d617020616c6c6f77616e63652d636f6e74726163742d63616c6c6572730a202020207b2073656e6465723a207072696e636970616c2c20636f6e74726163742d63616c6c65723a207072696e636970616c207d0a202020207b20756e74696c2d6275726e2d68743a20286f7074696f6e616c2075696e7429207d290a0a3b3b20486f77206d616e7920755354582061726520737461636b656420696e206120676976656e20726577617264206379636c652e0a3b3b2055706461746564207768656e2061206e657720506f58206164647265737320697320726567697374657265642c206f72207768656e206d6f72652053545820617265206772616e7465640a3b3b20746f2069742e0a28646566696e652d6d6170207265776172642d6379636c652d746f74616c2d737461636b65640a202020207b207265776172642d6379636c653a2075696e74207d0a202020207b20746f74616c2d757374783a2075696e74207d0a290a0a3b3b20496e7465726e616c206d617020726561642062792074686520537461636b73206e6f646520746f2069746572617465207468726f75676820746865206c697374206f660a3b3b20506f582072657761726420616464726573736573206f6e2061207065722d7265776172642d6379636c652062617369732e0a28646566696e652d6d6170207265776172642d6379636c652d706f782d616464726573732d6c6973740a202020207b207265776172642d6379636c653a2075696e742c20696e6465783a2075696e74207d0a202020207b0a2020202020202020706f782d616464723a207b2076657273696f6e3a2028627566662031292c206861736862797465733a20286275666620333229207d2c0a2020202020202020746f74616c2d757374783a2075696e742c0a2020202020202020737461636b65723a20286f7074696f6e616c207072696e636970616c292c0a20202020202020207369676e65723a202862756666203333290a202020207d0a290a0a28646566696e652d6d6170207265776172642d6379636c652d706f782d616464726573732d6c6973742d6c656e0a202020207b207265776172642d6379636c653a2075696e74207d0a202020207b206c656e3a2075696e74207d0a290a0a3b3b20686f77206d75636820686173206265656e206c6f636b656420757020666f7220746869732061646472657373206265666f72650a3b3b202020636f6d6d697474696e673f0a3b3b2074686973206d617020616c6c6f777320737461636b65727320746f20737461636b20616d6f756e7473203c206d696e696d756d0a3b3b202020627920706179696e672074686520636f7374206f66206167677265676174696f6e20647572696e672074686520636f6d6d69740a28646566696e652d6d6170207061727469616c2d737461636b65642d62792d6379636c650a202020207b0a2020202020202020706f782d616464723a207b2076657273696f6e3a2028627566662031292c206861736862797465733a20286275666620333229207d2c0a20202020202020207265776172642d6379636c653a2075696e742c0a202020202020202073656e6465723a207072696e636970616c0a202020207d0a202020207b20737461636b65642d616d6f756e743a2075696e74207d0a290a0a3b3b2054686973206973206964656e746963616c20746f207061727469616c2d737461636b65642d62792d6379636c652c20627574206974732064617461206973206e657665722064656c657465642e0a3b3b204974206973207573656420746f207072657365727665206461746120666f7220646f776e73747265616d20636c69656e747320746f206f627365727665206167677265676174650a3b3b20636f6d6d6974732e202045616368206b65792f76616c7565207061697220696e2074686973206d61702069732073696d706c7920746865206c6173742076616c7565206f660a3b3b207061727469616c2d737461636b65642d62792d6379636c65207269676874206166746572206974207761732064656c657465642028736f2c2073756273657175656e742063616c6c730a3b3b20746f207468652060737461636b2d6167677265676174696f6e2d2a602066756e6374696f6e732077696c6c206f76657277726974652074686973292e0a28646566696e652d6d6170206c6f676765642d7061727469616c2d737461636b65642d62792d6379636c650a202020207b0a2020202020202020706f782d616464723a207b2076657273696f6e3a2028627566662031292c206861736862797465733a20286275666620333229207d2c0a20202020202020207265776172642d6379636c653a2075696e742c0a202020202020202073656e6465723a207072696e636970616c0a202020207d0a202020207b20737461636b65642d616d6f756e743a2075696e74207d0a290a0a3b3b20537461746520666f722073657474696e6720617574686f72697a6174696f6e7320666f72207369676e6572206b65797320746f206265207573656420696e0a3b3b206365727461696e20737461636b696e67207472616e73616374696f6e732e205468657365206669656c6473206d6174636820746865206669656c647320757365640a3b3b20696e20746865206d657373616765206861736820666f72207369676e61747572652d6261736564207369676e6572206b657920617574686f72697a6174696f6e732e0a3b3b2056616c75657320696e2074686973206d6170206172652073657420696e20607365742d7369676e65722d6b65792d617574686f72697a6174696f6e602e0a28646566696e652d6d6170207369676e65722d6b65792d617574686f72697a6174696f6e730a202020207b0a20202020202020203b3b20546865207369676e6572206b6579206265696e6720617574686f72697a65640a20202020202020207369676e65722d6b65793a202862756666203333292c0a20202020202020203b3b2054686520726577617264206379636c6520666f722077686963682074686520617574686f72697a6174696f6e2069732076616c69642e0a20202020202020203b3b20466f722060737461636b2d7374786020616e642060737461636b2d657874656e64602c20746869732072656665727320746f20746865207265776172640a20202020202020203b3b206379636c6520776865726520746865207472616e73616374696f6e20697320636f6e6669726d65642e20466f722060737461636b2d6167677265676174696f6e2d636f6d6d6974602c0a20202020202020203b3b20746869732072656665727320746f2074686520726577617264206379636c6520617267756d656e7420696e20746861742066756e6374696f6e2e0a20202020202020207265776172642d6379636c653a2075696e742c0a20202020202020203b3b20466f722060737461636b2d737478602c20746869732072656665727320746f20606c6f636b2d706572696f64602e20466f722060737461636b2d657874656e64602c0a20202020202020203b3b20746869732072656665727320746f2060657874656e642d636f756e74602e20466f722060737461636b2d6167677265676174696f6e2d636f6d6d6974602c207468697320697320607531602e0a2020202020202020706572696f643a2075696e742c0a20202020202020203b3b204120737472696e6720726570726573656e74696e67207468652066756e6374696f6e207768657265207468697320617574686f72697a6174696f6e2069732076616c69642e204569746865720a20202020202020203b3b2060737461636b2d737478602c2060737461636b2d657874656e64602c2060737461636b2d696e63726561736560206f7220606167672d636f6d6d6974602e0a2020202020202020746f7069633a2028737472696e672d6173636969203134292c0a20202020202020203b3b2054686520506f58206164647265737320746861742063616e206265207573656420776974682074686973207369676e6572206b65790a2020202020202020706f782d616464723a207b2076657273696f6e3a2028627566662031292c206861736862797465733a20286275666620333229207d2c0a20202020202020203b3b2054686520756e6971756520617574682d696420666f72207468697320617574686f72697a6174696f6e0a2020202020202020617574682d69643a2075696e742c0a20202020202020203b3b20546865206d6178696d756d20616d6f756e74206f66207553545820746861742063616e206265207573656420287065722074782920776974682074686973207369676e6572206b65790a20202020202020206d61782d616d6f756e743a2075696e742c0a202020207d0a20202020626f6f6c203b3b20576865746865722074686520617574686f72697a6174696f6e2063616e2062652075736564206f72206e6f740a290a0a3b3b20537461746520666f7220747261636b696e672075736564207369676e6572206b657920617574686f72697a6174696f6e732e20546869732070726576656e74732072652d7573650a3b3b206f66207468652073616d65207369676e6174757265206f72207072652d73657420617574686f72697a6174696f6e20666f72206d756c7469706c65207472616e73616374696f6e732e0a3b3b20526566657220746f2074686520607369676e65722d6b65792d617574686f72697a6174696f6e7360206d617020666f722074686520646f63756d656e746174696f6e206f6e207468657365206669656c64730a28646566696e652d6d617020757365642d7369676e65722d6b65792d617574686f72697a6174696f6e730a202020207b0a20202020202020207369676e65722d6b65793a202862756666203333292c0a20202020202020207265776172642d6379636c653a2075696e742c0a2020202020202020706572696f643a2075696e742c0a2020202020202020746f7069633a2028737472696e672d6173636969203134292c0a2020202020202020706f782d616464723a207b2076657273696f6e3a2028627566662031292c206861736862797465733a20286275666620333229207d2c0a2020202020202020617574682d69643a2075696e742c0a20202020202020206d61782d616d6f756e743a2075696e742c0a202020207d0a20202020626f6f6c203b3b205768657468657220746865206669656c6420686173206265656e2075736564206f72206e6f740a290a0a3b3b205768617427732074686520726577617264206379636c65206e756d626572206f6620746865206275726e636861696e20626c6f636b206865696768743f0a3b3b2057696c6c2072756e74696d652d61626f727420696620686569676874206973206c657373207468616e20746865206669727374206275726e636861696e20626c6f636b20287468697320697320696e74656e74696f6e616c290a28646566696e652d726561642d6f6e6c7920286275726e2d6865696768742d746f2d7265776172642d6379636c6520286865696768742075696e7429290a20202020282f20282d2068656967687420287661722d6765742066697273742d6275726e636861696e2d626c6f636b2d686569676874292920287661722d67657420706f782d7265776172642d6379636c652d6c656e6774682929290a0a3b3b205768617427732074686520626c6f636b2068656967687420617420746865207374617274206f66206120676976656e20726577617264206379636c653f0a28646566696e652d726561642d6f6e6c7920287265776172642d6379636c652d746f2d6275726e2d68656967687420286379636c652075696e7429290a20202020282b20287661722d6765742066697273742d6275726e636861696e2d626c6f636b2d6865696768742920282a206379636c6520287661722d67657420706f782d7265776172642d6379636c652d6c656e677468292929290a0a3b3b20576861742773207468652063757272656e7420506f5820726577617264206379636c653f0a28646566696e652d726561642d6f6e6c79202863757272656e742d706f782d7265776172642d6379636c65290a20202020286275726e2d6865696768742d746f2d7265776172642d6379636c65206275726e2d626c6f636b2d68656967687429290a0a3b3b2047657420746865205f63757272656e745f20506f5820737461636b696e67207072696e636970616c20696e666f726d6174696f6e2e202049662074686520696e666f726d6174696f6e0a3b3b20697320657870697265642c206f722069662074686572652773206e65766572206265656e2073756368206120737461636b65722c207468656e2072657475726e73206e6f6e652e0a28646566696e652d726561642d6f6e6c7920286765742d737461636b65722d696e666f2028737461636b6572207072696e636970616c29290a20202020286d6174636820286d61702d6765743f20737461636b696e672d7374617465207b20737461636b65723a20737461636b6572207d290a2020202020202020737461636b696e672d696e666f0a20202020202020202020202028696620283c3d20282b20286765742066697273742d7265776172642d6379636c6520737461636b696e672d696e666f292028676574206c6f636b2d706572696f6420737461636b696e672d696e666f2929202863757272656e742d706f782d7265776172642d6379636c6529290a202020202020202020202020202020203b3b2070726573656e742c20627574206c6f636b2068617320657870697265640a202020202020202020202020202020206e6f6e650a202020202020202020202020202020203b3b2070726573656e742c20616e64206c6f636b20686173206e6f7420657870697265640a2020202020202020202020202020202028736f6d6520737461636b696e672d696e666f290a202020202020202020202020290a20202020202020203b3b206e6f20737461746520617420616c6c0a20202020202020206e6f6e650a2020202029290a0a28646566696e652d726561642d6f6e6c792028636865636b2d63616c6c65722d616c6c6f776564290a20202020286f72202869732d65712074782d73656e64657220636f6e74726163742d63616c6c6572290a2020202020202020286c657420282863616c6c65722d616c6c6f7765640a20202020202020202020202020202020203b3b206966206e6f7420696e207468652063616c6c6572206d61702c2072657475726e2066616c73650a202020202020202020202020202020202028756e777261702120286d61702d6765743f20616c6c6f77616e63652d636f6e74726163742d63616c6c6572730a2020202020202020202020202020202020202020202020202020202020202020202020207b2073656e6465723a2074782d73656e6465722c20636f6e74726163742d63616c6c65723a20636f6e74726163742d63616c6c6572207d290a202020202020202020202020202020202020202020202020202066616c736529290a20202020202020202020202020202028657870697265732d61740a20202020202020202020202020202020203b3b20696620756e74696c2d6275726e2d6874206e6f74207365742c207468656e2072657475726e2074727565202862656361757365206e6f20657870697279290a202020202020202020202020202020202028756e7772617021202867657420756e74696c2d6275726e2d68742063616c6c65722d616c6c6f7765642920747275652929290a202020202020202020203b3b206973207468652063616c6c657220616c6c6f77616e636520657870697265643f0a2020202020202020202028696620283e3d206275726e2d626c6f636b2d68656967687420657870697265732d6174290a202020202020202020202020202066616c73650a202020202020202020202020202074727565292929290a0a28646566696e652d726561642d6f6e6c7920286765742d636865636b2d64656c65676174696f6e2028737461636b6572207072696e636970616c29290a20202020286c657420282864656c65676174696f6e2d696e666f20287472792120286d61702d6765743f2064656c65676174696f6e2d7374617465207b20737461636b65723a20737461636b6572207d292929290a2020202020203b3b2064696420746865206578697374696e672064656c65676174696f6e206578706972653f0a20202020202028696620286d61746368202867657420756e74696c2d6275726e2d68742064656c65676174696f6e2d696e666f290a2020202020202020202020202020202020756e74696c2d6275726e2d687420283e206275726e2d626c6f636b2d68656967687420756e74696c2d6275726e2d6874290a202020202020202020202020202020202066616c7365290a202020202020202020203b3b20697420657870697265642c2072657475726e206e6f6e650a202020202020202020206e6f6e650a202020202020202020203b3b2064656c65676174696f6e206973206163746976650a2020202020202020202028736f6d652064656c65676174696f6e2d696e666f292929290a0a3b3b20476574207468652073697a65206f6620746865207265776172642073657420666f72206120726577617264206379636c652e0a3b3b204e6f74652074686174207468697320646f6573205f6e6f745f2072657475726e206475706c696361746520506f58206164647265737365732e0a3b3b204e6f74652074686174207468697320616c736f205f77696c6c5f2072657475726e20506f58206164647265737365732074686174206172652062656e656174680a3b3b20746865206d696e696d756d207468726573686f6c64202d2d20692e652e20746865207468726573686f6c642063616e20696e63726561736520616674657220696e73657274696f6e2e0a3b3b205573656420696e7465726e616c6c792062792074686520537461636b73206e6f64652c2077686963682066696c74657273206f75742074686520656e74726965730a3b3b20696e2074686973206d617020746f2073656c65637420506f5820616464726573736573207769746820656e6f756768205354582e0a28646566696e652d726561642d6f6e6c7920286765742d7265776172642d7365742d73697a6520287265776172642d6379636c652075696e7429290a202020202864656661756c742d746f0a202020202020202075300a202020202020202028676574206c656e20286d61702d6765743f207265776172642d6379636c652d706f782d616464726573732d6c6973742d6c656e207b207265776172642d6379636c653a207265776172642d6379636c65207d292929290a0a3b3b2041646420612073696e676c6520506f58206164647265737320746f20612073696e676c6520726577617264206379636c652e0a3b3b205573656420746f206275696c64207570206120736574206f66207065722d7265776172642d6379636c6520506f58206164647265737365732e0a3b3b204e6f20636865636b696e672077696c6c20626520646f6e65202d2d20646f6e27742063616c6c206966207468697320506f58206164647265737320697320616c7265616479207265676973746572656420696e207468697320726577617264206379636c65210a3b3b2052657475726e732074686520696e64657820696e746f2074686520726577617264206379636c6520746861742074686520506f5820616464726573732069732073746f72656420746f0a28646566696e652d707269766174652028617070656e642d7265776172642d6379636c652d706f782d616464722028706f782d6164647220287475706c65202876657273696f6e202862756666203129292028686173686279746573202862756666203332292929290a20202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020287265776172642d6379636c652075696e74290a2020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202028616d6f756e742d757374782075696e74290a2020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202028737461636b657220286f7074696f6e616c207072696e636970616c29290a20202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020287369676e65722028627566662033332929290a20202020286c6574202828737a20286765742d7265776172642d7365742d73697a65207265776172642d6379636c652929290a2020202020202020286d61702d736574207265776172642d6379636c652d706f782d616464726573732d6c6973740a2020202020202020202020207b207265776172642d6379636c653a207265776172642d6379636c652c20696e6465783a20737a207d0a2020202020202020202020207b20706f782d616464723a20706f782d616464722c20746f74616c2d757374783a20616d6f756e742d757374782c20737461636b65723a20737461636b65722c207369676e65723a207369676e6572207d290a2020202020202020286d61702d736574207265776172642d6379636c652d706f782d616464726573732d6c6973742d6c656e0a2020202020202020202020207b207265776172642d6379636c653a207265776172642d6379636c65207d0a2020202020202020202020207b206c656e3a20282b20753120737a29207d290a20202020737a29290a0a3b3b20486f77206d616e7920755354582061726520737461636b65643f0a28646566696e652d726561642d6f6e6c7920286765742d746f74616c2d757374782d737461636b656420287265776172642d6379636c652075696e7429290a202020202864656661756c742d746f0a202020202020202075300a20202020202020202867657420746f74616c2d7573747820286d61702d6765743f207265776172642d6379636c652d746f74616c2d737461636b6564207b207265776172642d6379636c653a207265776172642d6379636c65207d2929290a290a0a3b3b2043616c6c656420696e7465726e616c6c7920627920746865206e6f646520746f2069746572617465207468726f75676820746865206c697374206f6620506f582061646472657373657320696e207468697320726577617264206379636c652e0a3b3b2052657475726e7320286f7074696f6e616c20287475706c652028706f782d61646472203c706f782d616464726573733e292028746f74616c2d75737478203c75696e743e2929290a28646566696e652d726561642d6f6e6c7920286765742d7265776172642d7365742d706f782d6164647265737320287265776172642d6379636c652075696e74292028696e6465782075696e7429290a20202020286d61702d6765743f207265776172642d6379636c652d706f782d616464726573732d6c697374207b207265776172642d6379636c653a207265776172642d6379636c652c20696e6465783a20696e646578207d29290a0a28646566696e652d707269766174652028666f6c642d756e6c6f636b2d7265776172642d6379636c6520287365742d696e6465782075696e74290a20202020202020202020202020202020202020202020202020202020202020202020202020202020202028646174612d7265732028726573706f6e7365207b206379636c653a2075696e742c0a20202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202066697273742d756e6c6f636b65642d6379636c653a2075696e742c0a202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020737461636b65723a207072696e636970616c0a202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020207d20696e742929290a20202020286c65742028286461746120287472792120646174612d72657329290a20202020202020202020286379636c652028676574206379636c65206461746129290a202020202020202020202866697273742d756e6c6f636b65642d6379636c6520286765742066697273742d756e6c6f636b65642d6379636c6520646174612929290a2020202020202020203b3b2069662063757272656e742d6379636c65206861736e277420726561636865642066697273742d756e6c6f636b65642d6379636c652c206a75737420636f6e74696e756520746f206e65787420697465720a20202020202020202028617373657274732120283e3d206379636c652066697273742d756e6c6f636b65642d6379636c652920286f6b20286d657267652064617461207b206379636c653a20282b207531206379636c6529207d2929290a202020202020202020286c65742028286379636c652d656e7472792028756e777261702d70616e696320286d61702d6765743f207265776172642d6379636c652d706f782d616464726573732d6c697374207b207265776172642d6379636c653a206379636c652c20696e6465783a207365742d696e646578207d2929290a202020202020202020202020202020286379636c652d656e7472792d75202867657420737461636b6572206379636c652d656e74727929290a202020202020202020202020202020286379636c652d656e7472792d746f74616c2d75737478202867657420746f74616c2d75737478206379636c652d656e74727929290a202020202020202020202020202020286379636c652d6c6173742d656e7472792d697820282d2028676574206c656e2028756e777261702d70616e696320286d61702d6765743f207265776172642d6379636c652d706f782d616464726573732d6c6973742d6c656e207b207265776172642d6379636c653a206379636c65207d2929292075312929290a202020202020202020202020286173736572747321202869732d6571206379636c652d656e7472792d752028736f6d65202867657420737461636b657220646174612929292028657272204552525f535441434b494e475f434f525255505445445f535441544529290a20202020202020202020202028696620286e6f74202869732d6571206379636c652d6c6173742d656e7472792d6978207365742d696e64657829290a202020202020202020202020202020203b3b20646f206120226d6f7665222069662074686520656e74727920746f2072656d6f76652069736e2774206c6173740a20202020202020202020202020202020286c65742028286d6f76652d656e7472792028756e777261702d70616e696320286d61702d6765743f207265776172642d6379636c652d706f782d616464726573732d6c697374207b207265776172642d6379636c653a206379636c652c20696e6465783a206379636c652d6c6173742d656e7472792d6978207d292929290a2020202020202020202020202020202020202020286d61702d736574207265776172642d6379636c652d706f782d616464726573732d6c6973740a20202020202020202020202020202020202020202020202020202020207b207265776172642d6379636c653a206379636c652c20696e6465783a207365742d696e646578207d0a20202020202020202020202020202020202020202020202020202020206d6f76652d656e747279290a2020202020202020202020202020202020202020286d61746368202867657420737461636b6572206d6f76652d656e74727929206d6f7665642d737461636b65720a2020202020202020202020202020202020202020203b3b20696620746865206d6f76656420656e7472792068616420616e206173736f63696174656420737461636b65722c20757064617465206974732073746174650a202020202020202020202020202020202020202020286c65742028286d6f7665642d73746174652028756e777261702d70616e696320286d61702d6765743f20737461636b696e672d7374617465207b20737461636b65723a206d6f7665642d737461636b6572207d2929290a2020202020202020202020202020202020202020202020202020203b3b2063616c63756c6174652074686520696e64657820696e746f20746865207265776172642d7365742d696e6465786573207468617420606379636c65602069732061740a202020202020202020202020202020202020202020202020202020286d6f7665642d6379636c652d696e64657820282d206379636c6520286765742066697273742d7265776172642d6379636c65206d6f7665642d73746174652929290a202020202020202020202020202020202020202020202020202020286d6f7665642d7265776172642d6c6973742028676574207265776172642d7365742d696e6465786573206d6f7665642d737461746529290a2020202020202020202020202020202020202020202020202020203b3b207265776172642d7365742d696e64657865735b6d6f7665642d6379636c652d696e6465785d203d207365742d696e6465782076696120736c6963653f2c20617070656e642c20636f6e6361742e0a202020202020202020202020202020202020202020202020202020287570646174652d6c6973742028756e777261702d70616e696320287265706c6163652d61743f206d6f7665642d7265776172642d6c697374206d6f7665642d6379636c652d696e646578207365742d696e646578292929290a2020202020202020202020202020202020202020202020202020286d61702d73657420737461636b696e672d7374617465207b20737461636b65723a206d6f7665642d737461636b6572207d0a2020202020202020202020202020202020202020202020202020202020202020202020286d65726765206d6f7665642d7374617465207b207265776172642d7365742d696e64657865733a207570646174652d6c697374207d2929290a2020202020202020202020202020202020202020203b3b206f74686572776973652c20776520646f6e2774206e65656420746f2075706461746520737461636b696e672d7374617465206166746572206d6f76650a2020202020202020202020202020202020202020207472756529290a202020202020202020202020202020203b3b206966206e6f74206d6f76696e672c206a757374206e6f6f700a2020202020202020202020202020202074727565290a2020202020202020202020203b3b20696e20616c6c2063617365732c207765206e6f77206e65656420746f2064656c65746520746865206c617374206c69737420656e7472790a202020202020202020202020286d61702d64656c657465207265776172642d6379636c652d706f782d616464726573732d6c697374207b207265776172642d6379636c653a206379636c652c20696e6465783a206379636c652d6c6173742d656e7472792d6978207d290a202020202020202020202020286d61702d736574207265776172642d6379636c652d706f782d616464726573732d6c6973742d6c656e207b207265776172642d6379636c653a206379636c65207d207b206c656e3a206379636c652d6c6173742d656e7472792d6978207d290a2020202020202020202020203b3b2066696e616c6c792c2075706461746520607265776172642d6379636c652d746f74616c2d737461636b6564600a202020202020202020202020286d61702d736574207265776172642d6379636c652d746f74616c2d737461636b6564207b207265776172642d6379636c653a206379636c65207d0a202020202020202020202020202020207b20746f74616c2d757374783a20282d202867657420746f74616c2d757374782028756e777261702d70616e696320286d61702d6765743f207265776172642d6379636c652d746f74616c2d737461636b6564207b207265776172642d6379636c653a206379636c65207d2929290a2020202020202020202020202020202020202020202020202020202020202020206379636c652d656e7472792d746f74616c2d7573747829207d290a202020202020202020202020286f6b20286d657267652064617461207b206379636c653a20282b207531206379636c65297d2029292929290a0a3b3b2054686973206d6574686f642069732063616c6c65642062792074686520537461636b7320626c6f636b2070726f636573736f72206469726563746c7920696e206f7264657220746f2068616e646c652074686520636f6e7472616374207374617465206d75746174696f6e730a3b3b20206173736f636961746564207769746820616e206561726c7920756e6c6f636b2e20546869732063616e206f6e6c7920626520696e766f6b65642062792074686520626c6f636b2070726f636573736f723a20697420697320707269766174652c20616e64206e6f206d6574686f64730a3b3b202066726f6d207468697320636f6e747261637420696e766f6b652069742e0a28646566696e652d70726976617465202868616e646c652d756e6c6f636b202875736572207072696e636970616c292028616d6f756e742d6c6f636b65642075696e742920286379636c652d746f2d756e6c6f636b2075696e7429290a20202020286c6574202828757365722d737461636b696e672d73746174652028756e777261702d70616e696320286d61702d6765743f20737461636b696e672d7374617465207b20737461636b65723a2075736572207d2929290a202020202020202020202866697273742d6379636c652d6c6f636b656420286765742066697273742d7265776172642d6379636c6520757365722d737461636b696e672d737461746529290a20202020202020202020287265776172642d7365742d696e64657865732028676574207265776172642d7365742d696e646578657320757365722d737461636b696e672d73746174652929290a20202020202020203b3b2069746572617465206f766572206561636820726577617264207365742074686520757365722069732061206d656d626572206f662c20616e642072656d6f7665207468656d2066726f6d2074686520736574732e206f6e6c79206170706c7920746f207265776172642073657473206166746572206379636c652d746f2d756e6c6f636b2e0a202020202020202028747279212028666f6c6420666f6c642d756e6c6f636b2d7265776172642d6379636c65207265776172642d7365742d696e646578657320286f6b207b206379636c653a2066697273742d6379636c652d6c6f636b65642c2066697273742d756e6c6f636b65642d6379636c653a206379636c652d746f2d756e6c6f636b2c20737461636b65723a2075736572207d2929290a20202020202020203b3b204e6f77207468617420776527766520636c65616e656420757020616c6c20746865207265776172642073657420656e747269657320666f722074686520757365722c2064656c657465207468652075736572277320737461636b696e672d73746174650a2020202020202020286d61702d64656c65746520737461636b696e672d7374617465207b20737461636b65723a2075736572207d290a2020202020202020286f6b20747275652929290a0a3b3b20416464206120506f58206164647265737320746f2074686520606379636c652d696e646578602d746820726577617264206379636c652c20696620606379636c652d696e64657860206973206265747765656e203020616e642074686520676976656e206e756d2d6379636c657320286578636c7573697665292e0a3b3b20417267756d656e74732061726520676976656e2061732061207475706c652c20736f20746869732066756e6374696f6e2063616e2062652028666f6c646564202e2e29276564206f6e746f2061206c697374206f662069747320617267756d656e74732e0a3b3b2055736564206279206164642d706f782d616464722d746f2d7265776172642d6379636c65732e0a3b3b204e6f20636865636b696e6720697320646f6e652e0a3b3b205468652072657475726e6564207475706c65206973207468652073616d6520617320696e7075747465642060706172616d73602c206275742074686520606960206669656c6420697320696e6372656d656e7465642069660a3b3b202074686520706f782d616464722077617320616464656420746f2074686520676976656e206379636c652e2020416c736f2c20607265776172642d7365742d696e6465786573602067726f777320746f20696e636c75646520616c6c0a3b3b20206f662074686520607265776172642d6379636c652d696e64657860206b6579207061727473206f662074686520607265776172642d6379636c652d706f782d616464726573732d6c697374602077686963682067657420616464656420627920746869732066756e6374696f6e2e0a3b3b202054686973207761792c207468652063616c6c6572206b6e6f7773207768696368206974656d7320696e206120676976656e20726577617264206379636c65277320506f582061646472657373206c69737420676f7420757064617465642e0a28646566696e652d7072697661746520286164642d706f782d616464722d746f2d6974682d7265776172642d6379636c6520286379636c652d696e6465782075696e74292028706172616d7320287475706c650a20202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202028706f782d6164647220287475706c65202876657273696f6e202862756666203129292028686173686279746573202862756666203332292929290a202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020287265776172642d7365742d696e646578657320286c6973742031322075696e7429290a2020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202866697273742d7265776172642d6379636c652075696e74290a202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020286e756d2d6379636c65732075696e74290a20202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202028737461636b657220286f7074696f6e616c207072696e636970616c29290a202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020287369676e657220286275666620333329290a20202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202028616d6f756e742d757374782075696e74290a20202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202028692075696e74292929290a20202020286c65742028287265776172642d6379636c6520282b20286765742066697273742d7265776172642d6379636c6520706172616d73292028676574206920706172616d732929290a20202020202020202020286e756d2d6379636c65732028676574206e756d2d6379636c657320706172616d7329290a2020202020202020202028692028676574206920706172616d7329290a20202020202020202020287265776172642d7365742d696e6465782028696620283c2069206e756d2d6379636c6573290a202020202020202020202020286c6574202828746f74616c2d7573747820286765742d746f74616c2d757374782d737461636b6564207265776172642d6379636c6529290a202020202020202020202020202020202020287265776172642d696e6465780a202020202020202020202020202020202020202020203b3b207265636f726420686f77206d616e792075535458207468697320706f782d616464722077696c6c20737461636b20666f7220696e2074686520676976656e20726577617264206379636c650a2020202020202020202020202020202020202020202028617070656e642d7265776172642d6379636c652d706f782d616464720a2020202020202020202020202020202020202020202020202867657420706f782d6164647220706172616d73290a2020202020202020202020202020202020202020202020207265776172642d6379636c650a2020202020202020202020202020202020202020202020202867657420616d6f756e742d7573747820706172616d73290a2020202020202020202020202020202020202020202020202867657420737461636b657220706172616d73290a20202020202020202020202020202020202020202020202028676574207369676e657220706172616d73290a2020202020202020202020202020202020202020202020202929290a2020202020202020202020202020202020203b3b207570646174652072756e6e696e6720746f74616c0a202020202020202020202020202020202020286d61702d736574207265776172642d6379636c652d746f74616c2d737461636b65640a2020202020202020202020202020202020202020207b207265776172642d6379636c653a207265776172642d6379636c65207d0a2020202020202020202020202020202020202020207b20746f74616c2d757374783a20282b202867657420616d6f756e742d7573747820706172616d732920746f74616c2d7573747829207d290a20202020202020202020202020202020202028736f6d65207265776172642d696e64657829290a2020202020202020202020206e6f6e6529290a20202020202020202020286e6578742d692028696620283c2069206e756d2d6379636c65732920282b20692075312920692929290a202020207b0a2020202020202020706f782d616464723a202867657420706f782d6164647220706172616d73292c0a202020202020202066697273742d7265776172642d6379636c653a20286765742066697273742d7265776172642d6379636c6520706172616d73292c0a20202020202020206e756d2d6379636c65733a206e756d2d6379636c65732c0a2020202020202020616d6f756e742d757374783a202867657420616d6f756e742d7573747820706172616d73292c0a2020202020202020737461636b65723a202867657420737461636b657220706172616d73292c0a20202020202020207369676e65723a2028676574207369676e657220706172616d73292c0a20202020202020207265776172642d7365742d696e64657865733a20286d617463680a2020202020202020202020207265776172642d7365742d696e646578206e65772028756e777261702d70616e6963202861732d6d61782d6c656e3f2028617070656e642028676574207265776172642d7365742d696e646578657320706172616d7329206e6577292075313229290a20202020202020202020202028676574207265776172642d7365742d696e646578657320706172616d7329292c0a2020202020202020693a206e6578742d690a202020207d29290a0a3b3b20416464206120506f58206164647265737320746f206120676976656e2073657175656e6365206f6620726577617264206379636c65206c697374732e0a3b3b204120506f5820616464726573732063616e20626520616464656420746f206174206d6f737420313220636f6e7365637574697665206379636c65732e0a3b3b204e6f20636865636b696e6720697320646f6e652e0a28646566696e652d7072697661746520286164642d706f782d616464722d746f2d7265776172642d6379636c65732028706f782d6164647220287475706c65202876657273696f6e202862756666203129292028686173686279746573202862756666203332292929290a20202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202866697273742d7265776172642d6379636c652075696e74290a2020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020286e756d2d6379636c65732075696e74290a202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202028616d6f756e742d757374782075696e74290a202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202028737461636b6572207072696e636970616c290a2020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020287369676e65722028627566662033332929290a2020286c65742028286379636c652d696e646578657320286c697374207530207531207532207533207534207535207536207537207538207539207531302075313129290a202020202020202028726573756c74732028666f6c64206164642d706f782d616464722d746f2d6974682d7265776172642d6379636c65206379636c652d696e64657865730a202020202020202020202020202020202020202020202020207b20706f782d616464723a20706f782d616464722c2066697273742d7265776172642d6379636c653a2066697273742d7265776172642d6379636c652c206e756d2d6379636c65733a206e756d2d6379636c65732c0a2020202020202020202020202020202020202020202020202020207265776172642d7365742d696e64657865733a20286c697374292c20616d6f756e742d757374783a20616d6f756e742d757374782c20693a2075302c20737461636b65723a2028736f6d6520737461636b6572292c207369676e65723a207369676e6572207d29290a2020202020202020287265776172642d7365742d696e64657865732028676574207265776172642d7365742d696e646578657320726573756c74732929290a202020203b3b20466f72207361666574792c2061646420757020746865206e756d626572206f662074696d657320286164642d7072696e636970616c2d746f2d6974682d7265776172642d6379636c65292072657475726e7320312e0a202020203b3b204974205f73686f756c645f20626520657175616c20746f206e756d2d6379636c65732e0a20202020286173736572747321202869732d6571206e756d2d6379636c65732028676574206920726573756c747329292028657272204552525f535441434b494e475f554e524541434841424c4529290a20202020286173736572747321202869732d6571206e756d2d6379636c657320286c656e207265776172642d7365742d696e646578657329292028657272204552525f535441434b494e475f554e524541434841424c4529290a20202020286f6b207265776172642d7365742d696e64657865732929290a0a28646566696e652d7072697661746520286164642d706f782d7061727469616c2d737461636b65642d746f2d6974682d6379636c650a2020202020202020202020202020202020286379636c652d696e6465782075696e74290a202020202020202020202020202020202028706172616d73207b20706f782d616464723a207b2076657273696f6e3a2028627566662031292c206861736862797465733a20286275666620333229207d2c0a2020202020202020202020202020202020202020202020202020207265776172642d6379636c653a2075696e742c0a2020202020202020202020202020202020202020202020202020206e756d2d6379636c65733a2075696e742c0a202020202020202020202020202020202020202020202020202020616d6f756e742d757374783a2075696e74207d29290a2020286c6574202828706f782d6164647220202020202867657420706f782d616464722020202020706172616d7329290a2020202020202020286e756d2d6379636c657320202028676574206e756d2d6379636c6573202020706172616d7329290a2020202020202020287265776172642d6379636c652028676574207265776172642d6379636c6520706172616d7329290a202020202020202028616d6f756e742d7573747820202867657420616d6f756e742d757374782020706172616d732929290a20202020286c657420282863757272656e742d616d6f756e740a20202020202020202020202864656661756c742d746f2075300a202020202020202020202020202867657420737461636b65642d616d6f756e740a202020202020202020202020202020202020286d61702d6765743f207061727469616c2d737461636b65642d62792d6379636c65207b2073656e6465723a2074782d73656e6465722c20706f782d616464723a20706f782d616464722c207265776172642d6379636c653a207265776172642d6379636c65207d29292929290a20202020202028696620283e3d206379636c652d696e646578206e756d2d6379636c6573290a202020202020202020203b3b20646f206e6f742061646420746f206379636c6573203e3d206379636c652d696e6465780a2020202020202020202066616c73650a202020202020202020203b3b206f74686572776973652c2061646420746f20746865207061727469616c2d737461636b65642d62792d6379636c650a20202020202020202020286d61702d736574207061727469616c2d737461636b65642d62792d6379636c650a202020202020202020202020202020202020207b2073656e6465723a2074782d73656e6465722c20706f782d616464723a20706f782d616464722c207265776172642d6379636c653a207265776172642d6379636c65207d0a202020202020202020202020202020202020207b20737461636b65642d616d6f756e743a20282b20616d6f756e742d757374782063757272656e742d616d6f756e7429207d29290a2020202020203b3b2070726f6475636520746865206e65787420706172616d73207475706c650a2020202020207b20706f782d616464723a20706f782d616464722c0a20202020202020207265776172642d6379636c653a20282b207531207265776172642d6379636c65292c0a20202020202020206e756d2d6379636c65733a206e756d2d6379636c65732c0a2020202020202020616d6f756e742d757374783a20616d6f756e742d75737478207d2929290a0a3b3b20416464206120506f58206164647265737320746f206120676976656e2073657175656e6365206f66207061727469616c20726577617264206379636c65206c697374732e0a3b3b204120506f5820616464726573732063616e20626520616464656420746f206174206d6f737420313220636f6e7365637574697665206379636c65732e0a3b3b204e6f20636865636b696e6720697320646f6e652e0a28646566696e652d7072697661746520286164642d706f782d7061727469616c2d737461636b65642028706f782d6164647220287475706c65202876657273696f6e202862756666203129292028686173686279746573202862756666203332292929290a20202020202020202020202020202020202020202020202020202020202020202020202020202020202866697273742d7265776172642d6379636c652075696e74290a2020202020202020202020202020202020202020202020202020202020202020202020202020202020286e756d2d6379636c65732075696e74290a202020202020202020202020202020202020202020202020202020202020202020202020202020202028616d6f756e742d757374782075696e7429290a2020286c65742028286379636c652d696e646578657320286c69737420753020753120753220753320753420753520753620753720753820753920753130207531312929290a2020202028666f6c64206164642d706f782d7061727469616c2d737461636b65642d746f2d6974682d6379636c65206379636c652d696e64657865730a202020202020202020207b20706f782d616464723a20706f782d616464722c207265776172642d6379636c653a2066697273742d7265776172642d6379636c652c206e756d2d6379636c65733a206e756d2d6379636c65732c20616d6f756e742d757374783a20616d6f756e742d75737478207d290a202020207472756529290a0a3b3b205768617420697320746865206d696e696d756d206e756d626572206f66207553545820746f20626520737461636b656420696e2074686520676976656e20726577617264206379636c653f0a3b3b205573656420696e7465726e616c6c792062792074686520537461636b73206e6f64652c20616e642076697369626c65207075626c69636c792e0a28646566696e652d726561642d6f6e6c7920286765742d737461636b696e672d6d696e696d756d290a20202020282f207374782d6c69717569642d737570706c7920535441434b494e475f5448524553484f4c445f323529290a0a3b3b204973207468652061646472657373206d6f64652076616c696420666f72206120506f5820616464726573733f0a28646566696e652d726561642d6f6e6c792028636865636b2d706f782d616464722d76657273696f6e202876657273696f6e20286275666620312929290a20202020283c3d2028627566662d746f2d75696e742d62652076657273696f6e29204d41585f414444524553535f56455253494f4e29290a0a3b3b20497320746869732062756666657220746865207269676874206c656e67746820666f722074686520676976656e20506f5820616464726573733f0a28646566696e652d726561642d6f6e6c792028636865636b2d706f782d616464722d686173686279746573202876657273696f6e2028627566662031292920286861736862797465732028627566662033322929290a2020202028696620283c3d2028627566662d746f2d75696e742d62652076657273696f6e29204d41585f414444524553535f56455253494f4e5f425546465f3230290a20202020202020202869732d657120286c656e206861736862797465732920753230290a202020202020202028696620283c3d2028627566662d746f2d75696e742d62652076657273696f6e29204d41585f414444524553535f56455253494f4e5f425546465f3332290a2020202020202020202020202869732d657120286c656e206861736862797465732920753332290a20202020202020202020202066616c73652929290a0a3b3b2049732074686520676976656e206c6f636b20706572696f642076616c69643f0a28646566696e652d726561642d6f6e6c792028636865636b2d706f782d6c6f636b2d706572696f6420286c6f636b2d706572696f642075696e7429290a2020202028616e6420283e3d206c6f636b2d706572696f64204d494e5f504f585f5245574152445f4359434c4553290a202020202020202020283c3d206c6f636b2d706572696f64204d41585f504f585f5245574152445f4359434c45532929290a0a3b3b204576616c756174652069662061207061727469636970616e742063616e20737461636b20616e20616d6f756e74206f662053545820666f72206120676976656e20706572696f642e0a3b3b2054686973206d6574686f642069732064657369676e6564206173206120726561642d6f6e6c79206d6574686f6420736f20746861742069742063616e20626520757365642061730a3b3b206120736574206f6620677561726420636f6e646974696f6e7320616e6420616c736f206173206120726561642d6f6e6c79205250432063616c6c20746861742063616e2062650a3b3b20706572666f726d6564206265666f726568616e642e0a28646566696e652d726561642d6f6e6c79202863616e2d737461636b2d7374782028706f782d6164647220287475706c65202876657273696f6e202862756666203129292028686173686279746573202862756666203332292929290a2020202020202020202020202020202020202020202020202020202020202020202028616d6f756e742d757374782075696e74290a202020202020202020202020202020202020202020202020202020202020202020202866697273742d7265776172642d6379636c652075696e74290a20202020202020202020202020202020202020202020202020202020202020202020286e756d2d6379636c65732075696e7429290a202028626567696e0a202020203b3b206d696e696d756d2075535458206d757374206265206d65740a2020202028617373657274732120283c3d20286765742d737461636b696e672d6d696e696d756d2920616d6f756e742d75737478290a202020202020202020202020202028657272204552525f535441434b494e475f5448524553484f4c445f4e4f545f4d455429290a0a20202020286d696e696d616c2d63616e2d737461636b2d73747820706f782d6164647220616d6f756e742d757374782066697273742d7265776172642d6379636c65206e756d2d6379636c65732929290a0a3b3b204576616c756174652069662061207061727469636970616e742063616e20737461636b20616e20616d6f756e74206f662053545820666f72206120676976656e20706572696f642e0a3b3b2054686973206d6574686f642069732064657369676e6564206173206120726561642d6f6e6c79206d6574686f6420736f20746861742069742063616e20626520757365642061730a3b3b206120736574206f6620677561726420636f6e646974696f6e7320616e6420616c736f206173206120726561642d6f6e6c79205250432063616c6c20746861742063616e2062650a3b3b20706572666f726d6564206265666f726568616e642e0a28646566696e652d726561642d6f6e6c7920286d696e696d616c2d63616e2d737461636b2d7374780a2020202020202020202020202020202020202028706f782d6164647220287475706c65202876657273696f6e202862756666203129292028686173686279746573202862756666203332292929290a2020202020202020202020202020202020202028616d6f756e742d757374782075696e74290a202020202020202020202020202020202020202866697273742d7265776172642d6379636c652075696e74290a20202020202020202020202020202020202020286e756d2d6379636c65732075696e7429290a202028626567696e0a202020203b3b20616d6f756e74206d7573742062652076616c69640a2020202028617373657274732120283e20616d6f756e742d75737478207530290a202020202020202020202020202028657272204552525f535441434b494e475f494e56414c49445f414d4f554e5429290a0a202020203b3b206c6f636b20706572696f64206d75737420626520696e2061636365707461626c652072616e67652e0a202020202861737365727473212028636865636b2d706f782d6c6f636b2d706572696f64206e756d2d6379636c6573290a202020202020202020202020202028657272204552525f535441434b494e475f494e56414c49445f4c4f434b5f504552494f4429290a0a202020203b3b20616464726573732076657273696f6e206d7573742062652076616c69640a202020202861737365727473212028636865636b2d706f782d616464722d76657273696f6e20286765742076657273696f6e20706f782d6164647229290a202020202020202020202020202028657272204552525f535441434b494e475f494e56414c49445f504f585f4144445245535329290a0a202020203b3b206164647265737320686173686279746573206d7573742062652076616c696420666f72207468652076657273696f6e0a202020202861737365727473212028636865636b2d706f782d616464722d68617368627974657320286765742076657273696f6e20706f782d616464722920286765742068617368627974657320706f782d6164647229290a202020202020202020202020202028657272204552525f535441434b494e475f494e56414c49445f504f585f4144445245535329290a0a20202020286f6b20747275652929290a0a3b3b205265766f6b6520636f6e74726163742d63616c6c657220617574686f72697a6174696f6e20746f2063616c6c20737461636b696e67206d6574686f64730a28646566696e652d7075626c69632028646973616c6c6f772d636f6e74726163742d63616c6c6572202863616c6c6572207072696e636970616c29290a202028626567696e0a20202020286173736572747321202869732d65712074782d73656e64657220636f6e74726163742d63616c6c6572290a202020202020202020202020202028657272204552525f535441434b494e475f5045524d495353494f4e5f44454e49454429290a20202020286f6b20286d61702d64656c65746520616c6c6f77616e63652d636f6e74726163742d63616c6c657273207b2073656e6465723a2074782d73656e6465722c20636f6e74726163742d63616c6c65723a2063616c6c6572207d292929290a0a3b3b2047697665206120636f6e74726163742d63616c6c657220617574686f72697a6174696f6e20746f2063616c6c20737461636b696e67206d6574686f64730a3b3b20206e6f726d616c6c792c20737461636b696e67206d6574686f6473206d6179206f6e6c7920626520696e766f6b6564206279205f6469726563745f207472616e73616374696f6e730a3b3b20202028692e652e2c207468652074782d73656e6465722069737375657320612064697265637420636f6e74726163742d63616c6c20746f2074686520737461636b696e67206d6574686f6473290a3b3b202062792069737375696e6720616e20616c6c6f77616e63652c207468652074782d73656e646572206d61792063616c6c207468726f7567682074686520616c6c6f77656420636f6e74726163740a28646566696e652d7075626c69632028616c6c6f772d636f6e74726163742d63616c6c6572202863616c6c6572207072696e636970616c292028756e74696c2d6275726e2d687420286f7074696f6e616c2075696e742929290a202028626567696e0a20202020286173736572747321202869732d65712074782d73656e64657220636f6e74726163742d63616c6c6572290a202020202020202020202020202028657272204552525f535441434b494e475f5045524d495353494f4e5f44454e49454429290a20202020286f6b20286d61702d73657420616c6c6f77616e63652d636f6e74726163742d63616c6c6572730a2020202020202020202020202020207b2073656e6465723a2074782d73656e6465722c20636f6e74726163742d63616c6c65723a2063616c6c6572207d0a2020202020202020202020202020207b20756e74696c2d6275726e2d68743a20756e74696c2d6275726e2d6874207d292929290a0a3b3b204c6f636b20757020736f6d65207553545820666f7220737461636b696e672120204e6f746520746861742074686520676976656e20616d6f756e74206865726520697320696e206d6963726f2d535458202875535458292e0a3b3b20546865205354582077696c6c206265206c6f636b656420666f722074686520676976656e206e756d626572206f6620726577617264206379636c657320286c6f636b2d706572696f64292e0a3b3b2054686973206973207468652073656c662d7365727669636520696e746572666163652e202074782d73656e6465722077696c6c2062652074686520537461636b65722e0a3b3b0a3b3b202a2054686520676976656e20737461636b65722063616e6e6f742063757272656e746c7920626520737461636b696e672e0a3b3b202a20596f752077696c6c206e65656420746865206d696e696d756d2075535458207468726573686f6c642e2020546869732077696c6c2062652064657465726d696e656420627920286765742d737461636b696e672d6d696e696d756d290a3b3b206174207468652074696d652074686973206d6574686f642069732063616c6c65642e0a3b3b202a20596f75206d6179206e65656420746f20696e6372656173652074686520616d6f756e74206f662075535458206c6f636b6564207570206c617465722c2073696e636520746865206d696e696d756d2075535458207468726573686f6c640a3b3b206d617920696e637265617365206265747765656e20726577617264206379636c65732e0a3b3b202a20596f75206e65656420746f2070726f766964652061207369676e6572206b657920746f206265207573656420696e20746865207369676e657220444b472070726f636573732e0a3b3b202a2054686520537461636b65722077696c6c2072656365697665207265776172647320696e2074686520726577617264206379636c6520666f6c6c6f77696e67206073746172742d6275726e2d6874602e0a3b3b20496d706f7274616e746c792c206073746172742d6275726e2d687460206d6179206e6f74206265206675727468657220696e746f2074686520667574757265207468616e20746865206e65787420726577617264206379636c652c0a3b3b20616e6420696e206d6f73742063617365732073686f756c642062652073657420746f207468652063757272656e74206275726e20626c6f636b206865696768742e0a3b3b200a3b3b20546f20656e7375726520746861742074686520537461636b657220697320617574686f72697a656420746f20757365207468652070726f766964656420607369676e65722d6b6579602c2074686520737461636b65720a3b3b206d7573742070726f76696465206569746865722061207369676e6174757265206861766520616e20617574686f72697a6174696f6e20616c72656164792073617665642e20526566657220746f0a3b3b20607665726966792d7369676e65722d6b65792d7369676020666f72206d6f726520696e666f726d6174696f6e2e0a3b3b0a3b3b2054686520746f6b656e732077696c6c20756e6c6f636b20616e642062652072657475726e656420746f2074686520537461636b6572202874782d73656e64657229206175746f6d61746963616c6c792e0a28646566696e652d7075626c69632028737461636b2d7374782028616d6f756e742d757374782075696e74290a202020202020202020202020202020202020202020202020202028706f782d6164647220287475706c65202876657273696f6e202862756666203129292028686173686279746573202862756666203332292929290a20202020202020202020202020202020202020202020202020202873746172742d6275726e2d68742075696e74290a2020202020202020202020202020202020202020202020202020286c6f636b2d706572696f642075696e74290a2020202020202020202020202020202020202020202020202020287369676e65722d73696720286f7074696f6e616c2028627566662036352929290a2020202020202020202020202020202020202020202020202020287369676e65722d6b657920286275666620333329290a2020202020202020202020202020202020202020202020202020286d61782d616d6f756e742075696e74290a202020202020202020202020202020202020202020202020202028617574682d69642075696e7429290a202020203b3b207468697320737461636b6572277320666972737420726577617264206379636c6520697320746865205f6e6578745f20726577617264206379636c650a20202020286c657420282866697273742d7265776172642d6379636c6520282b207531202863757272656e742d706f782d7265776172642d6379636c652929290a20202020202020202020287370656369666965642d7265776172642d6379636c6520282b20753120286275726e2d6865696768742d746f2d7265776172642d6379636c652073746172742d6275726e2d6874292929290a2020202020203b3b207468652073746172742d6275726e2d6874206d75737420726573756c7420696e20746865206e65787420726577617264206379636c652c20646f206e6f7420616c6c6f7720737461636b6572730a2020202020203b3b2020746f2022706f73742d64617465222074686569722060737461636b2d73747860207472616e73616374696f6e0a202020202020286173736572747321202869732d65712066697273742d7265776172642d6379636c65207370656369666965642d7265776172642d6379636c65290a2020202020202020202020202020202028657272204552525f494e56414c49445f53544152545f4255524e5f48454947485429290a0a2020202020203b3b206d7573742062652063616c6c6564206469726563746c79206279207468652074782d73656e646572206f7220627920616e20616c6c6f77656420636f6e74726163742d63616c6c65720a2020202020202861737365727473212028636865636b2d63616c6c65722d616c6c6f776564290a2020202020202020202020202020202028657272204552525f535441434b494e475f5045524d495353494f4e5f44454e49454429290a0a2020202020203b3b2074782d73656e646572207072696e636970616c206d757374206e6f7420626520737461636b696e670a202020202020286173736572747321202869732d6e6f6e6520286765742d737461636b65722d696e666f2074782d73656e64657229290a202020202020202028657272204552525f535441434b494e475f414c52454144595f535441434b454429290a0a2020202020203b3b2074782d73656e646572206d757374206e6f742062652064656c65676174696e670a202020202020286173736572747321202869732d6e6f6e6520286765742d636865636b2d64656c65676174696f6e2074782d73656e64657229290a202020202020202028657272204552525f535441434b494e475f414c52454144595f44454c45474154454429290a0a2020202020203b3b2074686520537461636b6572206d75737420686176652073756666696369656e7420756e6c6f636b65642066756e64730a20202020202028617373657274732120283e3d20287374782d6765742d62616c616e63652074782d73656e6465722920616d6f756e742d75737478290a202020202020202028657272204552525f535441434b494e475f494e53554646494349454e545f46554e445329290a0a2020202020203b3b2056616c6964617465206f776e657273686970206f662074686520676976656e207369676e6572206b65790a20202020202028747279212028636f6e73756d652d7369676e65722d6b65792d617574686f72697a6174696f6e20706f782d6164647220282d2066697273742d7265776172642d6379636c65207531292022737461636b2d73747822206c6f636b2d706572696f64207369676e65722d736967207369676e65722d6b657920616d6f756e742d75737478206d61782d616d6f756e7420617574682d696429290a0a2020202020203b3b20656e73757265207468617420737461636b696e672063616e20626520706572666f726d65640a2020202020202874727921202863616e2d737461636b2d73747820706f782d6164647220616d6f756e742d757374782066697273742d7265776172642d6379636c65206c6f636b2d706572696f6429290a0a2020202020203b3b2072656769737465722074686520506f58206164647265737320776974682074686520616d6f756e7420737461636b65640a202020202020286c65742028287265776172642d7365742d696e646578657320287472792120286164642d706f782d616464722d746f2d7265776172642d6379636c657320706f782d616464722066697273742d7265776172642d6379636c65206c6f636b2d706572696f6420616d6f756e742d757374782074782d73656e646572207369676e65722d6b6579292929290a202020202020202020203b3b2061646420737461636b6572207265636f72640a202020202020202020286d61702d73657420737461636b696e672d73746174650a20202020202020202020207b20737461636b65723a2074782d73656e646572207d0a20202020202020202020207b20706f782d616464723a20706f782d616464722c0a202020202020202020202020207265776172642d7365742d696e64657865733a207265776172642d7365742d696e64657865732c0a2020202020202020202020202066697273742d7265776172642d6379636c653a2066697273742d7265776172642d6379636c652c0a202020202020202020202020206c6f636b2d706572696f643a206c6f636b2d706572696f642c0a2020202020202020202020202064656c6567617465642d746f3a206e6f6e65207d290a0a202020202020202020203b3b2072657475726e20746865206c6f636b2d757020696e666f726d6174696f6e2c20736f20746865206e6f64652063616e2061637475616c6c79206361727279206f757420746865206c6f636b2e0a20202020202020202020286f6b207b20737461636b65723a2074782d73656e6465722c206c6f636b2d616d6f756e743a20616d6f756e742d757374782c207369676e65722d6b65793a207369676e65722d6b65792c20756e6c6f636b2d6275726e2d6865696768743a20287265776172642d6379636c652d746f2d6275726e2d68656967687420282b2066697273742d7265776172642d6379636c65206c6f636b2d706572696f642929207d292929290a0a3b3b205265766f6b6573207468652064656c65676174696f6e20746f207468652063757272656e7420737461636b696e6720706f6f6c2e0a3b3b204e657720696e20706f782d343a204661696c73206966207468652064656c65676174696f6e2077617320616c7265616479207265766f6b65642e0a3b3b2052657475726e7320746865206c6173742064656c65676174696f6e2073746174652e0a28646566696e652d7075626c696320287265766f6b652d64656c65676174652d737478290a2020286c65742028286c6173742d64656c65676174696f6e2d737461746520286765742d636865636b2d64656c65676174696f6e2074782d73656e6465722929290a202020203b3b206d7573742062652063616c6c6564206469726563746c79206279207468652074782d73656e646572206f7220627920616e20616c6c6f77656420636f6e74726163742d63616c6c65720a202020202861737365727473212028636865636b2d63616c6c65722d616c6c6f776564290a202020202020202020202020202028657272204552525f535441434b494e475f5045524d495353494f4e5f44454e49454429290a20202020286173736572747321202869732d736f6d65206c6173742d64656c65676174696f6e2d7374617465292028657272204552525f44454c45474154494f4e5f414c52454144595f5245564f4b454429290a2020202028617373657274732120286d61702d64656c6574652064656c65676174696f6e2d7374617465207b20737461636b65723a2074782d73656e646572207d292028657272204552525f44454c45474154494f4e5f414c52454144595f5245564f4b454429290a20202020286f6b206c6173742d64656c65676174696f6e2d73746174652929290a0a3b3b2044656c656761746520746f206064656c65676174652d746f6020746865206162696c69747920746f20737461636b2066726f6d206120676976656e20616464726573732e0a3b3b202054686973206d6574686f64205f646f6573206e6f745f206c6f636b207468652066756e64732c207261746865722c20697420616c6c6f7773207468652064656c65676174650a3b3b2020746f2069737375652074686520737461636b696e67206c6f636b2e0a3b3b205468652063616c6c6572207370656369666965733a0a3b3b2020202a20616d6f756e742d757374783a2074686520746f74616c20616d6f756e74206f662075737478207468652064656c6567617465206d617920626520616c6c6f77656420746f206c6f636b0a3b3b2020202a20756e74696c2d6275726e2d68743a20616e206f7074696f6e616c206275726e2068656967687420617420776869636820746869732064656c65676174696f6e20657870697265730a3b3b2020202a20706f782d616464723a20616e206f7074696f6e616c206164647265737320746f20776869636820616e792072657761726473202a6d7573742a2062652073656e740a28646566696e652d7075626c6963202864656c65676174652d7374782028616d6f756e742d757374782075696e74290a20202020202020202020202020202020202020202020202020202020202864656c65676174652d746f207072696e636970616c290a202020202020202020202020202020202020202020202020202020202028756e74696c2d6275726e2d687420286f7074696f6e616c2075696e7429290a202020202020202020202020202020202020202020202020202020202028706f782d6164647220286f7074696f6e616c207b2076657273696f6e3a2028627566662031292c206861736862797465733a20286275666620333229207d2929290a0a2020202028626567696e0a2020202020203b3b206d7573742062652063616c6c6564206469726563746c79206279207468652074782d73656e646572206f7220627920616e20616c6c6f77656420636f6e74726163742d63616c6c65720a2020202020202861737365727473212028636865636b2d63616c6c65722d616c6c6f776564290a2020202020202020202020202020202028657272204552525f535441434b494e475f5045524d495353494f4e5f44454e49454429290a0a2020202020203b3b2064656c65676174652d737478206e6f206c6f6e676572207265717569726573207468652064656c656761746f7220746f206e6f742063757272656e746c790a2020202020203b3b20626520737461636b696e672e0a2020202020203b3b2064656c65676174652d737461636b2d2a2066756e6374696f6e732061737365727420746861740a2020202020203b3b20312e2075736572732063616e2774207377696d20696e2074776f20706f6f6c73206174207468652073616d652074696d652e0a2020202020203b3b20322e2075736572732063616e27742073776974636820706f6f6c7320776974686f757420636f6f6c20646f776e206379636c652e0a2020202020203b3b202020204f7468657220706f6f6c2061646d696e732063616e277420696e637265617365206f7220657874656e642e0a2020202020203b3b20332e2075736572732063616e2774206a6f696e206120706f6f6c207768696c6520616c7265616479206469726563746c7920737461636b696e672e0a0a2020202020203b3b20706f782d616464722c20696620676976656e2c206d7573742062652076616c69640a202020202020286d6174636820706f782d616464720a202020202020202020616464726573730a2020202020202020202020202861737365727473212028636865636b2d706f782d616464722d76657273696f6e20286765742076657273696f6e206164647265737329290a2020202020202020202020202020202028657272204552525f535441434b494e475f494e56414c49445f504f585f4144445245535329290a20202020202020202074727565290a0a2020202020203b3b2074782d73656e646572206d757374206e6f742062652064656c65676174696e670a202020202020286173736572747321202869732d6e6f6e6520286765742d636865636b2d64656c65676174696f6e2074782d73656e64657229290a202020202020202028657272204552525f535441434b494e475f414c52454144595f44454c45474154454429290a0a2020202020203b3b206164642064656c65676174696f6e207265636f72640a202020202020286d61702d7365742064656c65676174696f6e2d73746174650a20202020202020207b20737461636b65723a2074782d73656e646572207d0a20202020202020207b20616d6f756e742d757374783a20616d6f756e742d757374782c0a2020202020202020202064656c6567617465642d746f3a2064656c65676174652d746f2c0a20202020202020202020756e74696c2d6275726e2d68743a20756e74696c2d6275726e2d68742c0a20202020202020202020706f782d616464723a20706f782d61646472207d290a0a202020202020286f6b20747275652929290a0a3b3b2047656e65726174652061206d657373616765206861736820666f722076616c69646174696e672061207369676e6572206b65792e0a3b3b20546865206d657373616765206861736820666f6c6c6f77732053495030313820666f72207369676e696e67207374727563747572656420646174612e20546865207374727563747572656420646174610a3b3b20697320746865207475706c6520607b20706f782d616464723a207b2076657273696f6e2c20686173686279746573207d2c207265776172642d6379636c652c20617574682d69642c206d61782d616d6f756e74207d602e0a3b3b2054686520646f6d61696e20697320607b206e616d653a2022706f782d342d7369676e6572222c2076657273696f6e3a2022312e302e30222c20636861696e2d69643a20636861696e2d6964207d602e0a28646566696e652d726561642d6f6e6c7920286765742d7369676e65722d6b65792d6d6573736167652d686173682028706f782d61646472207b2076657273696f6e3a2028627566662031292c206861736862797465733a20286275666620333229207d290a2020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020287265776172642d6379636c652075696e74290a202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202028746f7069632028737472696e672d617363696920313429290a202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202028706572696f642075696e74290a2020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020286d61782d616d6f756e742075696e74290a202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202028617574682d69642075696e7429290a2020287368613235362028636f6e6361740a202020205349503031385f4d53475f5052454649580a2020202028636f6e6361740a202020202020287368613235362028756e777261702d70616e69632028746f2d636f6e73656e7375732d627566663f207b206e616d653a2022706f782d342d7369676e6572222c2076657273696f6e3a2022312e302e30222c20636861696e2d69643a20636861696e2d6964207d2929290a202020202020287368613235362028756e777261702d70616e69630a202020202020202028746f2d636f6e73656e7375732d627566663f207b0a20202020202020202020706f782d616464723a20706f782d616464722c0a202020202020202020207265776172642d6379636c653a207265776172642d6379636c652c0a20202020202020202020746f7069633a20746f7069632c0a20202020202020202020706572696f643a20706572696f642c0a20202020202020202020617574682d69643a20617574682d69642c0a202020202020202020206d61782d616d6f756e743a206d61782d616d6f756e742c0a20202020202020207d292929292929290a0a3b3b205665726966792061207369676e61747572652066726f6d20746865207369676e696e67206b657920666f72207468697320737065636966696320737461636b65722e0a3b3b2053656520606765742d7369676e65722d6b65792d6d6573736167652d686173686020666f722064657461696c73206f6e20746865206d65737361676520686173682e0a3b3b0a3b3b204e6f7465207468617420607265776172642d6379636c656020636f72726573706f6e647320746f20746865205f63757272656e745f20726577617264206379636c652c0a3b3b207768656e207573656420776974682060737461636b2d7374786020616e642060737461636b2d657874656e64602e20426f74682074686520726577617264206379636c6520616e640a3b3b20746865206c6f636b20706572696f642061726520696e666c657869626c652c207768696368206d65616e7320746861742074686520737461636b6572206d75737420636f6e6669726d207468656972207472616e73616374696f6e0a3b3b20647572696e672074686520657861637420726577617264206379636c6520616e6420776974682074686520657861637420706572696f64207468617420746865207369676e6174757265206f7220617574686f72697a6174696f6e207761730a3b3b2067656e65726174656420666f722e0a3b3b200a3b3b205468652060616d6f756e7460206669656c6420697320636865636b656420746f20656e73757265206974206973206e6f74206c6172676572207468616e20606d61782d616d6f756e74602c2077686963682069730a3b3b2061206669656c6420696e2074686520617574686f72697a6174696f6e2e2060617574682d69646020697320612072616e646f6d2075696e7420746f2070726576656e7420617574686f72697a6174696f6e0a3b3b207265706c6179732e0a3b3b0a3b3b20546869732066756e6374696f6e20646f6573206e6f742076657269667920746865207061796c6f6164206f662074686520617574686f72697a6174696f6e2e205468652063616c6c6572206f660a3b3b20746869732066756e6374696f6e206d75737420656e73757265207468617420746865207061796c6f61642028726577617264206379636c652c20706572696f642c20746f7069632c20616e6420706f782d61646472290a3b3b206172652076616c6964206163636f7264696e6720746f207468652063616c6c65722066756e6374696f6e277320726571756972656d656e74732e0a3b3b0a3b3b205768656e20607369676e65722d736967602069732070726573656e742c20746865207075626c6963206b6579206973207265636f76657265642066726f6d20746865207369676e61747572650a3b3b20616e6420636f6d706172656420746f20607369676e65722d6b6579602e20496620607369676e65722d7369676020697320606e6f6e65602c207468652066756e6374696f6e207665726966696573207468617420616e20617574686f72697a6174696f6e207761732070726576696f75736c790a3b3b20616464656420666f722074686973206b65792e0a3b3b200a3b3b20546869732066756e6374696f6e20636865636b7320746f20656e7375726520746861742074686520617574686f72697a6174696f6e206861736e2774206265656e2075736564207965742c206275742069740a3b3b20646f6573205f6e6f745f2073746f72652074686520617574686f72697a6174696f6e20617320757365642e205468652066756e6374696f6e2060636f6e73756d652d7369676e65722d6b65792d617574686f72697a6174696f6e600a3b3b2068616e646c657320746861742c20616e64207468697320726561642d6f6e6c792066756e6374696f6e206973206578706f73656420666f7220636c69656e742d7369646520766572696669636174696f6e2e0a28646566696e652d726561642d6f6e6c7920287665726966792d7369676e65722d6b65792d7369672028706f782d61646472207b2076657273696f6e3a2028627566662031292c206861736862797465733a20286275666620333229207d290a2020202020202020202020202020202020202020202020202020202020202020202020202020202020287265776172642d6379636c652075696e74290a202020202020202020202020202020202020202020202020202020202020202020202020202020202028746f7069632028737472696e672d617363696920313429290a202020202020202020202020202020202020202020202020202020202020202020202020202020202028706572696f642075696e74290a2020202020202020202020202020202020202020202020202020202020202020202020202020202020287369676e65722d7369672d6f707420286f7074696f6e616c2028627566662036352929290a2020202020202020202020202020202020202020202020202020202020202020202020202020202020287369676e65722d6b657920286275666620333329290a202020202020202020202020202020202020202020202020202020202020202020202020202020202028616d6f756e742075696e74290a2020202020202020202020202020202020202020202020202020202020202020202020202020202020286d61782d616d6f756e742075696e74290a202020202020202020202020202020202020202020202020202020202020202020202020202020202028617574682d69642075696e7429290a202028626567696e0a202020203b3b2056616c6964617465207468617420616d6f756e74206973206c657373207468616e206f7220657175616c20746f20606d61782d616d6f756e74600a2020202028617373657274732120283e3d206d61782d616d6f756e7420616d6f756e74292028657272204552525f5349474e45525f415554485f414d4f554e545f544f4f5f4849474829290a20202020286173736572747321202869732d6e6f6e6520286d61702d6765743f20757365642d7369676e65722d6b65792d617574686f72697a6174696f6e73207b207369676e65722d6b65793a207369676e65722d6b65792c207265776172642d6379636c653a207265776172642d6379636c652c20746f7069633a20746f7069632c20706572696f643a20706572696f642c20706f782d616464723a20706f782d616464722c20617574682d69643a20617574682d69642c206d61782d616d6f756e743a206d61782d616d6f756e74207d29290a202020202020202020202020202028657272204552525f5349474e45525f415554485f5553454429290a20202020286d61746368207369676e65722d7369672d6f70740a2020202020203b3b20607369676e65722d736967602069732070726573656e742c2076657269667920746865207369676e61747572650a2020202020207369676e65722d73696720286f6b202861737365727473210a20202020202020202869732d65710a2020202020202020202028756e77726170212028736563703235366b312d7265636f7665723f0a202020202020202020202020286765742d7369676e65722d6b65792d6d6573736167652d6861736820706f782d61646472207265776172642d6379636c6520746f70696320706572696f64206d61782d616d6f756e7420617574682d6964290a2020202020202020202020207369676e65722d736967292028657272204552525f494e56414c49445f5349474e41545552455f5245434f56455229290a202020202020202020207369676e65722d6b6579290a202020202020202028657272204552525f494e56414c49445f5349474e41545552455f5055424b45592929290a2020202020203b3b20607369676e65722d73696760206973206e6f742070726573656e742c20766572696679207468617420616e20617574686f72697a6174696f6e207761732070726576696f75736c7920616464656420666f722074686973206b65790a202020202020286f6b20286173736572747321202864656661756c742d746f2066616c736520286d61702d6765743f207369676e65722d6b65792d617574686f72697a6174696f6e730a2020202020202020202020207b207369676e65722d6b65793a207369676e65722d6b65792c207265776172642d6379636c653a207265776172642d6379636c652c20706572696f643a20706572696f642c20746f7069633a20746f7069632c20706f782d616464723a20706f782d616464722c20617574682d69643a20617574682d69642c206d61782d616d6f756e743a206d61782d616d6f756e74207d29290a2020202020202020202028657272204552525f4e4f545f414c4c4f5745442929290a2020202029290a2020290a0a3b3b20546869732066756e6374696f6e20646f65732074776f207468696e67733a0a3b3b0a3b3b202d2056657269667920746861742061207369676e6572206b657920697320617574686f72697a656420746f20626520757365640a3b3b202d2055706461746573207468652060757365642d7369676e65722d6b65792d617574686f72697a6174696f6e7360206d617020746f2070726576656e742072657573650a3b3b0a3b3b205468697320227772617070657222206d6574686f642061726f756e6420607665726966792d7369676e65722d6b65792d7369676020616c6c6f777320746861742066756e6374696f6e20746f2072656d61696e0a3b3b20726561642d6f6e6c792c20736f20746861742069742063616e206265207573656420627920636c69656e747320617320612073616e69747920636865636b206265666f7265207375626d697474696e672061207472616e73616374696f6e2e0a28646566696e652d707269766174652028636f6e73756d652d7369676e65722d6b65792d617574686f72697a6174696f6e2028706f782d61646472207b2076657273696f6e3a2028627566662031292c206861736862797465733a20286275666620333229207d290a2020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020287265776172642d6379636c652075696e74290a202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202028746f7069632028737472696e672d617363696920313429290a202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202028706572696f642075696e74290a2020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020287369676e65722d7369672d6f707420286f7074696f6e616c2028627566662036352929290a2020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020287369676e65722d6b657920286275666620333329290a202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202028616d6f756e742075696e74290a2020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020286d61782d616d6f756e742075696e74290a202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202028617574682d69642075696e7429290a202028626567696e0a202020203b3b207665726966792074686520617574686f72697a6174696f6e0a20202020287472792120287665726966792d7369676e65722d6b65792d73696720706f782d61646472207265776172642d6379636c6520746f70696320706572696f64207369676e65722d7369672d6f7074207369676e65722d6b657920616d6f756e74206d61782d616d6f756e7420617574682d696429290a202020203b3b20757064617465207468652060757365642d7369676e65722d6b65792d617574686f72697a6174696f6e7360206d61700a2020202028617373657274732120286d61702d696e7365727420757365642d7369676e65722d6b65792d617574686f72697a6174696f6e730a2020202020207b207369676e65722d6b65793a207369676e65722d6b65792c207265776172642d6379636c653a207265776172642d6379636c652c20746f7069633a20746f7069632c20706572696f643a20706572696f642c20706f782d616464723a20706f782d616464722c20617574682d69643a20617574682d69642c206d61782d616d6f756e743a206d61782d616d6f756e74207d2074727565290a20202020202028657272204552525f5349474e45525f415554485f5553454429290a20202020286f6b20747275652929290a0a3b3b20436f6d6d6974207061727469616c6c7920737461636b65642053545820616e6420616c6c6f636174652061206e657720506f5820726577617264206164647265737320736c6f742e0a3b3b2020205468697320616c6c6f7773206120737461636b65722f64656c656761746520746f206c6f636b20666577657220535458207468616e20746865206d696e696d616c207468726573686f6c6420696e206d756c7469706c65207472616e73616374696f6e732c0a3b3b202020736f206c6f6e672061733a20312e2054686520706f782d61646472206973207468652073616d652e0a3b3b202020202020202020202020202020322e20546869732022636f6d6d697422207472616e73616374696f6e2069732063616c6c6564205f6265666f72655f2074686520506f5820616e63686f7220626c6f636b2e0a3b3b2020205468697320656e73757265732074686174206561636820656e74727920696e2074686520726577617264207365742072657475726e656420746f2074686520737461636b732d6e6f64652069732067726561746572207468616e20746865207468726573686f6c642c0a3b3b20202062757420646f6573206e6f74207265717569726520697420626520616c6c206c6f636b65642075702077697468696e20612073696e676c65207472616e73616374696f6e0a3b3b0a3b3b2052657475726e7320286f6b2075696e7429206f6e20737563636573732c2077686572652074686520676976656e2075696e7420697320746865207265776172642061646472657373277320696e64657820696e20746865206c697374206f66207265776172640a3b3b2061646472657373657320616c6c6f636174656420696e207468697320726577617264206379636c652e20205468697320696e6465782063616e207468656e2062652070617373656420746f2060737461636b2d6167677265676174696f6e2d696e637265617365600a3b3b20746f206c6174657220696e6372656d656e742074686520535458207468697320506f58206164647265737320726570726573656e74732c20696e20616d6f756e7473206c657373207468616e2074686520737461636b696e67206d696e696d756d2e0a3b3b0a3b3b202a4e657720696e20537461636b7320322e312e2a0a28646566696e652d707269766174652028696e6e65722d737461636b2d6167677265676174696f6e2d636f6d6d69742028706f782d61646472207b2076657273696f6e3a2028627566662031292c206861736862797465733a20286275666620333229207d290a202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020287265776172642d6379636c652075696e74290a202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020287369676e65722d73696720286f7074696f6e616c2028627566662036352929290a202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020287369676e65722d6b657920286275666620333329290a202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020286d61782d616d6f756e742075696e74290a20202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202028617574682d69642075696e7429290a2020286c65742028287061727469616c2d737461636b65640a2020202020202020203b3b20666574636820746865207061727469616c20636f6d6d69746d656e74730a20202020202020202028756e777261702120286d61702d6765743f207061727469616c2d737461636b65642d62792d6379636c65207b20706f782d616464723a20706f782d616464722c2073656e6465723a2074782d73656e6465722c207265776172642d6379636c653a207265776172642d6379636c65207d290a20202020202020202020202020202020202028657272204552525f535441434b494e475f4e4f5f535543485f5052494e434950414c292929290a202020203b3b206d7573742062652063616c6c6564206469726563746c79206279207468652074782d73656e646572206f7220627920616e20616c6c6f77656420636f6e74726163742d63616c6c65720a202020202861737365727473212028636865636b2d63616c6c65722d616c6c6f776564290a202020202020202020202020202028657272204552525f535441434b494e475f5045524d495353494f4e5f44454e49454429290a20202020286c6574202828616d6f756e742d75737478202867657420737461636b65642d616d6f756e74207061727469616c2d737461636b65642929290a20202020202028747279212028636f6e73756d652d7369676e65722d6b65792d617574686f72697a6174696f6e20706f782d61646472207265776172642d6379636c6520226167672d636f6d6d697422207531207369676e65722d736967207369676e65722d6b657920616d6f756e742d75737478206d61782d616d6f756e7420617574682d696429290a2020202020202874727921202863616e2d737461636b2d73747820706f782d6164647220616d6f756e742d75737478207265776172642d6379636c6520753129290a2020202020203b3b204164642074686520706f78206164647220746f2074686520726577617264206379636c652c20616e6420657874726163742074686520696e646578206f662074686520506f5820616464726573730a2020202020203b3b20736f207468652064656c656761746f722063616e206c617465722075736520697420746f2063616c6c20737461636b2d6167677265676174696f6e2d696e6372656173652e0a202020202020286c65742028286164642d706f782d616464722d696e666f0a20202020202020202020202020202020286164642d706f782d616464722d746f2d6974682d7265776172642d6379636c650a2020202020202020202020202020202020202075300a202020202020202020202020202020202020207b20706f782d616464723a20706f782d616464722c0a20202020202020202020202020202020202020202066697273742d7265776172642d6379636c653a207265776172642d6379636c652c0a2020202020202020202020202020202020202020206e756d2d6379636c65733a2075312c0a2020202020202020202020202020202020202020207265776172642d7365742d696e64657865733a20286c697374292c0a202020202020202020202020202020202020202020737461636b65723a206e6f6e652c0a2020202020202020202020202020202020202020207369676e65723a207369676e65722d6b65792c0a202020202020202020202020202020202020202020616d6f756e742d757374783a20616d6f756e742d757374782c0a202020202020202020202020202020202020202020693a207530207d29290a202020202020202020202028706f782d616464722d696e6465782028756e777261702d70616e69630a2020202020202020202020202020202028656c656d656e742d61742028676574207265776172642d7365742d696e6465786573206164642d706f782d616464722d696e666f29207530292929290a0a20202020202020203b3b20646f6e2774207570646174652074686520737461636b696e672d7374617465206d61702c0a20202020202020203b3b202062656361757365206974205f616c7265616479206861735f207468697320737461636b657227732073746174650a20202020202020203b3b20646f6e2774206c6f636b20746865205354582c2062656361757365207468652053545820697320616c7265616479206c6f636b65640a20202020202020203b3b0a20202020202020203b3b20636c65617220746865207061727469616c2d737461636b65642073746174652c20616e64206c6f672069740a2020202020202020286d61702d64656c657465207061727469616c2d737461636b65642d62792d6379636c65207b20706f782d616464723a20706f782d616464722c2073656e6465723a2074782d73656e6465722c207265776172642d6379636c653a207265776172642d6379636c65207d290a2020202020202020286d61702d736574206c6f676765642d7061727469616c2d737461636b65642d62792d6379636c65207b20706f782d616464723a20706f782d616464722c2073656e6465723a2074782d73656e6465722c207265776172642d6379636c653a207265776172642d6379636c65207d207061727469616c2d737461636b6564290a2020202020202020286f6b20706f782d616464722d696e64657829292929290a0a3b3b204c656761637920696e7465726661636520666f7220737461636b2d6167677265676174696f6e2d636f6d6d69742e0a3b3b20577261707320696e6e65722d737461636b2d6167677265676174696f6e2d636f6d6d69742e20205365652069747320646f63737472696e6720666f722064657461696c732e0a3b3b2052657475726e7320286f6b207472756529206f6e20737563636573730a3b3b2052657475726e732028657272202e2e2e29206f6e206661696c7572652e0a28646566696e652d7075626c69632028737461636b2d6167677265676174696f6e2d636f6d6d69742028706f782d61646472207b2076657273696f6e3a2028627566662031292c206861736862797465733a20286275666620333229207d290a2020202020202020202020202020202020202020202020202020202020202020202020202020202020287265776172642d6379636c652075696e74290a2020202020202020202020202020202020202020202020202020202020202020202020202020202020287369676e65722d73696720286f7074696f6e616c2028627566662036352929290a2020202020202020202020202020202020202020202020202020202020202020202020202020202020287369676e65722d6b657920286275666620333329290a2020202020202020202020202020202020202020202020202020202020202020202020202020202020286d61782d616d6f756e742075696e74290a202020202020202020202020202020202020202020202020202020202020202020202020202020202028617574682d69642075696e7429290a20202020286d617463682028696e6e65722d737461636b2d6167677265676174696f6e2d636f6d6d697420706f782d61646472207265776172642d6379636c65207369676e65722d736967207369676e65722d6b6579206d61782d616d6f756e7420617574682d6964290a2020202020202020706f782d616464722d696e64657820286f6b2074727565290a2020202020202020636f6d6d69742d657272202865727220636f6d6d69742d6572722929290a0a3b3b205075626c696320696e7465726661636520746f2060696e6e65722d737461636b2d6167677265676174696f6e2d636f6d6d6974602e20205365652069747320646f63756d656e746174696f6e20666f722064657461696c732e0a3b3b202a4e657720696e20537461636b7320322e312e2a0a28646566696e652d7075626c69632028737461636b2d6167677265676174696f6e2d636f6d6d69742d696e64657865642028706f782d61646472207b2076657273696f6e3a2028627566662031292c206861736862797465733a20286275666620333229207d290a20202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020287265776172642d6379636c652075696e74290a20202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020287369676e65722d73696720286f7074696f6e616c2028627566662036352929290a20202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020287369676e65722d6b657920286275666620333329290a20202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020286d61782d616d6f756e742075696e74290a2020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202028617574682d69642075696e7429290a2020202028696e6e65722d737461636b2d6167677265676174696f6e2d636f6d6d697420706f782d61646472207265776172642d6379636c65207369676e65722d736967207369676e65722d6b6579206d61782d616d6f756e7420617574682d696429290a0a3b3b20436f6d6d6974207061727469616c6c7920737461636b65642053545820746f206120506f5820616464726573732077686963682068617320616c726561647920726563656976656420736f6d652053545820286d6f7265207468616e2074686520537461636b696e67206d696e292e0a3b3b205468697320616c6c6f777320612064656c656761746f7220746f206c6f636b207570206d617267696e616c6c79206d6f7265205354582066726f6d206e65772064656c6567617465732c206576656e206966207468657920636f6c6c6563746976656c7920646f206e6f740a3b3b206578636565642074686520537461636b696e67206d696e696d756d2c20736f206c6f6e67206173207468652074617267657420506f58206164647265737320616c726561647920726570726573656e7473206174206c65617374206173206d616e7920535458206173207468650a3b3b20537461636b696e67206d696e696d756d2e0a3b3b0a3b3b2054686520607265776172642d6379636c652d696e6465786020697320656d6974746564206173206120636f6e7472616374206576656e742066726f6d2060737461636b2d6167677265676174696f6e2d636f6d6d697460207768656e2074686520696e697469616c20535458206172650a3b3b206c6f636b656420757020627920746869732064656c656761746f722e20204974206d75737420626520706173736564206865726520746f20616464206d6f72652053545820626568696e64207468697320506f5820616464726573732e20204966207468652064656c656761746f720a3b3b2063616c6c65642060737461636b2d6167677265676174696f6e2d636f6d6d697460206d756c7469706c652074696d657320666f72207468652073616d6520506f5820616464726573732c207468656e20616e79207375636820607265776172642d6379636c652d696e646578602077696c6c0a3b3b20776f726b20686572652e0a3b3b0a3b3b202a4e657720696e20537461636b7320322e312a0a3b3b0a28646566696e652d7075626c69632028737461636b2d6167677265676174696f6e2d696e6372656173652028706f782d61646472207b2076657273696f6e3a2028627566662031292c206861736862797465733a20286275666620333229207d290a20202020202020202020202020202020202020202020202020202020202020202020202020202020202020287265776172642d6379636c652075696e74290a20202020202020202020202020202020202020202020202020202020202020202020202020202020202020287265776172642d6379636c652d696e6465782075696e7429290a2020286c65742028287061727469616c2d737461636b65640a2020202020202020203b3b20666574636820746865207061727469616c20636f6d6d69746d656e74730a20202020202020202028756e777261702120286d61702d6765743f207061727469616c2d737461636b65642d62792d6379636c65207b20706f782d616464723a20706f782d616464722c2073656e6465723a2074782d73656e6465722c207265776172642d6379636c653a207265776172642d6379636c65207d290a20202020202020202020202020202020202028657272204552525f535441434b494e475f4e4f5f535543485f5052494e434950414c292929290a0a202020203b3b206d7573742062652063616c6c6564206469726563746c79206279207468652074782d73656e646572206f7220627920616e20616c6c6f77656420636f6e74726163742d63616c6c65720a202020202861737365727473212028636865636b2d63616c6c65722d616c6c6f776564290a202020202020202020202020202028657272204552525f535441434b494e475f5045524d495353494f4e5f44454e49454429290a0a202020203b3b207265776172642d6379636c65206d75737420626520696e20746865206675747572650a2020202028617373657274732120283e207265776172642d6379636c65202863757272656e742d706f782d7265776172642d6379636c6529290a202020202020202020202020202028657272204552525f535441434b494e475f494e56414c49445f4c4f434b5f504552494f4429290a0a20202020286c6574202828616d6f756e742d75737478202867657420737461636b65642d616d6f756e74207061727469616c2d737461636b656429290a202020202020202020203b3b207265776172642d6379636c65206d75737420706f696e7420746f20616e206578697374696e67207265636f726420696e207265776172642d6379636c652d746f74616c2d737461636b65640a202020202020202020203b3b20696e66616c6c69626c653b2067657474696e6720736f6d657468696e672066726f6d207061727469616c2d737461636b65642d62792d6379636c652073756363656564656420736f2074686973206d75737420737563636565640a20202020202020202020286578697374696e672d746f74616c2028756e777261702d70616e696320286d61702d6765743f207265776172642d6379636c652d746f74616c2d737461636b6564207b207265776172642d6379636c653a207265776172642d6379636c65207d2929290a202020202020202020203b3b207265776172642d6379636c6520616e64207265776172642d6379636c652d696e646578206d75737420706f696e7420746f20616e206578697374696e67207265636f726420696e207265776172642d6379636c652d706f782d616464726573732d6c6973740a20202020202020202020286578697374696e672d656e7472792028756e777261702120286d61702d6765743f207265776172642d6379636c652d706f782d616464726573732d6c697374207b207265776172642d6379636c653a207265776172642d6379636c652c20696e6465783a207265776172642d6379636c652d696e646578207d290a202020202020202020202020202020202020202020202020202028657272204552525f44454c45474154494f4e5f4e4f5f5245574152445f534c4f542929290a2020202020202020202028696e637265617365642d7573747820282b202867657420746f74616c2d75737478206578697374696e672d656e7472792920616d6f756e742d7573747829290a2020202020202020202028746f74616c2d7573747820282b202867657420746f74616c2d75737478206578697374696e672d746f74616c2920616d6f756e742d757374782929290a0a202020202020202020203b3b206d75737420626520737461636b61626c650a20202020202020202020287472792120286d696e696d616c2d63616e2d737461636b2d73747820706f782d6164647220746f74616c2d75737478207265776172642d6379636c6520753129290a0a202020202020202020203b3b206e657720746f74616c206d757374206578636565642074686520737461636b696e67206d696e696d756d0a2020202020202020202028617373657274732120283c3d20286765742d737461636b696e672d6d696e696d756d2920746f74616c2d75737478290a202020202020202020202020202020202020202028657272204552525f535441434b494e475f5448524553484f4c445f4e4f545f4d455429290a0a202020202020202020203b3b207468657265206d757374202a6e6f742a206265206120737461636b657220656e747279202873696e6365207468697320697320612064656c656761746f72290a20202020202020202020286173736572747321202869732d6e6f6e65202867657420737461636b6572206578697374696e672d656e74727929290a202020202020202020202020202020202020202028657272204552525f44454c45474154494f4e5f57524f4e475f5245574152445f534c4f5429290a0a202020202020202020203b3b2074686520676976656e20506f582061646472657373206d757374206d6174636820746865206f6e65206f6e207265636f72640a20202020202020202020286173736572747321202869732d657120706f782d61646472202867657420706f782d61646472206578697374696e672d656e74727929290a202020202020202020202020202020202020202028657272204552525f44454c45474154494f4e5f57524f4e475f5245574152445f534c4f5429290a0a202020202020202020203b3b207570646174652074686520706f782d61646472657373206c697374202d2d2062756d702074686520746f74616c2d757374780a20202020202020202020286d61702d736574207265776172642d6379636c652d706f782d616464726573732d6c6973740a202020202020202020202020202020202020207b207265776172642d6379636c653a207265776172642d6379636c652c20696e6465783a207265776172642d6379636c652d696e646578207d0a202020202020202020202020202020202020207b20706f782d616464723a20706f782d616464722c0a202020202020202020202020202020202020202020746f74616c2d757374783a20696e637265617365642d757374782c0a202020202020202020202020202020202020202020737461636b65723a206e6f6e652c0a2020202020202020202020202020202020202020203b3b20544f444f3a2074686973206d75737420626520617574686f72697a656420776974682061207369676e61747572652c206f722074782d73656e64657220616c6c6f77616e6365210a2020202020202020202020202020202020202020207369676e65723a2028676574207369676e6572206578697374696e672d656e74727929207d290a0a202020202020202020203b3b207570646174652074686520746f74616c207573747820696e2074686973206379636c650a20202020202020202020286d61702d736574207265776172642d6379636c652d746f74616c2d737461636b65640a202020202020202020202020202020202020207b207265776172642d6379636c653a207265776172642d6379636c65207d0a202020202020202020202020202020202020207b20746f74616c2d757374783a20746f74616c2d75737478207d290a0a202020202020202020203b3b20646f6e2774207570646174652074686520737461636b696e672d7374617465206d61702c0a202020202020202020203b3b202062656361757365206974205f616c7265616479206861735f207468697320737461636b657227732073746174650a202020202020202020203b3b20646f6e2774206c6f636b20746865205354582c2062656361757365207468652053545820697320616c7265616479206c6f636b65640a202020202020202020203b3b0a202020202020202020203b3b20636c65617220746865207061727469616c2d737461636b65642073746174652c20616e64206c6f672069740a20202020202020202020286d61702d64656c657465207061727469616c2d737461636b65642d62792d6379636c65207b20706f782d616464723a20706f782d616464722c2073656e6465723a2074782d73656e6465722c207265776172642d6379636c653a207265776172642d6379636c65207d290a20202020202020202020286d61702d736574206c6f676765642d7061727469616c2d737461636b65642d62792d6379636c65207b20706f782d616464723a20706f782d616464722c2073656e6465723a2074782d73656e6465722c207265776172642d6379636c653a207265776172642d6379636c65207d207061727469616c2d737461636b6564290a20202020202020202020286f6b2074727565292929290a0a3b3b20417320612064656c65676174652c20737461636b2074686520676976656e207072696e636970616c277320535458207573696e67207061727469616c2d737461636b65642d62792d6379636c650a3b3b204f6e6365207468652064656c65676174652068617320737461636b6564203e206d696e696d756d2c207468652064656c65676174652073686f756c642063616c6c20737461636b2d6167677265676174696f6e2d636f6d6d69740a28646566696e652d7075626c6963202864656c65676174652d737461636b2d7374782028737461636b6572207072696e636970616c290a202020202020202020202020202020202020202020202020202020202020202020202028616d6f756e742d757374782075696e74290a202020202020202020202020202020202020202020202020202020202020202020202028706f782d61646472207b2076657273696f6e3a2028627566662031292c206861736862797465733a20286275666620333229207d290a20202020202020202020202020202020202020202020202020202020202020202020202873746172742d6275726e2d68742075696e74290a2020202020202020202020202020202020202020202020202020202020202020202020286c6f636b2d706572696f642075696e7429290a202020203b3b207468697320737461636b6572277320666972737420726577617264206379636c6520697320746865205f6e6578745f20726577617264206379636c650a20202020286c657420282866697273742d7265776172642d6379636c6520282b207531202863757272656e742d706f782d7265776172642d6379636c652929290a20202020202020202020287370656369666965642d7265776172642d6379636c6520282b20753120286275726e2d6865696768742d746f2d7265776172642d6379636c652073746172742d6275726e2d68742929290a2020202020202020202028756e6c6f636b2d6275726e2d68656967687420287265776172642d6379636c652d746f2d6275726e2d68656967687420282b202863757272656e742d706f782d7265776172642d6379636c6529207531206c6f636b2d706572696f64292929290a2020202020203b3b207468652073746172742d6275726e2d6874206d75737420726573756c7420696e20746865206e65787420726577617264206379636c652c20646f206e6f7420616c6c6f7720737461636b6572730a2020202020203b3b2020746f2022706f73742d64617465222074686569722060737461636b2d73747860207472616e73616374696f6e0a202020202020286173736572747321202869732d65712066697273742d7265776172642d6379636c65207370656369666965642d7265776172642d6379636c65290a2020202020202020202020202020202028657272204552525f494e56414c49445f53544152545f4255524e5f48454947485429290a0a2020202020203b3b206d7573742062652063616c6c6564206469726563746c79206279207468652074782d73656e646572206f7220627920616e20616c6c6f77656420636f6e74726163742d63616c6c65720a2020202020202861737365727473212028636865636b2d63616c6c65722d616c6c6f776564290a202020202020202028657272204552525f535441434b494e475f5045524d495353494f4e5f44454e49454429290a0a2020202020203b3b20737461636b6572206d75737420686176652064656c65676174656420746f207468652063616c6c65720a202020202020286c657420282864656c65676174696f6e2d696e666f2028756e777261702120286765742d636865636b2d64656c65676174696f6e20737461636b6572292028657272204552525f535441434b494e475f5045524d495353494f4e5f44454e494544292929290a20202020202020203b3b206d75737420686176652064656c65676174656420746f2074782d73656e6465720a2020202020202020286173736572747321202869732d657120286765742064656c6567617465642d746f2064656c65676174696f6e2d696e666f292074782d73656e646572290a20202020202020202020202020202020202028657272204552525f535441434b494e475f5045524d495353494f4e5f44454e49454429290a20202020202020203b3b206d75737420686176652064656c65676174656420656e6f756768207374780a202020202020202028617373657274732120283e3d202867657420616d6f756e742d757374782064656c65676174696f6e2d696e666f2920616d6f756e742d75737478290a20202020202020202020202020202020202028657272204552525f44454c45474154494f4e5f544f4f5f4d5543485f4c4f434b454429290a20202020202020203b3b20696620706f782d61646472206973207365742c206d75737420626520657175616c20746f20706f782d616464720a202020202020202028617373657274732120286d61746368202867657420706f782d616464722064656c65676174696f6e2d696e666f290a202020202020202020202020202020202020202020202020207370656369666965642d706f782d61646472202869732d657120706f782d61646472207370656369666965642d706f782d61646472290a2020202020202020202020202020202020202020202020202074727565290a20202020202020202020202020202020202028657272204552525f44454c45474154494f4e5f504f585f414444525f524551554952454429290a20202020202020203b3b2064656c65676174696f6e206d757374206e6f7420657870697265206265666f7265206c6f636b20706572696f640a202020202020202028617373657274732120286d61746368202867657420756e74696c2d6275726e2d68742064656c65676174696f6e2d696e666f290a20202020202020202020202020202020202020202020202020756e74696c2d6275726e2d687420283e3d20756e74696c2d6275726e2d68740a20202020202020202020202020202020202020202020202020202020202020202020202020202020202020756e6c6f636b2d6275726e2d686569676874290a2020202020202020202020202020202020202020202074727565290a20202020202020202020202020202020202028657272204552525f44454c45474154494f4e5f455850495245535f445552494e475f4c4f434b29290a2020202020202020290a0a2020202020203b3b20737461636b6572207072696e636970616c206d757374206e6f7420626520737461636b696e670a202020202020286173736572747321202869732d6e6f6e6520286765742d737461636b65722d696e666f20737461636b657229290a202020202020202028657272204552525f535441434b494e475f414c52454144595f535441434b454429290a0a2020202020203b3b2074686520537461636b6572206d75737420686176652073756666696369656e7420756e6c6f636b65642066756e64730a20202020202028617373657274732120283e3d20287374782d6765742d62616c616e636520737461636b65722920616d6f756e742d75737478290a202020202020202028657272204552525f535441434b494e475f494e53554646494349454e545f46554e445329290a0a2020202020203b3b20656e73757265207468617420737461636b696e672063616e20626520706572666f726d65640a202020202020287472792120286d696e696d616c2d63616e2d737461636b2d73747820706f782d6164647220616d6f756e742d757374782066697273742d7265776172642d6379636c65206c6f636b2d706572696f6429290a0a2020202020203b3b2072656769737465722074686520506f58206164647265737320776974682074686520616d6f756e7420737461636b656420766961207061727469616c20737461636b696e670a2020202020203b3b2020206265666f72652069742063616e20626520696e636c7564656420696e2074686520726577617264207365742c2074686973206d75737420626520636f6d6d6974746564210a202020202020286164642d706f782d7061727469616c2d737461636b656420706f782d616464722066697273742d7265776172642d6379636c65206c6f636b2d706572696f6420616d6f756e742d75737478290a0a2020202020203b3b2061646420737461636b6572207265636f72640a202020202020286d61702d73657420737461636b696e672d73746174650a20202020202020207b20737461636b65723a20737461636b6572207d0a20202020202020207b20706f782d616464723a20706f782d616464722c0a2020202020202020202066697273742d7265776172642d6379636c653a2066697273742d7265776172642d6379636c652c0a202020202020202020207265776172642d7365742d696e64657865733a20286c697374292c0a202020202020202020206c6f636b2d706572696f643a206c6f636b2d706572696f642c0a2020202020202020202064656c6567617465642d746f3a2028736f6d652074782d73656e64657229207d290a0a2020202020203b3b2072657475726e20746865206c6f636b2d757020696e666f726d6174696f6e2c20736f20746865206e6f64652063616e2061637475616c6c79206361727279206f757420746865206c6f636b2e0a202020202020286f6b207b20737461636b65723a20737461636b65722c0a2020202020202020202020206c6f636b2d616d6f756e743a20616d6f756e742d757374782c0a202020202020202020202020756e6c6f636b2d6275726e2d6865696768743a20756e6c6f636b2d6275726e2d686569676874207d2929290a0a0a3b3b205573656420666f7220506f5820706172616d657465727320646973636f766572790a28646566696e652d726561642d6f6e6c7920286765742d706f782d696e666f290a20202020286f6b207b0a20202020202020206d696e2d616d6f756e742d757374783a20286765742d737461636b696e672d6d696e696d756d292c0a20202020202020207265776172642d6379636c652d69643a202863757272656e742d706f782d7265776172642d6379636c65292c0a2020202020202020707265706172652d6379636c652d6c656e6774683a20287661722d67657420706f782d707265706172652d6379636c652d6c656e677468292c0a202020202020202066697273742d6275726e636861696e2d626c6f636b2d6865696768743a20287661722d6765742066697273742d6275726e636861696e2d626c6f636b2d686569676874292c0a20202020202020207265776172642d6379636c652d6c656e6774683a20287661722d67657420706f782d7265776172642d6379636c652d6c656e677468292c0a2020202020202020746f74616c2d6c69717569642d737570706c792d757374783a207374782d6c69717569642d737570706c792c0a202020207d290a290a0a3b3b2055706461746520746865206e756d626572206f6620737461636b65642053545820696e206120676976656e20726577617264206379636c6520656e7472792e0a3b3b20607265776172642d6379636c652d696e646578602069732074686520696e64657820696e746f2074686520607265776172642d6379636c652d706f782d616464726573732d6c69737460206d617020666f72206120676976656e20726577617264206379636c65206e756d6265722e0a3b3b206075706461746573602c206966206028736f6d65202e2e29602c20656e636f64657320776869636820506f5820726577617264206379636c6520656e7472792028696620616e7929206765747320757064617465642e2020496e20706172746963756c61722c206974206d75737420686176650a3b3b206028736f6d6520737461636b6572296020617320746865206c697374656420737461636b65722c20616e64206d75737420626520616e207570636f6d696e6720726577617264206379636c652e0a28646566696e652d707269766174652028696e6372656173652d7265776172642d6379636c652d656e7472790a202020202020202020202020202020202020287265776172642d6379636c652d696e6465782075696e74290a202020202020202020202020202020202020287570646174657320286f7074696f6e616c207b2066697273742d6379636c653a2075696e742c207265776172642d6379636c653a2075696e742c20737461636b65723a207072696e636970616c2c206164642d616d6f756e743a2075696e742c207369676e65722d6b65793a20286275666620333329207d2929290a20202020286c657420282864617461202874727921207570646174657329290a202020202020202020202866697273742d6379636c6520286765742066697273742d6379636c65206461746129290a20202020202020202020287265776172642d6379636c652028676574207265776172642d6379636c65206461746129290a20202020202020202020287061737365642d7369676e65722d6b65792028676574207369676e65722d6b657920646174612929290a2020202028696620283e2066697273742d6379636c65207265776172642d6379636c65290a20202020202020203b3b206e6f74206174206669727374206379636c6520746f2070726f63657373207965740a202020202020202028736f6d65207b2066697273742d6379636c653a2066697273742d6379636c652c207265776172642d6379636c653a20282b207531207265776172642d6379636c65292c20737461636b65723a202867657420737461636b65722064617461292c206164642d616d6f756e743a2028676574206164642d616d6f756e742064617461292c207369676e65722d6b65793a2028676574207369676e65722d6b6579206461746129207d290a2020202020202020286c65742028286578697374696e672d656e7472792028756e777261702d70616e696320286d61702d6765743f207265776172642d6379636c652d706f782d616464726573732d6c697374207b207265776172642d6379636c653a207265776172642d6379636c652c20696e6465783a207265776172642d6379636c652d696e646578207d2929290a2020202020202020202020202020286578697374696e672d746f74616c2028756e777261702d70616e696320286d61702d6765743f207265776172642d6379636c652d746f74616c2d737461636b6564207b207265776172642d6379636c653a207265776172642d6379636c65207d2929290a2020202020202020202020202020286578697374696e672d7369676e65722d6b65792028676574207369676e6572206578697374696e672d656e74727929290a2020202020202020202020202020286164642d616d6f756e742028676574206164642d616d6f756e74206461746129290a202020202020202020202020202028746f74616c2d7573747820282b202867657420746f74616c2d75737478206578697374696e672d746f74616c29206164642d616d6f756e742929290a2020202020202020202020203b3b20737461636b6572206d757374206d617463680a202020202020202020202020286173736572747321202869732d6571202867657420737461636b6572206578697374696e672d656e747279292028736f6d65202867657420737461636b65722064617461292929206e6f6e65290a2020202020202020202020203b3b207369676e65722d6b6579206d757374206d617463680a202020202020202020202020286173736572747321202869732d6571206578697374696e672d7369676e65722d6b6579207061737365642d7369676e65722d6b657929206e6f6e65290a2020202020202020202020203b3b207570646174652074686520706f782d61646472657373206c6973740a202020202020202020202020286d61702d736574207265776172642d6379636c652d706f782d616464726573732d6c6973740a2020202020202020202020202020202020202020207b207265776172642d6379636c653a207265776172642d6379636c652c20696e6465783a207265776172642d6379636c652d696e646578207d0a2020202020202020202020202020202020202020207b20706f782d616464723a202867657420706f782d61646472206578697374696e672d656e747279292c0a20202020202020202020202020202020202020202020203b3b205468697320616464726573736573207468652062756720696e20706f782d322028736565205349502d303232290a2020202020202020202020202020202020202020202020746f74616c2d757374783a20282b202867657420746f74616c2d75737478206578697374696e672d656e74727929206164642d616d6f756e74292c0a2020202020202020202020202020202020202020202020737461636b65723a2028736f6d65202867657420737461636b6572206461746129292c0a20202020202020202020202020202020202020202020207369676e65723a2028676574207369676e6572206578697374696e672d656e74727929207d290a2020202020202020202020203b3b207570646174652074686520746f74616c0a202020202020202020202020286d61702d736574207265776172642d6379636c652d746f74616c2d737461636b65640a2020202020202020202020202020202020202020207b207265776172642d6379636c653a207265776172642d6379636c65207d0a2020202020202020202020202020202020202020207b20746f74616c2d757374783a20746f74616c2d75737478207d290a20202020202020202020202028736f6d65207b2066697273742d6379636c653a2066697273742d6379636c652c0a20202020202020202020202020202020202020207265776172642d6379636c653a20282b207531207265776172642d6379636c65292c0a2020202020202020202020202020202020202020737461636b65723a202867657420737461636b65722064617461292c0a20202020202020202020202020202020202020206164642d616d6f756e743a2028676574206164642d616d6f756e742064617461292c0a20202020202020202020202020202020202020207369676e65722d6b65793a207061737365642d7369676e65722d6b6579207d29292929290a0a3b3b20496e63726561736520746865206e756d626572206f6620535458206c6f636b65642e0a3b3b202a4e657720696e20537461636b7320322e312a0a3b3b2054686973206d6574686f64206c6f636b7320757020616e206164646974696f6e616c20616d6f756e74206f66205354582066726f6d206074782d73656e6465726027732c20696e646963617465640a3b3b2062792060696e6372656173652d6279602e2020546865206074782d73656e64657260206d75737420616c726561647920626520537461636b696e672026206d757374206e6f742062650a3b3b207374726164646c696e67206d6f7265207468616e206f6e65207369676e65722d6b657920666f7220746865206379636c65732065666665637465642e200a3b3b20526566657220746f20607665726966792d7369676e65722d6b65792d7369676020666f72206d6f726520696e666f726d6174696f6e206f6e2074686520617574686f72697a6174696f6e20706172616d65746572730a3b3b20696e636c7564656420686572652e0a28646566696e652d7075626c69632028737461636b2d696e637265617365200a202028696e6372656173652d62792075696e74290a2020287369676e65722d73696720286f7074696f6e616c2028627566662036352929290a2020287369676e65722d6b657920286275666620333329290a2020286d61782d616d6f756e742075696e74290a202028617574682d69642075696e7429290a202020286c6574202828737461636b65722d696e666f20287374782d6163636f756e742074782d73656e64657229290a20202020202020202028616d6f756e742d737461636b65642028676574206c6f636b656420737461636b65722d696e666f29290a20202020202020202028616d6f756e742d756e6c6f636b6564202867657420756e6c6f636b656420737461636b65722d696e666f29290a20202020202020202028756e6c6f636b2d686569676874202867657420756e6c6f636b2d68656967687420737461636b65722d696e666f29290a202020202020202020286375722d6379636c65202863757272656e742d706f782d7265776172642d6379636c6529290a2020202020202020202866697273742d696e637265617365642d6379636c6520282b206375722d6379636c6520753129290a20202020202020202028737461636b65722d73746174652028756e777261702120286d61702d6765743f20737461636b696e672d73746174650a2020202020202020202020202020202020202020202020202020202020202020202020202020202020207b20737461636b65723a2074782d73656e646572207d290a20202020202020202020202020202020202020202020202020202020202020202020202020202020202028657272204552525f535441434b5f494e4352454153455f4e4f545f4c4f434b45442929290a202020202020202020286375722d706f782d61646472202867657420706f782d6164647220737461636b65722d737461746529290a202020202020202020286375722d706572696f642028676574206c6f636b2d706572696f6420737461636b65722d73746174652929290a2020202020203b3b2074782d73656e646572206d7573742062652063757272656e746c79206c6f636b65640a20202020202028617373657274732120283e20616d6f756e742d737461636b6564207530290a2020202020202020202020202020202028657272204552525f535441434b5f494e4352454153455f4e4f545f4c4f434b454429290a2020202020203b3b206d7573742062652063616c6c6564207769746820706f7369746976652060696e6372656173652d6279600a20202020202028617373657274732120283e3d20696e6372656173652d6279207531290a2020202020202020202020202020202028657272204552525f535441434b494e475f494e56414c49445f414d4f554e5429290a2020202020203b3b20737461636b6572206d757374206861766520656e6f7567682073747820746f206c6f636b0a20202020202028617373657274732120283e3d20616d6f756e742d756e6c6f636b656420696e6372656173652d6279290a2020202020202020202020202020202028657272204552525f535441434b494e475f494e53554646494349454e545f46554e445329290a2020202020203b3b206d7573742062652063616c6c6564206469726563746c79206279207468652074782d73656e646572206f7220627920616e20616c6c6f77656420636f6e74726163742d63616c6c65720a2020202020202861737365727473212028636865636b2d63616c6c65722d616c6c6f776564290a2020202020202020202020202020202028657272204552525f535441434b494e475f5045524d495353494f4e5f44454e49454429290a2020202020203b3b20737461636b6572206d757374206265206469726563746c7920737461636b696e670a20202020202028617373657274732120283e20286c656e2028676574207265776172642d7365742d696e646578657320737461636b65722d73746174652929207530290a2020202020202020202020202020202028657272204552525f535441434b494e475f49535f44454c45474154454429290a2020202020203b3b20737461636b6572206d757374206e6f742062652064656c65676174696e670a202020202020286173736572747321202869732d6e6f6e6520286765742064656c6567617465642d746f20737461636b65722d737461746529290a2020202020202020202020202020202028657272204552525f535441434b494e475f49535f44454c45474154454429290a0a2020202020203b3b2056616c6964617465207468617420616d6f756e74206973206c657373207468616e206f7220657175616c20746f20606d61782d616d6f756e74600a20202020202028617373657274732120283e3d206d61782d616d6f756e7420282b20696e6372656173652d627920616d6f756e742d737461636b656429292028657272204552525f5349474e45525f415554485f414d4f554e545f544f4f5f4849474829290a0a2020202020203b3b20566572696679207369676e61747572652066726f6d2064656c6567617465207468617420616c6c6f777320746869732073656e64657220666f722074686973206379636c650a20202020202028747279212028636f6e73756d652d7369676e65722d6b65792d617574686f72697a6174696f6e206375722d706f782d61646472206375722d6379636c652022737461636b2d696e63726561736522206375722d706572696f64207369676e65722d736967207369676e65722d6b657920696e6372656173652d6279206d61782d616d6f756e7420617574682d696429290a0a2020202020203b3b2075706461746520726577617264206379636c6520616d6f756e74730a202020202020286173736572747321202869732d736f6d652028666f6c6420696e6372656173652d7265776172642d6379636c652d656e7472790a20202020202020202020202028676574207265776172642d7365742d696e646578657320737461636b65722d7374617465290a20202020202020202020202028736f6d65207b2066697273742d6379636c653a2066697273742d696e637265617365642d6379636c652c0a20202020202020202020202020202020202020207265776172642d6379636c653a20286765742066697273742d7265776172642d6379636c6520737461636b65722d7374617465292c0a2020202020202020202020202020202020202020737461636b65723a2074782d73656e6465722c0a20202020202020202020202020202020202020206164642d616d6f756e743a20696e6372656173652d62792c0a20202020202020202020202020202020202020207369676e65722d6b65793a207369676e65722d6b6579207d2929290a20202020202020202020202028657272204552525f494e56414c49445f494e43524541534529290a2020202020203b3b204e4f54453a20737461636b696e672d7374617465206d617020697320756e6368616e6765643a20697420646f6573206e6f7420747261636b20616d6f756e742d737461636b656420696e20506f582d340a202020202020286f6b207b20737461636b65723a2074782d73656e6465722c20746f74616c2d6c6f636b65643a20282b20616d6f756e742d737461636b656420696e6372656173652d6279297d2929290a0a3b3b20457874656e6420616e2061637469766520537461636b696e67206c6f636b2e0a3b3b202a4e657720696e20537461636b7320322e312a0a3b3b2054686973206d6574686f6420657874656e647320746865206074782d73656e6465726027732063757272656e74206c6f636b757020666f7220616e206164646974696f6e616c2060657874656e642d636f756e74600a3b3b20202020616e64206173736f6369617465732060706f782d616464726020776974682074686520726577617264732c2054686520607369676e65722d6b6579602077696c6c20626520746865206b65790a3b3b202020207573656420666f72207369676e696e672e20546865206074782d73656e646572602063616e20746875732064656369646520746f206368616e676520746865206b6579207768656e20657874656e64696e672e0a3b3b200a3b3b2042656361757365206e6f206164646974696f6e616c2053545820617265206c6f636b656420696e20746869732066756e6374696f6e2c207468652060616d6f756e7460206669656c6420757365640a3b3b20746f2076657269667920746865207369676e6572206b657920617574686f72697a6174696f6e206973207a65726f2e20526566657220746f20607665726966792d7369676e65722d6b65792d7369676020666f72206d6f726520696e666f726d6174696f6e2e0a28646566696e652d7075626c69632028737461636b2d657874656e642028657874656e642d636f756e742075696e74290a202020202020202020202020202020202020202020202020202020202028706f782d61646472207b2076657273696f6e3a2028627566662031292c206861736862797465733a20286275666620333229207d290a2020202020202020202020202020202020202020202020202020202020287369676e65722d73696720286f7074696f6e616c2028627566662036352929290a2020202020202020202020202020202020202020202020202020202020287369676e65722d6b657920286275666620333329290a2020202020202020202020202020202020202020202020202020202020286d61782d616d6f756e742075696e74290a202020202020202020202020202020202020202020202020202020202028617574682d69642075696e7429290a202020286c6574202828737461636b65722d696e666f20287374782d6163636f756e742074782d73656e64657229290a2020202020202020203b3b20746f20657874656e642c207468657265206d75737420616c726561647920626520616e206574727920696e2074686520737461636b696e672d73746174650a20202020202020202028737461636b65722d73746174652028756e777261702120286765742d737461636b65722d696e666f2074782d73656e646572292028657272204552525f535441434b5f455854454e445f4e4f545f4c4f434b45442929290a20202020202020202028616d6f756e742d757374782028676574206c6f636b656420737461636b65722d696e666f29290a20202020202020202028756e6c6f636b2d686569676874202867657420756e6c6f636b2d68656967687420737461636b65722d696e666f29290a202020202020202020286375722d6379636c65202863757272656e742d706f782d7265776172642d6379636c6529290a2020202020202020203b3b2066697273742d657874656e642d6379636c652077696c6c20626520746865206379636c6520696e2077686963682074782d73656e646572202a776f756c6420686176652a20756e6c6f636b65640a2020202020202020202866697273742d657874656e642d6379636c6520286275726e2d6865696768742d746f2d7265776172642d6379636c6520756e6c6f636b2d68656967687429290a2020202020202020203b3b206e6577206669727374206379636c652073686f756c64206265206d6178286375722d6379636c652c20737461636b65722d73746174652e66697273742d7265776172642d6379636c65290a202020202020202020286375722d66697273742d7265776172642d6379636c6520286765742066697273742d7265776172642d6379636c6520737461636b65722d737461746529290a2020202020202020202866697273742d7265776172642d6379636c652028696620283e206375722d6379636c65206375722d66697273742d7265776172642d6379636c6529206375722d6379636c65206375722d66697273742d7265776172642d6379636c652929290a0a202020203b3b206d7573742062652063616c6c6564207769746820706f73697469766520657874656e642d636f756e740a2020202028617373657274732120283e3d20657874656e642d636f756e74207531290a202020202020202020202020202028657272204552525f535441434b494e475f494e56414c49445f4c4f434b5f504552494f4429290a0a202020203b3b20737461636b6572206d757374206265206469726563746c7920737461636b696e670a20202020202028617373657274732120283e20286c656e2028676574207265776172642d7365742d696e646578657320737461636b65722d73746174652929207530290a2020202020202020202020202020202028657272204552525f535441434b494e475f49535f44454c45474154454429290a0a202020203b3b20737461636b6572206d757374206e6f742062652064656c65676174696e670a20202020286173736572747321202869732d6e6f6e6520286765742064656c6567617465642d746f20737461636b65722d737461746529290a202020202020202020202020202028657272204552525f535441434b494e475f49535f44454c45474154454429290a0a202020203b3b20566572696679207369676e61747572652066726f6d2064656c6567617465207468617420616c6c6f777320746869732073656e64657220666f722074686973206379636c650a2020202028747279212028636f6e73756d652d7369676e65722d6b65792d617574686f72697a6174696f6e20706f782d61646472206375722d6379636c652022737461636b2d657874656e642220657874656e642d636f756e74207369676e65722d736967207369676e65722d6b6579207530206d61782d616d6f756e7420617574682d696429290a0a202020203b3b20544f444f3a20616464206d6f726520617373657274696f6e7320746f2073616e69747920636865636b207468652060737461636b65722d696e666f602076616c75657320776974680a202020203b3b202020202020207468652060737461636b65722d7374617465602076616c7565730a0a20202020286c65742028286c6173742d657874656e642d6379636c652020282d20282b2066697273742d657874656e642d6379636c6520657874656e642d636f756e742920753129290a20202020202020202020286c6f636b2d706572696f6420282b20753120282d206c6173742d657874656e642d6379636c652066697273742d7265776172642d6379636c652929290a20202020202020202020286e65772d756e6c6f636b2d687420287265776172642d6379636c652d746f2d6275726e2d68656967687420282b207531206c6173742d657874656e642d6379636c65292929290a0a2020202020203b3b206669727374206379636c65206d757374206265206166746572207468652063757272656e74206379636c650a20202020202028617373657274732120283e2066697273742d657874656e642d6379636c65206375722d6379636c65292028657272204552525f535441434b494e475f494e56414c49445f4c4f434b5f504552494f4429290a2020202020203b3b206c6f636b20706572696f64206d75737420626520706f7369746976650a20202020202028617373657274732120283e206c6f636b2d706572696f64207530292028657272204552525f535441434b494e475f494e56414c49445f4c4f434b5f504552494f4429290a0a2020202020203b3b206d7573742062652063616c6c6564206469726563746c79206279207468652074782d73656e646572206f7220627920616e20616c6c6f77656420636f6e74726163742d63616c6c65720a2020202020202861737365727473212028636865636b2d63616c6c65722d616c6c6f776564290a2020202020202020202020202020202028657272204552525f535441434b494e475f5045524d495353494f4e5f44454e49454429290a0a2020202020203b3b2074782d73656e646572206d757374206265206c6f636b65640a20202020202028617373657274732120283e20616d6f756e742d75737478207530290a202020202020202028657272204552525f535441434b5f455854454e445f4e4f545f4c4f434b454429290a0a2020202020203b3b2074782d73656e646572206d757374206e6f742062652064656c65676174696e670a202020202020286173736572747321202869732d6e6f6e6520286765742d636865636b2d64656c65676174696f6e2074782d73656e64657229290a202020202020202028657272204552525f535441434b494e475f414c52454144595f44454c45474154454429290a0a2020202020203b3b207374616e646172642063616e2d737461636b2d73747820636865636b730a2020202020202874727921202863616e2d737461636b2d73747820706f782d6164647220616d6f756e742d757374782066697273742d657874656e642d6379636c65206c6f636b2d706572696f6429290a0a2020202020203b3b2072656769737465722074686520506f58206164647265737320776974682074686520616d6f756e7420737461636b65640a2020202020203b3b202020666f7220746865206e6577206379636c65730a202020202020286c6574202828657874656e6465642d7265776172642d7365742d696e646578657320287472792120286164642d706f782d616464722d746f2d7265776172642d6379636c657320706f782d616464722066697273742d657874656e642d6379636c6520657874656e642d636f756e7420616d6f756e742d757374782074782d73656e646572207369676e65722d6b65792929290a202020202020202020202020287265776172642d7365742d696e64657865730a202020202020202020202020202020203b3b20757365207468652061637469766520737461636b657220737461746520616e6420657874656e6420746865206578697374696e67207265776172642d7365742d696e64657865730a20202020202020202020202020202020286c65742028286375722d6379636c652d696e64657820282d2066697273742d7265776172642d6379636c6520286765742066697273742d7265776172642d6379636c6520737461636b65722d73746174652929290a20202020202020202020202020202020202020202020286f6c642d696e64657865732028676574207265776172642d7365742d696e646578657320737461636b65722d737461746529290a202020202020202020202020202020202020202020203b3b206275696c6420696e646578206c6973742062792074616b696e6720746865206f6c642d696e6465786573207374617274696e672066726f6d20637572206379636c650a202020202020202020202020202020202020202020203b3b2020616e6420616464696e6720746865206e657720696e646578657320746f2069742e2074686973207761792c2074686520696e6465782069732076616c6964207374617274696e672066726f6d207468652063757272656e74206379636c650a20202020202020202020202020202020202020202020286e65772d6c6973742028636f6e636174202864656661756c742d746f20286c697374292028736c6963653f206f6c642d696e6465786573206375722d6379636c652d696e64657820286c656e206f6c642d696e64657865732929290a20202020202020202020202020202020202020202020202020202020202020202020202020202020657874656e6465642d7265776172642d7365742d696e64657865732929290a20202020202020202020202020202020202028756e777261702d70616e6963202861732d6d61782d6c656e3f206e65772d6c6973742075313229292929290a202020202020202020203b3b2075706461746520737461636b6572207265636f72640a20202020202020202020286d61702d73657420737461636b696e672d73746174650a2020202020202020202020207b20737461636b65723a2074782d73656e646572207d0a2020202020202020202020207b20706f782d616464723a20706f782d616464722c0a20202020202020202020202020207265776172642d7365742d696e64657865733a207265776172642d7365742d696e64657865732c0a202020202020202020202020202066697273742d7265776172642d6379636c653a2066697273742d7265776172642d6379636c652c0a20202020202020202020202020206c6f636b2d706572696f643a206c6f636b2d706572696f642c0a202020202020202020202020202064656c6567617465642d746f3a206e6f6e65207d290a0a20202020202020203b3b2072657475726e206c6f636b2d757020696e666f726d6174696f6e0a2020202020202020286f6b207b20737461636b65723a2074782d73656e6465722c20756e6c6f636b2d6275726e2d6865696768743a206e65772d756e6c6f636b2d6874207d29292929290a0a3b3b20417320612064656c656761746f722c20696e63726561736520616e2061637469766520537461636b696e67206c6f636b2c2069737375696e67206120227061727469616c20636f6d6d69746d656e742220666f72207468650a3b3b202020696e63726561736564206379636c65732e0a3b3b202a4e657720696e20537461636b7320322e312a0a3b3b2054686973206d6574686f6420696e637265617365732060737461636b65726027732063757272656e74206c6f636b757020616e64207061727469616c6c7920636f6d6d69747320746865206164646974696f6e616c0a3b3b20202053545820746f2060706f782d61646472600a28646566696e652d7075626c6963202864656c65676174652d737461636b2d696e6372656173650a202020202020202020202020202020202020202028737461636b6572207072696e636970616c290a202020202020202020202020202020202020202028706f782d61646472207b2076657273696f6e3a2028627566662031292c206861736862797465733a20286275666620333229207d290a202020202020202020202020202020202020202028696e6372656173652d62792075696e7429290a20202020286c6574202828737461636b65722d696e666f20287374782d6163636f756e7420737461636b657229290a20202020202020202020286578697374696e672d6c6f636b2028676574206c6f636b656420737461636b65722d696e666f29290a2020202020202020202028617661696c61626c652d737478202867657420756e6c6f636b656420737461636b65722d696e666f29290a2020202020202020202028756e6c6f636b2d686569676874202867657420756e6c6f636b2d68656967687420737461636b65722d696e666f2929290a0a20202020203b3b206d7573742062652063616c6c6564207769746820706f7369746976652060696e6372656173652d6279600a202020202028617373657274732120283e3d20696e6372656173652d6279207531290a20202020202020202020202020202028657272204552525f535441434b494e475f494e56414c49445f414d4f554e5429290a0a2020202020286c6574202828756e6c6f636b2d696e2d6379636c6520286275726e2d6865696768742d746f2d7265776172642d6379636c6520756e6c6f636b2d68656967687429290a2020202020202020202020286375722d6379636c65202863757272656e742d706f782d7265776172642d6379636c6529290a20202020202020202020202866697273742d696e6372656173652d6379636c6520282b206375722d6379636c6520753129290a2020202020202020202020286c6173742d696e6372656173652d6379636c6520282d20756e6c6f636b2d696e2d6379636c6520753129290a2020202020202020202020286379636c652d636f756e742028747279212028696620283c3d2066697273742d696e6372656173652d6379636c65206c6173742d696e6372656173652d6379636c65290a20202020202020202020202020202020202020202020202020202020202020202020286f6b20282b20753120282d206c6173742d696e6372656173652d6379636c652066697273742d696e6372656173652d6379636c652929290a2020202020202020202020202020202020202020202020202020202020202020202028657272204552525f535441434b494e475f494e56414c49445f4c4f434b5f504552494f44292929290a2020202020202020202020286e65772d746f74616c2d6c6f636b656420282b20696e6372656173652d6279206578697374696e672d6c6f636b29290a202020202020202020202028737461636b65722d73746174650a2020202020202020202020202020202028756e777261702120286d61702d6765743f20737461636b696e672d7374617465207b20737461636b65723a20737461636b6572207d290a202020202020202020202020202020202028657272204552525f535441434b5f494e4352454153455f4e4f545f4c4f434b4544292929290a0a2020202020203b3b206d7573742062652063616c6c6564206469726563746c79206279207468652074782d73656e646572206f7220627920616e20616c6c6f77656420636f6e74726163742d63616c6c65720a2020202020202861737365727473212028636865636b2d63616c6c65722d616c6c6f776564290a202020202020202028657272204552525f535441434b494e475f5045524d495353494f4e5f44454e49454429290a0a2020202020203b3b20737461636b6572206d757374206e6f74206265206469726563746c7920737461636b696e670a202020202020286173736572747321202869732d657120286c656e2028676574207265776172642d7365742d696e646578657320737461636b65722d73746174652929207530290a2020202020202020202020202020202028657272204552525f535441434b494e475f4e4f545f44454c45474154454429290a0a2020202020203b3b20737461636b6572206d7573742062652064656c65676174656420746f2074782d73656e6465720a202020202020286173736572747321202869732d65712028756e777261702120286765742064656c6567617465642d746f20737461636b65722d7374617465290a202020202020202020202020202020202020202020202020202020202020202028657272204552525f535441434b494e475f4e4f545f44454c45474154454429290a202020202020202020202020202020202020202020202074782d73656e646572290a2020202020202020202020202020202028657272204552525f535441434b494e475f5045524d495353494f4e5f44454e49454429290a0a2020202020203b3b20737461636b6572206d7573742062652063757272656e746c79206c6f636b65640a20202020202028617373657274732120283e206578697374696e672d6c6f636b207530290a202020202020202028657272204552525f535441434b5f494e4352454153455f4e4f545f4c4f434b454429290a0a2020202020203b3b20737461636b6572206d757374206861766520656e6f7567682073747820746f206c6f636b0a20202020202028617373657274732120283e3d20617661696c61626c652d73747820696e6372656173652d6279290a202020202020202028657272204552525f535441434b494e475f494e53554646494349454e545f46554e445329290a0a2020202020203b3b20737461636b6572206d75737420686176652064656c65676174656420746f207468652063616c6c65720a202020202020286c657420282864656c65676174696f6e2d696e666f2028756e777261702120286765742d636865636b2d64656c65676174696f6e20737461636b6572292028657272204552525f535441434b494e475f5045524d495353494f4e5f44454e4945442929290a2020202020202020202020202864656c6567617465642d746f20286765742064656c6567617465642d746f2064656c65676174696f6e2d696e666f29290a2020202020202020202020202864656c6567617465642d616d6f756e74202867657420616d6f756e742d757374782064656c65676174696f6e2d696e666f29290a2020202020202020202020202864656c6567617465642d706f782d61646472202867657420706f782d616464722064656c65676174696f6e2d696e666f29290a2020202020202020202020202864656c6567617465642d756e74696c202867657420756e74696c2d6275726e2d68742064656c65676174696f6e2d696e666f2929290a20202020202020203b3b206d75737420686176652064656c65676174656420746f2074782d73656e6465720a2020202020202020286173736572747321202869732d65712064656c6567617465642d746f2074782d73656e646572290a20202020202020202020202020202020202028657272204552525f535441434b494e475f5045524d495353494f4e5f44454e49454429290a20202020202020203b3b206d75737420686176652064656c65676174656420656e6f756768207374780a202020202020202028617373657274732120283e3d2064656c6567617465642d616d6f756e74206e65772d746f74616c2d6c6f636b6564290a20202020202020202020202020202020202028657272204552525f44454c45474154494f4e5f544f4f5f4d5543485f4c4f434b454429290a20202020202020203b3b20696620706f782d61646472206973207365742c206d75737420626520657175616c20746f20706f782d616464720a202020202020202028617373657274732120286d617463682064656c6567617465642d706f782d616464720a202020202020202020202020202020202020202020202020207370656369666965642d706f782d61646472202869732d657120706f782d61646472207370656369666965642d706f782d61646472290a2020202020202020202020202020202020202020202020202074727565290a20202020202020202020202020202020202028657272204552525f44454c45474154494f4e5f504f585f414444525f524551554952454429290a20202020202020203b3b2064656c65676174696f6e206d757374206e6f7420657870697265206265666f7265206c6f636b20706572696f640a202020202020202028617373657274732120286d617463682064656c6567617465642d756e74696c0a202020202020202020202020202020202020202020202020756e74696c2d6275726e2d68740a20202020202020202020202020202020202020202020202020202020283e3d20756e74696c2d6275726e2d687420756e6c6f636b2d686569676874290a20202020202020202020202020202020202020202020202074727565290a20202020202020202020202020202020202028657272204552525f44454c45474154494f4e5f455850495245535f445552494e475f4c4f434b2929290a0a2020202020203b3b2064656c656761746520737461636b696e6720646f6573206d696e696d616c2d63616e2d737461636b2d7374780a202020202020287472792120286d696e696d616c2d63616e2d737461636b2d73747820706f782d61646472206e65772d746f74616c2d6c6f636b65642066697273742d696e6372656173652d6379636c6520282b20753120282d206c6173742d696e6372656173652d6379636c652066697273742d696e6372656173652d6379636c65292929290a0a2020202020203b3b2072656769737465722074686520506f58206164647265737320776974682074686520616d6f756e7420737461636b656420766961207061727469616c20737461636b696e670a2020202020203b3b2020206265666f72652069742063616e20626520696e636c7564656420696e2074686520726577617264207365742c2074686973206d75737420626520636f6d6d6974746564210a202020202020286164642d706f782d7061727469616c2d737461636b656420706f782d616464722066697273742d696e6372656173652d6379636c65206379636c652d636f756e7420696e6372656173652d6279290a0a2020202020203b3b20737461636b696e672d737461746520697320756e6368616e6765642c20736f206e6f206e65656420746f207570646174650a0a2020202020203b3b2072657475726e20746865206c6f636b2d757020696e666f726d6174696f6e2c20736f20746865206e6f64652063616e2061637475616c6c79206361727279206f757420746865206c6f636b2e0a202020202020286f6b207b20737461636b65723a20737461636b65722c20746f74616c2d6c6f636b65643a206e65772d746f74616c2d6c6f636b65647d292929290a0a3b3b20417320612064656c656761746f722c20657874656e6420616e2061637469766520737461636b696e67206c6f636b2c2069737375696e67206120227061727469616c20636f6d6d69746d656e742220666f72207468650a3b3b202020657874656e6465642d746f206379636c65732e0a3b3b202a4e657720696e20537461636b7320322e312a0a3b3b2054686973206d6574686f6420657874656e64732060737461636b65726027732063757272656e74206c6f636b757020666f7220616e206164646974696f6e616c2060657874656e642d636f756e74600a3b3b20202020616e64207061727469616c6c7920636f6d6d6974732074686f7365206e6577206379636c657320746f2060706f782d61646472600a28646566696e652d7075626c6963202864656c65676174652d737461636b2d657874656e640a202020202020202020202020202020202020202028737461636b6572207072696e636970616c290a202020202020202020202020202020202020202028706f782d61646472207b2076657273696f6e3a2028627566662031292c206861736862797465733a20286275666620333229207d290a202020202020202020202020202020202020202028657874656e642d636f756e742075696e7429290a20202020286c6574202828737461636b65722d696e666f20287374782d6163636f756e7420737461636b657229290a202020202020202020203b3b20746f20657874656e642c207468657265206d75737420616c726561647920626520616e20656e74727920696e2074686520737461636b696e672d73746174650a2020202020202020202028737461636b65722d73746174652028756e777261702120286765742d737461636b65722d696e666f20737461636b6572292028657272204552525f535441434b5f455854454e445f4e4f545f4c4f434b45442929290a2020202020202020202028616d6f756e742d757374782028676574206c6f636b656420737461636b65722d696e666f29290a2020202020202020202028756e6c6f636b2d686569676874202867657420756e6c6f636b2d68656967687420737461636b65722d696e666f29290a202020202020202020203b3b2066697273742d657874656e642d6379636c652077696c6c20626520746865206379636c6520696e2077686963682074782d73656e646572202a776f756c6420686176652a20756e6c6f636b65640a202020202020202020202866697273742d657874656e642d6379636c6520286275726e2d6865696768742d746f2d7265776172642d6379636c6520756e6c6f636b2d68656967687429290a20202020202020202020286375722d6379636c65202863757272656e742d706f782d7265776172642d6379636c6529290a202020202020202020203b3b206e6577206669727374206379636c652073686f756c64206265206d6178286375722d6379636c652c20737461636b65722d73746174652e66697273742d7265776172642d6379636c65290a20202020202020202020286375722d66697273742d7265776172642d6379636c6520286765742066697273742d7265776172642d6379636c6520737461636b65722d737461746529290a202020202020202020202866697273742d7265776172642d6379636c652028696620283e206375722d6379636c65206375722d66697273742d7265776172642d6379636c6529206375722d6379636c65206375722d66697273742d7265776172642d6379636c652929290a0a20202020203b3b206d7573742062652063616c6c6564207769746820706f73697469766520657874656e642d636f756e740a202020202028617373657274732120283e3d20657874656e642d636f756e74207531290a20202020202020202020202020202028657272204552525f535441434b494e475f494e56414c49445f4c4f434b5f504552494f4429290a0a2020202020286c65742028286c6173742d657874656e642d6379636c652020282d20282b2066697273742d657874656e642d6379636c6520657874656e642d636f756e742920753129290a2020202020202020202020286c6f636b2d706572696f6420282b20753120282d206c6173742d657874656e642d6379636c652066697273742d7265776172642d6379636c652929290a2020202020202020202020286e65772d756e6c6f636b2d687420287265776172642d6379636c652d746f2d6275726e2d68656967687420282b207531206c6173742d657874656e642d6379636c65292929290a0a2020202020203b3b206669727374206379636c65206d757374206265206166746572207468652063757272656e74206379636c650a20202020202028617373657274732120283e2066697273742d657874656e642d6379636c65206375722d6379636c65292028657272204552525f535441434b494e475f494e56414c49445f4c4f434b5f504552494f4429290a2020202020203b3b206c6f636b20706572696f64206d75737420626520706f7369746976650a20202020202028617373657274732120283e206c6f636b2d706572696f64207530292028657272204552525f535441434b494e475f494e56414c49445f4c4f434b5f504552494f4429290a0a2020202020203b3b206d7573742062652063616c6c6564206469726563746c79206279207468652074782d73656e646572206f7220627920616e20616c6c6f77656420636f6e74726163742d63616c6c65720a2020202020202861737365727473212028636865636b2d63616c6c65722d616c6c6f776564290a202020202020202028657272204552525f535441434b494e475f5045524d495353494f4e5f44454e49454429290a0a2020202020203b3b20737461636b6572206d757374206e6f74206265206469726563746c7920737461636b696e670a202020202020286173736572747321202869732d657120286c656e2028676574207265776172642d7365742d696e646578657320737461636b65722d73746174652929207530290a2020202020202020202020202020202028657272204552525f535441434b494e475f4e4f545f44454c45474154454429290a0a2020202020203b3b20737461636b6572206d7573742062652064656c65676174656420746f2074782d73656e6465720a202020202020286173736572747321202869732d65712028756e777261702120286765742064656c6567617465642d746f20737461636b65722d7374617465290a202020202020202020202020202020202020202020202020202020202020202028657272204552525f535441434b494e475f4e4f545f44454c45474154454429290a202020202020202020202020202020202020202020202074782d73656e646572290a2020202020202020202020202020202028657272204552525f535441434b494e475f5045524d495353494f4e5f44454e49454429290a0a2020202020203b3b20636865636b2076616c6964206c6f636b20706572696f640a2020202020202861737365727473212028636865636b2d706f782d6c6f636b2d706572696f64206c6f636b2d706572696f64290a202020202020202028657272204552525f535441434b494e475f494e56414c49445f4c4f434b5f504552494f4429290a0a2020202020203b3b20737461636b6572206d7573742062652063757272656e746c79206c6f636b65640a20202020202028617373657274732120283e20616d6f756e742d75737478207530290a202020202020202028657272204552525f535441434b5f455854454e445f4e4f545f4c4f434b454429290a0a2020202020203b3b20737461636b6572206d75737420686176652064656c65676174656420746f207468652063616c6c65720a202020202020286c657420282864656c65676174696f6e2d696e666f2028756e777261702120286765742d636865636b2d64656c65676174696f6e20737461636b6572292028657272204552525f535441434b494e475f5045524d495353494f4e5f44454e494544292929290a20202020202020203b3b206d75737420686176652064656c65676174656420746f2074782d73656e6465720a2020202020202020286173736572747321202869732d657120286765742064656c6567617465642d746f2064656c65676174696f6e2d696e666f292074782d73656e646572290a20202020202020202020202020202020202028657272204552525f535441434b494e475f5045524d495353494f4e5f44454e49454429290a20202020202020203b3b206d75737420686176652064656c65676174656420656e6f756768207374780a202020202020202028617373657274732120283e3d202867657420616d6f756e742d757374782064656c65676174696f6e2d696e666f2920616d6f756e742d75737478290a20202020202020202020202020202020202028657272204552525f44454c45474154494f4e5f544f4f5f4d5543485f4c4f434b454429290a20202020202020203b3b20696620706f782d61646472206973207365742c206d75737420626520657175616c20746f20706f782d616464720a202020202020202028617373657274732120286d61746368202867657420706f782d616464722064656c65676174696f6e2d696e666f290a202020202020202020202020202020202020202020202020207370656369666965642d706f782d61646472202869732d657120706f782d61646472207370656369666965642d706f782d61646472290a2020202020202020202020202020202020202020202020202074727565290a20202020202020202020202020202020202028657272204552525f44454c45474154494f4e5f504f585f414444525f524551554952454429290a20202020202020203b3b2064656c65676174696f6e206d757374206e6f7420657870697265206265666f7265206c6f636b20706572696f640a202020202020202028617373657274732120286d61746368202867657420756e74696c2d6275726e2d68742064656c65676174696f6e2d696e666f290a20202020202020202020202020202020202020202020202020756e74696c2d6275726e2d687420283e3d20756e74696c2d6275726e2d68740a202020202020202020202020202020202020202020202020202020202020202020202020202020202020206e65772d756e6c6f636b2d6874290a2020202020202020202020202020202020202020202074727565290a20202020202020202020202020202020202028657272204552525f44454c45474154494f4e5f455850495245535f445552494e475f4c4f434b29290a2020202020202020290a0a2020202020203b3b2064656c656761746520737461636b696e6720646f6573206d696e696d616c2d63616e2d737461636b2d7374780a202020202020287472792120286d696e696d616c2d63616e2d737461636b2d73747820706f782d6164647220616d6f756e742d757374782066697273742d657874656e642d6379636c65206c6f636b2d706572696f6429290a0a2020202020203b3b2072656769737465722074686520506f58206164647265737320776974682074686520616d6f756e7420737461636b656420766961207061727469616c20737461636b696e670a2020202020203b3b2020206265666f72652069742063616e20626520696e636c7564656420696e2074686520726577617264207365742c2074686973206d75737420626520636f6d6d6974746564210a202020202020286164642d706f782d7061727469616c2d737461636b656420706f782d616464722066697273742d657874656e642d6379636c6520657874656e642d636f756e7420616d6f756e742d75737478290a0a202020202020286d61702d73657420737461636b696e672d73746174650a20202020202020207b20737461636b65723a20737461636b6572207d0a20202020202020207b20706f782d616464723a20706f782d616464722c0a202020202020202020207265776172642d7365742d696e64657865733a20286c697374292c0a2020202020202020202066697273742d7265776172642d6379636c653a2066697273742d7265776172642d6379636c652c0a202020202020202020206c6f636b2d706572696f643a206c6f636b2d706572696f642c0a2020202020202020202064656c6567617465642d746f3a2028736f6d652074782d73656e64657229207d290a0a2020202020203b3b2072657475726e20746865206c6f636b2d757020696e666f726d6174696f6e2c20736f20746865206e6f64652063616e2061637475616c6c79206361727279206f757420746865206c6f636b2e0a202020202020286f6b207b20737461636b65723a20737461636b65722c0a202020202020202020202020756e6c6f636b2d6275726e2d6865696768743a206e65772d756e6c6f636b2d6874207d292929290a0a3b3b2041646420616e20617574686f72697a6174696f6e20666f722061207369676e6572206b65792e0a3b3b205768656e20616e20617574686f72697a6174696f6e2069732061646465642c2074686520607369676e65722d7369676020617267756d656e74206973206e6f742072657175697265640a3b3b20696e207468652066756e6374696f6e7320746861742075736520697420617320616e20617267756d656e742e0a3b3b205468652060616c6c6f7765646020666c61672063616e206265207573656420746f2065697468657220656e61626c65206f722064697361626c652074686520617574686f72697a6174696f6e2e0a3b3b204f6e6c792074686520537461636b73207072696e636970616c206173736f636961746564207769746820607369676e65722d6b6579602063616e2063616c6c20746869732066756e6374696f6e2e0a3b3b0a3b3b20526566657220746f2074686520646f63756d656e746174696f6e20666f7220607665726966792d7369676e65722d6b65792d7369676020666f72206d6f726520696e666f726d6174696f6e0a3b3b20726567617264696e672074686520706172616d6574657273207573656420696e20616e20617574686f72697a6174696f6e2e205768656e2074686520617574686f72697a6174696f6e20697320757365640a3b3b20696e2060737461636b2d7374786020616e642060737461636b2d657874656e64602c2074686520607265776172642d6379636c65602072656665727320746f2074686520726577617264206379636c650a3b3b20776865726520746865207472616e73616374696f6e20697320636f6e6669726d65642c202a2a6e6f742a2a2074686520726577617264206379636c6520776865726520737461636b696e6720626567696e732e0a3b3b205468652060706572696f646020706172616d65746572206d757374206d6174636820746865206578616374206c6f636b20706572696f6420286f7220657874656e6420636f756e742920757365640a3b3b20696e2074686520737461636b696e67207472616e73616374696f6e2e2054686520606d61782d616d6f756e746020706172616d657465722073706563696669657320746865206d6178696d756d20616d6f756e740a3b3b206f662053545820746861742063616e206265206c6f636b656420696e20616e20696e646976696475616c20737461636b696e67207472616e73616374696f6e2e2060617574682d69646020697320610a3b3b2072616e646f6d2075696e7420746f2070726576656e74207265706c6179732e0a3b3b0a3b3b202a4e657720696e20537461636b7320332e302a0a28646566696e652d7075626c696320287365742d7369676e65722d6b65792d617574686f72697a6174696f6e2028706f782d61646472207b2076657273696f6e3a2028627566662031292c206861736862797465733a202862756666203332297d290a20202020202020202020202020202020202020202020202020202020202020202020202020202020202020202028706572696f642075696e74290a202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020287265776172642d6379636c652075696e74290a20202020202020202020202020202020202020202020202020202020202020202020202020202020202020202028746f7069632028737472696e672d617363696920313429290a202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020287369676e65722d6b657920286275666620333329290a20202020202020202020202020202020202020202020202020202020202020202020202020202020202020202028616c6c6f77656420626f6f6c290a202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020286d61782d616d6f756e742075696e74290a20202020202020202020202020202020202020202020202020202020202020202020202020202020202020202028617574682d69642075696e7429290a202028626567696e0a202020203b3b2056616c69646174652074686174206074782d73656e6465726020686173207468652073616d65207075626b6579206861736820617320607369676e65722d6b6579600a20202020286173736572747321202869732d65710a20202020202028756e777261702120287072696e636970616c2d636f6e7374727563743f202869662069732d696e2d6d61696e6e657420535441434b535f414444525f56455253494f4e5f4d41494e4e455420535441434b535f414444525f56455253494f4e5f544553544e455429202868617368313630207369676e65722d6b657929292028657272204552525f494e56414c49445f5349474e45525f4b455929290a20202020202074782d73656e646572292028657272204552525f4e4f545f414c4c4f57454429290a202020203b3b204d7573742062652063616c6c6564207769746820706f73697469766520706572696f640a2020202028617373657274732120283e3d20706572696f64207531292028657272204552525f535441434b494e475f494e56414c49445f4c4f434b5f504552494f4429290a202020203b3b204d7573742062652063757272656e74206f722066757475726520726577617264206379636c650a2020202028617373657274732120283e3d207265776172642d6379636c65202863757272656e742d706f782d7265776172642d6379636c6529292028657272204552525f494e56414c49445f5245574152445f4359434c4529290a20202020286d61702d736574207369676e65722d6b65792d617574686f72697a6174696f6e73207b20706f782d616464723a20706f782d616464722c20706572696f643a20706572696f642c207265776172642d6379636c653a207265776172642d6379636c652c20746f7069633a20746f7069632c207369676e65722d6b65793a207369676e65722d6b65792c20617574682d69643a20617574682d69642c206d61782d616d6f756e743a206d61782d616d6f756e74207d20616c6c6f776564290a20202020286f6b20616c6c6f7765642929290a0a3b3b2047657420746865205f63757272656e745f20506f5820737461636b696e672064656c65676174696f6e20696e666f726d6174696f6e20666f72206120737461636b65722e202049662074686520696e666f726d6174696f6e0a3b3b20697320657870697265642c206f722069662074686572652773206e65766572206265656e2073756368206120737461636b65722c207468656e2072657475726e73206e6f6e652e0a3b3b202a4e657720696e20537461636b7320322e312a0a28646566696e652d726561642d6f6e6c7920286765742d64656c65676174696f6e2d696e666f2028737461636b6572207072696e636970616c29290a20202020286765742d636865636b2d64656c65676174696f6e20737461636b6572290a290a0a3b3b2047657420746865206275726e20686569676874206174207768696368206120706172746963756c617220636f6e747261637420697320616c6c6f77656420746f20737461636b20666f72206120706172746963756c6172207072696e636970616c2e0a3b3b202a4e657720696e20537461636b7320322e312a0a3b3b2052657475726e732028736f6d652028736f6d6520582929206966205820697320746865206275726e206865696768742061742077686963682074686520616c6c6f77616e6365207465726d696e617465730a3b3b2052657475726e732028736f6d65206e6f6e6529206966207468652063616c6c657220697320616c6c6f77656420696e646566696e6974656c790a3b3b2052657475726e73206e6f6e65206966207468657265206973206e6f20616c6c6f77616e6365207265636f72640a28646566696e652d726561642d6f6e6c7920286765742d616c6c6f77616e63652d636f6e74726163742d63616c6c657273202873656e646572207072696e636970616c29202863616c6c696e672d636f6e7472616374207072696e636970616c29290a20202020286d61702d6765743f20616c6c6f77616e63652d636f6e74726163742d63616c6c657273207b2073656e6465723a2073656e6465722c20636f6e74726163742d63616c6c65723a2063616c6c696e672d636f6e7472616374207d290a290a0a3b3b20486f77206d616e7920506f582061646472657373657320696e207468697320726577617264206379636c653f0a3b3b202a4e657720696e20537461636b7320322e312a0a28646566696e652d726561642d6f6e6c7920286765742d6e756d2d7265776172642d7365742d706f782d61646472657373657320287265776172642d6379636c652075696e7429290a20202020286d6174636820286d61702d6765743f207265776172642d6379636c652d706f782d616464726573732d6c6973742d6c656e207b207265776172642d6379636c653a207265776172642d6379636c65207d290a20202020202020206e756d2d61646472730a20202020202020202020202028676574206c656e206e756d2d6164647273290a202020202020202075300a20202020290a290a0a3b3b20486f77206d616e7920755354582068617665206265656e206c6f636b656420757020666f722074686973206164647265737320736f206661722c206265666f7265207468652064656c656761746f7220636f6d6d697473207468656d3f0a3b3b202a4e657720696e20537461636b7320322e312a0a28646566696e652d726561642d6f6e6c7920286765742d7061727469616c2d737461636b65642d62792d6379636c652028706f782d61646472207b2076657273696f6e3a2028627566662031292c206861736862797465733a20286275666620333229207d2920287265776172642d6379636c652075696e7429202873656e646572207072696e636970616c29290a20202020286d61702d6765743f207061727469616c2d737461636b65642d62792d6379636c65207b20706f782d616464723a20706f782d616464722c207265776172642d6379636c653a207265776172642d6379636c652c2073656e6465723a2073656e646572207d290a290a", "status": "success", "tx_index": 0, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": {"maps": [{"key": {"tuple": [{"name": "contract-caller", "type": "principal"}, {"name": "sender", "type": "principal"}]}, "name": "allowance-contract-callers", "value": {"tuple": [{"name": "until-burn-ht", "type": {"optional": "uint128"}}]}}, {"key": {"tuple": [{"name": "stacker", "type": "principal"}]}, "name": "delegation-state", "value": {"tuple": [{"name": "amount-ustx", "type": "uint128"}, {"name": "delegated-to", "type": "principal"}, {"name": "pox-addr", "type": {"optional": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 32}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}}, {"name": "until-burn-ht", "type": {"optional": "uint128"}}]}}, {"key": {"tuple": [{"name": "pox-addr", "type": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 32}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}, {"name": "reward-cycle", "type": "uint128"}, {"name": "sender", "type": "principal"}]}, "name": "logged-partial-stacked-by-cycle", "value": {"tuple": [{"name": "stacked-amount", "type": "uint128"}]}}, {"key": {"tuple": [{"name": "pox-addr", "type": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 32}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}, {"name": "reward-cycle", "type": "uint128"}, {"name": "sender", "type": "principal"}]}, "name": "partial-stacked-by-cycle", "value": {"tuple": [{"name": "stacked-amount", "type": "uint128"}]}}, {"key": {"tuple": [{"name": "index", "type": "uint128"}, {"name": "reward-cycle", "type": "uint128"}]}, "name": "reward-cycle-pox-address-list", "value": {"tuple": [{"name": "pox-addr", "type": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 32}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}, {"name": "signer", "type": {"buffer": {"length": 33}}}, {"name": "stacker", "type": {"optional": "principal"}}, {"name": "total-ustx", "type": "uint128"}]}}, {"key": {"tuple": [{"name": "reward-cycle", "type": "uint128"}]}, "name": "reward-cycle-pox-address-list-len", "value": {"tuple": [{"name": "len", "type": "uint128"}]}}, {"key": {"tuple": [{"name": "reward-cycle", "type": "uint128"}]}, "name": "reward-cycle-total-stacked", "value": {"tuple": [{"name": "total-ustx", "type": "uint128"}]}}, {"key": {"tuple": [{"name": "auth-id", "type": "uint128"}, {"name": "max-amount", "type": "uint128"}, {"name": "period", "type": "uint128"}, {"name": "pox-addr", "type": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 32}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}, {"name": "reward-cycle", "type": "uint128"}, {"name": "signer-key", "type": {"buffer": {"length": 33}}}, {"name": "topic", "type": {"string-ascii": {"length": 14}}}]}, "name": "signer-key-authorizations", "value": "bool"}, {"key": {"tuple": [{"name": "stacker", "type": "principal"}]}, "name": "stacking-state", "value": {"tuple": [{"name": "delegated-to", "type": {"optional": "principal"}}, {"name": "first-reward-cycle", "type": "uint128"}, {"name": "lock-period", "type": "uint128"}, {"name": "pox-addr", "type": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 32}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}, {"name": "reward-set-indexes", "type": {"list": {"type": "uint128", "length": 12}}}]}}, {"key": {"tuple": [{"name": "auth-id", "type": "uint128"}, {"name": "max-amount", "type": "uint128"}, {"name": "period", "type": "uint128"}, {"name": "pox-addr", "type": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 32}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}, {"name": "reward-cycle", "type": "uint128"}, {"name": "signer-key", "type": {"buffer": {"length": 33}}}, {"name": "topic", "type": {"string-ascii": {"length": 14}}}]}, "name": "used-signer-key-authorizations", "value": "bool"}], "epoch": "Epoch25", "functions": [{"args": [{"name": "cycle-index", "type": "uint128"}, {"name": "params", "type": {"tuple": [{"name": "amount-ustx", "type": "uint128"}, {"name": "first-reward-cycle", "type": "uint128"}, {"name": "i", "type": "uint128"}, {"name": "num-cycles", "type": "uint128"}, {"name": "pox-addr", "type": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 32}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}, {"name": "reward-set-indexes", "type": {"list": {"type": "uint128", "length": 12}}}, {"name": "signer", "type": {"buffer": {"length": 33}}}, {"name": "stacker", "type": {"optional": "principal"}}]}}], "name": "add-pox-addr-to-ith-reward-cycle", "access": "private", "outputs": {"type": {"tuple": [{"name": "amount-ustx", "type": "uint128"}, {"name": "first-reward-cycle", "type": "uint128"}, {"name": "i", "type": "uint128"}, {"name": "num-cycles", "type": "uint128"}, {"name": "pox-addr", "type": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 32}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}, {"name": "reward-set-indexes", "type": {"list": {"type": "uint128", "length": 12}}}, {"name": "signer", "type": {"buffer": {"length": 33}}}, {"name": "stacker", "type": {"optional": "principal"}}]}}}, {"args": [{"name": "pox-addr", "type": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 32}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}, {"name": "first-reward-cycle", "type": "uint128"}, {"name": "num-cycles", "type": "uint128"}, {"name": "amount-ustx", "type": "uint128"}, {"name": "stacker", "type": "principal"}, {"name": "signer", "type": {"buffer": {"length": 33}}}], "name": "add-pox-addr-to-reward-cycles", "access": "private", "outputs": {"type": {"response": {"ok": {"list": {"type": "uint128", "length": 12}}, "error": "int128"}}}}, {"args": [{"name": "pox-addr", "type": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 32}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}, {"name": "first-reward-cycle", "type": "uint128"}, {"name": "num-cycles", "type": "uint128"}, {"name": "amount-ustx", "type": "uint128"}], "name": "add-pox-partial-stacked", "access": "private", "outputs": {"type": "bool"}}, {"args": [{"name": "cycle-index", "type": "uint128"}, {"name": "params", "type": {"tuple": [{"name": "amount-ustx", "type": "uint128"}, {"name": "num-cycles", "type": "uint128"}, {"name": "pox-addr", "type": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 32}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}, {"name": "reward-cycle", "type": "uint128"}]}}], "name": "add-pox-partial-stacked-to-ith-cycle", "access": "private", "outputs": {"type": {"tuple": [{"name": "amount-ustx", "type": "uint128"}, {"name": "num-cycles", "type": "uint128"}, {"name": "pox-addr", "type": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 32}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}, {"name": "reward-cycle", "type": "uint128"}]}}}, {"args": [{"name": "pox-addr", "type": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 32}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}, {"name": "reward-cycle", "type": "uint128"}, {"name": "amount-ustx", "type": "uint128"}, {"name": "stacker", "type": {"optional": "principal"}}, {"name": "signer", "type": {"buffer": {"length": 33}}}], "name": "append-reward-cycle-pox-addr", "access": "private", "outputs": {"type": "uint128"}}, {"args": [{"name": "pox-addr", "type": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 32}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}, {"name": "reward-cycle", "type": "uint128"}, {"name": "topic", "type": {"string-ascii": {"length": 14}}}, {"name": "period", "type": "uint128"}, {"name": "signer-sig-opt", "type": {"optional": {"buffer": {"length": 65}}}}, {"name": "signer-key", "type": {"buffer": {"length": 33}}}, {"name": "amount", "type": "uint128"}, {"name": "max-amount", "type": "uint128"}, {"name": "auth-id", "type": "uint128"}], "name": "consume-signer-key-authorization", "access": "private", "outputs": {"type": {"response": {"ok": "bool", "error": "int128"}}}}, {"args": [{"name": "set-index", "type": "uint128"}, {"name": "data-res", "type": {"response": {"ok": {"tuple": [{"name": "cycle", "type": "uint128"}, {"name": "first-unlocked-cycle", "type": "uint128"}, {"name": "stacker", "type": "principal"}]}, "error": "int128"}}}], "name": "fold-unlock-reward-cycle", "access": "private", "outputs": {"type": {"response": {"ok": {"tuple": [{"name": "cycle", "type": "uint128"}, {"name": "first-unlocked-cycle", "type": "uint128"}, {"name": "stacker", "type": "principal"}]}, "error": "int128"}}}}, {"args": [{"name": "user", "type": "principal"}, {"name": "amount-locked", "type": "uint128"}, {"name": "cycle-to-unlock", "type": "uint128"}], "name": "handle-unlock", "access": "private", "outputs": {"type": {"response": {"ok": "bool", "error": "int128"}}}}, {"args": [{"name": "reward-cycle-index", "type": "uint128"}, {"name": "updates", "type": {"optional": {"tuple": [{"name": "add-amount", "type": "uint128"}, {"name": "first-cycle", "type": "uint128"}, {"name": "reward-cycle", "type": "uint128"}, {"name": "signer-key", "type": {"buffer": {"length": 33}}}, {"name": "stacker", "type": "principal"}]}}}], "name": "increase-reward-cycle-entry", "access": "private", "outputs": {"type": {"optional": {"tuple": [{"name": "add-amount", "type": "uint128"}, {"name": "first-cycle", "type": "uint128"}, {"name": "reward-cycle", "type": "uint128"}, {"name": "signer-key", "type": {"buffer": {"length": 33}}}, {"name": "stacker", "type": "principal"}]}}}}, {"args": [{"name": "pox-addr", "type": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 32}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}, {"name": "reward-cycle", "type": "uint128"}, {"name": "signer-sig", "type": {"optional": {"buffer": {"length": 65}}}}, {"name": "signer-key", "type": {"buffer": {"length": 33}}}, {"name": "max-amount", "type": "uint128"}, {"name": "auth-id", "type": "uint128"}], "name": "inner-stack-aggregation-commit", "access": "private", "outputs": {"type": {"response": {"ok": "uint128", "error": "int128"}}}}, {"args": [{"name": "caller", "type": "principal"}, {"name": "until-burn-ht", "type": {"optional": "uint128"}}], "name": "allow-contract-caller", "access": "public", "outputs": {"type": {"response": {"ok": "bool", "error": "int128"}}}}, {"args": [{"name": "stacker", "type": "principal"}, {"name": "pox-addr", "type": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 32}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}, {"name": "extend-count", "type": "uint128"}], "name": "delegate-stack-extend", "access": "public", "outputs": {"type": {"response": {"ok": {"tuple": [{"name": "stacker", "type": "principal"}, {"name": "unlock-burn-height", "type": "uint128"}]}, "error": "int128"}}}}, {"args": [{"name": "stacker", "type": "principal"}, {"name": "pox-addr", "type": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 32}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}, {"name": "increase-by", "type": "uint128"}], "name": "delegate-stack-increase", "access": "public", "outputs": {"type": {"response": {"ok": {"tuple": [{"name": "stacker", "type": "principal"}, {"name": "total-locked", "type": "uint128"}]}, "error": "int128"}}}}, {"args": [{"name": "stacker", "type": "principal"}, {"name": "amount-ustx", "type": "uint128"}, {"name": "pox-addr", "type": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 32}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}, {"name": "start-burn-ht", "type": "uint128"}, {"name": "lock-period", "type": "uint128"}], "name": "delegate-stack-stx", "access": "public", "outputs": {"type": {"response": {"ok": {"tuple": [{"name": "lock-amount", "type": "uint128"}, {"name": "stacker", "type": "principal"}, {"name": "unlock-burn-height", "type": "uint128"}]}, "error": "int128"}}}}, {"args": [{"name": "amount-ustx", "type": "uint128"}, {"name": "delegate-to", "type": "principal"}, {"name": "until-burn-ht", "type": {"optional": "uint128"}}, {"name": "pox-addr", "type": {"optional": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 32}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}}], "name": "delegate-stx", "access": "public", "outputs": {"type": {"response": {"ok": "bool", "error": "int128"}}}}, {"args": [{"name": "caller", "type": "principal"}], "name": "disallow-contract-caller", "access": "public", "outputs": {"type": {"response": {"ok": "bool", "error": "int128"}}}}, {"args": [], "name": "revoke-delegate-stx", "access": "public", "outputs": {"type": {"response": {"ok": {"optional": {"tuple": [{"name": "amount-ustx", "type": "uint128"}, {"name": "delegated-to", "type": "principal"}, {"name": "pox-addr", "type": {"optional": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 32}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}}, {"name": "until-burn-ht", "type": {"optional": "uint128"}}]}}, "error": "int128"}}}}, {"args": [{"name": "first-burn-height", "type": "uint128"}, {"name": "prepare-cycle-length", "type": "uint128"}, {"name": "reward-cycle-length", "type": "uint128"}, {"name": "begin-pox-4-reward-cycle", "type": "uint128"}], "name": "set-burnchain-parameters", "access": "public", "outputs": {"type": {"response": {"ok": "bool", "error": "int128"}}}}, {"args": [{"name": "pox-addr", "type": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 32}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}, {"name": "period", "type": "uint128"}, {"name": "reward-cycle", "type": "uint128"}, {"name": "topic", "type": {"string-ascii": {"length": 14}}}, {"name": "signer-key", "type": {"buffer": {"length": 33}}}, {"name": "allowed", "type": "bool"}, {"name": "max-amount", "type": "uint128"}, {"name": "auth-id", "type": "uint128"}], "name": "set-signer-key-authorization", "access": "public", "outputs": {"type": {"response": {"ok": "bool", "error": "int128"}}}}, {"args": [{"name": "pox-addr", "type": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 32}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}, {"name": "reward-cycle", "type": "uint128"}, {"name": "signer-sig", "type": {"optional": {"buffer": {"length": 65}}}}, {"name": "signer-key", "type": {"buffer": {"length": 33}}}, {"name": "max-amount", "type": "uint128"}, {"name": "auth-id", "type": "uint128"}], "name": "stack-aggregation-commit", "access": "public", "outputs": {"type": {"response": {"ok": "bool", "error": "int128"}}}}, {"args": [{"name": "pox-addr", "type": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 32}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}, {"name": "reward-cycle", "type": "uint128"}, {"name": "signer-sig", "type": {"optional": {"buffer": {"length": 65}}}}, {"name": "signer-key", "type": {"buffer": {"length": 33}}}, {"name": "max-amount", "type": "uint128"}, {"name": "auth-id", "type": "uint128"}], "name": "stack-aggregation-commit-indexed", "access": "public", "outputs": {"type": {"response": {"ok": "uint128", "error": "int128"}}}}, {"args": [{"name": "pox-addr", "type": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 32}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}, {"name": "reward-cycle", "type": "uint128"}, {"name": "reward-cycle-index", "type": "uint128"}], "name": "stack-aggregation-increase", "access": "public", "outputs": {"type": {"response": {"ok": "bool", "error": "int128"}}}}, {"args": [{"name": "extend-count", "type": "uint128"}, {"name": "pox-addr", "type": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 32}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}, {"name": "signer-sig", "type": {"optional": {"buffer": {"length": 65}}}}, {"name": "signer-key", "type": {"buffer": {"length": 33}}}, {"name": "max-amount", "type": "uint128"}, {"name": "auth-id", "type": "uint128"}], "name": "stack-extend", "access": "public", "outputs": {"type": {"response": {"ok": {"tuple": [{"name": "stacker", "type": "principal"}, {"name": "unlock-burn-height", "type": "uint128"}]}, "error": "int128"}}}}, {"args": [{"name": "increase-by", "type": "uint128"}, {"name": "signer-sig", "type": {"optional": {"buffer": {"length": 65}}}}, {"name": "signer-key", "type": {"buffer": {"length": 33}}}, {"name": "max-amount", "type": "uint128"}, {"name": "auth-id", "type": "uint128"}], "name": "stack-increase", "access": "public", "outputs": {"type": {"response": {"ok": {"tuple": [{"name": "stacker", "type": "principal"}, {"name": "total-locked", "type": "uint128"}]}, "error": "int128"}}}}, {"args": [{"name": "amount-ustx", "type": "uint128"}, {"name": "pox-addr", "type": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 32}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}, {"name": "start-burn-ht", "type": "uint128"}, {"name": "lock-period", "type": "uint128"}, {"name": "signer-sig", "type": {"optional": {"buffer": {"length": 65}}}}, {"name": "signer-key", "type": {"buffer": {"length": 33}}}, {"name": "max-amount", "type": "uint128"}, {"name": "auth-id", "type": "uint128"}], "name": "stack-stx", "access": "public", "outputs": {"type": {"response": {"ok": {"tuple": [{"name": "lock-amount", "type": "uint128"}, {"name": "signer-key", "type": {"buffer": {"length": 33}}}, {"name": "stacker", "type": "principal"}, {"name": "unlock-burn-height", "type": "uint128"}]}, "error": "int128"}}}}, {"args": [{"name": "height", "type": "uint128"}], "name": "burn-height-to-reward-cycle", "access": "read_only", "outputs": {"type": "uint128"}}, {"args": [{"name": "pox-addr", "type": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 32}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}, {"name": "amount-ustx", "type": "uint128"}, {"name": "first-reward-cycle", "type": "uint128"}, {"name": "num-cycles", "type": "uint128"}], "name": "can-stack-stx", "access": "read_only", "outputs": {"type": {"response": {"ok": "bool", "error": "int128"}}}}, {"args": [], "name": "check-caller-allowed", "access": "read_only", "outputs": {"type": "bool"}}, {"args": [{"name": "version", "type": {"buffer": {"length": 1}}}, {"name": "hashbytes", "type": {"buffer": {"length": 32}}}], "name": "check-pox-addr-hashbytes", "access": "read_only", "outputs": {"type": "bool"}}, {"args": [{"name": "version", "type": {"buffer": {"length": 1}}}], "name": "check-pox-addr-version", "access": "read_only", "outputs": {"type": "bool"}}, {"args": [{"name": "lock-period", "type": "uint128"}], "name": "check-pox-lock-period", "access": "read_only", "outputs": {"type": "bool"}}, {"args": [], "name": "current-pox-reward-cycle", "access": "read_only", "outputs": {"type": "uint128"}}, {"args": [{"name": "sender", "type": "principal"}, {"name": "calling-contract", "type": "principal"}], "name": "get-allowance-contract-callers", "access": "read_only", "outputs": {"type": {"optional": {"tuple": [{"name": "until-burn-ht", "type": {"optional": "uint128"}}]}}}}, {"args": [{"name": "stacker", "type": "principal"}], "name": "get-check-delegation", "access": "read_only", "outputs": {"type": {"optional": {"tuple": [{"name": "amount-ustx", "type": "uint128"}, {"name": "delegated-to", "type": "principal"}, {"name": "pox-addr", "type": {"optional": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 32}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}}, {"name": "until-burn-ht", "type": {"optional": "uint128"}}]}}}}, {"args": [{"name": "stacker", "type": "principal"}], "name": "get-delegation-info", "access": "read_only", "outputs": {"type": {"optional": {"tuple": [{"name": "amount-ustx", "type": "uint128"}, {"name": "delegated-to", "type": "principal"}, {"name": "pox-addr", "type": {"optional": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 32}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}}, {"name": "until-burn-ht", "type": {"optional": "uint128"}}]}}}}, {"args": [{"name": "reward-cycle", "type": "uint128"}], "name": "get-num-reward-set-pox-addresses", "access": "read_only", "outputs": {"type": "uint128"}}, {"args": [{"name": "pox-addr", "type": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 32}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}, {"name": "reward-cycle", "type": "uint128"}, {"name": "sender", "type": "principal"}], "name": "get-partial-stacked-by-cycle", "access": "read_only", "outputs": {"type": {"optional": {"tuple": [{"name": "stacked-amount", "type": "uint128"}]}}}}, {"args": [], "name": "get-pox-info", "access": "read_only", "outputs": {"type": {"response": {"ok": {"tuple": [{"name": "first-burnchain-block-height", "type": "uint128"}, {"name": "min-amount-ustx", "type": "uint128"}, {"name": "prepare-cycle-length", "type": "uint128"}, {"name": "reward-cycle-id", "type": "uint128"}, {"name": "reward-cycle-length", "type": "uint128"}, {"name": "total-liquid-supply-ustx", "type": "uint128"}]}, "error": "none"}}}}, {"args": [{"name": "reward-cycle", "type": "uint128"}, {"name": "index", "type": "uint128"}], "name": "get-reward-set-pox-address", "access": "read_only", "outputs": {"type": {"optional": {"tuple": [{"name": "pox-addr", "type": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 32}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}, {"name": "signer", "type": {"buffer": {"length": 33}}}, {"name": "stacker", "type": {"optional": "principal"}}, {"name": "total-ustx", "type": "uint128"}]}}}}, {"args": [{"name": "reward-cycle", "type": "uint128"}], "name": "get-reward-set-size", "access": "read_only", "outputs": {"type": "uint128"}}, {"args": [{"name": "pox-addr", "type": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 32}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}, {"name": "reward-cycle", "type": "uint128"}, {"name": "topic", "type": {"string-ascii": {"length": 14}}}, {"name": "period", "type": "uint128"}, {"name": "max-amount", "type": "uint128"}, {"name": "auth-id", "type": "uint128"}], "name": "get-signer-key-message-hash", "access": "read_only", "outputs": {"type": {"buffer": {"length": 32}}}}, {"args": [{"name": "stacker", "type": "principal"}], "name": "get-stacker-info", "access": "read_only", "outputs": {"type": {"optional": {"tuple": [{"name": "delegated-to", "type": {"optional": "principal"}}, {"name": "first-reward-cycle", "type": "uint128"}, {"name": "lock-period", "type": "uint128"}, {"name": "pox-addr", "type": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 32}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}, {"name": "reward-set-indexes", "type": {"list": {"type": "uint128", "length": 12}}}]}}}}, {"args": [], "name": "get-stacking-minimum", "access": "read_only", "outputs": {"type": "uint128"}}, {"args": [{"name": "reward-cycle", "type": "uint128"}], "name": "get-total-ustx-stacked", "access": "read_only", "outputs": {"type": "uint128"}}, {"args": [{"name": "pox-addr", "type": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 32}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}, {"name": "amount-ustx", "type": "uint128"}, {"name": "first-reward-cycle", "type": "uint128"}, {"name": "num-cycles", "type": "uint128"}], "name": "minimal-can-stack-stx", "access": "read_only", "outputs": {"type": {"response": {"ok": "bool", "error": "int128"}}}}, {"args": [{"name": "cycle", "type": "uint128"}], "name": "reward-cycle-to-burn-height", "access": "read_only", "outputs": {"type": "uint128"}}, {"args": [{"name": "pox-addr", "type": {"tuple": [{"name": "hashbytes", "type": {"buffer": {"length": 32}}}, {"name": "version", "type": {"buffer": {"length": 1}}}]}}, {"name": "reward-cycle", "type": "uint128"}, {"name": "topic", "type": {"string-ascii": {"length": 14}}}, {"name": "period", "type": "uint128"}, {"name": "signer-sig-opt", "type": {"optional": {"buffer": {"length": 65}}}}, {"name": "signer-key", "type": {"buffer": {"length": 33}}}, {"name": "amount", "type": "uint128"}, {"name": "max-amount", "type": "uint128"}, {"name": "auth-id", "type": "uint128"}], "name": "verify-signer-key-sig", "access": "read_only", "outputs": {"type": {"response": {"ok": "bool", "error": "int128"}}}}], "variables": [{"name": "ADDRESS_VERSION_NATIVE_P2TR", "type": {"buffer": {"length": 1}}, "access": "constant"}, {"name": "ADDRESS_VERSION_NATIVE_P2WPKH", "type": {"buffer": {"length": 1}}, "access": "constant"}, {"name": "ADDRESS_VERSION_NATIVE_P2WSH", "type": {"buffer": {"length": 1}}, "access": "constant"}, {"name": "ADDRESS_VERSION_P2PKH", "type": {"buffer": {"length": 1}}, "access": "constant"}, {"name": "ADDRESS_VERSION_P2SH", "type": {"buffer": {"length": 1}}, "access": "constant"}, {"name": "ADDRESS_VERSION_P2WPKH", "type": {"buffer": {"length": 1}}, "access": "constant"}, {"name": "ADDRESS_VERSION_P2WSH", "type": {"buffer": {"length": 1}}, "access": "constant"}, {"name": "ERR_DELEGATION_ALREADY_REVOKED", "type": "int128", "access": "constant"}, {"name": "ERR_DELEGATION_EXPIRES_DURING_LOCK", "type": "int128", "access": "constant"}, {"name": "ERR_DELEGATION_NO_REWARD_SLOT", "type": "int128", "access": "constant"}, {"name": "ERR_DELEGATION_POX_ADDR_REQUIRED", "type": "int128", "access": "constant"}, {"name": "ERR_DELEGATION_TOO_MUCH_LOCKED", "type": "int128", "access": "constant"}, {"name": "ERR_DELEGATION_WRONG_REWARD_SLOT", "type": "int128", "access": "constant"}, {"name": "ERR_INVALID_INCREASE", "type": "int128", "access": "constant"}, {"name": "ERR_INVALID_REWARD_CYCLE", "type": "int128", "access": "constant"}, {"name": "ERR_INVALID_SIGNATURE_PUBKEY", "type": "int128", "access": "constant"}, {"name": "ERR_INVALID_SIGNATURE_RECOVER", "type": "int128", "access": "constant"}, {"name": "ERR_INVALID_SIGNER_KEY", "type": "int128", "access": "constant"}, {"name": "ERR_INVALID_START_BURN_HEIGHT", "type": "int128", "access": "constant"}, {"name": "ERR_NOT_ALLOWED", "type": "int128", "access": "constant"}, {"name": "ERR_NOT_CURRENT_STACKER", "type": "int128", "access": "constant"}, {"name": "ERR_REUSED_SIGNER_KEY", "type": "int128", "access": "constant"}, {"name": "ERR_SIGNER_AUTH_AMOUNT_TOO_HIGH", "type": "int128", "access": "constant"}, {"name": "ERR_SIGNER_AUTH_USED", "type": "int128", "access": "constant"}, {"name": "ERR_STACKING_ALREADY_DELEGATED", "type": "int128", "access": "constant"}, {"name": "ERR_STACKING_ALREADY_STACKED", "type": "int128", "access": "constant"}, {"name": "ERR_STACKING_CORRUPTED_STATE", "type": "int128", "access": "constant"}, {"name": "ERR_STACKING_EXPIRED", "type": "int128", "access": "constant"}, {"name": "ERR_STACKING_INSUFFICIENT_FUNDS", "type": "int128", "access": "constant"}, {"name": "ERR_STACKING_INVALID_AMOUNT", "type": "int128", "access": "constant"}, {"name": "ERR_STACKING_INVALID_LOCK_PERIOD", "type": "int128", "access": "constant"}, {"name": "ERR_STACKING_INVALID_POX_ADDRESS", "type": "int128", "access": "constant"}, {"name": "ERR_STACKING_IS_DELEGATED", "type": "int128", "access": "constant"}, {"name": "ERR_STACKING_NOT_DELEGATED", "type": "int128", "access": "constant"}, {"name": "ERR_STACKING_NO_SUCH_PRINCIPAL", "type": "int128", "access": "constant"}, {"name": "ERR_STACKING_PERMISSION_DENIED", "type": "int128", "access": "constant"}, {"name": "ERR_STACKING_POX_ADDRESS_IN_USE", "type": "int128", "access": "constant"}, {"name": "ERR_STACKING_STX_LOCKED", "type": "int128", "access": "constant"}, {"name": "ERR_STACKING_THRESHOLD_NOT_MET", "type": "int128", "access": "constant"}, {"name": "ERR_STACKING_UNREACHABLE", "type": "int128", "access": "constant"}, {"name": "ERR_STACK_EXTEND_NOT_LOCKED", "type": "int128", "access": "constant"}, {"name": "ERR_STACK_INCREASE_NOT_LOCKED", "type": "int128", "access": "constant"}, {"name": "MAX_ADDRESS_VERSION", "type": "uint128", "access": "constant"}, {"name": "MAX_ADDRESS_VERSION_BUFF_20", "type": "uint128", "access": "constant"}, {"name": "MAX_ADDRESS_VERSION_BUFF_32", "type": "uint128", "access": "constant"}, {"name": "MAX_POX_REWARD_CYCLES", "type": "uint128", "access": "constant"}, {"name": "MIN_POX_REWARD_CYCLES", "type": "uint128", "access": "constant"}, {"name": "PREPARE_CYCLE_LENGTH", "type": "uint128", "access": "constant"}, {"name": "REWARD_CYCLE_LENGTH", "type": "uint128", "access": "constant"}, {"name": "SIP018_MSG_PREFIX", "type": {"buffer": {"length": 6}}, "access": "constant"}, {"name": "STACKING_THRESHOLD_25", "type": "uint128", "access": "constant"}, {"name": "STACKS_ADDR_VERSION_MAINNET", "type": {"buffer": {"length": 1}}, "access": "constant"}, {"name": "STACKS_ADDR_VERSION_TESTNET", "type": {"buffer": {"length": 1}}, "access": "constant"}, {"name": "configured", "type": "bool", "access": "variable"}, {"name": "first-burnchain-block-height", "type": "uint128", "access": "variable"}, {"name": "first-pox-4-reward-cycle", "type": "uint128", "access": "variable"}, {"name": "pox-prepare-cycle-length", "type": "uint128", "access": "variable"}, {"name": "pox-reward-cycle-length", "type": "uint128", "access": "variable"}], "clarity_version": "Clarity2", "fungible_tokens": [], "non_fungible_tokens": []}, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}, {"txid": "0xb4e2f80dc12d568d4efe68d48d1cd6c72782633a367bae4c31ccc7d3eed8f0e7", "raw_tx": "0x800000000004000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000302000000000602077369676e65727300000b0c28646566696e652d646174612d766172206c6173742d7365742d6379636c652075696e74207530290a28646566696e652d646174612d76617220737461636b657264622d7369676e65722d736c6f74732d3020286c6973742034303030207b207369676e65723a207072696e636970616c2c206e756d2d736c6f74733a2075696e74207d2920286c69737429290a28646566696e652d646174612d76617220737461636b657264622d7369676e65722d736c6f74732d3120286c6973742034303030207b207369676e65723a207072696e636970616c2c206e756d2d736c6f74733a2075696e74207d2920286c69737429290a28646566696e652d6d6170206379636c652d7365742d6865696768742075696e742075696e74290a28646566696e652d636f6e7374616e74204d41585f575249544553207534323934393637323935290a28646566696e652d636f6e7374616e74204348554e4b5f53495a4520282a20753220753130323420753130323429290a28646566696e652d636f6e7374616e74204552525f4e4f5f535543485f50414745207531290a28646566696e652d636f6e7374616e74204552525f4359434c455f4e4f545f534554207532290a0a28646566696e652d6d6170206379636c652d7369676e65722d7365742075696e7420286c6973742034303030207b207369676e65723a207072696e636970616c2c207765696768743a2075696e74207d29290a0a3b3b2043616c6c656420696e7465726e616c6c792062792074686520537461636b73206e6f64652e0a3b3b2053746f7265732074686520737461636b65726462207369676e657220736c6f747320666f72206120676976656e20726577617264206379636c652e0a3b3b2053696e6365207468657265206973206f6e6520737461636b6572646220706572207369676e6572206d6573736167652c2074686520606e756d2d736c6f747360206669656c642077696c6c20616c776179732062652075312e0a28646566696e652d707269766174652028737461636b657264622d7365742d7369676e65722d736c6f7473200a20202020202020202020202020202020202020287369676e65722d736c6f747320286c6973742034303030207b207369676e65723a207072696e636970616c2c206e756d2d736c6f74733a2075696e74207d29290a20202020202020202020202020202020202020287265776172642d6379636c652075696e74290a20202020202020202020202020202020202020287365742d61742d6865696768742075696e7429290a09286c65742028286379636c652d6d6f6420286d6f64207265776172642d6379636c652075322929290a2020202020202020286d61702d736574206379636c652d7365742d686569676874207265776172642d6379636c65207365742d61742d686569676874290a2020202020202020287661722d736574206c6173742d7365742d6379636c65207265776172642d6379636c65290a2020202020202020286966202869732d6571206379636c652d6d6f64207530290a202020202020202020202020286f6b20287661722d73657420737461636b657264622d7369676e65722d736c6f74732d30207369676e65722d736c6f747329290a202020202020202020202020286f6b20287661722d73657420737461636b657264622d7369676e65722d736c6f74732d31207369676e65722d736c6f747329292929290a0a3b3b2043616c6c656420696e7465726e616c6c792062792074686520537461636b73206e6f64652e0a3b3b205365747320746865206c697374206f66207369676e65727320616e64207765696768747320666f72206120676976656e20726577617264206379636c652e0a28646566696e652d7072697661746520287365742d7369676e6572730a2020202020202020202020202020202020287265776172642d6379636c652075696e74290a2020202020202020202020202020202020287369676e65727320286c6973742034303030207b207369676e65723a207072696e636970616c2c207765696768743a2075696e74207d2929290a202020202028626567696e0a202020202020286173736572747321202869732d657120287661722d676574206c6173742d7365742d6379636c6529207265776172642d6379636c65292028657272204552525f4359434c455f4e4f545f53455429290a202020202020286f6b20286d61702d736574206379636c652d7369676e65722d736574207265776172642d6379636c65207369676e657273292929290a0a3b3b2047657420746865206c697374206f66207369676e65727320616e64207765696768747320666f72206120676976656e20726577617264206379636c652e0a28646566696e652d726561642d6f6e6c7920286765742d7369676e65727320286379636c652075696e7429290a2020202020286d61702d6765743f206379636c652d7369676e65722d736574206379636c6529290a0a3b3b2063616c6c6564206279202e7369676e6572732d28307c31292d78787820636f6e74726163747320746f2067657420746865207369676e65727320666f722074686569722072657370656374697665207369676e696e6720736574730a28646566696e652d726561642d6f6e6c792028737461636b657264622d6765742d7369676e65722d736c6f74732d706167652028706167652075696e7429290a20202020286966202869732d65712070616765207530292020202020286f6b20287661722d67657420737461636b657264622d7369676e65722d736c6f74732d3029290a2020202020202020286966202869732d65712070616765207531292020286f6b20287661722d67657420737461636b657264622d7369676e65722d736c6f74732d3129290a20202020202020202020202028657272204552525f4e4f5f535543485f50414745292929290a0a3b3b204765742061207369676e65722773207369676e696e6720776569676874206279206120676976656e20696e6465782e0a3b3b2055736564206279206f7468657220636f6e7472616374732028652e672e2074686520766f74696e6720636f6e747261637429200a28646566696e652d726561642d6f6e6c7920286765742d7369676e65722d62792d696e64657820286379636c652075696e742920287369676e65722d696e6465782075696e7429290a09286f6b2028656c656d656e742d61742028756e777261702120286d61702d6765743f206379636c652d7369676e65722d736574206379636c65292028657272204552525f4359434c455f4e4f545f5345542929207369676e65722d696e6465782929290a0a3b3b2063616c6c6564206279202e7369676e6572732d28307c31292d78787820636f6e7472616374730a3b3b204e4f54453a20746865206e6f6465206d61792069676e6f7265206077726974652d66726571602c2073696e6365206e6f7420616c6c20737461636b65726462732077696c6c206265206e6565646564206174206120676976656e2074696d650a28646566696e652d726561642d6f6e6c792028737461636b657264622d6765742d636f6e666967290a09286f6b0a09097b206368756e6b2d73697a653a204348554e4b5f53495a452c0a0909202077726974652d667265713a2075302c200a090920206d61782d7772697465733a204d41585f5752495445532c0a090920206d61782d6e65696768626f72733a207533322c0a0909202068696e742d7265706c696361733a20286c6973742029207d0a0929290a0a28646566696e652d726561642d6f6e6c7920286765742d6c6173742d7365742d6379636c65290a09286f6b20287661722d676574206c6173742d7365742d6379636c652929290a", "status": "success", "tx_index": 1, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": {"maps": [{"key": "uint128", "name": "cycle-set-height", "value": "uint128"}, {"key": "uint128", "name": "cycle-signer-set", "value": {"list": {"type": {"tuple": [{"name": "signer", "type": "principal"}, {"name": "weight", "type": "uint128"}]}, "length": 4000}}}], "epoch": "Epoch25", "functions": [{"args": [{"name": "reward-cycle", "type": "uint128"}, {"name": "signers", "type": {"list": {"type": {"tuple": [{"name": "signer", "type": "principal"}, {"name": "weight", "type": "uint128"}]}, "length": 4000}}}], "name": "set-signers", "access": "private", "outputs": {"type": {"response": {"ok": "bool", "error": "uint128"}}}}, {"args": [{"name": "signer-slots", "type": {"list": {"type": {"tuple": [{"name": "num-slots", "type": "uint128"}, {"name": "signer", "type": "principal"}]}, "length": 4000}}}, {"name": "reward-cycle", "type": "uint128"}, {"name": "set-at-height", "type": "uint128"}], "name": "stackerdb-set-signer-slots", "access": "private", "outputs": {"type": {"response": {"ok": "bool", "error": "none"}}}}, {"args": [], "name": "get-last-set-cycle", "access": "read_only", "outputs": {"type": {"response": {"ok": "uint128", "error": "none"}}}}, {"args": [{"name": "cycle", "type": "uint128"}, {"name": "signer-index", "type": "uint128"}], "name": "get-signer-by-index", "access": "read_only", "outputs": {"type": {"response": {"ok": {"optional": {"tuple": [{"name": "signer", "type": "principal"}, {"name": "weight", "type": "uint128"}]}}, "error": "uint128"}}}}, {"args": [{"name": "cycle", "type": "uint128"}], "name": "get-signers", "access": "read_only", "outputs": {"type": {"optional": {"list": {"type": {"tuple": [{"name": "signer", "type": "principal"}, {"name": "weight", "type": "uint128"}]}, "length": 4000}}}}}, {"args": [], "name": "stackerdb-get-config", "access": "read_only", "outputs": {"type": {"response": {"ok": {"tuple": [{"name": "chunk-size", "type": "uint128"}, {"name": "hint-replicas", "type": {"list": {"type": "none", "length": 0}}}, {"name": "max-neighbors", "type": "uint128"}, {"name": "max-writes", "type": "uint128"}, {"name": "write-freq", "type": "uint128"}]}, "error": "none"}}}}, {"args": [{"name": "page", "type": "uint128"}], "name": "stackerdb-get-signer-slots-page", "access": "read_only", "outputs": {"type": {"response": {"ok": {"list": {"type": {"tuple": [{"name": "num-slots", "type": "uint128"}, {"name": "signer", "type": "principal"}]}, "length": 4000}}, "error": "uint128"}}}}], "variables": [{"name": "CHUNK_SIZE", "type": "uint128", "access": "constant"}, {"name": "ERR_CYCLE_NOT_SET", "type": "uint128", "access": "constant"}, {"name": "ERR_NO_SUCH_PAGE", "type": "uint128", "access": "constant"}, {"name": "MAX_WRITES", "type": "uint128", "access": "constant"}, {"name": "last-set-cycle", "type": "uint128", "access": "variable"}, {"name": "stackerdb-signer-slots-0", "type": {"list": {"type": {"tuple": [{"name": "num-slots", "type": "uint128"}, {"name": "signer", "type": "principal"}]}, "length": 4000}}, "access": "variable"}, {"name": "stackerdb-signer-slots-1", "type": {"list": {"type": {"tuple": [{"name": "num-slots", "type": "uint128"}, {"name": "signer", "type": "principal"}]}, "length": 4000}}, "access": "variable"}], "clarity_version": "Clarity2", "fungible_tokens": [], "non_fungible_tokens": []}, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}, {"txid": "0xe0ce7ffd97631e7d860618bd891e925fa7f1f557ffd6e8891ad9ceccf05c774a", "raw_tx": "0x8000000000040000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003020000000006020b7369676e6572732d302d30000001603b3b204120537461636b6572444220666f722061207370656369666963206d657373616765207479706520666f72207369676e65722073657420302e0a3b3b2054686520636f6e7472616374206e616d6520696e64696361746573207768696368202d2d206974206861732074686520666f726d20607369676e6572732d302d7b3a6d6573736167655f69647d602e0a0a28646566696e652d726561642d6f6e6c792028737461636b657264622d6765742d7369676e65722d736c6f7473290a2020202028636f6e74726163742d63616c6c3f202e7369676e65727320737461636b657264622d6765742d7369676e65722d736c6f74732d7061676520753029290a0a28646566696e652d726561642d6f6e6c792028737461636b657264622d6765742d636f6e666967290a2020202028636f6e74726163742d63616c6c3f202e7369676e65727320737461636b657264622d6765742d636f6e66696729290a", "status": "success", "tx_index": 2, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": {"maps": [], "epoch": "Epoch25", "functions": [{"args": [], "name": "stackerdb-get-config", "access": "read_only", "outputs": {"type": {"response": {"ok": {"tuple": [{"name": "chunk-size", "type": "uint128"}, {"name": "hint-replicas", "type": {"list": {"type": "none", "length": 0}}}, {"name": "max-neighbors", "type": "uint128"}, {"name": "max-writes", "type": "uint128"}, {"name": "write-freq", "type": "uint128"}]}, "error": "none"}}}}, {"args": [], "name": "stackerdb-get-signer-slots", "access": "read_only", "outputs": {"type": {"response": {"ok": {"list": {"type": {"tuple": [{"name": "num-slots", "type": "uint128"}, {"name": "signer", "type": "principal"}]}, "length": 4000}}, "error": "uint128"}}}}], "variables": [], "clarity_version": "Clarity2", "fungible_tokens": [], "non_fungible_tokens": []}, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}, {"txid": "0x52ae4b0186a4282edb4d253c45db08825e3944bae7c944b6f3675073151d6cc0", "raw_tx": "0x8000000000040000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003020000000006020b7369676e6572732d302d31000001603b3b204120537461636b6572444220666f722061207370656369666963206d657373616765207479706520666f72207369676e65722073657420302e0a3b3b2054686520636f6e7472616374206e616d6520696e64696361746573207768696368202d2d206974206861732074686520666f726d20607369676e6572732d302d7b3a6d6573736167655f69647d602e0a0a28646566696e652d726561642d6f6e6c792028737461636b657264622d6765742d7369676e65722d736c6f7473290a2020202028636f6e74726163742d63616c6c3f202e7369676e65727320737461636b657264622d6765742d7369676e65722d736c6f74732d7061676520753029290a0a28646566696e652d726561642d6f6e6c792028737461636b657264622d6765742d636f6e666967290a2020202028636f6e74726163742d63616c6c3f202e7369676e65727320737461636b657264622d6765742d636f6e66696729290a", "status": "success", "tx_index": 3, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": {"maps": [], "epoch": "Epoch25", "functions": [{"args": [], "name": "stackerdb-get-config", "access": "read_only", "outputs": {"type": {"response": {"ok": {"tuple": [{"name": "chunk-size", "type": "uint128"}, {"name": "hint-replicas", "type": {"list": {"type": "none", "length": 0}}}, {"name": "max-neighbors", "type": "uint128"}, {"name": "max-writes", "type": "uint128"}, {"name": "write-freq", "type": "uint128"}]}, "error": "none"}}}}, {"args": [], "name": "stackerdb-get-signer-slots", "access": "read_only", "outputs": {"type": {"response": {"ok": {"list": {"type": {"tuple": [{"name": "num-slots", "type": "uint128"}, {"name": "signer", "type": "principal"}]}, "length": 4000}}, "error": "uint128"}}}}], "variables": [], "clarity_version": "Clarity2", "fungible_tokens": [], "non_fungible_tokens": []}, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}, {"txid": "0x9e4050fb78c154cff2c01bc44fff2eb041bcbe20a64bca5f8055b4c18ed926e3", "raw_tx": "0x8000000000040000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003020000000006020b7369676e6572732d302d32000001603b3b204120537461636b6572444220666f722061207370656369666963206d657373616765207479706520666f72207369676e65722073657420302e0a3b3b2054686520636f6e7472616374206e616d6520696e64696361746573207768696368202d2d206974206861732074686520666f726d20607369676e6572732d302d7b3a6d6573736167655f69647d602e0a0a28646566696e652d726561642d6f6e6c792028737461636b657264622d6765742d7369676e65722d736c6f7473290a2020202028636f6e74726163742d63616c6c3f202e7369676e65727320737461636b657264622d6765742d7369676e65722d736c6f74732d7061676520753029290a0a28646566696e652d726561642d6f6e6c792028737461636b657264622d6765742d636f6e666967290a2020202028636f6e74726163742d63616c6c3f202e7369676e65727320737461636b657264622d6765742d636f6e66696729290a", "status": "success", "tx_index": 4, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": {"maps": [], "epoch": "Epoch25", "functions": [{"args": [], "name": "stackerdb-get-config", "access": "read_only", "outputs": {"type": {"response": {"ok": {"tuple": [{"name": "chunk-size", "type": "uint128"}, {"name": "hint-replicas", "type": {"list": {"type": "none", "length": 0}}}, {"name": "max-neighbors", "type": "uint128"}, {"name": "max-writes", "type": "uint128"}, {"name": "write-freq", "type": "uint128"}]}, "error": "none"}}}}, {"args": [], "name": "stackerdb-get-signer-slots", "access": "read_only", "outputs": {"type": {"response": {"ok": {"list": {"type": {"tuple": [{"name": "num-slots", "type": "uint128"}, {"name": "signer", "type": "principal"}]}, "length": 4000}}, "error": "uint128"}}}}], "variables": [], "clarity_version": "Clarity2", "fungible_tokens": [], "non_fungible_tokens": []}, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}, {"txid": "0xaaa8977f145ad59fe7a2e9605e1c7c20ebe6727d160027585a588fb77aece96e", "raw_tx": "0x8000000000040000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003020000000006020b7369676e6572732d302d33000001603b3b204120537461636b6572444220666f722061207370656369666963206d657373616765207479706520666f72207369676e65722073657420302e0a3b3b2054686520636f6e7472616374206e616d6520696e64696361746573207768696368202d2d206974206861732074686520666f726d20607369676e6572732d302d7b3a6d6573736167655f69647d602e0a0a28646566696e652d726561642d6f6e6c792028737461636b657264622d6765742d7369676e65722d736c6f7473290a2020202028636f6e74726163742d63616c6c3f202e7369676e65727320737461636b657264622d6765742d7369676e65722d736c6f74732d7061676520753029290a0a28646566696e652d726561642d6f6e6c792028737461636b657264622d6765742d636f6e666967290a2020202028636f6e74726163742d63616c6c3f202e7369676e65727320737461636b657264622d6765742d636f6e66696729290a", "status": "success", "tx_index": 5, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": {"maps": [], "epoch": "Epoch25", "functions": [{"args": [], "name": "stackerdb-get-config", "access": "read_only", "outputs": {"type": {"response": {"ok": {"tuple": [{"name": "chunk-size", "type": "uint128"}, {"name": "hint-replicas", "type": {"list": {"type": "none", "length": 0}}}, {"name": "max-neighbors", "type": "uint128"}, {"name": "max-writes", "type": "uint128"}, {"name": "write-freq", "type": "uint128"}]}, "error": "none"}}}}, {"args": [], "name": "stackerdb-get-signer-slots", "access": "read_only", "outputs": {"type": {"response": {"ok": {"list": {"type": {"tuple": [{"name": "num-slots", "type": "uint128"}, {"name": "signer", "type": "principal"}]}, "length": 4000}}, "error": "uint128"}}}}], "variables": [], "clarity_version": "Clarity2", "fungible_tokens": [], "non_fungible_tokens": []}, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}, {"txid": "0x4096187f57ebe11368d9145c52adf54d986ee08169606b89bb95a38b47a9302b", "raw_tx": "0x8000000000040000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003020000000006020b7369676e6572732d302d34000001603b3b204120537461636b6572444220666f722061207370656369666963206d657373616765207479706520666f72207369676e65722073657420302e0a3b3b2054686520636f6e7472616374206e616d6520696e64696361746573207768696368202d2d206974206861732074686520666f726d20607369676e6572732d302d7b3a6d6573736167655f69647d602e0a0a28646566696e652d726561642d6f6e6c792028737461636b657264622d6765742d7369676e65722d736c6f7473290a2020202028636f6e74726163742d63616c6c3f202e7369676e65727320737461636b657264622d6765742d7369676e65722d736c6f74732d7061676520753029290a0a28646566696e652d726561642d6f6e6c792028737461636b657264622d6765742d636f6e666967290a2020202028636f6e74726163742d63616c6c3f202e7369676e65727320737461636b657264622d6765742d636f6e66696729290a", "status": "success", "tx_index": 6, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": {"maps": [], "epoch": "Epoch25", "functions": [{"args": [], "name": "stackerdb-get-config", "access": "read_only", "outputs": {"type": {"response": {"ok": {"tuple": [{"name": "chunk-size", "type": "uint128"}, {"name": "hint-replicas", "type": {"list": {"type": "none", "length": 0}}}, {"name": "max-neighbors", "type": "uint128"}, {"name": "max-writes", "type": "uint128"}, {"name": "write-freq", "type": "uint128"}]}, "error": "none"}}}}, {"args": [], "name": "stackerdb-get-signer-slots", "access": "read_only", "outputs": {"type": {"response": {"ok": {"list": {"type": {"tuple": [{"name": "num-slots", "type": "uint128"}, {"name": "signer", "type": "principal"}]}, "length": 4000}}, "error": "uint128"}}}}], "variables": [], "clarity_version": "Clarity2", "fungible_tokens": [], "non_fungible_tokens": []}, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}, {"txid": "0x66146a2549bb199c4960d58af1a9ed3022904896976cfa14bb05b4b5d3844d80", "raw_tx": "0x8000000000040000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003020000000006020b7369676e6572732d302d35000001603b3b204120537461636b6572444220666f722061207370656369666963206d657373616765207479706520666f72207369676e65722073657420302e0a3b3b2054686520636f6e7472616374206e616d6520696e64696361746573207768696368202d2d206974206861732074686520666f726d20607369676e6572732d302d7b3a6d6573736167655f69647d602e0a0a28646566696e652d726561642d6f6e6c792028737461636b657264622d6765742d7369676e65722d736c6f7473290a2020202028636f6e74726163742d63616c6c3f202e7369676e65727320737461636b657264622d6765742d7369676e65722d736c6f74732d7061676520753029290a0a28646566696e652d726561642d6f6e6c792028737461636b657264622d6765742d636f6e666967290a2020202028636f6e74726163742d63616c6c3f202e7369676e65727320737461636b657264622d6765742d636f6e66696729290a", "status": "success", "tx_index": 7, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": {"maps": [], "epoch": "Epoch25", "functions": [{"args": [], "name": "stackerdb-get-config", "access": "read_only", "outputs": {"type": {"response": {"ok": {"tuple": [{"name": "chunk-size", "type": "uint128"}, {"name": "hint-replicas", "type": {"list": {"type": "none", "length": 0}}}, {"name": "max-neighbors", "type": "uint128"}, {"name": "max-writes", "type": "uint128"}, {"name": "write-freq", "type": "uint128"}]}, "error": "none"}}}}, {"args": [], "name": "stackerdb-get-signer-slots", "access": "read_only", "outputs": {"type": {"response": {"ok": {"list": {"type": {"tuple": [{"name": "num-slots", "type": "uint128"}, {"name": "signer", "type": "principal"}]}, "length": 4000}}, "error": "uint128"}}}}], "variables": [], "clarity_version": "Clarity2", "fungible_tokens": [], "non_fungible_tokens": []}, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}, {"txid": "0x34301d96dc3b0c534b6cde034f50f68895ac242353ca50ec27764f5c3b202402", "raw_tx": "0x8000000000040000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003020000000006020b7369676e6572732d302d36000001603b3b204120537461636b6572444220666f722061207370656369666963206d657373616765207479706520666f72207369676e65722073657420302e0a3b3b2054686520636f6e7472616374206e616d6520696e64696361746573207768696368202d2d206974206861732074686520666f726d20607369676e6572732d302d7b3a6d6573736167655f69647d602e0a0a28646566696e652d726561642d6f6e6c792028737461636b657264622d6765742d7369676e65722d736c6f7473290a2020202028636f6e74726163742d63616c6c3f202e7369676e65727320737461636b657264622d6765742d7369676e65722d736c6f74732d7061676520753029290a0a28646566696e652d726561642d6f6e6c792028737461636b657264622d6765742d636f6e666967290a2020202028636f6e74726163742d63616c6c3f202e7369676e65727320737461636b657264622d6765742d636f6e66696729290a", "status": "success", "tx_index": 8, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": {"maps": [], "epoch": "Epoch25", "functions": [{"args": [], "name": "stackerdb-get-config", "access": "read_only", "outputs": {"type": {"response": {"ok": {"tuple": [{"name": "chunk-size", "type": "uint128"}, {"name": "hint-replicas", "type": {"list": {"type": "none", "length": 0}}}, {"name": "max-neighbors", "type": "uint128"}, {"name": "max-writes", "type": "uint128"}, {"name": "write-freq", "type": "uint128"}]}, "error": "none"}}}}, {"args": [], "name": "stackerdb-get-signer-slots", "access": "read_only", "outputs": {"type": {"response": {"ok": {"list": {"type": {"tuple": [{"name": "num-slots", "type": "uint128"}, {"name": "signer", "type": "principal"}]}, "length": 4000}}, "error": "uint128"}}}}], "variables": [], "clarity_version": "Clarity2", "fungible_tokens": [], "non_fungible_tokens": []}, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}, {"txid": "0x25955a630ac1c00b1c0f79964fad912fe527d0e148691bde0bc76cbf8d00ab44", "raw_tx": "0x8000000000040000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003020000000006020b7369676e6572732d302d37000001603b3b204120537461636b6572444220666f722061207370656369666963206d657373616765207479706520666f72207369676e65722073657420302e0a3b3b2054686520636f6e7472616374206e616d6520696e64696361746573207768696368202d2d206974206861732074686520666f726d20607369676e6572732d302d7b3a6d6573736167655f69647d602e0a0a28646566696e652d726561642d6f6e6c792028737461636b657264622d6765742d7369676e65722d736c6f7473290a2020202028636f6e74726163742d63616c6c3f202e7369676e65727320737461636b657264622d6765742d7369676e65722d736c6f74732d7061676520753029290a0a28646566696e652d726561642d6f6e6c792028737461636b657264622d6765742d636f6e666967290a2020202028636f6e74726163742d63616c6c3f202e7369676e65727320737461636b657264622d6765742d636f6e66696729290a", "status": "success", "tx_index": 9, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": {"maps": [], "epoch": "Epoch25", "functions": [{"args": [], "name": "stackerdb-get-config", "access": "read_only", "outputs": {"type": {"response": {"ok": {"tuple": [{"name": "chunk-size", "type": "uint128"}, {"name": "hint-replicas", "type": {"list": {"type": "none", "length": 0}}}, {"name": "max-neighbors", "type": "uint128"}, {"name": "max-writes", "type": "uint128"}, {"name": "write-freq", "type": "uint128"}]}, "error": "none"}}}}, {"args": [], "name": "stackerdb-get-signer-slots", "access": "read_only", "outputs": {"type": {"response": {"ok": {"list": {"type": {"tuple": [{"name": "num-slots", "type": "uint128"}, {"name": "signer", "type": "principal"}]}, "length": 4000}}, "error": "uint128"}}}}], "variables": [], "clarity_version": "Clarity2", "fungible_tokens": [], "non_fungible_tokens": []}, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}, {"txid": "0xa3f16ebf1143d3af27dac8de419db29d52682eaa6228fc2358eafdd4a7ec54e5", "raw_tx": "0x8000000000040000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003020000000006020b7369676e6572732d302d38000001603b3b204120537461636b6572444220666f722061207370656369666963206d657373616765207479706520666f72207369676e65722073657420302e0a3b3b2054686520636f6e7472616374206e616d6520696e64696361746573207768696368202d2d206974206861732074686520666f726d20607369676e6572732d302d7b3a6d6573736167655f69647d602e0a0a28646566696e652d726561642d6f6e6c792028737461636b657264622d6765742d7369676e65722d736c6f7473290a2020202028636f6e74726163742d63616c6c3f202e7369676e65727320737461636b657264622d6765742d7369676e65722d736c6f74732d7061676520753029290a0a28646566696e652d726561642d6f6e6c792028737461636b657264622d6765742d636f6e666967290a2020202028636f6e74726163742d63616c6c3f202e7369676e65727320737461636b657264622d6765742d636f6e66696729290a", "status": "success", "tx_index": 10, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": {"maps": [], "epoch": "Epoch25", "functions": [{"args": [], "name": "stackerdb-get-config", "access": "read_only", "outputs": {"type": {"response": {"ok": {"tuple": [{"name": "chunk-size", "type": "uint128"}, {"name": "hint-replicas", "type": {"list": {"type": "none", "length": 0}}}, {"name": "max-neighbors", "type": "uint128"}, {"name": "max-writes", "type": "uint128"}, {"name": "write-freq", "type": "uint128"}]}, "error": "none"}}}}, {"args": [], "name": "stackerdb-get-signer-slots", "access": "read_only", "outputs": {"type": {"response": {"ok": {"list": {"type": {"tuple": [{"name": "num-slots", "type": "uint128"}, {"name": "signer", "type": "principal"}]}, "length": 4000}}, "error": "uint128"}}}}], "variables": [], "clarity_version": "Clarity2", "fungible_tokens": [], "non_fungible_tokens": []}, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}, {"txid": "0x1b946e60d88a1349baa40e5228af7f736ccc8a73fed1f9e111d897e67d4e637c", "raw_tx": "0x8000000000040000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003020000000006020b7369676e6572732d302d39000001603b3b204120537461636b6572444220666f722061207370656369666963206d657373616765207479706520666f72207369676e65722073657420302e0a3b3b2054686520636f6e7472616374206e616d6520696e64696361746573207768696368202d2d206974206861732074686520666f726d20607369676e6572732d302d7b3a6d6573736167655f69647d602e0a0a28646566696e652d726561642d6f6e6c792028737461636b657264622d6765742d7369676e65722d736c6f7473290a2020202028636f6e74726163742d63616c6c3f202e7369676e65727320737461636b657264622d6765742d7369676e65722d736c6f74732d7061676520753029290a0a28646566696e652d726561642d6f6e6c792028737461636b657264622d6765742d636f6e666967290a2020202028636f6e74726163742d63616c6c3f202e7369676e65727320737461636b657264622d6765742d636f6e66696729290a", "status": "success", "tx_index": 11, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": {"maps": [], "epoch": "Epoch25", "functions": [{"args": [], "name": "stackerdb-get-config", "access": "read_only", "outputs": {"type": {"response": {"ok": {"tuple": [{"name": "chunk-size", "type": "uint128"}, {"name": "hint-replicas", "type": {"list": {"type": "none", "length": 0}}}, {"name": "max-neighbors", "type": "uint128"}, {"name": "max-writes", "type": "uint128"}, {"name": "write-freq", "type": "uint128"}]}, "error": "none"}}}}, {"args": [], "name": "stackerdb-get-signer-slots", "access": "read_only", "outputs": {"type": {"response": {"ok": {"list": {"type": {"tuple": [{"name": "num-slots", "type": "uint128"}, {"name": "signer", "type": "principal"}]}, "length": 4000}}, "error": "uint128"}}}}], "variables": [], "clarity_version": "Clarity2", "fungible_tokens": [], "non_fungible_tokens": []}, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}, {"txid": "0x6646f12c45588e4faf0b03a2b242b6b1d7181fab3aa09aa21ce44fda3ec72184", "raw_tx": "0x8000000000040000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003020000000006020c7369676e6572732d302d3130000001603b3b204120537461636b6572444220666f722061207370656369666963206d657373616765207479706520666f72207369676e65722073657420302e0a3b3b2054686520636f6e7472616374206e616d6520696e64696361746573207768696368202d2d206974206861732074686520666f726d20607369676e6572732d302d7b3a6d6573736167655f69647d602e0a0a28646566696e652d726561642d6f6e6c792028737461636b657264622d6765742d7369676e65722d736c6f7473290a2020202028636f6e74726163742d63616c6c3f202e7369676e65727320737461636b657264622d6765742d7369676e65722d736c6f74732d7061676520753029290a0a28646566696e652d726561642d6f6e6c792028737461636b657264622d6765742d636f6e666967290a2020202028636f6e74726163742d63616c6c3f202e7369676e65727320737461636b657264622d6765742d636f6e66696729290a", "status": "success", "tx_index": 12, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": {"maps": [], "epoch": "Epoch25", "functions": [{"args": [], "name": "stackerdb-get-config", "access": "read_only", "outputs": {"type": {"response": {"ok": {"tuple": [{"name": "chunk-size", "type": "uint128"}, {"name": "hint-replicas", "type": {"list": {"type": "none", "length": 0}}}, {"name": "max-neighbors", "type": "uint128"}, {"name": "max-writes", "type": "uint128"}, {"name": "write-freq", "type": "uint128"}]}, "error": "none"}}}}, {"args": [], "name": "stackerdb-get-signer-slots", "access": "read_only", "outputs": {"type": {"response": {"ok": {"list": {"type": {"tuple": [{"name": "num-slots", "type": "uint128"}, {"name": "signer", "type": "principal"}]}, "length": 4000}}, "error": "uint128"}}}}], "variables": [], "clarity_version": "Clarity2", "fungible_tokens": [], "non_fungible_tokens": []}, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}, {"txid": "0x3c0a27dab4657d593339b1df3b15f435c5ed2ae8d9f0fc5c5a5b16f50391a9b4", "raw_tx": "0x8000000000040000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003020000000006020c7369676e6572732d302d3131000001603b3b204120537461636b6572444220666f722061207370656369666963206d657373616765207479706520666f72207369676e65722073657420302e0a3b3b2054686520636f6e7472616374206e616d6520696e64696361746573207768696368202d2d206974206861732074686520666f726d20607369676e6572732d302d7b3a6d6573736167655f69647d602e0a0a28646566696e652d726561642d6f6e6c792028737461636b657264622d6765742d7369676e65722d736c6f7473290a2020202028636f6e74726163742d63616c6c3f202e7369676e65727320737461636b657264622d6765742d7369676e65722d736c6f74732d7061676520753029290a0a28646566696e652d726561642d6f6e6c792028737461636b657264622d6765742d636f6e666967290a2020202028636f6e74726163742d63616c6c3f202e7369676e65727320737461636b657264622d6765742d636f6e66696729290a", "status": "success", "tx_index": 13, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": {"maps": [], "epoch": "Epoch25", "functions": [{"args": [], "name": "stackerdb-get-config", "access": "read_only", "outputs": {"type": {"response": {"ok": {"tuple": [{"name": "chunk-size", "type": "uint128"}, {"name": "hint-replicas", "type": {"list": {"type": "none", "length": 0}}}, {"name": "max-neighbors", "type": "uint128"}, {"name": "max-writes", "type": "uint128"}, {"name": "write-freq", "type": "uint128"}]}, "error": "none"}}}}, {"args": [], "name": "stackerdb-get-signer-slots", "access": "read_only", "outputs": {"type": {"response": {"ok": {"list": {"type": {"tuple": [{"name": "num-slots", "type": "uint128"}, {"name": "signer", "type": "principal"}]}, "length": 4000}}, "error": "uint128"}}}}], "variables": [], "clarity_version": "Clarity2", "fungible_tokens": [], "non_fungible_tokens": []}, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}, {"txid": "0x0bafb0d90af4238a2ecf339e75b08963743e40313ce4a810b4e810cbc2b3df5d", "raw_tx": "0x8000000000040000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003020000000006020b7369676e6572732d312d30000001603b3b204120537461636b6572444220666f722061207370656369666963206d657373616765207479706520666f72207369676e65722073657420312e0a3b3b2054686520636f6e7472616374206e616d6520696e64696361746573207768696368202d2d206974206861732074686520666f726d20607369676e6572732d312d7b3a6d6573736167655f69647d602e0a0a28646566696e652d726561642d6f6e6c792028737461636b657264622d6765742d7369676e65722d736c6f7473290a2020202028636f6e74726163742d63616c6c3f202e7369676e65727320737461636b657264622d6765742d7369676e65722d736c6f74732d7061676520753129290a0a28646566696e652d726561642d6f6e6c792028737461636b657264622d6765742d636f6e666967290a2020202028636f6e74726163742d63616c6c3f202e7369676e65727320737461636b657264622d6765742d636f6e66696729290a", "status": "success", "tx_index": 14, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": {"maps": [], "epoch": "Epoch25", "functions": [{"args": [], "name": "stackerdb-get-config", "access": "read_only", "outputs": {"type": {"response": {"ok": {"tuple": [{"name": "chunk-size", "type": "uint128"}, {"name": "hint-replicas", "type": {"list": {"type": "none", "length": 0}}}, {"name": "max-neighbors", "type": "uint128"}, {"name": "max-writes", "type": "uint128"}, {"name": "write-freq", "type": "uint128"}]}, "error": "none"}}}}, {"args": [], "name": "stackerdb-get-signer-slots", "access": "read_only", "outputs": {"type": {"response": {"ok": {"list": {"type": {"tuple": [{"name": "num-slots", "type": "uint128"}, {"name": "signer", "type": "principal"}]}, "length": 4000}}, "error": "uint128"}}}}], "variables": [], "clarity_version": "Clarity2", "fungible_tokens": [], "non_fungible_tokens": []}, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}, {"txid": "0x760fcb4245bde60a74f9d98b7e5b396f82aaec4adbd7401f26d905d9ee931b8f", "raw_tx": "0x8000000000040000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003020000000006020b7369676e6572732d312d31000001603b3b204120537461636b6572444220666f722061207370656369666963206d657373616765207479706520666f72207369676e65722073657420312e0a3b3b2054686520636f6e7472616374206e616d6520696e64696361746573207768696368202d2d206974206861732074686520666f726d20607369676e6572732d312d7b3a6d6573736167655f69647d602e0a0a28646566696e652d726561642d6f6e6c792028737461636b657264622d6765742d7369676e65722d736c6f7473290a2020202028636f6e74726163742d63616c6c3f202e7369676e65727320737461636b657264622d6765742d7369676e65722d736c6f74732d7061676520753129290a0a28646566696e652d726561642d6f6e6c792028737461636b657264622d6765742d636f6e666967290a2020202028636f6e74726163742d63616c6c3f202e7369676e65727320737461636b657264622d6765742d636f6e66696729290a", "status": "success", "tx_index": 15, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": {"maps": [], "epoch": "Epoch25", "functions": [{"args": [], "name": "stackerdb-get-config", "access": "read_only", "outputs": {"type": {"response": {"ok": {"tuple": [{"name": "chunk-size", "type": "uint128"}, {"name": "hint-replicas", "type": {"list": {"type": "none", "length": 0}}}, {"name": "max-neighbors", "type": "uint128"}, {"name": "max-writes", "type": "uint128"}, {"name": "write-freq", "type": "uint128"}]}, "error": "none"}}}}, {"args": [], "name": "stackerdb-get-signer-slots", "access": "read_only", "outputs": {"type": {"response": {"ok": {"list": {"type": {"tuple": [{"name": "num-slots", "type": "uint128"}, {"name": "signer", "type": "principal"}]}, "length": 4000}}, "error": "uint128"}}}}], "variables": [], "clarity_version": "Clarity2", "fungible_tokens": [], "non_fungible_tokens": []}, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}, {"txid": "0x4be95c5d8eb8e6bac2ccdf3d3cdcdc1434c7df1dca5848ba6b91297d6acdfbb6", "raw_tx": "0x8000000000040000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003020000000006020b7369676e6572732d312d32000001603b3b204120537461636b6572444220666f722061207370656369666963206d657373616765207479706520666f72207369676e65722073657420312e0a3b3b2054686520636f6e7472616374206e616d6520696e64696361746573207768696368202d2d206974206861732074686520666f726d20607369676e6572732d312d7b3a6d6573736167655f69647d602e0a0a28646566696e652d726561642d6f6e6c792028737461636b657264622d6765742d7369676e65722d736c6f7473290a2020202028636f6e74726163742d63616c6c3f202e7369676e65727320737461636b657264622d6765742d7369676e65722d736c6f74732d7061676520753129290a0a28646566696e652d726561642d6f6e6c792028737461636b657264622d6765742d636f6e666967290a2020202028636f6e74726163742d63616c6c3f202e7369676e65727320737461636b657264622d6765742d636f6e66696729290a", "status": "success", "tx_index": 16, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": {"maps": [], "epoch": "Epoch25", "functions": [{"args": [], "name": "stackerdb-get-config", "access": "read_only", "outputs": {"type": {"response": {"ok": {"tuple": [{"name": "chunk-size", "type": "uint128"}, {"name": "hint-replicas", "type": {"list": {"type": "none", "length": 0}}}, {"name": "max-neighbors", "type": "uint128"}, {"name": "max-writes", "type": "uint128"}, {"name": "write-freq", "type": "uint128"}]}, "error": "none"}}}}, {"args": [], "name": "stackerdb-get-signer-slots", "access": "read_only", "outputs": {"type": {"response": {"ok": {"list": {"type": {"tuple": [{"name": "num-slots", "type": "uint128"}, {"name": "signer", "type": "principal"}]}, "length": 4000}}, "error": "uint128"}}}}], "variables": [], "clarity_version": "Clarity2", "fungible_tokens": [], "non_fungible_tokens": []}, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}, {"txid": "0x2b5e80cc5ea7a7a9a9ff4d06e4bf281fb2128ce7d434c08bc75c36d8c793f495", "raw_tx": "0x8000000000040000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003020000000006020b7369676e6572732d312d33000001603b3b204120537461636b6572444220666f722061207370656369666963206d657373616765207479706520666f72207369676e65722073657420312e0a3b3b2054686520636f6e7472616374206e616d6520696e64696361746573207768696368202d2d206974206861732074686520666f726d20607369676e6572732d312d7b3a6d6573736167655f69647d602e0a0a28646566696e652d726561642d6f6e6c792028737461636b657264622d6765742d7369676e65722d736c6f7473290a2020202028636f6e74726163742d63616c6c3f202e7369676e65727320737461636b657264622d6765742d7369676e65722d736c6f74732d7061676520753129290a0a28646566696e652d726561642d6f6e6c792028737461636b657264622d6765742d636f6e666967290a2020202028636f6e74726163742d63616c6c3f202e7369676e65727320737461636b657264622d6765742d636f6e66696729290a", "status": "success", "tx_index": 17, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": {"maps": [], "epoch": "Epoch25", "functions": [{"args": [], "name": "stackerdb-get-config", "access": "read_only", "outputs": {"type": {"response": {"ok": {"tuple": [{"name": "chunk-size", "type": "uint128"}, {"name": "hint-replicas", "type": {"list": {"type": "none", "length": 0}}}, {"name": "max-neighbors", "type": "uint128"}, {"name": "max-writes", "type": "uint128"}, {"name": "write-freq", "type": "uint128"}]}, "error": "none"}}}}, {"args": [], "name": "stackerdb-get-signer-slots", "access": "read_only", "outputs": {"type": {"response": {"ok": {"list": {"type": {"tuple": [{"name": "num-slots", "type": "uint128"}, {"name": "signer", "type": "principal"}]}, "length": 4000}}, "error": "uint128"}}}}], "variables": [], "clarity_version": "Clarity2", "fungible_tokens": [], "non_fungible_tokens": []}, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}, {"txid": "0x2769205297d7f872a4a28abcf605e329c225847455e5dc9a3623465625f5a3b7", "raw_tx": "0x8000000000040000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003020000000006020b7369676e6572732d312d34000001603b3b204120537461636b6572444220666f722061207370656369666963206d657373616765207479706520666f72207369676e65722073657420312e0a3b3b2054686520636f6e7472616374206e616d6520696e64696361746573207768696368202d2d206974206861732074686520666f726d20607369676e6572732d312d7b3a6d6573736167655f69647d602e0a0a28646566696e652d726561642d6f6e6c792028737461636b657264622d6765742d7369676e65722d736c6f7473290a2020202028636f6e74726163742d63616c6c3f202e7369676e65727320737461636b657264622d6765742d7369676e65722d736c6f74732d7061676520753129290a0a28646566696e652d726561642d6f6e6c792028737461636b657264622d6765742d636f6e666967290a2020202028636f6e74726163742d63616c6c3f202e7369676e65727320737461636b657264622d6765742d636f6e66696729290a", "status": "success", "tx_index": 18, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": {"maps": [], "epoch": "Epoch25", "functions": [{"args": [], "name": "stackerdb-get-config", "access": "read_only", "outputs": {"type": {"response": {"ok": {"tuple": [{"name": "chunk-size", "type": "uint128"}, {"name": "hint-replicas", "type": {"list": {"type": "none", "length": 0}}}, {"name": "max-neighbors", "type": "uint128"}, {"name": "max-writes", "type": "uint128"}, {"name": "write-freq", "type": "uint128"}]}, "error": "none"}}}}, {"args": [], "name": "stackerdb-get-signer-slots", "access": "read_only", "outputs": {"type": {"response": {"ok": {"list": {"type": {"tuple": [{"name": "num-slots", "type": "uint128"}, {"name": "signer", "type": "principal"}]}, "length": 4000}}, "error": "uint128"}}}}], "variables": [], "clarity_version": "Clarity2", "fungible_tokens": [], "non_fungible_tokens": []}, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}, {"txid": "0x7f2e393ac9bb1c36dabd3678eb8c159ee4e30a6efb6405315314931772c3e595", "raw_tx": "0x8000000000040000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003020000000006020b7369676e6572732d312d35000001603b3b204120537461636b6572444220666f722061207370656369666963206d657373616765207479706520666f72207369676e65722073657420312e0a3b3b2054686520636f6e7472616374206e616d6520696e64696361746573207768696368202d2d206974206861732074686520666f726d20607369676e6572732d312d7b3a6d6573736167655f69647d602e0a0a28646566696e652d726561642d6f6e6c792028737461636b657264622d6765742d7369676e65722d736c6f7473290a2020202028636f6e74726163742d63616c6c3f202e7369676e65727320737461636b657264622d6765742d7369676e65722d736c6f74732d7061676520753129290a0a28646566696e652d726561642d6f6e6c792028737461636b657264622d6765742d636f6e666967290a2020202028636f6e74726163742d63616c6c3f202e7369676e65727320737461636b657264622d6765742d636f6e66696729290a", "status": "success", "tx_index": 19, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": {"maps": [], "epoch": "Epoch25", "functions": [{"args": [], "name": "stackerdb-get-config", "access": "read_only", "outputs": {"type": {"response": {"ok": {"tuple": [{"name": "chunk-size", "type": "uint128"}, {"name": "hint-replicas", "type": {"list": {"type": "none", "length": 0}}}, {"name": "max-neighbors", "type": "uint128"}, {"name": "max-writes", "type": "uint128"}, {"name": "write-freq", "type": "uint128"}]}, "error": "none"}}}}, {"args": [], "name": "stackerdb-get-signer-slots", "access": "read_only", "outputs": {"type": {"response": {"ok": {"list": {"type": {"tuple": [{"name": "num-slots", "type": "uint128"}, {"name": "signer", "type": "principal"}]}, "length": 4000}}, "error": "uint128"}}}}], "variables": [], "clarity_version": "Clarity2", "fungible_tokens": [], "non_fungible_tokens": []}, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}, {"txid": "0x1407d3fb4f1cef802692ce4905fbbd3752aaa64c3ae7820311a150aa20575c1b", "raw_tx": "0x8000000000040000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003020000000006020b7369676e6572732d312d36000001603b3b204120537461636b6572444220666f722061207370656369666963206d657373616765207479706520666f72207369676e65722073657420312e0a3b3b2054686520636f6e7472616374206e616d6520696e64696361746573207768696368202d2d206974206861732074686520666f726d20607369676e6572732d312d7b3a6d6573736167655f69647d602e0a0a28646566696e652d726561642d6f6e6c792028737461636b657264622d6765742d7369676e65722d736c6f7473290a2020202028636f6e74726163742d63616c6c3f202e7369676e65727320737461636b657264622d6765742d7369676e65722d736c6f74732d7061676520753129290a0a28646566696e652d726561642d6f6e6c792028737461636b657264622d6765742d636f6e666967290a2020202028636f6e74726163742d63616c6c3f202e7369676e65727320737461636b657264622d6765742d636f6e66696729290a", "status": "success", "tx_index": 20, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": {"maps": [], "epoch": "Epoch25", "functions": [{"args": [], "name": "stackerdb-get-config", "access": "read_only", "outputs": {"type": {"response": {"ok": {"tuple": [{"name": "chunk-size", "type": "uint128"}, {"name": "hint-replicas", "type": {"list": {"type": "none", "length": 0}}}, {"name": "max-neighbors", "type": "uint128"}, {"name": "max-writes", "type": "uint128"}, {"name": "write-freq", "type": "uint128"}]}, "error": "none"}}}}, {"args": [], "name": "stackerdb-get-signer-slots", "access": "read_only", "outputs": {"type": {"response": {"ok": {"list": {"type": {"tuple": [{"name": "num-slots", "type": "uint128"}, {"name": "signer", "type": "principal"}]}, "length": 4000}}, "error": "uint128"}}}}], "variables": [], "clarity_version": "Clarity2", "fungible_tokens": [], "non_fungible_tokens": []}, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}, {"txid": "0x9c9c9037f0628dd2f7020e22cdaa0d5726f18752f93e5e56ed6797e51a961b0a", "raw_tx": "0x8000000000040000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003020000000006020b7369676e6572732d312d37000001603b3b204120537461636b6572444220666f722061207370656369666963206d657373616765207479706520666f72207369676e65722073657420312e0a3b3b2054686520636f6e7472616374206e616d6520696e64696361746573207768696368202d2d206974206861732074686520666f726d20607369676e6572732d312d7b3a6d6573736167655f69647d602e0a0a28646566696e652d726561642d6f6e6c792028737461636b657264622d6765742d7369676e65722d736c6f7473290a2020202028636f6e74726163742d63616c6c3f202e7369676e65727320737461636b657264622d6765742d7369676e65722d736c6f74732d7061676520753129290a0a28646566696e652d726561642d6f6e6c792028737461636b657264622d6765742d636f6e666967290a2020202028636f6e74726163742d63616c6c3f202e7369676e65727320737461636b657264622d6765742d636f6e66696729290a", "status": "success", "tx_index": 21, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": {"maps": [], "epoch": "Epoch25", "functions": [{"args": [], "name": "stackerdb-get-config", "access": "read_only", "outputs": {"type": {"response": {"ok": {"tuple": [{"name": "chunk-size", "type": "uint128"}, {"name": "hint-replicas", "type": {"list": {"type": "none", "length": 0}}}, {"name": "max-neighbors", "type": "uint128"}, {"name": "max-writes", "type": "uint128"}, {"name": "write-freq", "type": "uint128"}]}, "error": "none"}}}}, {"args": [], "name": "stackerdb-get-signer-slots", "access": "read_only", "outputs": {"type": {"response": {"ok": {"list": {"type": {"tuple": [{"name": "num-slots", "type": "uint128"}, {"name": "signer", "type": "principal"}]}, "length": 4000}}, "error": "uint128"}}}}], "variables": [], "clarity_version": "Clarity2", "fungible_tokens": [], "non_fungible_tokens": []}, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}, {"txid": "0xf9a0d7a005e5a962ca578a534c6d8f4880d1fb5f4bb3569189cd94ef928ea4bb", "raw_tx": "0x8000000000040000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003020000000006020b7369676e6572732d312d38000001603b3b204120537461636b6572444220666f722061207370656369666963206d657373616765207479706520666f72207369676e65722073657420312e0a3b3b2054686520636f6e7472616374206e616d6520696e64696361746573207768696368202d2d206974206861732074686520666f726d20607369676e6572732d312d7b3a6d6573736167655f69647d602e0a0a28646566696e652d726561642d6f6e6c792028737461636b657264622d6765742d7369676e65722d736c6f7473290a2020202028636f6e74726163742d63616c6c3f202e7369676e65727320737461636b657264622d6765742d7369676e65722d736c6f74732d7061676520753129290a0a28646566696e652d726561642d6f6e6c792028737461636b657264622d6765742d636f6e666967290a2020202028636f6e74726163742d63616c6c3f202e7369676e65727320737461636b657264622d6765742d636f6e66696729290a", "status": "success", "tx_index": 22, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": {"maps": [], "epoch": "Epoch25", "functions": [{"args": [], "name": "stackerdb-get-config", "access": "read_only", "outputs": {"type": {"response": {"ok": {"tuple": [{"name": "chunk-size", "type": "uint128"}, {"name": "hint-replicas", "type": {"list": {"type": "none", "length": 0}}}, {"name": "max-neighbors", "type": "uint128"}, {"name": "max-writes", "type": "uint128"}, {"name": "write-freq", "type": "uint128"}]}, "error": "none"}}}}, {"args": [], "name": "stackerdb-get-signer-slots", "access": "read_only", "outputs": {"type": {"response": {"ok": {"list": {"type": {"tuple": [{"name": "num-slots", "type": "uint128"}, {"name": "signer", "type": "principal"}]}, "length": 4000}}, "error": "uint128"}}}}], "variables": [], "clarity_version": "Clarity2", "fungible_tokens": [], "non_fungible_tokens": []}, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}, {"txid": "0x5f477dbc0f2d451fa98fa5539b1ac279161f95f6db0584cb9473820fbe66a1a9", "raw_tx": "0x8000000000040000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003020000000006020b7369676e6572732d312d39000001603b3b204120537461636b6572444220666f722061207370656369666963206d657373616765207479706520666f72207369676e65722073657420312e0a3b3b2054686520636f6e7472616374206e616d6520696e64696361746573207768696368202d2d206974206861732074686520666f726d20607369676e6572732d312d7b3a6d6573736167655f69647d602e0a0a28646566696e652d726561642d6f6e6c792028737461636b657264622d6765742d7369676e65722d736c6f7473290a2020202028636f6e74726163742d63616c6c3f202e7369676e65727320737461636b657264622d6765742d7369676e65722d736c6f74732d7061676520753129290a0a28646566696e652d726561642d6f6e6c792028737461636b657264622d6765742d636f6e666967290a2020202028636f6e74726163742d63616c6c3f202e7369676e65727320737461636b657264622d6765742d636f6e66696729290a", "status": "success", "tx_index": 23, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": {"maps": [], "epoch": "Epoch25", "functions": [{"args": [], "name": "stackerdb-get-config", "access": "read_only", "outputs": {"type": {"response": {"ok": {"tuple": [{"name": "chunk-size", "type": "uint128"}, {"name": "hint-replicas", "type": {"list": {"type": "none", "length": 0}}}, {"name": "max-neighbors", "type": "uint128"}, {"name": "max-writes", "type": "uint128"}, {"name": "write-freq", "type": "uint128"}]}, "error": "none"}}}}, {"args": [], "name": "stackerdb-get-signer-slots", "access": "read_only", "outputs": {"type": {"response": {"ok": {"list": {"type": {"tuple": [{"name": "num-slots", "type": "uint128"}, {"name": "signer", "type": "principal"}]}, "length": 4000}}, "error": "uint128"}}}}], "variables": [], "clarity_version": "Clarity2", "fungible_tokens": [], "non_fungible_tokens": []}, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}, {"txid": "0xae7a22f445f5326a2b71413947f64527ed8f39fff4f6076e133f6e07bcc5cd6c", "raw_tx": "0x8000000000040000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003020000000006020c7369676e6572732d312d3130000001603b3b204120537461636b6572444220666f722061207370656369666963206d657373616765207479706520666f72207369676e65722073657420312e0a3b3b2054686520636f6e7472616374206e616d6520696e64696361746573207768696368202d2d206974206861732074686520666f726d20607369676e6572732d312d7b3a6d6573736167655f69647d602e0a0a28646566696e652d726561642d6f6e6c792028737461636b657264622d6765742d7369676e65722d736c6f7473290a2020202028636f6e74726163742d63616c6c3f202e7369676e65727320737461636b657264622d6765742d7369676e65722d736c6f74732d7061676520753129290a0a28646566696e652d726561642d6f6e6c792028737461636b657264622d6765742d636f6e666967290a2020202028636f6e74726163742d63616c6c3f202e7369676e65727320737461636b657264622d6765742d636f6e66696729290a", "status": "success", "tx_index": 24, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": {"maps": [], "epoch": "Epoch25", "functions": [{"args": [], "name": "stackerdb-get-config", "access": "read_only", "outputs": {"type": {"response": {"ok": {"tuple": [{"name": "chunk-size", "type": "uint128"}, {"name": "hint-replicas", "type": {"list": {"type": "none", "length": 0}}}, {"name": "max-neighbors", "type": "uint128"}, {"name": "max-writes", "type": "uint128"}, {"name": "write-freq", "type": "uint128"}]}, "error": "none"}}}}, {"args": [], "name": "stackerdb-get-signer-slots", "access": "read_only", "outputs": {"type": {"response": {"ok": {"list": {"type": {"tuple": [{"name": "num-slots", "type": "uint128"}, {"name": "signer", "type": "principal"}]}, "length": 4000}}, "error": "uint128"}}}}], "variables": [], "clarity_version": "Clarity2", "fungible_tokens": [], "non_fungible_tokens": []}, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}, {"txid": "0x48b34aa3b42e761ae9a17cf47e24073afd8b158b429a6c5ea9c514d455ed6a51", "raw_tx": "0x8000000000040000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003020000000006020c7369676e6572732d312d3131000001603b3b204120537461636b6572444220666f722061207370656369666963206d657373616765207479706520666f72207369676e65722073657420312e0a3b3b2054686520636f6e7472616374206e616d6520696e64696361746573207768696368202d2d206974206861732074686520666f726d20607369676e6572732d312d7b3a6d6573736167655f69647d602e0a0a28646566696e652d726561642d6f6e6c792028737461636b657264622d6765742d7369676e65722d736c6f7473290a2020202028636f6e74726163742d63616c6c3f202e7369676e65727320737461636b657264622d6765742d7369676e65722d736c6f74732d7061676520753129290a0a28646566696e652d726561642d6f6e6c792028737461636b657264622d6765742d636f6e666967290a2020202028636f6e74726163742d63616c6c3f202e7369676e65727320737461636b657264622d6765742d636f6e66696729290a", "status": "success", "tx_index": 25, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": {"maps": [], "epoch": "Epoch25", "functions": [{"args": [], "name": "stackerdb-get-config", "access": "read_only", "outputs": {"type": {"response": {"ok": {"tuple": [{"name": "chunk-size", "type": "uint128"}, {"name": "hint-replicas", "type": {"list": {"type": "none", "length": 0}}}, {"name": "max-neighbors", "type": "uint128"}, {"name": "max-writes", "type": "uint128"}, {"name": "write-freq", "type": "uint128"}]}, "error": "none"}}}}, {"args": [], "name": "stackerdb-get-signer-slots", "access": "read_only", "outputs": {"type": {"response": {"ok": {"list": {"type": {"tuple": [{"name": "num-slots", "type": "uint128"}, {"name": "signer", "type": "principal"}]}, "length": 4000}}, "error": "uint128"}}}}], "variables": [], "clarity_version": "Clarity2", "fungible_tokens": [], "non_fungible_tokens": []}, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}, {"txid": "0x8a1a2a6c7356d7510a5582275214c3e08989e9b805bfb93ca6ee18982ac6e674", "raw_tx": "0x8000000000040000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003020000000006020e7369676e6572732d766f74696e670000241a3b3b0a3b3b2040636f6e747261637420766f74696e6720666f722074686520616767726567617465207075626c6963206b65790a3b3b0a0a3b3b206d61707320646b6720726f756e6420616e64207369676e657220746f2070726f706f73656420616767726567617465207075626c6963206b65790a28646566696e652d6d617020766f746573207b7265776172642d6379636c653a2075696e742c20726f756e643a2075696e742c207369676e65723a207072696e636970616c7d207b6167677265676174652d7075626c69632d6b65793a202862756666203333292c207369676e65722d7765696768743a2075696e747d290a3b3b206d61707320646b6720726f756e6420616e6420616767726567617465207075626c6963206b657920746f2077656967687473206f66207369676e65727320737570706f7274696e672074686973206b657920736f206661720a28646566696e652d6d61702074616c6c79207b7265776172642d6379636c653a2075696e742c20726f756e643a2075696e742c206167677265676174652d7075626c69632d6b65793a202862756666203333297d2075696e74290a3b3b206d61707320616767726567617465207075626c6963206b65797320746f2072657761726473206379636c65730a28646566696e652d6d617020757365642d6167677265676174652d7075626c69632d6b657973202862756666203333292075696e74290a0a3b3b204572726f7220636f6465730a3b3b2031202d20392061726520726573657276656420666f722075736520696e20746865202e7369676e65727320636f6e74726163742c2077686963682063616e2062652072657475726e65640a3b3b207468726f756768207468697320636f6e7472616374290a28646566696e652d636f6e7374616e74204552525f5349474e45525f494e4445585f4d49534d4154434820753130290a28646566696e652d636f6e7374616e74204552525f494e56414c49445f5349474e45525f494e44455820753131290a28646566696e652d636f6e7374616e74204552525f4f55545f4f465f564f54494e475f57494e444f5720753132290a28646566696e652d636f6e7374616e74204552525f494c4c5f464f524d45445f4147475245474154455f5055424c49435f4b455920753133290a28646566696e652d636f6e7374616e74204552525f4455504c49434154455f4147475245474154455f5055424c49435f4b455920753134290a28646566696e652d636f6e7374616e74204552525f4455504c49434154455f564f544520753135290a28646566696e652d636f6e7374616e74204552525f4641494c45445f544f5f52455452494556455f5349474e45525320753136290a28646566696e652d636f6e7374616e74204552525f494e56414c49445f524f554e4420753137290a0a28646566696e652d636f6e7374616e7420706f782d696e666f0a2020202028756e777261702d70616e69632028636f6e74726163742d63616c6c3f202e706f782d34206765742d706f782d696e666f2929290a0a3b3b205468726573686f6c6420636f6e73656e7375732c206578707265737365642061732070617274732d7065722d74686f7573616e6420746f20616c6c6f7720666f7220696e74656765720a3b3b206469766973696f6e20776974682068696768657220707265636973696f6e2028652e672e2037303020666f7220373025292e0a28646566696e652d636f6e7374616e74207468726573686f6c642d636f6e73656e7375732075373030290a0a3b3b204d617073207265776172642d6379636c652069647320746f206c61737420726f756e640a28646566696e652d6d617020726f756e64732075696e742075696e74290a0a3b3b204d617073207265776172642d6379636c652069647320746f20616767726567617465207075626c6963206b65792e0a28646566696e652d6d6170206167677265676174652d7075626c69632d6b6579732075696e7420286275666620333329290a0a3b3b204d617073207265776172642d6379636c6520696420746f2074686520746f74616c20776569676874206f66207369676e6572732e2054686973206d6170206973207573656420746f0a3b3b2063616368652074686520746f74616c20776569676874206f66207369676e65727320666f72206120676976656e20726577617264206379636c652c20736f206974206973206e6f740a3b3b206e656365737361727920746f20726563616c63756c617465206974206f6e20657665727920766f74652e0a28646566696e652d6d6170206379636c652d746f74616c2d7765696768742075696e742075696e74290a0a28646566696e652d726561642d6f6e6c7920286275726e2d6865696768742d746f2d7265776172642d6379636c6520286865696768742075696e7429290a20202020282f20282d2068656967687420286765742066697273742d6275726e636861696e2d626c6f636b2d68656967687420706f782d696e666f29292028676574207265776172642d6379636c652d6c656e67746820706f782d696e666f2929290a0a28646566696e652d726561642d6f6e6c7920287265776172642d6379636c652d746f2d6275726e2d68656967687420287265776172642d6379636c652075696e7429290a20202020282b20282a207265776172642d6379636c652028676574207265776172642d6379636c652d6c656e67746820706f782d696e666f292920286765742066697273742d6275726e636861696e2d626c6f636b2d68656967687420706f782d696e666f2929290a0a28646566696e652d726561642d6f6e6c79202863757272656e742d7265776172642d6379636c65290a20202020286275726e2d6865696768742d746f2d7265776172642d6379636c65206275726e2d626c6f636b2d68656967687429290a0a28646566696e652d726561642d6f6e6c7920286765742d6c6173742d726f756e6420287265776172642d6379636c652075696e7429290a20202020286d61702d6765743f20726f756e6473207265776172642d6379636c6529290a0a28646566696e652d726561642d6f6e6c7920286765742d766f746520287265776172642d6379636c652075696e74292028726f756e642075696e742920287369676e6572207072696e636970616c29290a20202020286d61702d6765743f20766f746573207b7265776172642d6379636c653a207265776172642d6379636c652c20726f756e643a20726f756e642c207369676e65723a207369676e65727d29290a0a28646566696e652d726561642d6f6e6c7920286765742d63616e6469646174652d696e666f20287265776172642d6379636c652075696e74292028726f756e642075696e7429202863616e6469646174652028627566662033332929290a202020207b63616e6469646174652d7765696768743a202864656661756c742d746f20753020286d61702d6765743f2074616c6c79207b7265776172642d6379636c653a207265776172642d6379636c652c20726f756e643a20726f756e642c206167677265676174652d7075626c69632d6b65793a2063616e6469646174657d29292c0a20202020746f74616c2d7765696768743a20286d61702d6765743f206379636c652d746f74616c2d776569676874207265776172642d6379636c65297d290a0a28646566696e652d726561642d6f6e6c7920286765742d74616c6c7920287265776172642d6379636c652075696e74292028726f756e642075696e742920286167677265676174652d7075626c69632d6b65792028627566662033332929290a20202020286d61702d6765743f2074616c6c79207b7265776172642d6379636c653a207265776172642d6379636c652c20726f756e643a20726f756e642c206167677265676174652d7075626c69632d6b65793a206167677265676174652d7075626c69632d6b65797d29290a0a28646566696e652d726561642d6f6e6c7920286765742d7369676e65722d77656967687420287369676e65722d696e6465782075696e742920287265776172642d6379636c652075696e7429290a20202020286c657420282864657461696c732028756e77726170212028747279212028636f6e74726163742d63616c6c3f202e7369676e657273206765742d7369676e65722d62792d696e646578207265776172642d6379636c65207369676e65722d696e64657829292028657272204552525f494e56414c49445f5349474e45525f494e444558292929290a2020202020202020286173736572747321202869732d65712028676574207369676e65722064657461696c73292074782d73656e646572292028657272204552525f5349474e45525f494e4445585f4d49534d4154434829290a2020202020202020286f6b2028676574207765696768742064657461696c73292929290a0a3b3b20616767726567617465207075626c6963206b6579206d75737420626520756e6971756520616e642063616e2062652075736564206f6e6c7920696e20612073696e676c65206379636c650a28646566696e652d726561642d6f6e6c79202869732d6e6f76656c2d6167677265676174652d7075626c69632d6b657920286b6579202862756666203333292920287265776172642d6379636c652075696e7429290a202020202869732d6571202864656661756c742d746f207265776172642d6379636c6520286d61702d6765743f20757365642d6167677265676174652d7075626c69632d6b657973206b65792929207265776172642d6379636c6529290a0a28646566696e652d726561642d6f6e6c79202869732d696e2d707265706172652d706861736520286865696768742075696e7429290a20202020283c20286d6f6420282b20282d2068656967687420286765742066697273742d6275726e636861696e2d626c6f636b2d68656967687420706f782d696e666f29290a202020202020202020202020202020202867657420707265706172652d6379636c652d6c656e67746820706f782d696e666f29290a2020202020202020202020202028676574207265776172642d6379636c652d6c656e67746820706f782d696e666f290a202020202020202020202020290a20202020202020202867657420707265706172652d6379636c652d6c656e67746820706f782d696e666f2929290a0a3b3b206765742074686520616767726567617465207075626c6963206b657920666f722074686520676976656e20726577617264206379636c6520286f72206e6f6e65290a28646566696e652d726561642d6f6e6c7920286765742d617070726f7665642d6167677265676174652d6b657920287265776172642d6379636c652075696e7429290a20202020286d61702d6765743f206167677265676174652d7075626c69632d6b657973207265776172642d6379636c6529290a0a28646566696e652d70726976617465202869732d696e2d766f74696e672d77696e646f7720286865696768742075696e742920287265776172642d6379636c652075696e7429290a20202020286c65742028286c6173742d6379636c652028756e777261702d70616e69632028636f6e74726163742d63616c6c3f202e7369676e657273206765742d6c6173742d7365742d6379636c65292929290a202020202020202028616e64202869732d6571206c6173742d6379636c65207265776172642d6379636c65290a2020202020202020202020202869732d696e2d707265706172652d706861736520686569676874292929290a0a28646566696e652d70726976617465202873756d2d7765696768747320287369676e6572207b207369676e65723a207072696e636970616c2c207765696768743a2075696e74207d2920286163632075696e7429290a20202020282b20616363202867657420776569676874207369676e65722929290a0a28646566696e652d7072697661746520286765742d616e642d63616368652d746f74616c2d77656967687420287265776172642d6379636c652075696e7429290a20202020286d6174636820286d61702d6765743f206379636c652d746f74616c2d776569676874207265776172642d6379636c65290a2020202020202020746f74616c20286f6b20746f74616c290a2020202020202020286c65742028287369676e6572732028756e77726170212028636f6e74726163742d63616c6c3f202e7369676e657273206765742d7369676e657273207265776172642d6379636c65292028657272204552525f4641494c45445f544f5f52455452494556455f5349474e4552532929290a2020202020202020202020202020202028746f74616c2028666f6c642073756d2d77656967687473207369676e6572732075302929290a202020202020202020202020286d61702d736574206379636c652d746f74616c2d776569676874207265776172642d6379636c6520746f74616c290a202020202020202020202020286f6b20746f74616c292929290a0a3b3b2049662074686520726f756e64206973206e6f74207365742c206f7220746865206e657720726f756e642069732067726561746572207468616e20746865206c61737420726f756e642c0a3b3b2075706461746520746865206c61737420726f756e642e0a3b3b2052657475726e733a0a3b3b20202a2060286f6b2074727565296020696620746869732069732074686520666972737420726f756e6420666f722074686520726577617264206379636c650a3b3b20202a2060286f6b2066616c7365296020696620746869732069732061206e6577206c61737420726f756e6420666f722074686520726577617264206379636c650a3b3b20202a206028657272204552525f494e56414c49445f524f554e4429602069662074686520726f756e6420697320696e6372656d656e746564206279206d6f7265207468616e20310a28646566696e652d7072697661746520287570646174652d6c6173742d726f756e6420287265776172642d6379636c652075696e74292028726f756e642075696e7429290a20202020286f6b20286d6174636820286d61702d6765743f20726f756e6473207265776172642d6379636c65290a20202020202020206c6173742d726f756e642028626567696e0a20202020202020202020202028617373657274732120283c3d20726f756e6420282b206c6173742d726f756e6420753129292028657272204552525f494e56414c49445f524f554e4429290a20202020202020202020202028696620283e20726f756e64206c6173742d726f756e642920286d61702d73657420726f756e6473207265776172642d6379636c6520726f756e64292066616c736529290a2020202020202020286d61702d73657420726f756e6473207265776172642d6379636c6520726f756e64292929290a0a3b3b205369676e657220766f746520666f722074686520616767726567617465207075626c6963206b6579206f6620746865206e65787420726577617264206379636c650a3b3b202045616368207369676e657220766f74657320666f722074686520616767726567617465207075626c6963206b657920666f7220746865206e65787420726577617264206379636c652e0a3b3b20205468697320766f7465206d7573742068617070656e20616674657220746865206c697374206f66207369676e65727320686173206265656e2073657420627920746865206e6f64652c0a3b3b20207768696368206f636375727320696e2074686520666972737420626c6f636b206f662074686520707265706172652070686173652e2054686520766f746520697320636f6e636c756465640a3b3b20207768656e20746865207468726573686f6c64206f6620607468726573686f6c642d636f6e73656e737573202f203130303060206973207265616368656420666f7220610a3b3b2020737065636966696320616767726567617465207075626c6963206b65792e2054686520766f74652069732077656967687465642062792074686520616d6f756e74206f660a3b3b202072657761726420736c6f7473207468617420746865207369676e657220636f6e74726f6c7320696e20746865206e65787420726577617264206379636c652e2054686520766f74650a3b3b20206d61792072657175697265206d756c7469706c6520726f756e647320746f20726561636820636f6e73656e7375732c20627574206f6e636520636f6e73656e7375732069730a3b3b2020726561636865642c206c6174657220726f756e64732077696c6c2062652069676e6f7265642e0a3b3b0a3b3b2020417267756d656e74733a0a3b3b2020202a207369676e65722d696e6465783a2074686520696e646578206f66207468652063616c6c696e67207369676e657220696e20746865207369676e657220736574202866726f6d0a3b3b2020202020606765742d7369676e6572736020696e20746865202e7369676e65727320636f6e7472616374290a3b3b2020202a206b65793a2074686520616767726567617465207075626c6963206b65792074686174207468697320766f746520697320696e20737570706f7274206f660a3b3b2020202a20726f756e643a2074686520766f74696e6720726f756e6420666f72207768696368207468697320766f746520697320696e74656e6465640a3b3b2020202a207265776172642d6379636c653a2074686520726577617264206379636c6520666f72207768696368207468697320766f746520697320696e74656e6465640a3b3b202052657475726e733a0a3b3b2020202a2060286f6b207472756529602069662074686520766f746520776173207375636365737366756c0a3b3b2020202a206028657272203c636f64653e29602069662074686520766f746520776173206e6f74207375636365737366756c2028736565206572726f72732061626f7665290a28646566696e652d7075626c69632028766f74652d666f722d6167677265676174652d7075626c69632d6b657920287369676e65722d696e6465782075696e742920286b657920286275666620333329292028726f756e642075696e742920287265776172642d6379636c652075696e7429290a20202020286c657420282874616c6c792d6b6579207b7265776172642d6379636c653a207265776172642d6379636c652c20726f756e643a20726f756e642c206167677265676174652d7075626c69632d6b65793a206b65797d290a2020202020202020202020203b3b20766f7465206279207369676e6572207765696768740a202020202020202020202020287369676e65722d77656967687420287472792120286765742d7369676e65722d776569676874207369676e65722d696e646578207265776172642d6379636c652929290a202020202020202020202020286e65772d746f74616c20282b207369676e65722d776569676874202864656661756c742d746f20753020286d61702d6765743f2074616c6c792074616c6c792d6b6579292929290a20202020202020202020202028746f74616c2d77656967687420287472792120286765742d616e642d63616368652d746f74616c2d776569676874207265776172642d6379636c65292929290a20202020202020203b3b20436865636b207468617420746865206b657920686173206e6f7420796574206265656e2073657420666f72207468697320726577617264206379636c650a2020202020202020286173736572747321202869732d6e6f6e6520286d61702d6765743f206167677265676174652d7075626c69632d6b657973207265776172642d6379636c6529292028657272204552525f4f55545f4f465f564f54494e475f57494e444f5729290a20202020202020203b3b20436865636b20746861742074686520616767726567617465207075626c6963206b65792069732074686520636f7272656374206c656e6774680a2020202020202020286173736572747321202869732d657120286c656e206b65792920753333292028657272204552525f494c4c5f464f524d45445f4147475245474154455f5055424c49435f4b455929290a20202020202020203b3b20436865636b207468617420616767726567617465207075626c6963206b657920686173206e6f74206265656e207573656420696e20612070726576696f757320726577617264206379636c650a2020202020202020286173736572747321202869732d6e6f76656c2d6167677265676174652d7075626c69632d6b6579206b6579207265776172642d6379636c65292028657272204552525f4455504c49434154455f4147475245474154455f5055424c49435f4b455929290a20202020202020203b3b20436865636b2074686174207369676e6572206861736e277420766f74656420696e2074686973207265776172642d6379636c65202620726f756e640a202020202020202028617373657274732120286d61702d696e7365727420766f746573207b7265776172642d6379636c653a207265776172642d6379636c652c20726f756e643a20726f756e642c207369676e65723a2074782d73656e6465727d207b6167677265676174652d7075626c69632d6b65793a206b65792c207369676e65722d7765696768743a207369676e65722d7765696768747d292028657272204552525f4455504c49434154455f564f544529290a20202020202020203b3b20436865636b20746861742074686520726f756e6420697320696e6372656d656e746564206279206174206d6f737420310a2020202020202020287472792120287570646174652d6c6173742d726f756e64207265776172642d6379636c6520726f756e6429290a20202020202020203b3b20557064617465207468652074616c6c7920666f72207468697320616767726567617465207075626c6963206b65792063616e6469646174650a2020202020202020286d61702d7365742074616c6c792074616c6c792d6b6579206e65772d746f74616c290a20202020202020203b3b20557064617465207573656420616767726567617465207075626c6963206b6579730a2020202020202020286d61702d73657420757365642d6167677265676174652d7075626c69632d6b657973206b6579207265776172642d6379636c65290a2020202020202020287072696e74207b0a2020202020202020202020206576656e743a2022766f746564222c0a2020202020202020202020207369676e65723a2074782d73656e6465722c0a2020202020202020202020207265776172642d6379636c653a207265776172642d6379636c652c0a202020202020202020202020726f756e643a20726f756e642c0a2020202020202020202020206b65793a206b65792c0a2020202020202020202020206e65772d746f74616c3a206e65772d746f74616c2c0a20202020202020207d290a20202020202020203b3b20496620746865206e657720746f74616c207765696768742069732067726561746572207468616e206f7220657175616c20746f20746865207468726573686f6c6420636f6e73656e7375730a202020202020202028696620283e3d20282f20282a206e65772d746f74616c2075313030302920746f74616c2d77656967687429207468726573686f6c642d636f6e73656e737573290a2020202020202020202020203b3b2053617665207468697320617070726f76656420616767726567617465207075626c6963206b657920666f72207468697320726577617264206379636c652e0a2020202020202020202020203b3b204966207468657265206973206e6f7420616c72656164792061206b657920666f722074686973206379636c652c2074686520696e736572742077696c6c0a2020202020202020202020203b3b2072657475726e207472756520616e6420616e206576656e742077696c6c20626520637265617465642e0a20202020202020202020202028696620286d61702d696e73657274206167677265676174652d7075626c69632d6b657973207265776172642d6379636c65206b6579290a2020202020202020202020202020202028626567696e0a20202020202020202020202020202020202020203b3b2043726561746520616e206576656e7420666f722074686520617070726f76656420616767726567617465207075626c6963206b65790a2020202020202020202020202020202020202020287072696e74207b0a2020202020202020202020202020202020202020202020206576656e743a2022617070726f7665642d6167677265676174652d7075626c69632d6b6579222c0a2020202020202020202020202020202020202020202020207265776172642d6379636c653a207265776172642d6379636c652c0a202020202020202020202020202020202020202020202020726f756e643a20726f756e642c0a2020202020202020202020202020202020202020202020206b65793a206b65792c0a20202020202020202020202020202020202020207d290a202020202020202020202020202020202020202074727565290a2020202020202020202020202020202066616c73650a202020202020202020202020290a20202020202020202020202066616c73650a2020202020202020290a2020202020202020286f6b20747275652929290a", "status": "success", "tx_index": 26, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": {"maps": [{"key": "uint128", "name": "aggregate-public-keys", "value": {"buffer": {"length": 33}}}, {"key": "uint128", "name": "cycle-total-weight", "value": "uint128"}, {"key": "uint128", "name": "rounds", "value": "uint128"}, {"key": {"tuple": [{"name": "aggregate-public-key", "type": {"buffer": {"length": 33}}}, {"name": "reward-cycle", "type": "uint128"}, {"name": "round", "type": "uint128"}]}, "name": "tally", "value": "uint128"}, {"key": {"buffer": {"length": 33}}, "name": "used-aggregate-public-keys", "value": "uint128"}, {"key": {"tuple": [{"name": "reward-cycle", "type": "uint128"}, {"name": "round", "type": "uint128"}, {"name": "signer", "type": "principal"}]}, "name": "votes", "value": {"tuple": [{"name": "aggregate-public-key", "type": {"buffer": {"length": 33}}}, {"name": "signer-weight", "type": "uint128"}]}}], "epoch": "Epoch25", "functions": [{"args": [{"name": "reward-cycle", "type": "uint128"}], "name": "get-and-cache-total-weight", "access": "private", "outputs": {"type": {"response": {"ok": "uint128", "error": "uint128"}}}}, {"args": [{"name": "height", "type": "uint128"}, {"name": "reward-cycle", "type": "uint128"}], "name": "is-in-voting-window", "access": "private", "outputs": {"type": "bool"}}, {"args": [{"name": "signer", "type": {"tuple": [{"name": "signer", "type": "principal"}, {"name": "weight", "type": "uint128"}]}}, {"name": "acc", "type": "uint128"}], "name": "sum-weights", "access": "private", "outputs": {"type": "uint128"}}, {"args": [{"name": "reward-cycle", "type": "uint128"}, {"name": "round", "type": "uint128"}], "name": "update-last-round", "access": "private", "outputs": {"type": {"response": {"ok": "bool", "error": "uint128"}}}}, {"args": [{"name": "signer-index", "type": "uint128"}, {"name": "key", "type": {"buffer": {"length": 33}}}, {"name": "round", "type": "uint128"}, {"name": "reward-cycle", "type": "uint128"}], "name": "vote-for-aggregate-public-key", "access": "public", "outputs": {"type": {"response": {"ok": "bool", "error": "uint128"}}}}, {"args": [{"name": "height", "type": "uint128"}], "name": "burn-height-to-reward-cycle", "access": "read_only", "outputs": {"type": "uint128"}}, {"args": [], "name": "current-reward-cycle", "access": "read_only", "outputs": {"type": "uint128"}}, {"args": [{"name": "reward-cycle", "type": "uint128"}], "name": "get-approved-aggregate-key", "access": "read_only", "outputs": {"type": {"optional": {"buffer": {"length": 33}}}}}, {"args": [{"name": "reward-cycle", "type": "uint128"}, {"name": "round", "type": "uint128"}, {"name": "candidate", "type": {"buffer": {"length": 33}}}], "name": "get-candidate-info", "access": "read_only", "outputs": {"type": {"tuple": [{"name": "candidate-weight", "type": "uint128"}, {"name": "total-weight", "type": {"optional": "uint128"}}]}}}, {"args": [{"name": "reward-cycle", "type": "uint128"}], "name": "get-last-round", "access": "read_only", "outputs": {"type": {"optional": "uint128"}}}, {"args": [{"name": "signer-index", "type": "uint128"}, {"name": "reward-cycle", "type": "uint128"}], "name": "get-signer-weight", "access": "read_only", "outputs": {"type": {"response": {"ok": "uint128", "error": "uint128"}}}}, {"args": [{"name": "reward-cycle", "type": "uint128"}, {"name": "round", "type": "uint128"}, {"name": "aggregate-public-key", "type": {"buffer": {"length": 33}}}], "name": "get-tally", "access": "read_only", "outputs": {"type": {"optional": "uint128"}}}, {"args": [{"name": "reward-cycle", "type": "uint128"}, {"name": "round", "type": "uint128"}, {"name": "signer", "type": "principal"}], "name": "get-vote", "access": "read_only", "outputs": {"type": {"optional": {"tuple": [{"name": "aggregate-public-key", "type": {"buffer": {"length": 33}}}, {"name": "signer-weight", "type": "uint128"}]}}}}, {"args": [{"name": "height", "type": "uint128"}], "name": "is-in-prepare-phase", "access": "read_only", "outputs": {"type": "bool"}}, {"args": [{"name": "key", "type": {"buffer": {"length": 33}}}, {"name": "reward-cycle", "type": "uint128"}], "name": "is-novel-aggregate-public-key", "access": "read_only", "outputs": {"type": "bool"}}, {"args": [{"name": "reward-cycle", "type": "uint128"}], "name": "reward-cycle-to-burn-height", "access": "read_only", "outputs": {"type": "uint128"}}], "variables": [{"name": "ERR_DUPLICATE_AGGREGATE_PUBLIC_KEY", "type": "uint128", "access": "constant"}, {"name": "ERR_DUPLICATE_VOTE", "type": "uint128", "access": "constant"}, {"name": "ERR_FAILED_TO_RETRIEVE_SIGNERS", "type": "uint128", "access": "constant"}, {"name": "ERR_ILL_FORMED_AGGREGATE_PUBLIC_KEY", "type": "uint128", "access": "constant"}, {"name": "ERR_INVALID_ROUND", "type": "uint128", "access": "constant"}, {"name": "ERR_INVALID_SIGNER_INDEX", "type": "uint128", "access": "constant"}, {"name": "ERR_OUT_OF_VOTING_WINDOW", "type": "uint128", "access": "constant"}, {"name": "ERR_SIGNER_INDEX_MISMATCH", "type": "uint128", "access": "constant"}, {"name": "pox-info", "type": {"tuple": [{"name": "first-burnchain-block-height", "type": "uint128"}, {"name": "min-amount-ustx", "type": "uint128"}, {"name": "prepare-cycle-length", "type": "uint128"}, {"name": "reward-cycle-id", "type": "uint128"}, {"name": "reward-cycle-length", "type": "uint128"}, {"name": "total-liquid-supply-ustx", "type": "uint128"}]}, "access": "constant"}, {"name": "threshold-consensus", "type": "uint128", "access": "constant"}], "clarity_version": "Clarity2", "fungible_tokens": [], "non_fungible_tokens": []}, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}, {"txid": "0x408ada5ee746899a7be103c24b6035d97a4c15c71866a9e7a8ac6d5c8f58f1e5", "raw_tx": "0x808000000004001dc27eba0247f8cc9575e7d45e50a0bc7e72427d000000000000000400000000000000000001c79775aca7547402741b579c3d82ae3126466d4d08a8a8a4efe95cea13f5d1af7e30bbd8b6afb31eef1d59101f2a9f9e1527aa646fc527a165498a35408fbdcc010200000000050000000000000000000000000000000000000000000000000000000000000000051a2f438f17611dd028079f201915ccfcbcbfe49991", "status": "success", "tx_index": 27, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": null, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}, {"txid": "0x87a8cb8eaa6c7a99953c5586ff9db418da8d938e81bb7bd5bfe49053c10ee8b3", "raw_tx": "0x8080000000040062b0e91cc557e583c3d1f9dfe468ace76d2f03740000000000000000000000000000012c0000b96355dc82b63c7e1de129790f7f7c37c724b88aa9e7bc16277045ea700caba37fe59ce7e3b58917735acc171707f6de7b1b979d8a951f1ba23a0d59ec52dac803020000000000051a93b082ee51d78faf5cc3d84a1c1591246c4965b000000000000003e800000000000000000000000000000000000000000000000000000000000000000000", "status": "success", "tx_index": 28, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": null, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}], "anchored_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "burn_block_hash": "0x12bc79e6459d15f9731d559d8acba72fbab32b03c1ee5a3fae3d898de4bfdc09", "burn_block_time": 1710344065, "index_block_hash": "0x058ea4e9fa94e60c93895a8997eec28ee1ea91989708b5175ed75878af9f285f", "burn_block_height": 108, "parent_block_hash": "0xd675ca9395f2bab6f7c15c46706dd60441e472043f5d53823c0d355e95a3a2ac", "parent_microblock": "0x0000000000000000000000000000000000000000000000000000000000000000", "pox_v1_unlock_height": 104, "pox_v2_unlock_height": 106, "pox_v3_unlock_height": 109, "matured_miner_rewards": [], "parent_burn_block_hash": "0x4e1428aa1464183b1458d10b72aacd39884e37956a84c13d7c502f99e211e08b", "parent_index_block_hash": "0x5b1fa7d3e98770f74a1906e0eb81fb31012d231cc875b058de7208007abce680", "parent_burn_block_height": 107, "confirmed_microblocks_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "parent_microblock_sequence": 0, "parent_burn_block_timestamp": 1710344065} +117 2024-03-13 15:34:26.455459+00 /new_burn_block {"burn_amount": 20000, "burn_block_hash": "0x496a6d5c983b209b0b42ea5625994d2ed87566c88c76390f75ea0a63d6501d30", "burn_block_height": 109, "reward_recipients": [], "reward_slot_holders": []} +118 2024-03-13 15:34:26.506667+00 /new_block {"events": [], "block_hash": "0x149dfe18b4ef491bef2498aaeadcc9d792c42246a69b29f9a5ac618a1fa0b313", "miner_txid": "0x43f22c49f50de4a1564f88f3ec0d33e36ce4d42812ce5efc44b03509136559a6", "reward_set": {"start_cycle_state": {"missed_reward_slots": []}, "pox_ustx_threshold": "76250150000000000", "rewarded_addresses": []}, "block_height": 6, "cycle_number": 11, "transactions": [{"txid": "0xe581b259522f8b6a5b44a478e5a3dd4389f0de948c0f7dea62572c3d36c26df3", "raw_tx": "0x808000000004001dc27eba0247f8cc9575e7d45e50a0bc7e72427d000000000000000500000000000000000001253a71b8d449c521e5aa3bad6462ebe436f9d5a7bfdb8ae7ecb8184eec6449492494873b6673ba1c8e166724f77f92845499c092e9cbe2e5d877c027ad9ac348010200000000050000000000000000000000000000000000000000000000000000000000000000051a2f438f17611dd028079f201915ccfcbcbfe49991", "status": "success", "tx_index": 0, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": null, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}], "anchored_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "burn_block_hash": "0x496a6d5c983b209b0b42ea5625994d2ed87566c88c76390f75ea0a63d6501d30", "burn_block_time": 1710344066, "index_block_hash": "0xe1fb9b3beaa302392d183151d3e5394f86eb64c3d46616b8ec18f5ebe734c4cb", "burn_block_height": 109, "parent_block_hash": "0x0e9ebebd58fab91c8c83143ec9af05d58d6c554e9fb562ec122855e81bc487be", "parent_microblock": "0x0000000000000000000000000000000000000000000000000000000000000000", "pox_v1_unlock_height": 104, "pox_v2_unlock_height": 106, "pox_v3_unlock_height": 109, "matured_miner_rewards": [], "parent_burn_block_hash": "0x12bc79e6459d15f9731d559d8acba72fbab32b03c1ee5a3fae3d898de4bfdc09", "parent_index_block_hash": "0x058ea4e9fa94e60c93895a8997eec28ee1ea91989708b5175ed75878af9f285f", "parent_burn_block_height": 108, "confirmed_microblocks_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "parent_microblock_sequence": 0, "parent_burn_block_timestamp": 1710344065} +119 2024-03-13 15:34:27.496221+00 /new_burn_block {"burn_amount": 20000, "burn_block_hash": "0x138574524fd3404c1fbc0e334905f41e06412fe4571e8cd14439691f4e691ecb", "burn_block_height": 110, "reward_recipients": [], "reward_slot_holders": []} +120 2024-03-13 15:34:27.561054+00 /new_block {"events": [], "block_hash": "0x98a0298f34b18dbdd1af015c2bc09871add88d7d3adf4070fbf2755aa0a69972", "miner_txid": "0x03a392f8481b21803f63290e9f2aef2fe1b6424e913d745a4c890095b0246333", "block_height": 7, "transactions": [{"txid": "0x372bc93efa90ea863d271c1e5fdba0795fc7a4467631648cf10b9a3353d1e2e2", "raw_tx": "0x808000000004001dc27eba0247f8cc9575e7d45e50a0bc7e72427d000000000000000600000000000000000001bc3b3fe3f1ea7ad93ec19ae44c648eda6789770d9858674fa3b63b8d3a96adf1782580570bc60b22c84866904b30760f651518ebc29ab2dcc80245027280791c010200000000050000000000000000000000000000000000000000000000000000000000000000051a2f438f17611dd028079f201915ccfcbcbfe49991", "status": "success", "tx_index": 0, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": null, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}], "anchored_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "burn_block_hash": "0x138574524fd3404c1fbc0e334905f41e06412fe4571e8cd14439691f4e691ecb", "burn_block_time": 1710344067, "index_block_hash": "0x15000484141d821b10bfaf38f0b088185095ed2e5dce789a500f876b8ca50dbe", "burn_block_height": 110, "parent_block_hash": "0x149dfe18b4ef491bef2498aaeadcc9d792c42246a69b29f9a5ac618a1fa0b313", "parent_microblock": "0x0000000000000000000000000000000000000000000000000000000000000000", "pox_v1_unlock_height": 104, "pox_v2_unlock_height": 106, "pox_v3_unlock_height": 109, "matured_miner_rewards": [], "parent_burn_block_hash": "0x496a6d5c983b209b0b42ea5625994d2ed87566c88c76390f75ea0a63d6501d30", "parent_index_block_hash": "0xe1fb9b3beaa302392d183151d3e5394f86eb64c3d46616b8ec18f5ebe734c4cb", "parent_burn_block_height": 109, "confirmed_microblocks_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "parent_microblock_sequence": 0, "parent_burn_block_timestamp": 1710344066} +121 2024-03-13 15:34:27.824398+00 /new_mempool_tx ["0x8080000000040031ef5ee9a226a792b93f2bfbfbc54f523eba7818000000000000000000000000000003ea000112a32b8be268c8f8a8c7eb30c26ed88068881bcfdc707cde7576e44a70ca0d8c5f861d03b2f962edd50791e7aa91804196bfa228ab501a292aecb388092372d2030200000000021a000000000000000000000000000000000000000005706f782d3409737461636b2d7374780000000801000000000000000009860df78761dc000c0000000209686173686279746573020000001431ef5ee9a226a792b93f2bfbfbc54f523eba78180776657273696f6e020000000100010000000000000000000000000000006e01000000000000000000000000000000010a02000000414c28cf2acaa6780c3b77e2876e98a6cf1c806182153290369a120f48b0254b9b7dfa970005a9268e23640d7ffe17ad86075b0382e1d442a4c173d56040de8b40010200000021038e3c4529395611be9abf6fa3b6987e81d402385e3d605a073f42f407565a4a3d01ffffffffffffffffffffffffffffffff01000000000000000000002a08203ae741"] +122 2024-03-13 15:34:27.846079+00 /new_mempool_tx ["0x808000000004005146f0566e9796602a677d895852e9c0fe5686f7000000000000000000000000000003e800002ef5578162141e4836811717c69d6ebc3b07eda7ae75d97a72919eddb36581560ff64d7b49095700de8845868f86f01f51270b3b4f1996a7335f02f1401c2f3d030200000000021a000000000000000000000000000000000000000005706f782d3409737461636b2d73747800000008010000000000000000032caf528275f4000c000000020968617368627974657302000000145146f0566e9796602a677d895852e9c0fe5686f70776657273696f6e020000000100010000000000000000000000000000006e01000000000000000000000000000000010a02000000417f68a0c6014562ab7b169edb4bb420d893fc3ec4e0e42ee80cc5addeebb361b673a4c3c08e4fe34d567b02360fc9410631ba33c7144f14c6bbe794623d746b1300020000002102dcde79b38787b72d8e5e0af81cffa802f0a3c8452d6b46e08859165f49a7273601ffffffffffffffffffffffffffffffff0100000000000000000000ecf64802d8af"] +123 2024-03-13 15:34:27.857281+00 /new_mempool_tx ["0x808000000004001e959caa6dd5bede3575cd3847ba81e56180b214000000000000000000000000000003e900011aea1e09505562330a30ec0d1f3d29e60b46ac70e04b6b3cf8b0da53c750651778ad99956965ab022af6553f467eac7ce4267f60cc607e6b11a4597b2253963d030200000000021a000000000000000000000000000000000000000005706f782d3409737461636b2d7374780000000801000000000000000006595ea504ebe8000c000000020968617368627974657302000000141e959caa6dd5bede3575cd3847ba81e56180b2140776657273696f6e020000000100010000000000000000000000000000006e01000000000000000000000000000000010a0200000041a66a751eabe4b85c0073c458e7c39cd2dde8fe5ca89fe5b44d7d7aadb97b698a59016537434eb98085e24ce7e176270d9c8548f109bfbcb1bcc4d2f9e9dbae42010200000021029874497a7952483aa23890e9d0898696f33864d3df90939930a1f45421fe3b0901ffffffffffffffffffffffffffffffff0100000000000000000000b8f905d60ea1"] +124 2024-03-13 15:34:29.293621+00 /new_mempool_tx ["0x8080000000040093b082ee51d78faf5cc3d84a1c1591246c4965b00000000000000001000000000000012c00014ffc51c43902c22207cbd6b4034417b39b3ccf4f3bcb21a34997b958813416154747bedea981505e75340b935058e35c7baeace89fd10d9c8a75400025a36d1f03020000000000051aad08341feab8ea788ef8045c343d21dcedc4483e00000000000003e800000000000000000000000000000000000000000000000000000000000000000000"] +125 2024-03-13 15:34:30.553745+00 /new_burn_block {"burn_amount": 20000, "burn_block_hash": "0x532ed2da3ef7c3c869a91b8b48830abea35d9267c3a11e1a27ffb9fb03284c3c", "burn_block_height": 111, "reward_recipients": [], "reward_slot_holders": []} +126 2024-03-13 15:34:30.864483+00 /new_block {"events": [{"txid": "0xf767164c588e43b1af80e466e59f120037c17bd49b25b1529543132a2aa331a8", "type": "stx_lock_event", "committed": true, "event_index": 5, "stx_lock_event": {"locked_amount": "457500900000000000", "unlock_height": "130", "locked_address": "STF9B75ADQAVXQHNEQ6KGHXTG7JP305J2GRWF3A2", "contract_identifier": "ST000000000000000000002AMW42H.pox-4"}}, {"txid": "0xf767164c588e43b1af80e466e59f120037c17bd49b25b1529543132a2aa331a8", "type": "contract_event", "committed": true, "event_index": 4, "contract_event": {"topic": "print", "value": {"Response": {"data": {"Tuple": {"data_map": {"data": {"Tuple": {"data_map": {"auth-id": {"UInt": 203379684282017}, "pox-addr": {"Tuple": {"data_map": {"version": {"Sequence": {"Buffer": {"data": [0]}}}, "hashbytes": {"Sequence": {"Buffer": {"data": [30, 149, 156, 170, 109, 213, 190, 222, 53, 117, 205, 56, 71, 186, 129, 229, 97, 128, 178, 20]}}}}, "type_signature": {"type_map": {"version": {"SequenceType": {"BufferType": 1}}, "hashbytes": {"SequenceType": {"BufferType": 20}}}}}}, "max-amount": {"UInt": 340282366920938500000000000000000000000}, "signer-key": {"Sequence": {"Buffer": {"data": [2, 152, 116, 73, 122, 121, 82, 72, 58, 162, 56, 144, 233, 208, 137, 134, 150, 243, 56, 100, 211, 223, 144, 147, 153, 48, 161, 244, 84, 33, 254, 59, 9]}}}, "signer-sig": {"Optional": {"data": {"Sequence": {"Buffer": {"data": [166, 106, 117, 30, 171, 228, 184, 92, 0, 115, 196, 88, 231, 195, 156, 210, 221, 232, 254, 92, 168, 159, 229, 180, 77, 125, 122, 173, 185, 123, 105, 138, 89, 1, 101, 55, 67, 78, 185, 128, 133, 226, 76, 231, 225, 118, 39, 13, 156, 133, 72, 241, 9, 191, 188, 177, 188, 196, 210, 249, 233, 219, 174, 66, 1]}}}}}, "lock-amount": {"UInt": 457500900000000000}, "lock-period": {"UInt": 1}, "end-cycle-id": {"Optional": {"data": {"UInt": 13}}}, "start-cycle-id": {"UInt": 12}, "start-burn-height": {"UInt": 110}, "unlock-burn-height": {"UInt": 130}}, "type_signature": {"type_map": {"auth-id": "UIntType", "pox-addr": {"TupleType": {"type_map": {"version": {"SequenceType": {"BufferType": 1}}, "hashbytes": {"SequenceType": {"BufferType": 20}}}}}, "max-amount": "UIntType", "signer-key": {"SequenceType": {"BufferType": 33}}, "signer-sig": {"OptionalType": {"SequenceType": {"BufferType": 65}}}, "lock-amount": "UIntType", "lock-period": "UIntType", "end-cycle-id": {"OptionalType": "UIntType"}, "start-cycle-id": "UIntType", "start-burn-height": "UIntType", "unlock-burn-height": "UIntType"}}}}, "name": {"Sequence": {"String": {"ASCII": {"data": [115, 116, 97, 99, 107, 45, 115, 116, 120]}}}}, "locked": {"UInt": 0}, "balance": {"UInt": 999999999999999000}, "stacker": {"Principal": {"Standard": [26, [30, 149, 156, 170, 109, 213, 190, 222, 53, 117, 205, 56, 71, 186, 129, 229, 97, 128, 178, 20]]}}, "burnchain-unlock-height": {"UInt": 0}}, "type_signature": {"type_map": {"data": {"TupleType": {"type_map": {"auth-id": "UIntType", "pox-addr": {"TupleType": {"type_map": {"version": {"SequenceType": {"BufferType": 1}}, "hashbytes": {"SequenceType": {"BufferType": 20}}}}}, "max-amount": "UIntType", "signer-key": {"SequenceType": {"BufferType": 33}}, "signer-sig": {"OptionalType": {"SequenceType": {"BufferType": 65}}}, "lock-amount": "UIntType", "lock-period": "UIntType", "end-cycle-id": {"OptionalType": "UIntType"}, "start-cycle-id": "UIntType", "start-burn-height": "UIntType", "unlock-burn-height": "UIntType"}}}, "name": {"SequenceType": {"StringType": {"ASCII": 9}}}, "locked": "UIntType", "balance": "UIntType", "stacker": "PrincipalType", "burnchain-unlock-height": "UIntType"}}}}, "committed": true}}, "raw_value": "0x070c000000060762616c616e63650100000000000000000de0b6b3a763fc17176275726e636861696e2d756e6c6f636b2d686569676874010000000000000000000000000000000004646174610c0000000b07617574682d69640100000000000000000000b8f905d60ea10c656e642d6379636c652d69640a010000000000000000000000000000000d0b6c6f636b2d616d6f756e7401000000000000000006595ea504ebe8000b6c6f636b2d706572696f6401000000000000000000000000000000010a6d61782d616d6f756e7401ffffffffffffffffffffffffffffffff08706f782d616464720c000000020968617368627974657302000000141e959caa6dd5bede3575cd3847ba81e56180b2140776657273696f6e0200000001000a7369676e65722d6b65790200000021029874497a7952483aa23890e9d0898696f33864d3df90939930a1f45421fe3b090a7369676e65722d7369670a0200000041a66a751eabe4b85c0073c458e7c39cd2dde8fe5ca89fe5b44d7d7aadb97b698a59016537434eb98085e24ce7e176270d9c8548f109bfbcb1bcc4d2f9e9dbae42011173746172742d6275726e2d686569676874010000000000000000000000000000006e0e73746172742d6379636c652d6964010000000000000000000000000000000c12756e6c6f636b2d6275726e2d6865696768740100000000000000000000000000000082066c6f636b65640100000000000000000000000000000000046e616d650d00000009737461636b2d73747807737461636b6572051a1e959caa6dd5bede3575cd3847ba81e56180b214", "contract_identifier": "ST000000000000000000002AMW42H.pox-4"}}, {"txid": "0xaf43d24f9b5126868b9ced66f3497bb9f42e6a02b849c22d5e00deec0fbe7446", "type": "stx_lock_event", "committed": true, "event_index": 3, "stx_lock_event": {"locked_amount": "228750450000000000", "unlock_height": "130", "locked_address": "ST18MDW2PDTBSCR1ACXYRJP2JX70FWNM6YY2VX4SS", "contract_identifier": "ST000000000000000000002AMW42H.pox-4"}}, {"txid": "0xcd11b52349955422f0c875a95f2ac2651394b3ddc1b084acb4657375e3870103", "type": "stx_lock_event", "committed": true, "event_index": 1, "stx_lock_event": {"locked_amount": "686251350000000000", "unlock_height": "130", "locked_address": "STRYYQQ9M8KAF4NS7WNZQYY59X93XEKR31JP64CP", "contract_identifier": "ST000000000000000000002AMW42H.pox-4"}}, {"txid": "0xaf43d24f9b5126868b9ced66f3497bb9f42e6a02b849c22d5e00deec0fbe7446", "type": "contract_event", "committed": true, "event_index": 2, "contract_event": {"topic": "print", "value": {"Response": {"data": {"Tuple": {"data_map": {"data": {"Tuple": {"data_map": {"auth-id": {"UInt": 260542514256047}, "pox-addr": {"Tuple": {"data_map": {"version": {"Sequence": {"Buffer": {"data": [0]}}}, "hashbytes": {"Sequence": {"Buffer": {"data": [81, 70, 240, 86, 110, 151, 150, 96, 42, 103, 125, 137, 88, 82, 233, 192, 254, 86, 134, 247]}}}}, "type_signature": {"type_map": {"version": {"SequenceType": {"BufferType": 1}}, "hashbytes": {"SequenceType": {"BufferType": 20}}}}}}, "max-amount": {"UInt": 340282366920938500000000000000000000000}, "signer-key": {"Sequence": {"Buffer": {"data": [2, 220, 222, 121, 179, 135, 135, 183, 45, 142, 94, 10, 248, 28, 255, 168, 2, 240, 163, 200, 69, 45, 107, 70, 224, 136, 89, 22, 95, 73, 167, 39, 54]}}}, "signer-sig": {"Optional": {"data": {"Sequence": {"Buffer": {"data": [127, 104, 160, 198, 1, 69, 98, 171, 123, 22, 158, 219, 75, 180, 32, 216, 147, 252, 62, 196, 224, 228, 46, 232, 12, 197, 173, 222, 235, 179, 97, 182, 115, 164, 195, 192, 142, 79, 227, 77, 86, 123, 2, 54, 15, 201, 65, 6, 49, 186, 51, 199, 20, 79, 20, 198, 187, 231, 148, 98, 61, 116, 107, 19, 0]}}}}}, "lock-amount": {"UInt": 228750450000000000}, "lock-period": {"UInt": 1}, "end-cycle-id": {"Optional": {"data": {"UInt": 13}}}, "start-cycle-id": {"UInt": 12}, "start-burn-height": {"UInt": 110}, "unlock-burn-height": {"UInt": 130}}, "type_signature": {"type_map": {"auth-id": "UIntType", "pox-addr": {"TupleType": {"type_map": {"version": {"SequenceType": {"BufferType": 1}}, "hashbytes": {"SequenceType": {"BufferType": 20}}}}}, "max-amount": "UIntType", "signer-key": {"SequenceType": {"BufferType": 33}}, "signer-sig": {"OptionalType": {"SequenceType": {"BufferType": 65}}}, "lock-amount": "UIntType", "lock-period": "UIntType", "end-cycle-id": {"OptionalType": "UIntType"}, "start-cycle-id": "UIntType", "start-burn-height": "UIntType", "unlock-burn-height": "UIntType"}}}}, "name": {"Sequence": {"String": {"ASCII": {"data": [115, 116, 97, 99, 107, 45, 115, 116, 120]}}}}, "locked": {"UInt": 0}, "balance": {"UInt": 999999999999999000}, "stacker": {"Principal": {"Standard": [26, [81, 70, 240, 86, 110, 151, 150, 96, 42, 103, 125, 137, 88, 82, 233, 192, 254, 86, 134, 247]]}}, "burnchain-unlock-height": {"UInt": 0}}, "type_signature": {"type_map": {"data": {"TupleType": {"type_map": {"auth-id": "UIntType", "pox-addr": {"TupleType": {"type_map": {"version": {"SequenceType": {"BufferType": 1}}, "hashbytes": {"SequenceType": {"BufferType": 20}}}}}, "max-amount": "UIntType", "signer-key": {"SequenceType": {"BufferType": 33}}, "signer-sig": {"OptionalType": {"SequenceType": {"BufferType": 65}}}, "lock-amount": "UIntType", "lock-period": "UIntType", "end-cycle-id": {"OptionalType": "UIntType"}, "start-cycle-id": "UIntType", "start-burn-height": "UIntType", "unlock-burn-height": "UIntType"}}}, "name": {"SequenceType": {"StringType": {"ASCII": 9}}}, "locked": "UIntType", "balance": "UIntType", "stacker": "PrincipalType", "burnchain-unlock-height": "UIntType"}}}}, "committed": true}}, "raw_value": "0x070c000000060762616c616e63650100000000000000000de0b6b3a763fc18176275726e636861696e2d756e6c6f636b2d686569676874010000000000000000000000000000000004646174610c0000000b07617574682d69640100000000000000000000ecf64802d8af0c656e642d6379636c652d69640a010000000000000000000000000000000d0b6c6f636b2d616d6f756e74010000000000000000032caf528275f4000b6c6f636b2d706572696f6401000000000000000000000000000000010a6d61782d616d6f756e7401ffffffffffffffffffffffffffffffff08706f782d616464720c000000020968617368627974657302000000145146f0566e9796602a677d895852e9c0fe5686f70776657273696f6e0200000001000a7369676e65722d6b6579020000002102dcde79b38787b72d8e5e0af81cffa802f0a3c8452d6b46e08859165f49a727360a7369676e65722d7369670a02000000417f68a0c6014562ab7b169edb4bb420d893fc3ec4e0e42ee80cc5addeebb361b673a4c3c08e4fe34d567b02360fc9410631ba33c7144f14c6bbe794623d746b13001173746172742d6275726e2d686569676874010000000000000000000000000000006e0e73746172742d6379636c652d6964010000000000000000000000000000000c12756e6c6f636b2d6275726e2d6865696768740100000000000000000000000000000082066c6f636b65640100000000000000000000000000000000046e616d650d00000009737461636b2d73747807737461636b6572051a5146f0566e9796602a677d895852e9c0fe5686f7", "contract_identifier": "ST000000000000000000002AMW42H.pox-4"}}, {"txid": "0xcd11b52349955422f0c875a95f2ac2651394b3ddc1b084acb4657375e3870103", "type": "contract_event", "committed": true, "event_index": 0, "contract_event": {"topic": "print", "value": {"Response": {"data": {"Tuple": {"data_map": {"data": {"Tuple": {"data_map": {"auth-id": {"UInt": 46214388836161}, "pox-addr": {"Tuple": {"data_map": {"version": {"Sequence": {"Buffer": {"data": [0]}}}, "hashbytes": {"Sequence": {"Buffer": {"data": [49, 239, 94, 233, 162, 38, 167, 146, 185, 63, 43, 251, 251, 197, 79, 82, 62, 186, 120, 24]}}}}, "type_signature": {"type_map": {"version": {"SequenceType": {"BufferType": 1}}, "hashbytes": {"SequenceType": {"BufferType": 20}}}}}}, "max-amount": {"UInt": 340282366920938500000000000000000000000}, "signer-key": {"Sequence": {"Buffer": {"data": [3, 142, 60, 69, 41, 57, 86, 17, 190, 154, 191, 111, 163, 182, 152, 126, 129, 212, 2, 56, 94, 61, 96, 90, 7, 63, 66, 244, 7, 86, 90, 74, 61]}}}, "signer-sig": {"Optional": {"data": {"Sequence": {"Buffer": {"data": [76, 40, 207, 42, 202, 166, 120, 12, 59, 119, 226, 135, 110, 152, 166, 207, 28, 128, 97, 130, 21, 50, 144, 54, 154, 18, 15, 72, 176, 37, 75, 155, 125, 250, 151, 0, 5, 169, 38, 142, 35, 100, 13, 127, 254, 23, 173, 134, 7, 91, 3, 130, 225, 212, 66, 164, 193, 115, 213, 96, 64, 222, 139, 64, 1]}}}}}, "lock-amount": {"UInt": 686251350000000000}, "lock-period": {"UInt": 1}, "end-cycle-id": {"Optional": {"data": {"UInt": 13}}}, "start-cycle-id": {"UInt": 12}, "start-burn-height": {"UInt": 110}, "unlock-burn-height": {"UInt": 130}}, "type_signature": {"type_map": {"auth-id": "UIntType", "pox-addr": {"TupleType": {"type_map": {"version": {"SequenceType": {"BufferType": 1}}, "hashbytes": {"SequenceType": {"BufferType": 20}}}}}, "max-amount": "UIntType", "signer-key": {"SequenceType": {"BufferType": 33}}, "signer-sig": {"OptionalType": {"SequenceType": {"BufferType": 65}}}, "lock-amount": "UIntType", "lock-period": "UIntType", "end-cycle-id": {"OptionalType": "UIntType"}, "start-cycle-id": "UIntType", "start-burn-height": "UIntType", "unlock-burn-height": "UIntType"}}}}, "name": {"Sequence": {"String": {"ASCII": {"data": [115, 116, 97, 99, 107, 45, 115, 116, 120]}}}}, "locked": {"UInt": 0}, "balance": {"UInt": 999999999999999000}, "stacker": {"Principal": {"Standard": [26, [49, 239, 94, 233, 162, 38, 167, 146, 185, 63, 43, 251, 251, 197, 79, 82, 62, 186, 120, 24]]}}, "burnchain-unlock-height": {"UInt": 0}}, "type_signature": {"type_map": {"data": {"TupleType": {"type_map": {"auth-id": "UIntType", "pox-addr": {"TupleType": {"type_map": {"version": {"SequenceType": {"BufferType": 1}}, "hashbytes": {"SequenceType": {"BufferType": 20}}}}}, "max-amount": "UIntType", "signer-key": {"SequenceType": {"BufferType": 33}}, "signer-sig": {"OptionalType": {"SequenceType": {"BufferType": 65}}}, "lock-amount": "UIntType", "lock-period": "UIntType", "end-cycle-id": {"OptionalType": "UIntType"}, "start-cycle-id": "UIntType", "start-burn-height": "UIntType", "unlock-burn-height": "UIntType"}}}, "name": {"SequenceType": {"StringType": {"ASCII": 9}}}, "locked": "UIntType", "balance": "UIntType", "stacker": "PrincipalType", "burnchain-unlock-height": "UIntType"}}}}, "committed": true}}, "raw_value": "0x070c000000060762616c616e63650100000000000000000de0b6b3a763fc16176275726e636861696e2d756e6c6f636b2d686569676874010000000000000000000000000000000004646174610c0000000b07617574682d696401000000000000000000002a08203ae7410c656e642d6379636c652d69640a010000000000000000000000000000000d0b6c6f636b2d616d6f756e7401000000000000000009860df78761dc000b6c6f636b2d706572696f6401000000000000000000000000000000010a6d61782d616d6f756e7401ffffffffffffffffffffffffffffffff08706f782d616464720c0000000209686173686279746573020000001431ef5ee9a226a792b93f2bfbfbc54f523eba78180776657273696f6e0200000001000a7369676e65722d6b65790200000021038e3c4529395611be9abf6fa3b6987e81d402385e3d605a073f42f407565a4a3d0a7369676e65722d7369670a02000000414c28cf2acaa6780c3b77e2876e98a6cf1c806182153290369a120f48b0254b9b7dfa970005a9268e23640d7ffe17ad86075b0382e1d442a4c173d56040de8b40011173746172742d6275726e2d686569676874010000000000000000000000000000006e0e73746172742d6379636c652d6964010000000000000000000000000000000c12756e6c6f636b2d6275726e2d6865696768740100000000000000000000000000000082066c6f636b65640100000000000000000000000000000000046e616d650d00000009737461636b2d73747807737461636b6572051a31ef5ee9a226a792b93f2bfbfbc54f523eba7818", "contract_identifier": "ST000000000000000000002AMW42H.pox-4"}}], "block_hash": "0x1844251159c6bc90883234411a8e87aa3625e7a3de623274d1b25210312b1030", "miner_txid": "0xd462b334823938d7b7ec7564d88a22ee4e75d85e5679ae98945b55d780612704", "block_height": 8, "transactions": [{"txid": "0x8df6771d2afec2684a3d6b4ec84f482b9532210120c52fd555998876560a38b3", "raw_tx": "0x808000000004001dc27eba0247f8cc9575e7d45e50a0bc7e72427d000000000000000700000000000000000001dc11150ae4a24714eb531e25024410959057a16e18f073faae8c9075304593b17bd3f831e5a9d4dfdbcb2a54eb7e504f4dbc81ec4280c3ae969daaf7b10845c4010200000000050000000000000000000000000000000000000000000000000000000000000000051a2f438f17611dd028079f201915ccfcbcbfe49991", "status": "success", "tx_index": 0, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": null, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}, {"txid": "0xcd11b52349955422f0c875a95f2ac2651394b3ddc1b084acb4657375e3870103", "raw_tx": "0x8080000000040031ef5ee9a226a792b93f2bfbfbc54f523eba7818000000000000000000000000000003ea000112a32b8be268c8f8a8c7eb30c26ed88068881bcfdc707cde7576e44a70ca0d8c5f861d03b2f962edd50791e7aa91804196bfa228ab501a292aecb388092372d2030200000000021a000000000000000000000000000000000000000005706f782d3409737461636b2d7374780000000801000000000000000009860df78761dc000c0000000209686173686279746573020000001431ef5ee9a226a792b93f2bfbfbc54f523eba78180776657273696f6e020000000100010000000000000000000000000000006e01000000000000000000000000000000010a02000000414c28cf2acaa6780c3b77e2876e98a6cf1c806182153290369a120f48b0254b9b7dfa970005a9268e23640d7ffe17ad86075b0382e1d442a4c173d56040de8b40010200000021038e3c4529395611be9abf6fa3b6987e81d402385e3d605a073f42f407565a4a3d01ffffffffffffffffffffffffffffffff01000000000000000000002a08203ae741", "status": "success", "tx_index": 1, "raw_result": "0x070c000000040b6c6f636b2d616d6f756e7401000000000000000009860df78761dc000a7369676e65722d6b65790200000021038e3c4529395611be9abf6fa3b6987e81d402385e3d605a073f42f407565a4a3d07737461636b6572051a31ef5ee9a226a792b93f2bfbfbc54f523eba781812756e6c6f636b2d6275726e2d6865696768740100000000000000000000000000000082", "burnchain_op": null, "contract_abi": null, "execution_cost": {"runtime": 714292, "read_count": 23, "read_length": 80849, "write_count": 6, "write_length": 838}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}, {"txid": "0xaf43d24f9b5126868b9ced66f3497bb9f42e6a02b849c22d5e00deec0fbe7446", "raw_tx": "0x808000000004005146f0566e9796602a677d895852e9c0fe5686f7000000000000000000000000000003e800002ef5578162141e4836811717c69d6ebc3b07eda7ae75d97a72919eddb36581560ff64d7b49095700de8845868f86f01f51270b3b4f1996a7335f02f1401c2f3d030200000000021a000000000000000000000000000000000000000005706f782d3409737461636b2d73747800000008010000000000000000032caf528275f4000c000000020968617368627974657302000000145146f0566e9796602a677d895852e9c0fe5686f70776657273696f6e020000000100010000000000000000000000000000006e01000000000000000000000000000000010a02000000417f68a0c6014562ab7b169edb4bb420d893fc3ec4e0e42ee80cc5addeebb361b673a4c3c08e4fe34d567b02360fc9410631ba33c7144f14c6bbe794623d746b1300020000002102dcde79b38787b72d8e5e0af81cffa802f0a3c8452d6b46e08859165f49a7273601ffffffffffffffffffffffffffffffff0100000000000000000000ecf64802d8af", "status": "success", "tx_index": 2, "raw_result": "0x070c000000040b6c6f636b2d616d6f756e74010000000000000000032caf528275f4000a7369676e65722d6b6579020000002102dcde79b38787b72d8e5e0af81cffa802f0a3c8452d6b46e08859165f49a7273607737461636b6572051a5146f0566e9796602a677d895852e9c0fe5686f712756e6c6f636b2d6275726e2d6865696768740100000000000000000000000000000082", "burnchain_op": null, "contract_abi": null, "execution_cost": {"runtime": 717825, "read_count": 23, "read_length": 80910, "write_count": 6, "write_length": 838}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}, {"txid": "0xf767164c588e43b1af80e466e59f120037c17bd49b25b1529543132a2aa331a8", "raw_tx": "0x808000000004001e959caa6dd5bede3575cd3847ba81e56180b214000000000000000000000000000003e900011aea1e09505562330a30ec0d1f3d29e60b46ac70e04b6b3cf8b0da53c750651778ad99956965ab022af6553f467eac7ce4267f60cc607e6b11a4597b2253963d030200000000021a000000000000000000000000000000000000000005706f782d3409737461636b2d7374780000000801000000000000000006595ea504ebe8000c000000020968617368627974657302000000141e959caa6dd5bede3575cd3847ba81e56180b2140776657273696f6e020000000100010000000000000000000000000000006e01000000000000000000000000000000010a0200000041a66a751eabe4b85c0073c458e7c39cd2dde8fe5ca89fe5b44d7d7aadb97b698a59016537434eb98085e24ce7e176270d9c8548f109bfbcb1bcc4d2f9e9dbae42010200000021029874497a7952483aa23890e9d0898696f33864d3df90939930a1f45421fe3b0901ffffffffffffffffffffffffffffffff0100000000000000000000b8f905d60ea1", "status": "success", "tx_index": 3, "raw_result": "0x070c000000040b6c6f636b2d616d6f756e7401000000000000000006595ea504ebe8000a7369676e65722d6b65790200000021029874497a7952483aa23890e9d0898696f33864d3df90939930a1f45421fe3b0907737461636b6572051a1e959caa6dd5bede3575cd3847ba81e56180b21412756e6c6f636b2d6275726e2d6865696768740100000000000000000000000000000082", "burnchain_op": null, "contract_abi": null, "execution_cost": {"runtime": 717825, "read_count": 23, "read_length": 80910, "write_count": 6, "write_length": 838}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}], "anchored_cost": {"runtime": 2149942, "read_count": 69, "read_length": 242669, "write_count": 18, "write_length": 2514}, "burn_block_hash": "0x532ed2da3ef7c3c869a91b8b48830abea35d9267c3a11e1a27ffb9fb03284c3c", "burn_block_time": 1710344070, "index_block_hash": "0x9290ca08afb6c478c1faa558dca158737a7ceca229b24b0fb6f1f5f6d7297265", "burn_block_height": 111, "parent_block_hash": "0x98a0298f34b18dbdd1af015c2bc09871add88d7d3adf4070fbf2755aa0a69972", "parent_microblock": "0x0000000000000000000000000000000000000000000000000000000000000000", "pox_v1_unlock_height": 104, "pox_v2_unlock_height": 106, "pox_v3_unlock_height": 109, "matured_miner_rewards": [], "parent_burn_block_hash": "0x138574524fd3404c1fbc0e334905f41e06412fe4571e8cd14439691f4e691ecb", "parent_index_block_hash": "0x15000484141d821b10bfaf38f0b088185095ed2e5dce789a500f876b8ca50dbe", "parent_burn_block_height": 110, "confirmed_microblocks_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "parent_microblock_sequence": 0, "parent_burn_block_timestamp": 1710344067} +127 2024-03-13 15:34:33.645777+00 /new_burn_block {"burn_amount": 20000, "burn_block_hash": "0x10a0c37d1f6fed442b385d5fd7ed45800487fb541bf92a77b040557efc9379c1", "burn_block_height": 112, "reward_recipients": [], "reward_slot_holders": []} +128 2024-03-13 15:34:33.732075+00 /new_block {"events": [{"txid": "0xeea93ac6072fe1f2f493e694f07e9622f4a317bcff9f60345a3d1a8f172ce69d", "type": "stx_transfer_event", "committed": true, "event_index": 0, "stx_transfer_event": {"memo": "00000000000000000000000000000000000000000000000000000000000000000000", "amount": "1000", "sender": "ST29V10QEA7BRZBTWRFC4M70NJ4J6RJB5P1C6EE84", "recipient": "ST2PGGD0ZXAWEMY4EZ025RD1X47EEVH287SQKA8BC"}}], "block_hash": "0x47952400c2f9c709908d655d5972ed231bb0267a18fc574d8d6b2776ea7f44e8", "miner_txid": "0x53097dc7997c48cb22fe7cac09b38cec8b426b737344f4b6fe4119254c0906f2", "block_height": 9, "transactions": [{"txid": "0xf32344912f15dc0959ae7e240432a84d4055d8eabd777f5c43250679d62e7fbb", "raw_tx": "0x808000000004001dc27eba0247f8cc9575e7d45e50a0bc7e72427d000000000000000800000000000000000000bc584aa20e9188985327d937de2cd048478d634aa04d95ca0ab30d27cf3f7d2e38da4ef0e0f8ddd7e24e424f6cdc126b53e438ec8ff43c6093480bb854013a10010200000000050000000000000000000000000000000000000000000000000000000000000000051a2f438f17611dd028079f201915ccfcbcbfe49991", "status": "success", "tx_index": 0, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": null, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}, {"txid": "0xeea93ac6072fe1f2f493e694f07e9622f4a317bcff9f60345a3d1a8f172ce69d", "raw_tx": "0x8080000000040093b082ee51d78faf5cc3d84a1c1591246c4965b00000000000000001000000000000012c00014ffc51c43902c22207cbd6b4034417b39b3ccf4f3bcb21a34997b958813416154747bedea981505e75340b935058e35c7baeace89fd10d9c8a75400025a36d1f03020000000000051aad08341feab8ea788ef8045c343d21dcedc4483e00000000000003e800000000000000000000000000000000000000000000000000000000000000000000", "status": "success", "tx_index": 1, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": null, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}], "anchored_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "burn_block_hash": "0x10a0c37d1f6fed442b385d5fd7ed45800487fb541bf92a77b040557efc9379c1", "burn_block_time": 1710344073, "index_block_hash": "0xd00cea991c61a509903f6a8d3f7383a4ae2577902dafa8cbf5813f428e67f7c2", "burn_block_height": 112, "parent_block_hash": "0x1844251159c6bc90883234411a8e87aa3625e7a3de623274d1b25210312b1030", "parent_microblock": "0x0000000000000000000000000000000000000000000000000000000000000000", "pox_v1_unlock_height": 104, "pox_v2_unlock_height": 106, "pox_v3_unlock_height": 109, "matured_miner_rewards": [], "parent_burn_block_hash": "0x532ed2da3ef7c3c869a91b8b48830abea35d9267c3a11e1a27ffb9fb03284c3c", "parent_index_block_hash": "0x9290ca08afb6c478c1faa558dca158737a7ceca229b24b0fb6f1f5f6d7297265", "parent_burn_block_height": 111, "confirmed_microblocks_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "parent_microblock_sequence": 0, "parent_burn_block_timestamp": 1710344070} +129 2024-03-13 15:34:36.681446+00 /new_burn_block {"burn_amount": 20000, "burn_block_hash": "0x088c1f183a7d610ce79f752f1243071164f03b545f5dc41b6ce85f5b690c05d3", "burn_block_height": 113, "reward_recipients": [], "reward_slot_holders": []} +130 2024-03-13 15:34:37.320795+00 /new_mempool_tx ["0x80800000000400ad08341feab8ea788ef8045c343d21dcedc4483e0000000000000001000000000000012c00013d41edd8ef6fd24df96e74200a56263b1591989a1a1643f4e95c20f88c72bb8d204c16378af46e09168a0b69ebacdbc5c691d77ea95c1b22f5f0d5f7300d6f7103020000000000051a62b0e91cc557e583c3d1f9dfe468ace76d2f037400000000000003e800000000000000000000000000000000000000000000000000000000000000000000"] +131 2024-03-13 15:34:37.729191+00 /new_block {"events": [], "block_hash": "0xa4643c102a9e0e7ecfa67f11f6c45ca590383fee579a95c683311f7b9f95aee7", "miner_txid": "0x73203f95ba7c3f4f3e492e72e64ae4dace05560694a0d6544811ccb6ad4e5e11", "block_height": 10, "transactions": [{"txid": "0xeaa679e9d6d38bc397bf82dcce3cc51517f5dc659d71db7bebfad2d5e7658b18", "raw_tx": "0x808000000004001dc27eba0247f8cc9575e7d45e50a0bc7e72427d0000000000000009000000000000000000002da63820112fb4ecee9fa7d90d1b6040048c2ef850be8850e1b68a8ecce028fd10b1bf40b12c76f90f866b2c0985c2021f109d23b22c8f7b9eb6b1fe3d593931010200000000050000000000000000000000000000000000000000000000000000000000000000051a2f438f17611dd028079f201915ccfcbcbfe49991", "status": "success", "tx_index": 0, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": null, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}], "anchored_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "burn_block_hash": "0x088c1f183a7d610ce79f752f1243071164f03b545f5dc41b6ce85f5b690c05d3", "burn_block_time": 1710344076, "index_block_hash": "0x441a9509c45919a673498ff132e175aa181cebd10216dd8f0e6b53443d5e6690", "burn_block_height": 113, "parent_block_hash": "0x47952400c2f9c709908d655d5972ed231bb0267a18fc574d8d6b2776ea7f44e8", "parent_microblock": "0x0000000000000000000000000000000000000000000000000000000000000000", "pox_v1_unlock_height": 104, "pox_v2_unlock_height": 106, "pox_v3_unlock_height": 109, "matured_miner_rewards": [], "parent_burn_block_hash": "0x10a0c37d1f6fed442b385d5fd7ed45800487fb541bf92a77b040557efc9379c1", "parent_index_block_hash": "0xd00cea991c61a509903f6a8d3f7383a4ae2577902dafa8cbf5813f428e67f7c2", "parent_burn_block_height": 112, "confirmed_microblocks_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "parent_microblock_sequence": 0, "parent_burn_block_timestamp": 1710344073} +132 2024-03-13 15:34:39.664006+00 /new_burn_block {"burn_amount": 20000, "burn_block_hash": "0x226c52b2d279e50e80c6a1af1dce3da9d80502703fa440a3ba4a487dbd84e913", "burn_block_height": 114, "reward_recipients": [], "reward_slot_holders": []} +133 2024-03-13 15:34:39.696821+00 /new_block {"events": [{"txid": "0xf2d6b93cd41e0bbf4c03dea55f2c7312bd53416efdf5b15c01367c883559cbc5", "type": "stx_transfer_event", "committed": true, "event_index": 0, "stx_transfer_event": {"memo": "00000000000000000000000000000000000000000000000000000000000000000000", "amount": "1000", "sender": "ST2PGGD0ZXAWEMY4EZ025RD1X47EEVH287SQKA8BC", "recipient": "ST1HB1T8WRNBYB0Y3T7WXZS38NKKPTBR3EG9EPJKR"}}], "block_hash": "0xd35be124c76b4ebdad5d4d4379eae42aea25099c786f9074473e2495cb1229dd", "miner_txid": "0x1737df62ff87425a11c5f899df18472ef5f088bbdd5804d7263a1f6beef62d8a", "block_height": 11, "transactions": [{"txid": "0x76d19c482cd26932d50d22c4beddc0bf47067d921cf35dca6f54464399d185fb", "raw_tx": "0x808000000004001dc27eba0247f8cc9575e7d45e50a0bc7e72427d000000000000000a00000000000000000000c0b85adcc069d6725015050c4a38e72b3685cb0376bd963ac867aa64f1a984db4141437db9055c96236ab27ffd7b8370c18270220865ec2a9c1aad78874775a7010200000000050000000000000000000000000000000000000000000000000000000000000000051a2f438f17611dd028079f201915ccfcbcbfe49991", "status": "success", "tx_index": 0, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": null, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}, {"txid": "0xf2d6b93cd41e0bbf4c03dea55f2c7312bd53416efdf5b15c01367c883559cbc5", "raw_tx": "0x80800000000400ad08341feab8ea788ef8045c343d21dcedc4483e0000000000000001000000000000012c00013d41edd8ef6fd24df96e74200a56263b1591989a1a1643f4e95c20f88c72bb8d204c16378af46e09168a0b69ebacdbc5c691d77ea95c1b22f5f0d5f7300d6f7103020000000000051a62b0e91cc557e583c3d1f9dfe468ace76d2f037400000000000003e800000000000000000000000000000000000000000000000000000000000000000000", "status": "success", "tx_index": 1, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": null, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}], "anchored_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "burn_block_hash": "0x226c52b2d279e50e80c6a1af1dce3da9d80502703fa440a3ba4a487dbd84e913", "burn_block_time": 1710344079, "index_block_hash": "0x3515693952e0076c6d1a416a8e4b8ca433c6610adfdfff9387226e8e623e515e", "burn_block_height": 114, "parent_block_hash": "0xa4643c102a9e0e7ecfa67f11f6c45ca590383fee579a95c683311f7b9f95aee7", "parent_microblock": "0x0000000000000000000000000000000000000000000000000000000000000000", "pox_v1_unlock_height": 104, "pox_v2_unlock_height": 106, "pox_v3_unlock_height": 109, "matured_miner_rewards": [], "parent_burn_block_hash": "0x088c1f183a7d610ce79f752f1243071164f03b545f5dc41b6ce85f5b690c05d3", "parent_index_block_hash": "0x441a9509c45919a673498ff132e175aa181cebd10216dd8f0e6b53443d5e6690", "parent_burn_block_height": 113, "confirmed_microblocks_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "parent_microblock_sequence": 0, "parent_burn_block_timestamp": 1710344076} +134 2024-03-13 15:34:41.362669+00 /new_mempool_tx ["0x8080000000040062b0e91cc557e583c3d1f9dfe468ace76d2f03740000000000000001000000000000012c00018b9ec7603c5fef6727a83afee19a0a1728e0de482182ee2931bfba841a7cd07d7e25ced7c582cce380bc96cab241a074c8cb9429c805fcd34ff44e6d8f757b3403020000000000051a93b082ee51d78faf5cc3d84a1c1591246c4965b000000000000003e800000000000000000000000000000000000000000000000000000000000000000000"] +135 2024-03-13 15:34:42.779901+00 /new_burn_block {"burn_amount": 20000, "burn_block_hash": "0x7072d67ace4bc71d789e33c39399a9531fd394c9ea752a2617fe4427c9999462", "burn_block_height": 115, "reward_recipients": [], "reward_slot_holders": []} +136 2024-03-13 15:34:42.812308+00 /new_block {"events": [{"txid": "0x2b8476ce78071d671a950547f06c9f9356ecc79774d8a4c00ee248b30782ff27", "type": "stx_transfer_event", "committed": true, "event_index": 0, "stx_transfer_event": {"memo": "00000000000000000000000000000000000000000000000000000000000000000000", "amount": "1000", "sender": "ST1HB1T8WRNBYB0Y3T7WXZS38NKKPTBR3EG9EPJKR", "recipient": "ST29V10QEA7BRZBTWRFC4M70NJ4J6RJB5P1C6EE84"}}], "block_hash": "0xd3a56a93283b8dad4da466067db1ce2b04b9732768133f23f241b5133d7c147a", "miner_txid": "0xd08078f4ffe3ab27e99af067a0e3bf8b9b992c13f21fbb543140fc0e5109dc80", "block_height": 12, "transactions": [{"txid": "0x52d557aef16f9c1ec2246af3d6bae1e74b39873d049a0c28c1a8df5e3366eeb2", "raw_tx": "0x808000000004001dc27eba0247f8cc9575e7d45e50a0bc7e72427d000000000000000b000000000000000000019a4c2f0f838ad5af6161d18c0fb537f4653370a9b46f84f7cb6105867d6d07da1b1c325b8f767f7893804112219d9d954a56fe316e666e8bee3f19979d12a0e4010200000000050000000000000000000000000000000000000000000000000000000000000000051a2f438f17611dd028079f201915ccfcbcbfe49991", "status": "success", "tx_index": 0, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": null, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}, {"txid": "0x2b8476ce78071d671a950547f06c9f9356ecc79774d8a4c00ee248b30782ff27", "raw_tx": "0x8080000000040062b0e91cc557e583c3d1f9dfe468ace76d2f03740000000000000001000000000000012c00018b9ec7603c5fef6727a83afee19a0a1728e0de482182ee2931bfba841a7cd07d7e25ced7c582cce380bc96cab241a074c8cb9429c805fcd34ff44e6d8f757b3403020000000000051a93b082ee51d78faf5cc3d84a1c1591246c4965b000000000000003e800000000000000000000000000000000000000000000000000000000000000000000", "status": "success", "tx_index": 1, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": null, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}], "anchored_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "burn_block_hash": "0x7072d67ace4bc71d789e33c39399a9531fd394c9ea752a2617fe4427c9999462", "burn_block_time": 1710344082, "index_block_hash": "0x9d1a1c9205bb969d3fac7007406ea40bbd8f92b3854702567e39529ca4678be2", "burn_block_height": 115, "parent_block_hash": "0xd35be124c76b4ebdad5d4d4379eae42aea25099c786f9074473e2495cb1229dd", "parent_microblock": "0x0000000000000000000000000000000000000000000000000000000000000000", "pox_v1_unlock_height": 104, "pox_v2_unlock_height": 106, "pox_v3_unlock_height": 109, "matured_miner_rewards": [], "parent_burn_block_hash": "0x226c52b2d279e50e80c6a1af1dce3da9d80502703fa440a3ba4a487dbd84e913", "parent_index_block_hash": "0x3515693952e0076c6d1a416a8e4b8ca433c6610adfdfff9387226e8e623e515e", "parent_burn_block_height": 114, "confirmed_microblocks_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "parent_microblock_sequence": 0, "parent_burn_block_timestamp": 1710344079} +137 2024-03-13 15:34:45.427778+00 /new_mempool_tx ["0x8080000000040093b082ee51d78faf5cc3d84a1c1591246c4965b00000000000000002000000000000012c000117960ba4440c126c27d6a748ec4d8d1588c08ca3d09f59b41ea7f69eb488c69c602d38d841833a608ef43a6aecfe174eb2dba0f51392b555a412e74f070352d703020000000000051aad08341feab8ea788ef8045c343d21dcedc4483e00000000000003e800000000000000000000000000000000000000000000000000000000000000000000"] +138 2024-03-13 15:34:45.741884+00 /new_burn_block {"burn_amount": 20000, "burn_block_hash": "0x047eb3233860eab5f3e094c7521e266e3f08156edec95d1f0b099a6fed775f5b", "burn_block_height": 116, "reward_recipients": [], "reward_slot_holders": []} +139 2024-03-13 15:34:45.81461+00 /new_block {"events": [{"txid": "0xb6704e9c9937f23053d624001c030d122bdfa4283bc742de46318a853165370d", "type": "stx_transfer_event", "committed": true, "event_index": 0, "stx_transfer_event": {"memo": "00000000000000000000000000000000000000000000000000000000000000000000", "amount": "1000", "sender": "ST29V10QEA7BRZBTWRFC4M70NJ4J6RJB5P1C6EE84", "recipient": "ST2PGGD0ZXAWEMY4EZ025RD1X47EEVH287SQKA8BC"}}], "block_hash": "0xef29a3d543bdb0b7f76751eebe14101a9a58dac54f18e6df45bfc4f816fb46f8", "miner_txid": "0xe1383cf1d2bebbcc941ad39052e343a5e38ec72614d5cb74dacd50b0a070db63", "reward_set": {"signers": [{"weight": 3, "signing_key": "029874497a7952483aa23890e9d0898696f33864d3df90939930a1f45421fe3b09", "stacked_amt": "457500900000000000"}, {"weight": 1, "signing_key": "02dcde79b38787b72d8e5e0af81cffa802f0a3c8452d6b46e08859165f49a72736", "stacked_amt": "228750450000000000"}, {"weight": 5, "signing_key": "038e3c4529395611be9abf6fa3b6987e81d402385e3d605a073f42f407565a4a3d", "stacked_amt": "686251350000000000"}], "start_cycle_state": {"missed_reward_slots": []}, "pox_ustx_threshold": "137250270000000000", "rewarded_addresses": [{"Standard": [{"bytes": "5146f0566e9796602a677d895852e9c0fe5686f7", "version": 26}, "SerializeP2PKH"]}, {"Standard": [{"bytes": "31ef5ee9a226a792b93f2bfbfbc54f523eba7818", "version": 26}, "SerializeP2PKH"]}, {"Standard": [{"bytes": "31ef5ee9a226a792b93f2bfbfbc54f523eba7818", "version": 26}, "SerializeP2PKH"]}, {"Standard": [{"bytes": "31ef5ee9a226a792b93f2bfbfbc54f523eba7818", "version": 26}, "SerializeP2PKH"]}, {"Standard": [{"bytes": "31ef5ee9a226a792b93f2bfbfbc54f523eba7818", "version": 26}, "SerializeP2PKH"]}, {"Standard": [{"bytes": "31ef5ee9a226a792b93f2bfbfbc54f523eba7818", "version": 26}, "SerializeP2PKH"]}, {"Standard": [{"bytes": "1e959caa6dd5bede3575cd3847ba81e56180b214", "version": 26}, "SerializeP2PKH"]}, {"Standard": [{"bytes": "1e959caa6dd5bede3575cd3847ba81e56180b214", "version": 26}, "SerializeP2PKH"]}, {"Standard": [{"bytes": "1e959caa6dd5bede3575cd3847ba81e56180b214", "version": 26}, "SerializeP2PKH"]}]}, "block_height": 13, "cycle_number": 12, "transactions": [{"txid": "0xc2a797189c31592a6f69456ef83a1a8c4611f66ee3cea38ab21fdfa2195627eb", "raw_tx": "0x808000000004001dc27eba0247f8cc9575e7d45e50a0bc7e72427d000000000000000c0000000000000000000010aaafc6a914bfb106277101c0255caa5be4f6b3e7e8689dbb552d8189e9d828110cd5fa81982600e05d45dc0171b75cd722487705adfbbd5d35d3406c7d7578010200000000050000000000000000000000000000000000000000000000000000000000000000051a2f438f17611dd028079f201915ccfcbcbfe49991", "status": "success", "tx_index": 0, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": null, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}, {"txid": "0xb6704e9c9937f23053d624001c030d122bdfa4283bc742de46318a853165370d", "raw_tx": "0x8080000000040093b082ee51d78faf5cc3d84a1c1591246c4965b00000000000000002000000000000012c000117960ba4440c126c27d6a748ec4d8d1588c08ca3d09f59b41ea7f69eb488c69c602d38d841833a608ef43a6aecfe174eb2dba0f51392b555a412e74f070352d703020000000000051aad08341feab8ea788ef8045c343d21dcedc4483e00000000000003e800000000000000000000000000000000000000000000000000000000000000000000", "status": "success", "tx_index": 1, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": null, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}], "anchored_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "burn_block_hash": "0x047eb3233860eab5f3e094c7521e266e3f08156edec95d1f0b099a6fed775f5b", "burn_block_time": 1710344085, "index_block_hash": "0x62d06851fe03f17cb45a488ae70bd8e0c5c308c523f37814ad4df36bd2108713", "burn_block_height": 116, "parent_block_hash": "0xd3a56a93283b8dad4da466067db1ce2b04b9732768133f23f241b5133d7c147a", "parent_microblock": "0x0000000000000000000000000000000000000000000000000000000000000000", "pox_v1_unlock_height": 104, "pox_v2_unlock_height": 106, "pox_v3_unlock_height": 109, "matured_miner_rewards": [], "parent_burn_block_hash": "0x7072d67ace4bc71d789e33c39399a9531fd394c9ea752a2617fe4427c9999462", "parent_index_block_hash": "0x9d1a1c9205bb969d3fac7007406ea40bbd8f92b3854702567e39529ca4678be2", "parent_burn_block_height": 115, "confirmed_microblocks_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "parent_microblock_sequence": 0, "parent_burn_block_timestamp": 1710344082} +140 2024-03-13 15:34:48.811467+00 /new_burn_block {"burn_amount": 20000, "burn_block_hash": "0x05fb2b0f7a6a8265624afa2ae6626f93d5de47dd021e3e080eb8c35804f8fbd2", "burn_block_height": 117, "reward_recipients": [], "reward_slot_holders": []} +141 2024-03-13 15:34:48.845635+00 /new_block {"events": [], "block_hash": "0xc668b4732c3da8ed5e65c133747845c6126062f27d1c47aedee6d70f39949e53", "miner_txid": "0xe9dbfd032a29b02023adec0f39a41c253b97725b0fd2c01fb54fd68154a48836", "block_height": 14, "transactions": [{"txid": "0xbf75c3379deb676782ef507075a45f5a82710c8869af2e099413e9120521f986", "raw_tx": "0x808000000004001dc27eba0247f8cc9575e7d45e50a0bc7e72427d000000000000000d00000000000000000000740cdd2253cff93c14e8d436768ca0549e2186c80eff61f82ce62f803e0e115d2cfab040f8d9ce24fe42863d3210ededbea729e089fdeaf7aedffff1ca548d44010200000000050000000000000000000000000000000000000000000000000000000000000000051a2f438f17611dd028079f201915ccfcbcbfe49991", "status": "success", "tx_index": 0, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": null, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}], "anchored_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "burn_block_hash": "0x05fb2b0f7a6a8265624afa2ae6626f93d5de47dd021e3e080eb8c35804f8fbd2", "burn_block_time": 1710344088, "index_block_hash": "0xa930848c537150cecfc5b35be7e207cc0a9305b324b153b563f4afd2a44de068", "burn_block_height": 117, "parent_block_hash": "0xef29a3d543bdb0b7f76751eebe14101a9a58dac54f18e6df45bfc4f816fb46f8", "parent_microblock": "0x0000000000000000000000000000000000000000000000000000000000000000", "pox_v1_unlock_height": 104, "pox_v2_unlock_height": 106, "pox_v3_unlock_height": 109, "matured_miner_rewards": [], "parent_burn_block_hash": "0x047eb3233860eab5f3e094c7521e266e3f08156edec95d1f0b099a6fed775f5b", "parent_index_block_hash": "0x62d06851fe03f17cb45a488ae70bd8e0c5c308c523f37814ad4df36bd2108713", "parent_burn_block_height": 116, "confirmed_microblocks_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "parent_microblock_sequence": 0, "parent_burn_block_timestamp": 1710344085} +142 2024-03-13 15:34:49.482207+00 /new_mempool_tx ["0x80800000000400ad08341feab8ea788ef8045c343d21dcedc4483e0000000000000002000000000000012c0000403cd6c189e856f07ba4f309b08254c4347a96f55ec7de68aef0d3807d74ab956b63d967cc17575701bda98dc0303fe5575d391e4942a08c1fb5885facfb56ab03020000000000051a62b0e91cc557e583c3d1f9dfe468ace76d2f037400000000000003e800000000000000000000000000000000000000000000000000000000000000000000"] +143 2024-03-13 15:34:50.089046+00 /new_mempool_tx ["0x808000000004001e959caa6dd5bede3575cd3847ba81e56180b2140000000000000001000000000000271000012d9c23c270c787109e124916ac88fe91707cdf404d2dc1314a3c4a37aaa814df7a1b11964322be6f07bf57267e6cc7607ebf35538812ba2470c29c3e440f4e8d030100000000021a00000000000000000000000000000000000000000e7369676e6572732d766f74696e671d766f74652d666f722d6167677265676174652d7075626c69632d6b6579000000040100000000000000000000000000000000020000002102dbfbcd3bdfa62e695dc7a3bf8a0ab37f796398712907e14a6c1298162b657e3d0100000000000000000000000000000001010000000000000000000000000000000c"] +144 2024-03-13 15:34:50.143394+00 /new_mempool_tx ["0x808000000004005146f0566e9796602a677d895852e9c0fe5686f7000000000000000100000000000027100000f065495e1eab043b23c901021c00007da546079a2941433c159c0614c3da277546614862eb5db85808719faab0a4e299dbcad2402d4fe362b60cbb9373b0a685030100000000021a00000000000000000000000000000000000000000e7369676e6572732d766f74696e671d766f74652d666f722d6167677265676174652d7075626c69632d6b6579000000040100000000000000000000000000000001020000002102dbfbcd3bdfa62e695dc7a3bf8a0ab37f796398712907e14a6c1298162b657e3d0100000000000000000000000000000001010000000000000000000000000000000c"] +145 2024-03-13 15:34:50.157716+00 /new_mempool_tx ["0x8080000000040031ef5ee9a226a792b93f2bfbfbc54f523eba78180000000000000001000000000000271000002f7766c45ee316f190511a3bb162ecbfa1086c45cb5d03490989f015b5245af342b2697ee32a394b03ba6153430cef6da0fec40acd447e4a7a30ad9ec8fb7404030100000000021a00000000000000000000000000000000000000000e7369676e6572732d766f74696e671d766f74652d666f722d6167677265676174652d7075626c69632d6b6579000000040100000000000000000000000000000002020000002102dbfbcd3bdfa62e695dc7a3bf8a0ab37f796398712907e14a6c1298162b657e3d0100000000000000000000000000000001010000000000000000000000000000000c"] +146 2024-03-13 15:34:51.840285+00 /new_burn_block {"burn_amount": 20000, "burn_block_hash": "0x1c7083aefcde088635d797e1a9907f5173ed225f9b9f95dc1e64bcb93131d894", "burn_block_height": 118, "reward_recipients": [], "reward_slot_holders": []} +147 2024-03-13 15:34:51.874257+00 /new_block {"events": [{"txid": "0x91b6d3b43c107cf259b4c69ffb790aa02d47978e5dcab313ef19fb97652c1e0f", "type": "stx_transfer_event", "committed": true, "event_index": 0, "stx_transfer_event": {"memo": "00000000000000000000000000000000000000000000000000000000000000000000", "amount": "1000", "sender": "ST2PGGD0ZXAWEMY4EZ025RD1X47EEVH287SQKA8BC", "recipient": "ST1HB1T8WRNBYB0Y3T7WXZS38NKKPTBR3EG9EPJKR"}}], "block_hash": "0x1b1d6ebaeddc0d4177ab6bf9d732e9ec89ee0ba82b4bd504502a43eaa0a2fbe4", "miner_txid": "0xbef3b2f389abb67b920af4accbdcf58a474a89e7a28e82a431dc02b06bcbadc9", "block_height": 15, "transactions": [{"txid": "0xb59d79e9d567492c99b53cfa6a2fb2e7588a9edbd1c9c99c8791555638f74bc4", "raw_tx": "0x808000000004001dc27eba0247f8cc9575e7d45e50a0bc7e72427d000000000000000e00000000000000000001bd9eaccaeaa773b78eaee96ffc714ffeb683123191392f15d5bfefd566d712614cfab09162dcc78b090dc4d0f864e2eae2cdf8dc50c6fd88426cf4404619bf87010200000000050000000000000000000000000000000000000000000000000000000000000000051a2f438f17611dd028079f201915ccfcbcbfe49991", "status": "success", "tx_index": 0, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": null, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}, {"txid": "0x91b6d3b43c107cf259b4c69ffb790aa02d47978e5dcab313ef19fb97652c1e0f", "raw_tx": "0x80800000000400ad08341feab8ea788ef8045c343d21dcedc4483e0000000000000002000000000000012c0000403cd6c189e856f07ba4f309b08254c4347a96f55ec7de68aef0d3807d74ab956b63d967cc17575701bda98dc0303fe5575d391e4942a08c1fb5885facfb56ab03020000000000051a62b0e91cc557e583c3d1f9dfe468ace76d2f037400000000000003e800000000000000000000000000000000000000000000000000000000000000000000", "status": "success", "tx_index": 1, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": null, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}], "anchored_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "burn_block_hash": "0x1c7083aefcde088635d797e1a9907f5173ed225f9b9f95dc1e64bcb93131d894", "burn_block_time": 1710344091, "index_block_hash": "0x76d1cbcb4ff69a024d0a8de2beecc26133cdecd685b7a04176a5a98c73fbaf14", "burn_block_height": 118, "parent_block_hash": "0xc668b4732c3da8ed5e65c133747845c6126062f27d1c47aedee6d70f39949e53", "parent_microblock": "0x0000000000000000000000000000000000000000000000000000000000000000", "pox_v1_unlock_height": 104, "pox_v2_unlock_height": 106, "pox_v3_unlock_height": 109, "matured_miner_rewards": [], "parent_burn_block_hash": "0x05fb2b0f7a6a8265624afa2ae6626f93d5de47dd021e3e080eb8c35804f8fbd2", "parent_index_block_hash": "0xa930848c537150cecfc5b35be7e207cc0a9305b324b153b563f4afd2a44de068", "parent_burn_block_height": 117, "confirmed_microblocks_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "parent_microblock_sequence": 0, "parent_burn_block_timestamp": 1710344088} +148 2024-03-13 15:34:53.528979+00 /new_mempool_tx ["0x8080000000040062b0e91cc557e583c3d1f9dfe468ace76d2f03740000000000000002000000000000012c00014561d2d991ed8b76d304e1a73a650cabb6bb9edd8386dec06afd0373ac6cfa1b002757bbf57ecbe9d2c1aa15e6875b3efd4c1dc1b7305dd98baad8a6fdc2b23b03020000000000051a93b082ee51d78faf5cc3d84a1c1591246c4965b000000000000003e800000000000000000000000000000000000000000000000000000000000000000000"] +149 2024-03-13 15:34:54.882729+00 /new_burn_block {"burn_amount": 20000, "burn_block_hash": "0x1b5dd389f09edf05fb60ea35286eb5a39d66748e8cd4a6bd6cfb74edcc83490e", "burn_block_height": 119, "reward_recipients": [], "reward_slot_holders": []} +150 2024-03-13 15:34:54.942829+00 /new_block {"events": [{"txid": "0xc6b68e63c98ab67aadf6b3261821d73860c211aab1b1058909aceeabe68095f5", "type": "contract_event", "committed": true, "event_index": 3, "contract_event": {"topic": "print", "value": {"Tuple": {"data_map": {"key": {"Sequence": {"Buffer": {"data": [2, 219, 251, 205, 59, 223, 166, 46, 105, 93, 199, 163, 191, 138, 10, 179, 127, 121, 99, 152, 113, 41, 7, 225, 74, 108, 18, 152, 22, 43, 101, 126, 61]}}}, "event": {"Sequence": {"String": {"ASCII": {"data": [97, 112, 112, 114, 111, 118, 101, 100, 45, 97, 103, 103, 114, 101, 103, 97, 116, 101, 45, 112, 117, 98, 108, 105, 99, 45, 107, 101, 121]}}}}, "round": {"UInt": 1}, "reward-cycle": {"UInt": 12}}, "type_signature": {"type_map": {"key": {"SequenceType": {"BufferType": 33}}, "event": {"SequenceType": {"StringType": {"ASCII": 29}}}, "round": "UIntType", "reward-cycle": "UIntType"}}}}, "raw_value": "0x0c00000004056576656e740d0000001d617070726f7665642d6167677265676174652d7075626c69632d6b6579036b6579020000002102dbfbcd3bdfa62e695dc7a3bf8a0ab37f796398712907e14a6c1298162b657e3d0c7265776172642d6379636c65010000000000000000000000000000000c05726f756e640100000000000000000000000000000001", "contract_identifier": "ST000000000000000000002AMW42H.signers-voting"}}, {"txid": "0x47a28b2273c91bec3be5d53424244f4d4e4beb97e294514e340f4b3cd6d391ce", "type": "contract_event", "committed": true, "event_index": 1, "contract_event": {"topic": "print", "value": {"Tuple": {"data_map": {"key": {"Sequence": {"Buffer": {"data": [2, 219, 251, 205, 59, 223, 166, 46, 105, 93, 199, 163, 191, 138, 10, 179, 127, 121, 99, 152, 113, 41, 7, 225, 74, 108, 18, 152, 22, 43, 101, 126, 61]}}}, "event": {"Sequence": {"String": {"ASCII": {"data": [118, 111, 116, 101, 100]}}}}, "round": {"UInt": 1}, "signer": {"Principal": {"Standard": [26, [81, 70, 240, 86, 110, 151, 150, 96, 42, 103, 125, 137, 88, 82, 233, 192, 254, 86, 134, 247]]}}, "new-total": {"UInt": 6}, "reward-cycle": {"UInt": 12}}, "type_signature": {"type_map": {"key": {"SequenceType": {"BufferType": 33}}, "event": {"SequenceType": {"StringType": {"ASCII": 5}}}, "round": "UIntType", "signer": "PrincipalType", "new-total": "UIntType", "reward-cycle": "UIntType"}}}}, "raw_value": "0x0c00000006056576656e740d00000005766f746564036b6579020000002102dbfbcd3bdfa62e695dc7a3bf8a0ab37f796398712907e14a6c1298162b657e3d096e65772d746f74616c01000000000000000000000000000000060c7265776172642d6379636c65010000000000000000000000000000000c05726f756e640100000000000000000000000000000001067369676e6572051a5146f0566e9796602a677d895852e9c0fe5686f7", "contract_identifier": "ST000000000000000000002AMW42H.signers-voting"}}, {"txid": "0x9b5f1445cc7b1d336bb121a3b883587d463a3532522261d13fbcffce81c158cf", "type": "contract_event", "committed": true, "event_index": 0, "contract_event": {"topic": "print", "value": {"Tuple": {"data_map": {"key": {"Sequence": {"Buffer": {"data": [2, 219, 251, 205, 59, 223, 166, 46, 105, 93, 199, 163, 191, 138, 10, 179, 127, 121, 99, 152, 113, 41, 7, 225, 74, 108, 18, 152, 22, 43, 101, 126, 61]}}}, "event": {"Sequence": {"String": {"ASCII": {"data": [118, 111, 116, 101, 100]}}}}, "round": {"UInt": 1}, "signer": {"Principal": {"Standard": [26, [49, 239, 94, 233, 162, 38, 167, 146, 185, 63, 43, 251, 251, 197, 79, 82, 62, 186, 120, 24]]}}, "new-total": {"UInt": 5}, "reward-cycle": {"UInt": 12}}, "type_signature": {"type_map": {"key": {"SequenceType": {"BufferType": 33}}, "event": {"SequenceType": {"StringType": {"ASCII": 5}}}, "round": "UIntType", "signer": "PrincipalType", "new-total": "UIntType", "reward-cycle": "UIntType"}}}}, "raw_value": "0x0c00000006056576656e740d00000005766f746564036b6579020000002102dbfbcd3bdfa62e695dc7a3bf8a0ab37f796398712907e14a6c1298162b657e3d096e65772d746f74616c01000000000000000000000000000000050c7265776172642d6379636c65010000000000000000000000000000000c05726f756e640100000000000000000000000000000001067369676e6572051a31ef5ee9a226a792b93f2bfbfbc54f523eba7818", "contract_identifier": "ST000000000000000000002AMW42H.signers-voting"}}, {"txid": "0xc6b68e63c98ab67aadf6b3261821d73860c211aab1b1058909aceeabe68095f5", "type": "contract_event", "committed": true, "event_index": 2, "contract_event": {"topic": "print", "value": {"Tuple": {"data_map": {"key": {"Sequence": {"Buffer": {"data": [2, 219, 251, 205, 59, 223, 166, 46, 105, 93, 199, 163, 191, 138, 10, 179, 127, 121, 99, 152, 113, 41, 7, 225, 74, 108, 18, 152, 22, 43, 101, 126, 61]}}}, "event": {"Sequence": {"String": {"ASCII": {"data": [118, 111, 116, 101, 100]}}}}, "round": {"UInt": 1}, "signer": {"Principal": {"Standard": [26, [30, 149, 156, 170, 109, 213, 190, 222, 53, 117, 205, 56, 71, 186, 129, 229, 97, 128, 178, 20]]}}, "new-total": {"UInt": 9}, "reward-cycle": {"UInt": 12}}, "type_signature": {"type_map": {"key": {"SequenceType": {"BufferType": 33}}, "event": {"SequenceType": {"StringType": {"ASCII": 5}}}, "round": "UIntType", "signer": "PrincipalType", "new-total": "UIntType", "reward-cycle": "UIntType"}}}}, "raw_value": "0x0c00000006056576656e740d00000005766f746564036b6579020000002102dbfbcd3bdfa62e695dc7a3bf8a0ab37f796398712907e14a6c1298162b657e3d096e65772d746f74616c01000000000000000000000000000000090c7265776172642d6379636c65010000000000000000000000000000000c05726f756e640100000000000000000000000000000001067369676e6572051a1e959caa6dd5bede3575cd3847ba81e56180b214", "contract_identifier": "ST000000000000000000002AMW42H.signers-voting"}}], "block_hash": "0xc78a4e6384217c3b61b76221756c3ddec58b9a2e7c00fc7f4754af4a3160513a", "miner_txid": "0xea99428728cb5c9e1adeee97bbe9da54d1ab5d4333847d2aa06ad194df26682c", "block_height": 16, "transactions": [{"txid": "0x5323d9c8cd4660c700b82247b1cb42076c6cb7e7273542a18b4fb8afafd4b9fd", "raw_tx": "0x808000000004001dc27eba0247f8cc9575e7d45e50a0bc7e72427d000000000000000f000000000000000000009e0f31c5875abce36d4f129ab984a5fd04ec750bf0940682c6883654a72ac4d93d509393ac1833032921e9e0d959e78432719005816396827c1cdac3270fb1e4010200000000050000000000000000000000000000000000000000000000000000000000000000051a2f438f17611dd028079f201915ccfcbcbfe49991", "status": "success", "tx_index": 0, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": null, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}, {"txid": "0x9b5f1445cc7b1d336bb121a3b883587d463a3532522261d13fbcffce81c158cf", "raw_tx": "0x8080000000040031ef5ee9a226a792b93f2bfbfbc54f523eba78180000000000000001000000000000271000002f7766c45ee316f190511a3bb162ecbfa1086c45cb5d03490989f015b5245af342b2697ee32a394b03ba6153430cef6da0fec40acd447e4a7a30ad9ec8fb7404030100000000021a00000000000000000000000000000000000000000e7369676e6572732d766f74696e671d766f74652d666f722d6167677265676174652d7075626c69632d6b6579000000040100000000000000000000000000000002020000002102dbfbcd3bdfa62e695dc7a3bf8a0ab37f796398712907e14a6c1298162b657e3d0100000000000000000000000000000001010000000000000000000000000000000c", "status": "success", "tx_index": 1, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": null, "execution_cost": {"runtime": 78441, "read_count": 21, "read_length": 16148, "write_count": 5, "write_length": 449}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}, {"txid": "0x47a28b2273c91bec3be5d53424244f4d4e4beb97e294514e340f4b3cd6d391ce", "raw_tx": "0x808000000004005146f0566e9796602a677d895852e9c0fe5686f7000000000000000100000000000027100000f065495e1eab043b23c901021c00007da546079a2941433c159c0614c3da277546614862eb5db85808719faab0a4e299dbcad2402d4fe362b60cbb9373b0a685030100000000021a00000000000000000000000000000000000000000e7369676e6572732d766f74696e671d766f74652d666f722d6167677265676174652d7075626c69632d6b6579000000040100000000000000000000000000000001020000002102dbfbcd3bdfa62e695dc7a3bf8a0ab37f796398712907e14a6c1298162b657e3d0100000000000000000000000000000001010000000000000000000000000000000c", "status": "success", "tx_index": 2, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": null, "execution_cost": {"runtime": 59831, "read_count": 15, "read_length": 13129, "write_count": 3, "write_length": 377}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}, {"txid": "0xc6b68e63c98ab67aadf6b3261821d73860c211aab1b1058909aceeabe68095f5", "raw_tx": "0x808000000004001e959caa6dd5bede3575cd3847ba81e56180b2140000000000000001000000000000271000012d9c23c270c787109e124916ac88fe91707cdf404d2dc1314a3c4a37aaa814df7a1b11964322be6f07bf57267e6cc7607ebf35538812ba2470c29c3e440f4e8d030100000000021a00000000000000000000000000000000000000000e7369676e6572732d766f74696e671d766f74652d666f722d6167677265676174652d7075626c69632d6b6579000000040100000000000000000000000000000000020000002102dbfbcd3bdfa62e695dc7a3bf8a0ab37f796398712907e14a6c1298162b657e3d0100000000000000000000000000000001010000000000000000000000000000000c", "status": "success", "tx_index": 3, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": null, "execution_cost": {"runtime": 68726, "read_count": 16, "read_length": 13129, "write_count": 4, "write_length": 434}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}], "anchored_cost": {"runtime": 206998, "read_count": 52, "read_length": 42406, "write_count": 12, "write_length": 1260}, "burn_block_hash": "0x1b5dd389f09edf05fb60ea35286eb5a39d66748e8cd4a6bd6cfb74edcc83490e", "burn_block_time": 1710344094, "index_block_hash": "0xfa7736d98707064c9bee9d8d6c67227432619698fb73ebe4a5519a2b26416b58", "burn_block_height": 119, "parent_block_hash": "0x1b1d6ebaeddc0d4177ab6bf9d732e9ec89ee0ba82b4bd504502a43eaa0a2fbe4", "parent_microblock": "0x0000000000000000000000000000000000000000000000000000000000000000", "pox_v1_unlock_height": 104, "pox_v2_unlock_height": 106, "pox_v3_unlock_height": 109, "matured_miner_rewards": [], "parent_burn_block_hash": "0x1c7083aefcde088635d797e1a9907f5173ed225f9b9f95dc1e64bcb93131d894", "parent_index_block_hash": "0x76d1cbcb4ff69a024d0a8de2beecc26133cdecd685b7a04176a5a98c73fbaf14", "parent_burn_block_height": 118, "confirmed_microblocks_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "parent_microblock_sequence": 0, "parent_burn_block_timestamp": 1710344091} +151 2024-03-13 15:34:57.908999+00 /new_burn_block {"burn_amount": 20000, "burn_block_hash": "0x097444bf5e5489705758cdab8cd262cd33c45dd803f3271d4fa66dfdfc9921c4", "burn_block_height": 120, "reward_recipients": [], "reward_slot_holders": []} +152 2024-03-13 15:34:57.939473+00 /new_block {"events": [{"txid": "0x0b7d62c66cf1e7e1ef5af57cc4f4498f3145036448d5749427a7c8fe984de8ce", "type": "stx_transfer_event", "committed": true, "event_index": 0, "stx_transfer_event": {"memo": "00000000000000000000000000000000000000000000000000000000000000000000", "amount": "1000", "sender": "ST1HB1T8WRNBYB0Y3T7WXZS38NKKPTBR3EG9EPJKR", "recipient": "ST29V10QEA7BRZBTWRFC4M70NJ4J6RJB5P1C6EE84"}}], "block_hash": "0xa35ea926a58392a5fc5aeaafdaaeeabfbb0062d3413754d4092899c2c97797c1", "miner_txid": "0x90820a9dd840ecf39782ca793020634e8e27cbcb0cf90085d67540ea0290a42b", "block_height": 17, "transactions": [{"txid": "0x0e9d58ac2167b3f181327b9e2eb13b5d81ef750a4a23157ea2f44603cd385960", "raw_tx": "0x808000000004001dc27eba0247f8cc9575e7d45e50a0bc7e72427d000000000000001000000000000000000000e0270130f52a17c7eb8c8614038563ca92ea477f7041505f50b7220a1e9616035dc2ed4bc1ad84b3042ac3f83e0a46f4e21d48756ec6843a4fd87d6a0ec66986010200000000050000000000000000000000000000000000000000000000000000000000000000051a2f438f17611dd028079f201915ccfcbcbfe49991", "status": "success", "tx_index": 0, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": null, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}, {"txid": "0x0b7d62c66cf1e7e1ef5af57cc4f4498f3145036448d5749427a7c8fe984de8ce", "raw_tx": "0x8080000000040062b0e91cc557e583c3d1f9dfe468ace76d2f03740000000000000002000000000000012c00014561d2d991ed8b76d304e1a73a650cabb6bb9edd8386dec06afd0373ac6cfa1b002757bbf57ecbe9d2c1aa15e6875b3efd4c1dc1b7305dd98baad8a6fdc2b23b03020000000000051a93b082ee51d78faf5cc3d84a1c1591246c4965b000000000000003e800000000000000000000000000000000000000000000000000000000000000000000", "status": "success", "tx_index": 1, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": null, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}], "anchored_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "burn_block_hash": "0x097444bf5e5489705758cdab8cd262cd33c45dd803f3271d4fa66dfdfc9921c4", "burn_block_time": 1710344097, "index_block_hash": "0xb5699deefd74ff01467fed5832ae82d3ccd7fecdcf577e085ed969e4b7a43c18", "burn_block_height": 120, "parent_block_hash": "0xc78a4e6384217c3b61b76221756c3ddec58b9a2e7c00fc7f4754af4a3160513a", "parent_microblock": "0x0000000000000000000000000000000000000000000000000000000000000000", "pox_v1_unlock_height": 104, "pox_v2_unlock_height": 106, "pox_v3_unlock_height": 109, "matured_miner_rewards": [], "parent_burn_block_hash": "0x1b5dd389f09edf05fb60ea35286eb5a39d66748e8cd4a6bd6cfb74edcc83490e", "parent_index_block_hash": "0xfa7736d98707064c9bee9d8d6c67227432619698fb73ebe4a5519a2b26416b58", "parent_burn_block_height": 119, "confirmed_microblocks_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "parent_microblock_sequence": 0, "parent_burn_block_timestamp": 1710344094} +153 2024-03-13 15:34:58.853679+00 /new_mempool_tx ["0x808000000004001e959caa6dd5bede3575cd3847ba81e56180b214000000000000000200000000000003ec0000ff309412454809163ade1d4dbd543384dccc1a69280eec09eb08840a17ec323c15d7564228dd3bf694be1533f41e92524157c1488daf5af5bf85f7a1f3837b1f030200000000021a000000000000000000000000000000000000000005706f782d340c737461636b2d657874656e640000000601000000000000000000000000000000010c000000020968617368627974657302000000141e959caa6dd5bede3575cd3847ba81e56180b2140776657273696f6e0200000001000a02000000416ad81ec914be33270f2504aba8db2bf144b41fe55c2d31e7300c36a9727867611db7f4bcb3fc7c8821e704b260299744cfc9ebc5fab41608cf61f18fee3c43ee000200000021029874497a7952483aa23890e9d0898696f33864d3df90939930a1f45421fe3b0901ffffffffffffffffffffffffffffffff010000000000000000000098854ed1cb10"] +154 2024-03-13 15:34:58.861426+00 /new_mempool_tx ["0x8080000000040031ef5ee9a226a792b93f2bfbfbc54f523eba7818000000000000000200000000000003ed000142dd2e3f82557fb77d7caaa399bf32477ce993e3cc71e7edf69e392cda95897d14eb3d809ab8cb7b909e5b17f5b847fd37cdff73c94a82dcc642187981801ecc030200000000021a000000000000000000000000000000000000000005706f782d340c737461636b2d657874656e640000000601000000000000000000000000000000010c0000000209686173686279746573020000001431ef5ee9a226a792b93f2bfbfbc54f523eba78180776657273696f6e0200000001000a02000000418c09928a40339e801e5a85f1efaeb9423f4cfa12a3842bb8adfc2939a01c78bf464491a113e0793243c25366a29a66f40e6629779a0b38b893f155c1cccbb437000200000021038e3c4529395611be9abf6fa3b6987e81d402385e3d605a073f42f407565a4a3d01ffffffffffffffffffffffffffffffff010000000000000000000015bd21878d3c"] +155 2024-03-13 15:34:58.873194+00 /new_mempool_tx ["0x808000000004005146f0566e9796602a677d895852e9c0fe5686f7000000000000000200000000000003eb000088e3e305c17bb77eb07ec64c8f2116632e0760273706f031b6106d3e7162516442b61100587abb663a9f1b110ef85ac706147f8c31008ec68eb8aedd69acf670030200000000021a000000000000000000000000000000000000000005706f782d340c737461636b2d657874656e640000000601000000000000000000000000000000010c000000020968617368627974657302000000145146f0566e9796602a677d895852e9c0fe5686f70776657273696f6e0200000001000a0200000041cb1fa773ae4a7268b1bbbd227b99cbbe5b1525b8f782bca520f7b3dd1259446c01661a4e21c4970dd9f71cf0757368c6c254e5837b5b2bde8e2e92883df1901c01020000002102dcde79b38787b72d8e5e0af81cffa802f0a3c8452d6b46e08859165f49a7273601ffffffffffffffffffffffffffffffff0100000000000000000000234d8e2f0980"] +156 2024-03-13 15:35:00.960314+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x09e0f154a49d19d47f731c01613b3a76d4ac636d9e369375900f534d6d2c4dd8", "burn_block_height": 121, "reward_recipients": [{"amt": 10000, "recipient": "mk4zAE1iVWf5PJAgeX83rSXnzF5zQBiqf1"}, {"amt": 10000, "recipient": "mnvi1WQb3cm2QMeeKe6G9D7L1GsjmmGTda"}], "reward_slot_holders": ["mnvi1WQb3cm2QMeeKe6G9D7L1GsjmmGTda", "mk4zAE1iVWf5PJAgeX83rSXnzF5zQBiqf1"]} +157 2024-03-13 15:35:01.65752+00 /new_mempool_tx ["0x8080000000040093b082ee51d78faf5cc3d84a1c1591246c4965b00000000000000003000000000000012c00002d6568d384364371a519128bff6fe4687fa794bd508861e5cd62ec2796135d087fc6e1109213c7b992e0b7dbec0af2afb380082c2e0069e4fe4531c948d4f7b603020000000000051aad08341feab8ea788ef8045c343d21dcedc4483e00000000000003e800000000000000000000000000000000000000000000000000000000000000000000"] +158 2024-03-13 15:35:02.069115+00 /new_block {"events": [{"txid": "0xd1ec380c26b77c3637e11ace689b1c522b06f46dcac98956a1b9cb8ce2bf87fb", "type": "stx_lock_event", "committed": true, "event_index": 1, "stx_lock_event": {"locked_amount": "457500900000000000", "unlock_height": "140", "locked_address": "STF9B75ADQAVXQHNEQ6KGHXTG7JP305J2GRWF3A2", "contract_identifier": "ST000000000000000000002AMW42H.pox-4"}}, {"txid": "0x932452dc2ecd76eafbbfdeacb331d81bb370ef4449e1993db3a128e54fe8a206", "type": "contract_event", "committed": true, "event_index": 2, "contract_event": {"topic": "print", "value": {"Response": {"data": {"Tuple": {"data_map": {"data": {"Tuple": {"data_map": {"auth-id": {"UInt": 23902055533884}, "pox-addr": {"Tuple": {"data_map": {"version": {"Sequence": {"Buffer": {"data": [0]}}}, "hashbytes": {"Sequence": {"Buffer": {"data": [49, 239, 94, 233, 162, 38, 167, 146, 185, 63, 43, 251, 251, 197, 79, 82, 62, 186, 120, 24]}}}}, "type_signature": {"type_map": {"version": {"SequenceType": {"BufferType": 1}}, "hashbytes": {"SequenceType": {"BufferType": 20}}}}}}, "max-amount": {"UInt": 340282366920938500000000000000000000000}, "signer-key": {"Sequence": {"Buffer": {"data": [3, 142, 60, 69, 41, 57, 86, 17, 190, 154, 191, 111, 163, 182, 152, 126, 129, 212, 2, 56, 94, 61, 96, 90, 7, 63, 66, 244, 7, 86, 90, 74, 61]}}}, "signer-sig": {"Optional": {"data": {"Sequence": {"Buffer": {"data": [140, 9, 146, 138, 64, 51, 158, 128, 30, 90, 133, 241, 239, 174, 185, 66, 63, 76, 250, 18, 163, 132, 43, 184, 173, 252, 41, 57, 160, 28, 120, 191, 70, 68, 145, 161, 19, 224, 121, 50, 67, 194, 83, 102, 162, 154, 102, 244, 14, 102, 41, 119, 154, 11, 56, 184, 147, 241, 85, 193, 204, 203, 180, 55, 0]}}}}}, "end-cycle-id": {"Optional": {"data": {"UInt": 14}}}, "extend-count": {"UInt": 1}, "start-cycle-id": {"UInt": 13}, "unlock-burn-height": {"UInt": 140}}, "type_signature": {"type_map": {"auth-id": "UIntType", "pox-addr": {"TupleType": {"type_map": {"version": {"SequenceType": {"BufferType": 1}}, "hashbytes": {"SequenceType": {"BufferType": 20}}}}}, "max-amount": "UIntType", "signer-key": {"SequenceType": {"BufferType": 33}}, "signer-sig": {"OptionalType": {"SequenceType": {"BufferType": 65}}}, "end-cycle-id": {"OptionalType": "UIntType"}, "extend-count": "UIntType", "start-cycle-id": "UIntType", "unlock-burn-height": "UIntType"}}}}, "name": {"Sequence": {"String": {"ASCII": {"data": [115, 116, 97, 99, 107, 45, 101, 120, 116, 101, 110, 100]}}}}, "locked": {"UInt": 686251350000000000}, "balance": {"UInt": 313748649999988000}, "stacker": {"Principal": {"Standard": [26, [49, 239, 94, 233, 162, 38, 167, 146, 185, 63, 43, 251, 251, 197, 79, 82, 62, 186, 120, 24]]}}, "burnchain-unlock-height": {"UInt": 130}}, "type_signature": {"type_map": {"data": {"TupleType": {"type_map": {"auth-id": "UIntType", "pox-addr": {"TupleType": {"type_map": {"version": {"SequenceType": {"BufferType": 1}}, "hashbytes": {"SequenceType": {"BufferType": 20}}}}}, "max-amount": "UIntType", "signer-key": {"SequenceType": {"BufferType": 33}}, "signer-sig": {"OptionalType": {"SequenceType": {"BufferType": 65}}}, "end-cycle-id": {"OptionalType": "UIntType"}, "extend-count": "UIntType", "start-cycle-id": "UIntType", "unlock-burn-height": "UIntType"}}}, "name": {"SequenceType": {"StringType": {"ASCII": 12}}}, "locked": "UIntType", "balance": "UIntType", "stacker": "PrincipalType", "burnchain-unlock-height": "UIntType"}}}}, "committed": true}}, "raw_value": "0x070c000000060762616c616e6365010000000000000000045aa8bc2001f519176275726e636861696e2d756e6c6f636b2d686569676874010000000000000000000000000000008204646174610c0000000907617574682d6964010000000000000000000015bd21878d3c0c656e642d6379636c652d69640a010000000000000000000000000000000e0c657874656e642d636f756e7401000000000000000000000000000000010a6d61782d616d6f756e7401ffffffffffffffffffffffffffffffff08706f782d616464720c0000000209686173686279746573020000001431ef5ee9a226a792b93f2bfbfbc54f523eba78180776657273696f6e0200000001000a7369676e65722d6b65790200000021038e3c4529395611be9abf6fa3b6987e81d402385e3d605a073f42f407565a4a3d0a7369676e65722d7369670a02000000418c09928a40339e801e5a85f1efaeb9423f4cfa12a3842bb8adfc2939a01c78bf464491a113e0793243c25366a29a66f40e6629779a0b38b893f155c1cccbb437000e73746172742d6379636c652d6964010000000000000000000000000000000d12756e6c6f636b2d6275726e2d686569676874010000000000000000000000000000008c066c6f636b656401000000000000000009860df78761dc00046e616d650d0000000c737461636b2d657874656e6407737461636b6572051a31ef5ee9a226a792b93f2bfbfbc54f523eba7818", "contract_identifier": "ST000000000000000000002AMW42H.pox-4"}}, {"txid": "0x94930902b8935c060e31fc5a770b27c75b42ab23f3de2b3be33b10ed986ce8c6", "type": "contract_event", "committed": true, "event_index": 4, "contract_event": {"topic": "print", "value": {"Response": {"data": {"Tuple": {"data_map": {"data": {"Tuple": {"data_map": {"auth-id": {"UInt": 38816004901248}, "pox-addr": {"Tuple": {"data_map": {"version": {"Sequence": {"Buffer": {"data": [0]}}}, "hashbytes": {"Sequence": {"Buffer": {"data": [81, 70, 240, 86, 110, 151, 150, 96, 42, 103, 125, 137, 88, 82, 233, 192, 254, 86, 134, 247]}}}}, "type_signature": {"type_map": {"version": {"SequenceType": {"BufferType": 1}}, "hashbytes": {"SequenceType": {"BufferType": 20}}}}}}, "max-amount": {"UInt": 340282366920938500000000000000000000000}, "signer-key": {"Sequence": {"Buffer": {"data": [2, 220, 222, 121, 179, 135, 135, 183, 45, 142, 94, 10, 248, 28, 255, 168, 2, 240, 163, 200, 69, 45, 107, 70, 224, 136, 89, 22, 95, 73, 167, 39, 54]}}}, "signer-sig": {"Optional": {"data": {"Sequence": {"Buffer": {"data": [203, 31, 167, 115, 174, 74, 114, 104, 177, 187, 189, 34, 123, 153, 203, 190, 91, 21, 37, 184, 247, 130, 188, 165, 32, 247, 179, 221, 18, 89, 68, 108, 1, 102, 26, 78, 33, 196, 151, 13, 217, 247, 28, 240, 117, 115, 104, 198, 194, 84, 229, 131, 123, 91, 43, 222, 142, 46, 146, 136, 61, 241, 144, 28, 1]}}}}}, "end-cycle-id": {"Optional": {"data": {"UInt": 14}}}, "extend-count": {"UInt": 1}, "start-cycle-id": {"UInt": 13}, "unlock-burn-height": {"UInt": 140}}, "type_signature": {"type_map": {"auth-id": "UIntType", "pox-addr": {"TupleType": {"type_map": {"version": {"SequenceType": {"BufferType": 1}}, "hashbytes": {"SequenceType": {"BufferType": 20}}}}}, "max-amount": "UIntType", "signer-key": {"SequenceType": {"BufferType": 33}}, "signer-sig": {"OptionalType": {"SequenceType": {"BufferType": 65}}}, "end-cycle-id": {"OptionalType": "UIntType"}, "extend-count": "UIntType", "start-cycle-id": "UIntType", "unlock-burn-height": "UIntType"}}}}, "name": {"Sequence": {"String": {"ASCII": {"data": [115, 116, 97, 99, 107, 45, 101, 120, 116, 101, 110, 100]}}}}, "locked": {"UInt": 228750450000000000}, "balance": {"UInt": 771249549999988000}, "stacker": {"Principal": {"Standard": [26, [81, 70, 240, 86, 110, 151, 150, 96, 42, 103, 125, 137, 88, 82, 233, 192, 254, 86, 134, 247]]}}, "burnchain-unlock-height": {"UInt": 130}}, "type_signature": {"type_map": {"data": {"TupleType": {"type_map": {"auth-id": "UIntType", "pox-addr": {"TupleType": {"type_map": {"version": {"SequenceType": {"BufferType": 1}}, "hashbytes": {"SequenceType": {"BufferType": 20}}}}}, "max-amount": "UIntType", "signer-key": {"SequenceType": {"BufferType": 33}}, "signer-sig": {"OptionalType": {"SequenceType": {"BufferType": 65}}}, "end-cycle-id": {"OptionalType": "UIntType"}, "extend-count": "UIntType", "start-cycle-id": "UIntType", "unlock-burn-height": "UIntType"}}}, "name": {"SequenceType": {"StringType": {"ASCII": 12}}}, "locked": "UIntType", "balance": "UIntType", "stacker": "PrincipalType", "burnchain-unlock-height": "UIntType"}}}}, "committed": true}}, "raw_value": "0x070c000000060762616c616e63650100000000000000000ab4076124eddd1d176275726e636861696e2d756e6c6f636b2d686569676874010000000000000000000000000000008204646174610c0000000907617574682d69640100000000000000000000234d8e2f09800c656e642d6379636c652d69640a010000000000000000000000000000000e0c657874656e642d636f756e7401000000000000000000000000000000010a6d61782d616d6f756e7401ffffffffffffffffffffffffffffffff08706f782d616464720c000000020968617368627974657302000000145146f0566e9796602a677d895852e9c0fe5686f70776657273696f6e0200000001000a7369676e65722d6b6579020000002102dcde79b38787b72d8e5e0af81cffa802f0a3c8452d6b46e08859165f49a727360a7369676e65722d7369670a0200000041cb1fa773ae4a7268b1bbbd227b99cbbe5b1525b8f782bca520f7b3dd1259446c01661a4e21c4970dd9f71cf0757368c6c254e5837b5b2bde8e2e92883df1901c010e73746172742d6379636c652d6964010000000000000000000000000000000d12756e6c6f636b2d6275726e2d686569676874010000000000000000000000000000008c066c6f636b6564010000000000000000032caf528275f400046e616d650d0000000c737461636b2d657874656e6407737461636b6572051a5146f0566e9796602a677d895852e9c0fe5686f7", "contract_identifier": "ST000000000000000000002AMW42H.pox-4"}}, {"txid": "0xd1ec380c26b77c3637e11ace689b1c522b06f46dcac98956a1b9cb8ce2bf87fb", "type": "contract_event", "committed": true, "event_index": 0, "contract_event": {"topic": "print", "value": {"Response": {"data": {"Tuple": {"data_map": {"data": {"Tuple": {"data_map": {"auth-id": {"UInt": 167698320444176}, "pox-addr": {"Tuple": {"data_map": {"version": {"Sequence": {"Buffer": {"data": [0]}}}, "hashbytes": {"Sequence": {"Buffer": {"data": [30, 149, 156, 170, 109, 213, 190, 222, 53, 117, 205, 56, 71, 186, 129, 229, 97, 128, 178, 20]}}}}, "type_signature": {"type_map": {"version": {"SequenceType": {"BufferType": 1}}, "hashbytes": {"SequenceType": {"BufferType": 20}}}}}}, "max-amount": {"UInt": 340282366920938500000000000000000000000}, "signer-key": {"Sequence": {"Buffer": {"data": [2, 152, 116, 73, 122, 121, 82, 72, 58, 162, 56, 144, 233, 208, 137, 134, 150, 243, 56, 100, 211, 223, 144, 147, 153, 48, 161, 244, 84, 33, 254, 59, 9]}}}, "signer-sig": {"Optional": {"data": {"Sequence": {"Buffer": {"data": [106, 216, 30, 201, 20, 190, 51, 39, 15, 37, 4, 171, 168, 219, 43, 241, 68, 180, 31, 229, 92, 45, 49, 231, 48, 12, 54, 169, 114, 120, 103, 97, 29, 183, 244, 188, 179, 252, 124, 136, 33, 231, 4, 178, 96, 41, 151, 68, 207, 201, 235, 197, 250, 180, 22, 8, 207, 97, 241, 143, 238, 60, 67, 238, 0]}}}}}, "end-cycle-id": {"Optional": {"data": {"UInt": 14}}}, "extend-count": {"UInt": 1}, "start-cycle-id": {"UInt": 13}, "unlock-burn-height": {"UInt": 140}}, "type_signature": {"type_map": {"auth-id": "UIntType", "pox-addr": {"TupleType": {"type_map": {"version": {"SequenceType": {"BufferType": 1}}, "hashbytes": {"SequenceType": {"BufferType": 20}}}}}, "max-amount": "UIntType", "signer-key": {"SequenceType": {"BufferType": 33}}, "signer-sig": {"OptionalType": {"SequenceType": {"BufferType": 65}}}, "end-cycle-id": {"OptionalType": "UIntType"}, "extend-count": "UIntType", "start-cycle-id": "UIntType", "unlock-burn-height": "UIntType"}}}}, "name": {"Sequence": {"String": {"ASCII": {"data": [115, 116, 97, 99, 107, 45, 101, 120, 116, 101, 110, 100]}}}}, "locked": {"UInt": 457500900000000000}, "balance": {"UInt": 542499099999988000}, "stacker": {"Principal": {"Standard": [26, [30, 149, 156, 170, 109, 213, 190, 222, 53, 117, 205, 56, 71, 186, 129, 229, 97, 128, 178, 20]]}}, "burnchain-unlock-height": {"UInt": 130}}, "type_signature": {"type_map": {"data": {"TupleType": {"type_map": {"auth-id": "UIntType", "pox-addr": {"TupleType": {"type_map": {"version": {"SequenceType": {"BufferType": 1}}, "hashbytes": {"SequenceType": {"BufferType": 20}}}}}, "max-amount": "UIntType", "signer-key": {"SequenceType": {"BufferType": 33}}, "signer-sig": {"OptionalType": {"SequenceType": {"BufferType": 65}}}, "end-cycle-id": {"OptionalType": "UIntType"}, "extend-count": "UIntType", "start-cycle-id": "UIntType", "unlock-burn-height": "UIntType"}}}, "name": {"SequenceType": {"StringType": {"ASCII": 12}}}, "locked": "UIntType", "balance": "UIntType", "stacker": "PrincipalType", "burnchain-unlock-height": "UIntType"}}}}, "committed": true}}, "raw_value": "0x070c000000060762616c616e63650100000000000000000787580ea277e91b176275726e636861696e2d756e6c6f636b2d686569676874010000000000000000000000000000008204646174610c0000000907617574682d6964010000000000000000000098854ed1cb100c656e642d6379636c652d69640a010000000000000000000000000000000e0c657874656e642d636f756e7401000000000000000000000000000000010a6d61782d616d6f756e7401ffffffffffffffffffffffffffffffff08706f782d616464720c000000020968617368627974657302000000141e959caa6dd5bede3575cd3847ba81e56180b2140776657273696f6e0200000001000a7369676e65722d6b65790200000021029874497a7952483aa23890e9d0898696f33864d3df90939930a1f45421fe3b090a7369676e65722d7369670a02000000416ad81ec914be33270f2504aba8db2bf144b41fe55c2d31e7300c36a9727867611db7f4bcb3fc7c8821e704b260299744cfc9ebc5fab41608cf61f18fee3c43ee000e73746172742d6379636c652d6964010000000000000000000000000000000d12756e6c6f636b2d6275726e2d686569676874010000000000000000000000000000008c066c6f636b656401000000000000000006595ea504ebe800046e616d650d0000000c737461636b2d657874656e6407737461636b6572051a1e959caa6dd5bede3575cd3847ba81e56180b214", "contract_identifier": "ST000000000000000000002AMW42H.pox-4"}}, {"txid": "0x94930902b8935c060e31fc5a770b27c75b42ab23f3de2b3be33b10ed986ce8c6", "type": "stx_lock_event", "committed": true, "event_index": 5, "stx_lock_event": {"locked_amount": "228750450000000000", "unlock_height": "140", "locked_address": "ST18MDW2PDTBSCR1ACXYRJP2JX70FWNM6YY2VX4SS", "contract_identifier": "ST000000000000000000002AMW42H.pox-4"}}, {"txid": "0x932452dc2ecd76eafbbfdeacb331d81bb370ef4449e1993db3a128e54fe8a206", "type": "stx_lock_event", "committed": true, "event_index": 3, "stx_lock_event": {"locked_amount": "686251350000000000", "unlock_height": "140", "locked_address": "STRYYQQ9M8KAF4NS7WNZQYY59X93XEKR31JP64CP", "contract_identifier": "ST000000000000000000002AMW42H.pox-4"}}], "block_hash": "0x60bd47c142183e32599e080919dead6b174eb448bdafcc80377b0c3365a818e5", "miner_txid": "0x2a47c3edb61e3477e9f3573b39550744901ea462e1878b097e32c0ebc09ae7a5", "block_height": 18, "transactions": [{"txid": "0xdb7bc5ab9162767c1ba5592540d6de482955ad72fb70defa909206610381469f", "raw_tx": "0x808000000004001dc27eba0247f8cc9575e7d45e50a0bc7e72427d000000000000001100000000000000000000fc802db9e5c1231a1d4e450463db9d1cd06bfdc0dfcab866a05d014e9c83abb13c340cd71df1d75c58abcb472818f9bdc25664fd40f95e07939a61d5c329ce7a010200000000050000000000000000000000000000000000000000000000000000000000000000051a2f438f17611dd028079f201915ccfcbcbfe49991", "status": "success", "tx_index": 0, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": null, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}, {"txid": "0xd1ec380c26b77c3637e11ace689b1c522b06f46dcac98956a1b9cb8ce2bf87fb", "raw_tx": "0x808000000004001e959caa6dd5bede3575cd3847ba81e56180b214000000000000000200000000000003ec0000ff309412454809163ade1d4dbd543384dccc1a69280eec09eb08840a17ec323c15d7564228dd3bf694be1533f41e92524157c1488daf5af5bf85f7a1f3837b1f030200000000021a000000000000000000000000000000000000000005706f782d340c737461636b2d657874656e640000000601000000000000000000000000000000010c000000020968617368627974657302000000141e959caa6dd5bede3575cd3847ba81e56180b2140776657273696f6e0200000001000a02000000416ad81ec914be33270f2504aba8db2bf144b41fe55c2d31e7300c36a9727867611db7f4bcb3fc7c8821e704b260299744cfc9ebc5fab41608cf61f18fee3c43ee000200000021029874497a7952483aa23890e9d0898696f33864d3df90939930a1f45421fe3b0901ffffffffffffffffffffffffffffffff010000000000000000000098854ed1cb10", "status": "success", "tx_index": 1, "raw_result": "0x070c0000000207737461636b6572051a1e959caa6dd5bede3575cd3847ba81e56180b21412756e6c6f636b2d6275726e2d686569676874010000000000000000000000000000008c", "burnchain_op": null, "contract_abi": null, "execution_cost": {"runtime": 753117, "read_count": 26, "read_length": 81079, "write_count": 6, "write_length": 858}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}, {"txid": "0x932452dc2ecd76eafbbfdeacb331d81bb370ef4449e1993db3a128e54fe8a206", "raw_tx": "0x8080000000040031ef5ee9a226a792b93f2bfbfbc54f523eba7818000000000000000200000000000003ed000142dd2e3f82557fb77d7caaa399bf32477ce993e3cc71e7edf69e392cda95897d14eb3d809ab8cb7b909e5b17f5b847fd37cdff73c94a82dcc642187981801ecc030200000000021a000000000000000000000000000000000000000005706f782d340c737461636b2d657874656e640000000601000000000000000000000000000000010c0000000209686173686279746573020000001431ef5ee9a226a792b93f2bfbfbc54f523eba78180776657273696f6e0200000001000a02000000418c09928a40339e801e5a85f1efaeb9423f4cfa12a3842bb8adfc2939a01c78bf464491a113e0793243c25366a29a66f40e6629779a0b38b893f155c1cccbb437000200000021038e3c4529395611be9abf6fa3b6987e81d402385e3d605a073f42f407565a4a3d01ffffffffffffffffffffffffffffffff010000000000000000000015bd21878d3c", "status": "success", "tx_index": 2, "raw_result": "0x070c0000000207737461636b6572051a31ef5ee9a226a792b93f2bfbfbc54f523eba781812756e6c6f636b2d6275726e2d686569676874010000000000000000000000000000008c", "burnchain_op": null, "contract_abi": null, "execution_cost": {"runtime": 756650, "read_count": 26, "read_length": 81140, "write_count": 6, "write_length": 858}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}, {"txid": "0x94930902b8935c060e31fc5a770b27c75b42ab23f3de2b3be33b10ed986ce8c6", "raw_tx": "0x808000000004005146f0566e9796602a677d895852e9c0fe5686f7000000000000000200000000000003eb000088e3e305c17bb77eb07ec64c8f2116632e0760273706f031b6106d3e7162516442b61100587abb663a9f1b110ef85ac706147f8c31008ec68eb8aedd69acf670030200000000021a000000000000000000000000000000000000000005706f782d340c737461636b2d657874656e640000000601000000000000000000000000000000010c000000020968617368627974657302000000145146f0566e9796602a677d895852e9c0fe5686f70776657273696f6e0200000001000a0200000041cb1fa773ae4a7268b1bbbd227b99cbbe5b1525b8f782bca520f7b3dd1259446c01661a4e21c4970dd9f71cf0757368c6c254e5837b5b2bde8e2e92883df1901c01020000002102dcde79b38787b72d8e5e0af81cffa802f0a3c8452d6b46e08859165f49a7273601ffffffffffffffffffffffffffffffff0100000000000000000000234d8e2f0980", "status": "success", "tx_index": 3, "raw_result": "0x070c0000000207737461636b6572051a5146f0566e9796602a677d895852e9c0fe5686f712756e6c6f636b2d6275726e2d686569676874010000000000000000000000000000008c", "burnchain_op": null, "contract_abi": null, "execution_cost": {"runtime": 756650, "read_count": 26, "read_length": 81140, "write_count": 6, "write_length": 858}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}], "anchored_cost": {"runtime": 2266417, "read_count": 78, "read_length": 243359, "write_count": 18, "write_length": 2574}, "burn_block_hash": "0x09e0f154a49d19d47f731c01613b3a76d4ac636d9e369375900f534d6d2c4dd8", "burn_block_time": 1710344100, "index_block_hash": "0x121d934f51821e4ddc24d2814eb0f98db16114d2133db45ba431f85c754b9c59", "burn_block_height": 121, "parent_block_hash": "0xa35ea926a58392a5fc5aeaafdaaeeabfbb0062d3413754d4092899c2c97797c1", "parent_microblock": "0x0000000000000000000000000000000000000000000000000000000000000000", "pox_v1_unlock_height": 104, "pox_v2_unlock_height": 106, "pox_v3_unlock_height": 109, "matured_miner_rewards": [], "parent_burn_block_hash": "0x097444bf5e5489705758cdab8cd262cd33c45dd803f3271d4fa66dfdfc9921c4", "parent_index_block_hash": "0xb5699deefd74ff01467fed5832ae82d3ccd7fecdcf577e085ed969e4b7a43c18", "parent_burn_block_height": 120, "confirmed_microblocks_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "parent_microblock_sequence": 0, "parent_burn_block_timestamp": 1710344097} +159 2024-03-13 15:35:03.969363+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x02f47e1d4854688158a7e9cfe469d77ddec5ecf62541b9a7ec38a3fe3d512b2e", "burn_block_height": 122, "reward_recipients": [{"amt": 10000, "recipient": "mk4zAE1iVWf5PJAgeX83rSXnzF5zQBiqf1"}, {"amt": 10000, "recipient": "miJfo2mKvRhvpxnRyJE17VBr12xn3FrkZW"}], "reward_slot_holders": ["mk4zAE1iVWf5PJAgeX83rSXnzF5zQBiqf1", "miJfo2mKvRhvpxnRyJE17VBr12xn3FrkZW"]} +160 2024-03-13 15:35:03.999463+00 /new_block {"events": [{"txid": "0xb503ea72766aba181c66322956be7461daf1cdca557aeb05b73948e6bb5a157d", "type": "stx_transfer_event", "committed": true, "event_index": 0, "stx_transfer_event": {"memo": "00000000000000000000000000000000000000000000000000000000000000000000", "amount": "1000", "sender": "ST29V10QEA7BRZBTWRFC4M70NJ4J6RJB5P1C6EE84", "recipient": "ST2PGGD0ZXAWEMY4EZ025RD1X47EEVH287SQKA8BC"}}], "block_hash": "0xfe184b6084cd906fbc795209a3d82d848197b4cc879de6f9c8bc54b999d69e28", "miner_txid": "0xede4539fbb0d33abacf027a662c9a9a1c895663b31b5157bd5929c38d0fbee05", "block_height": 19, "transactions": [{"txid": "0xbbe88d45048ef0aaabb0681b476b96872c16ac396616cef2ac8660b281d27762", "raw_tx": "0x808000000004001dc27eba0247f8cc9575e7d45e50a0bc7e72427d00000000000000120000000000000000000021faec68213ee761257b3af2c023334e6443aea8a4c77acb6422f735c3061da7215b10730fcb02b24c3185ccd791cda0bdeab413c4426f193ade37c6caf4649b010200000000050000000000000000000000000000000000000000000000000000000000000000051a2f438f17611dd028079f201915ccfcbcbfe49991", "status": "success", "tx_index": 0, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": null, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}, {"txid": "0xb503ea72766aba181c66322956be7461daf1cdca557aeb05b73948e6bb5a157d", "raw_tx": "0x8080000000040093b082ee51d78faf5cc3d84a1c1591246c4965b00000000000000003000000000000012c00002d6568d384364371a519128bff6fe4687fa794bd508861e5cd62ec2796135d087fc6e1109213c7b992e0b7dbec0af2afb380082c2e0069e4fe4531c948d4f7b603020000000000051aad08341feab8ea788ef8045c343d21dcedc4483e00000000000003e800000000000000000000000000000000000000000000000000000000000000000000", "status": "success", "tx_index": 1, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": null, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}], "anchored_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "burn_block_hash": "0x02f47e1d4854688158a7e9cfe469d77ddec5ecf62541b9a7ec38a3fe3d512b2e", "burn_block_time": 1710344103, "index_block_hash": "0xee2953659d1d202a3bb4b2848708152f027236c6a1281b80f62ecdff9bff91c6", "burn_block_height": 122, "parent_block_hash": "0x60bd47c142183e32599e080919dead6b174eb448bdafcc80377b0c3365a818e5", "parent_microblock": "0x0000000000000000000000000000000000000000000000000000000000000000", "pox_v1_unlock_height": 104, "pox_v2_unlock_height": 106, "pox_v3_unlock_height": 109, "matured_miner_rewards": [], "parent_burn_block_hash": "0x09e0f154a49d19d47f731c01613b3a76d4ac636d9e369375900f534d6d2c4dd8", "parent_index_block_hash": "0x121d934f51821e4ddc24d2814eb0f98db16114d2133db45ba431f85c754b9c59", "parent_burn_block_height": 121, "confirmed_microblocks_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "parent_microblock_sequence": 0, "parent_burn_block_timestamp": 1710344100} +161 2024-03-13 15:35:05.821228+00 /new_block {"events": [], "block_hash": "0x0000000000000000000000000000000000000000000000000000000000000000", "miner_txid": "0x0000000000000000000000000000000000000000000000000000000000000000", "block_height": 0, "transactions": [], "anchored_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "burn_block_hash": "0x0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206", "burn_block_time": 0, "index_block_hash": "0x55c9861be5cff984a20ce6d99d4aa65941412889bdc665094136429b84f8c2ee", "burn_block_height": 0, "parent_block_hash": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", "parent_microblock": "0x0000000000000000000000000000000000000000000000000000000000000000", "pox_v1_unlock_height": 104, "pox_v2_unlock_height": 106, "pox_v3_unlock_height": 109, "matured_miner_rewards": [], "parent_burn_block_hash": "0x0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206", "parent_index_block_hash": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", "parent_burn_block_height": 0, "confirmed_microblocks_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "parent_microblock_sequence": 0, "parent_burn_block_timestamp": 0} +162 2024-03-13 15:35:06.995417+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x34fd02e7a0283f799fa204b76200b47193f490fe1b46392dce537c112a625307", "burn_block_height": 123, "reward_recipients": [{"amt": 10000, "recipient": "miJfo2mKvRhvpxnRyJE17VBr12xn3FrkZW"}, {"amt": 10000, "recipient": "mk4zAE1iVWf5PJAgeX83rSXnzF5zQBiqf1"}], "reward_slot_holders": ["mk4zAE1iVWf5PJAgeX83rSXnzF5zQBiqf1", "mk4zAE1iVWf5PJAgeX83rSXnzF5zQBiqf1"]} +163 2024-03-13 15:35:07.843531+00 /new_mempool_tx ["0x80800000000400ad08341feab8ea788ef8045c343d21dcedc4483e0000000000000003000000000000012c00012aff2dd8983c6eb1e9b780c94c3f894d6f7421f19d552f522259780264b7909b55cb9e25cac830ab795f6ce5ab5c587552cc8ba335c5cc0dd4312c8374fb75cf03020000000000051a62b0e91cc557e583c3d1f9dfe468ace76d2f037400000000000003e800000000000000000000000000000000000000000000000000000000000000000000"] +164 2024-03-13 15:35:16.129269+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x7049ba1fb01cd6ef3f60628de1f15a498145481fedc7b2697043c57d45169527", "burn_block_height": 124, "reward_recipients": [], "reward_slot_holders": ["miJfo2mKvRhvpxnRyJE17VBr12xn3FrkZW", "mk4zAE1iVWf5PJAgeX83rSXnzF5zQBiqf1"]} +165 2024-03-13 15:35:28.218839+00 /new_burn_block {"burn_amount": 10000, "burn_block_hash": "0x1da9c307f043b4b1588b0cff8c544ab50989c5b00f004d1a9b36aa91c1397b9f", "burn_block_height": 125, "reward_recipients": [{"amt": 10000, "recipient": "miJfo2mKvRhvpxnRyJE17VBr12xn3FrkZW"}], "reward_slot_holders": ["miJfo2mKvRhvpxnRyJE17VBr12xn3FrkZW"]} +166 2024-03-13 15:35:29.147112+00 /new_block {"events": [{"txid": "0x7a1803bacba2ee450e543eddea9b13fc4f46b35759566f819025ddc4e66baf1d", "type": "stx_transfer_event", "committed": true, "event_index": 0, "stx_transfer_event": {"memo": "00000000000000000000000000000000000000000000000000000000000000000000", "amount": "1000", "sender": "ST2PGGD0ZXAWEMY4EZ025RD1X47EEVH287SQKA8BC", "recipient": "ST1HB1T8WRNBYB0Y3T7WXZS38NKKPTBR3EG9EPJKR"}}], "block_hash": "0x945a2f06eebfd317ea0a48e7eac0e118cf5396b883c53ffa9ad9df86b209e831", "miner_txid": "0xa49ed80e20a5cb9ab85178f7f700433b2999178548de055e799d16326ae820fb", "block_height": 20, "transactions": [{"txid": "0x8076d56347e8eb76b21acd11237cf0ac695d1fa4201e3cbe4a6e23467ff9601e", "raw_tx": "0x808000000004001dc27eba0247f8cc9575e7d45e50a0bc7e72427d00000000000000130000000000000000000048fd48e3968c08bffafb2afdf0a751ec3130e3f041e851e0b0c7f27a6334c19564e232edea68d33cf8dae1d1c99babe1198aa9fd32dad0be849ac329eaa952460102000000000720a01beaeb4a2fa3adc8f9df2b7d0c7604eea14f049bfb45ba4ac770d0bd4100fcd68a95806c6ec320a01beaeb4a2fa3adc8f9df2b7d0c7604eea14fee2953659d1d202a3bb4b2848708152f027236c6a1281b80f62ecdff9bff91c60000000100b6c8b1779e32f9468ff4ed56d0669a5943313ca2", "status": "success", "tx_index": 0, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": null, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}, {"txid": "0x116ad06ea25e42cb0a2ac9ea76c549a948070a6c499db6d4611b54ce65339197", "raw_tx": "0x808000000004001dc27eba0247f8cc9575e7d45e50a0bc7e72427d000000000000001400000000000000000001a486d61ac7b37309f376297179bb45a5cdd887dca00255608f9ff91049ef692f5bf3ecdbcb3b3f6e2d38813a1e3afe40f44d91172d948e6b85a2635be6affefd0102000000000800000000000000000000000000000000000000000000000000000000000000000a051a2f438f17611dd028079f201915ccfcbcbfe4999123b191f5b089830f63e1dd8f9c79e64b132034bf2618a2a348050c85684f45543cec6d439f75fb76c86825bc3ac6fd6dce9ec36a1a5ab3957c2765b65526ee3247d3184c17e23f0be001330d1f975d02", "status": "success", "tx_index": 1, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": null, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}, {"txid": "0x7a1803bacba2ee450e543eddea9b13fc4f46b35759566f819025ddc4e66baf1d", "raw_tx": "0x80800000000400ad08341feab8ea788ef8045c343d21dcedc4483e0000000000000003000000000000012c00012aff2dd8983c6eb1e9b780c94c3f894d6f7421f19d552f522259780264b7909b55cb9e25cac830ab795f6ce5ab5c587552cc8ba335c5cc0dd4312c8374fb75cf03020000000000051a62b0e91cc557e583c3d1f9dfe468ace76d2f037400000000000003e800000000000000000000000000000000000000000000000000000000000000000000", "status": "success", "tx_index": 2, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": null, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}], "anchored_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "burn_block_hash": "0x1da9c307f043b4b1588b0cff8c544ab50989c5b00f004d1a9b36aa91c1397b9f", "burn_block_time": 1710344128, "index_block_hash": "0x41a61b15bd6ba783d7e2b2c07215f9110736b95c3f5eb1b91e535273cd22b10c", "burn_block_height": 125, "parent_block_hash": "0xfe184b6084cd906fbc795209a3d82d848197b4cc879de6f9c8bc54b999d69e28", "parent_microblock": "0x0000000000000000000000000000000000000000000000000000000000000000", "pox_v1_unlock_height": 104, "pox_v2_unlock_height": 106, "pox_v3_unlock_height": 109, "matured_miner_rewards": [], "parent_burn_block_hash": "0x02f47e1d4854688158a7e9cfe469d77ddec5ecf62541b9a7ec38a3fe3d512b2e", "parent_index_block_hash": "0xee2953659d1d202a3bb4b2848708152f027236c6a1281b80f62ecdff9bff91c6", "parent_burn_block_height": 122, "confirmed_microblocks_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "parent_microblock_sequence": 0, "parent_burn_block_timestamp": 1710344103} +167 2024-03-13 15:35:32.151493+00 /new_mempool_tx ["0x8080000000040062b0e91cc557e583c3d1f9dfe468ace76d2f03740000000000000003000000000000012c0001cfa4f5283c570ff2693f85d8207c356766e3a400e609fb64541029ebc3b5e9341f05826bf8b6230eda8a14c9fb05caf732931bd9f392ff220da45e1da254ae5803020000000000051a93b082ee51d78faf5cc3d84a1c1591246c4965b000000000000003e800000000000000000000000000000000000000000000000000000000000000000000"] +168 2024-03-13 15:35:35.397334+00 /new_block {"events": [{"txid": "0xa72d5e2e39d47862fb6d7df0d1683ff19976042fe4b4ea64e8158ca4a378fa48", "type": "stx_transfer_event", "committed": true, "event_index": 0, "stx_transfer_event": {"memo": "00000000000000000000000000000000000000000000000000000000000000000000", "amount": "1000", "sender": "ST1HB1T8WRNBYB0Y3T7WXZS38NKKPTBR3EG9EPJKR", "recipient": "ST29V10QEA7BRZBTWRFC4M70NJ4J6RJB5P1C6EE84"}}], "block_hash": "0xc49bde11e6aa8375b92bfc5b31db2c5de0cae255d43c0e08dbaf1a16846006f0", "miner_txid": "0xa49ed80e20a5cb9ab85178f7f700433b2999178548de055e799d16326ae820fb", "block_height": 21, "transactions": [{"txid": "0xa72d5e2e39d47862fb6d7df0d1683ff19976042fe4b4ea64e8158ca4a378fa48", "raw_tx": "0x8080000000040062b0e91cc557e583c3d1f9dfe468ace76d2f03740000000000000003000000000000012c0001cfa4f5283c570ff2693f85d8207c356766e3a400e609fb64541029ebc3b5e9341f05826bf8b6230eda8a14c9fb05caf732931bd9f392ff220da45e1da254ae5803020000000000051a93b082ee51d78faf5cc3d84a1c1591246c4965b000000000000003e800000000000000000000000000000000000000000000000000000000000000000000", "status": "success", "tx_index": 0, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": null, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}], "anchored_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "burn_block_hash": "0x1da9c307f043b4b1588b0cff8c544ab50989c5b00f004d1a9b36aa91c1397b9f", "burn_block_time": 1710344128, "index_block_hash": "0xe4dc6166643bc237ad13a1a17d49a73b1d0360cc006bc238110d75e811dd5790", "burn_block_height": 125, "parent_block_hash": "0x945a2f06eebfd317ea0a48e7eac0e118cf5396b883c53ffa9ad9df86b209e831", "parent_microblock": "0x0000000000000000000000000000000000000000000000000000000000000000", "pox_v1_unlock_height": 104, "pox_v2_unlock_height": 106, "pox_v3_unlock_height": 109, "matured_miner_rewards": [], "parent_burn_block_hash": "0x1da9c307f043b4b1588b0cff8c544ab50989c5b00f004d1a9b36aa91c1397b9f", "parent_index_block_hash": "0x41a61b15bd6ba783d7e2b2c07215f9110736b95c3f5eb1b91e535273cd22b10c", "parent_burn_block_height": 125, "confirmed_microblocks_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "parent_microblock_sequence": 0, "parent_burn_block_timestamp": 1710344128} +169 2024-03-13 15:35:36.209038+00 /new_mempool_tx ["0x8080000000040093b082ee51d78faf5cc3d84a1c1591246c4965b00000000000000004000000000000012c000171f931953186f7d3ba0e921c7a77fe666c8f8a897079c05ee495c15fc435bc6c7a2aa0facbf5b8153f18ec94ad8d614159615ad7d14877eb54bece172052a80a03020000000000051aad08341feab8ea788ef8045c343d21dcedc4483e00000000000003e800000000000000000000000000000000000000000000000000000000000000000000"] +170 2024-03-13 15:35:37.298086+00 /new_burn_block {"burn_amount": 20000, "burn_block_hash": "0x0325cd4c1a38dc95e90bdaffb2aac0e1fe4d1a17a0110c3063f1e97891ad61d6", "burn_block_height": 126, "reward_recipients": [], "reward_slot_holders": []} +171 2024-03-13 15:35:38.289602+00 /new_block {"events": [{"txid": "0x866e92e447ccb129e8fc4b8cbc68806c216ef5f03078840fb119e7b73a1472e4", "type": "stx_transfer_event", "committed": true, "event_index": 0, "stx_transfer_event": {"memo": "00000000000000000000000000000000000000000000000000000000000000000000", "amount": "1000", "sender": "ST29V10QEA7BRZBTWRFC4M70NJ4J6RJB5P1C6EE84", "recipient": "ST2PGGD0ZXAWEMY4EZ025RD1X47EEVH287SQKA8BC"}}], "block_hash": "0x6957f5cf5f3747ead1de1d72836df620da3482a2bb3a2bf413a1ebd2587b5e90", "miner_txid": "0xdd4c977b2b122750b0bd6d7c1ec6f7c97f682593bb7a1e16994c56612e7c8510", "reward_set": {"signers": [{"weight": 3, "signing_key": "029874497a7952483aa23890e9d0898696f33864d3df90939930a1f45421fe3b09", "stacked_amt": "457500900000000000"}, {"weight": 1, "signing_key": "02dcde79b38787b72d8e5e0af81cffa802f0a3c8452d6b46e08859165f49a72736", "stacked_amt": "228750450000000000"}, {"weight": 5, "signing_key": "038e3c4529395611be9abf6fa3b6987e81d402385e3d605a073f42f407565a4a3d", "stacked_amt": "686251350000000000"}], "start_cycle_state": {"missed_reward_slots": []}, "pox_ustx_threshold": "137250270000000000", "rewarded_addresses": [{"Standard": [{"bytes": "5146f0566e9796602a677d895852e9c0fe5686f7", "version": 26}, "SerializeP2PKH"]}, {"Standard": [{"bytes": "31ef5ee9a226a792b93f2bfbfbc54f523eba7818", "version": 26}, "SerializeP2PKH"]}, {"Standard": [{"bytes": "31ef5ee9a226a792b93f2bfbfbc54f523eba7818", "version": 26}, "SerializeP2PKH"]}, {"Standard": [{"bytes": "31ef5ee9a226a792b93f2bfbfbc54f523eba7818", "version": 26}, "SerializeP2PKH"]}, {"Standard": [{"bytes": "31ef5ee9a226a792b93f2bfbfbc54f523eba7818", "version": 26}, "SerializeP2PKH"]}, {"Standard": [{"bytes": "31ef5ee9a226a792b93f2bfbfbc54f523eba7818", "version": 26}, "SerializeP2PKH"]}, {"Standard": [{"bytes": "1e959caa6dd5bede3575cd3847ba81e56180b214", "version": 26}, "SerializeP2PKH"]}, {"Standard": [{"bytes": "1e959caa6dd5bede3575cd3847ba81e56180b214", "version": 26}, "SerializeP2PKH"]}, {"Standard": [{"bytes": "1e959caa6dd5bede3575cd3847ba81e56180b214", "version": 26}, "SerializeP2PKH"]}]}, "block_height": 22, "cycle_number": 13, "transactions": [{"txid": "0x0753090cd8359784f5afac93d9fddcdb3408b965c22a4dbbcd77acae590d1861", "raw_tx": "0x808000000004001dc27eba0247f8cc9575e7d45e50a0bc7e72427d000000000000001500000000000000000001a3f26861faa2af600db0d5b1ca89beb35cca21f9ca875bac28b2e74735fd67cd3e2a52dfea00c7b76867463438be6fe6c1da7124116e85223b88730a7f03296b0102000000000754210188039005773bff4917bc5a9bb1e851408820a01beaeb4a2fa3adc8f9df2b7d0c7604eea14f54210188039005773bff4917bc5a9bb1e8514088e4dc6166643bc237ad13a1a17d49a73b1d0360cc006bc238110d75e811dd57900000000200b6c8b1779e32f9468ff4ed56d0669a5943313ca2", "status": "success", "tx_index": 0, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": null, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}, {"txid": "0x0ce8d38e18303fd2667dd4d636880a982a61fdc1dea8d9ddc460a70c3c1998d7", "raw_tx": "0x808000000004001dc27eba0247f8cc9575e7d45e50a0bc7e72427d000000000000001600000000000000000000275879713506e91b3db9ac120d5844ad756e4bf682dacb61151a09370013b3d30f43e4a58fe9920f6902f58084ec8906f3d39316f3b50ef96ddf42c50c5c972b0102000000000800000000000000000000000000000000000000000000000000000000000000000a051a2f438f17611dd028079f201915ccfcbcbfe499919f86f8153daabdcce856607413580f8922cc439ceb5488462292608a3e4eae9404b987a005f1de3c70ab3ba0074f49c85adfd66925e8a0fe2c6f61f06326c9bb8eb827a80688c93cc2a1d5389f4f7f06", "status": "success", "tx_index": 1, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": null, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}, {"txid": "0x866e92e447ccb129e8fc4b8cbc68806c216ef5f03078840fb119e7b73a1472e4", "raw_tx": "0x8080000000040093b082ee51d78faf5cc3d84a1c1591246c4965b00000000000000004000000000000012c000171f931953186f7d3ba0e921c7a77fe666c8f8a897079c05ee495c15fc435bc6c7a2aa0facbf5b8153f18ec94ad8d614159615ad7d14877eb54bece172052a80a03020000000000051aad08341feab8ea788ef8045c343d21dcedc4483e00000000000003e800000000000000000000000000000000000000000000000000000000000000000000", "status": "success", "tx_index": 2, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": null, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}], "anchored_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "burn_block_hash": "0x0325cd4c1a38dc95e90bdaffb2aac0e1fe4d1a17a0110c3063f1e97891ad61d6", "burn_block_time": 1710344137, "index_block_hash": "0x5077c7d971dd83cd3ba19dca579e3cc8dcf17913186b66093c94520e50d3b7b2", "burn_block_height": 126, "parent_block_hash": "0xc49bde11e6aa8375b92bfc5b31db2c5de0cae255d43c0e08dbaf1a16846006f0", "parent_microblock": "0x0000000000000000000000000000000000000000000000000000000000000000", "pox_v1_unlock_height": 104, "pox_v2_unlock_height": 106, "pox_v3_unlock_height": 109, "matured_miner_rewards": [], "parent_burn_block_hash": "0x1da9c307f043b4b1588b0cff8c544ab50989c5b00f004d1a9b36aa91c1397b9f", "parent_index_block_hash": "0xe4dc6166643bc237ad13a1a17d49a73b1d0360cc006bc238110d75e811dd5790", "parent_burn_block_height": 125, "confirmed_microblocks_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "parent_microblock_sequence": 0, "parent_burn_block_timestamp": 1710344128} +172 2024-03-13 15:35:40.257409+00 /new_mempool_tx ["0x80800000000400ad08341feab8ea788ef8045c343d21dcedc4483e0000000000000004000000000000012c0000a094672724db8eba751d5a802c79e1bf0847415172345375f5f542480f153c7529f9bd4d26b2242abc6d1081b9b2fd470968a1371d9daaf1e9d2369af8c3658603020000000000051a62b0e91cc557e583c3d1f9dfe468ace76d2f037400000000000003e800000000000000000000000000000000000000000000000000000000000000000000"] +173 2024-03-13 15:35:42.731293+00 /new_block {"events": [{"txid": "0xe39257c5370576e4fb36cb9e6c376622ad402e980f0cb91b1c889425fe951591", "type": "stx_transfer_event", "committed": true, "event_index": 0, "stx_transfer_event": {"memo": "00000000000000000000000000000000000000000000000000000000000000000000", "amount": "1000", "sender": "ST2PGGD0ZXAWEMY4EZ025RD1X47EEVH287SQKA8BC", "recipient": "ST1HB1T8WRNBYB0Y3T7WXZS38NKKPTBR3EG9EPJKR"}}], "block_hash": "0x2fd60976c363286ea8e18fa7d35cd9e2dbd8492620230eae977186e41e111e58", "miner_txid": "0xdd4c977b2b122750b0bd6d7c1ec6f7c97f682593bb7a1e16994c56612e7c8510", "block_height": 23, "transactions": [{"txid": "0xe39257c5370576e4fb36cb9e6c376622ad402e980f0cb91b1c889425fe951591", "raw_tx": "0x80800000000400ad08341feab8ea788ef8045c343d21dcedc4483e0000000000000004000000000000012c0000a094672724db8eba751d5a802c79e1bf0847415172345375f5f542480f153c7529f9bd4d26b2242abc6d1081b9b2fd470968a1371d9daaf1e9d2369af8c3658603020000000000051a62b0e91cc557e583c3d1f9dfe468ace76d2f037400000000000003e800000000000000000000000000000000000000000000000000000000000000000000", "status": "success", "tx_index": 0, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": null, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}], "anchored_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "burn_block_hash": "0x0325cd4c1a38dc95e90bdaffb2aac0e1fe4d1a17a0110c3063f1e97891ad61d6", "burn_block_time": 1710344137, "index_block_hash": "0x742f333bc67a0dd9caba933c31b638260ee710436d40426076b8cdc63c2fd901", "burn_block_height": 126, "parent_block_hash": "0x6957f5cf5f3747ead1de1d72836df620da3482a2bb3a2bf413a1ebd2587b5e90", "parent_microblock": "0x0000000000000000000000000000000000000000000000000000000000000000", "pox_v1_unlock_height": 104, "pox_v2_unlock_height": 106, "pox_v3_unlock_height": 109, "matured_miner_rewards": [], "parent_burn_block_hash": "0x0325cd4c1a38dc95e90bdaffb2aac0e1fe4d1a17a0110c3063f1e97891ad61d6", "parent_index_block_hash": "0x5077c7d971dd83cd3ba19dca579e3cc8dcf17913186b66093c94520e50d3b7b2", "parent_burn_block_height": 126, "confirmed_microblocks_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "parent_microblock_sequence": 0, "parent_burn_block_timestamp": 1710344137} +174 2024-03-13 15:35:44.302499+00 /new_mempool_tx ["0x8080000000040062b0e91cc557e583c3d1f9dfe468ace76d2f03740000000000000004000000000000012c000111938e4fcd00c45bf5ea6e517a213b5cbfc8ae5073ac636ab1bbe6af5c379db03f7ff1f9104c7991bb2e488acaf7b0ef5d884bb565592f4bcc2d4f76250020bc03020000000000051a93b082ee51d78faf5cc3d84a1c1591246c4965b000000000000003e800000000000000000000000000000000000000000000000000000000000000000000"] +175 2024-03-13 15:35:46.397988+00 /new_block {"events": [{"txid": "0x3193d5270b93f095a1f6bbf88b5a20177693f2dec6a0c7c35d975e5e056d0d67", "type": "contract_event", "committed": true, "event_index": 3, "contract_event": {"topic": "print", "value": {"Tuple": {"data_map": {"key": {"Sequence": {"Buffer": {"data": [2, 160, 82, 166, 169, 96, 5, 108, 107, 232, 29, 183, 76, 227, 5, 69, 130, 130, 189, 159, 202, 16, 59, 134, 129, 222, 189, 245, 73, 181, 73, 130, 212]}}}, "event": {"Sequence": {"String": {"ASCII": {"data": [97, 112, 112, 114, 111, 118, 101, 100, 45, 97, 103, 103, 114, 101, 103, 97, 116, 101, 45, 112, 117, 98, 108, 105, 99, 45, 107, 101, 121]}}}}, "round": {"UInt": 1}, "reward-cycle": {"UInt": 13}}, "type_signature": {"type_map": {"key": {"SequenceType": {"BufferType": 33}}, "event": {"SequenceType": {"StringType": {"ASCII": 29}}}, "round": "UIntType", "reward-cycle": "UIntType"}}}}, "raw_value": "0x0c00000004056576656e740d0000001d617070726f7665642d6167677265676174652d7075626c69632d6b6579036b6579020000002102a052a6a960056c6be81db74ce305458282bd9fca103b8681debdf549b54982d40c7265776172642d6379636c65010000000000000000000000000000000d05726f756e640100000000000000000000000000000001", "contract_identifier": "ST000000000000000000002AMW42H.signers-voting"}}, {"txid": "0xeabcb3ee74c33a8c1319d67f62261a8c0ebffa7aed2157c26edbaa33c9c392fe", "type": "contract_event", "committed": true, "event_index": 1, "contract_event": {"topic": "print", "value": {"Tuple": {"data_map": {"key": {"Sequence": {"Buffer": {"data": [2, 160, 82, 166, 169, 96, 5, 108, 107, 232, 29, 183, 76, 227, 5, 69, 130, 130, 189, 159, 202, 16, 59, 134, 129, 222, 189, 245, 73, 181, 73, 130, 212]}}}, "event": {"Sequence": {"String": {"ASCII": {"data": [118, 111, 116, 101, 100]}}}}, "round": {"UInt": 1}, "signer": {"Principal": {"Standard": [26, [81, 70, 240, 86, 110, 151, 150, 96, 42, 103, 125, 137, 88, 82, 233, 192, 254, 86, 134, 247]]}}, "new-total": {"UInt": 6}, "reward-cycle": {"UInt": 13}}, "type_signature": {"type_map": {"key": {"SequenceType": {"BufferType": 33}}, "event": {"SequenceType": {"StringType": {"ASCII": 5}}}, "round": "UIntType", "signer": "PrincipalType", "new-total": "UIntType", "reward-cycle": "UIntType"}}}}, "raw_value": "0x0c00000006056576656e740d00000005766f746564036b6579020000002102a052a6a960056c6be81db74ce305458282bd9fca103b8681debdf549b54982d4096e65772d746f74616c01000000000000000000000000000000060c7265776172642d6379636c65010000000000000000000000000000000d05726f756e640100000000000000000000000000000001067369676e6572051a5146f0566e9796602a677d895852e9c0fe5686f7", "contract_identifier": "ST000000000000000000002AMW42H.signers-voting"}}, {"txid": "0xb0c9240f06f89a6cb2c5a7354a411def20ca6f9919b2cdf6f293de272835e16e", "type": "stx_transfer_event", "committed": true, "event_index": 4, "stx_transfer_event": {"memo": "00000000000000000000000000000000000000000000000000000000000000000000", "amount": "1000", "sender": "ST1HB1T8WRNBYB0Y3T7WXZS38NKKPTBR3EG9EPJKR", "recipient": "ST29V10QEA7BRZBTWRFC4M70NJ4J6RJB5P1C6EE84"}}, {"txid": "0x29c14df42db9848fc32998d7994e4f9ab357a28b17042618e15f7b168bb3caa8", "type": "contract_event", "committed": true, "event_index": 0, "contract_event": {"topic": "print", "value": {"Tuple": {"data_map": {"key": {"Sequence": {"Buffer": {"data": [2, 160, 82, 166, 169, 96, 5, 108, 107, 232, 29, 183, 76, 227, 5, 69, 130, 130, 189, 159, 202, 16, 59, 134, 129, 222, 189, 245, 73, 181, 73, 130, 212]}}}, "event": {"Sequence": {"String": {"ASCII": {"data": [118, 111, 116, 101, 100]}}}}, "round": {"UInt": 1}, "signer": {"Principal": {"Standard": [26, [49, 239, 94, 233, 162, 38, 167, 146, 185, 63, 43, 251, 251, 197, 79, 82, 62, 186, 120, 24]]}}, "new-total": {"UInt": 5}, "reward-cycle": {"UInt": 13}}, "type_signature": {"type_map": {"key": {"SequenceType": {"BufferType": 33}}, "event": {"SequenceType": {"StringType": {"ASCII": 5}}}, "round": "UIntType", "signer": "PrincipalType", "new-total": "UIntType", "reward-cycle": "UIntType"}}}}, "raw_value": "0x0c00000006056576656e740d00000005766f746564036b6579020000002102a052a6a960056c6be81db74ce305458282bd9fca103b8681debdf549b54982d4096e65772d746f74616c01000000000000000000000000000000050c7265776172642d6379636c65010000000000000000000000000000000d05726f756e640100000000000000000000000000000001067369676e6572051a31ef5ee9a226a792b93f2bfbfbc54f523eba7818", "contract_identifier": "ST000000000000000000002AMW42H.signers-voting"}}, {"txid": "0x3193d5270b93f095a1f6bbf88b5a20177693f2dec6a0c7c35d975e5e056d0d67", "type": "contract_event", "committed": true, "event_index": 2, "contract_event": {"topic": "print", "value": {"Tuple": {"data_map": {"key": {"Sequence": {"Buffer": {"data": [2, 160, 82, 166, 169, 96, 5, 108, 107, 232, 29, 183, 76, 227, 5, 69, 130, 130, 189, 159, 202, 16, 59, 134, 129, 222, 189, 245, 73, 181, 73, 130, 212]}}}, "event": {"Sequence": {"String": {"ASCII": {"data": [118, 111, 116, 101, 100]}}}}, "round": {"UInt": 1}, "signer": {"Principal": {"Standard": [26, [30, 149, 156, 170, 109, 213, 190, 222, 53, 117, 205, 56, 71, 186, 129, 229, 97, 128, 178, 20]]}}, "new-total": {"UInt": 9}, "reward-cycle": {"UInt": 13}}, "type_signature": {"type_map": {"key": {"SequenceType": {"BufferType": 33}}, "event": {"SequenceType": {"StringType": {"ASCII": 5}}}, "round": "UIntType", "signer": "PrincipalType", "new-total": "UIntType", "reward-cycle": "UIntType"}}}}, "raw_value": "0x0c00000006056576656e740d00000005766f746564036b6579020000002102a052a6a960056c6be81db74ce305458282bd9fca103b8681debdf549b54982d4096e65772d746f74616c01000000000000000000000000000000090c7265776172642d6379636c65010000000000000000000000000000000d05726f756e640100000000000000000000000000000001067369676e6572051a1e959caa6dd5bede3575cd3847ba81e56180b214", "contract_identifier": "ST000000000000000000002AMW42H.signers-voting"}}], "block_hash": "0xeeb3a3100da599e488ffd4bdf2b15c6632191972875cff6c4df4f28fcbd56064", "miner_txid": "0xdd4c977b2b122750b0bd6d7c1ec6f7c97f682593bb7a1e16994c56612e7c8510", "block_height": 24, "transactions": [{"txid": "0x29c14df42db9848fc32998d7994e4f9ab357a28b17042618e15f7b168bb3caa8", "raw_tx": "0x8080000000040031ef5ee9a226a792b93f2bfbfbc54f523eba7818000000000000000300000000000000000000baf06a248af18284ca700d6ff278366e33daefa7bef049ec08f9715e5b28eeb61a1fbde3707bddfbea73dfd72bfe6dc274ad3d8680f0aa524230c2105d70c07e030100000000021a00000000000000000000000000000000000000000e7369676e6572732d766f74696e671d766f74652d666f722d6167677265676174652d7075626c69632d6b6579000000040100000000000000000000000000000002020000002102a052a6a960056c6be81db74ce305458282bd9fca103b8681debdf549b54982d40100000000000000000000000000000001010000000000000000000000000000000d", "status": "success", "tx_index": 0, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": null, "execution_cost": {"runtime": 78441, "read_count": 21, "read_length": 16148, "write_count": 5, "write_length": 449}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}, {"txid": "0xeabcb3ee74c33a8c1319d67f62261a8c0ebffa7aed2157c26edbaa33c9c392fe", "raw_tx": "0x808000000004005146f0566e9796602a677d895852e9c0fe5686f7000000000000000300000000000000000000423260b8068f08ce1ff68207799e45772c2ae65fc5b0bba1ce3f995e07193faa4c7dbf19dc6cffaf2ad6e8f2d645083b40b19aed3db6d6c5b64ad6f025d59714030100000000021a00000000000000000000000000000000000000000e7369676e6572732d766f74696e671d766f74652d666f722d6167677265676174652d7075626c69632d6b6579000000040100000000000000000000000000000001020000002102a052a6a960056c6be81db74ce305458282bd9fca103b8681debdf549b54982d40100000000000000000000000000000001010000000000000000000000000000000d", "status": "success", "tx_index": 1, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": null, "execution_cost": {"runtime": 59831, "read_count": 15, "read_length": 13129, "write_count": 3, "write_length": 377}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}, {"txid": "0x3193d5270b93f095a1f6bbf88b5a20177693f2dec6a0c7c35d975e5e056d0d67", "raw_tx": "0x808000000004001e959caa6dd5bede3575cd3847ba81e56180b21400000000000000030000000000000000000094eb602103a75ff1acaa30df6a5d591d31dc17830b472e20e35022a9781ff38b2a06a0a9d07d373a7c2b616f0f21faaae5d77b715729b8d688598114182494a5030100000000021a00000000000000000000000000000000000000000e7369676e6572732d766f74696e671d766f74652d666f722d6167677265676174652d7075626c69632d6b6579000000040100000000000000000000000000000000020000002102a052a6a960056c6be81db74ce305458282bd9fca103b8681debdf549b54982d40100000000000000000000000000000001010000000000000000000000000000000d", "status": "success", "tx_index": 2, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": null, "execution_cost": {"runtime": 68726, "read_count": 16, "read_length": 13129, "write_count": 4, "write_length": 434}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}, {"txid": "0xb0c9240f06f89a6cb2c5a7354a411def20ca6f9919b2cdf6f293de272835e16e", "raw_tx": "0x8080000000040062b0e91cc557e583c3d1f9dfe468ace76d2f03740000000000000004000000000000012c000111938e4fcd00c45bf5ea6e517a213b5cbfc8ae5073ac636ab1bbe6af5c379db03f7ff1f9104c7991bb2e488acaf7b0ef5d884bb565592f4bcc2d4f76250020bc03020000000000051a93b082ee51d78faf5cc3d84a1c1591246c4965b000000000000003e800000000000000000000000000000000000000000000000000000000000000000000", "status": "success", "tx_index": 3, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": null, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}], "anchored_cost": {"runtime": 206998, "read_count": 52, "read_length": 42406, "write_count": 12, "write_length": 1260}, "burn_block_hash": "0x0325cd4c1a38dc95e90bdaffb2aac0e1fe4d1a17a0110c3063f1e97891ad61d6", "burn_block_time": 1710344137, "index_block_hash": "0x35e99767d1534f8694c152827f85d9280bcb423371944d7dd48f42b08c212115", "burn_block_height": 126, "parent_block_hash": "0x2fd60976c363286ea8e18fa7d35cd9e2dbd8492620230eae977186e41e111e58", "parent_microblock": "0x0000000000000000000000000000000000000000000000000000000000000000", "pox_v1_unlock_height": 104, "pox_v2_unlock_height": 106, "pox_v3_unlock_height": 109, "matured_miner_rewards": [], "parent_burn_block_hash": "0x0325cd4c1a38dc95e90bdaffb2aac0e1fe4d1a17a0110c3063f1e97891ad61d6", "parent_index_block_hash": "0x742f333bc67a0dd9caba933c31b638260ee710436d40426076b8cdc63c2fd901", "parent_burn_block_height": 126, "confirmed_microblocks_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "parent_microblock_sequence": 0, "parent_burn_block_timestamp": 1710344137} +176 2024-03-13 15:35:46.412746+00 /new_burn_block {"burn_amount": 20000, "burn_block_hash": "0x377eae3b7f8fbd3d01a729ef194bfcf9bf8b0e12af45c62b912f2ac3f38a1022", "burn_block_height": 127, "reward_recipients": [], "reward_slot_holders": []} +177 2024-03-13 15:35:47.230093+00 /new_block {"events": [], "block_hash": "0xea4b14b586a8ce378943ef2c1a3fafe97bbb741a8c4587ab98e4f1228c1650be", "miner_txid": "0xe2e7ad3d1342a011618ce2e80e5f489a7d2d67478757eec3f1545b402064833d", "block_height": 25, "transactions": [{"txid": "0x4833964e8b91a699db20351c14ca59a07075a23a84b1c10136427a0a037f87ae", "raw_tx": "0x808000000004001dc27eba0247f8cc9575e7d45e50a0bc7e72427d0000000000000017000000000000000000007fe860a7a24ee9ae968e2556a01f05be08b19fba8780924efc073be25a2f1d3e738b354e4daed60e7ba5a5fe6fb1bb1159d10767553e84b8835de0a34e581cfc010200000000071a743abdc60f3eb49ffa9d0d8c158aa807835f4454210188039005773bff4917bc5a9bb1e85140881a743abdc60f3eb49ffa9d0d8c158aa807835f4435e99767d1534f8694c152827f85d9280bcb423371944d7dd48f42b08c2121150000000300b6c8b1779e32f9468ff4ed56d0669a5943313ca2", "status": "success", "tx_index": 0, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": null, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}, {"txid": "0xfccbb1d1662354779291481a2e93a66df0e88f4f6c9b6d81699d0cf3f75c85bc", "raw_tx": "0x808000000004001dc27eba0247f8cc9575e7d45e50a0bc7e72427d0000000000000018000000000000000000006789b92edc22a4fad2f63890ce7c727ea435f9b9c9ed1fc1e070afdc61a69617723d7cbcda56c46ce0823ae59e9297bd9002c0bf333fa95c755345a2b709de150102000000000800000000000000000000000000000000000000000000000000000000000000000a051a2f438f17611dd028079f201915ccfcbcbfe499916649c28e3d051975b47d0c2699434aadba1ee881663561fb6e2c673b472a49f9e51dd2b01b8fae6aef72c5fcb90c94ad11279e84f5a75263b8f3f11645314ac9f27591a94599d35f411368b1dc714e04", "status": "success", "tx_index": 1, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": null, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}], "anchored_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "burn_block_hash": "0x377eae3b7f8fbd3d01a729ef194bfcf9bf8b0e12af45c62b912f2ac3f38a1022", "burn_block_time": 1710344146, "index_block_hash": "0x94eedd1aeea67c16bfad88336658f215065e66f98555f344b9ee2e11dad0b00b", "burn_block_height": 127, "parent_block_hash": "0xeeb3a3100da599e488ffd4bdf2b15c6632191972875cff6c4df4f28fcbd56064", "parent_microblock": "0x0000000000000000000000000000000000000000000000000000000000000000", "pox_v1_unlock_height": 104, "pox_v2_unlock_height": 106, "pox_v3_unlock_height": 109, "matured_miner_rewards": [], "parent_burn_block_hash": "0x0325cd4c1a38dc95e90bdaffb2aac0e1fe4d1a17a0110c3063f1e97891ad61d6", "parent_index_block_hash": "0x35e99767d1534f8694c152827f85d9280bcb423371944d7dd48f42b08c212115", "parent_burn_block_height": 126, "confirmed_microblocks_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "parent_microblock_sequence": 0, "parent_burn_block_timestamp": 1710344137} +178 2024-03-13 15:35:48.359444+00 /new_mempool_tx ["0x8080000000040093b082ee51d78faf5cc3d84a1c1591246c4965b00000000000000005000000000000012c000166ef73b9bf11475294082b43efa72d06f1ce11ca78c3509104c44242dbec2ad7603182a718efe67b3aa05e8cf29f9b58d23764bf0170f75087358ca7c09646b503020000000000051aad08341feab8ea788ef8045c343d21dcedc4483e00000000000003e800000000000000000000000000000000000000000000000000000000000000000000"] +179 2024-03-13 15:35:50.462847+00 /new_block {"events": [{"txid": "0x222262f1b20877d948ef53c6e5996797880dbb0b25d6d7efff7ab9e043f4aaf3", "type": "stx_transfer_event", "committed": true, "event_index": 0, "stx_transfer_event": {"memo": "00000000000000000000000000000000000000000000000000000000000000000000", "amount": "1000", "sender": "ST29V10QEA7BRZBTWRFC4M70NJ4J6RJB5P1C6EE84", "recipient": "ST2PGGD0ZXAWEMY4EZ025RD1X47EEVH287SQKA8BC"}}], "block_hash": "0xdd5b34df6d5f0ddea225f3cd126b4d6c7a6b403ea38cdc4ab808836777f49f3f", "miner_txid": "0xe2e7ad3d1342a011618ce2e80e5f489a7d2d67478757eec3f1545b402064833d", "block_height": 26, "transactions": [{"txid": "0x222262f1b20877d948ef53c6e5996797880dbb0b25d6d7efff7ab9e043f4aaf3", "raw_tx": "0x8080000000040093b082ee51d78faf5cc3d84a1c1591246c4965b00000000000000005000000000000012c000166ef73b9bf11475294082b43efa72d06f1ce11ca78c3509104c44242dbec2ad7603182a718efe67b3aa05e8cf29f9b58d23764bf0170f75087358ca7c09646b503020000000000051aad08341feab8ea788ef8045c343d21dcedc4483e00000000000003e800000000000000000000000000000000000000000000000000000000000000000000", "status": "success", "tx_index": 0, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": null, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}], "anchored_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "burn_block_hash": "0x377eae3b7f8fbd3d01a729ef194bfcf9bf8b0e12af45c62b912f2ac3f38a1022", "burn_block_time": 1710344146, "index_block_hash": "0xa9b0fa8a5aa456126c82de41b070b37f90701b876c4ff472e65d381a12ca0169", "burn_block_height": 127, "parent_block_hash": "0xea4b14b586a8ce378943ef2c1a3fafe97bbb741a8c4587ab98e4f1228c1650be", "parent_microblock": "0x0000000000000000000000000000000000000000000000000000000000000000", "pox_v1_unlock_height": 104, "pox_v2_unlock_height": 106, "pox_v3_unlock_height": 109, "matured_miner_rewards": [], "parent_burn_block_hash": "0x377eae3b7f8fbd3d01a729ef194bfcf9bf8b0e12af45c62b912f2ac3f38a1022", "parent_index_block_hash": "0x94eedd1aeea67c16bfad88336658f215065e66f98555f344b9ee2e11dad0b00b", "parent_burn_block_height": 127, "confirmed_microblocks_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "parent_microblock_sequence": 0, "parent_burn_block_timestamp": 1710344146} +180 2024-03-13 15:35:52.39683+00 /new_mempool_tx ["0x80800000000400ad08341feab8ea788ef8045c343d21dcedc4483e0000000000000005000000000000012c0000a9f74df323973f5b942b7030af46b23e5651f4fab3769aadb0ee0c82b4d4257e029218ebfe6b4295e53e9159c08020ae66fbf22e78810527fd677d3952cca67f03020000000000051a62b0e91cc557e583c3d1f9dfe468ace76d2f037400000000000003e800000000000000000000000000000000000000000000000000000000000000000000"] +181 2024-03-13 15:35:53.694583+00 /new_block {"events": [{"txid": "0x8467c25d45f098364b0d7b0355c44d508aa5549cd5d6909d637d44ae1ac7a9b4", "type": "stx_transfer_event", "committed": true, "event_index": 0, "stx_transfer_event": {"memo": "00000000000000000000000000000000000000000000000000000000000000000000", "amount": "1000", "sender": "ST2PGGD0ZXAWEMY4EZ025RD1X47EEVH287SQKA8BC", "recipient": "ST1HB1T8WRNBYB0Y3T7WXZS38NKKPTBR3EG9EPJKR"}}], "block_hash": "0x0d6b5522feee7a6e4d253fe5e4d0348526fa384ddd16ee95746c62cce6f3f972", "miner_txid": "0xe2e7ad3d1342a011618ce2e80e5f489a7d2d67478757eec3f1545b402064833d", "block_height": 27, "transactions": [{"txid": "0x8467c25d45f098364b0d7b0355c44d508aa5549cd5d6909d637d44ae1ac7a9b4", "raw_tx": "0x80800000000400ad08341feab8ea788ef8045c343d21dcedc4483e0000000000000005000000000000012c0000a9f74df323973f5b942b7030af46b23e5651f4fab3769aadb0ee0c82b4d4257e029218ebfe6b4295e53e9159c08020ae66fbf22e78810527fd677d3952cca67f03020000000000051a62b0e91cc557e583c3d1f9dfe468ace76d2f037400000000000003e800000000000000000000000000000000000000000000000000000000000000000000", "status": "success", "tx_index": 0, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": null, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}], "anchored_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "burn_block_hash": "0x377eae3b7f8fbd3d01a729ef194bfcf9bf8b0e12af45c62b912f2ac3f38a1022", "burn_block_time": 1710344146, "index_block_hash": "0x639f4964cf240839cc032d6208a8980def92bfbd4568a0f4f638082e50d3c4ea", "burn_block_height": 127, "parent_block_hash": "0xdd5b34df6d5f0ddea225f3cd126b4d6c7a6b403ea38cdc4ab808836777f49f3f", "parent_microblock": "0x0000000000000000000000000000000000000000000000000000000000000000", "pox_v1_unlock_height": 104, "pox_v2_unlock_height": 106, "pox_v3_unlock_height": 109, "matured_miner_rewards": [], "parent_burn_block_hash": "0x377eae3b7f8fbd3d01a729ef194bfcf9bf8b0e12af45c62b912f2ac3f38a1022", "parent_index_block_hash": "0xa9b0fa8a5aa456126c82de41b070b37f90701b876c4ff472e65d381a12ca0169", "parent_burn_block_height": 127, "confirmed_microblocks_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "parent_microblock_sequence": 0, "parent_burn_block_timestamp": 1710344146} +182 2024-03-13 15:35:56.466259+00 /new_mempool_tx ["0x8080000000040062b0e91cc557e583c3d1f9dfe468ace76d2f03740000000000000005000000000000012c0000a996e1ca724e43a4fbecc9126795a56bcc9e7110995a86fc100849f4fcbc04187bf70a9276d0221583ce3dafb659c770b2cb6db34508bcb591f0502b5a9be17603020000000000051a93b082ee51d78faf5cc3d84a1c1591246c4965b000000000000003e800000000000000000000000000000000000000000000000000000000000000000000"] +183 2024-03-13 15:35:58.4997+00 /new_burn_block {"burn_amount": 20000, "burn_block_hash": "0x6c36bc5b4df0ebe64e60815f8df7f1a894d11683b509742f9a656f12364c6024", "burn_block_height": 128, "reward_recipients": [], "reward_slot_holders": []} +184 2024-03-13 15:35:59.226648+00 /new_block {"events": [{"txid": "0xb76b444c87db7786c3902b08b41b4dc74ef2d518be399a9955a627594da38f4e", "type": "stx_transfer_event", "committed": true, "event_index": 0, "stx_transfer_event": {"memo": "00000000000000000000000000000000000000000000000000000000000000000000", "amount": "1000", "sender": "ST1HB1T8WRNBYB0Y3T7WXZS38NKKPTBR3EG9EPJKR", "recipient": "ST29V10QEA7BRZBTWRFC4M70NJ4J6RJB5P1C6EE84"}}], "block_hash": "0xf0fd1eeec27cd34be2ed526533bda4379fa6131e3fe303fc6859efd614ed43b2", "miner_txid": "0xec06abcaaa6978f51e9d37c6262c756ee6c47d8793b1f032c29a6a05e849fa52", "block_height": 28, "transactions": [{"txid": "0x03a6bfc2ec4d7626ee6aee0951b1ab5c08634bd9ade3e2aa89c12d9548b93c86", "raw_tx": "0x808000000004001dc27eba0247f8cc9575e7d45e50a0bc7e72427d0000000000000019000000000000000000006765ccdee89079501b8f60c307c809a624e0f5a491617c71a014aeb2da904e9b2d9bc16965e19c4ed0ca05ec9cb1586a483dbbc529279ada33ad538c4a983b4601020000000007aac6a9f8ebc6cb6f41bdebb2d866dd7f7d0111e91a743abdc60f3eb49ffa9d0d8c158aa807835f44aac6a9f8ebc6cb6f41bdebb2d866dd7f7d0111e9639f4964cf240839cc032d6208a8980def92bfbd4568a0f4f638082e50d3c4ea0000000300b6c8b1779e32f9468ff4ed56d0669a5943313ca2", "status": "success", "tx_index": 0, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": null, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}, {"txid": "0xfc92481d1591c0a9956cf23626924e34163c8213a83b38a337ec380d4f7e0ce3", "raw_tx": "0x808000000004001dc27eba0247f8cc9575e7d45e50a0bc7e72427d000000000000001a000000000000000000006bbc8b201f35301a0453d97611d960fa052f3ba0cf9d0cd1068e038951e9fc5a1b2cc313bb7e50d20a4bec9f54cf81a2ef6da88a371124ad472508216a33fa0e0102000000000800000000000000000000000000000000000000000000000000000000000000000a051a2f438f17611dd028079f201915ccfcbcbfe49991ed547af3b3705f8eb690b6dcdc3f395bc020e7343db1d54a9fc044011b40e7fb8915ce9aebeb8f4621def703223b080882ae529802355f8e01940ff857c569daf3ac75da48bf31149ef7005cc27fc304", "status": "success", "tx_index": 1, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": null, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}, {"txid": "0xb76b444c87db7786c3902b08b41b4dc74ef2d518be399a9955a627594da38f4e", "raw_tx": "0x8080000000040062b0e91cc557e583c3d1f9dfe468ace76d2f03740000000000000005000000000000012c0000a996e1ca724e43a4fbecc9126795a56bcc9e7110995a86fc100849f4fcbc04187bf70a9276d0221583ce3dafb659c770b2cb6db34508bcb591f0502b5a9be17603020000000000051a93b082ee51d78faf5cc3d84a1c1591246c4965b000000000000003e800000000000000000000000000000000000000000000000000000000000000000000", "status": "success", "tx_index": 2, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": null, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}], "anchored_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "burn_block_hash": "0x6c36bc5b4df0ebe64e60815f8df7f1a894d11683b509742f9a656f12364c6024", "burn_block_time": 1710344158, "index_block_hash": "0x87ce7dae556957ebc0fbb1b380d5093acf152581d15389353be56dabaa2bb8ed", "burn_block_height": 128, "parent_block_hash": "0x0d6b5522feee7a6e4d253fe5e4d0348526fa384ddd16ee95746c62cce6f3f972", "parent_microblock": "0x0000000000000000000000000000000000000000000000000000000000000000", "pox_v1_unlock_height": 104, "pox_v2_unlock_height": 106, "pox_v3_unlock_height": 109, "matured_miner_rewards": [], "parent_burn_block_hash": "0x377eae3b7f8fbd3d01a729ef194bfcf9bf8b0e12af45c62b912f2ac3f38a1022", "parent_index_block_hash": "0x639f4964cf240839cc032d6208a8980def92bfbd4568a0f4f638082e50d3c4ea", "parent_burn_block_height": 127, "confirmed_microblocks_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "parent_microblock_sequence": 0, "parent_burn_block_timestamp": 1710344146} +185 2024-03-13 15:36:00.536517+00 /new_mempool_tx ["0x8080000000040093b082ee51d78faf5cc3d84a1c1591246c4965b00000000000000006000000000000012c00011f7746b3a95282e92760ad0bc5f30e50f5097b44cdfc29f05c2579c1b06598a133a35045815d431f116ee388f111372bde0fe13dcc791da66c69d446fafc624303020000000000051aad08341feab8ea788ef8045c343d21dcedc4483e00000000000003e800000000000000000000000000000000000000000000000000000000000000000000"] +186 2024-03-13 15:36:02.470883+00 /new_block {"events": [{"txid": "0xc21ea67de0f62e157569d872da2c51ea7605bea3cef266b27b3b65c95aba3b4d", "type": "stx_transfer_event", "committed": true, "event_index": 0, "stx_transfer_event": {"memo": "00000000000000000000000000000000000000000000000000000000000000000000", "amount": "1000", "sender": "ST29V10QEA7BRZBTWRFC4M70NJ4J6RJB5P1C6EE84", "recipient": "ST2PGGD0ZXAWEMY4EZ025RD1X47EEVH287SQKA8BC"}}], "block_hash": "0x3938ec04c1f2c3b10621a09f6c25a9fa9983d9594f42e5893d2e68e0abb6be22", "miner_txid": "0xec06abcaaa6978f51e9d37c6262c756ee6c47d8793b1f032c29a6a05e849fa52", "block_height": 29, "transactions": [{"txid": "0xc21ea67de0f62e157569d872da2c51ea7605bea3cef266b27b3b65c95aba3b4d", "raw_tx": "0x8080000000040093b082ee51d78faf5cc3d84a1c1591246c4965b00000000000000006000000000000012c00011f7746b3a95282e92760ad0bc5f30e50f5097b44cdfc29f05c2579c1b06598a133a35045815d431f116ee388f111372bde0fe13dcc791da66c69d446fafc624303020000000000051aad08341feab8ea788ef8045c343d21dcedc4483e00000000000003e800000000000000000000000000000000000000000000000000000000000000000000", "status": "success", "tx_index": 0, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": null, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}], "anchored_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "burn_block_hash": "0x6c36bc5b4df0ebe64e60815f8df7f1a894d11683b509742f9a656f12364c6024", "burn_block_time": 1710344158, "index_block_hash": "0x83c1bf8090392c10e4b829d13cee4825861bfec77c8185090bf693a2dd8e5e1a", "burn_block_height": 128, "parent_block_hash": "0xf0fd1eeec27cd34be2ed526533bda4379fa6131e3fe303fc6859efd614ed43b2", "parent_microblock": "0x0000000000000000000000000000000000000000000000000000000000000000", "pox_v1_unlock_height": 104, "pox_v2_unlock_height": 106, "pox_v3_unlock_height": 109, "matured_miner_rewards": [], "parent_burn_block_hash": "0x6c36bc5b4df0ebe64e60815f8df7f1a894d11683b509742f9a656f12364c6024", "parent_index_block_hash": "0x87ce7dae556957ebc0fbb1b380d5093acf152581d15389353be56dabaa2bb8ed", "parent_burn_block_height": 128, "confirmed_microblocks_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "parent_microblock_sequence": 0, "parent_burn_block_timestamp": 1710344158} +187 2024-03-13 15:36:04.584722+00 /new_mempool_tx ["0x80800000000400ad08341feab8ea788ef8045c343d21dcedc4483e0000000000000006000000000000012c0001e3df0121123564c37a49130724c00b46861cf56dbe42ab9a559d4a4ec2b3907f49b1912863472f28a1f747f27ad2e5f3838d640f27550bc995ae62a5f3326c2d03020000000000051a62b0e91cc557e583c3d1f9dfe468ace76d2f037400000000000003e800000000000000000000000000000000000000000000000000000000000000000000"] +188 2024-03-13 15:36:05.499455+00 /new_block {"events": [{"txid": "0xcb2516b5adb99d5c8dfeb426a1d4d1d2aebe27a0c868d16b784cbdec6a6fc399", "type": "stx_transfer_event", "committed": true, "event_index": 0, "stx_transfer_event": {"memo": "00000000000000000000000000000000000000000000000000000000000000000000", "amount": "1000", "sender": "ST2PGGD0ZXAWEMY4EZ025RD1X47EEVH287SQKA8BC", "recipient": "ST1HB1T8WRNBYB0Y3T7WXZS38NKKPTBR3EG9EPJKR"}}], "block_hash": "0xd6ac2f4f7339b2c524f071224b9d98cc59e1b976a3faff651dd5dc07cee9ac78", "miner_txid": "0xec06abcaaa6978f51e9d37c6262c756ee6c47d8793b1f032c29a6a05e849fa52", "block_height": 30, "transactions": [{"txid": "0xcb2516b5adb99d5c8dfeb426a1d4d1d2aebe27a0c868d16b784cbdec6a6fc399", "raw_tx": "0x80800000000400ad08341feab8ea788ef8045c343d21dcedc4483e0000000000000006000000000000012c0001e3df0121123564c37a49130724c00b46861cf56dbe42ab9a559d4a4ec2b3907f49b1912863472f28a1f747f27ad2e5f3838d640f27550bc995ae62a5f3326c2d03020000000000051a62b0e91cc557e583c3d1f9dfe468ace76d2f037400000000000003e800000000000000000000000000000000000000000000000000000000000000000000", "status": "success", "tx_index": 0, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": null, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}], "anchored_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "burn_block_hash": "0x6c36bc5b4df0ebe64e60815f8df7f1a894d11683b509742f9a656f12364c6024", "burn_block_time": 1710344158, "index_block_hash": "0x85f2a8aeb9fe4fcbbea9d43d454dacadddec376612e922277d741a9f7d7f069e", "burn_block_height": 128, "parent_block_hash": "0x3938ec04c1f2c3b10621a09f6c25a9fa9983d9594f42e5893d2e68e0abb6be22", "parent_microblock": "0x0000000000000000000000000000000000000000000000000000000000000000", "pox_v1_unlock_height": 104, "pox_v2_unlock_height": 106, "pox_v3_unlock_height": 109, "matured_miner_rewards": [], "parent_burn_block_hash": "0x6c36bc5b4df0ebe64e60815f8df7f1a894d11683b509742f9a656f12364c6024", "parent_index_block_hash": "0x83c1bf8090392c10e4b829d13cee4825861bfec77c8185090bf693a2dd8e5e1a", "parent_burn_block_height": 128, "confirmed_microblocks_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "parent_microblock_sequence": 0, "parent_burn_block_timestamp": 1710344158} +189 2024-03-13 15:36:07.580207+00 /new_burn_block {"burn_amount": 20000, "burn_block_hash": "0x6222c9d35860d2dd92510be02a68a25f036a881b94e1ab908abf5aa8c4f2f2da", "burn_block_height": 129, "reward_recipients": [], "reward_slot_holders": []} +190 2024-03-13 15:36:08.389131+00 /new_block {"events": [], "block_hash": "0xdbe8cf1b8ba9f17659878dcc0203ce3351b44070e8aed338bddcac4def3c9a25", "miner_txid": "0x1577708f0bee76750388ad0be55d2db2e5cb680daff27e58e22b6472aa0993a5", "block_height": 31, "transactions": [{"txid": "0x88e6b6d516c60f0341397fab0d800f8f6bed11439001bae9d70669054cd149bb", "raw_tx": "0x808000000004001dc27eba0247f8cc9575e7d45e50a0bc7e72427d000000000000001b0000000000000000000013e69affbe92baa48a1e4ac46ce2270546ef5a01bee99475ad68e4e9da1dbfe64e9e5b0c718e8af2fd99b0c4efaba9fd71361489c9064dc5462b58b2bb021a7a010200000000074a4846a063adda59976a2d047fa4a4cecb9229b1aac6a9f8ebc6cb6f41bdebb2d866dd7f7d0111e94a4846a063adda59976a2d047fa4a4cecb9229b185f2a8aeb9fe4fcbbea9d43d454dacadddec376612e922277d741a9f7d7f069e0000000300b6c8b1779e32f9468ff4ed56d0669a5943313ca2", "status": "success", "tx_index": 0, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": null, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}, {"txid": "0xb8c5fc742859e058dd3d6403c8ae40f61f041750022f13b354888c730cbd9ee8", "raw_tx": "0x808000000004001dc27eba0247f8cc9575e7d45e50a0bc7e72427d000000000000001c000000000000000000014dde763b933935f3098d0975e83bfb869a3119238e5f909360173432f190d71958a851cdc59ed470fd65165bcef5fa55a228f07a6b699aada054e601d16ca5de0102000000000800000000000000000000000000000000000000000000000000000000000000000a051a2f438f17611dd028079f201915ccfcbcbfe49991e09b2c48b82459bbdc4b5c1abdb14c9630f5127312cd52d8e3d1def67748c9d3f7afea70120e5ed5387a0a773dd7800d84a26058cff78686d717b8c39887f245f43ccd3ffdf9ca2461f4baa500da8404", "status": "success", "tx_index": 1, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": null, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}], "anchored_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "burn_block_hash": "0x6222c9d35860d2dd92510be02a68a25f036a881b94e1ab908abf5aa8c4f2f2da", "burn_block_time": 1710344167, "index_block_hash": "0x5c02e6680df79485cf9ae640e0fc32a718b297c4bb30047e04730467f196ab5d", "burn_block_height": 129, "parent_block_hash": "0xd6ac2f4f7339b2c524f071224b9d98cc59e1b976a3faff651dd5dc07cee9ac78", "parent_microblock": "0x0000000000000000000000000000000000000000000000000000000000000000", "pox_v1_unlock_height": 104, "pox_v2_unlock_height": 106, "pox_v3_unlock_height": 109, "matured_miner_rewards": [], "parent_burn_block_hash": "0x6c36bc5b4df0ebe64e60815f8df7f1a894d11683b509742f9a656f12364c6024", "parent_index_block_hash": "0x85f2a8aeb9fe4fcbbea9d43d454dacadddec376612e922277d741a9f7d7f069e", "parent_burn_block_height": 128, "confirmed_microblocks_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "parent_microblock_sequence": 0, "parent_burn_block_timestamp": 1710344158} +191 2024-03-13 15:36:08.644883+00 /new_mempool_tx ["0x8080000000040062b0e91cc557e583c3d1f9dfe468ace76d2f03740000000000000006000000000000012c0000812e30923f63acff76ba13cd1d6683239d821cac6d8c86b682dc45f031b99f46125bb10ebb7c07fa25e9b225b68a07b40dab575ccecc12e4723e8d7a6987b6ff03020000000000051a93b082ee51d78faf5cc3d84a1c1591246c4965b000000000000003e800000000000000000000000000000000000000000000000000000000000000000000"] +192 2024-03-13 15:36:11.633245+00 /new_block {"events": [{"txid": "0x9d827123960cd2a96f4c20e086d70699b12f170305bb000cf5207006f3095dc8", "type": "stx_transfer_event", "committed": true, "event_index": 0, "stx_transfer_event": {"memo": "00000000000000000000000000000000000000000000000000000000000000000000", "amount": "1000", "sender": "ST1HB1T8WRNBYB0Y3T7WXZS38NKKPTBR3EG9EPJKR", "recipient": "ST29V10QEA7BRZBTWRFC4M70NJ4J6RJB5P1C6EE84"}}], "block_hash": "0x4c61011ca592f5ed4c02a21ca3426a092230c743801f89ecd9fdfc6d6d455474", "miner_txid": "0x1577708f0bee76750388ad0be55d2db2e5cb680daff27e58e22b6472aa0993a5", "block_height": 32, "transactions": [{"txid": "0x9d827123960cd2a96f4c20e086d70699b12f170305bb000cf5207006f3095dc8", "raw_tx": "0x8080000000040062b0e91cc557e583c3d1f9dfe468ace76d2f03740000000000000006000000000000012c0000812e30923f63acff76ba13cd1d6683239d821cac6d8c86b682dc45f031b99f46125bb10ebb7c07fa25e9b225b68a07b40dab575ccecc12e4723e8d7a6987b6ff03020000000000051a93b082ee51d78faf5cc3d84a1c1591246c4965b000000000000003e800000000000000000000000000000000000000000000000000000000000000000000", "status": "success", "tx_index": 0, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": null, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}], "anchored_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "burn_block_hash": "0x6222c9d35860d2dd92510be02a68a25f036a881b94e1ab908abf5aa8c4f2f2da", "burn_block_time": 1710344167, "index_block_hash": "0x3db30562d60292e4be614f25026d1016bc8ce89d5bd6e6401cfd38111a22beca", "burn_block_height": 129, "parent_block_hash": "0xdbe8cf1b8ba9f17659878dcc0203ce3351b44070e8aed338bddcac4def3c9a25", "parent_microblock": "0x0000000000000000000000000000000000000000000000000000000000000000", "pox_v1_unlock_height": 104, "pox_v2_unlock_height": 106, "pox_v3_unlock_height": 109, "matured_miner_rewards": [], "parent_burn_block_hash": "0x6222c9d35860d2dd92510be02a68a25f036a881b94e1ab908abf5aa8c4f2f2da", "parent_index_block_hash": "0x5c02e6680df79485cf9ae640e0fc32a718b297c4bb30047e04730467f196ab5d", "parent_burn_block_height": 129, "confirmed_microblocks_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "parent_microblock_sequence": 0, "parent_burn_block_timestamp": 1710344167} +193 2024-03-13 15:36:12.704527+00 /new_mempool_tx ["0x8080000000040093b082ee51d78faf5cc3d84a1c1591246c4965b00000000000000007000000000000012c0001d7a1535a3175a011a0adae523ee09502fa6a09af3da43f2077a950d235ff8a29520fa8e93e9000a6e886011ac2f1aed92c04f1810bb2d0280accd685084e522d03020000000000051aad08341feab8ea788ef8045c343d21dcedc4483e00000000000003e800000000000000000000000000000000000000000000000000000000000000000000"] +194 2024-03-13 15:36:14.872017+00 /new_block {"events": [{"txid": "0x36c69e83ff63e6b7ce895c2d165734320f845c49bebcf11a04ceb3462bd5b73b", "type": "stx_transfer_event", "committed": true, "event_index": 0, "stx_transfer_event": {"memo": "00000000000000000000000000000000000000000000000000000000000000000000", "amount": "1000", "sender": "ST29V10QEA7BRZBTWRFC4M70NJ4J6RJB5P1C6EE84", "recipient": "ST2PGGD0ZXAWEMY4EZ025RD1X47EEVH287SQKA8BC"}}], "block_hash": "0x33ac2e1b487ad77a74a3aa1b2b0037619153f647fe4847e5242bee697868d878", "miner_txid": "0x1577708f0bee76750388ad0be55d2db2e5cb680daff27e58e22b6472aa0993a5", "block_height": 33, "transactions": [{"txid": "0x36c69e83ff63e6b7ce895c2d165734320f845c49bebcf11a04ceb3462bd5b73b", "raw_tx": "0x8080000000040093b082ee51d78faf5cc3d84a1c1591246c4965b00000000000000007000000000000012c0001d7a1535a3175a011a0adae523ee09502fa6a09af3da43f2077a950d235ff8a29520fa8e93e9000a6e886011ac2f1aed92c04f1810bb2d0280accd685084e522d03020000000000051aad08341feab8ea788ef8045c343d21dcedc4483e00000000000003e800000000000000000000000000000000000000000000000000000000000000000000", "status": "success", "tx_index": 0, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": null, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}], "anchored_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "burn_block_hash": "0x6222c9d35860d2dd92510be02a68a25f036a881b94e1ab908abf5aa8c4f2f2da", "burn_block_time": 1710344167, "index_block_hash": "0x673e35c063a23d77e6368b1af603bc8bc21f214a66d1224a764342af12feaffe", "burn_block_height": 129, "parent_block_hash": "0x4c61011ca592f5ed4c02a21ca3426a092230c743801f89ecd9fdfc6d6d455474", "parent_microblock": "0x0000000000000000000000000000000000000000000000000000000000000000", "pox_v1_unlock_height": 104, "pox_v2_unlock_height": 106, "pox_v3_unlock_height": 109, "matured_miner_rewards": [], "parent_burn_block_hash": "0x6222c9d35860d2dd92510be02a68a25f036a881b94e1ab908abf5aa8c4f2f2da", "parent_index_block_hash": "0x3db30562d60292e4be614f25026d1016bc8ce89d5bd6e6401cfd38111a22beca", "parent_burn_block_height": 129, "confirmed_microblocks_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "parent_microblock_sequence": 0, "parent_burn_block_timestamp": 1710344167} +195 2024-03-13 15:36:16.670998+00 /new_burn_block {"burn_amount": 20000, "burn_block_hash": "0x43bfaffb1a1ba75f2619ec43ebea27f33e2b532a5149ecdf0ec2c8d9c27f107f", "burn_block_height": 130, "reward_recipients": [], "reward_slot_holders": []} +196 2024-03-13 15:36:16.777476+00 /new_mempool_tx ["0x80800000000400ad08341feab8ea788ef8045c343d21dcedc4483e0000000000000007000000000000012c000103cb9eaf9aa009edc124dd42d0f1d37eeedc27d35798f893ea090e1542db36a7503d6c34376fe371a5a457de534503df3b2ee432050cff3d478875f8121b627003020000000000051a62b0e91cc557e583c3d1f9dfe468ace76d2f037400000000000003e800000000000000000000000000000000000000000000000000000000000000000000"] +197 2024-03-13 15:36:17.341682+00 /new_mempool_tx ["0x808000000004005146f0566e9796602a677d895852e9c0fe5686f7000000000000000400000000000003ee00015bfae34be438a152ddce3a894794ef38b95dd14acf95ca966945d29afb95fc742a056ee243220f953230eb3a1ba1ddb6674b287f03b94f93f8ab220cbd5a20a6030200000000021a000000000000000000000000000000000000000005706f782d340c737461636b2d657874656e640000000601000000000000000000000000000000010c000000020968617368627974657302000000145146f0566e9796602a677d895852e9c0fe5686f70776657273696f6e0200000001000a0200000041f7d7bd717c527878bc685191d04821559dbe26ba39503f3b5431b65091c363720c6f244292392fcef33a6e9645081e2c9252825f6a964d3df395f87b25630ce800020000002102dcde79b38787b72d8e5e0af81cffa802f0a3c8452d6b46e08859165f49a7273601ffffffffffffffffffffffffffffffff0100000000000000000000ae2d0d3d7e2c"] +198 2024-03-13 15:36:17.347777+00 /new_mempool_tx ["0x808000000004001e959caa6dd5bede3575cd3847ba81e56180b214000000000000000400000000000003ef00000610e9eabcf89f8bffffa7ca8662c863c2a8ac8d2a28ac9115dd4edac16dc0261aa9fc5b8e460b8e00c3bf360c61e6631cb18d04b1700bdabc2cc73d00529802030200000000021a000000000000000000000000000000000000000005706f782d340c737461636b2d657874656e640000000601000000000000000000000000000000010c000000020968617368627974657302000000141e959caa6dd5bede3575cd3847ba81e56180b2140776657273696f6e0200000001000a0200000041644c5ce96889ecdf44746c7ce868449e881a52c37923b487a5c65f2bdbbfcedf2cba094f96fd1731ed9c5620d92a81e81e5ed4935a493064c3da02adab5c8950010200000021029874497a7952483aa23890e9d0898696f33864d3df90939930a1f45421fe3b0901ffffffffffffffffffffffffffffffff010000000000000000000045b26ed1dec2"] +199 2024-03-13 15:36:17.355297+00 /new_mempool_tx ["0x8080000000040031ef5ee9a226a792b93f2bfbfbc54f523eba7818000000000000000400000000000003f0000199500fc22a2f12e6c7c318efdb1ed270943f7083dca19396890a14541f63f76556ad0a846544df5fe3f5d22c9e3831f18712609a3e42195fadfa982213cd0367030200000000021a000000000000000000000000000000000000000005706f782d340c737461636b2d657874656e640000000601000000000000000000000000000000010c0000000209686173686279746573020000001431ef5ee9a226a792b93f2bfbfbc54f523eba78180776657273696f6e0200000001000a020000004181cfd43cc6a4338326f226cb8bc35c31c3a50305890e519dca233bf3d51cc3e53ffe9338f5241159ce4870501ac708f4f81fb88c57c07e0b0efc3078d05ca486010200000021038e3c4529395611be9abf6fa3b6987e81d402385e3d605a073f42f407565a4a3d01ffffffffffffffffffffffffffffffff0100000000000000000000fc4ca7e7630a"] +200 2024-03-13 15:36:18.61663+00 /new_block {"events": [{"txid": "0x363d88975bf8f8037f56e75bd35303d0a82a6dc4baa25e5644fa88a519493471", "type": "stx_transfer_event", "committed": true, "event_index": 0, "stx_transfer_event": {"memo": "00000000000000000000000000000000000000000000000000000000000000000000", "amount": "1000", "sender": "ST2PGGD0ZXAWEMY4EZ025RD1X47EEVH287SQKA8BC", "recipient": "ST1HB1T8WRNBYB0Y3T7WXZS38NKKPTBR3EG9EPJKR"}}], "block_hash": "0x7cf9c91a792cd44c7c9f660dd23e0503ae3c9c1c2aaa2ad375f57bad6d701a7a", "miner_txid": "0xb0cbafd4d1ab29bd4251be0000019b4b55456b153882074411be32873c6a1c27", "block_height": 34, "transactions": [{"txid": "0x4c48b8f71a45aa7d6780068f1cefc95c06872016520ea6f3546a5ca4428e7310", "raw_tx": "0x808000000004001dc27eba0247f8cc9575e7d45e50a0bc7e72427d000000000000001d00000000000000000000e8560e4a1c3a656ed8d4ddf4270dfd5738f0d5e43520d8c0403b3850fb29750d302692150d218fb07faf6235d485d56b71854a1614e48ac3b3190b74c82165890102000000000730c49f21f65013e4fffcd73426d4bee310b013314a4846a063adda59976a2d047fa4a4cecb9229b130c49f21f65013e4fffcd73426d4bee310b01331673e35c063a23d77e6368b1af603bc8bc21f214a66d1224a764342af12feaffe0000000300b6c8b1779e32f9468ff4ed56d0669a5943313ca2", "status": "success", "tx_index": 0, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": null, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}, {"txid": "0x15552bb12edc78d027c8591b5dae32d02501a16ed89e404402abb6a66fcd0fb1", "raw_tx": "0x808000000004001dc27eba0247f8cc9575e7d45e50a0bc7e72427d000000000000001e00000000000000000001ec9e38c6ecfa867944c5db932d3af812e778f2ba7afe8c567a70599aa5c57d7b4ec4adfa678dead8c9bcf304cb104e95e8fd0f7a5f0e587ffd73c9b636718e020102000000000800000000000000000000000000000000000000000000000000000000000000000a051a2f438f17611dd028079f201915ccfcbcbfe4999129e8e4f4d893f9963ff40405235b09729e9d3c579803adcc8e677043d7f3a073f790e77998e1d36ee3aace6c371763d33105a6e75202a366c3beee5f07f3329415c5c6babba8ed7a1a8af9e80550b906", "status": "success", "tx_index": 1, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": null, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}, {"txid": "0x363d88975bf8f8037f56e75bd35303d0a82a6dc4baa25e5644fa88a519493471", "raw_tx": "0x80800000000400ad08341feab8ea788ef8045c343d21dcedc4483e0000000000000007000000000000012c000103cb9eaf9aa009edc124dd42d0f1d37eeedc27d35798f893ea090e1542db36a7503d6c34376fe371a5a457de534503df3b2ee432050cff3d478875f8121b627003020000000000051a62b0e91cc557e583c3d1f9dfe468ace76d2f037400000000000003e800000000000000000000000000000000000000000000000000000000000000000000", "status": "success", "tx_index": 2, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": null, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}, {"txid": "0xeb7dbcd8b506f291df3f4d0d141016edc909f0f9081f51bd5b1df1333bcb3e46", "raw_tx": "0x8080000000040031ef5ee9a226a792b93f2bfbfbc54f523eba7818000000000000000400000000000003f0000199500fc22a2f12e6c7c318efdb1ed270943f7083dca19396890a14541f63f76556ad0a846544df5fe3f5d22c9e3831f18712609a3e42195fadfa982213cd0367030200000000021a000000000000000000000000000000000000000005706f782d340c737461636b2d657874656e640000000601000000000000000000000000000000010c0000000209686173686279746573020000001431ef5ee9a226a792b93f2bfbfbc54f523eba78180776657273696f6e0200000001000a020000004181cfd43cc6a4338326f226cb8bc35c31c3a50305890e519dca233bf3d51cc3e53ffe9338f5241159ce4870501ac708f4f81fb88c57c07e0b0efc3078d05ca486010200000021038e3c4529395611be9abf6fa3b6987e81d402385e3d605a073f42f407565a4a3d01ffffffffffffffffffffffffffffffff0100000000000000000000fc4ca7e7630a", "status": "abort_by_response", "tx_index": 3, "raw_result": "0x080000000000000000000000000000000023", "burnchain_op": null, "contract_abi": null, "execution_cost": {"runtime": 157207, "read_count": 15, "read_length": 80950, "write_count": 1, "write_length": 1}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}, {"txid": "0xa00e7b4c5210be80d93550147ec943ddb27d4ec5b27b6811571dcd1ac69e10e8", "raw_tx": "0x808000000004001e959caa6dd5bede3575cd3847ba81e56180b214000000000000000400000000000003ef00000610e9eabcf89f8bffffa7ca8662c863c2a8ac8d2a28ac9115dd4edac16dc0261aa9fc5b8e460b8e00c3bf360c61e6631cb18d04b1700bdabc2cc73d00529802030200000000021a000000000000000000000000000000000000000005706f782d340c737461636b2d657874656e640000000601000000000000000000000000000000010c000000020968617368627974657302000000141e959caa6dd5bede3575cd3847ba81e56180b2140776657273696f6e0200000001000a0200000041644c5ce96889ecdf44746c7ce868449e881a52c37923b487a5c65f2bdbbfcedf2cba094f96fd1731ed9c5620d92a81e81e5ed4935a493064c3da02adab5c8950010200000021029874497a7952483aa23890e9d0898696f33864d3df90939930a1f45421fe3b0901ffffffffffffffffffffffffffffffff010000000000000000000045b26ed1dec2", "status": "abort_by_response", "tx_index": 4, "raw_result": "0x080000000000000000000000000000000023", "burnchain_op": null, "contract_abi": null, "execution_cost": {"runtime": 157207, "read_count": 15, "read_length": 80950, "write_count": 1, "write_length": 1}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}, {"txid": "0x437d10f88ef1a660cbe1527a046faa8efbd00534064b11315c5ddba206505006", "raw_tx": "0x808000000004005146f0566e9796602a677d895852e9c0fe5686f7000000000000000400000000000003ee00015bfae34be438a152ddce3a894794ef38b95dd14acf95ca966945d29afb95fc742a056ee243220f953230eb3a1ba1ddb6674b287f03b94f93f8ab220cbd5a20a6030200000000021a000000000000000000000000000000000000000005706f782d340c737461636b2d657874656e640000000601000000000000000000000000000000010c000000020968617368627974657302000000145146f0566e9796602a677d895852e9c0fe5686f70776657273696f6e0200000001000a0200000041f7d7bd717c527878bc685191d04821559dbe26ba39503f3b5431b65091c363720c6f244292392fcef33a6e9645081e2c9252825f6a964d3df395f87b25630ce800020000002102dcde79b38787b72d8e5e0af81cffa802f0a3c8452d6b46e08859165f49a7273601ffffffffffffffffffffffffffffffff0100000000000000000000ae2d0d3d7e2c", "status": "abort_by_response", "tx_index": 5, "raw_result": "0x080000000000000000000000000000000023", "burnchain_op": null, "contract_abi": null, "execution_cost": {"runtime": 157207, "read_count": 15, "read_length": 80950, "write_count": 1, "write_length": 1}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}], "anchored_cost": {"runtime": 471621, "read_count": 45, "read_length": 242850, "write_count": 3, "write_length": 3}, "burn_block_hash": "0x43bfaffb1a1ba75f2619ec43ebea27f33e2b532a5149ecdf0ec2c8d9c27f107f", "burn_block_time": 1710344176, "index_block_hash": "0x27e3a03fd6cc0e7098a93ece8a24c6d3d7b9f8851c9cd2613a5c4a2c09c69005", "burn_block_height": 130, "parent_block_hash": "0x33ac2e1b487ad77a74a3aa1b2b0037619153f647fe4847e5242bee697868d878", "parent_microblock": "0x0000000000000000000000000000000000000000000000000000000000000000", "pox_v1_unlock_height": 104, "pox_v2_unlock_height": 106, "pox_v3_unlock_height": 109, "matured_miner_rewards": [], "parent_burn_block_hash": "0x6222c9d35860d2dd92510be02a68a25f036a881b94e1ab908abf5aa8c4f2f2da", "parent_index_block_hash": "0x673e35c063a23d77e6368b1af603bc8bc21f214a66d1224a764342af12feaffe", "parent_burn_block_height": 129, "confirmed_microblocks_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "parent_microblock_sequence": 0, "parent_burn_block_timestamp": 1710344167} +201 2024-03-13 15:36:20.849116+00 /new_mempool_tx ["0x8080000000040062b0e91cc557e583c3d1f9dfe468ace76d2f03740000000000000007000000000000012c0000df663f83f65f30504f9dfbd5abb5ae1febe334eec449cb19c223b5f188b82fb57aa404ccf7e42231ef7617097a3348d3d2a7489cfc2b51514e780f83ef37178b03020000000000051a93b082ee51d78faf5cc3d84a1c1591246c4965b000000000000003e800000000000000000000000000000000000000000000000000000000000000000000"] +202 2024-03-13 15:36:22.255804+00 /new_block {"events": [{"txid": "0x2a47f66432d09c76a04b51c2ed0b618378907182353d2cef170836ea55ac0aed", "type": "stx_transfer_event", "committed": true, "event_index": 0, "stx_transfer_event": {"memo": "00000000000000000000000000000000000000000000000000000000000000000000", "amount": "1000", "sender": "ST1HB1T8WRNBYB0Y3T7WXZS38NKKPTBR3EG9EPJKR", "recipient": "ST29V10QEA7BRZBTWRFC4M70NJ4J6RJB5P1C6EE84"}}], "block_hash": "0xe54b514ea79d3d31aec7b701ed2bc5d2992ffb1300e94008372b33c3c1c4ef91", "miner_txid": "0xb0cbafd4d1ab29bd4251be0000019b4b55456b153882074411be32873c6a1c27", "block_height": 35, "transactions": [{"txid": "0x2a47f66432d09c76a04b51c2ed0b618378907182353d2cef170836ea55ac0aed", "raw_tx": "0x8080000000040062b0e91cc557e583c3d1f9dfe468ace76d2f03740000000000000007000000000000012c0000df663f83f65f30504f9dfbd5abb5ae1febe334eec449cb19c223b5f188b82fb57aa404ccf7e42231ef7617097a3348d3d2a7489cfc2b51514e780f83ef37178b03020000000000051a93b082ee51d78faf5cc3d84a1c1591246c4965b000000000000003e800000000000000000000000000000000000000000000000000000000000000000000", "status": "success", "tx_index": 0, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": null, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}], "anchored_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "burn_block_hash": "0x43bfaffb1a1ba75f2619ec43ebea27f33e2b532a5149ecdf0ec2c8d9c27f107f", "burn_block_time": 1710344176, "index_block_hash": "0x9dbb199cfde04305bddfb37ca2e2caab7c4eeaf2144235b2ede0ff6a4e9e85a2", "burn_block_height": 130, "parent_block_hash": "0x7cf9c91a792cd44c7c9f660dd23e0503ae3c9c1c2aaa2ad375f57bad6d701a7a", "parent_microblock": "0x0000000000000000000000000000000000000000000000000000000000000000", "pox_v1_unlock_height": 104, "pox_v2_unlock_height": 106, "pox_v3_unlock_height": 109, "matured_miner_rewards": [], "parent_burn_block_hash": "0x43bfaffb1a1ba75f2619ec43ebea27f33e2b532a5149ecdf0ec2c8d9c27f107f", "parent_index_block_hash": "0x27e3a03fd6cc0e7098a93ece8a24c6d3d7b9f8851c9cd2613a5c4a2c09c69005", "parent_burn_block_height": 130, "confirmed_microblocks_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "parent_microblock_sequence": 0, "parent_burn_block_timestamp": 1710344176} +203 2024-03-13 15:36:24.889127+00 /new_mempool_tx ["0x8080000000040093b082ee51d78faf5cc3d84a1c1591246c4965b00000000000000008000000000000012c00004eeccb0606eb8c5549d10cd1354da32cc26a47850aa794e475fef80b6c9ba14824f96a358e141b62d4a09cd70f733550bdc3d966e7524bb99f7edfded5c2b9c103020000000000051aad08341feab8ea788ef8045c343d21dcedc4483e00000000000003e800000000000000000000000000000000000000000000000000000000000000000000"] +204 2024-03-13 15:36:28.494588+00 /new_block {"events": [{"txid": "0xf9c830ed16584a2ceffa65fd7d3be6cbd894f1a132cae68700dd47196a616e9a", "type": "stx_transfer_event", "committed": true, "event_index": 0, "stx_transfer_event": {"memo": "00000000000000000000000000000000000000000000000000000000000000000000", "amount": "1000", "sender": "ST29V10QEA7BRZBTWRFC4M70NJ4J6RJB5P1C6EE84", "recipient": "ST2PGGD0ZXAWEMY4EZ025RD1X47EEVH287SQKA8BC"}}], "block_hash": "0xe0709d60c736a4dfa3f56969b6929ec310c855a120aaa605371378512f961632", "miner_txid": "0xb0cbafd4d1ab29bd4251be0000019b4b55456b153882074411be32873c6a1c27", "block_height": 36, "transactions": [{"txid": "0xf9c830ed16584a2ceffa65fd7d3be6cbd894f1a132cae68700dd47196a616e9a", "raw_tx": "0x8080000000040093b082ee51d78faf5cc3d84a1c1591246c4965b00000000000000008000000000000012c00004eeccb0606eb8c5549d10cd1354da32cc26a47850aa794e475fef80b6c9ba14824f96a358e141b62d4a09cd70f733550bdc3d966e7524bb99f7edfded5c2b9c103020000000000051aad08341feab8ea788ef8045c343d21dcedc4483e00000000000003e800000000000000000000000000000000000000000000000000000000000000000000", "status": "success", "tx_index": 0, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": null, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}], "anchored_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "burn_block_hash": "0x43bfaffb1a1ba75f2619ec43ebea27f33e2b532a5149ecdf0ec2c8d9c27f107f", "burn_block_time": 1710344176, "index_block_hash": "0x714a5616b1b429ddbc6e86685850565aa8756867e95747cb7c14d78d139e9452", "burn_block_height": 130, "parent_block_hash": "0xe54b514ea79d3d31aec7b701ed2bc5d2992ffb1300e94008372b33c3c1c4ef91", "parent_microblock": "0x0000000000000000000000000000000000000000000000000000000000000000", "pox_v1_unlock_height": 104, "pox_v2_unlock_height": 106, "pox_v3_unlock_height": 109, "matured_miner_rewards": [], "parent_burn_block_hash": "0x43bfaffb1a1ba75f2619ec43ebea27f33e2b532a5149ecdf0ec2c8d9c27f107f", "parent_index_block_hash": "0x9dbb199cfde04305bddfb37ca2e2caab7c4eeaf2144235b2ede0ff6a4e9e85a2", "parent_burn_block_height": 130, "confirmed_microblocks_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "parent_microblock_sequence": 0, "parent_burn_block_timestamp": 1710344176} +205 2024-03-13 15:36:28.797157+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x50740450df97bf533acbf62a323d4cf857862847a10fb9483c1ab22db3f25dcb", "burn_block_height": 131, "reward_recipients": [{"amt": 20000, "recipient": "mk4zAE1iVWf5PJAgeX83rSXnzF5zQBiqf1"}], "reward_slot_holders": ["mk4zAE1iVWf5PJAgeX83rSXnzF5zQBiqf1", "mk4zAE1iVWf5PJAgeX83rSXnzF5zQBiqf1"]} +206 2024-03-13 15:36:28.983491+00 /new_mempool_tx ["0x80800000000400ad08341feab8ea788ef8045c343d21dcedc4483e0000000000000008000000000000012c0001fbe2723dcfddaa3e207913d90e5ecd8afb9b84ef7078ace423af5d71387bca4252b48b28742ede7a8ceb7b38c25b0d6195dcc50ec083797d273cb45973e7c50d03020000000000051a62b0e91cc557e583c3d1f9dfe468ace76d2f037400000000000003e800000000000000000000000000000000000000000000000000000000000000000000"] +207 2024-03-13 15:36:29.591753+00 /new_mempool_tx ["0x808000000004005146f0566e9796602a677d895852e9c0fe5686f7000000000000000500000000000003f100000f4b40d8e0bc5bcd27599638031349f7f33ef022d706f96f9aa2dae1f72fee2f0879692f8e1024884fe8f034c6a9a880bc576213c0543591c5f1c1322ad3fc82030200000000021a000000000000000000000000000000000000000005706f782d340c737461636b2d657874656e640000000601000000000000000000000000000000010c000000020968617368627974657302000000145146f0566e9796602a677d895852e9c0fe5686f70776657273696f6e0200000001000a020000004168dba902b13900ce2f14e317e073144de991655787e268a20ba123004a8a67101055a503a3b058d5131c5580dcd1c26d96afabe1e2cd2d765b9f5c6876dad53101020000002102dcde79b38787b72d8e5e0af81cffa802f0a3c8452d6b46e08859165f49a7273601ffffffffffffffffffffffffffffffff01000000000000000000009158b1f89522", "0x8080000000040031ef5ee9a226a792b93f2bfbfbc54f523eba7818000000000000000500000000000003f300019e8f639e13d908c3ac7cac913142ccaf1393a651ce6160a92b478fa4c1a30cf11ba57c0ebe1b4f3dbf3db6d8325ccdce059067e6ad4e22cb0605ca09b5488cda030200000000021a000000000000000000000000000000000000000005706f782d340c737461636b2d657874656e640000000601000000000000000000000000000000010c0000000209686173686279746573020000001431ef5ee9a226a792b93f2bfbfbc54f523eba78180776657273696f6e0200000001000a02000000413a81af64e72c5927d8da3b8f714a63eb80991a12dd32a5dc3a7260afede896841f9e26d4226b4d567c088599baa90d8b6f6dcc644a6bd83ab3fcf59cbcd20bbf000200000021038e3c4529395611be9abf6fa3b6987e81d402385e3d605a073f42f407565a4a3d01ffffffffffffffffffffffffffffffff0100000000000000000000fa8124b4330b"] +208 2024-03-13 15:36:29.603142+00 /new_mempool_tx ["0x808000000004001e959caa6dd5bede3575cd3847ba81e56180b214000000000000000500000000000003f20000b1fd680d8f630051d607767c041866637b13e4ba53e86642e8ae8b364d7c23b626ff0144d05554c9a318b75eab1c6298f8b712d18005dbd8e4172206e651a86b030200000000021a000000000000000000000000000000000000000005706f782d340c737461636b2d657874656e640000000601000000000000000000000000000000010c000000020968617368627974657302000000141e959caa6dd5bede3575cd3847ba81e56180b2140776657273696f6e0200000001000a0200000041e29da1c6066014a2e4af57a6a6e656e3cf8b979aab77f193185400a3adb3907339aebed87e3f3485da28a8d8641c081374c73197244a00ba8813df292c472b6e000200000021029874497a7952483aa23890e9d0898696f33864d3df90939930a1f45421fe3b0901ffffffffffffffffffffffffffffffff0100000000000000000000739c410f1be2"] +209 2024-03-13 15:36:30.002309+00 /new_block {"events": [], "block_hash": "0x3a2744ed5fcb13719d402426aeb8912aeeda9c0281a3e963b09c8b01276a8665", "miner_txid": "0x3a29b22cb5c0f2e22b0e5132fc8157fa51ff32662bc63537274dc3e690d52635", "block_height": 37, "transactions": [{"txid": "0x554bb86f08095c174394cf6aa2da9154f962b8ebabf40ee69f95751bcf4f5a39", "raw_tx": "0x808000000004001dc27eba0247f8cc9575e7d45e50a0bc7e72427d000000000000001f000000000000000000014d1b60ce80572be39c4cdc6cb311c7a529f8fd8ac0ab3c4ec0c2de39e52881e61f132596d7d1092955325444330e05cc5cf5338701376a565c7fbcabe19cc956010200000000070be55464e4e5010a27ca7f6d38f0c5f2ba436dd030c49f21f65013e4fffcd73426d4bee310b013310be55464e4e5010a27ca7f6d38f0c5f2ba436dd0714a5616b1b429ddbc6e86685850565aa8756867e95747cb7c14d78d139e94520000000300b6c8b1779e32f9468ff4ed56d0669a5943313ca2", "status": "success", "tx_index": 0, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": null, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}, {"txid": "0x0e218308be7365719c750ce447cf31ea06294345f5cf7ce1949bd56a8e9ff0ef", "raw_tx": "0x808000000004001dc27eba0247f8cc9575e7d45e50a0bc7e72427d00000000000000200000000000000000000121c5b9f7703197d07d5303fcc135f414671b3cecf43dda8312115d8ce9b50b5830537d326e8b55f7f33288b4e59ddb73bc97eb85bf5b81156c3b961a0495f8e00102000000000800000000000000000000000000000000000000000000000000000000000000000a051a2f438f17611dd028079f201915ccfcbcbfe4999193a89678e799d1b50649574944eff262c49d9773915567f6d3401381cdcebf19b72d1fe5dd907addbb7c1b21eeb12012425bdc74de3850bcfb322f0fcc8f6eec0e93dca81b4ce0d8e45f593f2f8b000a", "status": "success", "tx_index": 1, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": null, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}], "anchored_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "burn_block_hash": "0x50740450df97bf533acbf62a323d4cf857862847a10fb9483c1ab22db3f25dcb", "burn_block_time": 1710344188, "index_block_hash": "0x725e3a7e85ca01bcd67369700ebb43a5bf9b60712b1459a5d5b83a1246e7b65f", "burn_block_height": 131, "parent_block_hash": "0xe0709d60c736a4dfa3f56969b6929ec310c855a120aaa605371378512f961632", "parent_microblock": "0x0000000000000000000000000000000000000000000000000000000000000000", "pox_v1_unlock_height": 104, "pox_v2_unlock_height": 106, "pox_v3_unlock_height": 109, "matured_miner_rewards": [], "parent_burn_block_hash": "0x43bfaffb1a1ba75f2619ec43ebea27f33e2b532a5149ecdf0ec2c8d9c27f107f", "parent_index_block_hash": "0x714a5616b1b429ddbc6e86685850565aa8756867e95747cb7c14d78d139e9452", "parent_burn_block_height": 130, "confirmed_microblocks_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "parent_microblock_sequence": 0, "parent_burn_block_timestamp": 1710344176} +210 2024-03-13 15:36:33.636449+00 /new_block {"events": [{"txid": "0xd70a995656669e4b53c44c8eebee3218e9ee0d31f6c9fe831171249a919fcc63", "type": "contract_event", "committed": true, "event_index": 3, "contract_event": {"topic": "print", "value": {"Response": {"data": {"Tuple": {"data_map": {"data": {"Tuple": {"data_map": {"auth-id": {"UInt": 127114943601634}, "pox-addr": {"Tuple": {"data_map": {"version": {"Sequence": {"Buffer": {"data": [0]}}}, "hashbytes": {"Sequence": {"Buffer": {"data": [30, 149, 156, 170, 109, 213, 190, 222, 53, 117, 205, 56, 71, 186, 129, 229, 97, 128, 178, 20]}}}}, "type_signature": {"type_map": {"version": {"SequenceType": {"BufferType": 1}}, "hashbytes": {"SequenceType": {"BufferType": 20}}}}}}, "max-amount": {"UInt": 340282366920938500000000000000000000000}, "signer-key": {"Sequence": {"Buffer": {"data": [2, 152, 116, 73, 122, 121, 82, 72, 58, 162, 56, 144, 233, 208, 137, 134, 150, 243, 56, 100, 211, 223, 144, 147, 153, 48, 161, 244, 84, 33, 254, 59, 9]}}}, "signer-sig": {"Optional": {"data": {"Sequence": {"Buffer": {"data": [226, 157, 161, 198, 6, 96, 20, 162, 228, 175, 87, 166, 166, 230, 86, 227, 207, 139, 151, 154, 171, 119, 241, 147, 24, 84, 0, 163, 173, 179, 144, 115, 57, 174, 190, 216, 126, 63, 52, 133, 218, 40, 168, 216, 100, 28, 8, 19, 116, 199, 49, 151, 36, 74, 0, 186, 136, 19, 223, 41, 44, 71, 43, 110, 0]}}}}}, "end-cycle-id": {"Optional": {"data": {"UInt": 15}}}, "extend-count": {"UInt": 1}, "start-cycle-id": {"UInt": 14}, "unlock-burn-height": {"UInt": 150}}, "type_signature": {"type_map": {"auth-id": "UIntType", "pox-addr": {"TupleType": {"type_map": {"version": {"SequenceType": {"BufferType": 1}}, "hashbytes": {"SequenceType": {"BufferType": 20}}}}}, "max-amount": "UIntType", "signer-key": {"SequenceType": {"BufferType": 33}}, "signer-sig": {"OptionalType": {"SequenceType": {"BufferType": 65}}}, "end-cycle-id": {"OptionalType": "UIntType"}, "extend-count": "UIntType", "start-cycle-id": "UIntType", "unlock-burn-height": "UIntType"}}}}, "name": {"Sequence": {"String": {"ASCII": {"data": [115, 116, 97, 99, 107, 45, 101, 120, 116, 101, 110, 100]}}}}, "locked": {"UInt": 457500900000000000}, "balance": {"UInt": 542499099999986000}, "stacker": {"Principal": {"Standard": [26, [30, 149, 156, 170, 109, 213, 190, 222, 53, 117, 205, 56, 71, 186, 129, 229, 97, 128, 178, 20]]}}, "burnchain-unlock-height": {"UInt": 140}}, "type_signature": {"type_map": {"data": {"TupleType": {"type_map": {"auth-id": "UIntType", "pox-addr": {"TupleType": {"type_map": {"version": {"SequenceType": {"BufferType": 1}}, "hashbytes": {"SequenceType": {"BufferType": 20}}}}}, "max-amount": "UIntType", "signer-key": {"SequenceType": {"BufferType": 33}}, "signer-sig": {"OptionalType": {"SequenceType": {"BufferType": 65}}}, "end-cycle-id": {"OptionalType": "UIntType"}, "extend-count": "UIntType", "start-cycle-id": "UIntType", "unlock-burn-height": "UIntType"}}}, "name": {"SequenceType": {"StringType": {"ASCII": 12}}}, "locked": "UIntType", "balance": "UIntType", "stacker": "PrincipalType", "burnchain-unlock-height": "UIntType"}}}}, "committed": true}}, "raw_value": "0x070c000000060762616c616e63650100000000000000000787580ea277e13a176275726e636861696e2d756e6c6f636b2d686569676874010000000000000000000000000000008c04646174610c0000000907617574682d69640100000000000000000000739c410f1be20c656e642d6379636c652d69640a010000000000000000000000000000000f0c657874656e642d636f756e7401000000000000000000000000000000010a6d61782d616d6f756e7401ffffffffffffffffffffffffffffffff08706f782d616464720c000000020968617368627974657302000000141e959caa6dd5bede3575cd3847ba81e56180b2140776657273696f6e0200000001000a7369676e65722d6b65790200000021029874497a7952483aa23890e9d0898696f33864d3df90939930a1f45421fe3b090a7369676e65722d7369670a0200000041e29da1c6066014a2e4af57a6a6e656e3cf8b979aab77f193185400a3adb3907339aebed87e3f3485da28a8d8641c081374c73197244a00ba8813df292c472b6e000e73746172742d6379636c652d6964010000000000000000000000000000000e12756e6c6f636b2d6275726e2d6865696768740100000000000000000000000000000096066c6f636b656401000000000000000006595ea504ebe800046e616d650d0000000c737461636b2d657874656e6407737461636b6572051a1e959caa6dd5bede3575cd3847ba81e56180b214", "contract_identifier": "ST000000000000000000002AMW42H.pox-4"}}, {"txid": "0xd70a995656669e4b53c44c8eebee3218e9ee0d31f6c9fe831171249a919fcc63", "type": "stx_lock_event", "committed": true, "event_index": 4, "stx_lock_event": {"locked_amount": "457500900000000000", "unlock_height": "150", "locked_address": "STF9B75ADQAVXQHNEQ6KGHXTG7JP305J2GRWF3A2", "contract_identifier": "ST000000000000000000002AMW42H.pox-4"}}, {"txid": "0xc9dd00f9da4addbf844d43b371b2021242002a24cdb066fab1c2422032e2ca83", "type": "stx_lock_event", "committed": true, "event_index": 2, "stx_lock_event": {"locked_amount": "686251350000000000", "unlock_height": "150", "locked_address": "STRYYQQ9M8KAF4NS7WNZQYY59X93XEKR31JP64CP", "contract_identifier": "ST000000000000000000002AMW42H.pox-4"}}, {"txid": "0x46f0fe6b2cc8cec259839a421c38d95814db50161d60b1c6fe195be470ca1294", "type": "stx_transfer_event", "committed": true, "event_index": 0, "stx_transfer_event": {"memo": "00000000000000000000000000000000000000000000000000000000000000000000", "amount": "1000", "sender": "ST2PGGD0ZXAWEMY4EZ025RD1X47EEVH287SQKA8BC", "recipient": "ST1HB1T8WRNBYB0Y3T7WXZS38NKKPTBR3EG9EPJKR"}}, {"txid": "0xdf27e645c16d8a72ba8369ff0635c1305beea4166487bb290edda2181752ab37", "type": "contract_event", "committed": true, "event_index": 5, "contract_event": {"topic": "print", "value": {"Response": {"data": {"Tuple": {"data_map": {"data": {"Tuple": {"data_map": {"auth-id": {"UInt": 159810129007906}, "pox-addr": {"Tuple": {"data_map": {"version": {"Sequence": {"Buffer": {"data": [0]}}}, "hashbytes": {"Sequence": {"Buffer": {"data": [81, 70, 240, 86, 110, 151, 150, 96, 42, 103, 125, 137, 88, 82, 233, 192, 254, 86, 134, 247]}}}}, "type_signature": {"type_map": {"version": {"SequenceType": {"BufferType": 1}}, "hashbytes": {"SequenceType": {"BufferType": 20}}}}}}, "max-amount": {"UInt": 340282366920938500000000000000000000000}, "signer-key": {"Sequence": {"Buffer": {"data": [2, 220, 222, 121, 179, 135, 135, 183, 45, 142, 94, 10, 248, 28, 255, 168, 2, 240, 163, 200, 69, 45, 107, 70, 224, 136, 89, 22, 95, 73, 167, 39, 54]}}}, "signer-sig": {"Optional": {"data": {"Sequence": {"Buffer": {"data": [104, 219, 169, 2, 177, 57, 0, 206, 47, 20, 227, 23, 224, 115, 20, 77, 233, 145, 101, 87, 135, 226, 104, 162, 11, 161, 35, 0, 74, 138, 103, 16, 16, 85, 165, 3, 163, 176, 88, 213, 19, 28, 85, 128, 220, 209, 194, 109, 150, 175, 171, 225, 226, 205, 45, 118, 91, 159, 92, 104, 118, 218, 213, 49, 1]}}}}}, "end-cycle-id": {"Optional": {"data": {"UInt": 15}}}, "extend-count": {"UInt": 1}, "start-cycle-id": {"UInt": 14}, "unlock-burn-height": {"UInt": 150}}, "type_signature": {"type_map": {"auth-id": "UIntType", "pox-addr": {"TupleType": {"type_map": {"version": {"SequenceType": {"BufferType": 1}}, "hashbytes": {"SequenceType": {"BufferType": 20}}}}}, "max-amount": "UIntType", "signer-key": {"SequenceType": {"BufferType": 33}}, "signer-sig": {"OptionalType": {"SequenceType": {"BufferType": 65}}}, "end-cycle-id": {"OptionalType": "UIntType"}, "extend-count": "UIntType", "start-cycle-id": "UIntType", "unlock-burn-height": "UIntType"}}}}, "name": {"Sequence": {"String": {"ASCII": {"data": [115, 116, 97, 99, 107, 45, 101, 120, 116, 101, 110, 100]}}}}, "locked": {"UInt": 228750450000000000}, "balance": {"UInt": 771249549999985900}, "stacker": {"Principal": {"Standard": [26, [81, 70, 240, 86, 110, 151, 150, 96, 42, 103, 125, 137, 88, 82, 233, 192, 254, 86, 134, 247]]}}, "burnchain-unlock-height": {"UInt": 140}}, "type_signature": {"type_map": {"data": {"TupleType": {"type_map": {"auth-id": "UIntType", "pox-addr": {"TupleType": {"type_map": {"version": {"SequenceType": {"BufferType": 1}}, "hashbytes": {"SequenceType": {"BufferType": 20}}}}}, "max-amount": "UIntType", "signer-key": {"SequenceType": {"BufferType": 33}}, "signer-sig": {"OptionalType": {"SequenceType": {"BufferType": 65}}}, "end-cycle-id": {"OptionalType": "UIntType"}, "extend-count": "UIntType", "start-cycle-id": "UIntType", "unlock-burn-height": "UIntType"}}}, "name": {"SequenceType": {"StringType": {"ASCII": 12}}}, "locked": "UIntType", "balance": "UIntType", "stacker": "PrincipalType", "burnchain-unlock-height": "UIntType"}}}}, "committed": true}}, "raw_value": "0x070c000000060762616c616e63650100000000000000000ab4076124edd53e176275726e636861696e2d756e6c6f636b2d686569676874010000000000000000000000000000008c04646174610c0000000907617574682d696401000000000000000000009158b1f895220c656e642d6379636c652d69640a010000000000000000000000000000000f0c657874656e642d636f756e7401000000000000000000000000000000010a6d61782d616d6f756e7401ffffffffffffffffffffffffffffffff08706f782d616464720c000000020968617368627974657302000000145146f0566e9796602a677d895852e9c0fe5686f70776657273696f6e0200000001000a7369676e65722d6b6579020000002102dcde79b38787b72d8e5e0af81cffa802f0a3c8452d6b46e08859165f49a727360a7369676e65722d7369670a020000004168dba902b13900ce2f14e317e073144de991655787e268a20ba123004a8a67101055a503a3b058d5131c5580dcd1c26d96afabe1e2cd2d765b9f5c6876dad531010e73746172742d6379636c652d6964010000000000000000000000000000000e12756e6c6f636b2d6275726e2d6865696768740100000000000000000000000000000096066c6f636b6564010000000000000000032caf528275f400046e616d650d0000000c737461636b2d657874656e6407737461636b6572051a5146f0566e9796602a677d895852e9c0fe5686f7", "contract_identifier": "ST000000000000000000002AMW42H.pox-4"}}, {"txid": "0xc9dd00f9da4addbf844d43b371b2021242002a24cdb066fab1c2422032e2ca83", "type": "contract_event", "committed": true, "event_index": 1, "contract_event": {"topic": "print", "value": {"Response": {"data": {"Tuple": {"data_map": {"data": {"Tuple": {"data_map": {"auth-id": {"UInt": 275432573514507}, "pox-addr": {"Tuple": {"data_map": {"version": {"Sequence": {"Buffer": {"data": [0]}}}, "hashbytes": {"Sequence": {"Buffer": {"data": [49, 239, 94, 233, 162, 38, 167, 146, 185, 63, 43, 251, 251, 197, 79, 82, 62, 186, 120, 24]}}}}, "type_signature": {"type_map": {"version": {"SequenceType": {"BufferType": 1}}, "hashbytes": {"SequenceType": {"BufferType": 20}}}}}}, "max-amount": {"UInt": 340282366920938500000000000000000000000}, "signer-key": {"Sequence": {"Buffer": {"data": [3, 142, 60, 69, 41, 57, 86, 17, 190, 154, 191, 111, 163, 182, 152, 126, 129, 212, 2, 56, 94, 61, 96, 90, 7, 63, 66, 244, 7, 86, 90, 74, 61]}}}, "signer-sig": {"Optional": {"data": {"Sequence": {"Buffer": {"data": [58, 129, 175, 100, 231, 44, 89, 39, 216, 218, 59, 143, 113, 74, 99, 235, 128, 153, 26, 18, 221, 50, 165, 220, 58, 114, 96, 175, 237, 232, 150, 132, 31, 158, 38, 212, 34, 107, 77, 86, 124, 8, 133, 153, 186, 169, 13, 139, 111, 109, 204, 100, 74, 107, 216, 58, 179, 252, 245, 156, 188, 210, 11, 191, 0]}}}}}, "end-cycle-id": {"Optional": {"data": {"UInt": 15}}}, "extend-count": {"UInt": 1}, "start-cycle-id": {"UInt": 14}, "unlock-burn-height": {"UInt": 150}}, "type_signature": {"type_map": {"auth-id": "UIntType", "pox-addr": {"TupleType": {"type_map": {"version": {"SequenceType": {"BufferType": 1}}, "hashbytes": {"SequenceType": {"BufferType": 20}}}}}, "max-amount": "UIntType", "signer-key": {"SequenceType": {"BufferType": 33}}, "signer-sig": {"OptionalType": {"SequenceType": {"BufferType": 65}}}, "end-cycle-id": {"OptionalType": "UIntType"}, "extend-count": "UIntType", "start-cycle-id": "UIntType", "unlock-burn-height": "UIntType"}}}}, "name": {"Sequence": {"String": {"ASCII": {"data": [115, 116, 97, 99, 107, 45, 101, 120, 116, 101, 110, 100]}}}}, "locked": {"UInt": 686251350000000000}, "balance": {"UInt": 313748649999986000}, "stacker": {"Principal": {"Standard": [26, [49, 239, 94, 233, 162, 38, 167, 146, 185, 63, 43, 251, 251, 197, 79, 82, 62, 186, 120, 24]]}}, "burnchain-unlock-height": {"UInt": 140}}, "type_signature": {"type_map": {"data": {"TupleType": {"type_map": {"auth-id": "UIntType", "pox-addr": {"TupleType": {"type_map": {"version": {"SequenceType": {"BufferType": 1}}, "hashbytes": {"SequenceType": {"BufferType": 20}}}}}, "max-amount": "UIntType", "signer-key": {"SequenceType": {"BufferType": 33}}, "signer-sig": {"OptionalType": {"SequenceType": {"BufferType": 65}}}, "end-cycle-id": {"OptionalType": "UIntType"}, "extend-count": "UIntType", "start-cycle-id": "UIntType", "unlock-burn-height": "UIntType"}}}, "name": {"SequenceType": {"StringType": {"ASCII": 12}}}, "locked": "UIntType", "balance": "UIntType", "stacker": "PrincipalType", "burnchain-unlock-height": "UIntType"}}}}, "committed": true}}, "raw_value": "0x070c000000060762616c616e6365010000000000000000045aa8bc2001ed36176275726e636861696e2d756e6c6f636b2d686569676874010000000000000000000000000000008c04646174610c0000000907617574682d69640100000000000000000000fa8124b4330b0c656e642d6379636c652d69640a010000000000000000000000000000000f0c657874656e642d636f756e7401000000000000000000000000000000010a6d61782d616d6f756e7401ffffffffffffffffffffffffffffffff08706f782d616464720c0000000209686173686279746573020000001431ef5ee9a226a792b93f2bfbfbc54f523eba78180776657273696f6e0200000001000a7369676e65722d6b65790200000021038e3c4529395611be9abf6fa3b6987e81d402385e3d605a073f42f407565a4a3d0a7369676e65722d7369670a02000000413a81af64e72c5927d8da3b8f714a63eb80991a12dd32a5dc3a7260afede896841f9e26d4226b4d567c088599baa90d8b6f6dcc644a6bd83ab3fcf59cbcd20bbf000e73746172742d6379636c652d6964010000000000000000000000000000000e12756e6c6f636b2d6275726e2d6865696768740100000000000000000000000000000096066c6f636b656401000000000000000009860df78761dc00046e616d650d0000000c737461636b2d657874656e6407737461636b6572051a31ef5ee9a226a792b93f2bfbfbc54f523eba7818", "contract_identifier": "ST000000000000000000002AMW42H.pox-4"}}, {"txid": "0xdf27e645c16d8a72ba8369ff0635c1305beea4166487bb290edda2181752ab37", "type": "stx_lock_event", "committed": true, "event_index": 6, "stx_lock_event": {"locked_amount": "228750450000000000", "unlock_height": "150", "locked_address": "ST18MDW2PDTBSCR1ACXYRJP2JX70FWNM6YY2VX4SS", "contract_identifier": "ST000000000000000000002AMW42H.pox-4"}}], "block_hash": "0xaf34150452876272a6b21f0846a4245b1bd2aaeb4d7cfd9f003dab4f867b1875", "miner_txid": "0x3a29b22cb5c0f2e22b0e5132fc8157fa51ff32662bc63537274dc3e690d52635", "block_height": 38, "transactions": [{"txid": "0x46f0fe6b2cc8cec259839a421c38d95814db50161d60b1c6fe195be470ca1294", "raw_tx": "0x80800000000400ad08341feab8ea788ef8045c343d21dcedc4483e0000000000000008000000000000012c0001fbe2723dcfddaa3e207913d90e5ecd8afb9b84ef7078ace423af5d71387bca4252b48b28742ede7a8ceb7b38c25b0d6195dcc50ec083797d273cb45973e7c50d03020000000000051a62b0e91cc557e583c3d1f9dfe468ace76d2f037400000000000003e800000000000000000000000000000000000000000000000000000000000000000000", "status": "success", "tx_index": 0, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": null, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}, {"txid": "0xc9dd00f9da4addbf844d43b371b2021242002a24cdb066fab1c2422032e2ca83", "raw_tx": "0x8080000000040031ef5ee9a226a792b93f2bfbfbc54f523eba7818000000000000000500000000000003f300019e8f639e13d908c3ac7cac913142ccaf1393a651ce6160a92b478fa4c1a30cf11ba57c0ebe1b4f3dbf3db6d8325ccdce059067e6ad4e22cb0605ca09b5488cda030200000000021a000000000000000000000000000000000000000005706f782d340c737461636b2d657874656e640000000601000000000000000000000000000000010c0000000209686173686279746573020000001431ef5ee9a226a792b93f2bfbfbc54f523eba78180776657273696f6e0200000001000a02000000413a81af64e72c5927d8da3b8f714a63eb80991a12dd32a5dc3a7260afede896841f9e26d4226b4d567c088599baa90d8b6f6dcc644a6bd83ab3fcf59cbcd20bbf000200000021038e3c4529395611be9abf6fa3b6987e81d402385e3d605a073f42f407565a4a3d01ffffffffffffffffffffffffffffffff0100000000000000000000fa8124b4330b", "status": "success", "tx_index": 1, "raw_result": "0x070c0000000207737461636b6572051a31ef5ee9a226a792b93f2bfbfbc54f523eba781812756e6c6f636b2d6275726e2d6865696768740100000000000000000000000000000096", "burnchain_op": null, "contract_abi": null, "execution_cost": {"runtime": 753134, "read_count": 26, "read_length": 81096, "write_count": 6, "write_length": 858}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}, {"txid": "0xd70a995656669e4b53c44c8eebee3218e9ee0d31f6c9fe831171249a919fcc63", "raw_tx": "0x808000000004001e959caa6dd5bede3575cd3847ba81e56180b214000000000000000500000000000003f20000b1fd680d8f630051d607767c041866637b13e4ba53e86642e8ae8b364d7c23b626ff0144d05554c9a318b75eab1c6298f8b712d18005dbd8e4172206e651a86b030200000000021a000000000000000000000000000000000000000005706f782d340c737461636b2d657874656e640000000601000000000000000000000000000000010c000000020968617368627974657302000000141e959caa6dd5bede3575cd3847ba81e56180b2140776657273696f6e0200000001000a0200000041e29da1c6066014a2e4af57a6a6e656e3cf8b979aab77f193185400a3adb3907339aebed87e3f3485da28a8d8641c081374c73197244a00ba8813df292c472b6e000200000021029874497a7952483aa23890e9d0898696f33864d3df90939930a1f45421fe3b0901ffffffffffffffffffffffffffffffff0100000000000000000000739c410f1be2", "status": "success", "tx_index": 2, "raw_result": "0x070c0000000207737461636b6572051a1e959caa6dd5bede3575cd3847ba81e56180b21412756e6c6f636b2d6275726e2d6865696768740100000000000000000000000000000096", "burnchain_op": null, "contract_abi": null, "execution_cost": {"runtime": 756667, "read_count": 26, "read_length": 81157, "write_count": 6, "write_length": 858}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}, {"txid": "0xdf27e645c16d8a72ba8369ff0635c1305beea4166487bb290edda2181752ab37", "raw_tx": "0x808000000004005146f0566e9796602a677d895852e9c0fe5686f7000000000000000500000000000003f100000f4b40d8e0bc5bcd27599638031349f7f33ef022d706f96f9aa2dae1f72fee2f0879692f8e1024884fe8f034c6a9a880bc576213c0543591c5f1c1322ad3fc82030200000000021a000000000000000000000000000000000000000005706f782d340c737461636b2d657874656e640000000601000000000000000000000000000000010c000000020968617368627974657302000000145146f0566e9796602a677d895852e9c0fe5686f70776657273696f6e0200000001000a020000004168dba902b13900ce2f14e317e073144de991655787e268a20ba123004a8a67101055a503a3b058d5131c5580dcd1c26d96afabe1e2cd2d765b9f5c6876dad53101020000002102dcde79b38787b72d8e5e0af81cffa802f0a3c8452d6b46e08859165f49a7273601ffffffffffffffffffffffffffffffff01000000000000000000009158b1f89522", "status": "success", "tx_index": 3, "raw_result": "0x070c0000000207737461636b6572051a5146f0566e9796602a677d895852e9c0fe5686f712756e6c6f636b2d6275726e2d6865696768740100000000000000000000000000000096", "burnchain_op": null, "contract_abi": null, "execution_cost": {"runtime": 756667, "read_count": 26, "read_length": 81157, "write_count": 6, "write_length": 858}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}], "anchored_cost": {"runtime": 2266468, "read_count": 78, "read_length": 243410, "write_count": 18, "write_length": 2574}, "burn_block_hash": "0x50740450df97bf533acbf62a323d4cf857862847a10fb9483c1ab22db3f25dcb", "burn_block_time": 1710344188, "index_block_hash": "0xcf4a4e100d9181d24a7b963cceb4ef2cc063adde5e6974b5d04bf5e0dfe60005", "burn_block_height": 131, "parent_block_hash": "0x3a2744ed5fcb13719d402426aeb8912aeeda9c0281a3e963b09c8b01276a8665", "parent_microblock": "0x0000000000000000000000000000000000000000000000000000000000000000", "pox_v1_unlock_height": 104, "pox_v2_unlock_height": 106, "pox_v3_unlock_height": 109, "matured_miner_rewards": [], "parent_burn_block_hash": "0x50740450df97bf533acbf62a323d4cf857862847a10fb9483c1ab22db3f25dcb", "parent_index_block_hash": "0x725e3a7e85ca01bcd67369700ebb43a5bf9b60712b1459a5d5b83a1246e7b65f", "parent_burn_block_height": 131, "confirmed_microblocks_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "parent_microblock_sequence": 0, "parent_burn_block_timestamp": 1710344188} +211 2024-03-13 15:36:37.107808+00 /new_mempool_tx ["0x8080000000040062b0e91cc557e583c3d1f9dfe468ace76d2f03740000000000000008000000000000012c00019dc39abaf578f414d786e3f3a5abd1773933b22de39cbeffbd1db65e3d08a621662a4e63dbdb6e175d0ba546a6d7d2f580887381e7d6956f2a309f0b730430c703020000000000051a93b082ee51d78faf5cc3d84a1c1591246c4965b000000000000003e800000000000000000000000000000000000000000000000000000000000000000000"] +212 2024-03-13 15:36:37.869243+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x061dde7ab7e6928a4497ffa7a015fca09e5a0fdb0d3671bf4a5067ee82beb41c", "burn_block_height": 132, "reward_recipients": [{"amt": 10000, "recipient": "mk4zAE1iVWf5PJAgeX83rSXnzF5zQBiqf1"}, {"amt": 10000, "recipient": "miJfo2mKvRhvpxnRyJE17VBr12xn3FrkZW"}], "reward_slot_holders": ["miJfo2mKvRhvpxnRyJE17VBr12xn3FrkZW", "mk4zAE1iVWf5PJAgeX83rSXnzF5zQBiqf1"]} +213 2024-03-13 15:36:38.822584+00 /new_block {"events": [{"txid": "0xbae043bbc4bf6458f3a3ee0bd1a80976a456a4eb738b65378ec44d1ff7f9d089", "type": "stx_transfer_event", "committed": true, "event_index": 0, "stx_transfer_event": {"memo": "00000000000000000000000000000000000000000000000000000000000000000000", "amount": "1000", "sender": "ST1HB1T8WRNBYB0Y3T7WXZS38NKKPTBR3EG9EPJKR", "recipient": "ST29V10QEA7BRZBTWRFC4M70NJ4J6RJB5P1C6EE84"}}], "block_hash": "0xa364ffc541353b6f00ea1b1331bbadd1b6eaba1f224d700bffeb5bafc40838a5", "miner_txid": "0xd6aeec61ab0a52653835c8e74d46d986bf210a15e5bb906ad4579d4557f1e7ab", "block_height": 39, "transactions": [{"txid": "0x3563d03d0a36ed96cc497c98493e285631da369cf6fa5586a77eac6464e801be", "raw_tx": "0x808000000004001dc27eba0247f8cc9575e7d45e50a0bc7e72427d000000000000002100000000000000000000838addda82860b61cf0fb3bf0834341dea56919f14651e073117dbc9fb7187856b8a482657a34808e52f2af88caaa240b4622d3136cd4fac95541158c0eeeb9601020000000007b24f6dea05b54b8044d02518d7ec57d7c0b04bfb0be55464e4e5010a27ca7f6d38f0c5f2ba436dd0b24f6dea05b54b8044d02518d7ec57d7c0b04bfbcf4a4e100d9181d24a7b963cceb4ef2cc063adde5e6974b5d04bf5e0dfe600050000000200b6c8b1779e32f9468ff4ed56d0669a5943313ca2", "status": "success", "tx_index": 0, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": null, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}, {"txid": "0x04c8ccc087f94c3d8e4464fd397421798471dd5de5cbe3238b09bbb6bdbc381f", "raw_tx": "0x808000000004001dc27eba0247f8cc9575e7d45e50a0bc7e72427d00000000000000220000000000000000000080ab94a65d4150f33052d01423c7d897ad294edd46e6deae47ec247fda1e982520090366c6518983d8eb691f108bd836341450b1e821c60b1481b6466d92e0f60102000000000800000000000000000000000000000000000000000000000000000000000000000a051a2f438f17611dd028079f201915ccfcbcbfe49991b39d9d097bd07db16584b2fb7f47063c652a2c58f238cfb8c3e401e692f9384ec52cbd05c4b23b4913055fddd830165c7557120c6e5a9e91bba95d225e9e1bc05961a6060d2b2110b3ad230ecb01b40b", "status": "success", "tx_index": 1, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": null, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}, {"txid": "0xbae043bbc4bf6458f3a3ee0bd1a80976a456a4eb738b65378ec44d1ff7f9d089", "raw_tx": "0x8080000000040062b0e91cc557e583c3d1f9dfe468ace76d2f03740000000000000008000000000000012c00019dc39abaf578f414d786e3f3a5abd1773933b22de39cbeffbd1db65e3d08a621662a4e63dbdb6e175d0ba546a6d7d2f580887381e7d6956f2a309f0b730430c703020000000000051a93b082ee51d78faf5cc3d84a1c1591246c4965b000000000000003e800000000000000000000000000000000000000000000000000000000000000000000", "status": "success", "tx_index": 2, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": null, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}], "anchored_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "burn_block_hash": "0x061dde7ab7e6928a4497ffa7a015fca09e5a0fdb0d3671bf4a5067ee82beb41c", "burn_block_time": 1710344197, "index_block_hash": "0xb4483c898c41c263a3da645abdcb846efeb7bdebbb014e35fc5c416b1109ac86", "burn_block_height": 132, "parent_block_hash": "0xaf34150452876272a6b21f0846a4245b1bd2aaeb4d7cfd9f003dab4f867b1875", "parent_microblock": "0x0000000000000000000000000000000000000000000000000000000000000000", "pox_v1_unlock_height": 104, "pox_v2_unlock_height": 106, "pox_v3_unlock_height": 109, "matured_miner_rewards": [], "parent_burn_block_hash": "0x50740450df97bf533acbf62a323d4cf857862847a10fb9483c1ab22db3f25dcb", "parent_index_block_hash": "0xcf4a4e100d9181d24a7b963cceb4ef2cc063adde5e6974b5d04bf5e0dfe60005", "parent_burn_block_height": 131, "confirmed_microblocks_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "parent_microblock_sequence": 0, "parent_burn_block_timestamp": 1710344188} +214 2024-03-13 15:36:46.214967+00 /new_mempool_tx ["0x8080000000040093b082ee51d78faf5cc3d84a1c1591246c4965b00000000000000009000000000000012c000069b52408403cc173edcff890d095a5e0a3bddefd8676024733340f46b03f428677db7b1fbbe4f7bdaf0ac236884ce92b2e166296a0cdbe8bd8643d8a2af04bb803020000000000051aad08341feab8ea788ef8045c343d21dcedc4483e00000000000003e800000000000000000000000000000000000000000000000000000000000000000000"] +215 2024-03-13 15:36:46.948685+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x7354f4fb18052a9bc9ba8cada18505f7652624c9a912f436a92e58248f7d8856", "burn_block_height": 133, "reward_recipients": [{"amt": 10000, "recipient": "miJfo2mKvRhvpxnRyJE17VBr12xn3FrkZW"}, {"amt": 10000, "recipient": "mnvi1WQb3cm2QMeeKe6G9D7L1GsjmmGTda"}], "reward_slot_holders": ["mnvi1WQb3cm2QMeeKe6G9D7L1GsjmmGTda", "miJfo2mKvRhvpxnRyJE17VBr12xn3FrkZW"]} +216 2024-03-13 15:36:48.155178+00 /new_block {"events": [{"txid": "0x3e3bf9a76a58cd18275aca1b85f8af5fbbe1a1b7a902cd1a7b4d7dfa0f0a1585", "type": "stx_transfer_event", "committed": true, "event_index": 0, "stx_transfer_event": {"memo": "00000000000000000000000000000000000000000000000000000000000000000000", "amount": "1000", "sender": "ST29V10QEA7BRZBTWRFC4M70NJ4J6RJB5P1C6EE84", "recipient": "ST2PGGD0ZXAWEMY4EZ025RD1X47EEVH287SQKA8BC"}}], "block_hash": "0x4e4a475fbda23a949e904d41411ecca09b8191fb371c91e43519bc18f45fe67d", "miner_txid": "0xc9154c64d1015eabfcf66b8e891a039123c73307c1820da92450a7b9e7d2dec9", "block_height": 40, "transactions": [{"txid": "0x9bca0224d2cc9c85817a76ea28f33b91d7f8a5a7046c1a79e18f860f762bdabf", "raw_tx": "0x808000000004001dc27eba0247f8cc9575e7d45e50a0bc7e72427d000000000000002300000000000000000000ad3fdd70049ce4085c9bfddb4100b66de29f8fe03c9d34e6dd0e81543809f994706442d9b7f5f1695151cd71ce48fc9686f8fef53ddb62cf80d7014edc07de650102000000000790d97bfea2ae3c84b720faaa3aad41ce9e9e756ab24f6dea05b54b8044d02518d7ec57d7c0b04bfb90d97bfea2ae3c84b720faaa3aad41ce9e9e756ab4483c898c41c263a3da645abdcb846efeb7bdebbb014e35fc5c416b1109ac860000000100b6c8b1779e32f9468ff4ed56d0669a5943313ca2", "status": "success", "tx_index": 0, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": null, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}, {"txid": "0x3f0c15dbbd221b70736c2a125ff10d4622385994467f9a59b67418efb15198e0", "raw_tx": "0x808000000004001dc27eba0247f8cc9575e7d45e50a0bc7e72427d0000000000000024000000000000000000013989992f481ae52a0e31f64a8f840cd22c205db9f0067277375ac4ccc343239b508046084b7b97701046ec0b34953427b2c1257a8058c6e30b18c33fc0a9e8660102000000000800000000000000000000000000000000000000000000000000000000000000000a051a2f438f17611dd028079f201915ccfcbcbfe499918809f86b450ab7f1512c6520e7a231e0e7ff5ab9a338259355f6a537cff80809f9501ef7b06c83cf86b72d3f3df718d619c4582ad5592e242f217cd95e952003b060122f7572aeaddc4867c47f5cda0a", "status": "success", "tx_index": 1, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": null, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}, {"txid": "0x3e3bf9a76a58cd18275aca1b85f8af5fbbe1a1b7a902cd1a7b4d7dfa0f0a1585", "raw_tx": "0x8080000000040093b082ee51d78faf5cc3d84a1c1591246c4965b00000000000000009000000000000012c000069b52408403cc173edcff890d095a5e0a3bddefd8676024733340f46b03f428677db7b1fbbe4f7bdaf0ac236884ce92b2e166296a0cdbe8bd8643d8a2af04bb803020000000000051aad08341feab8ea788ef8045c343d21dcedc4483e00000000000003e800000000000000000000000000000000000000000000000000000000000000000000", "status": "success", "tx_index": 2, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": null, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}], "anchored_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "burn_block_hash": "0x7354f4fb18052a9bc9ba8cada18505f7652624c9a912f436a92e58248f7d8856", "burn_block_time": 1710344206, "index_block_hash": "0xf146945436a8d7858b5983e42f68e4d9dabe686db3fb42876c530915aee4fcf0", "burn_block_height": 133, "parent_block_hash": "0xa364ffc541353b6f00ea1b1331bbadd1b6eaba1f224d700bffeb5bafc40838a5", "parent_microblock": "0x0000000000000000000000000000000000000000000000000000000000000000", "pox_v1_unlock_height": 104, "pox_v2_unlock_height": 106, "pox_v3_unlock_height": 109, "matured_miner_rewards": [], "parent_burn_block_hash": "0x061dde7ab7e6928a4497ffa7a015fca09e5a0fdb0d3671bf4a5067ee82beb41c", "parent_index_block_hash": "0xb4483c898c41c263a3da645abdcb846efeb7bdebbb014e35fc5c416b1109ac86", "parent_burn_block_height": 132, "confirmed_microblocks_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "parent_microblock_sequence": 0, "parent_burn_block_timestamp": 1710344197} +217 2024-03-13 15:36:49.266585+00 /new_mempool_tx ["0x80800000000400ad08341feab8ea788ef8045c343d21dcedc4483e0000000000000009000000000000012c000106339356f7fad4f9833f23cbfe9903c65d962917dec1515ef25b918461745daa3a8ef25cdb117af3f73d19a613afab4e5f0b13e5961e501e6305e66aed14ec9c03020000000000051a62b0e91cc557e583c3d1f9dfe468ace76d2f037400000000000003e800000000000000000000000000000000000000000000000000000000000000000000"] +218 2024-03-13 15:36:51.597636+00 /new_block {"events": [{"txid": "0xfbc1c1f7ab8d40d0b589342373e5944c219c70eca6341dfd3004a0533681b552", "type": "stx_transfer_event", "committed": true, "event_index": 0, "stx_transfer_event": {"memo": "00000000000000000000000000000000000000000000000000000000000000000000", "amount": "1000", "sender": "ST2PGGD0ZXAWEMY4EZ025RD1X47EEVH287SQKA8BC", "recipient": "ST1HB1T8WRNBYB0Y3T7WXZS38NKKPTBR3EG9EPJKR"}}], "block_hash": "0x7198d99b0dff621c84ec106c97dcd84694ed0090bbb8098812f2e313322d1c5d", "miner_txid": "0xc9154c64d1015eabfcf66b8e891a039123c73307c1820da92450a7b9e7d2dec9", "block_height": 41, "transactions": [{"txid": "0xfbc1c1f7ab8d40d0b589342373e5944c219c70eca6341dfd3004a0533681b552", "raw_tx": "0x80800000000400ad08341feab8ea788ef8045c343d21dcedc4483e0000000000000009000000000000012c000106339356f7fad4f9833f23cbfe9903c65d962917dec1515ef25b918461745daa3a8ef25cdb117af3f73d19a613afab4e5f0b13e5961e501e6305e66aed14ec9c03020000000000051a62b0e91cc557e583c3d1f9dfe468ace76d2f037400000000000003e800000000000000000000000000000000000000000000000000000000000000000000", "status": "success", "tx_index": 0, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": null, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}], "anchored_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "burn_block_hash": "0x7354f4fb18052a9bc9ba8cada18505f7652624c9a912f436a92e58248f7d8856", "burn_block_time": 1710344206, "index_block_hash": "0x762c674a5f4b7a83dd91d075ecf01547b7189f045c5c4b0fe275475a00d2140f", "burn_block_height": 133, "parent_block_hash": "0x4e4a475fbda23a949e904d41411ecca09b8191fb371c91e43519bc18f45fe67d", "parent_microblock": "0x0000000000000000000000000000000000000000000000000000000000000000", "pox_v1_unlock_height": 104, "pox_v2_unlock_height": 106, "pox_v3_unlock_height": 109, "matured_miner_rewards": [], "parent_burn_block_hash": "0x7354f4fb18052a9bc9ba8cada18505f7652624c9a912f436a92e58248f7d8856", "parent_index_block_hash": "0xf146945436a8d7858b5983e42f68e4d9dabe686db3fb42876c530915aee4fcf0", "parent_burn_block_height": 133, "confirmed_microblocks_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "parent_microblock_sequence": 0, "parent_burn_block_timestamp": 1710344206} +219 2024-03-13 15:36:53.309589+00 /new_mempool_tx ["0x8080000000040062b0e91cc557e583c3d1f9dfe468ace76d2f03740000000000000009000000000000012c0000b39cc9d8e0e7452afcaecb92f27f6840c46bc3f0955939f48510e65a520ff0141363eefbcef28af32393ec92e48a957ff78ecc0074accac7deb355339fe5e17303020000000000051a93b082ee51d78faf5cc3d84a1c1591246c4965b000000000000003e800000000000000000000000000000000000000000000000000000000000000000000"] +220 2024-03-13 15:36:55.306448+00 /new_block {"events": [{"txid": "0x9f21dba19fee6c598d906dcf47b528225308b3db7833f5a3189f14ca17e5e39f", "type": "stx_transfer_event", "committed": true, "event_index": 0, "stx_transfer_event": {"memo": "00000000000000000000000000000000000000000000000000000000000000000000", "amount": "1000", "sender": "ST1HB1T8WRNBYB0Y3T7WXZS38NKKPTBR3EG9EPJKR", "recipient": "ST29V10QEA7BRZBTWRFC4M70NJ4J6RJB5P1C6EE84"}}], "block_hash": "0x5b6eb1be2ca2e392c083cbe24ec9b27898bc56b95c90841369585f90ad5b4fe8", "miner_txid": "0xc9154c64d1015eabfcf66b8e891a039123c73307c1820da92450a7b9e7d2dec9", "block_height": 42, "transactions": [{"txid": "0x9f21dba19fee6c598d906dcf47b528225308b3db7833f5a3189f14ca17e5e39f", "raw_tx": "0x8080000000040062b0e91cc557e583c3d1f9dfe468ace76d2f03740000000000000009000000000000012c0000b39cc9d8e0e7452afcaecb92f27f6840c46bc3f0955939f48510e65a520ff0141363eefbcef28af32393ec92e48a957ff78ecc0074accac7deb355339fe5e17303020000000000051a93b082ee51d78faf5cc3d84a1c1591246c4965b000000000000003e800000000000000000000000000000000000000000000000000000000000000000000", "status": "success", "tx_index": 0, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": null, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}], "anchored_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "burn_block_hash": "0x7354f4fb18052a9bc9ba8cada18505f7652624c9a912f436a92e58248f7d8856", "burn_block_time": 1710344206, "index_block_hash": "0x3ae9fa1dad9701d9ddcdc4fb0426463223501654e9ca5e8aa57458a9d757237e", "burn_block_height": 133, "parent_block_hash": "0x7198d99b0dff621c84ec106c97dcd84694ed0090bbb8098812f2e313322d1c5d", "parent_microblock": "0x0000000000000000000000000000000000000000000000000000000000000000", "pox_v1_unlock_height": 104, "pox_v2_unlock_height": 106, "pox_v3_unlock_height": 109, "matured_miner_rewards": [], "parent_burn_block_hash": "0x7354f4fb18052a9bc9ba8cada18505f7652624c9a912f436a92e58248f7d8856", "parent_index_block_hash": "0x762c674a5f4b7a83dd91d075ecf01547b7189f045c5c4b0fe275475a00d2140f", "parent_burn_block_height": 133, "confirmed_microblocks_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "parent_microblock_sequence": 0, "parent_burn_block_timestamp": 1710344206} +221 2024-03-13 15:36:57.38677+00 /new_mempool_tx ["0x8080000000040093b082ee51d78faf5cc3d84a1c1591246c4965b0000000000000000a000000000000012c0000a8ebf3250fdcb88fce4a34aaa462b6c21e62d19f7b21cb9b353216d2bea2c0fb4f1d3b8089b3196470c86de63e4a005af9a0382947b5e8d445086776d8d4a94603020000000000051aad08341feab8ea788ef8045c343d21dcedc4483e00000000000003e800000000000000000000000000000000000000000000000000000000000000000000"] +222 2024-03-13 15:36:58.935034+00 /new_block {"events": [{"txid": "0x9f89c6f7fd02cfc1ea005dec2d922b4eb87273d44da93d3d7f617e9f015b5cfd", "type": "stx_transfer_event", "committed": true, "event_index": 0, "stx_transfer_event": {"memo": "00000000000000000000000000000000000000000000000000000000000000000000", "amount": "1000", "sender": "ST29V10QEA7BRZBTWRFC4M70NJ4J6RJB5P1C6EE84", "recipient": "ST2PGGD0ZXAWEMY4EZ025RD1X47EEVH287SQKA8BC"}}], "block_hash": "0xa85f3bb627c73e585fb999e219c778921a753a559037a4a5e0d78471d3e724fe", "miner_txid": "0xc9154c64d1015eabfcf66b8e891a039123c73307c1820da92450a7b9e7d2dec9", "block_height": 43, "transactions": [{"txid": "0x9f89c6f7fd02cfc1ea005dec2d922b4eb87273d44da93d3d7f617e9f015b5cfd", "raw_tx": "0x8080000000040093b082ee51d78faf5cc3d84a1c1591246c4965b0000000000000000a000000000000012c0000a8ebf3250fdcb88fce4a34aaa462b6c21e62d19f7b21cb9b353216d2bea2c0fb4f1d3b8089b3196470c86de63e4a005af9a0382947b5e8d445086776d8d4a94603020000000000051aad08341feab8ea788ef8045c343d21dcedc4483e00000000000003e800000000000000000000000000000000000000000000000000000000000000000000", "status": "success", "tx_index": 0, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": null, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}], "anchored_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "burn_block_hash": "0x7354f4fb18052a9bc9ba8cada18505f7652624c9a912f436a92e58248f7d8856", "burn_block_time": 1710344206, "index_block_hash": "0x86f59fa901c5ed54ad2fcf29c402849683320c5601caef94c065af918f79f23f", "burn_block_height": 133, "parent_block_hash": "0x5b6eb1be2ca2e392c083cbe24ec9b27898bc56b95c90841369585f90ad5b4fe8", "parent_microblock": "0x0000000000000000000000000000000000000000000000000000000000000000", "pox_v1_unlock_height": 104, "pox_v2_unlock_height": 106, "pox_v3_unlock_height": 109, "matured_miner_rewards": [], "parent_burn_block_hash": "0x7354f4fb18052a9bc9ba8cada18505f7652624c9a912f436a92e58248f7d8856", "parent_index_block_hash": "0x3ae9fa1dad9701d9ddcdc4fb0426463223501654e9ca5e8aa57458a9d757237e", "parent_burn_block_height": 133, "confirmed_microblocks_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "parent_microblock_sequence": 0, "parent_burn_block_timestamp": 1710344206} +223 2024-03-13 15:36:59.057661+00 /new_burn_block {"burn_amount": 0, "burn_block_hash": "0x2fc249ce06878417ea55e6eaf04460ec73e22d045dfb4ac6847f2335f0d24bdc", "burn_block_height": 134, "reward_recipients": [{"amt": 20000, "recipient": "mk4zAE1iVWf5PJAgeX83rSXnzF5zQBiqf1"}], "reward_slot_holders": ["mk4zAE1iVWf5PJAgeX83rSXnzF5zQBiqf1", "mk4zAE1iVWf5PJAgeX83rSXnzF5zQBiqf1"]} +224 2024-03-13 15:37:00.184978+00 /new_block {"events": [], "block_hash": "0x043894ac5cdc787efcf2fa7abc00e6318cfb399fc8f2c67f3386714d5ac31b62", "miner_txid": "0xb86ead3ad8e7603d9bfbb9985418aeaa600de9a1aee8012f8b355134ae7ac4ec", "block_height": 44, "transactions": [{"txid": "0xaf3a6d2b4e09fb134c86b6ed6f2b0d1b747485a6da5475c37de58697e938ee0c", "raw_tx": "0x808000000004001dc27eba0247f8cc9575e7d45e50a0bc7e72427d00000000000000250000000000000000000055f6ef4542a106fd15412a2da88a88039d49feebd5a06506bd48c6836e0370891e2117c86b9f79eee32909f3edf5a68592ab8792008e2df0e501cbd487ed4079010200000000070882089737e1bb726ac9dd7db9339bb029d9ee6090d97bfea2ae3c84b720faaa3aad41ce9e9e756a0882089737e1bb726ac9dd7db9339bb029d9ee6086f59fa901c5ed54ad2fcf29c402849683320c5601caef94c065af918f79f23f0000000400b6c8b1779e32f9468ff4ed56d0669a5943313ca2", "status": "success", "tx_index": 0, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": null, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}, {"txid": "0xea14cde8c955b1cd216144a22847df55d340d6bd5128a9ad592bc44ee049e53b", "raw_tx": "0x808000000004001dc27eba0247f8cc9575e7d45e50a0bc7e72427d000000000000002600000000000000000000851c3b5d3b9669b11d4a2a0be2ecbc9d27459c70c56b0262299337f08a38fbb925ee44eea1ac77287ce4d20dc939b2c8b98879255559af284a91270420545a270102000000000800000000000000000000000000000000000000000000000000000000000000000a051a2f438f17611dd028079f201915ccfcbcbfe499915fde29973fc5a9bd1770bc088236270cebbf664c0fba9e33f8a2907a425752fac9e810fe00e3d384cf929504e30336fd21b44dd8b08eb5748077f6922bc0781a17e73664f23a3d88a76f26c122c43d00", "status": "success", "tx_index": 1, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": null, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}], "anchored_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "burn_block_hash": "0x2fc249ce06878417ea55e6eaf04460ec73e22d045dfb4ac6847f2335f0d24bdc", "burn_block_time": 1710344219, "index_block_hash": "0x9a48fa1387dfec40edd6b3ce7637d07fab4f20154c86faeaf79fbbf3f23bea8b", "burn_block_height": 134, "parent_block_hash": "0xa85f3bb627c73e585fb999e219c778921a753a559037a4a5e0d78471d3e724fe", "parent_microblock": "0x0000000000000000000000000000000000000000000000000000000000000000", "pox_v1_unlock_height": 104, "pox_v2_unlock_height": 106, "pox_v3_unlock_height": 109, "matured_miner_rewards": [], "parent_burn_block_hash": "0x7354f4fb18052a9bc9ba8cada18505f7652624c9a912f436a92e58248f7d8856", "parent_index_block_hash": "0x86f59fa901c5ed54ad2fcf29c402849683320c5601caef94c065af918f79f23f", "parent_burn_block_height": 133, "confirmed_microblocks_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "parent_microblock_sequence": 0, "parent_burn_block_timestamp": 1710344206} +225 2024-03-13 15:37:01.42391+00 /new_mempool_tx ["0x80800000000400ad08341feab8ea788ef8045c343d21dcedc4483e000000000000000a000000000000012c00015d0557503facb476fea333b050d83e99a667bcffdfcd1f828a229b8b886d063b6ec9f4d78341a00d759a4b8241642bf0d74bea071b217ce006bed953474774db03020000000000051a62b0e91cc557e583c3d1f9dfe468ace76d2f037400000000000003e800000000000000000000000000000000000000000000000000000000000000000000"] +226 2024-03-13 15:37:03.827391+00 /new_block {"events": [{"txid": "0x000d9cd559287c533b4f95c39a8d4f588e2aedc1e458109050c94fa243d2ba58", "type": "stx_transfer_event", "committed": true, "event_index": 0, "stx_transfer_event": {"memo": "00000000000000000000000000000000000000000000000000000000000000000000", "amount": "1000", "sender": "ST2PGGD0ZXAWEMY4EZ025RD1X47EEVH287SQKA8BC", "recipient": "ST1HB1T8WRNBYB0Y3T7WXZS38NKKPTBR3EG9EPJKR"}}], "block_hash": "0xb5d98d46901ced581536390d372d15a6737b6cdc44237b7aa99f283c3b9fb13d", "miner_txid": "0xb86ead3ad8e7603d9bfbb9985418aeaa600de9a1aee8012f8b355134ae7ac4ec", "block_height": 45, "transactions": [{"txid": "0x000d9cd559287c533b4f95c39a8d4f588e2aedc1e458109050c94fa243d2ba58", "raw_tx": "0x80800000000400ad08341feab8ea788ef8045c343d21dcedc4483e000000000000000a000000000000012c00015d0557503facb476fea333b050d83e99a667bcffdfcd1f828a229b8b886d063b6ec9f4d78341a00d759a4b8241642bf0d74bea071b217ce006bed953474774db03020000000000051a62b0e91cc557e583c3d1f9dfe468ace76d2f037400000000000003e800000000000000000000000000000000000000000000000000000000000000000000", "status": "success", "tx_index": 0, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": null, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}], "anchored_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "burn_block_hash": "0x2fc249ce06878417ea55e6eaf04460ec73e22d045dfb4ac6847f2335f0d24bdc", "burn_block_time": 1710344219, "index_block_hash": "0x30548c086ad425d52ed95e455e043a017553fffae9eb7618d54d506ac62d2d29", "burn_block_height": 134, "parent_block_hash": "0x043894ac5cdc787efcf2fa7abc00e6318cfb399fc8f2c67f3386714d5ac31b62", "parent_microblock": "0x0000000000000000000000000000000000000000000000000000000000000000", "pox_v1_unlock_height": 104, "pox_v2_unlock_height": 106, "pox_v3_unlock_height": 109, "matured_miner_rewards": [], "parent_burn_block_hash": "0x2fc249ce06878417ea55e6eaf04460ec73e22d045dfb4ac6847f2335f0d24bdc", "parent_index_block_hash": "0x9a48fa1387dfec40edd6b3ce7637d07fab4f20154c86faeaf79fbbf3f23bea8b", "parent_burn_block_height": 134, "confirmed_microblocks_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "parent_microblock_sequence": 0, "parent_burn_block_timestamp": 1710344219} +227 2024-03-13 15:37:05.503283+00 /new_mempool_tx ["0x8080000000040062b0e91cc557e583c3d1f9dfe468ace76d2f0374000000000000000a000000000000012c000088dd51bfaa3b970f58d682370b6cfebec0e163e6f7da35d5d8e9e02cd7497c114b98541e3636b9bfe2ecfd46702326cbc0da5e3de7172c66e3f7a4655846f78e03020000000000051a93b082ee51d78faf5cc3d84a1c1591246c4965b000000000000003e800000000000000000000000000000000000000000000000000000000000000000000"] +228 2024-03-13 15:37:07.459739+00 /new_block {"events": [{"txid": "0x1e7d35c989f8c1b4b07fa60cc959ca457eed49bce37500f8d7161fa8850ad785", "type": "stx_transfer_event", "committed": true, "event_index": 0, "stx_transfer_event": {"memo": "00000000000000000000000000000000000000000000000000000000000000000000", "amount": "1000", "sender": "ST1HB1T8WRNBYB0Y3T7WXZS38NKKPTBR3EG9EPJKR", "recipient": "ST29V10QEA7BRZBTWRFC4M70NJ4J6RJB5P1C6EE84"}}], "block_hash": "0xb6daa8fa22225f131667713be9d57c057699002232a979897232129453469eca", "miner_txid": "0xb86ead3ad8e7603d9bfbb9985418aeaa600de9a1aee8012f8b355134ae7ac4ec", "block_height": 46, "transactions": [{"txid": "0x1e7d35c989f8c1b4b07fa60cc959ca457eed49bce37500f8d7161fa8850ad785", "raw_tx": "0x8080000000040062b0e91cc557e583c3d1f9dfe468ace76d2f0374000000000000000a000000000000012c000088dd51bfaa3b970f58d682370b6cfebec0e163e6f7da35d5d8e9e02cd7497c114b98541e3636b9bfe2ecfd46702326cbc0da5e3de7172c66e3f7a4655846f78e03020000000000051a93b082ee51d78faf5cc3d84a1c1591246c4965b000000000000003e800000000000000000000000000000000000000000000000000000000000000000000", "status": "success", "tx_index": 0, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": null, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}], "anchored_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "burn_block_hash": "0x2fc249ce06878417ea55e6eaf04460ec73e22d045dfb4ac6847f2335f0d24bdc", "burn_block_time": 1710344219, "index_block_hash": "0xe44f3f6dd66c03ce5d5476de3ec1dee968e10ef4cc68e1fe3a8292bfcdba9d1a", "burn_block_height": 134, "parent_block_hash": "0xb5d98d46901ced581536390d372d15a6737b6cdc44237b7aa99f283c3b9fb13d", "parent_microblock": "0x0000000000000000000000000000000000000000000000000000000000000000", "pox_v1_unlock_height": 104, "pox_v2_unlock_height": 106, "pox_v3_unlock_height": 109, "matured_miner_rewards": [], "parent_burn_block_hash": "0x2fc249ce06878417ea55e6eaf04460ec73e22d045dfb4ac6847f2335f0d24bdc", "parent_index_block_hash": "0x30548c086ad425d52ed95e455e043a017553fffae9eb7618d54d506ac62d2d29", "parent_burn_block_height": 134, "confirmed_microblocks_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "parent_microblock_sequence": 0, "parent_burn_block_timestamp": 1710344219} +229 2024-03-13 15:37:08.143018+00 /new_burn_block {"burn_amount": 10000, "burn_block_hash": "0x4f2668b6d309d33a56ee39c5f090f5eac4cd6db988dad57634b10a28196be430", "burn_block_height": 135, "reward_recipients": [{"amt": 10000, "recipient": "miJfo2mKvRhvpxnRyJE17VBr12xn3FrkZW"}], "reward_slot_holders": ["miJfo2mKvRhvpxnRyJE17VBr12xn3FrkZW"]} +230 2024-03-13 15:37:09.141982+00 /new_block {"events": [], "block_hash": "0xe8d744218d27f00964581791906969855d5c6e2639aca4bc1362163aefa83920", "miner_txid": "0x1073fc6ba7bb6ce3904e09197deb743b782ae0acd863face90f2660b110fc2b3", "block_height": 47, "transactions": [{"txid": "0x4efe5b58385c9197c416fe35a88951c86e897df49bc7b35f848b0ac5df63c860", "raw_tx": "0x808000000004001dc27eba0247f8cc9575e7d45e50a0bc7e72427d0000000000000027000000000000000000017e08cbac862c10d5e05d4b793867a918c60fc55a7f0bfbb97af747d3c3b70781416a2f07e1917d3fe443a91e6b3ab3133ac8966870e2214127fb8546fac0911c01020000000007308bebef1cd96dd8a4f6be3f9b826e71c4aa1a1d0882089737e1bb726ac9dd7db9339bb029d9ee60308bebef1cd96dd8a4f6be3f9b826e71c4aa1a1de44f3f6dd66c03ce5d5476de3ec1dee968e10ef4cc68e1fe3a8292bfcdba9d1a0000000300b6c8b1779e32f9468ff4ed56d0669a5943313ca2", "status": "success", "tx_index": 0, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": null, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}, {"txid": "0x2ae2041ef9defc6607158885fc871fc6b95046d1cf362ab1928a1c2d4f4b1780", "raw_tx": "0x808000000004001dc27eba0247f8cc9575e7d45e50a0bc7e72427d000000000000002800000000000000000001446ec2a7106b2809eb5819ffe1d4c5308985e7192c079493ad0148ec61cc00c02120d54ccfbb11db9a17c1c10db9e0f62a40cc6a75f6677c270af14e2f4417b50102000000000800000000000000000000000000000000000000000000000000000000000000000a051a2f438f17611dd028079f201915ccfcbcbfe49991cafc08cdc7be864ae910ed4f395c476c5d316fdd6102c559143beeb0f60378c1ec94aed7584446c17388d43b7287e9a5983890ad139c78e42054fbedc1ac722bfa2b6408977102d28427c537102a090b", "status": "success", "tx_index": 1, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": null, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}], "anchored_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "burn_block_hash": "0x4f2668b6d309d33a56ee39c5f090f5eac4cd6db988dad57634b10a28196be430", "burn_block_time": 1710344228, "index_block_hash": "0xefe43794dead3f2404be63f1291e82af6ae88ade1041de64257bc75ab8cb816c", "burn_block_height": 135, "parent_block_hash": "0xb6daa8fa22225f131667713be9d57c057699002232a979897232129453469eca", "parent_microblock": "0x0000000000000000000000000000000000000000000000000000000000000000", "pox_v1_unlock_height": 104, "pox_v2_unlock_height": 106, "pox_v3_unlock_height": 109, "matured_miner_rewards": [], "parent_burn_block_hash": "0x2fc249ce06878417ea55e6eaf04460ec73e22d045dfb4ac6847f2335f0d24bdc", "parent_index_block_hash": "0xe44f3f6dd66c03ce5d5476de3ec1dee968e10ef4cc68e1fe3a8292bfcdba9d1a", "parent_burn_block_height": 134, "confirmed_microblocks_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "parent_microblock_sequence": 0, "parent_burn_block_timestamp": 1710344219} +231 2024-03-13 15:37:09.540567+00 /new_mempool_tx ["0x8080000000040093b082ee51d78faf5cc3d84a1c1591246c4965b0000000000000000b000000000000012c000169a3a643f413479d7ca91331ce71c3563c357851f8c5002a21f9a0aa6e12752a4e65ac6fa58635c9a8d9b18ec3a3e7d594a1d138af3fa1113ce85828f973ab2903020000000000051aad08341feab8ea788ef8045c343d21dcedc4483e00000000000003e800000000000000000000000000000000000000000000000000000000000000000000"] +232 2024-03-13 15:37:12.603024+00 /new_block {"events": [{"txid": "0x20eee3803137ca99dfe5bc9d7b58408fcac3d647c010b886e823cdeeadb50747", "type": "stx_transfer_event", "committed": true, "event_index": 0, "stx_transfer_event": {"memo": "00000000000000000000000000000000000000000000000000000000000000000000", "amount": "1000", "sender": "ST29V10QEA7BRZBTWRFC4M70NJ4J6RJB5P1C6EE84", "recipient": "ST2PGGD0ZXAWEMY4EZ025RD1X47EEVH287SQKA8BC"}}], "block_hash": "0x50ef1943cb4a9e0e3572237039339e3cf7b45efbb2c892d8bb723a79302572ea", "miner_txid": "0x1073fc6ba7bb6ce3904e09197deb743b782ae0acd863face90f2660b110fc2b3", "block_height": 48, "transactions": [{"txid": "0x20eee3803137ca99dfe5bc9d7b58408fcac3d647c010b886e823cdeeadb50747", "raw_tx": "0x8080000000040093b082ee51d78faf5cc3d84a1c1591246c4965b0000000000000000b000000000000012c000169a3a643f413479d7ca91331ce71c3563c357851f8c5002a21f9a0aa6e12752a4e65ac6fa58635c9a8d9b18ec3a3e7d594a1d138af3fa1113ce85828f973ab2903020000000000051aad08341feab8ea788ef8045c343d21dcedc4483e00000000000003e800000000000000000000000000000000000000000000000000000000000000000000", "status": "success", "tx_index": 0, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": null, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}], "anchored_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "burn_block_hash": "0x4f2668b6d309d33a56ee39c5f090f5eac4cd6db988dad57634b10a28196be430", "burn_block_time": 1710344228, "index_block_hash": "0xe4015ef39ea7d3ea4eb403b295f93b6e1ce379a48878ad24598fb45c9e573a94", "burn_block_height": 135, "parent_block_hash": "0xe8d744218d27f00964581791906969855d5c6e2639aca4bc1362163aefa83920", "parent_microblock": "0x0000000000000000000000000000000000000000000000000000000000000000", "pox_v1_unlock_height": 104, "pox_v2_unlock_height": 106, "pox_v3_unlock_height": 109, "matured_miner_rewards": [], "parent_burn_block_hash": "0x4f2668b6d309d33a56ee39c5f090f5eac4cd6db988dad57634b10a28196be430", "parent_index_block_hash": "0xefe43794dead3f2404be63f1291e82af6ae88ade1041de64257bc75ab8cb816c", "parent_burn_block_height": 135, "confirmed_microblocks_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "parent_microblock_sequence": 0, "parent_burn_block_timestamp": 1710344228} +233 2024-03-13 15:37:13.595697+00 /new_mempool_tx ["0x80800000000400ad08341feab8ea788ef8045c343d21dcedc4483e000000000000000b000000000000012c00012ea97036b8265b129170ea911e65969e0ea43e29cc52716883171280f369ab1c705a0165fbc020e48b72652bc2dd50404b47db46e12e1fed5625ffb06c7fe1ef03020000000000051a62b0e91cc557e583c3d1f9dfe468ace76d2f037400000000000003e800000000000000000000000000000000000000000000000000000000000000000000"] +234 2024-03-13 15:37:16.236633+00 /new_block {"events": [{"txid": "0x197eb66025af4326b490f5e96459d88bbc96d6cb87d85f6569a5a083d84bda76", "type": "stx_transfer_event", "committed": true, "event_index": 0, "stx_transfer_event": {"memo": "00000000000000000000000000000000000000000000000000000000000000000000", "amount": "1000", "sender": "ST2PGGD0ZXAWEMY4EZ025RD1X47EEVH287SQKA8BC", "recipient": "ST1HB1T8WRNBYB0Y3T7WXZS38NKKPTBR3EG9EPJKR"}}], "block_hash": "0xd50977f94162e98f7f73fa1299c477ad4fbd3394358170f7cde2d32b06be58e8", "miner_txid": "0x1073fc6ba7bb6ce3904e09197deb743b782ae0acd863face90f2660b110fc2b3", "block_height": 49, "transactions": [{"txid": "0x197eb66025af4326b490f5e96459d88bbc96d6cb87d85f6569a5a083d84bda76", "raw_tx": "0x80800000000400ad08341feab8ea788ef8045c343d21dcedc4483e000000000000000b000000000000012c00012ea97036b8265b129170ea911e65969e0ea43e29cc52716883171280f369ab1c705a0165fbc020e48b72652bc2dd50404b47db46e12e1fed5625ffb06c7fe1ef03020000000000051a62b0e91cc557e583c3d1f9dfe468ace76d2f037400000000000003e800000000000000000000000000000000000000000000000000000000000000000000", "status": "success", "tx_index": 0, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": null, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}], "anchored_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "burn_block_hash": "0x4f2668b6d309d33a56ee39c5f090f5eac4cd6db988dad57634b10a28196be430", "burn_block_time": 1710344228, "index_block_hash": "0xf30f7def1df3af5783284896e71192e69e9ac23d08ff35215abe5f6f401ae2fe", "burn_block_height": 135, "parent_block_hash": "0x50ef1943cb4a9e0e3572237039339e3cf7b45efbb2c892d8bb723a79302572ea", "parent_microblock": "0x0000000000000000000000000000000000000000000000000000000000000000", "pox_v1_unlock_height": 104, "pox_v2_unlock_height": 106, "pox_v3_unlock_height": 109, "matured_miner_rewards": [], "parent_burn_block_hash": "0x4f2668b6d309d33a56ee39c5f090f5eac4cd6db988dad57634b10a28196be430", "parent_index_block_hash": "0xe4015ef39ea7d3ea4eb403b295f93b6e1ce379a48878ad24598fb45c9e573a94", "parent_burn_block_height": 135, "confirmed_microblocks_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "parent_microblock_sequence": 0, "parent_burn_block_timestamp": 1710344228} +235 2024-03-13 15:37:17.249285+00 /new_burn_block {"burn_amount": 20000, "burn_block_hash": "0x6604496a1a03421eedc8419c11c4f4fc87dafb8e1fa23630a7c9354e2edee06a", "burn_block_height": 136, "reward_recipients": [], "reward_slot_holders": []} +236 2024-03-13 15:37:17.700969+00 /new_mempool_tx ["0x8080000000040062b0e91cc557e583c3d1f9dfe468ace76d2f0374000000000000000b000000000000012c0000bd4f0d4c0dfdea47b908a981b79cf995dc1c129fe9c7cf5427fc6cb73d0575fc3b3a5a1502b7b53c5077d392d28ffd51a6605b89e34b95895dcf9ca4ab8e984603020000000000051a93b082ee51d78faf5cc3d84a1c1591246c4965b000000000000003e800000000000000000000000000000000000000000000000000000000000000000000"] +237 2024-03-13 15:37:19.13601+00 /new_block {"events": [{"txid": "0x54edb52ee0563978edaca33b68f57d617422d5e3eeb6eff35d1a74e5ec28408d", "type": "stx_transfer_event", "committed": true, "event_index": 0, "stx_transfer_event": {"memo": "00000000000000000000000000000000000000000000000000000000000000000000", "amount": "1000", "sender": "ST1HB1T8WRNBYB0Y3T7WXZS38NKKPTBR3EG9EPJKR", "recipient": "ST29V10QEA7BRZBTWRFC4M70NJ4J6RJB5P1C6EE84"}}], "block_hash": "0x5705546ec6741f77957bb3e73bf795dcf120c0a869c1d408396e7e30a3b2f94f", "miner_txid": "0xf74a64a26e96f07fbaa0de3f5ffcc73e0afc3a14bb4c60cf62456cf3549a45fc", "reward_set": {"signers": [{"weight": 3, "signing_key": "029874497a7952483aa23890e9d0898696f33864d3df90939930a1f45421fe3b09", "stacked_amt": "457500900000000000"}, {"weight": 1, "signing_key": "02dcde79b38787b72d8e5e0af81cffa802f0a3c8452d6b46e08859165f49a72736", "stacked_amt": "228750450000000000"}, {"weight": 5, "signing_key": "038e3c4529395611be9abf6fa3b6987e81d402385e3d605a073f42f407565a4a3d", "stacked_amt": "686251350000000000"}], "start_cycle_state": {"missed_reward_slots": []}, "pox_ustx_threshold": "137250270000000000", "rewarded_addresses": [{"Standard": [{"bytes": "5146f0566e9796602a677d895852e9c0fe5686f7", "version": 26}, "SerializeP2PKH"]}, {"Standard": [{"bytes": "31ef5ee9a226a792b93f2bfbfbc54f523eba7818", "version": 26}, "SerializeP2PKH"]}, {"Standard": [{"bytes": "31ef5ee9a226a792b93f2bfbfbc54f523eba7818", "version": 26}, "SerializeP2PKH"]}, {"Standard": [{"bytes": "31ef5ee9a226a792b93f2bfbfbc54f523eba7818", "version": 26}, "SerializeP2PKH"]}, {"Standard": [{"bytes": "31ef5ee9a226a792b93f2bfbfbc54f523eba7818", "version": 26}, "SerializeP2PKH"]}, {"Standard": [{"bytes": "31ef5ee9a226a792b93f2bfbfbc54f523eba7818", "version": 26}, "SerializeP2PKH"]}, {"Standard": [{"bytes": "1e959caa6dd5bede3575cd3847ba81e56180b214", "version": 26}, "SerializeP2PKH"]}, {"Standard": [{"bytes": "1e959caa6dd5bede3575cd3847ba81e56180b214", "version": 26}, "SerializeP2PKH"]}, {"Standard": [{"bytes": "1e959caa6dd5bede3575cd3847ba81e56180b214", "version": 26}, "SerializeP2PKH"]}]}, "block_height": 50, "cycle_number": 14, "transactions": [{"txid": "0xb6c6aef383479e223c1830a1b9ecedb500592a9e33d81946c3bdcf9b9676ce8c", "raw_tx": "0x808000000004001dc27eba0247f8cc9575e7d45e50a0bc7e72427d0000000000000029000000000000000000014d6d180ae1a105f5b510d106ad832808915e531fc9564a9d2b988ba1aa8bcb787040190e19b5968558c618d92d4c1dc2111f374f9f3f9b9f73a2eedaec96d42e010200000000070b8b2ee35fc6e410c1bc185bdddd1accd5561ef5308bebef1cd96dd8a4f6be3f9b826e71c4aa1a1d0b8b2ee35fc6e410c1bc185bdddd1accd5561ef5f30f7def1df3af5783284896e71192e69e9ac23d08ff35215abe5f6f401ae2fe0000000300b6c8b1779e32f9468ff4ed56d0669a5943313ca2", "status": "success", "tx_index": 0, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": null, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}, {"txid": "0x8c2f979c0a81ca17d8027d39c1c222b596e9c0457e8476294afcc4a95b2a0450", "raw_tx": "0x808000000004001dc27eba0247f8cc9575e7d45e50a0bc7e72427d000000000000002a00000000000000000001283c2ea18d38e5e359c2a6ab1b735de74ee52dee146094c42b02cc05bfedba001bbb03a46b4fff94232c42f4e141b72ac4d557de40736ce71c7bd20d35c716de0102000000000800000000000000000000000000000000000000000000000000000000000000000a051a2f438f17611dd028079f201915ccfcbcbfe4999133829a8c71e91bd4e3fd15cbb7141da2ec7e27db0621efd21cc47994ce20dc80e84cf68da76a2e9e91fe0de67bcc402cbb6fb447ce70e4933bc9fc1b17d9629923060f15ec75e739f42f2d7651092801", "status": "success", "tx_index": 1, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": null, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}, {"txid": "0x54edb52ee0563978edaca33b68f57d617422d5e3eeb6eff35d1a74e5ec28408d", "raw_tx": "0x8080000000040062b0e91cc557e583c3d1f9dfe468ace76d2f0374000000000000000b000000000000012c0000bd4f0d4c0dfdea47b908a981b79cf995dc1c129fe9c7cf5427fc6cb73d0575fc3b3a5a1502b7b53c5077d392d28ffd51a6605b89e34b95895dcf9ca4ab8e984603020000000000051a93b082ee51d78faf5cc3d84a1c1591246c4965b000000000000003e800000000000000000000000000000000000000000000000000000000000000000000", "status": "success", "tx_index": 2, "raw_result": "0x0703", "burnchain_op": null, "contract_abi": null, "execution_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "microblock_hash": null, "microblock_sequence": null, "microblock_parent_hash": null}], "anchored_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "burn_block_hash": "0x6604496a1a03421eedc8419c11c4f4fc87dafb8e1fa23630a7c9354e2edee06a", "burn_block_time": 1710344237, "index_block_hash": "0xf5be33abc4e508bdaf2191e88339372edcb3358c44e2a31e1b9b44f2880dde09", "burn_block_height": 136, "parent_block_hash": "0xd50977f94162e98f7f73fa1299c477ad4fbd3394358170f7cde2d32b06be58e8", "parent_microblock": "0x0000000000000000000000000000000000000000000000000000000000000000", "pox_v1_unlock_height": 104, "pox_v2_unlock_height": 106, "pox_v3_unlock_height": 109, "matured_miner_rewards": [], "parent_burn_block_hash": "0x4f2668b6d309d33a56ee39c5f090f5eac4cd6db988dad57634b10a28196be430", "parent_index_block_hash": "0xf30f7def1df3af5783284896e71192e69e9ac23d08ff35215abe5f6f401ae2fe", "parent_burn_block_height": 135, "confirmed_microblocks_cost": {"runtime": 0, "read_count": 0, "read_length": 0, "write_count": 0, "write_length": 0}, "parent_microblock_sequence": 0, "parent_burn_block_timestamp": 1710344228} +238 2024-03-13 15:37:21.759451+00 /new_mempool_tx ["0x8080000000040093b082ee51d78faf5cc3d84a1c1591246c4965b0000000000000000c000000000000012c00007a4063a22dae301466eb1141dc0c998f1e40544ed31343cfc387393064561c117c8e5ab22d338accb590874f9f733b09d953deb62948b9386ee25ae6dbf2463f03020000000000051aad08341feab8ea788ef8045c343d21dcedc4483e00000000000003e800000000000000000000000000000000000000000000000000000000000000000000"]