{
  "openrpc": "1.2.6",
  "info": {
    "title": "GIWA Debug API",
    "description": "Quicknode GIWA Debug API reference",
    "version": "1.0.0"
  },
  "methods": [
    {
      "name": "debug_getBadBlocks",
      "summary": "Returns a list of the last bad blocks that the client has seen on the network.",
      "description": "Returns a list of the last bad blocks that the client has seen on the network.",
      "params": [],
      "result": {
        "name": "result",
        "description": "An array of result objects with the following fields:",
        "schema": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "hash": {
                "type": "string",
                "description": "The hash of the transaction"
              },
              "block": {
                "type": "object",
                "properties": {
                  "baseFeePerGas": {
                    "type": "string",
                    "description": "The integer of the difficulty for this block encoded as hexadecimal"
                  },
                  "difficulty": {
                    "type": "string",
                    "description": "The integer of the difficulty for this block encoded as hexadecimal"
                  },
                  "extraData": {
                    "type": "string",
                    "description": "The extra data field of this block"
                  },
                  "gasLimit": {
                    "type": "string",
                    "description": "The maximum gas allowed in this block encoded as hexadecimal"
                  },
                  "gasUsed": {
                    "type": "string",
                    "description": "The total used gas by all transactions in this block encoded as hexadecimal"
                  },
                  "hash": {
                    "type": "string",
                    "description": "The block hash of the requested block. Null if pending"
                  },
                  "logsBloom": {
                    "type": "string",
                    "description": "The bloom filter for the logs of the block. Null if pending"
                  },
                  "miner": {
                    "type": "string",
                    "description": "The address of the beneficiary to whom the mining rewards were given"
                  },
                  "mixHash": {
                    "type": "string",
                    "description": "A string of a 256-bit hash encoded as hexadecimal"
                  },
                  "nonce": {
                    "type": "string",
                    "description": "The hash of the generated proof-of-work. Null if pending"
                  },
                  "number": {
                    "type": "string",
                    "description": "The block number of the requested block encoded as hexadecimal. Null if pending"
                  },
                  "parentHash": {
                    "type": "string",
                    "description": "The hash of the parent block"
                  },
                  "receiptsRoot": {
                    "type": "string",
                    "description": "The root of the receipts trie of the block"
                  },
                  "sha3Uncles": {
                    "type": "string",
                    "description": "The SHA3 of the uncles data in the block"
                  },
                  "size": {
                    "type": "string",
                    "description": "The size of this block in bytes as an Integer value encoded as hexadecimal"
                  },
                  "stateRoot": {
                    "type": "string",
                    "description": "The root of the final state trie of the block"
                  },
                  "timestamp": {
                    "type": "string",
                    "description": "The unix timestamp for when the block was collated"
                  },
                  "transactions": {
                    "type": "array",
                    "items": {
                      "type": "object",
                      "properties": {
                        "blockHash": {
                          "type": "string",
                          "description": "The hash of the block where this log was in. Null when it's a pending log"
                        },
                        "blockNumber": {
                          "type": "string",
                          "description": "The block number where this log was in. Null when it's a pending log"
                        },
                        "from": {
                          "type": "string",
                          "description": "The address of the sender"
                        },
                        "gas": {
                          "type": "string",
                          "description": "The gas provided by the sender, encoded as hexadecimal"
                        },
                        "gasPrice": {
                          "type": "string",
                          "description": "The gas price provided by the sender in wei, encoded as hexadecimal"
                        },
                        "maxFeePerGas": {
                          "type": "string",
                          "description": "The maximum fee per gas set in the transaction"
                        },
                        "maxPriorityFeePerGas": {
                          "type": "string",
                          "description": "The maximum priority gas fee set in the transaction"
                        },
                        "hash": {
                          "type": "string",
                          "description": "The hash of the transaction"
                        },
                        "input": {
                          "type": "string",
                          "description": "The data sent along with the transaction"
                        },
                        "nonce": {
                          "type": "string",
                          "description": "The number of transactions made by the sender before this one encoded as hexadecimal"
                        },
                        "to": {
                          "type": "string",
                          "description": "The address of the receiver. Null when it's a contract creation transaction"
                        },
                        "transactionIndex": {
                          "type": "string",
                          "description": "The integer of the transaction's index position that the log was created from. Null when it's a pending log"
                        },
                        "value": {
                          "type": "string",
                          "description": "The value transferred in wei encoded as hexadecimal"
                        },
                        "type": {
                          "type": "string",
                          "description": "The transaction type"
                        },
                        "accessList": {
                          "type": "array",
                          "items": {},
                          "description": "A list of addresses and storage keys that the transaction plans to access"
                        },
                        "chainId": {
                          "type": "string",
                          "description": "The chain id of the transaction, if any"
                        },
                        "v": {
                          "type": "string",
                          "description": "The standardized V field of the signature"
                        },
                        "r": {
                          "type": "string",
                          "description": "The R field of the signature"
                        },
                        "s": {
                          "type": "string",
                          "description": "The S field of the signature"
                        }
                      }
                    },
                    "description": "An array of transaction objects with the following fields:"
                  },
                  "transactionsRoot": {
                    "type": "string",
                    "description": "The root of the transaction trie of the block"
                  },
                  "uncles": {
                    "type": "array",
                    "items": {},
                    "description": "An array of uncle hashes"
                  }
                },
                "description": "A block object, or null when no block was found"
              },
              "rlp": {
                "type": "string",
                "description": "The RLP encoded header"
              }
            }
          }
        }
      },
      "tags": [
        {
          "name": "debug"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/giwa/debug_getBadBlocks"
      },
      "examples": [
        {
          "name": "debug_getBadBlocks example",
          "params": [],
          "result": {
            "name": "debug_getBadBlocks result",
            "value": []
          }
        }
      ]
    },
    {
      "name": "debug_storageRangeAt",
      "summary": "Returns the contract storage for the specified range.",
      "description": "Returns the contract storage for the specified range.",
      "params": [
        {
          "name": "blockHash",
          "description": "The hash of the block",
          "required": true,
          "schema": {
            "type": "string"
          }
        },
        {
          "name": "txIndex",
          "description": "The transaction index for the point in which we want the list of accounts",
          "required": true,
          "schema": {
            "type": "string"
          }
        },
        {
          "name": "address",
          "description": "The contract address",
          "required": true,
          "schema": {
            "type": "string"
          }
        },
        {
          "name": "startKey",
          "description": "The offset (hash of storage key)",
          "required": true,
          "schema": {
            "type": "string"
          }
        },
        {
          "name": "limit",
          "description": "The number of storage entries to return",
          "required": true,
          "schema": {
            "type": "integer"
          }
        }
      ],
      "result": {
        "name": "result",
        "description": "The result object, or null when no matching state is available",
        "schema": {
          "oneOf": [
            {
              "type": "null"
            },
            {
              "type": "object",
              "properties": {
                "storage": {
                  "type": "object",
                  "properties": {
                    "hash": {
                      "type": "object",
                      "properties": {
                        "key": {
                          "type": "string",
                          "description": "The key associated with the hash"
                        },
                        "value": {
                          "type": "string",
                          "description": "The value associated with the hash"
                        }
                      },
                      "description": "The hash value"
                    }
                  },
                  "description": "An object with hash values, and for each of them the key and value it represents"
                },
                "nextKey": {
                  "type": "string",
                  "description": "The hash of next key if further storage in range. Otherwise, not included"
                }
              }
            }
          ]
        }
      },
      "tags": [
        {
          "name": "debug"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/giwa/debug_storageRangeAt"
      },
      "examples": [
        {
          "name": "debug_storageRangeAt example",
          "params": [
            {
              "name": "blockHash",
              "value": "0x4472df1588f5ea5f6bc0d567e1bbff9759e9659ef856e8a0494b13ebd06b836d"
            },
            {
              "name": "txIndex",
              "value": 0
            },
            {
              "name": "address",
              "value": "0x4200000000000000000000000000000000000006"
            },
            {
              "name": "startKey",
              "value": "0x0000000000000000000000000000000000000000000000000000000000000000"
            },
            {
              "name": "limit",
              "value": 1
            }
          ],
          "result": {
            "name": "debug_storageRangeAt result",
            "value": null
          }
        }
      ]
    },
    {
      "name": "debug_traceBlock",
      "summary": "Returns a full stack trace of all invoked opcodes of all transactions that were included in a block.",
      "description": "Returns a full stack trace of all invoked opcodes of all transactions that were included in a block.",
      "params": [
        {
          "name": "block",
          "description": "The RLP encoded block",
          "required": true,
          "schema": {
            "type": "string"
          }
        },
        {
          "name": "object",
          "description": "The tracer object with the following fields:",
          "required": true,
          "schema": {
            "type": "object",
            "properties": {
              "tracer": {
                "enum": [
                  "callTracer",
                  "prestateTracer"
                ],
                "description": "The type of tracer. It could be callTracer or prestateTracer"
              },
              "tracerConfig": {
                "type": "object",
                "properties": {
                  "onlyTopCall": {
                    "type": "boolean",
                    "description": "When set to true, this will only trace the primary (top-level) call and not any sub-calls. It eliminates the additional processing for each call frame"
                  }
                },
                "description": "The object to specify the configurations of the tracer"
              }
            }
          }
        }
      ],
      "result": {
        "name": "result",
        "description": "An array of result objects with the following fields:",
        "schema": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "result": {
                "type": "object",
                "properties": {
                  "calls": {
                    "type": "array",
                    "items": {
                      "type": "object",
                      "properties": {
                        "from": {
                          "type": "string",
                          "description": "The address from which the tokens are transferred."
                        },
                        "gas": {
                          "type": "string",
                          "description": "The gas limit or maximum amount of gas that can be used for executing the transaction"
                        },
                        "gasUsed": {
                          "type": "string",
                          "description": "The gas used by the transaction"
                        },
                        "input": {
                          "type": "string",
                          "description": "The data or input parameters for the transaction, typically encoded as hexadecimal"
                        },
                        "to": {
                          "type": "string",
                          "description": "The address to which the tokens are transferred"
                        },
                        "type": {
                          "type": "string",
                          "description": "The type of token (ERC-20, ERC-721 or ERC-1155 etc)"
                        },
                        "value": {
                          "type": "string",
                          "description": "The token value"
                        }
                      }
                    },
                    "description": "A list of sub-calls"
                  },
                  "from": {
                    "type": "string",
                    "description": "The address the transaction is sent from"
                  },
                  "gas": {
                    "type": "string",
                    "description": "The integer of the gas provided for the transaction execution"
                  },
                  "gasUsed": {
                    "type": "string",
                    "description": "The integer of the gas used"
                  },
                  "input": {
                    "type": "string",
                    "description": "The data given at the time of input"
                  },
                  "to": {
                    "type": "string",
                    "description": "The address the transaction is directed to"
                  },
                  "type": {
                    "type": "string",
                    "description": "The type of the call"
                  },
                  "value": {
                    "type": "string",
                    "description": "The integer of the value sent with this transaction"
                  }
                },
                "description": "A result array with the following fields:"
              },
              "txHash": {
                "type": "string",
                "description": "The hash of the transaction being traced"
              }
            }
          }
        }
      },
      "tags": [
        {
          "name": "debug"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/giwa/debug_traceBlock"
      },
      "examples": [
        {
          "name": "debug_traceBlock example",
          "params": [
            {
              "name": "block",
              "value": "0xf9037df9026aa00911589079b94426ca539af87c2ce78a3ca1dcead603f4e0a58102ee74257545a01dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347944200000000000000000000000000000000000011a0f5308c33846d16817881d09ec175ef45a20f438d8949794228ac744dd1af8e9aa0ef8a2a2a58b9e00665f58d8e60282f7403aba5bc901cb3b91c490144211a3f2ba0cc905f1b91214e7c37873dbdc639dc7e2dd0730cc89c43c4cf583dc34c41ff76b9010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000808305f4e6840393870082b41c846887e1428900000000fa00000006a05ad5a99151df3428fbb0f19259fa26f628e1db349dc4b293d87c10eb76e5b85f88000000000000000081fba08ed4baae3a927be3dea54996b4d5899f8c01e7594bf50b17dc1e741388ce3d128080a074f6cdaefbbd9a9c5d6688b75dec4fabd9ab0a8787604a45dff9309bf9f72f5ea0e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855f9010bb901087ef90104a02648c7810a01f25e5d1cb640eb98f11bbbc34812cb726de59040b6830e5d880b94deaddeaddeaddeaddeaddeaddeaddeaddead00019442000000000000000000000000000000000000158080830f424080b8b0098999be00000558000c5fc50000000000000002000000006887e1040000000000873e7500000000000000000000000000000000000000000000000000000000000091ce000000000000000000000000000000000000000000000000000000000000000106b6fdd685cb71ce9bb57ba7ef82e4c4d62d8432dfc969788a4bae3935d3dec50000000000000000000000001caaaa58002a7e8b4c6f427ac2c943767b4d6cd7000000000000000000000000c0c0"
            }
          ],
          "result": {
            "name": "debug_traceBlock result",
            "value": [
              {
                "result": {
                  "calls": [
                    {
                      "from": "0x4200000000000000000000000000000000000015",
                      "gas": "0xe9b75",
                      "gasUsed": "0x4889",
                      "input": "0x098999be00000558000c5fc50000000000000002000000006887e1040000000000873e7500000000000000000000000000000000000000000000000000000000000091ce000000000000000000000000000000000000000000000000000000000000000106b6fdd685cb71ce9bb57ba7ef82e4c4d62d8432dfc969788a4bae3935d3dec50000000000000000000000001caaaa58002a7e8b4c6f427ac2c943767b4d6cd7000000000000000000000000",
                      "to": "0xff256497d61dcd71a9e9ff43967c13fde1f72d12",
                      "type": "DELEGATECALL",
                      "value": "0x0"
                    }
                  ],
                  "from": "0xdeaddeaddeaddeaddeaddeaddeaddeaddead0001",
                  "gas": "0xf4240",
                  "gasUsed": "0xb41c",
                  "input": "0x098999be00000558000c5fc50000000000000002000000006887e1040000000000873e7500000000000000000000000000000000000000000000000000000000000091ce000000000000000000000000000000000000000000000000000000000000000106b6fdd685cb71ce9bb57ba7ef82e4c4d62d8432dfc969788a4bae3935d3dec50000000000000000000000001caaaa58002a7e8b4c6f427ac2c943767b4d6cd7000000000000000000000000",
                  "to": "0x4200000000000000000000000000000000000015",
                  "type": "CALL",
                  "value": "0x0"
                },
                "txHash": "0x79b524d4305dfa348d3525b9da01239fed53ad4d645f3bc136bfe3e2b39ef779"
              }
            ]
          }
        }
      ]
    },
    {
      "name": "debug_traceBlockByHash",
      "summary": "Returns the possible tracing result number by executing all transactions in the block specified by the block hash with a",
      "description": "Returns the possible tracing result number by executing all transactions in the block specified by the block hash with a tracer.",
      "params": [
        {
          "name": "blockHash",
          "description": "The hash of the block to be traced",
          "required": true,
          "schema": {
            "type": "string"
          }
        },
        {
          "name": "object",
          "description": "The tracer object with the following fields:",
          "required": true,
          "schema": {
            "type": "object",
            "properties": {
              "tracer": {
                "enum": [
                  "callTracer",
                  "prestateTracer"
                ],
                "description": "The type of tracer. It could be callTracer or prestateTracer"
              },
              "tracerConfig": {
                "type": "object",
                "properties": {
                  "onlyTopCall": {
                    "type": "boolean",
                    "description": "When set to true, this will only trace the primary (top-level) call and not any sub-calls. It eliminates the additional processing for each call frame"
                  }
                },
                "description": "The object to specify the configurations of the tracer"
              }
            }
          }
        }
      ],
      "result": {
        "name": "result",
        "description": "An array containing one trace result for each transaction in the block.",
        "schema": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "result": {
                "type": "object",
                "properties": {
                  "from": {
                    "type": "string",
                    "description": "The address from which the call was made."
                  },
                  "gas": {
                    "type": "string",
                    "description": "The gas provided for the call, encoded as a hexadecimal value."
                  },
                  "gasUsed": {
                    "type": "string",
                    "description": "The gas used by the call, encoded as a hexadecimal value."
                  },
                  "input": {
                    "type": "string",
                    "description": "The input data supplied to the call."
                  },
                  "output": {
                    "type": "string",
                    "description": "The output data returned by the call when present."
                  },
                  "to": {
                    "type": "string",
                    "description": "The address to which the call was made."
                  },
                  "type": {
                    "type": "string",
                    "description": "The type of call."
                  },
                  "value": {
                    "type": "string",
                    "description": "The value transferred by the call, encoded as a hexadecimal value."
                  },
                  "error": {
                    "type": "string",
                    "description": "The execution error when the call failed."
                  },
                  "calls": {
                    "type": "array",
                    "items": {
                      "type": "object",
                      "properties": {
                        "from": {
                          "type": "string",
                          "description": "The address from which the call was made."
                        },
                        "gas": {
                          "type": "string",
                          "description": "The gas provided for the call, encoded as a hexadecimal value."
                        },
                        "gasUsed": {
                          "type": "string",
                          "description": "The gas used by the call, encoded as a hexadecimal value."
                        },
                        "input": {
                          "type": "string",
                          "description": "The input data supplied to the call."
                        },
                        "output": {
                          "type": "string",
                          "description": "The output data returned by the call when present."
                        },
                        "to": {
                          "type": "string",
                          "description": "The address to which the call was made."
                        },
                        "type": {
                          "type": "string",
                          "description": "The type of call."
                        },
                        "value": {
                          "type": "string",
                          "description": "The value transferred by the call, encoded as a hexadecimal value."
                        },
                        "error": {
                          "type": "string",
                          "description": "The execution error when the call failed."
                        },
                        "calls": {
                          "type": "array",
                          "items": {},
                          "description": "Nested call frames when the call made sub-calls; each entry follows the same call-frame structure."
                        }
                      }
                    },
                    "description": "The direct sub-calls made by the transaction."
                  }
                },
                "description": "The call trace for the transaction."
              },
              "txHash": {
                "type": "string",
                "description": "The hash of the traced transaction."
              }
            }
          }
        }
      },
      "tags": [
        {
          "name": "debug"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/giwa/debug_traceBlockByHash"
      },
      "examples": [
        {
          "name": "debug_traceBlockByHash example",
          "params": [
            {
              "name": "blockHash",
              "value": "0x415aac98a7007e1e40980402bf6c52c077dd8d2e137dfea24da702b04486bf26"
            }
          ],
          "result": {
            "name": "debug_traceBlockByHash result",
            "value": [
              {
                "result": {
                  "calls": [
                    {
                      "from": "0x4200000000000000000000000000000000000015",
                      "gas": "0xe9b26",
                      "gasUsed": "0x745b",
                      "input": "0x3db6be2b00000558000c3c9d0000000000000000000000006a870c440000000000afed6d00000000000000000000000000000000000000000000000000000000396b08e40000000000000000000000000000000000000000000000000000000003e06a9ce5d14bf21ebe80b3b37518cb46126768a8057c6bbf1d22198a640785d4d85fc70000000000000000000000001caaaa58002a7e8b4c6f427ac2c943767b4d6cd70000000000000000000000000190",
                      "to": "0x6a97c5d55a21265326150efe12fc30fb21cbff56",
                      "type": "DELEGATECALL",
                      "value": "0x0"
                    }
                  ],
                  "from": "0xdeaddeaddeaddeaddeaddeaddeaddeaddead0001",
                  "gas": "0xf4240",
                  "gasUsed": "0xe03e",
                  "input": "0x3db6be2b00000558000c3c9d0000000000000000000000006a870c440000000000afed6d00000000000000000000000000000000000000000000000000000000396b08e40000000000000000000000000000000000000000000000000000000003e06a9ce5d14bf21ebe80b3b37518cb46126768a8057c6bbf1d22198a640785d4d85fc70000000000000000000000001caaaa58002a7e8b4c6f427ac2c943767b4d6cd70000000000000000000000000190",
                  "to": "0x4200000000000000000000000000000000000015",
                  "type": "CALL",
                  "value": "0x0"
                },
                "txHash": "0xf195555ac15f2c4c77f0256f092633ae39395c81a1345bdf51dc029e3a393992"
              },
              {
                "result": {
                  "from": "0x5ad176ebb13cabe62ee7c07f52a67b4a48cbef83",
                  "gas": "0x61a80",
                  "gasUsed": "0x98d2",
                  "input": "0xda1750b0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000010000000404624044d1509a0460ae9dc9236b04602aaee65ef7045e993727d9b3",
                  "to": "0xbbe55e29bbc6d71ecab1ac011c9ac5206ab2fe74",
                  "type": "CALL",
                  "value": "0x0"
                },
                "txHash": "0x79dfb44c80e7282b6a7d5a4e917c06ef15778df6f488682b0ee2a1677d6dbae0"
              },
              {
                "result": {
                  "from": "0x5ad176ebb13cabe62ee7c07f52a67b4a48cbef83",
                  "gas": "0x61a80",
                  "gasUsed": "0x98d2",
                  "input": "0xda1750b0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000010000000503133d342205210311d3185350630311a790f96fdd03103d898f0286",
                  "to": "0xbbe55e29bbc6d71ecab1ac011c9ac5206ab2fe74",
                  "type": "CALL",
                  "value": "0x0"
                },
                "txHash": "0xe9b8a473284c2890c2f455504d8f73b348cf2b0e1b9c2990ab7601f52c18ee10"
              },
              {
                "result": {
                  "from": "0x5ad176ebb13cabe62ee7c07f52a67b4a48cbef83",
                  "gas": "0x61a80",
                  "gasUsed": "0x98d2",
                  "input": "0xda1750b000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000001000000070c2ab37fea61e40c28d55896abd80c23c676cf80870c21e921d7df54",
                  "to": "0xbbe55e29bbc6d71ecab1ac011c9ac5206ab2fe74",
                  "type": "CALL",
                  "value": "0x0"
                },
                "txHash": "0x077939154a84e77ee431318953e347ce49d2a154bbd204dd7663c857a841ec41"
              },
              {
                "result": {
                  "from": "0x5ad176ebb13cabe62ee7c07f52a67b4a48cbef83",
                  "gas": "0x61a80",
                  "gasUsed": "0x98d2",
                  "input": "0xda1750b0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000010000000805c624ae061edf05bfd00cc628ad05bde8ba2c233c05b7971be27b2f",
                  "to": "0xbbe55e29bbc6d71ecab1ac011c9ac5206ab2fe74",
                  "type": "CALL",
                  "value": "0x0"
                },
                "txHash": "0xc5f99cc468fe6d0463d1b43b863cb4b2b83e1162af131af6fbe3fd5dde458da7"
              },
              {
                "result": {
                  "from": "0x5ad176ebb13cabe62ee7c07f52a67b4a48cbef83",
                  "gas": "0x61a80",
                  "gasUsed": "0x98d2",
                  "input": "0xda1750b0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000010000000904b9f3eeb6355404b93a304d038e04b6f198bd0efe04b638376f6645",
                  "to": "0xbbe55e29bbc6d71ecab1ac011c9ac5206ab2fe74",
                  "type": "CALL",
                  "value": "0x0"
                },
                "txHash": "0x1c1fad1e823b101cf7e54572066bca607d6eaab99a680b52b43aea87a0bbb653"
              },
              {
                "result": {
                  "from": "0x5ad176ebb13cabe62ee7c07f52a67b4a48cbef83",
                  "gas": "0x61a80",
                  "gasUsed": "0x98d2",
                  "input": "0xda1750b00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000001081a725443cce20816ed0bfee4590816950c4fc2eb08130ff22ef590",
                  "to": "0xbbe55e29bbc6d71ecab1ac011c9ac5206ab2fe74",
                  "type": "CALL",
                  "value": "0x0"
                },
                "txHash": "0x2f61f4cabde2666ace72d5c155bc9ab857e8d63e1e64b615f76be8d215c519d5"
              },
              {
                "result": {
                  "from": "0x5ad176ebb13cabe62ee7c07f52a67b4a48cbef83",
                  "gas": "0x61a80",
                  "gasUsed": "0x98d2",
                  "input": "0xda1750b00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000002028c1523ea2c89028b7f08ee3ab2028b65da409749028acfc56a7d59",
                  "to": "0xbbe55e29bbc6d71ecab1ac011c9ac5206ab2fe74",
                  "type": "CALL",
                  "value": "0x0"
                },
                "txHash": "0x45fac24f95ab29524e6159acf471edde13deff00a1b12fb7871720815ac35dc4"
              },
              {
                "result": {
                  "from": "0x5ad176ebb13cabe62ee7c07f52a67b4a48cbef83",
                  "gas": "0x61a80",
                  "gasUsed": "0x98d2",
                  "input": "0xda1750b000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000001000000030248b2349deded02482b9cb4c44c024811eb59fa5b02478b59a4669c",
                  "to": "0xbbe55e29bbc6d71ecab1ac011c9ac5206ab2fe74",
                  "type": "CALL",
                  "value": "0x0"
                },
                "txHash": "0x11197c5d9edd8ebff9aabd80c7dc6d0eb30ad5fd772bdda1daa5f7bd617eba26"
              },
              {
                "result": {
                  "from": "0x5ad176ebb13cabe62ee7c07f52a67b4a48cbef83",
                  "gas": "0x61a80",
                  "gasUsed": "0x98d2",
                  "input": "0xda1750b00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000004046290254023bf0460fe61a17d9404607a695ac80c045ee8d509276c",
                  "to": "0xbbe55e29bbc6d71ecab1ac011c9ac5206ab2fe74",
                  "type": "CALL",
                  "value": "0x0"
                },
                "txHash": "0x415906257382bcb63c3f6785f6258ef43328c4034d773f133e4595990ef880f0"
              },
              {
                "result": {
                  "from": "0x5ad176ebb13cabe62ee7c07f52a67b4a48cbef83",
                  "gas": "0x61a80",
                  "gasUsed": "0x98d2",
                  "input": "0xda1750b000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000001000000050313496556eefb0311df43ec8e9c0311b3bbe6197b031049aee0515d",
                  "to": "0xbbe55e29bbc6d71ecab1ac011c9ac5206ab2fe74",
                  "type": "CALL",
                  "value": "0x0"
                },
                "txHash": "0x6900377118b07e3cf77cac2ca2e5a04885bd44122e1800ddbbad6828495deb6c"
              },
              {
                "result": {
                  "from": "0x5ad176ebb13cabe62ee7c07f52a67b4a48cbef83",
                  "gas": "0x61a80",
                  "gasUsed": "0x8de2",
                  "input": "0xda1750b000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000001000000070c2ab37fea61e40c28d55896abd80c23c676cf80870c21e921d7df54",
                  "to": "0xbbe55e29bbc6d71ecab1ac011c9ac5206ab2fe74",
                  "type": "CALL",
                  "value": "0x0"
                },
                "txHash": "0xe1f334a79f97c16bf6811ce89aed84036387b4fe62be8c28a4237b8f3ebcd8e4"
              },
              {
                "result": {
                  "from": "0x5ad176ebb13cabe62ee7c07f52a67b4a48cbef83",
                  "gas": "0x61a80",
                  "gasUsed": "0x8de2",
                  "input": "0xda1750b0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000010000000805c624ae061edf05bfd00cc628ad05bde8ba2c233c05b7971be27b2f",
                  "to": "0xbbe55e29bbc6d71ecab1ac011c9ac5206ab2fe74",
                  "type": "CALL",
                  "value": "0x0"
                },
                "txHash": "0x097ef9fda652fd7a464aa941ac931ccf5a96dca712eab6ad6d7b931c3ee66f20"
              },
              {
                "result": {
                  "from": "0x5ad176ebb13cabe62ee7c07f52a67b4a48cbef83",
                  "gas": "0x61a80",
                  "gasUsed": "0x8de2",
                  "input": "0xda1750b0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000010000000904b9f3eeb6355404b93a304d038e04b6f198bd0efe04b638376f6645",
                  "to": "0xbbe55e29bbc6d71ecab1ac011c9ac5206ab2fe74",
                  "type": "CALL",
                  "value": "0x0"
                },
                "txHash": "0x6f53c432d4e1580b37f590db6fb1014d3c06868ad4604a4a979683ed8424ed0a"
              },
              {
                "result": {
                  "calls": [
                    {
                      "from": "0x780ae565a4104b3099dab72d9610656b94f1389f",
                      "gas": "0x40ea",
                      "gasUsed": "0x0",
                      "input": "0x",
                      "to": "0x21ad6ef3979638d8e73747f22b92c4aade145d82",
                      "type": "CALL",
                      "value": "0x5af3107a4000"
                    }
                  ],
                  "from": "0xd34ed8909ec2413b8f73f49c46b46142fad119e5",
                  "gas": "0xf42e",
                  "gasUsed": "0xb8d2",
                  "input": "0xd371cd500000000000000000000000000000000000000000000000000000000000000000",
                  "to": "0x780ae565a4104b3099dab72d9610656b94f1389f",
                  "type": "CALL",
                  "value": "0x5af3107a4000"
                },
                "txHash": "0x21be783d6406fc76df7691c1ac8fa258f19224063d6509d17252601cc310b458"
              },
              {
                "result": {
                  "from": "0x5e17cf16bb67edfb0e797231a93371f51262b00b",
                  "gas": "0x29b47",
                  "gasUsed": "0x6893",
                  "input": "0x095ea7b3000000000000000000000000ad153c844ccac3d2ea991170624200e54730be74ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff",
                  "output": "0x0000000000000000000000000000000000000000000000000000000000000001",
                  "to": "0x89b38c7414ec86eb2cb003c6362cf010b562ff1e",
                  "type": "CALL",
                  "value": "0x0"
                },
                "txHash": "0xc8918b4dec9fa9121e6fa29b1701363f65499197d621f2604c72fe8b3a26c60d"
              },
              {
                "result": {
                  "calls": [
                    {
                      "from": "0xad153c844ccac3d2ea991170624200e54730be74",
                      "gas": "0x2457e",
                      "gasUsed": "0x1a70",
                      "input": "0xd0e30db0",
                      "to": "0x4200000000000000000000000000000000000006",
                      "type": "CALL",
                      "value": "0x9c3fd6c35c00"
                    },
                    {
                      "from": "0xad153c844ccac3d2ea991170624200e54730be74",
                      "gas": "0x220b0",
                      "gasUsed": "0x3258",
                      "input": "0xa9059cbb000000000000000000000000dab840c5ee45d123dfb3cc59385f90dfef268eea0000000000000000000000000000000000000000000000000001ed78f09c3e8c",
                      "output": "0x0000000000000000000000000000000000000000000000000000000000000001",
                      "to": "0x89b38c7414ec86eb2cb003c6362cf010b562ff1e",
                      "type": "CALL",
                      "value": "0x0"
                    },
                    {
                      "from": "0xad153c844ccac3d2ea991170624200e54730be74",
                      "gas": "0x1ed61",
                      "gasUsed": "0x231",
                      "input": "0x70a08231000000000000000000000000ad153c844ccac3d2ea991170624200e54730be74",
                      "output": "0x00000000000000000000000000000000000000000000002f2d697968d42823c0",
                      "to": "0x4200000000000000000000000000000000000006",
                      "type": "STATICCALL"
                    },
                    {
                      "from": "0xad153c844ccac3d2ea991170624200e54730be74",
                      "gas": "0x1e9c7",
                      "gasUsed": "0x28b",
                      "input": "0x70a08231000000000000000000000000ad153c844ccac3d2ea991170624200e54730be74",
                      "output": "0x000000000000000000000000000000000000000000000095721633a34d3555ab",
                      "to": "0x89b38c7414ec86eb2cb003c6362cf010b562ff1e",
                      "type": "STATICCALL"
                    }
                  ],
                  "from": "0xdab840c5ee45d123dfb3cc59385f90dfef268eea",
                  "gas": "0x2e8bc",
                  "gasUsed": "0x10b36",
                  "input": "0xd6556a67000000000000000000000000000000000000000000000000000039e1970a301e000000000000000000000000dab840c5ee45d123dfb3cc59385f90dfef268eea",
                  "output": "0x0000000000000000000000000000000000000000000000000001ed78f09c3e8c",
                  "to": "0xad153c844ccac3d2ea991170624200e54730be74",
                  "type": "CALL",
                  "value": "0x9c3fd6c35c00"
                },
                "txHash": "0x80e119b57a5f43d1922aee45285c7abd53e0573361aac2fc8597d7e23f5303c3"
              },
              {
                "result": {
                  "from": "0xed24c7fd30a706b957e3e8827f2cf511aff33c30",
                  "gas": "0x5208",
                  "gasUsed": "0x5208",
                  "input": "0x",
                  "to": "0x9661a83e4a67cf04b175983ebc969434d665e553",
                  "type": "CALL",
                  "value": "0x1280740d2f840300"
                },
                "txHash": "0x9db4226bdb6c2274538251256da594685a83de96bf93b2955abe259c38f95da2"
              },
              {
                "result": {
                  "calls": [
                    {
                      "from": "0x780ae565a4104b3099dab72d9610656b94f1389f",
                      "gas": "0x40dc",
                      "gasUsed": "0x0",
                      "input": "0x",
                      "to": "0x21ad6ef3979638d8e73747f22b92c4aade145d82",
                      "type": "CALL",
                      "value": "0x5af3107a4000"
                    }
                  ],
                  "from": "0x18d273ea587964dc11226b7595bb4d5516153ed4",
                  "gas": "0xf3f4",
                  "gasUsed": "0xb8a6",
                  "input": "0x86770afc0000000000000000000000000000000000000000000000000000000000000000",
                  "to": "0x780ae565a4104b3099dab72d9610656b94f1389f",
                  "type": "CALL",
                  "value": "0x5af3107a4000"
                },
                "txHash": "0x8594b8a6a639f63048d677802d7ce2929da8d8f65f4247716b642cbe1a24d3f2"
              },
              {
                "result": {
                  "calls": [
                    {
                      "from": "0xad153c844ccac3d2ea991170624200e54730be74",
                      "gas": "0x1fc8f",
                      "gasUsed": "0x0",
                      "input": "0x",
                      "to": "0xc041a240e090bf34d6df0e220ec2c1f0406c74b0",
                      "type": "CALL",
                      "value": "0x1151b5a29f"
                    },
                    {
                      "from": "0xad153c844ccac3d2ea991170624200e54730be74",
                      "gas": "0x1d78d",
                      "gasUsed": "0x1a70",
                      "input": "0xd0e30db0",
                      "to": "0x4200000000000000000000000000000000000006",
                      "type": "CALL",
                      "value": "0x7fd50bc61"
                    },
                    {
                      "from": "0xad153c844ccac3d2ea991170624200e54730be74",
                      "gas": "0x1b29e",
                      "gasUsed": "0x3bde",
                      "input": "0x23b872dd000000000000000000000000c041a240e090bf34d6df0e220ec2c1f0406c74b0000000000000000000000000ad153c844ccac3d2ea991170624200e54730be74000000000000000000000000000000000000000000000000000000194f065f00",
                      "output": "0x0000000000000000000000000000000000000000000000000000000000000001",
                      "to": "0x89b38c7414ec86eb2cb003c6362cf010b562ff1e",
                      "type": "CALL",
                      "value": "0x0"
                    },
                    {
                      "from": "0xad153c844ccac3d2ea991170624200e54730be74",
                      "gas": "0x15310",
                      "gasUsed": "0x231",
                      "input": "0x70a08231000000000000000000000000ad153c844ccac3d2ea991170624200e54730be74",
                      "output": "0x00000000000000000000000000000000000000000000002f2d697970d178e021",
                      "to": "0x4200000000000000000000000000000000000006",
                      "type": "STATICCALL"
                    },
                    {
                      "from": "0xad153c844ccac3d2ea991170624200e54730be74",
                      "gas": "0x14f79",
                      "gasUsed": "0x28b",
                      "input": "0x70a08231000000000000000000000000ad153c844ccac3d2ea991170624200e54730be74",
                      "output": "0x000000000000000000000000000000000000000000000095721633bc9c3bb4ab",
                      "to": "0x89b38c7414ec86eb2cb003c6362cf010b562ff1e",
                      "type": "STATICCALL"
                    }
                  ],
                  "from": "0xc041a240e090bf34d6df0e220ec2c1f0406c74b0",
                  "gas": "0x29c07",
                  "gasUsed": "0x15a50",
                  "input": "0x9cd441da000000000000000000000000000000000000000000000000000000194f065f00000000000000000000000000000000000000000000000000000000192ea13820",
                  "output": "0x0000000000000000000000000000000000000000000000000000000d60073db300000000000000000000000000000000000000000000000000000007fd50bc61000000000000000000000000000000000000000000000000000000194f065f00",
                  "to": "0xad153c844ccac3d2ea991170624200e54730be74",
                  "type": "CALL",
                  "value": "0x194f065f00"
                },
                "txHash": "0x85f51c3802bd3d3796c03910db29d2e8e52199adb2eba9616b95d51f747f6a18"
              },
              {
                "result": {
                  "calls": [
                    {
                      "calls": [
                        {
                          "from": "0x436d468f94e1491aa7e6abc35b6acd2ca62e0b1e",
                          "gas": "0x43965",
                          "gasUsed": "0x7dfc",
                          "input": "0xa9059cbb00000000000000000000000000a6393b0cc618e55bc2740d4e4a0190b1723cb4000000000000000000000000000000000000000000000000000dde5a1ebe9af0",
                          "output": "0x0000000000000000000000000000000000000000000000000000000000000001",
                          "to": "0x4200000000000000000000000000000000000006",
                          "type": "CALL",
                          "value": "0x0"
                        },
                        {
                          "from": "0x436d468f94e1491aa7e6abc35b6acd2ca62e0b1e",
                          "gas": "0x3b05e",
                          "gasUsed": "0xa0d",
                          "input": "0x70a08231000000000000000000000000436d468f94e1491aa7e6abc35b6acd2ca62e0b1e",
                          "output": "0x000000000000000000000000000000000000000000a5888805fe9e9d116a40be",
                          "to": "0x423b5b7c0ba3bb413978408a7af5af1f74b752ba",
                          "type": "STATICCALL"
                        },
                        {
                          "calls": [
                            {
                              "from": "0x6b1e6a114ff1cf1428c376d9b1a9010f051d69a1",
                              "gas": "0x38646",
                              "gasUsed": "0x3206",
                              "input": "0x23b872dd00000000000000000000000000a6393b0cc618e55bc2740d4e4a0190b1723cb4000000000000000000000000436d468f94e1491aa7e6abc35b6acd2ca62e0b1e000000000000000000000000000000000000000000001dfaf145e39b39c9bdc3",
                              "output": "0x0000000000000000000000000000000000000000000000000000000000000001",
                              "to": "0x423b5b7c0ba3bb413978408a7af5af1f74b752ba",
                              "type": "CALL",
                              "value": "0x0"
                            }
                          ],
                          "from": "0x436d468f94e1491aa7e6abc35b6acd2ca62e0b1e",
                          "gas": "0x3a363",
                          "gasUsed": "0x4211",
                          "input": "0xfa461e33fffffffffffffffffffffffffffffffffffffffffffffffffff221a5e1416510000000000000000000000000000000000000000000001dfaf145e39b39c9bdc3000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000a6393b0cc618e55bc2740d4e4a0190b1723cb4000000000000000000000000000000000000000000000000000000000000002b423b5b7c0ba3bb413978408a7af5af1f74b752ba0027104200000000000000000000000000000000000006000000000000000000000000000000000000000000",
                          "to": "0x6b1e6a114ff1cf1428c376d9b1a9010f051d69a1",
                          "type": "CALL",
                          "value": "0x0"
                        },
                        {
                          "from": "0x436d468f94e1491aa7e6abc35b6acd2ca62e0b1e",
                          "gas": "0x35fe2",
                          "gasUsed": "0x23d",
                          "input": "0x70a08231000000000000000000000000436d468f94e1491aa7e6abc35b6acd2ca62e0b1e",
                          "output": "0x000000000000000000000000000000000000000000a5a682f74482384b33fe81",
                          "to": "0x423b5b7c0ba3bb413978408a7af5af1f74b752ba",
                          "type": "STATICCALL"
                        }
                      ],
                      "from": "0x6b1e6a114ff1cf1428c376d9b1a9010f051d69a1",
                      "gas": "0x4cff2",
                      "gasUsed": "0x17305",
                      "input": "0x128acb0800000000000000000000000000a6393b0cc618e55bc2740d4e4a0190b1723cb40000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001dfaf145e39b39c9bdc3000000000000000000000000fffd8963efd1fc6a506488495d951d5263988d2500000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000a6393b0cc618e55bc2740d4e4a0190b1723cb4000000000000000000000000000000000000000000000000000000000000002b423b5b7c0ba3bb413978408a7af5af1f74b752ba0027104200000000000000000000000000000000000006000000000000000000000000000000000000000000",
                      "output": "0xfffffffffffffffffffffffffffffffffffffffffffffffffff221a5e1416510000000000000000000000000000000000000000000001dfaf145e39b39c9bdc3",
                      "to": "0x436d468f94e1491aa7e6abc35b6acd2ca62e0b1e",
                      "type": "CALL",
                      "value": "0x0"
                    }
                  ],
                  "from": "0x00a6393b0cc618e55bc2740d4e4a0190b1723cb4",
                  "gas": "0x55730",
                  "gasUsed": "0x1d58a",
                  "input": "0x04e45aaf000000000000000000000000423b5b7c0ba3bb413978408a7af5af1f74b752ba0000000000000000000000004200000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000a6393b0cc618e55bc2740d4e4a0190b1723cb4000000000000000000000000000000000000000000001dfaf145e39b39c9bdc300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
                  "output": "0x000000000000000000000000000000000000000000000000000dde5a1ebe9af0",
                  "to": "0x6b1e6a114ff1cf1428c376d9b1a9010f051d69a1",
                  "type": "CALL",
                  "value": "0x0"
                },
                "txHash": "0x1a78fedecdae96f074a6c9ce6141e17e7c305f5576d0f0649a34ab4e3b5426fd"
              },
              {
                "result": {
                  "from": "0xda4b91a761c3a5ab1e0e8f4c53d454ec33634e73",
                  "gas": "0x5208",
                  "gasUsed": "0x5208",
                  "input": "0x",
                  "to": "0x78d6eb01be39ad8a9acf42d20b1e69086d35701c",
                  "type": "CALL",
                  "value": "0xe8d4a51000"
                },
                "txHash": "0xbf82e8c3bb59fec31f4635390242c6d48d47ff2ac25921c518c69431d697b16c"
              },
              {
                "result": {
                  "calls": [
                    {
                      "calls": [
                        {
                          "calls": [
                            {
                              "calls": [
                                {
                                  "calls": [
                                    {
                                      "from": "0x78cbb3413fbb6af05ef1d21e646440e56bae3ad6",
                                      "gas": "0x176d5",
                                      "gasUsed": "0x9bd",
                                      "input": "0x54d4f9db568eb581cdf80b03d3bdfa414f3203bfdcc4bba4e66355612bd0e879da812f06",
                                      "output": "0x072d75e18b2be4f89a13a7147240477481c4b526d5795802acba59046b426e08",
                                      "to": "0xdd3321c53ef2f9671d358ecb102179699745e5e7",
                                      "type": "DELEGATECALL",
                                      "value": "0x0"
                                    }
                                  ],
                                  "from": "0xd5077b67dcb56cac8b270c7788fc3e6ee03f17b9",
                                  "gas": "0x18f5f",
                                  "gasUsed": "0x1c75",
                                  "input": "0x54d4f9db568eb581cdf80b03d3bdfa414f3203bfdcc4bba4e66355612bd0e879da812f06",
                                  "output": "0x072d75e18b2be4f89a13a7147240477481c4b526d5795802acba59046b426e08",
                                  "to": "0x78cbb3413fbb6af05ef1d21e646440e56bae3ad6",
                                  "type": "STATICCALL"
                                },
                                {
                                  "calls": [
                                    {
                                      "from": "0xda282e89244424e297ce8e78089b54d043fb28b6",
                                      "gas": "0x14862",
                                      "gasUsed": "0x929",
                                      "input": "0x10d736d5d99b42e778498aa3c9c1f6a012359130252780511687a35982e8e52735453034",
                                      "output": "0x00000000000000000000000009b170ca2a006081042992bce7379b85a02149c6",
                                      "to": "0x0f463e41d8eaed5bdb0b97d85f33be1314193109",
                                      "type": "DELEGATECALL",
                                      "value": "0x0"
                                    }
                                  ],
                                  "from": "0xd5077b67dcb56cac8b270c7788fc3e6ee03f17b9",
                                  "gas": "0x1602f",
                                  "gasUsed": "0x1be1",
                                  "input": "0x10d736d5d99b42e778498aa3c9c1f6a012359130252780511687a35982e8e52735453034",
                                  "output": "0x00000000000000000000000009b170ca2a006081042992bce7379b85a02149c6",
                                  "to": "0xda282e89244424e297ce8e78089b54d043fb28b6",
                                  "type": "STATICCALL"
                                },
                                {
                                  "calls": [
                                    {
                                      "from": "0x9c9bf29880448ab39795a11b669e22a0f1d790ec",
                                      "gas": "0x119fd",
                                      "gasUsed": "0xc31",
                                      "input": "0xf20f03bc072d75e18b2be4f89a13a7147240477481c4b526d5795802acba59046b426e0800000000000000000000000009b170ca2a006081042992bce7379b85a02149c6000000000000000000000000d10e7e9e50b8db9e0d6af7ce9c9ca1459cce5e55",
                                      "output": "0x0000000000000000000000000000000000000000000000000000000000000000",
                                      "to": "0x2152ad964a361f03437b5eb11c782d6f957c407f",
                                      "type": "DELEGATECALL",
                                      "value": "0x0"
                                    }
                                  ],
                                  "from": "0xd5077b67dcb56cac8b270c7788fc3e6ee03f17b9",
                                  "gas": "0x13116",
                                  "gasUsed": "0x1ef2",
                                  "input": "0xf20f03bc072d75e18b2be4f89a13a7147240477481c4b526d5795802acba59046b426e0800000000000000000000000009b170ca2a006081042992bce7379b85a02149c6000000000000000000000000d10e7e9e50b8db9e0d6af7ce9c9ca1459cce5e55",
                                  "output": "0x0000000000000000000000000000000000000000000000000000000000000000",
                                  "to": "0x9c9bf29880448ab39795a11b669e22a0f1d790ec",
                                  "type": "STATICCALL"
                                },
                                {
                                  "calls": [
                                    {
                                      "from": "0x4200000000000000000000000000000000000021",
                                      "gas": "0xf077",
                                      "gasUsed": "0x41ee",
                                      "input": "0xa3112a640000000000000000000000000000000000000000000000000000000000000000",
                                      "output": "0x000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000000",
                                      "to": "0xbec660b456b84a081e90af29be43385bda5bf7b6",
                                      "type": "DELEGATECALL",
                                      "value": "0x0"
                                    }
                                  ],
                                  "from": "0xd5077b67dcb56cac8b270c7788fc3e6ee03f17b9",
                                  "gas": "0x1079c",
                                  "gasUsed": "0x55a4",
                                  "input": "0xa3112a640000000000000000000000000000000000000000000000000000000000000000",
                                  "output": "0x000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000000",
                                  "to": "0x4200000000000000000000000000000000000021",
                                  "type": "STATICCALL"
                                }
                              ],
                              "from": "0xd5077b67dcb56cac8b270c7788fc3e6ee03f17b9",
                              "gas": "0x1abe7",
                              "gasUsed": "0xfb41",
                              "input": "0xba03e205000000000000000000000000d10e7e9e50b8db9e0d6af7ce9c9ca1459cce5e55d99b42e778498aa3c9c1f6a012359130252780511687a35982e8e52735453034",
                              "output": "0x0000000000000000000000000000000000000000000000000000000000000000",
                              "to": "0x33aee288907a684dbfc9dd4fb1603fe3e7bdabbd",
                              "type": "DELEGATECALL",
                              "value": "0x0"
                            }
                          ],
                          "from": "0xbcdb22f56642de57624cfc2fbb9ee398cf3ca268",
                          "gas": "0x1c54b",
                          "gasUsed": "0x10dfc",
                          "input": "0xba03e205000000000000000000000000d10e7e9e50b8db9e0d6af7ce9c9ca1459cce5e55d99b42e778498aa3c9c1f6a012359130252780511687a35982e8e52735453034",
                          "output": "0x0000000000000000000000000000000000000000000000000000000000000000",
                          "to": "0xd5077b67dcb56cac8b270c7788fc3e6ee03f17b9",
                          "type": "STATICCALL"
                        },
                        {
                          "calls": [
                            {
                              "calls": [
                                {
                                  "calls": [
                                    {
                                      "from": "0x78cbb3413fbb6af05ef1d21e646440e56bae3ad6",
                                      "gas": "0xa22c",
                                      "gasUsed": "0x1ed",
                                      "input": "0x54d4f9db568eb581cdf80b03d3bdfa414f3203bfdcc4bba4e66355612bd0e879da812f06",
                                      "output": "0x072d75e18b2be4f89a13a7147240477481c4b526d5795802acba59046b426e08",
                                      "to": "0xdd3321c53ef2f9671d358ecb102179699745e5e7",
                                      "type": "DELEGATECALL",
                                      "value": "0x0"
                                    }
                                  ],
                                  "from": "0xd5077b67dcb56cac8b270c7788fc3e6ee03f17b9",
                                  "gas": "0xa5c1",
                                  "gasUsed": "0x311",
                                  "input": "0x54d4f9db568eb581cdf80b03d3bdfa414f3203bfdcc4bba4e66355612bd0e879da812f06",
                                  "output": "0x072d75e18b2be4f89a13a7147240477481c4b526d5795802acba59046b426e08",
                                  "to": "0x78cbb3413fbb6af05ef1d21e646440e56bae3ad6",
                                  "type": "STATICCALL"
                                },
                                {
                                  "calls": [
                                    {
                                      "from": "0xda282e89244424e297ce8e78089b54d043fb28b6",
                                      "gas": "0x9d5c",
                                      "gasUsed": "0x929",
                                      "input": "0x10d736d5aa92f8c143657dde575de430aecaea6ca91f2e6072339b16932d426895d8d678",
                                      "output": "0x00000000000000000000000063cce2b569a7bc35895ee24306c1512fefc06121",
                                      "to": "0x0f463e41d8eaed5bdb0b97d85f33be1314193109",
                                      "type": "DELEGATECALL",
                                      "value": "0x0"
                                    }
                                  ],
                                  "from": "0xd5077b67dcb56cac8b270c7788fc3e6ee03f17b9",
                                  "gas": "0xa0de",
                                  "gasUsed": "0xa4d",
                                  "input": "0x10d736d5aa92f8c143657dde575de430aecaea6ca91f2e6072339b16932d426895d8d678",
                                  "output": "0x00000000000000000000000063cce2b569a7bc35895ee24306c1512fefc06121",
                                  "to": "0xda282e89244424e297ce8e78089b54d043fb28b6",
                                  "type": "STATICCALL"
                                },
                                {
                                  "calls": [
                                    {
                                      "from": "0x9c9bf29880448ab39795a11b669e22a0f1d790ec",
                                      "gas": "0x9107",
                                      "gasUsed": "0xc31",
                                      "input": "0xf20f03bc072d75e18b2be4f89a13a7147240477481c4b526d5795802acba59046b426e0800000000000000000000000063cce2b569a7bc35895ee24306c1512fefc06121000000000000000000000000d10e7e9e50b8db9e0d6af7ce9c9ca1459cce5e55",
                                      "output": "0xa9c762fb6c7c2e2ec491549307107a0d757e74ffe602051fb815d9b0b1c21880",
                                      "to": "0x2152ad964a361f03437b5eb11c782d6f957c407f",
                                      "type": "DELEGATECALL",
                                      "value": "0x0"
                                    }
                                  ],
                                  "from": "0xd5077b67dcb56cac8b270c7788fc3e6ee03f17b9",
                                  "gas": "0x9460",
                                  "gasUsed": "0xd5e",
                                  "input": "0xf20f03bc072d75e18b2be4f89a13a7147240477481c4b526d5795802acba59046b426e0800000000000000000000000063cce2b569a7bc35895ee24306c1512fefc06121000000000000000000000000d10e7e9e50b8db9e0d6af7ce9c9ca1459cce5e55",
                                  "output": "0xa9c762fb6c7c2e2ec491549307107a0d757e74ffe602051fb815d9b0b1c21880",
                                  "to": "0x9c9bf29880448ab39795a11b669e22a0f1d790ec",
                                  "type": "STATICCALL"
                                },
                                {
                                  "calls": [
                                    {
                                      "from": "0x4200000000000000000000000000000000000021",
                                      "gas": "0x8201",
                                      "gasUsed": "0x4af0",
                                      "input": "0xa3112a64a9c762fb6c7c2e2ec491549307107a0d757e74ffe602051fb815d9b0b1c21880",
                                      "output": "0x0000000000000000000000000000000000000000000000000000000000000020a9c762fb6c7c2e2ec491549307107a0d757e74ffe602051fb815d9b0b1c21880072d75e18b2be4f89a13a7147240477481c4b526d5795802acba59046b426e08000000000000000000000000000000000000000000000000000000006a633011000000000000000000000000000000000000000000000000000000006a8abd1100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d10e7e9e50b8db9e0d6af7ce9c9ca1459cce5e5500000000000000000000000063cce2b569a7bc35895ee24306c1512fefc061210000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000001",
                                      "to": "0xbec660b456b84a081e90af29be43385bda5bf7b6",
                                      "type": "DELEGATECALL",
                                      "value": "0x0"
                                    }
                                  ],
                                  "from": "0xd5077b67dcb56cac8b270c7788fc3e6ee03f17b9",
                                  "gas": "0x85d1",
                                  "gasUsed": "0x4d18",
                                  "input": "0xa3112a64a9c762fb6c7c2e2ec491549307107a0d757e74ffe602051fb815d9b0b1c21880",
                                  "output": "0x0000000000000000000000000000000000000000000000000000000000000020a9c762fb6c7c2e2ec491549307107a0d757e74ffe602051fb815d9b0b1c21880072d75e18b2be4f89a13a7147240477481c4b526d5795802acba59046b426e08000000000000000000000000000000000000000000000000000000006a633011000000000000000000000000000000000000000000000000000000006a8abd1100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d10e7e9e50b8db9e0d6af7ce9c9ca1459cce5e5500000000000000000000000063cce2b569a7bc35895ee24306c1512fefc061210000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000001",
                                  "to": "0x4200000000000000000000000000000000000021",
                                  "type": "STATICCALL"
                                }
                              ],
                              "from": "0xd5077b67dcb56cac8b270c7788fc3e6ee03f17b9",
                              "gas": "0xad00",
                              "gasUsed": "0x784c",
                              "input": "0xba03e205000000000000000000000000d10e7e9e50b8db9e0d6af7ce9c9ca1459cce5e55aa92f8c143657dde575de430aecaea6ca91f2e6072339b16932d426895d8d678",
                              "output": "0x0000000000000000000000000000000000000000000000000000000000000001",
                              "to": "0x33aee288907a684dbfc9dd4fb1603fe3e7bdabbd",
                              "type": "DELEGATECALL",
                              "value": "0x0"
                            }
                          ],
                          "from": "0xbcdb22f56642de57624cfc2fbb9ee398cf3ca268",
                          "gas": "0xb0c4",
                          "gasUsed": "0x7973",
                          "input": "0xba03e205000000000000000000000000d10e7e9e50b8db9e0d6af7ce9c9ca1459cce5e55aa92f8c143657dde575de430aecaea6ca91f2e6072339b16932d426895d8d678",
                          "output": "0x0000000000000000000000000000000000000000000000000000000000000001",
                          "to": "0xd5077b67dcb56cac8b270c7788fc3e6ee03f17b9",
                          "type": "STATICCALL"
                        }
                      ],
                      "from": "0xbcdb22f56642de57624cfc2fbb9ee398cf3ca268",
                      "gas": "0x1f44e",
                      "gasUsed": "0x1f2c6",
                      "input": "0xa9059cbb000000000000000000000000d10e7e9e50b8db9e0d6af7ce9c9ca1459cce5e55000000000000000000000000000000000000000000000001b4ec40578a2137a6",
                      "output": "0x0000000000000000000000000000000000000000000000000000000000000001",
                      "to": "0x69b821cccec6cf8014f9f4a490605add619cc519",
                      "type": "DELEGATECALL",
                      "value": "0x0"
                    }
                  ],
                  "from": "0x246dbf01c8ef9368b1e67f18ac774e672ba38734",
                  "gas": "0x2637c",
                  "gasUsed": "0x25a25",
                  "input": "0xa9059cbb000000000000000000000000d10e7e9e50b8db9e0d6af7ce9c9ca1459cce5e55000000000000000000000000000000000000000000000001b4ec40578a2137a6",
                  "output": "0x0000000000000000000000000000000000000000000000000000000000000001",
                  "to": "0xbcdb22f56642de57624cfc2fbb9ee398cf3ca268",
                  "type": "CALL",
                  "value": "0x0"
                },
                "txHash": "0xedf0d7872b848b677de5a236acf32b93949dbd0e34c74708444865426a105f42"
              },
              {
                "result": {
                  "calls": [
                    {
                      "calls": [
                        {
                          "from": "0x37fa75fdd2b96be2d454e9be2ef14741febbfe40",
                          "gas": "0x5e896",
                          "gasUsed": "0xbb8",
                          "input": "0xc0865b71ad96498401a5d5593d0e499f03a3138382f479fa2f4063bb85d6d95c000000000000000000000000000000000000000000000000000000000000001b4a06a50ab7ad40c412fa9bb1c52b0c507b25acc4c68262ca153f512f112c539755976ace2c9011abb7687110d89ff199c00d591cb90a5f2711eafb0c033f7b11",
                          "output": "0x00000000000000000000000037fa75fdd2b96be2d454e9be2ef14741febbfe40",
                          "to": "0x0000000000000000000000000000000000000001",
                          "type": "STATICCALL"
                        }
                      ],
                      "from": "0x0000000071727de22e5e9d8baf0edac6f37da032",
                      "gas": "0x61a80",
                      "gasUsed": "0x3a52",
                      "input": "0x19822f7c0000000000000000000000000000000000000000000000000000000000000060c88501aad76cd86a18e898ac30a527eb99e94778054607d20750f2710450835e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000037fa75fdd2b96be2d454e9be2ef14741febbfe40000037fa75fdd2b96be2d454e9be2ef14741febbfe40000000000000000198a80000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000061a800000000000000000000000000007a120000000000000000000000000000000000000000000000000000000000001d4c00000000000000000000000000098968000000000000000000000000005f5e10000000000000000000000000000000000000000000000000000000000000004a0000000000000000000000000000000000000000000000000000000000000056000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000324e9ae5c530100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000002c00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000120000000000000000000000000a1e42315252b3f4d2672e6d36b1cde446c7e1111000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b3000000000000000000000000d0b1eeaa88e3664f03afb853a322f7384bef4acf00000000000000000000000000000000000000000000000000000bdfb7fa65c800000000000000000000000000000000000000000000000000000000000000000000000000000000d0b1eeaa88e3664f03afb853a322f7384bef4acf0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c4f87f4038000000000000000000000000a1e42315252b3f4d2672e6d36b1cde446c7e1111000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000bdfb7fa65c8000000000000000000000000000000000000000000000000000000003d597c4000000000000000000000000037fa75fdd2b96be2d454e9be2ef14741febbfe40000000000000000000000000000000000000000000000000000000006a870eee000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000829b681a4a40c673fbf51ea696d219c960f99f606d000000000000000000000000000186a00000000000000000000000000000c3500000006a871aa60000000000004d052639bcb6addc309a90555148bcc131482fcb7ac74b0ecbdd6e79d50cea8254f688f96dadeebe9cf17ace687377f59d802688e8bb3ee0206dff2def0157df1b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000414a06a50ab7ad40c412fa9bb1c52b0c507b25acc4c68262ca153f512f112c539755976ace2c9011abb7687110d89ff199c00d591cb90a5f2711eafb0c033f7b111b00000000000000000000000000000000000000000000000000000000000000",
                      "output": "0x0000000000000000000000000000000000000000000000000000000000000000",
                      "to": "0x37fa75fdd2b96be2d454e9be2ef14741febbfe40",
                      "type": "CALL",
                      "value": "0x0"
                    },
                    {
                      "calls": [
                        {
                          "from": "0x9b681a4a40c673fbf51ea696d219c960f99f606d",
                          "gas": "0x1675d",
                          "gasUsed": "0xbb8",
                          "input": "0x461b504a1c8d1a401605eb08672f196fea400dc1c029c46213fbef16b98492b1000000000000000000000000000000000000000000000000000000000000001b4d052639bcb6addc309a90555148bcc131482fcb7ac74b0ecbdd6e79d50cea8254f688f96dadeebe9cf17ace687377f59d802688e8bb3ee0206dff2def0157df",
                          "output": "0x00000000000000000000000090ab68592322192709e9531eefb1a19016815871",
                          "to": "0x0000000000000000000000000000000000000001",
                          "type": "STATICCALL"
                        }
                      ],
                      "from": "0x0000000071727de22e5e9d8baf0edac6f37da032",
                      "gas": "0x186a0",
                      "gasUsed": "0x3d9b",
                      "input": "0x52b7512c0000000000000000000000000000000000000000000000000000000000000060c88501aad76cd86a18e898ac30a527eb99e94778054607d20750f2710450835e00000000000000000000000000000000000000000000000000006a692f70500000000000000000000000000037fa75fdd2b96be2d454e9be2ef14741febbfe40000037fa75fdd2b96be2d454e9be2ef14741febbfe40000000000000000198a80000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000061a800000000000000000000000000007a120000000000000000000000000000000000000000000000000000000000001d4c00000000000000000000000000098968000000000000000000000000005f5e10000000000000000000000000000000000000000000000000000000000000004a0000000000000000000000000000000000000000000000000000000000000056000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000324e9ae5c530100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000002c00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000120000000000000000000000000a1e42315252b3f4d2672e6d36b1cde446c7e1111000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b3000000000000000000000000d0b1eeaa88e3664f03afb853a322f7384bef4acf00000000000000000000000000000000000000000000000000000bdfb7fa65c800000000000000000000000000000000000000000000000000000000000000000000000000000000d0b1eeaa88e3664f03afb853a322f7384bef4acf0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c4f87f4038000000000000000000000000a1e42315252b3f4d2672e6d36b1cde446c7e1111000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000bdfb7fa65c8000000000000000000000000000000000000000000000000000000003d597c4000000000000000000000000037fa75fdd2b96be2d454e9be2ef14741febbfe40000000000000000000000000000000000000000000000000000000006a870eee000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000829b681a4a40c673fbf51ea696d219c960f99f606d000000000000000000000000000186a00000000000000000000000000000c3500000006a871aa60000000000004d052639bcb6addc309a90555148bcc131482fcb7ac74b0ecbdd6e79d50cea8254f688f96dadeebe9cf17ace687377f59d802688e8bb3ee0206dff2def0157df1b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000414a06a50ab7ad40c412fa9bb1c52b0c507b25acc4c68262ca153f512f112c539755976ace2c9011abb7687110d89ff199c00d591cb90a5f2711eafb0c033f7b111b00000000000000000000000000000000000000000000000000000000000000",
                      "output": "0x000000000000000000000000000000000000000000000000000000000000004000000000000000006a871aa600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
                      "to": "0x9b681a4a40c673fbf51ea696d219c960f99f606d",
                      "type": "CALL",
                      "value": "0x0"
                    },
                    {
                      "calls": [
                        {
                          "calls": [
                            {
                              "calls": [
                                {
                                  "from": "0xa1e42315252b3f4d2672e6d36b1cde446c7e1111",
                                  "gas": "0x7477e",
                                  "gasUsed": "0x5f29",
                                  "input": "0x095ea7b3000000000000000000000000d0b1eeaa88e3664f03afb853a322f7384bef4acf00000000000000000000000000000000000000000000000000000bdfb7fa65c8",
                                  "output": "0x0000000000000000000000000000000000000000000000000000000000000001",
                                  "to": "0x32d0d198b17079557d6ca4afa3a6afc052783666",
                                  "type": "DELEGATECALL",
                                  "value": "0x0"
                                }
                              ],
                              "from": "0x37fa75fdd2b96be2d454e9be2ef14741febbfe40",
                              "gas": "0x76f66",
                              "gasUsed": "0x699b",
                              "input": "0x095ea7b3000000000000000000000000d0b1eeaa88e3664f03afb853a322f7384bef4acf00000000000000000000000000000000000000000000000000000bdfb7fa65c8",
                              "output": "0x0000000000000000000000000000000000000000000000000000000000000001",
                              "to": "0xa1e42315252b3f4d2672e6d36b1cde446c7e1111",
                              "type": "CALL",
                              "value": "0x0"
                            },
                            {
                              "calls": [
                                {
                                  "calls": [
                                    {
                                      "from": "0x80fcd16764c0d9a7f3f084c1fc71e217cac0d415",
                                      "gas": "0x6a3fc",
                                      "gasUsed": "0xa54",
                                      "input": "0x61f029fb000000000000000000000000a1e42315252b3f4d2672e6d36b1cde446c7e1111",
                                      "output": "0x0000000000000000000000006d3de8d8c17949367eca9dc890cdcc9a139b2d3b",
                                      "to": "0x9fb2f26ba4701cf3af85c00e21a0ef3296597ebc",
                                      "type": "DELEGATECALL",
                                      "value": "0x0"
                                    }
                                  ],
                                  "from": "0xd0b1eeaa88e3664f03afb853a322f7384bef4acf",
                                  "gas": "0x6d1aa",
                                  "gasUsed": "0x1d28",
                                  "input": "0x61f029fb000000000000000000000000a1e42315252b3f4d2672e6d36b1cde446c7e1111",
                                  "output": "0x0000000000000000000000006d3de8d8c17949367eca9dc890cdcc9a139b2d3b",
                                  "to": "0x80fcd16764c0d9a7f3f084c1fc71e217cac0d415",
                                  "type": "STATICCALL"
                                },
                                {
                                  "calls": [
                                    {
                                      "from": "0x6d3de8d8c17949367eca9dc890cdcc9a139b2d3b",
                                      "gas": "0x68454",
                                      "gasUsed": "0xa44",
                                      "input": "0xe7c2b77280fcd16764c0d9a7f3f084c1fc71e217cac0d415a1e42315252b3f4d2672e6d36b1cde446c7e1111ce4afb3768e887a382fc4ef4073053701274eecc73746487d7a04cc2b3cfaf9c7e0bf2e434deecbb35915884a82899a31441a8ca2b969cb500668d9f61ac86c0ded74e2fe33a59a2cde098a6b6749abc000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000004043a6093000000000000000000000000000000000000000000000000000000010c388d000000000000000000000000000000000000000000000000000003cfe347d810000000000000000000000000000000000000000000000000000002d151fbc57800011a",
                                      "output": "0x0000000000000000000000000000000000000000000000000000000000000001",
                                      "to": "0x3e8074673a8be177cf015b13378acdf606d104dc",
                                      "type": "DELEGATECALL",
                                      "value": "0x0"
                                    }
                                  ],
                                  "from": "0xd0b1eeaa88e3664f03afb853a322f7384bef4acf",
                                  "gas": "0x6a96b",
                                  "gasUsed": "0x14fe",
                                  "input": "0xe7c2b772",
                                  "output": "0x0000000000000000000000000000000000000000000000000000000000000001",
                                  "to": "0x6d3de8d8c17949367eca9dc890cdcc9a139b2d3b",
                                  "type": "STATICCALL"
                                },
                                {
                                  "calls": [
                                    {
                                      "from": "0x6d3de8d8c17949367eca9dc890cdcc9a139b2d3b",
                                      "gas": "0x67743",
                                      "gasUsed": "0x143",
                                      "input": "0x2c678c6480fcd16764c0d9a7f3f084c1fc71e217cac0d415a1e42315252b3f4d2672e6d36b1cde446c7e1111ce4afb3768e887a382fc4ef4073053701274eecc73746487d7a04cc2b3cfaf9c7e0bf2e434deecbb35915884a82899a31441a8ca2b969cb500668d9f61ac86c0ded74e2fe33a59a2cde098a6b6749abc000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000004043a6093000000000000000000000000000000000000000000000000000000010c388d000000000000000000000000000000000000000000000000000003cfe347d810000000000000000000000000000000000000000000000000000002d151fbc57800011a",
                                      "output": "0x0000000000000000000000000000000000000000000000000000000000000001",
                                      "to": "0x3e8074673a8be177cf015b13378acdf606d104dc",
                                      "type": "DELEGATECALL",
                                      "value": "0x0"
                                    }
                                  ],
                                  "from": "0xd0b1eeaa88e3664f03afb853a322f7384bef4acf",
                                  "gas": "0x69261",
                                  "gasUsed": "0x239",
                                  "input": "0x2c678c64",
                                  "output": "0x0000000000000000000000000000000000000000000000000000000000000001",
                                  "to": "0x6d3de8d8c17949367eca9dc890cdcc9a139b2d3b",
                                  "type": "STATICCALL"
                                },
                                {
                                  "calls": [
                                    {
                                      "from": "0x6d3de8d8c17949367eca9dc890cdcc9a139b2d3b",
                                      "gas": "0x6735c",
                                      "gasUsed": "0x1e6",
                                      "input": "0xa8b0898280fcd16764c0d9a7f3f084c1fc71e217cac0d415a1e42315252b3f4d2672e6d36b1cde446c7e1111ce4afb3768e887a382fc4ef4073053701274eecc73746487d7a04cc2b3cfaf9c7e0bf2e434deecbb35915884a82899a31441a8ca2b969cb500668d9f61ac86c0ded74e2fe33a59a2cde098a6b6749abc000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000004043a6093000000000000000000000000000000000000000000000000000000010c388d000000000000000000000000000000000000000000000000000003cfe347d810000000000000000000000000000000000000000000000000000002d151fbc57800011a",
                                      "output": "0x000000000000000000000000d9ed64c4551f58dfcb491346d7a303fafaf8ecaf",
                                      "to": "0x3e8074673a8be177cf015b13378acdf606d104dc",
                                      "type": "DELEGATECALL",
                                      "value": "0x0"
                                    }
                                  ],
                                  "from": "0xd0b1eeaa88e3664f03afb853a322f7384bef4acf",
                                  "gas": "0x68e6a",
                                  "gasUsed": "0x2dc",
                                  "input": "0xa8b08982",
                                  "output": "0x000000000000000000000000d9ed64c4551f58dfcb491346d7a303fafaf8ecaf",
                                  "to": "0x6d3de8d8c17949367eca9dc890cdcc9a139b2d3b",
                                  "type": "STATICCALL"
                                },
                                {
                                  "calls": [
                                    {
                                      "from": "0xd9ed64c4551f58dfcb491346d7a303fafaf8ecaf",
                                      "gas": "0x65ab5",
                                      "gasUsed": "0x965",
                                      "input": "0x0902f1aca1e42315252b3f4d2672e6d36b1cde446c7e1111ce4afb3768e887a382fc4ef4073053701274eeccce4afb3768e887a382fc4ef4073053701274eecca1e42315252b3f4d2672e6d36b1cde446c7e1111010000000000010059",
                                      "output": "0x0000000000000000000000000000000000000000000000000000b3b9a133a7be000000000000000000000000000000000000000000000000000000042013ee67000000000000000000000000000000000000000000000000000000006a870bbf",
                                      "to": "0xee7810c0ceebede01bcf586ee8bab69b8b8d52a5",
                                      "type": "DELEGATECALL",
                                      "value": "0x0"
                                    }
                                  ],
                                  "from": "0xd0b1eeaa88e3664f03afb853a322f7384bef4acf",
                                  "gas": "0x67eff",
                                  "gasUsed": "0x1401",
                                  "input": "0x0902f1ac",
                                  "output": "0x0000000000000000000000000000000000000000000000000000b3b9a133a7be000000000000000000000000000000000000000000000000000000042013ee67000000000000000000000000000000000000000000000000000000006a870bbf",
                                  "to": "0xd9ed64c4551f58dfcb491346d7a303fafaf8ecaf",
                                  "type": "STATICCALL"
                                },
                                {
                                  "calls": [
                                    {
                                      "from": "0xd9ed64c4551f58dfcb491346d7a303fafaf8ecaf",
                                      "gas": "0x64e28",
                                      "gasUsed": "0x2e3",
                                      "input": "0xb1dd61b6a1e42315252b3f4d2672e6d36b1cde446c7e1111ce4afb3768e887a382fc4ef4073053701274eeccce4afb3768e887a382fc4ef4073053701274eecca1e42315252b3f4d2672e6d36b1cde446c7e1111010000000000010059",
                                      "output": "0x0000000000000000000000000000000000000000000000000000000000000001",
                                      "to": "0xee7810c0ceebede01bcf586ee8bab69b8b8d52a5",
                                      "type": "DELEGATECALL",
                                      "value": "0x0"
                                    }
                                  ],
                                  "from": "0xd0b1eeaa88e3664f03afb853a322f7384bef4acf",
                                  "gas": "0x6687b",
                                  "gasUsed": "0x3b5",
                                  "input": "0xb1dd61b6",
                                  "output": "0x0000000000000000000000000000000000000000000000000000000000000001",
                                  "to": "0xd9ed64c4551f58dfcb491346d7a303fafaf8ecaf",
                                  "type": "STATICCALL"
                                },
                                {
                                  "calls": [
                                    {
                                      "from": "0xd9ed64c4551f58dfcb491346d7a303fafaf8ecaf",
                                      "gas": "0x648dc",
                                      "gasUsed": "0x144",
                                      "input": "0x217a4b70a1e42315252b3f4d2672e6d36b1cde446c7e1111ce4afb3768e887a382fc4ef4073053701274eeccce4afb3768e887a382fc4ef4073053701274eecca1e42315252b3f4d2672e6d36b1cde446c7e1111010000000000010059",
                                      "output": "0x000000000000000000000000ce4afb3768e887a382fc4ef4073053701274eecc",
                                      "to": "0xee7810c0ceebede01bcf586ee8bab69b8b8d52a5",
                                      "type": "DELEGATECALL",
                                      "value": "0x0"
                                    }
                                  ],
                                  "from": "0xd0b1eeaa88e3664f03afb853a322f7384bef4acf",
                                  "gas": "0x66319",
                                  "gasUsed": "0x216",
                                  "input": "0x217a4b70",
                                  "output": "0x000000000000000000000000ce4afb3768e887a382fc4ef4073053701274eecc",
                                  "to": "0xd9ed64c4551f58dfcb491346d7a303fafaf8ecaf",
                                  "type": "STATICCALL"
                                },
                                {
                                  "calls": [
                                    {
                                      "from": "0xa1e42315252b3f4d2672e6d36b1cde446c7e1111",
                                      "gas": "0x643fd",
                                      "gasUsed": "0x913",
                                      "input": "0x18160ddd",
                                      "output": "0x00000000000000000000000000000000000000000000000000038d7ea4c68000",
                                      "to": "0x32d0d198b17079557d6ca4afa3a6afc052783666",
                                      "type": "DELEGATECALL",
                                      "value": "0x0"
                                    }
                                  ],
                                  "from": "0xd0b1eeaa88e3664f03afb853a322f7384bef4acf",
                                  "gas": "0x65df6",
                                  "gasUsed": "0x9b5",
                                  "input": "0x18160ddd",
                                  "output": "0x00000000000000000000000000000000000000000000000000038d7ea4c68000",
                                  "to": "0xa1e42315252b3f4d2672e6d36b1cde446c7e1111",
                                  "type": "STATICCALL"
                                },
                                {
                                  "calls": [
                                    {
                                      "from": "0xa1e42315252b3f4d2672e6d36b1cde446c7e1111",
                                      "gas": "0x633cd",
                                      "gasUsed": "0x3b6d",
                                      "input": "0x23b872dd00000000000000000000000037fa75fdd2b96be2d454e9be2ef14741febbfe40000000000000000000000000d9ed64c4551f58dfcb491346d7a303fafaf8ecaf00000000000000000000000000000000000000000000000000000bdfb7fa65c8",
                                      "output": "0x0000000000000000000000000000000000000000000000000000000000000001",
                                      "to": "0x32d0d198b17079557d6ca4afa3a6afc052783666",
                                      "type": "DELEGATECALL",
                                      "value": "0x0"
                                    }
                                  ],
                                  "from": "0xd0b1eeaa88e3664f03afb853a322f7384bef4acf",
                                  "gas": "0x64d97",
                                  "gasUsed": "0x3c21",
                                  "input": "0x23b872dd00000000000000000000000037fa75fdd2b96be2d454e9be2ef14741febbfe40000000000000000000000000d9ed64c4551f58dfcb491346d7a303fafaf8ecaf00000000000000000000000000000000000000000000000000000bdfb7fa65c8",
                                  "output": "0x0000000000000000000000000000000000000000000000000000000000000001",
                                  "to": "0xa1e42315252b3f4d2672e6d36b1cde446c7e1111",
                                  "type": "CALL",
                                  "value": "0x0"
                                },
                                {
                                  "calls": [
                                    {
                                      "calls": [
                                        {
                                          "from": "0xd9ed64c4551f58dfcb491346d7a303fafaf8ecaf",
                                          "gas": "0x5cf16",
                                          "gasUsed": "0x3134",
                                          "input": "0xa9059cbb00000000000000000000000037fa75fdd2b96be2d454e9be2ef14741febbfe400000000000000000000000000000000000000000000000000000000040941701",
                                          "output": "0x0000000000000000000000000000000000000000000000000000000000000001",
                                          "to": "0xce4afb3768e887a382fc4ef4073053701274eecc",
                                          "type": "CALL",
                                          "value": "0x0"
                                        },
                                        {
                                          "calls": [
                                            {
                                              "from": "0xa1e42315252b3f4d2672e6d36b1cde446c7e1111",
                                              "gas": "0x5855d",
                                              "gasUsed": "0x226",
                                              "input": "0x70a08231000000000000000000000000d9ed64c4551f58dfcb491346d7a303fafaf8ecaf",
                                              "output": "0x0000000000000000000000000000000000000000000000000000bf99592e0d86",
                                              "to": "0x32d0d198b17079557d6ca4afa3a6afc052783666",
                                              "type": "DELEGATECALL",
                                              "value": "0x0"
                                            }
                                          ],
                                          "from": "0xd9ed64c4551f58dfcb491346d7a303fafaf8ecaf",
                                          "gas": "0x59c56",
                                          "gasUsed": "0x2ce",
                                          "input": "0x70a08231000000000000000000000000d9ed64c4551f58dfcb491346d7a303fafaf8ecaf",
                                          "output": "0x0000000000000000000000000000000000000000000000000000bf99592e0d86",
                                          "to": "0xa1e42315252b3f4d2672e6d36b1cde446c7e1111",
                                          "type": "STATICCALL"
                                        },
                                        {
                                          "from": "0xd9ed64c4551f58dfcb491346d7a303fafaf8ecaf",
                                          "gas": "0x59808",
                                          "gasUsed": "0x22f",
                                          "input": "0x70a08231000000000000000000000000d9ed64c4551f58dfcb491346d7a303fafaf8ecaf",
                                          "output": "0x00000000000000000000000000000000000000000000000000000003df7fd766",
                                          "to": "0xce4afb3768e887a382fc4ef4073053701274eecc",
                                          "type": "STATICCALL"
                                        },
                                        {
                                          "calls": [
                                            {
                                              "from": "0xa1e42315252b3f4d2672e6d36b1cde446c7e1111",
                                              "gas": "0x57acd",
                                              "gasUsed": "0x143",
                                              "input": "0x18160ddd",
                                              "output": "0x00000000000000000000000000000000000000000000000000038d7ea4c68000",
                                              "to": "0x32d0d198b17079557d6ca4afa3a6afc052783666",
                                              "type": "DELEGATECALL",
                                              "value": "0x0"
                                            }
                                          ],
                                          "from": "0xd9ed64c4551f58dfcb491346d7a303fafaf8ecaf",
                                          "gas": "0x59195",
                                          "gasUsed": "0x1e5",
                                          "input": "0x18160ddd",
                                          "output": "0x00000000000000000000000000000000000000000000000000038d7ea4c68000",
                                          "to": "0xa1e42315252b3f4d2672e6d36b1cde446c7e1111",
                                          "type": "STATICCALL"
                                        },
                                        {
                                          "calls": [
                                            {
                                              "from": "0x61ac86c0ded74e2fe33a59a2cde098a6b6749abc",
                                              "gas": "0x55790",
                                              "gasUsed": "0x974",
                                              "input": "0x08ea18ca000000000000000000000000a1e42315252b3f4d2672e6d36b1cde446c7e1111",
                                              "output": "0x0000000000000000000000000000000000000000000000000000000000000001",
                                              "to": "0x83b0744b320fd964213240d21d1a1edce2edc8d5",
                                              "type": "DELEGATECALL",
                                              "value": "0x0"
                                            }
                                          ],
                                          "from": "0xd9ed64c4551f58dfcb491346d7a303fafaf8ecaf",
                                          "gas": "0x57ff8",
                                          "gasUsed": "0x1c48",
                                          "input": "0x08ea18ca000000000000000000000000a1e42315252b3f4d2672e6d36b1cde446c7e1111",
                                          "output": "0x0000000000000000000000000000000000000000000000000000000000000001",
                                          "to": "0x61ac86c0ded74e2fe33a59a2cde098a6b6749abc",
                                          "type": "STATICCALL"
                                        },
                                        {
                                          "from": "0xd9ed64c4551f58dfcb491346d7a303fafaf8ecaf",
                                          "gas": "0x52315",
                                          "gasUsed": "0x9ff",
                                          "input": "0x70a0823100000000000000000000000061ac86c0ded74e2fe33a59a2cde098a6b6749abc",
                                          "output": "0x00000000000000000000000000000000000000000000000000000b0eb2248bc1",
                                          "to": "0xce4afb3768e887a382fc4ef4073053701274eecc",
                                          "type": "STATICCALL"
                                        },
                                        {
                                          "from": "0xd9ed64c4551f58dfcb491346d7a303fafaf8ecaf",
                                          "gas": "0x516f4",
                                          "gasUsed": "0x16a4",
                                          "input": "0xa9059cbb00000000000000000000000061ac86c0ded74e2fe33a59a2cde098a6b6749abc0000000000000000000000000000000000000000000000000000000000af6dd0",
                                          "output": "0x0000000000000000000000000000000000000000000000000000000000000001",
                                          "to": "0xce4afb3768e887a382fc4ef4073053701274eecc",
                                          "type": "CALL",
                                          "value": "0x0"
                                        },
                                        {
                                          "from": "0xd9ed64c4551f58dfcb491346d7a303fafaf8ecaf",
                                          "gas": "0x4fe54",
                                          "gasUsed": "0x22f",
                                          "input": "0x70a0823100000000000000000000000061ac86c0ded74e2fe33a59a2cde098a6b6749abc",
                                          "output": "0x00000000000000000000000000000000000000000000000000000b0eb2d3f991",
                                          "to": "0xce4afb3768e887a382fc4ef4073053701274eecc",
                                          "type": "STATICCALL"
                                        },
                                        {
                                          "calls": [
                                            {
                                              "from": "0x61ac86c0ded74e2fe33a59a2cde098a6b6749abc",
                                              "gas": "0x4e406",
                                              "gasUsed": "0x3f58",
                                              "input": "0x21493638000000000000000000000000ce4afb3768e887a382fc4ef4073053701274eecc000000000000000000000000a1e42315252b3f4d2672e6d36b1cde446c7e111100000000000000000000000000000000000000000000000000000000007d4e6f0000000000000000000000000000000000000000000000000000000000321f61",
                                              "to": "0x83b0744b320fd964213240d21d1a1edce2edc8d5",
                                              "type": "DELEGATECALL",
                                              "value": "0x0"
                                            }
                                          ],
                                          "from": "0xd9ed64c4551f58dfcb491346d7a303fafaf8ecaf",
                                          "gas": "0x4f913",
                                          "gasUsed": "0x40a4",
                                          "input": "0x21493638000000000000000000000000ce4afb3768e887a382fc4ef4073053701274eecc000000000000000000000000a1e42315252b3f4d2672e6d36b1cde446c7e111100000000000000000000000000000000000000000000000000000000007d4e6f0000000000000000000000000000000000000000000000000000000000321f61",
                                          "to": "0x61ac86c0ded74e2fe33a59a2cde098a6b6749abc",
                                          "type": "CALL",
                                          "value": "0x0"
                                        }
                                      ],
                                      "from": "0xd9ed64c4551f58dfcb491346d7a303fafaf8ecaf",
                                      "gas": "0x5f659",
                                      "gasUsed": "0x13985",
                                      "input": "0x022c0d9f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004094170100000000000000000000000037fa75fdd2b96be2d454e9be2ef14741febbfe4000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000a1e42315252b3f4d2672e6d36b1cde446c7e1111ce4afb3768e887a382fc4ef4073053701274eeccce4afb3768e887a382fc4ef4073053701274eecca1e42315252b3f4d2672e6d36b1cde446c7e1111010000000000010059",
                                      "to": "0xee7810c0ceebede01bcf586ee8bab69b8b8d52a5",
                                      "type": "DELEGATECALL",
                                      "value": "0x0"
                                    }
                                  ],
                                  "from": "0xd0b1eeaa88e3664f03afb853a322f7384bef4acf",
                                  "gas": "0x60f65",
                                  "gasUsed": "0x13a72",
                                  "input": "0x022c0d9f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004094170100000000000000000000000037fa75fdd2b96be2d454e9be2ef14741febbfe4000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000",
                                  "to": "0xd9ed64c4551f58dfcb491346d7a303fafaf8ecaf",
                                  "type": "CALL",
                                  "value": "0x0"
                                }
                              ],
                              "from": "0x37fa75fdd2b96be2d454e9be2ef14741febbfe40",
                              "gas": "0x6fbab",
                              "gasUsed": "0x20eb7",
                              "input": "0xf87f4038000000000000000000000000a1e42315252b3f4d2672e6d36b1cde446c7e1111000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000bdfb7fa65c8000000000000000000000000000000000000000000000000000000003d597c4000000000000000000000000037fa75fdd2b96be2d454e9be2ef14741febbfe40000000000000000000000000000000000000000000000000000000006a870eee",
                              "output": "0x0000000000000000000000000000000000000000000000000000000040941701",
                              "to": "0xd0b1eeaa88e3664f03afb853a322f7384bef4acf",
                              "type": "CALL",
                              "value": "0x0"
                            }
                          ],
                          "from": "0x0000000071727de22e5e9d8baf0edac6f37da032",
                          "gas": "0x7a120",
                          "gasUsed": "0x29902",
                          "input": "0xe9ae5c530100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000002c00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000120000000000000000000000000a1e42315252b3f4d2672e6d36b1cde446c7e1111000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b3000000000000000000000000d0b1eeaa88e3664f03afb853a322f7384bef4acf00000000000000000000000000000000000000000000000000000bdfb7fa65c800000000000000000000000000000000000000000000000000000000000000000000000000000000d0b1eeaa88e3664f03afb853a322f7384bef4acf0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c4f87f4038000000000000000000000000a1e42315252b3f4d2672e6d36b1cde446c7e1111000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000bdfb7fa65c8000000000000000000000000000000000000000000000000000000003d597c4000000000000000000000000037fa75fdd2b96be2d454e9be2ef14741febbfe40000000000000000000000000000000000000000000000000000000006a870eee00000000000000000000000000000000000000000000000000000000",
                          "to": "0x37fa75fdd2b96be2d454e9be2ef14741febbfe40",
                          "type": "CALL",
                          "value": "0x0"
                        }
                      ],
                      "from": "0x0000000071727de22e5e9d8baf0edac6f37da032",
                      "gas": "0x49a1ba",
                      "gasUsed": "0x2b0b5",
                      "input": "0x0042dc53000000000000000000000000000000000000000000000000000000000000020000000000000000000000000037fa75fdd2b96be2d454e9be2ef14741febbfe40000037fa75fdd2b96be2d454e9be2ef14741febbfe40000000000000000198a80000000000000000000000000000000000000000000000000000000000061a80000000000000000000000000000000000000000000000000000000000007a12000000000000000000000000000000000000000000000000000000000000186a0000000000000000000000000000000000000000000000000000000000000c350000000000000000000000000000000000000000000000000000000000001d4c00000000000000000000000009b681a4a40c673fbf51ea696d219c960f99f606d0000000000000000000000000000000000000000000000000000000005f5e1000000000000000000000000000000000000000000000000000000000000989680c88501aad76cd86a18e898ac30a527eb99e94778054607d20750f2710450835e00000000000000000000000000000000000000000000000000006a692f70500000000000000000000000000000000000000000000000000000000000000004c0000000000000000000000000000000000000000000000000000000000002aec400000000000000000000000000000000000000000000000000000000000005600000000000000000000000000000000000000000000000000000000000000324e9ae5c530100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000002c00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000120000000000000000000000000a1e42315252b3f4d2672e6d36b1cde446c7e1111000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b3000000000000000000000000d0b1eeaa88e3664f03afb853a322f7384bef4acf00000000000000000000000000000000000000000000000000000bdfb7fa65c800000000000000000000000000000000000000000000000000000000000000000000000000000000d0b1eeaa88e3664f03afb853a322f7384bef4acf0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c4f87f4038000000000000000000000000a1e42315252b3f4d2672e6d36b1cde446c7e1111000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000bdfb7fa65c8000000000000000000000000000000000000000000000000000000003d597c4000000000000000000000000037fa75fdd2b96be2d454e9be2ef14741febbfe40000000000000000000000000000000000000000000000000000000006a870eee00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
                      "output": "0x0000000000000000000000000000000000000000000000000000037f892f4e1d",
                      "to": "0x0000000071727de22e5e9d8baf0edac6f37da032",
                      "type": "CALL",
                      "value": "0x0"
                    },
                    {
                      "from": "0x0000000071727de22e5e9d8baf0edac6f37da032",
                      "gas": "0x46e120",
                      "gasUsed": "0x0",
                      "input": "0x",
                      "to": "0x6d3109ff4359a39a5602a8080158e2508cf27fec",
                      "type": "CALL",
                      "value": "0x37f892f4e1d"
                    }
                  ],
                  "from": "0x6d3109ff4359a39a5602a8080158e2508cf27fec",
                  "gas": "0x4c4b40",
                  "gasUsed": "0x3f24a",
                  "input": "0x765e827f00000000000000000000000000000000000000000000000000000000000000400000000000000000000000006d3109ff4359a39a5602a8080158e2508cf27fec0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000037fa75fdd2b96be2d454e9be2ef14741febbfe40000037fa75fdd2b96be2d454e9be2ef14741febbfe40000000000000000198a80000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000061a800000000000000000000000000007a120000000000000000000000000000000000000000000000000000000000001d4c00000000000000000000000000098968000000000000000000000000005f5e10000000000000000000000000000000000000000000000000000000000000004a0000000000000000000000000000000000000000000000000000000000000056000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000324e9ae5c530100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000002c00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000120000000000000000000000000a1e42315252b3f4d2672e6d36b1cde446c7e1111000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b3000000000000000000000000d0b1eeaa88e3664f03afb853a322f7384bef4acf00000000000000000000000000000000000000000000000000000bdfb7fa65c800000000000000000000000000000000000000000000000000000000000000000000000000000000d0b1eeaa88e3664f03afb853a322f7384bef4acf0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c4f87f4038000000000000000000000000a1e42315252b3f4d2672e6d36b1cde446c7e1111000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000bdfb7fa65c8000000000000000000000000000000000000000000000000000000003d597c4000000000000000000000000037fa75fdd2b96be2d454e9be2ef14741febbfe40000000000000000000000000000000000000000000000000000000006a870eee000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000829b681a4a40c673fbf51ea696d219c960f99f606d000000000000000000000000000186a00000000000000000000000000000c3500000006a871aa60000000000004d052639bcb6addc309a90555148bcc131482fcb7ac74b0ecbdd6e79d50cea8254f688f96dadeebe9cf17ace687377f59d802688e8bb3ee0206dff2def0157df1b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000414a06a50ab7ad40c412fa9bb1c52b0c507b25acc4c68262ca153f512f112c539755976ace2c9011abb7687110d89ff199c00d591cb90a5f2711eafb0c033f7b111b00000000000000000000000000000000000000000000000000000000000000",
                  "to": "0x0000000071727de22e5e9d8baf0edac6f37da032",
                  "type": "CALL",
                  "value": "0x0"
                },
                "txHash": "0x222e9f693acdb3c0720861e6b733c016c9593278c2398ef8939cdf704c0fe698"
              },
              {
                "result": {
                  "from": "0x5ad176ebb13cabe62ee7c07f52a67b4a48cbef83",
                  "gas": "0x61a80",
                  "gasUsed": "0x98d2",
                  "input": "0xda1750b00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000001081a72369e24e90816ecee661dd8081694eeb83e5e08130fd4a451d2",
                  "to": "0xbbe55e29bbc6d71ecab1ac011c9ac5206ab2fe74",
                  "type": "CALL",
                  "value": "0x0"
                },
                "txHash": "0x7b989d112e6d04b48e474bd1f9e56c66361a7be6213826c976da49488f75a36b"
              },
              {
                "result": {
                  "from": "0x5ad176ebb13cabe62ee7c07f52a67b4a48cbef83",
                  "gas": "0x61a80",
                  "gasUsed": "0x98d2",
                  "input": "0xda1750b000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000001000000030248b1b324984c02482b1b593c840248116a04230e02478ad86c5bc9",
                  "to": "0xbbe55e29bbc6d71ecab1ac011c9ac5206ab2fe74",
                  "type": "CALL",
                  "value": "0x0"
                },
                "txHash": "0x2e505b2ef692eb3ff54cb96396ad5056aeb44da8cac48a6ad5e2c60a2c41923b"
              },
              {
                "result": {
                  "from": "0x5ad176ebb13cabe62ee7c07f52a67b4a48cbef83",
                  "gas": "0x61a80",
                  "gasUsed": "0x98c6",
                  "input": "0xda1750b000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000001000000040462160fa8d50204608477bbcf6e0460008dcf4f56045e6f252a2a63",
                  "to": "0xbbe55e29bbc6d71ecab1ac011c9ac5206ab2fe74",
                  "type": "CALL",
                  "value": "0x0"
                },
                "txHash": "0xba959b3cd7ec1fc7c3da0444b747e5157cc8f0a9062f232570ae23e4f8472939"
              },
              {
                "result": {
                  "from": "0x5ad176ebb13cabe62ee7c07f52a67b4a48cbef83",
                  "gas": "0x61a80",
                  "gasUsed": "0x98d2",
                  "input": "0xda1750b00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000005031348959b159e0311de749042890311b2ec9549e0031048dfef09aa",
                  "to": "0xbbe55e29bbc6d71ecab1ac011c9ac5206ab2fe74",
                  "type": "CALL",
                  "value": "0x0"
                },
                "txHash": "0xce8bf719786037e3b0d41ded453dc6f3fce7bfca20e488c5c6dc273db636050f"
              },
              {
                "result": {
                  "from": "0x5ad176ebb13cabe62ee7c07f52a67b4a48cbef83",
                  "gas": "0x61a80",
                  "gasUsed": "0x8de2",
                  "input": "0xda1750b000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000001000000070c2ab37fea61e40c28d55896abd80c23c676cf80870c21e921d7df54",
                  "to": "0xbbe55e29bbc6d71ecab1ac011c9ac5206ab2fe74",
                  "type": "CALL",
                  "value": "0x0"
                },
                "txHash": "0xff6ad61e61dc1b75ebd88eb5d2851f21bda974a100c04ac5a65b17b4fbc09da8"
              },
              {
                "result": {
                  "from": "0x5ad176ebb13cabe62ee7c07f52a67b4a48cbef83",
                  "gas": "0x61a80",
                  "gasUsed": "0x8de2",
                  "input": "0xda1750b0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000010000000805c624ae061edf05bfd00cc628ad05bde8ba2c233c05b7971be27b2f",
                  "to": "0xbbe55e29bbc6d71ecab1ac011c9ac5206ab2fe74",
                  "type": "CALL",
                  "value": "0x0"
                },
                "txHash": "0x724fc1c0d2f5113099af22af072b7d5b36de6d04daabad38f459df24d3f7f229"
              },
              {
                "result": {
                  "from": "0x5ad176ebb13cabe62ee7c07f52a67b4a48cbef83",
                  "gas": "0x61a80",
                  "gasUsed": "0x98d2",
                  "input": "0xda1750b0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000010000000904b9f0d6888b8404b9371898f5df04b6f4b07f40b004b63b4eb7fbd6",
                  "to": "0xbbe55e29bbc6d71ecab1ac011c9ac5206ab2fe74",
                  "type": "CALL",
                  "value": "0x0"
                },
                "txHash": "0x9147549044234bf81eabda0f995d4bc09e560138b0bab5351a60dcf162f8e18c"
              },
              {
                "result": {
                  "calls": [
                    {
                      "calls": [
                        {
                          "calls": [
                            {
                              "calls": [
                                {
                                  "calls": [
                                    {
                                      "from": "0x78cbb3413fbb6af05ef1d21e646440e56bae3ad6",
                                      "gas": "0x25c1f",
                                      "gasUsed": "0x9bd",
                                      "input": "0x54d4f9db568eb581cdf80b03d3bdfa414f3203bfdcc4bba4e66355612bd0e879da812f06",
                                      "output": "0x072d75e18b2be4f89a13a7147240477481c4b526d5795802acba59046b426e08",
                                      "to": "0xdd3321c53ef2f9671d358ecb102179699745e5e7",
                                      "type": "DELEGATECALL",
                                      "value": "0x0"
                                    }
                                  ],
                                  "from": "0xd5077b67dcb56cac8b270c7788fc3e6ee03f17b9",
                                  "gas": "0x2784c",
                                  "gasUsed": "0x1c75",
                                  "input": "0x54d4f9db568eb581cdf80b03d3bdfa414f3203bfdcc4bba4e66355612bd0e879da812f06",
                                  "output": "0x072d75e18b2be4f89a13a7147240477481c4b526d5795802acba59046b426e08",
                                  "to": "0x78cbb3413fbb6af05ef1d21e646440e56bae3ad6",
                                  "type": "STATICCALL"
                                },
                                {
                                  "calls": [
                                    {
                                      "from": "0xda282e89244424e297ce8e78089b54d043fb28b6",
                                      "gas": "0x22dac",
                                      "gasUsed": "0x929",
                                      "input": "0x10d736d5d99b42e778498aa3c9c1f6a012359130252780511687a35982e8e52735453034",
                                      "output": "0x00000000000000000000000009b170ca2a006081042992bce7379b85a02149c6",
                                      "to": "0x0f463e41d8eaed5bdb0b97d85f33be1314193109",
                                      "type": "DELEGATECALL",
                                      "value": "0x0"
                                    }
                                  ],
                                  "from": "0xd5077b67dcb56cac8b270c7788fc3e6ee03f17b9",
                                  "gas": "0x2491d",
                                  "gasUsed": "0x1be1",
                                  "input": "0x10d736d5d99b42e778498aa3c9c1f6a012359130252780511687a35982e8e52735453034",
                                  "output": "0x00000000000000000000000009b170ca2a006081042992bce7379b85a02149c6",
                                  "to": "0xda282e89244424e297ce8e78089b54d043fb28b6",
                                  "type": "STATICCALL"
                                },
                                {
                                  "calls": [
                                    {
                                      "from": "0x9c9bf29880448ab39795a11b669e22a0f1d790ec",
                                      "gas": "0x1ff46",
                                      "gasUsed": "0xc31",
                                      "input": "0xf20f03bc072d75e18b2be4f89a13a7147240477481c4b526d5795802acba59046b426e0800000000000000000000000009b170ca2a006081042992bce7379b85a02149c6000000000000000000000000da2b06c20cfda8af97fdff6a753153a5c20ca81d",
                                      "output": "0x0000000000000000000000000000000000000000000000000000000000000000",
                                      "to": "0x2152ad964a361f03437b5eb11c782d6f957c407f",
                                      "type": "DELEGATECALL",
                                      "value": "0x0"
                                    }
                                  ],
                                  "from": "0xd5077b67dcb56cac8b270c7788fc3e6ee03f17b9",
                                  "gas": "0x21a03",
                                  "gasUsed": "0x1ef2",
                                  "input": "0xf20f03bc072d75e18b2be4f89a13a7147240477481c4b526d5795802acba59046b426e0800000000000000000000000009b170ca2a006081042992bce7379b85a02149c6000000000000000000000000da2b06c20cfda8af97fdff6a753153a5c20ca81d",
                                  "output": "0x0000000000000000000000000000000000000000000000000000000000000000",
                                  "to": "0x9c9bf29880448ab39795a11b669e22a0f1d790ec",
                                  "type": "STATICCALL"
                                },
                                {
                                  "calls": [
                                    {
                                      "from": "0x4200000000000000000000000000000000000021",
                                      "gas": "0x1d5c2",
                                      "gasUsed": "0x41ee",
                                      "input": "0xa3112a640000000000000000000000000000000000000000000000000000000000000000",
                                      "output": "0x000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000000",
                                      "to": "0xbec660b456b84a081e90af29be43385bda5bf7b6",
                                      "type": "DELEGATECALL",
                                      "value": "0x0"
                                    }
                                  ],
                                  "from": "0xd5077b67dcb56cac8b270c7788fc3e6ee03f17b9",
                                  "gas": "0x1f08a",
                                  "gasUsed": "0x55a4",
                                  "input": "0xa3112a640000000000000000000000000000000000000000000000000000000000000000",
                                  "output": "0x000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000000",
                                  "to": "0x4200000000000000000000000000000000000021",
                                  "type": "STATICCALL"
                                }
                              ],
                              "from": "0xd5077b67dcb56cac8b270c7788fc3e6ee03f17b9",
                              "gas": "0x29887",
                              "gasUsed": "0xfb41",
                              "input": "0xba03e205000000000000000000000000da2b06c20cfda8af97fdff6a753153a5c20ca81dd99b42e778498aa3c9c1f6a012359130252780511687a35982e8e52735453034",
                              "output": "0x0000000000000000000000000000000000000000000000000000000000000000",
                              "to": "0x33aee288907a684dbfc9dd4fb1603fe3e7bdabbd",
                              "type": "DELEGATECALL",
                              "value": "0x0"
                            }
                          ],
                          "from": "0xbcdb22f56642de57624cfc2fbb9ee398cf3ca268",
                          "gas": "0x2b5ad",
                          "gasUsed": "0x10dfc",
                          "input": "0xba03e205000000000000000000000000da2b06c20cfda8af97fdff6a753153a5c20ca81dd99b42e778498aa3c9c1f6a012359130252780511687a35982e8e52735453034",
                          "output": "0x0000000000000000000000000000000000000000000000000000000000000000",
                          "to": "0xd5077b67dcb56cac8b270c7788fc3e6ee03f17b9",
                          "type": "STATICCALL"
                        },
                        {
                          "calls": [
                            {
                              "calls": [
                                {
                                  "calls": [
                                    {
                                      "from": "0x78cbb3413fbb6af05ef1d21e646440e56bae3ad6",
                                      "gas": "0x18775",
                                      "gasUsed": "0x1ed",
                                      "input": "0x54d4f9db568eb581cdf80b03d3bdfa414f3203bfdcc4bba4e66355612bd0e879da812f06",
                                      "output": "0x072d75e18b2be4f89a13a7147240477481c4b526d5795802acba59046b426e08",
                                      "to": "0xdd3321c53ef2f9671d358ecb102179699745e5e7",
                                      "type": "DELEGATECALL",
                                      "value": "0x0"
                                    }
                                  ],
                                  "from": "0xd5077b67dcb56cac8b270c7788fc3e6ee03f17b9",
                                  "gas": "0x18eae",
                                  "gasUsed": "0x311",
                                  "input": "0x54d4f9db568eb581cdf80b03d3bdfa414f3203bfdcc4bba4e66355612bd0e879da812f06",
                                  "output": "0x072d75e18b2be4f89a13a7147240477481c4b526d5795802acba59046b426e08",
                                  "to": "0x78cbb3413fbb6af05ef1d21e646440e56bae3ad6",
                                  "type": "STATICCALL"
                                },
                                {
                                  "calls": [
                                    {
                                      "from": "0xda282e89244424e297ce8e78089b54d043fb28b6",
                                      "gas": "0x182a5",
                                      "gasUsed": "0x929",
                                      "input": "0x10d736d5aa92f8c143657dde575de430aecaea6ca91f2e6072339b16932d426895d8d678",
                                      "output": "0x00000000000000000000000063cce2b569a7bc35895ee24306c1512fefc06121",
                                      "to": "0x0f463e41d8eaed5bdb0b97d85f33be1314193109",
                                      "type": "DELEGATECALL",
                                      "value": "0x0"
                                    }
                                  ],
                                  "from": "0xd5077b67dcb56cac8b270c7788fc3e6ee03f17b9",
                                  "gas": "0x189cb",
                                  "gasUsed": "0xa4d",
                                  "input": "0x10d736d5aa92f8c143657dde575de430aecaea6ca91f2e6072339b16932d426895d8d678",
                                  "output": "0x00000000000000000000000063cce2b569a7bc35895ee24306c1512fefc06121",
                                  "to": "0xda282e89244424e297ce8e78089b54d043fb28b6",
                                  "type": "STATICCALL"
                                },
                                {
                                  "calls": [
                                    {
                                      "from": "0x9c9bf29880448ab39795a11b669e22a0f1d790ec",
                                      "gas": "0x17650",
                                      "gasUsed": "0xc31",
                                      "input": "0xf20f03bc072d75e18b2be4f89a13a7147240477481c4b526d5795802acba59046b426e0800000000000000000000000063cce2b569a7bc35895ee24306c1512fefc06121000000000000000000000000da2b06c20cfda8af97fdff6a753153a5c20ca81d",
                                      "output": "0x6adbdd59a4f9e2db1671cf143f07b719235fda671875225d2ac824ea805d0814",
                                      "to": "0x2152ad964a361f03437b5eb11c782d6f957c407f",
                                      "type": "DELEGATECALL",
                                      "value": "0x0"
                                    }
                                  ],
                                  "from": "0xd5077b67dcb56cac8b270c7788fc3e6ee03f17b9",
                                  "gas": "0x17d4d",
                                  "gasUsed": "0xd5e",
                                  "input": "0xf20f03bc072d75e18b2be4f89a13a7147240477481c4b526d5795802acba59046b426e0800000000000000000000000063cce2b569a7bc35895ee24306c1512fefc06121000000000000000000000000da2b06c20cfda8af97fdff6a753153a5c20ca81d",
                                  "output": "0x6adbdd59a4f9e2db1671cf143f07b719235fda671875225d2ac824ea805d0814",
                                  "to": "0x9c9bf29880448ab39795a11b669e22a0f1d790ec",
                                  "type": "STATICCALL"
                                },
                                {
                                  "calls": [
                                    {
                                      "from": "0x4200000000000000000000000000000000000021",
                                      "gas": "0x1674b",
                                      "gasUsed": "0x4af0",
                                      "input": "0xa3112a646adbdd59a4f9e2db1671cf143f07b719235fda671875225d2ac824ea805d0814",
                                      "output": "0x00000000000000000000000000000000000000000000000000000000000000206adbdd59a4f9e2db1671cf143f07b719235fda671875225d2ac824ea805d0814072d75e18b2be4f89a13a7147240477481c4b526d5795802acba59046b426e08000000000000000000000000000000000000000000000000000000006a6e1b7c000000000000000000000000000000000000000000000000000000006a95a87c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000da2b06c20cfda8af97fdff6a753153a5c20ca81d00000000000000000000000063cce2b569a7bc35895ee24306c1512fefc061210000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000001",
                                      "to": "0xbec660b456b84a081e90af29be43385bda5bf7b6",
                                      "type": "DELEGATECALL",
                                      "value": "0x0"
                                    }
                                  ],
                                  "from": "0xd5077b67dcb56cac8b270c7788fc3e6ee03f17b9",
                                  "gas": "0x16ebe",
                                  "gasUsed": "0x4d18",
                                  "input": "0xa3112a646adbdd59a4f9e2db1671cf143f07b719235fda671875225d2ac824ea805d0814",
                                  "output": "0x00000000000000000000000000000000000000000000000000000000000000206adbdd59a4f9e2db1671cf143f07b719235fda671875225d2ac824ea805d0814072d75e18b2be4f89a13a7147240477481c4b526d5795802acba59046b426e08000000000000000000000000000000000000000000000000000000006a6e1b7c000000000000000000000000000000000000000000000000000000006a95a87c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000da2b06c20cfda8af97fdff6a753153a5c20ca81d00000000000000000000000063cce2b569a7bc35895ee24306c1512fefc061210000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000001",
                                  "to": "0x4200000000000000000000000000000000000021",
                                  "type": "STATICCALL"
                                }
                              ],
                              "from": "0xd5077b67dcb56cac8b270c7788fc3e6ee03f17b9",
                              "gas": "0x199a0",
                              "gasUsed": "0x784c",
                              "input": "0xba03e205000000000000000000000000da2b06c20cfda8af97fdff6a753153a5c20ca81daa92f8c143657dde575de430aecaea6ca91f2e6072339b16932d426895d8d678",
                              "output": "0x0000000000000000000000000000000000000000000000000000000000000001",
                              "to": "0x33aee288907a684dbfc9dd4fb1603fe3e7bdabbd",
                              "type": "DELEGATECALL",
                              "value": "0x0"
                            }
                          ],
                          "from": "0xbcdb22f56642de57624cfc2fbb9ee398cf3ca268",
                          "gas": "0x1a126",
                          "gasUsed": "0x7973",
                          "input": "0xba03e205000000000000000000000000da2b06c20cfda8af97fdff6a753153a5c20ca81daa92f8c143657dde575de430aecaea6ca91f2e6072339b16932d426895d8d678",
                          "output": "0x0000000000000000000000000000000000000000000000000000000000000001",
                          "to": "0xd5077b67dcb56cac8b270c7788fc3e6ee03f17b9",
                          "type": "STATICCALL"
                        }
                      ],
                      "from": "0xbcdb22f56642de57624cfc2fbb9ee398cf3ca268",
                      "gas": "0x2e881",
                      "gasUsed": "0x1f2c6",
                      "input": "0xa9059cbb000000000000000000000000da2b06c20cfda8af97fdff6a753153a5c20ca81d000000000000000000000000000000000000000000000000002386f26fc10000",
                      "output": "0x0000000000000000000000000000000000000000000000000000000000000001",
                      "to": "0x69b821cccec6cf8014f9f4a490605add619cc519",
                      "type": "DELEGATECALL",
                      "value": "0x0"
                    }
                  ],
                  "from": "0x2b394b7da7dd9742401d43a9a9e9d71599588517",
                  "gas": "0x35b60",
                  "gasUsed": "0x259f5",
                  "input": "0xa9059cbb000000000000000000000000da2b06c20cfda8af97fdff6a753153a5c20ca81d000000000000000000000000000000000000000000000000002386f26fc10000",
                  "output": "0x0000000000000000000000000000000000000000000000000000000000000001",
                  "to": "0xbcdb22f56642de57624cfc2fbb9ee398cf3ca268",
                  "type": "CALL",
                  "value": "0x0"
                },
                "txHash": "0x6d413b46a3c9e91283937b46d065ad07f238f291c3e04af1d75cc0eb2c958c1b"
              },
              {
                "result": {
                  "calls": [
                    {
                      "from": "0xad153c844ccac3d2ea991170624200e54730be74",
                      "gas": "0x1fa03",
                      "gasUsed": "0x0",
                      "input": "0x",
                      "to": "0x6252fd183842abae21aeb8053d5a48edb34b6fe9",
                      "type": "CALL",
                      "value": "0x100b66cba5"
                    },
                    {
                      "from": "0xad153c844ccac3d2ea991170624200e54730be74",
                      "gas": "0x1d500",
                      "gasUsed": "0x1a70",
                      "input": "0xd0e30db0",
                      "to": "0x4200000000000000000000000000000000000006",
                      "type": "CALL",
                      "value": "0x766c9435b"
                    },
                    {
                      "from": "0xad153c844ccac3d2ea991170624200e54730be74",
                      "gas": "0x1b012",
                      "gasUsed": "0x3bde",
                      "input": "0x23b872dd0000000000000000000000006252fd183842abae21aeb8053d5a48edb34b6fe9000000000000000000000000ad153c844ccac3d2ea991170624200e54730be740000000000000000000000000000000000000000000000000000001772300f00",
                      "output": "0x0000000000000000000000000000000000000000000000000000000000000001",
                      "to": "0x89b38c7414ec86eb2cb003c6362cf010b562ff1e",
                      "type": "CALL",
                      "value": "0x0"
                    },
                    {
                      "from": "0xad153c844ccac3d2ea991170624200e54730be74",
                      "gas": "0x15090",
                      "gasUsed": "0x231",
                      "input": "0x70a08231000000000000000000000000ad153c844ccac3d2ea991170624200e54730be74",
                      "output": "0x00000000000000000000000000000000000000000000002f2d6979783842237c",
                      "to": "0x4200000000000000000000000000000000000006",
                      "type": "STATICCALL"
                    },
                    {
                      "from": "0xad153c844ccac3d2ea991170624200e54730be74",
                      "gas": "0x14cf9",
                      "gasUsed": "0x28b",
                      "input": "0x70a08231000000000000000000000000ad153c844ccac3d2ea991170624200e54730be74",
                      "output": "0x000000000000000000000000000000000000000000000095721633d40e6bc3ab",
                      "to": "0x89b38c7414ec86eb2cb003c6362cf010b562ff1e",
                      "type": "STATICCALL"
                    }
                  ],
                  "from": "0x6252fd183842abae21aeb8053d5a48edb34b6fe9",
                  "gas": "0x29970",
                  "gasUsed": "0x15a43",
                  "input": "0x9cd441da0000000000000000000000000000000000000000000000000000001772300f0000000000000000000000000000000000000000000000000000000017542d4220",
                  "output": "0x0000000000000000000000000000000000000000000000000000000c6407a66e0000000000000000000000000000000000000000000000000000000766c9435b0000000000000000000000000000000000000000000000000000001772300f00",
                  "to": "0xad153c844ccac3d2ea991170624200e54730be74",
                  "type": "CALL",
                  "value": "0x1772300f00"
                },
                "txHash": "0xc2a652980f30034ca0f800858c100b3a8473c69daeecdddc8fd7c2d861368cea"
              },
              {
                "result": {
                  "from": "0x5ad176ebb13cabe62ee7c07f52a67b4a48cbef83",
                  "gas": "0x61a80",
                  "gasUsed": "0x98d2",
                  "input": "0xda1750b00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000001081a724dc3c7b70816ed0581b22508169505d2d74d08130febb4dcc4",
                  "to": "0xbbe55e29bbc6d71ecab1ac011c9ac5206ab2fe74",
                  "type": "CALL",
                  "value": "0x0"
                },
                "txHash": "0x62ed05f57d81116f09556cfbed76c1240a815460c654dbdbe92b78ddac955b22"
              },
              {
                "result": {
                  "from": "0x5ad176ebb13cabe62ee7c07f52a67b4a48cbef83",
                  "gas": "0x61a80",
                  "gasUsed": "0x98d2",
                  "input": "0xda1750b000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000001000000030248b1ccd995a702482b35084ef802481183b2145402478af214626e",
                  "to": "0xbbe55e29bbc6d71ecab1ac011c9ac5206ab2fe74",
                  "type": "CALL",
                  "value": "0x0"
                },
                "txHash": "0xf8bc33630ceb8284dd3afb294ee676e3905e3e9431ef01874956631e64e89b0a"
              },
              {
                "result": {
                  "from": "0x5ad176ebb13cabe62ee7c07f52a67b4a48cbef83",
                  "gas": "0x61a80",
                  "gasUsed": "0x98d2",
                  "input": "0xda1750b00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000004046203c338d2de04607231d85b6f045fee4a129095045e5ce7f93465",
                  "to": "0xbbe55e29bbc6d71ecab1ac011c9ac5206ab2fe74",
                  "type": "CALL",
                  "value": "0x0"
                },
                "txHash": "0x857d10820018c0b87072b2645d3960ae703a09120f16eaf4d54f17e26e8ceabd"
              },
              {
                "result": {
                  "from": "0x5ad176ebb13cabe62ee7c07f52a67b4a48cbef83",
                  "gas": "0x61a80",
                  "gasUsed": "0x98d2",
                  "input": "0xda1750b00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000005031348ae8c74e30311de8d7628b50311b30579cefb031048f8c81651",
                  "to": "0xbbe55e29bbc6d71ecab1ac011c9ac5206ab2fe74",
                  "type": "CALL",
                  "value": "0x0"
                },
                "txHash": "0x22e10e0481a688714c88d071ef17653c19e49a88ac8ad7e454d4776c9a147312"
              },
              {
                "result": {
                  "from": "0x5ad176ebb13cabe62ee7c07f52a67b4a48cbef83",
                  "gas": "0x61a80",
                  "gasUsed": "0x8de2",
                  "input": "0xda1750b000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000001000000070c2ab37fea61e40c28d55896abd80c23c676cf80870c21e921d7df54",
                  "to": "0xbbe55e29bbc6d71ecab1ac011c9ac5206ab2fe74",
                  "type": "CALL",
                  "value": "0x0"
                },
                "txHash": "0xf235a91b1563443bebc1f75742ede9f6ec25569631040b2c328a721d21eed02d"
              },
              {
                "result": {
                  "from": "0x5ad176ebb13cabe62ee7c07f52a67b4a48cbef83",
                  "gas": "0x61a80",
                  "gasUsed": "0x8de2",
                  "input": "0xda1750b0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000010000000805c624ae061edf05bfd00cc628ad05bde8ba2c233c05b7971be27b2f",
                  "to": "0xbbe55e29bbc6d71ecab1ac011c9ac5206ab2fe74",
                  "type": "CALL",
                  "value": "0x0"
                },
                "txHash": "0x61f10d2dc94a699e53ea9b58b0f1883080d91640178df9cfa17a2930793638a9"
              },
              {
                "result": {
                  "from": "0x5ad176ebb13cabe62ee7c07f52a67b4a48cbef83",
                  "gas": "0x61a80",
                  "gasUsed": "0x8de2",
                  "input": "0xda1750b0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000010000000904b9f0d6888b8404b9371898f5df04b6f4b07f40b004b63b4eb7fbd6",
                  "to": "0xbbe55e29bbc6d71ecab1ac011c9ac5206ab2fe74",
                  "type": "CALL",
                  "value": "0x0"
                },
                "txHash": "0xf02f56bc78a3a2e6263f7df9eb93af4176407de9e6c91ccf6a556eb9870721ad"
              },
              {
                "result": {
                  "calls": [
                    {
                      "calls": [
                        {
                          "from": "0xbacdbc9958c25d4f209251ca25f3b8e00948eca7",
                          "gas": "0x18607",
                          "gasUsed": "0x0",
                          "input": "0x",
                          "to": "0x53d8fa1a239080090eb0dfc70651d16580fd3d5b",
                          "type": "CALL",
                          "value": "0x38d7ea4c68000"
                        }
                      ],
                      "from": "0xbacdbc9958c25d4f209251ca25f3b8e00948eca7",
                      "gas": "0x29bea",
                      "gasUsed": "0x1f922",
                      "input": "0x84bb1e42000000000000000000000000a3fc85f7c764dc5dd9bcdce3cf7dc3e1b0630b180000000000000000000000000000000000000000000000000000000000000001000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee00000000000000000000000000000000000000000000000000038d7ea4c6800000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
                      "to": "0x85611636abc5a075372634360b54c9221fc04c5d",
                      "type": "DELEGATECALL",
                      "value": "0x38d7ea4c68000"
                    }
                  ],
                  "from": "0xa3fc85f7c764dc5dd9bcdce3cf7dc3e1b0630b18",
                  "gas": "0x30d40",
                  "gasUsed": "0x25ff9",
                  "input": "0x84bb1e42000000000000000000000000a3fc85f7c764dc5dd9bcdce3cf7dc3e1b0630b180000000000000000000000000000000000000000000000000000000000000001000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee00000000000000000000000000000000000000000000000000038d7ea4c6800000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
                  "to": "0xbacdbc9958c25d4f209251ca25f3b8e00948eca7",
                  "type": "CALL",
                  "value": "0x38d7ea4c68000"
                },
                "txHash": "0xff54c3e3aa4810d0519af88448fb04e47359a4d107eccd45ac9da4d0012822d2"
              },
              {
                "result": {
                  "calls": [
                    {
                      "calls": [
                        {
                          "calls": [
                            {
                              "calls": [
                                {
                                  "calls": [
                                    {
                                      "from": "0x78cbb3413fbb6af05ef1d21e646440e56bae3ad6",
                                      "gas": "0x372eb",
                                      "gasUsed": "0x9bd",
                                      "input": "0x54d4f9db568eb581cdf80b03d3bdfa414f3203bfdcc4bba4e66355612bd0e879da812f06",
                                      "output": "0x072d75e18b2be4f89a13a7147240477481c4b526d5795802acba59046b426e08",
                                      "to": "0xdd3321c53ef2f9671d358ecb102179699745e5e7",
                                      "type": "DELEGATECALL",
                                      "value": "0x0"
                                    }
                                  ],
                                  "from": "0xd5077b67dcb56cac8b270c7788fc3e6ee03f17b9",
                                  "gas": "0x39385",
                                  "gasUsed": "0x1c75",
                                  "input": "0x54d4f9db568eb581cdf80b03d3bdfa414f3203bfdcc4bba4e66355612bd0e879da812f06",
                                  "output": "0x072d75e18b2be4f89a13a7147240477481c4b526d5795802acba59046b426e08",
                                  "to": "0x78cbb3413fbb6af05ef1d21e646440e56bae3ad6",
                                  "type": "STATICCALL"
                                },
                                {
                                  "calls": [
                                    {
                                      "from": "0xda282e89244424e297ce8e78089b54d043fb28b6",
                                      "gas": "0x34479",
                                      "gasUsed": "0x929",
                                      "input": "0x10d736d5aa92f8c143657dde575de430aecaea6ca91f2e6072339b16932d426895d8d678",
                                      "output": "0x00000000000000000000000063cce2b569a7bc35895ee24306c1512fefc06121",
                                      "to": "0x0f463e41d8eaed5bdb0b97d85f33be1314193109",
                                      "type": "DELEGATECALL",
                                      "value": "0x0"
                                    }
                                  ],
                                  "from": "0xd5077b67dcb56cac8b270c7788fc3e6ee03f17b9",
                                  "gas": "0x36456",
                                  "gasUsed": "0x1be1",
                                  "input": "0x10d736d5aa92f8c143657dde575de430aecaea6ca91f2e6072339b16932d426895d8d678",
                                  "output": "0x00000000000000000000000063cce2b569a7bc35895ee24306c1512fefc06121",
                                  "to": "0xda282e89244424e297ce8e78089b54d043fb28b6",
                                  "type": "STATICCALL"
                                },
                                {
                                  "calls": [
                                    {
                                      "from": "0x9c9bf29880448ab39795a11b669e22a0f1d790ec",
                                      "gas": "0x31612",
                                      "gasUsed": "0xc31",
                                      "input": "0xf20f03bc072d75e18b2be4f89a13a7147240477481c4b526d5795802acba59046b426e0800000000000000000000000063cce2b569a7bc35895ee24306c1512fefc061210000000000000000000000000dc0561a8b30242c17a094a36a2ca6a8357f9a74",
                                      "output": "0x0000000000000000000000000000000000000000000000000000000000000000",
                                      "to": "0x2152ad964a361f03437b5eb11c782d6f957c407f",
                                      "type": "DELEGATECALL",
                                      "value": "0x0"
                                    }
                                  ],
                                  "from": "0xd5077b67dcb56cac8b270c7788fc3e6ee03f17b9",
                                  "gas": "0x3353c",
                                  "gasUsed": "0x1ef2",
                                  "input": "0xf20f03bc072d75e18b2be4f89a13a7147240477481c4b526d5795802acba59046b426e0800000000000000000000000063cce2b569a7bc35895ee24306c1512fefc061210000000000000000000000000dc0561a8b30242c17a094a36a2ca6a8357f9a74",
                                  "output": "0x0000000000000000000000000000000000000000000000000000000000000000",
                                  "to": "0x9c9bf29880448ab39795a11b669e22a0f1d790ec",
                                  "type": "STATICCALL"
                                },
                                {
                                  "calls": [
                                    {
                                      "from": "0x4200000000000000000000000000000000000021",
                                      "gas": "0x2ec8e",
                                      "gasUsed": "0x41ee",
                                      "input": "0xa3112a640000000000000000000000000000000000000000000000000000000000000000",
                                      "output": "0x000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000000",
                                      "to": "0xbec660b456b84a081e90af29be43385bda5bf7b6",
                                      "type": "DELEGATECALL",
                                      "value": "0x0"
                                    }
                                  ],
                                  "from": "0xd5077b67dcb56cac8b270c7788fc3e6ee03f17b9",
                                  "gas": "0x30bc3",
                                  "gasUsed": "0x55a4",
                                  "input": "0xa3112a640000000000000000000000000000000000000000000000000000000000000000",
                                  "output": "0x000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000000",
                                  "to": "0x4200000000000000000000000000000000000021",
                                  "type": "STATICCALL"
                                }
                              ],
                              "from": "0xd5077b67dcb56cac8b270c7788fc3e6ee03f17b9",
                              "gas": "0x3b83f",
                              "gasUsed": "0xfb41",
                              "input": "0xba03e2050000000000000000000000000dc0561a8b30242c17a094a36a2ca6a8357f9a74aa92f8c143657dde575de430aecaea6ca91f2e6072339b16932d426895d8d678",
                              "output": "0x0000000000000000000000000000000000000000000000000000000000000000",
                              "to": "0x33aee288907a684dbfc9dd4fb1603fe3e7bdabbd",
                              "type": "DELEGATECALL",
                              "value": "0x0"
                            }
                          ],
                          "from": "0x091d00004f21eb2fc30964a8a4995692d9b49628",
                          "gas": "0x3d9f6",
                          "gasUsed": "0x10dfc",
                          "input": "0xba03e2050000000000000000000000000dc0561a8b30242c17a094a36a2ca6a8357f9a74aa92f8c143657dde575de430aecaea6ca91f2e6072339b16932d426895d8d678",
                          "output": "0x0000000000000000000000000000000000000000000000000000000000000000",
                          "to": "0xd5077b67dcb56cac8b270c7788fc3e6ee03f17b9",
                          "type": "STATICCALL"
                        },
                        {
                          "calls": [
                            {
                              "calls": [
                                {
                                  "calls": [
                                    {
                                      "from": "0x78cbb3413fbb6af05ef1d21e646440e56bae3ad6",
                                      "gas": "0x2a621",
                                      "gasUsed": "0x1ed",
                                      "input": "0x54d4f9db568eb581cdf80b03d3bdfa414f3203bfdcc4bba4e66355612bd0e879da812f06",
                                      "output": "0x072d75e18b2be4f89a13a7147240477481c4b526d5795802acba59046b426e08",
                                      "to": "0xdd3321c53ef2f9671d358ecb102179699745e5e7",
                                      "type": "DELEGATECALL",
                                      "value": "0x0"
                                    }
                                  ],
                                  "from": "0xd5077b67dcb56cac8b270c7788fc3e6ee03f17b9",
                                  "gas": "0x2b1e7",
                                  "gasUsed": "0x311",
                                  "input": "0x54d4f9db568eb581cdf80b03d3bdfa414f3203bfdcc4bba4e66355612bd0e879da812f06",
                                  "output": "0x072d75e18b2be4f89a13a7147240477481c4b526d5795802acba59046b426e08",
                                  "to": "0x78cbb3413fbb6af05ef1d21e646440e56bae3ad6",
                                  "type": "STATICCALL"
                                },
                                {
                                  "calls": [
                                    {
                                      "from": "0xda282e89244424e297ce8e78089b54d043fb28b6",
                                      "gas": "0x2a151",
                                      "gasUsed": "0x929",
                                      "input": "0x10d736d5d99b42e778498aa3c9c1f6a012359130252780511687a35982e8e52735453034",
                                      "output": "0x00000000000000000000000009b170ca2a006081042992bce7379b85a02149c6",
                                      "to": "0x0f463e41d8eaed5bdb0b97d85f33be1314193109",
                                      "type": "DELEGATECALL",
                                      "value": "0x0"
                                    }
                                  ],
                                  "from": "0xd5077b67dcb56cac8b270c7788fc3e6ee03f17b9",
                                  "gas": "0x2ad04",
                                  "gasUsed": "0xa4d",
                                  "input": "0x10d736d5d99b42e778498aa3c9c1f6a012359130252780511687a35982e8e52735453034",
                                  "output": "0x00000000000000000000000009b170ca2a006081042992bce7379b85a02149c6",
                                  "to": "0xda282e89244424e297ce8e78089b54d043fb28b6",
                                  "type": "STATICCALL"
                                },
                                {
                                  "calls": [
                                    {
                                      "from": "0x9c9bf29880448ab39795a11b669e22a0f1d790ec",
                                      "gas": "0x294fd",
                                      "gasUsed": "0xc31",
                                      "input": "0xf20f03bc072d75e18b2be4f89a13a7147240477481c4b526d5795802acba59046b426e0800000000000000000000000009b170ca2a006081042992bce7379b85a02149c60000000000000000000000000dc0561a8b30242c17a094a36a2ca6a8357f9a74",
                                      "output": "0x0000000000000000000000000000000000000000000000000000000000000000",
                                      "to": "0x2152ad964a361f03437b5eb11c782d6f957c407f",
                                      "type": "DELEGATECALL",
                                      "value": "0x0"
                                    }
                                  ],
                                  "from": "0xd5077b67dcb56cac8b270c7788fc3e6ee03f17b9",
                                  "gas": "0x2a086",
                                  "gasUsed": "0xd5e",
                                  "input": "0xf20f03bc072d75e18b2be4f89a13a7147240477481c4b526d5795802acba59046b426e0800000000000000000000000009b170ca2a006081042992bce7379b85a02149c60000000000000000000000000dc0561a8b30242c17a094a36a2ca6a8357f9a74",
                                  "output": "0x0000000000000000000000000000000000000000000000000000000000000000",
                                  "to": "0x9c9bf29880448ab39795a11b669e22a0f1d790ec",
                                  "type": "STATICCALL"
                                },
                                {
                                  "calls": [
                                    {
                                      "from": "0x4200000000000000000000000000000000000021",
                                      "gas": "0x285f7",
                                      "gasUsed": "0xb3e",
                                      "input": "0xa3112a640000000000000000000000000000000000000000000000000000000000000000",
                                      "output": "0x000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000000",
                                      "to": "0xbec660b456b84a081e90af29be43385bda5bf7b6",
                                      "type": "DELEGATECALL",
                                      "value": "0x0"
                                    }
                                  ],
                                  "from": "0xd5077b67dcb56cac8b270c7788fc3e6ee03f17b9",
                                  "gas": "0x291f7",
                                  "gasUsed": "0xd60",
                                  "input": "0xa3112a640000000000000000000000000000000000000000000000000000000000000000",
                                  "output": "0x000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000000",
                                  "to": "0x4200000000000000000000000000000000000021",
                                  "type": "STATICCALL"
                                }
                              ],
                              "from": "0xd5077b67dcb56cac8b270c7788fc3e6ee03f17b9",
                              "gas": "0x2c178",
                              "gasUsed": "0x37f1",
                              "input": "0xba03e2050000000000000000000000000dc0561a8b30242c17a094a36a2ca6a8357f9a74d99b42e778498aa3c9c1f6a012359130252780511687a35982e8e52735453034",
                              "output": "0x0000000000000000000000000000000000000000000000000000000000000000",
                              "to": "0x33aee288907a684dbfc9dd4fb1603fe3e7bdabbd",
                              "type": "DELEGATECALL",
                              "value": "0x0"
                            }
                          ],
                          "from": "0x091d00004f21eb2fc30964a8a4995692d9b49628",
                          "gas": "0x2cdb0",
                          "gasUsed": "0x3918",
                          "input": "0xba03e2050000000000000000000000000dc0561a8b30242c17a094a36a2ca6a8357f9a74d99b42e778498aa3c9c1f6a012359130252780511687a35982e8e52735453034",
                          "output": "0x0000000000000000000000000000000000000000000000000000000000000000",
                          "to": "0xd5077b67dcb56cac8b270c7788fc3e6ee03f17b9",
                          "type": "STATICCALL"
                        }
                      ],
                      "error": "execution reverted",
                      "from": "0x091d00004f21eb2fc30964a8a4995692d9b49628",
                      "gas": "0x41c70",
                      "gasUsed": "0x17e16",
                      "input": "0xf2c298be0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000572696e6f6c000000000000000000000000000000000000000000000000000000",
                      "output": "0xac12c8b30000000000000000000000000dc0561a8b30242c17a094a36a2ca6a8357f9a74",
                      "to": "0x6d50675a07456762d8a5291170625713dcc2ee9a",
                      "type": "DELEGATECALL",
                      "value": "0x0"
                    }
                  ],
                  "error": "execution reverted",
                  "from": "0x0dc0561a8b30242c17a094a36a2ca6a8357f9a74",
                  "gas": "0x493e0",
                  "gasUsed": "0x1e4f7",
                  "input": "0xf2c298be0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000572696e6f6c000000000000000000000000000000000000000000000000000000",
                  "output": "0xac12c8b30000000000000000000000000dc0561a8b30242c17a094a36a2ca6a8357f9a74",
                  "to": "0x091d00004f21eb2fc30964a8a4995692d9b49628",
                  "type": "CALL",
                  "value": "0x0"
                },
                "txHash": "0xf7e902724be610378cc060c1dfc9c6f15f43dbc8a3976170144fe537f3025d8f"
              }
            ]
          }
        }
      ]
    },
    {
      "name": "debug_traceBlockByNumber",
      "summary": "Returns the tracing result by executing all transactions in the block specified by number with a tracer.",
      "description": "Returns the tracing result by executing all transactions in the block specified by number with a tracer.",
      "params": [
        {
          "name": "blockNumber",
          "description": "The block number as a string in hexadecimal format or tags. The supported tag values include earliest for the earliest/genesis block, latest for the latest mined block, pending for the pending state/transactions, safe for the most recent secure block, and finalized for the most recent secure block accepted by more than 2/3 of validators",
          "required": true,
          "schema": {
            "type": "string"
          }
        },
        {
          "name": "object",
          "description": "The tracer object with the following fields:",
          "required": true,
          "schema": {
            "type": "object",
            "properties": {
              "tracer": {
                "enum": [
                  "callTracer",
                  "prestateTracer"
                ],
                "description": "The type of tracer. It could be callTracer or prestateTracer"
              },
              "tracerConfig": {
                "type": "object",
                "properties": {
                  "onlyTopCall": {
                    "type": "boolean",
                    "description": "When set to true, this will only trace the primary (top-level) call and not any sub-calls. It eliminates the additional processing for each call frame"
                  }
                },
                "description": "The object to specify the configurations of the tracer"
              }
            }
          }
        }
      ],
      "result": {
        "name": "result",
        "description": "An array of result objects with the following fields:",
        "schema": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "result": {
                "type": "object",
                "properties": {
                  "calls": {
                    "type": "array",
                    "items": {
                      "type": "object",
                      "properties": {
                        "from": {
                          "type": "string",
                          "description": "The address from which the tokens are transferred."
                        },
                        "gas": {
                          "type": "string",
                          "description": "The gas limit or maximum amount of gas that can be used for executing the transaction"
                        },
                        "gasUsed": {
                          "type": "string",
                          "description": "The gas used by the transaction"
                        },
                        "input": {
                          "type": "string",
                          "description": "The data or input parameters for the transaction, typically encoded as hexadecimal"
                        },
                        "to": {
                          "type": "string",
                          "description": "The address to which the tokens are transferred"
                        },
                        "type": {
                          "type": "string",
                          "description": "The type of token (ERC-20, ERC-721 or ERC-1155 etc)"
                        },
                        "value": {
                          "type": "string",
                          "description": "The token value"
                        }
                      }
                    },
                    "description": "A list of sub-calls"
                  },
                  "from": {
                    "type": "string",
                    "description": "The address the transaction is sent from"
                  },
                  "gas": {
                    "type": "string",
                    "description": "The integer of the gas provided for the transaction execution"
                  },
                  "gasUsed": {
                    "type": "string",
                    "description": "The integer of the gas used"
                  },
                  "input": {
                    "type": "string",
                    "description": "The data given at the time of input"
                  },
                  "to": {
                    "type": "string",
                    "description": "The address the transaction is directed to"
                  },
                  "type": {
                    "type": "string",
                    "description": "The type of the call"
                  },
                  "value": {
                    "type": "string",
                    "description": "The integer of the value sent with this transaction"
                  }
                },
                "description": "A result array with the following fields:"
              },
              "txHash": {
                "type": "string",
                "description": "The hash of the transaction being traced"
              }
            }
          }
        }
      },
      "tags": [
        {
          "name": "debug"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/giwa/debug_traceBlockByNumber"
      },
      "examples": [
        {
          "name": "debug_traceBlockByNumber example",
          "params": [
            {
              "name": "blockNumber",
              "value": "latest"
            }
          ],
          "result": {
            "name": "debug_traceBlockByNumber result",
            "value": [
              {
                "result": {
                  "calls": [
                    {
                      "from": "0x4200000000000000000000000000000000000015",
                      "gas": "0xe9b75",
                      "gasUsed": "0x4889",
                      "input": "0x098999be00000558000c5fc50000000000000002000000006887e1040000000000873e7500000000000000000000000000000000000000000000000000000000000091ce000000000000000000000000000000000000000000000000000000000000000106b6fdd685cb71ce9bb57ba7ef82e4c4d62d8432dfc969788a4bae3935d3dec50000000000000000000000001caaaa58002a7e8b4c6f427ac2c943767b4d6cd7000000000000000000000000",
                      "to": "0xff256497d61dcd71a9e9ff43967c13fde1f72d12",
                      "type": "DELEGATECALL",
                      "value": "0x0"
                    }
                  ],
                  "from": "0xdeaddeaddeaddeaddeaddeaddeaddeaddead0001",
                  "gas": "0xf4240",
                  "gasUsed": "0xb41c",
                  "input": "0x098999be00000558000c5fc50000000000000002000000006887e1040000000000873e7500000000000000000000000000000000000000000000000000000000000091ce000000000000000000000000000000000000000000000000000000000000000106b6fdd685cb71ce9bb57ba7ef82e4c4d62d8432dfc969788a4bae3935d3dec50000000000000000000000001caaaa58002a7e8b4c6f427ac2c943767b4d6cd7000000000000000000000000",
                  "to": "0x4200000000000000000000000000000000000015",
                  "type": "CALL",
                  "value": "0x0"
                },
                "txHash": "0x79b524d4305dfa348d3525b9da01239fed53ad4d645f3bc136bfe3e2b39ef779"
              }
            ]
          }
        }
      ]
    },
    {
      "name": "debug_traceCall",
      "summary": "Returns the number of possible tracing result by executing an eth call within the context of the given block execution.",
      "description": "Returns the number of possible tracing result by executing an eth call within the context of the given block execution.",
      "params": [
        {
          "name": "object",
          "description": "The transaction call object with the following fields:",
          "schema": {
            "type": "object",
            "properties": {
              "from": {
                "type": "string",
                "description": "The initiating Ethereum address for the transfer, which will be null if not applicable"
              },
              "to": {
                "type": "string",
                "description": "The address the transaction is directed to, which will be null if not applicable"
              },
              "gas": {
                "type": "string",
                "description": "The integer of the gas provided for the transaction execution"
              },
              "gasPrice": {
                "type": "string",
                "description": "The integer of the gasPrice used for each paid gas"
              },
              "value": {
                "type": "string",
                "description": "The integer of the value sent with this transaction"
              },
              "data": {
                "type": "string",
                "description": "The hash of the method signature and encoded parameters"
              }
            }
          }
        },
        {
          "name": "blockReference",
          "description": "The block number in hexadecimal format, the block hash, or tags. The supported tag values include earliest for the earliest/genesis block, latest for the latest mined block, pending for the pending state/transactions, safe for the most recent secure block, and finalized for the most recent secure block accepted by more than 2/3 of validators",
          "schema": {
            "type": "string"
          }
        },
        {
          "name": "object",
          "description": "The tracer object with the following fields:",
          "required": true,
          "schema": {
            "type": "object",
            "properties": {
              "tracer": {
                "enum": [
                  "callTracer",
                  "prestateTracer"
                ],
                "description": "The type of tracer. It could be callTracer or prestateTracer"
              },
              "tracerConfig": {
                "type": "object",
                "properties": {
                  "onlyTopCall": {
                    "type": "boolean",
                    "description": "When set to true, this will only trace the primary (top-level) call and not any sub-calls. It eliminates the additional processing for each call frame"
                  }
                },
                "description": "The object to specify the configurations of the tracer"
              }
            }
          }
        }
      ],
      "result": {
        "name": "result",
        "description": "The transaction trace object, which has the following fields:",
        "schema": {
          "type": "object",
          "properties": {
            "from": {
              "type": "string",
              "description": "The address the transaction is sent from"
            },
            "gas": {
              "type": "string",
              "description": "The gas provided for the transaction execution"
            },
            "gasUsed": {
              "type": "string",
              "description": "The gas used during execution"
            },
            "input": {
              "type": "string",
              "description": "The input data sent with the transaction"
            },
            "output": {
              "type": "string",
              "description": "The data which is returned as an output"
            },
            "to": {
              "type": "string",
              "description": "The address the transaction is directed to"
            },
            "type": {
              "type": "string",
              "description": "The type of the call (e.g., CALL, DELEGATECALL, STATICCALL, etc.)"
            },
            "value": {
              "type": "string",
              "description": "The value (in Wei) sent with the transaction"
            }
          }
        }
      },
      "tags": [
        {
          "name": "debug"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/giwa/debug_traceCall"
      },
      "examples": [
        {
          "name": "debug_traceCall example",
          "params": [
            {
              "name": "blockReference",
              "value": "0x205203b"
            }
          ],
          "result": {
            "name": "debug_traceCall result",
            "value": {
              "from": "0x0000000000000000000000000000000000000000",
              "gas": "0x5f5e100",
              "gasUsed": "0x5db9",
              "input": "0x70a082310000000000000000000000005ad176ebb13cabe62ee7c07f52a67b4a48cbef83",
              "output": "0x0000000000000000000000000000000000000000000000000000000000000000",
              "to": "0x4200000000000000000000000000000000000006",
              "type": "CALL",
              "value": "0x0"
            }
          }
        }
      ]
    },
    {
      "name": "debug_traceTransaction",
      "summary": "Returns all traces of a given transaction.",
      "description": "Returns all traces of a given transaction.",
      "params": [
        {
          "name": "transactionHash",
          "description": "The transaction hash that needs to be traced, encoded in hexadecimal format",
          "required": true,
          "schema": {
            "type": "string"
          }
        },
        {
          "name": "object",
          "description": "The tracer object with the following fields:",
          "required": true,
          "schema": {
            "type": "object",
            "properties": {
              "tracer": {
                "enum": [
                  "callTracer",
                  "prestateTracer"
                ],
                "description": "The type of tracer. It could be callTracer or prestateTracer"
              },
              "tracerConfig": {
                "type": "object",
                "properties": {
                  "onlyTopCall": {
                    "type": "boolean",
                    "description": "When set to true, this will only trace the primary (top-level) call and not any sub-calls. It eliminates the additional processing for each call frame"
                  }
                },
                "description": "The object to specify the configurations of the tracer"
              },
              "timeout": {
                "type": "object",
                "description": "A string of decimal integers that overrides the JavaScript-based tracing calls default timeout of 5 seconds."
              }
            }
          }
        }
      ],
      "result": {
        "name": "result",
        "description": "The transaction call trace.",
        "schema": {
          "type": "object",
          "properties": {
            "from": {
              "type": "string",
              "description": "The address from which the transaction was sent."
            },
            "gas": {
              "type": "string",
              "description": "The gas provided for the transaction, encoded as a hexadecimal value."
            },
            "gasUsed": {
              "type": "string",
              "description": "The gas used by the transaction, encoded as a hexadecimal value."
            },
            "input": {
              "type": "string",
              "description": "The input data supplied to the transaction."
            },
            "to": {
              "type": "string",
              "description": "The address to which the transaction was sent."
            },
            "type": {
              "type": "string",
              "description": "The type of call."
            },
            "value": {
              "type": "string",
              "description": "The value transferred by the transaction, encoded as a hexadecimal value."
            }
          }
        }
      },
      "tags": [
        {
          "name": "debug"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/giwa/debug_traceTransaction"
      },
      "examples": [
        {
          "name": "debug_traceTransaction example",
          "params": [
            {
              "name": "transactionHash",
              "value": "0x79dfb44c80e7282b6a7d5a4e917c06ef15778df6f488682b0ee2a1677d6dbae0"
            }
          ],
          "result": {
            "name": "debug_traceTransaction result",
            "value": {
              "from": "0x5ad176ebb13cabe62ee7c07f52a67b4a48cbef83",
              "gas": "0x61a80",
              "gasUsed": "0x98d2",
              "input": "0xda1750b0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000010000000404624044d1509a0460ae9dc9236b04602aaee65ef7045e993727d9b3",
              "to": "0xbbe55e29bbc6d71ecab1ac011c9ac5206ab2fe74",
              "type": "CALL",
              "value": "0x0"
            }
          }
        }
      ]
    }
  ],
  "servers": [
    {
      "name": "Debug API",
      "url": "https://docs-demo.giwa-sepolia.quiknode.pro"
    }
  ]
}