> ## Documentation Index
> Fetch the complete documentation index at: https://tokenterminal.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# blur_v1_ethereum

> Tables in tt-contracts.blur_v1_ethereum

## Tables

### Blend\_BuyLocked\_event

NFT purchase events from Blur's Blend peer-to-peer lending protocol on Ethereum, tracking when buyers acquire locked NFTs with active liens. Records include buyer/seller addresses, collection contracts, token IDs, and lien identifiers for analyzing NFT-backed loan liquidations and secondary market activity.

<Accordion title="Columns">
  | Column             | Type        | Description                                                                                                                                          |
  | ------------------ | ----------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- |
  | `block_timestamp`  | `TIMESTAMP` | Timestamp when the block was produced. UTC timezone, millisecond precision.                                                                          |
  | `block_number`     | `INT64`     | Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block's position in the blockchain. |
  | `transaction_hash` | `STRING`    | Unique identifier for the transaction. 66-character hex string including 0x prefix.                                                                  |
  | `log_index`        | `INT64`     | Position of the event within the block's transaction logs. Zero-indexed integer representing the sequential order of log emission.                   |
  | `address`          | `STRING`    | Contract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.                                                              |
  | `removed`          | `BOOL`      | Boolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.                                         |
  | `in_lienId`        | `STRING`    | Unique identifier for a lien position in the Blur Blend lending protocol. Numeric string representation of the lien's ID.                            |
  | `in_collection`    | `STRING`    | Contract address of the NFT collection involved in the transaction. Hex-encoded, 0x-prefixed, 42-character string.                                   |
  | `in_buyer`         | `STRING`    | Address of the account purchasing tokens or assets in the transaction. Hex-encoded, 0x-prefixed, 42-character string.                                |
  | `in_seller`        | `STRING`    | Address of the account selling tokens or assets in the transaction. Hex-encoded, 0x-prefixed, 42-character string.                                   |
  | `in_tokenId`       | `STRING`    | Unique identifier for a non-fungible token within its contract. Numeric string representation of the token's ID.                                     |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_buyer                                  | in\_lienId | in\_seller                                 | log\_index | in\_tokenId | block\_number | in\_collection                             | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ------------------------------------------ | ---------- | ------------------------------------------ | ---------- | ----------- | ------------- | ------------------------------------------ | ------------------------ | ------------------------------------------------------------------ |
  | 0x29469395eaf6f95920e59f858042f0e28d98a20b | false   | 0xc9eb3e456af6971d7dcb3064a162926bf3697fe3 | 31962      | 0x869dd519c431732155b93bb1a8689f51e40c6a2d | 289        | 5987        | 17560943      | 0x306b1ea3ecdf94ab739f1910bbda052ed4a9f949 | 2023-06-26T03:30:11.000Z | 0x80ff148cde5f2de0e4ef9b69abde5abc7f3542d1439bb1888a5ac0353aa7532f |
  | 0x29469395eaf6f95920e59f858042f0e28d98a20b | false   | 0x9773cf24da21f0e752f4639247af0535c07206da | 31383      | 0x72a80114df86c9e16eb6e4f64f27a4c5c06e8759 | 186        | 18309       | 17565951      | 0x306b1ea3ecdf94ab739f1910bbda052ed4a9f949 | 2023-06-26T20:25:23.000Z | 0x4335215fe0f6dfb9cc97d562c11d904d1dd52f9e392622daf53fc97e9e34ea7b |
  | 0x29469395eaf6f95920e59f858042f0e28d98a20b | false   | 0x6ef3042430ed92fe0cbbc45cdabd0766c71b9533 | 31744      | 0x5665a1c37e1622e4d93190b20ee827ba2c3214d8 | 346        | 15165       | 17560454      | 0x306b1ea3ecdf94ab739f1910bbda052ed4a9f949 | 2023-06-26T01:50:59.000Z | 0xec70c57215977ef830adbc822d0299202fa0b79368050fc8b7f3f3868079147c |
</Accordion>

<Accordion title="Example Query">
  **Query with partition filter**

  ```sql theme={null}
  SELECT *
  FROM `tt-contracts.blur_v1_ethereum.Blend_BuyLocked_event`
  WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
  LIMIT 100
  ```
</Accordion>

***

### Blend\_buyLocked\_function

NFT loan buyout transactions from Blur's Blend peer-to-peer lending protocol on Ethereum. Records include lien details (loan amount, rate, collateral NFT), offer terms, and borrower/lender addresses for analyzing loan liquidations and secondary market activity.

<Accordion title="Columns">
  | Column             | Type                                                                                                                                                                        | Description                                                                                                                                                                                                                                                                              |
  | ------------------ | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | `block_timestamp`  | `TIMESTAMP`                                                                                                                                                                 | Timestamp when the block was produced. UTC timezone, millisecond precision.                                                                                                                                                                                                              |
  | `block_number`     | `INT64`                                                                                                                                                                     | Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block's position in the blockchain.                                                                                                                                     |
  | `transaction_hash` | `STRING`                                                                                                                                                                    | Unique identifier for the transaction. 66-character hex string including 0x prefix.                                                                                                                                                                                                      |
  | `trace_address`    | `STRING`                                                                                                                                                                    | Hierarchical position of the internal call within a transaction's execution trace. Comma-separated sequence of integers representing the call path, where each number indicates the index of the call at that nesting level, with null representing top-level calls.                     |
  | `status`           | `BOOL`                                                                                                                                                                      | Transaction execution outcome indicator. Boolean value where true represents successful execution and false represents failed execution.                                                                                                                                                 |
  | `from_address`     | `STRING`                                                                                                                                                                    | Address that initiated the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.                                                                                                                                                                                  |
  | `to_address`       | `STRING`                                                                                                                                                                    | Address receiving the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.                                                                                                                                                                                       |
  | `value`            | `FLOAT64`                                                                                                                                                                   | Amount of native cryptocurrency sent with the transaction. Floating-point representation in whole units (e.g., ETH, BNB, MATIC).                                                                                                                                                         |
  | `gas_used`         | `INT64`                                                                                                                                                                     | Amount of gas consumed by the transaction execution. Integer representing the actual computational steps used.                                                                                                                                                                           |
  | `gas`              | `INT64`                                                                                                                                                                     | Gas limit allocated for the transaction execution. Integer representing the maximum computational steps allowed.                                                                                                                                                                         |
  | `signature`        | `STRING`                                                                                                                                                                    | Function selector identifying which contract function was called. 10-character hex string including 0x prefix.                                                                                                                                                                           |
  | `in_lien`          | `STRUCT<lender STRING, borrower STRING, collection STRING, tokenId STRING, amount STRING, startTime STRING, rate STRING, auctionStartBlock STRING, auctionDuration STRING>` | Lien details for an existing loan being purchased or refinanced. Structured data containing lender address, borrower address, NFT collection address, token ID, loan amount in wei, start timestamp, interest rate in basis points, auction start block, and auction duration in blocks. |
  | `in_offer`         | `STRUCT<borrower STRING, lienId STRING, price STRING, expirationTime STRING, salt STRING, oracle STRING, fees ARRAY<STRUCT<rate STRING, recipient STRING>>>`                | Array of items being offered by the seller in the order. Each item specifies the token type, contract address, token identifier, and quantity being sold.                                                                                                                                |
  | `in_signature`     | `STRING`                                                                                                                                                                    | Cryptographic signature authorizing the order execution. Hex-encoded byte string used to verify the order was signed by the maker's private key.                                                                                                                                         |
</Accordion>

<Accordion title="Sample Data">
  | gas    | value | status | in\_lien                                                                                                                                                                                                                                                                                                       | gas\_used | in\_offer                                                                                                                                                                                                                                                  | signature  | to\_address                                | block\_number | from\_address                              | in\_signature                                                                                                                                                                                                                                                                                                                          | trace\_address | block\_timestamp         | transaction\_hash                                                  |
  | ------ | ----- | ------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------- | ------------------------------------------ | ------------- | ------------------------------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------- | ------------------------ | ------------------------------------------------------------------ |
  | 170600 | 0     | false  |                                                                                                                                                                                                                                                                                                                | 36775     |                                                                                                                                                                                                                                                            | 0xe7efc178 | 0x29469395eaf6f95920e59f858042f0e28d98a20b | 19141563      | 0x53eaa0d7f5e43d47b0b0e30b283e923601eaa80b |                                                                                                                                                                                                                                                                                                                                        |                | 2024-02-02T15:20:47.000Z | 0x91b87a0cbf8f31b3fd60e6483bc3253ed30ca49cfa956fa0d41a01ad37a96afb |
  | 170571 | 0     | false  |                                                                                                                                                                                                                                                                                                                | 36787     |                                                                                                                                                                                                                                                            | 0xe7efc178 | 0x29469395eaf6f95920e59f858042f0e28d98a20b | 19141559      | 0xacf967e499f8cacd2eac27a3cf3b956bcb748da9 |                                                                                                                                                                                                                                                                                                                                        |                | 2024-02-02T15:19:59.000Z | 0x754e6ebab988724d56ab3ebed483e0b9310cca847df4b72fc2dc37c56d6f9895 |
  | 257946 | 0     | true   | \{"rate":"0","amount":"790000000000000000","lender":"0x9835eaf32f65874942fc2b81e60a38c9e7095fbc","tokenId":"3506","borrower":"0x3ad848cd34a25c6dc64c878c7d4810720a15c279","startTime":"1706849447","collection":"0x23581767a106ae21c074b2276d25e5c3e136a68b","auctionDuration":"9000","auctionStartBlock":"0"} | 165029    | \{"fees":\[],"salt":"146906729574753892200578090950959432805","price":"1115899900000000000","lienId":"220220","oracle":"0x473ca1d29a136b935a96380ea342f296b4eea82c","borrower":"0x3ad848cd34a25c6dc64c878c7d4810720a15c279","expirationTime":"1706856506"} | 0xe7efc178 | 0x29469395eaf6f95920e59f858042f0e28d98a20b | 19138813      | 0x1ab1c070c7f1958dbfc5537340cd8056580c43fc | 0x330c2fc42e3b2afea7141aa54152cc12afd0473d8bb7ac8649a8ef8252bd35571d29ce3974c81f8810ce3e630e1f018d270e3d9ec0261e4e374b455e876976be1ccf40465f19bc7379a53e33502e0b14185efe1938b44b8daea88db0e29fdbba204a73e777a21c004c700ee6ae7fd1da50e09e2b8f1de2e64ca5c8c63d4b85bccd1b00000000000000000000000000000000000000000000000000000000012408f8 |                | 2024-02-02T06:03:35.000Z | 0x20fb60cd3790f89ec482751009efcbdd08e22cb48ce755fcde4bb9b7831b7d24 |
</Accordion>

<Accordion title="Example Query">
  **Query with partition filter**

  ```sql theme={null}
  SELECT *
  FROM `tt-contracts.blur_v1_ethereum.Blend_buyLocked_function`
  WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
  LIMIT 100
  ```
</Accordion>

***

### Blend\_buyLockedETH\_function

Liquidation purchase records from Blur's Blend NFT lending protocol on Ethereum, where third parties buy out locked collateral by repaying outstanding loans. Used to track forced loan repayments, collateral liquidations, and lien resolution activity with associated ETH values and interest rates.

<Accordion title="Columns">
  | Column             | Type                                                                                                                                                                        | Description                                                                                                                                                                                                                                                                              |
  | ------------------ | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | `block_timestamp`  | `TIMESTAMP`                                                                                                                                                                 | Timestamp when the block was produced. UTC timezone, millisecond precision.                                                                                                                                                                                                              |
  | `block_number`     | `INT64`                                                                                                                                                                     | Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block's position in the blockchain.                                                                                                                                     |
  | `transaction_hash` | `STRING`                                                                                                                                                                    | Unique identifier for the transaction. 66-character hex string including 0x prefix.                                                                                                                                                                                                      |
  | `trace_address`    | `STRING`                                                                                                                                                                    | Hierarchical position of the internal call within a transaction's execution trace. Comma-separated sequence of integers representing the call path, where each number indicates the index of the call at that nesting level, with null representing top-level calls.                     |
  | `status`           | `BOOL`                                                                                                                                                                      | Transaction execution outcome indicator. Boolean value where true represents successful execution and false represents failed execution.                                                                                                                                                 |
  | `from_address`     | `STRING`                                                                                                                                                                    | Address that initiated the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.                                                                                                                                                                                  |
  | `to_address`       | `STRING`                                                                                                                                                                    | Address receiving the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.                                                                                                                                                                                       |
  | `value`            | `FLOAT64`                                                                                                                                                                   | Amount of native cryptocurrency sent with the transaction. Floating-point representation in whole units (e.g., ETH, BNB, MATIC).                                                                                                                                                         |
  | `gas_used`         | `INT64`                                                                                                                                                                     | Amount of gas consumed by the transaction execution. Integer representing the actual computational steps used.                                                                                                                                                                           |
  | `gas`              | `INT64`                                                                                                                                                                     | Gas limit allocated for the transaction execution. Integer representing the maximum computational steps allowed.                                                                                                                                                                         |
  | `signature`        | `STRING`                                                                                                                                                                    | Function selector identifying which contract function was called. 10-character hex string including 0x prefix.                                                                                                                                                                           |
  | `in_lien`          | `STRUCT<lender STRING, borrower STRING, collection STRING, tokenId STRING, amount STRING, startTime STRING, rate STRING, auctionStartBlock STRING, auctionDuration STRING>` | Lien details for an existing loan being purchased or refinanced. Structured data containing lender address, borrower address, NFT collection address, token ID, loan amount in wei, start timestamp, interest rate in basis points, auction start block, and auction duration in blocks. |
  | `in_offer`         | `STRUCT<borrower STRING, lienId STRING, price STRING, expirationTime STRING, salt STRING, oracle STRING, fees ARRAY<STRUCT<rate STRING, recipient STRING>>>`                | Array of items being offered by the seller in the order. Each item specifies the token type, contract address, token identifier, and quantity being sold.                                                                                                                                |
  | `in_signature`     | `STRING`                                                                                                                                                                    | Cryptographic signature authorizing the order execution. Hex-encoded byte string used to verify the order was signed by the maker's private key.                                                                                                                                         |
</Accordion>

<Accordion title="Sample Data">
  | gas    | value               | status | in\_lien                                                                                                                                                                                                                                                                                                            | gas\_used | in\_offer                                                                                                                                                                                                                                                  | signature  | to\_address                                | block\_number | from\_address                              | in\_signature                                                                                                                                                                                                                                                                                                                          | trace\_address | block\_timestamp         | transaction\_hash                                                  |
  | ------ | ------------------- | ------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------- | ------------------------------------------ | ------------- | ------------------------------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------- | ------------------------ | ------------------------------------------------------------------ |
  | 199034 | 1885700000000000000 | false  |                                                                                                                                                                                                                                                                                                                     | 75752     |                                                                                                                                                                                                                                                            | 0x8553b234 | 0x29469395eaf6f95920e59f858042f0e28d98a20b | 19220778      | 0xd084dc697b3a06b58e34facdea0ac1596bd39af5 |                                                                                                                                                                                                                                                                                                                                        |                | 2024-02-13T18:12:11.000Z | 0x7bffbbbccc8742da3df678e706eb0d4ec64be9c855c2007cc6a2d2f124edde90 |
  | 187585 | 1139980000000000000 | true   | \{"rate":"0","amount":"470000000000000000","lender":"0xebc533011cba02b4cd3cdabfa627b447f6c4a4b2","tokenId":"9935","borrower":"0x88011e1e335e4dde0eb0dc37d23c57bdd00c543e","startTime":"1707823643","collection":"0x23581767a106ae21c074b2276d25e5c3e136a68b","auctionDuration":"9000","auctionStartBlock":"0"}      | 155191    | \{"fees":\[],"salt":"135664887353257064361308695128794303095","price":"1139980000000000000","lienId":"231971","oracle":"0x473ca1d29a136b935a96380ea342f296b4eea82c","borrower":"0x88011e1e335e4dde0eb0dc37d23c57bdd00c543e","expirationTime":"1710415831"} | 0x8553b234 | 0x29469395eaf6f95920e59f858042f0e28d98a20b | 19220172      | 0xb5fccad6ac6b5d6a58d1eaead9ecaec69f5db339 | 0x1d353cd6f5d41efbc826d21d8ba949a8849f3af3fd1f244736b7c8e9ce04c9b30b8d1881175e8d493c43e9cde8b4d7eed052380f90110b2ad545aaae876fcd1a1b1e6a9766863a62c236ec9d782385c4dd7fa500e72996dc066e14c6f00d26a45b669239ba53fcb7b024fa45352a506e7e8101b26f38121884c0bf8d9939f387a21b00000000000000000000000000000000000000000000000000000000012546c5 |                | 2024-02-13T16:08:47.000Z | 0xfad5cefec1d23f8e6feda813f797333c9f0abc49ef5d1ca899f21ec134b0cbfd |
  | 187643 | 1141000000000000000 | true   | \{"rate":"99830","amount":"1100000000000000000","lender":"0xff0b9681ef40fd0992ef52fd5bd94e0fa21c0359","tokenId":"2828","borrower":"0x31cc7d6cd8a3c863ef090984d5908e194cf8f372","startTime":"1707822251","collection":"0x23581767a106ae21c074b2276d25e5c3e136a68b","auctionDuration":"9000","auctionStartBlock":"0"} | 155247    | \{"fees":\[],"salt":"171717907111553848902760833844590068959","price":"1141000000000000000","lienId":"231955","oracle":"0x473ca1d29a136b935a96380ea342f296b4eea82c","borrower":"0x31cc7d6cd8a3c863ef090984d5908e194cf8f372","expirationTime":"1723374287"} | 0x8553b234 | 0x29469395eaf6f95920e59f858042f0e28d98a20b | 19220171      | 0xb5fccad6ac6b5d6a58d1eaead9ecaec69f5db339 | 0x47a498b433384ceed8e9d974b9c2e2476994343c5af37f3ad9cb295730aad66b299ee21e2f7e442bee46382659411ea2a95972a5b9775e71d4fe24757017e3dc1bdc04cd3cae621ff0f5a780a14fa102033067b64ec400ae3e58467ade33e07bed30dc2b3366d5a330e2f7ef03d9be2d0ed7be4bb632964b790b735a8cbe3b90f81c00000000000000000000000000000000000000000000000000000000012546c5 |                | 2024-02-13T16:08:35.000Z | 0x0fc0aec47717b921a908c334d1f736d4cc9b0eea1014da9bf457a98958c1febb |
</Accordion>

<Accordion title="Example Query">
  **Query with partition filter**

  ```sql theme={null}
  SELECT *
  FROM `tt-contracts.blur_v1_ethereum.Blend_buyLockedETH_function`
  WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
  LIMIT 100
  ```
</Accordion>

***

### Blend\_buyToBorrowLocked\_function

NFT-backed loan origination transactions from Blur's Blend protocol on Ethereum where users purchase an NFT and immediately collateralize it for a loan. Contains lien details (loan amount, interest rate, duration), NFT collection/tokenId, lender/borrower addresses, and signed offer data for analyzing buy-to-borrow lending activity.

<Accordion title="Columns">
  | Column             | Type                                                                                                                                                                                                                       | Description                                                                                                                                                                                                                                                                              |
  | ------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | `block_timestamp`  | `TIMESTAMP`                                                                                                                                                                                                                | Timestamp when the block was produced. UTC timezone, millisecond precision.                                                                                                                                                                                                              |
  | `block_number`     | `INT64`                                                                                                                                                                                                                    | Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block's position in the blockchain.                                                                                                                                     |
  | `transaction_hash` | `STRING`                                                                                                                                                                                                                   | Unique identifier for the transaction. 66-character hex string including 0x prefix.                                                                                                                                                                                                      |
  | `trace_address`    | `STRING`                                                                                                                                                                                                                   | Hierarchical position of the internal call within a transaction's execution trace. Comma-separated sequence of integers representing the call path, where each number indicates the index of the call at that nesting level, with null representing top-level calls.                     |
  | `status`           | `BOOL`                                                                                                                                                                                                                     | Transaction execution outcome indicator. Boolean value where true represents successful execution and false represents failed execution.                                                                                                                                                 |
  | `from_address`     | `STRING`                                                                                                                                                                                                                   | Address that initiated the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.                                                                                                                                                                                  |
  | `to_address`       | `STRING`                                                                                                                                                                                                                   | Address receiving the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.                                                                                                                                                                                       |
  | `value`            | `FLOAT64`                                                                                                                                                                                                                  | Amount of native cryptocurrency sent with the transaction. Floating-point representation in whole units (e.g., ETH, BNB, MATIC).                                                                                                                                                         |
  | `gas_used`         | `INT64`                                                                                                                                                                                                                    | Amount of gas consumed by the transaction execution. Integer representing the actual computational steps used.                                                                                                                                                                           |
  | `gas`              | `INT64`                                                                                                                                                                                                                    | Gas limit allocated for the transaction execution. Integer representing the maximum computational steps allowed.                                                                                                                                                                         |
  | `signature`        | `STRING`                                                                                                                                                                                                                   | Function selector identifying which contract function was called. 10-character hex string including 0x prefix.                                                                                                                                                                           |
  | `in_lien`          | `STRUCT<lender STRING, borrower STRING, collection STRING, tokenId STRING, amount STRING, startTime STRING, rate STRING, auctionStartBlock STRING, auctionDuration STRING>`                                                | Lien details for an existing loan being purchased or refinanced. Structured data containing lender address, borrower address, NFT collection address, token ID, loan amount in wei, start timestamp, interest rate in basis points, auction start block, and auction duration in blocks. |
  | `in_sellInput`     | `STRUCT<offer STRUCT<borrower STRING, lienId STRING, price STRING, expirationTime STRING, salt STRING, oracle STRING, fees ARRAY<STRUCT<rate STRING, recipient STRING>>>, signature STRING>`                               | Purchase offer parameters for the NFT being sold to fund the loan. Contains price, lien details, oracle address, fees, borrower signature, and offer expiration timestamp.                                                                                                               |
  | `in_loanInput`     | `STRUCT<offer STRUCT<lender STRING, collection STRING, totalAmount STRING, minAmount STRING, maxAmount STRING, auctionDuration STRING, salt STRING, expirationTime STRING, rate STRING, oracle STRING>, signature STRING>` | Structured input parameters for the new loan offer being created. Contains offer terms (interest rate, amounts, oracle, collection, duration) and cryptographic signature authorizing the loan.                                                                                          |
  | `in_loanAmount`    | `STRING`                                                                                                                                                                                                                   | Amount of the new loan being taken out to refinance the existing lien, denominated in wei. Represents the principal value borrowed in the buy-to-borrow transaction on Blur's Blend protocol.                                                                                            |
  | `out_lienId`       | `STRING`                                                                                                                                                                                                                   | Unique identifier for the newly created lien on Blur's Blend protocol after the buyToBorrow operation executes. Returns null when the transaction fails (status=false).                                                                                                                  |
</Accordion>

<Accordion title="Sample Data">
  | gas    | value | status | in\_lien                                                                                                                                                                                                                                                                                                            | gas\_used | signature  | out\_lienId | to\_address                                | block\_number | from\_address                              | in\_loanInput                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         | in\_sellInput                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              | in\_loanAmount      | trace\_address | block\_timestamp         | transaction\_hash                                                  |
  | ------ | ----- | ------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------- | ---------- | ----------- | ------------------------------------------ | ------------- | ------------------------------------------ | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------- | -------------- | ------------------------ | ------------------------------------------------------------------ |
  | 215299 | 0     | false  |                                                                                                                                                                                                                                                                                                                     | 51950     | 0x2e2fb18b |             | 0x29469395eaf6f95920e59f858042f0e28d98a20b | 23026149      | 0xc644689500b08ba0ab1a4972bf129955468b7bda |                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |                     |                | 2025-07-29T17:01:59.000Z | 0x7c0d836498a06647adfbc2cd68d4ffaead54907cdf75437f655e3965772066c5 |
  | 215325 | 0     | true   | \{"rate":"2350","amount":"1300000000000000000","lender":"0x9f78a31cde5ec7eca61166a1726ad1e2a1658371","tokenId":"14392","borrower":"0x4263eb5638e8bf83af72ccde9b7c50feacc4fe4a","startTime":"1753800767","collection":"0x524cab2ec69124574082676e6f654a18df49a048","auctionDuration":"9000","auctionStartBlock":"0"} | 201249    | 0x2e2fb18b | 409413      | 0x29469395eaf6f95920e59f858042f0e28d98a20b | 23026695      | 0x904d00dd4b3e1f00e05bf904723a078b54e26bbb | \{"offer":\{"rate":"3010","salt":"226725852855971298328073968852103351571","lender":"0x218e312ff5181290a46e3f87a73a8ad40c05a944","oracle":"0x473ca1d29a136b935a96380ea342f296b4eea82c","maxAmount":"1400000000000000000","minAmount":"0","collection":"0x524cab2ec69124574082676e6f654a18df49a048","totalAmount":"21000000000000000000","expirationTime":"1785336790","auctionDuration":"9000"},"signature":"0x57bc77c1aaa19e39fea4c91bae48deaa0d1ea6136a4a0f08d14cdd004d4a46fd5741f7fdab8fa92e4baff192423eebcfcd2c56338247577ef0e9bf22bb8f6dfc1b3ace2624c2250044ce647cb9d80dc8053741e72861dfac2cee9fc21bd4c2256438dca2abeeddfdada99139c18920c4a9a886e03d9c8e6247c5fac5a12cf92d181b00000000000000000000000000000000000000000000000000000000015f5c02"} | \{"offer":\{"fees":\[],"salt":"134859331397598474494296742846919148316","price":"1655068800000002500","lienId":"409371","oracle":"0x473ca1d29a136b935a96380ea342f296b4eea82c","borrower":"0x4263eb5638e8bf83af72ccde9b7c50feacc4fe4a","expirationTime":"1753818630"},"signature":"0xf7a24582b1b2b0d572f038b743266ca76af9192175b1a80a47168c2ce4d95e4319f922e1da94068020ef2ead3f143c0934bfefe4522a5e6743ee17840e92d5b01c6990f24c39f2cb45bd46cc0d597174ff43f9fecadbcff7ffebe226d7c70cdc8f533eb5c5cf62cfa030c7eadf5f4c7fa3f2ff23844142652ef9fd8581b78639001c00000000000000000000000000000000000000000000000000000000015f5c02"} | 1310000000000000000 |                | 2025-07-29T18:51:35.000Z | 0x08fff7feedc235cd3baa7251a5aacc1c76f6783df5884c648d97566dd43ef1d0 |
  | 215303 | 0     | true   | \{"rate":"1990","amount":"800000000000000000","lender":"0x09b9c041d991298781c05021cf1482e915923bd1","tokenId":"5729","borrower":"0x4263eb5638e8bf83af72ccde9b7c50feacc4fe4a","startTime":"1753724495","collection":"0x8a90cab2b38dba80c64b7734e58ee1db38b8992e","auctionDuration":"9000","auctionStartBlock":"0"}   | 201229    | 0x2e2fb18b | 409291      | 0x29469395eaf6f95920e59f858042f0e28d98a20b | 23022102      | 0x640d1fa82889793aaf04e6c665e8f3a87fefa7d4 | \{"offer":\{"rate":"4880","salt":"3334226652093671514977442364537668629","lender":"0x7ff2ac88b121fe54be5b5ab7bf8b9471d43ff50c","oracle":"0x473ca1d29a136b935a96380ea342f296b4eea82c","maxAmount":"900000000000000000","minAmount":"0","collection":"0x8a90cab2b38dba80c64b7734e58ee1db38b8992e","totalAmount":"900000000000000000","expirationTime":"1756342075","auctionDuration":"9000"},"signature":"0x8b827cf927012a90fcd1cb7469bba4a952645efac88ace9b44d93df58097fd5f6ab086432f2a0f54c2cfc8de8d27a815d4f3267d64d98aada064e1b1ac82ba241b93be02ea11c0893c06d5dfa8a57227853a70984939c908392c062b098ec686b80f30a600668ede73e4cb60a7da67e33d49278e7aad334f3d96bdaa2cff6f05781c00000000000000000000000000000000000000000000000000000000015f4a11"}      | \{"offer":\{"fees":\[],"salt":"149033826292436056442022251861639424452","price":"1043900000000000000","lienId":"409198","oracle":"0x473ca1d29a136b935a96380ea342f296b4eea82c","borrower":"0x4263eb5638e8bf83af72ccde9b7c50feacc4fe4a","expirationTime":"1754344102"},"signature":"0xab98549e6a070795974dcd906c37c1be31fd7fe1b9175df01c0968d07a9b96b705b2ac760b8990df7f2d8f5b1afc19e7f17f43b99a603aaea6dcd609185598191b3339c88c2b7cea5fed5b37723cee4be68a40b697178492a8a1af41b7668874442ff4b19ca7c7b9a8274df9a0ebf3a91b6feeb72807dfa7b0043eadec767b75af1b00000000000000000000000000000000000000000000000000000000015f4a11"} | 900000000000000000  |                | 2025-07-29T03:26:59.000Z | 0x1fb7bcc27a66826cc0867edcd1abf39cdafe5cc82e7e71096899545c42feaa28 |
</Accordion>

<Accordion title="Example Query">
  **Query with partition filter**

  ```sql theme={null}
  SELECT *
  FROM `tt-contracts.blur_v1_ethereum.Blend_buyToBorrowLocked_function`
  WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
  LIMIT 100
  ```
</Accordion>

***

### Blend\_buyToBorrowLockedETH\_function

Blur Blend NFT lending protocol function call records for buyToBorrow operations with locked ETH on Ethereum. Tracks NFT-backed loan originations where buyers immediately borrow against purchased NFTs, including lien details (loan amount, interest rate, duration) and collateral information (collection, token ID).

<Accordion title="Columns">
  | Column             | Type                                                                                                                                                                                                                       | Description                                                                                                                                                                                                                                                                              |
  | ------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | `block_timestamp`  | `TIMESTAMP`                                                                                                                                                                                                                | Timestamp when the block was produced. UTC timezone, millisecond precision.                                                                                                                                                                                                              |
  | `block_number`     | `INT64`                                                                                                                                                                                                                    | Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block's position in the blockchain.                                                                                                                                     |
  | `transaction_hash` | `STRING`                                                                                                                                                                                                                   | Unique identifier for the transaction. 66-character hex string including 0x prefix.                                                                                                                                                                                                      |
  | `trace_address`    | `STRING`                                                                                                                                                                                                                   | Hierarchical position of the internal call within a transaction's execution trace. Comma-separated sequence of integers representing the call path, where each number indicates the index of the call at that nesting level, with null representing top-level calls.                     |
  | `status`           | `BOOL`                                                                                                                                                                                                                     | Transaction execution outcome indicator. Boolean value where true represents successful execution and false represents failed execution.                                                                                                                                                 |
  | `from_address`     | `STRING`                                                                                                                                                                                                                   | Address that initiated the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.                                                                                                                                                                                  |
  | `to_address`       | `STRING`                                                                                                                                                                                                                   | Address receiving the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.                                                                                                                                                                                       |
  | `value`            | `FLOAT64`                                                                                                                                                                                                                  | Amount of native cryptocurrency sent with the transaction. Floating-point representation in whole units (e.g., ETH, BNB, MATIC).                                                                                                                                                         |
  | `gas_used`         | `INT64`                                                                                                                                                                                                                    | Amount of gas consumed by the transaction execution. Integer representing the actual computational steps used.                                                                                                                                                                           |
  | `gas`              | `INT64`                                                                                                                                                                                                                    | Gas limit allocated for the transaction execution. Integer representing the maximum computational steps allowed.                                                                                                                                                                         |
  | `signature`        | `STRING`                                                                                                                                                                                                                   | Function selector identifying which contract function was called. 10-character hex string including 0x prefix.                                                                                                                                                                           |
  | `in_lien`          | `STRUCT<lender STRING, borrower STRING, collection STRING, tokenId STRING, amount STRING, startTime STRING, rate STRING, auctionStartBlock STRING, auctionDuration STRING>`                                                | Lien details for an existing loan being purchased or refinanced. Structured data containing lender address, borrower address, NFT collection address, token ID, loan amount in wei, start timestamp, interest rate in basis points, auction start block, and auction duration in blocks. |
  | `in_sellInput`     | `STRUCT<offer STRUCT<borrower STRING, lienId STRING, price STRING, expirationTime STRING, salt STRING, oracle STRING, fees ARRAY<STRUCT<rate STRING, recipient STRING>>>, signature STRING>`                               | Structured input parameters for the NFT sale offer being used to purchase the collateral. Contains offer details (price, lien ID, expiration) and cryptographic signature from the borrower.                                                                                             |
  | `in_loanInput`     | `STRUCT<offer STRUCT<lender STRING, collection STRING, totalAmount STRING, minAmount STRING, maxAmount STRING, auctionDuration STRING, salt STRING, expirationTime STRING, rate STRING, oracle STRING>, signature STRING>` | Structured input parameters for the new loan offer being taken. Contains nested fields including lender address, interest rate, loan amounts, collection address, oracle address, expiration time, auction duration, and cryptographic signature for offer verification.                 |
  | `in_loanAmount`    | `STRING`                                                                                                                                                                                                                   | Loan amount in wei requested by the borrower from the lender's offer. Always denominated in ETH, represented as a string integer for precision.                                                                                                                                          |
  | `out_lienId`       | `STRING`                                                                                                                                                                                                                   | Unique identifier for the newly created lien after the buyToBorrowLockedETH transaction executes successfully. Returns null when the transaction fails (status=false).                                                                                                                   |
</Accordion>

<Accordion title="Sample Data">
  | gas    | value               | status | in\_lien                                                                                                                                                                                                                                                                                                           | gas\_used | signature  | out\_lienId | to\_address                                | block\_number | from\_address                              | in\_loanInput                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           | in\_sellInput                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              | in\_loanAmount      | trace\_address | block\_timestamp         | transaction\_hash                                                  |
  | ------ | ------------------- | ------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | --------- | ---------- | ----------- | ------------------------------------------ | ------------- | ------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------- | -------------- | ------------------------ | ------------------------------------------------------------------ |
  | 244123 | 660000000000000000  | false  |                                                                                                                                                                                                                                                                                                                    | 81342     | 0xb2a0bb86 |             | 0x29469395eaf6f95920e59f858042f0e28d98a20b | 19828840      | 0x162af4fd4d2f2d3a721aeee22e3cbb640f23735a |                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |                     |                | 2024-05-09T00:13:59.000Z | 0x6939fa3f3159ccc31838411bad64524082df7fcf26b6137019fbb122207f0cdd |
  | 226322 | 1488999446651753000 | true   | \{"rate":"1160","amount":"3400000000000000000","lender":"0x8dc1a1493f7a94e89599a2153c994ae29f6aff0f","tokenId":"3502","borrower":"0xa69833b9fda816f1bfc79517e7932e64708df0dd","startTime":"1715230163","collection":"0x5af0d9827e0c53e4799bb226655a1de152a425a5","auctionDuration":"9000","auctionStartBlock":"0"} | 206289    | 0xb2a0bb86 | 291548      | 0x29469395eaf6f95920e59f858042f0e28d98a20b | 19832312      | 0x8bc068613314eeb17fdc528d2f1227a3bb0e1df4 | \{"offer":\{"rate":"2510","salt":"277792120015539990056370041848627304876","lender":"0x068648e88ed22d73e893ff6299a9c3679def4843","oracle":"0x473ca1d29a136b935a96380ea342f296b4eea82c","maxAmount":"3100000000000000000","minAmount":"0","collection":"0x5af0d9827e0c53e4799bb226655a1de152a425a5","totalAmount":"49600000000000000000","expirationTime":"1746791565","auctionDuration":"9000"},"signature":"0xbc1cee41266e53db485ae96a93225b426d1824e265633cb1a1cc809e94a4201e344a88516f0863d388227df2eadd45b453f7b84400196eb0b8f71983fae805931bcb72e9a29f073748a84380e648fa2fee04c3026766be08406f4794653aa336a467789898bc698d54bf1622ce807ce5c883a37097b63b549ebb947c3fb97963c21c00000000000000000000000000000000000000000000000000000000012e9df3"}   | \{"offer":\{"fees":\[],"salt":"8729555256950878680257043489792639768","price":"4399000000000000000","lienId":"291361","oracle":"0x473ca1d29a136b935a96380ea342f296b4eea82c","borrower":"0xa69833b9fda816f1bfc79517e7932e64708df0dd","expirationTime":"1715256266"},"signature":"0x718bbd54adf0dbce967435c288db370a8e84724335a048c955a6a3270d90c81e73b8315619d6a914f36f45ed53d3123bd63fe3b233dcf080d4ac64276edfcdcd1c1cda12c7acebcae02a2e12aebe66f8f24dd81793a983429fceecb5bc779a3e296485302ae940de2b4260f987c8e7a8a519e6581f88389212b240d28be93c832d1c00000000000000000000000000000000000000000000000000000000012e9df3"}   | 2910000000000000000 |                | 2024-05-09T11:53:23.000Z | 0xca6d86762d5a17baa5b009a92bbb897f8d0b56db83b6db86b8227bd8eeeb1a05 |
  | 219762 | 568000000000000000  | true   | \{"rate":"340","amount":"3400000000000000000","lender":"0x068648e88ed22d73e893ff6299a9c3679def4843","tokenId":"8759","borrower":"0xa69833b9fda816f1bfc79517e7932e64708df0dd","startTime":"1715292251","collection":"0x5af0d9827e0c53e4799bb226655a1de152a425a5","auctionDuration":"9000","auctionStartBlock":"0"}  | 184661    | 0xb2a0bb86 | 291804      | 0x29469395eaf6f95920e59f858042f0e28d98a20b | 19835790      | 0xba40917080746543702c90a75d2fd36c7f333395 | \{"offer":\{"rate":"5100","salt":"165696594341570058451250666576858958072","lender":"0xa69833b9fda816f1bfc79517e7932e64708df0dd","oracle":"0x473ca1d29a136b935a96380ea342f296b4eea82c","maxAmount":"3900000000000000000","minAmount":"0","collection":"0x5af0d9827e0c53e4799bb226655a1de152a425a5","totalAmount":"3997500000000000000000","expirationTime":"1715301182","auctionDuration":"9000"},"signature":"0x1c087e5e3189fa575b1d8bf412b0dcb41dd52c8cd8f2d7a436ccd9661f765f164cecd91eb1cbdec8c04627c48b1aeb5aaa34fe92a3b0bca8efcffd8c0f1421561cf435bf2bc0be81dce23a9f9ac0ae0f18dd66324b35cea363193d24020323235f77bd2a78366f6383abc635bf9d1a0d1b1ff38efa2022dde1a50a83db09168bbe1c00000000000000000000000000000000000000000000000000000000012eab89"} | \{"offer":\{"fees":\[],"salt":"160153228766382793076667719055436824738","price":"4428000000000000000","lienId":"291768","oracle":"0x473ca1d29a136b935a96380ea342f296b4eea82c","borrower":"0xa69833b9fda816f1bfc79517e7932e64708df0dd","expirationTime":"1715297930"},"signature":"0xbf1d8df6494a60c22d663b1e9eb31d9db6c9c90a1bb0afc6b269224afe9931b0063a7ae66e0d26f4883968e92dee4f84bc31cfc41ce5a06779ac3319348aff941bfa0a158d1b0b1764252898bed12ab2ed7fad9b393009e9c3b61640333f6823af12ad506f19d9221b173281a8b20f05cce79c559108f1ad428fc83788e339e2611c00000000000000000000000000000000000000000000000000000000012eab89"} | 3860000000000000000 |                | 2024-05-09T23:33:23.000Z | 0x6adbaf453e4f2c9cd6608311c1fc15d20ac38242e9138685a7b1c93f9fdeca37 |
</Accordion>

<Accordion title="Example Query">
  **Query with partition filter**

  ```sql theme={null}
  SELECT *
  FROM `tt-contracts.blur_v1_ethereum.Blend_buyToBorrowLockedETH_function`
  WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
  LIMIT 100
  ```
</Accordion>

***

### Blend\_LoanOfferTaken\_event

NFT-collateralized loan origination events from Blur's Blend peer-to-peer lending protocol on Ethereum. Records loan executions with borrower, lender, NFT collateral details, loan amounts in wei, interest rates, and lien identifiers for analyzing NFT lending activity.

<Accordion title="Columns">
  | Column               | Type        | Description                                                                                                                                                                                      |
  | -------------------- | ----------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
  | `block_timestamp`    | `TIMESTAMP` | Timestamp when the block was produced. UTC timezone, millisecond precision.                                                                                                                      |
  | `block_number`       | `INT64`     | Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block's position in the blockchain.                                             |
  | `transaction_hash`   | `STRING`    | Unique identifier for the transaction. 66-character hex string including 0x prefix.                                                                                                              |
  | `log_index`          | `INT64`     | Position of the event within the block's transaction logs. Zero-indexed integer representing the sequential order of log emission.                                                               |
  | `address`            | `STRING`    | Contract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.                                                                                                          |
  | `removed`            | `BOOL`      | Boolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.                                                                                     |
  | `in_offerHash`       | `STRING`    | Unique identifier hash of the loan offer that was accepted by the borrower. Hex-encoded, 0x-prefixed 64-character string used to reference the specific terms of this Blend lending transaction. |
  | `in_lienId`          | `STRING`    | Unique identifier for a lien position in the Blur Blend lending protocol. Numeric string representation of the lien's ID.                                                                        |
  | `in_collection`      | `STRING`    | Contract address of the NFT collection involved in the transaction. Hex-encoded, 0x-prefixed, 42-character string.                                                                               |
  | `in_lender`          | `STRING`    | Address of the lender providing funds in the lending or loan transaction. Hex-encoded, 0x-prefixed, 42-character string.                                                                         |
  | `in_borrower`        | `STRING`    | Address of the borrower in the lending or loan transaction. Hex-encoded, 0x-prefixed, 42-character string.                                                                                       |
  | `in_loanAmount`      | `STRING`    | Principal amount of the loan denominated in the smallest unit of the payment token (typically wei for ETH). Values represent the initial debt obligation owed by the borrower to the lender.     |
  | `in_rate`            | `STRING`    | Interest rate value used in the protocol operation. Numeric string representation without decimal formatting.                                                                                    |
  | `in_tokenId`         | `STRING`    | Unique identifier for a non-fungible token within its contract. Numeric string representation of the token's ID.                                                                                 |
  | `in_auctionDuration` | `STRING`    | Duration of the liquidation auction period in seconds after a loan defaults. Typically set to 9000 seconds (2.5 hours) for Blur Blend NFT-backed loans.                                          |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | in\_rate | removed | in\_lender                                 | in\_lienId | log\_index | in\_tokenId | in\_borrower                               | block\_number | in\_offerHash                                                      | in\_collection                             | in\_loanAmount     | block\_timestamp         | transaction\_hash                                                  | in\_auctionDuration |
  | ------------------------------------------ | -------- | ------- | ------------------------------------------ | ---------- | ---------- | ----------- | ------------------------------------------ | ------------- | ------------------------------------------------------------------ | ------------------------------------------ | ------------------ | ------------------------ | ------------------------------------------------------------------ | ------------------- |
  | 0x29469395eaf6f95920e59f858042f0e28d98a20b | 0        | false   | 0x6ff412f54e10588a2cf0442ccfb228f866ff1684 | 5549       | 141        | 679         | 0x308fd47d492cf32d0f504c2a3e82bc25583b455b | 17310833      | 0x898901fa1451025e348f42d30e4764c94899b01c381901b5d868ec9d742c2d07 | 0x5af0d9827e0c53e4799bb226655a1de152a425a5 | 520000000000000000 | 2023-05-21T22:56:59.000Z | 0x8b81249c1e2507491a99bdc9784f0d67f1c57cd4ba7130c6262c3137d4e473ce | 9000                |
  | 0x29469395eaf6f95920e59f858042f0e28d98a20b | 0        | false   | 0x10eb84abd429fa4df8dcabbc7c2803822a5b82d9 | 1069       | 154        | 8700        | 0x42966eca78129e60b3ac05890e924c8af21b899c | 17305734      | 0xd4af8d5c9725e01476f6babc2bdb2340585b520b765e90b94dbc54918006bb79 | 0x5af0d9827e0c53e4799bb226655a1de152a425a5 | 630000000000000000 | 2023-05-21T05:40:35.000Z | 0x1a49530e53d7d46444d42269f3830cf56de5364a719d72b5129b68da0b65ccdb | 9000                |
  | 0x29469395eaf6f95920e59f858042f0e28d98a20b | 0        | false   | 0x7f9cb69e7059210dc1d999fcf2aad102c06f4558 | 1070       | 173        | 9722        | 0x42966eca78129e60b3ac05890e924c8af21b899c | 17307292      | 0xc00c34a3663ef6642483be9cd1b5495d1c6fb6d9db7cbbf5714b7d681e9afc11 | 0x5af0d9827e0c53e4799bb226655a1de152a425a5 | 630000000000000000 | 2023-05-21T10:56:47.000Z | 0xf1bf9fd267393741fb505116ad9bdad5bb783335e909b7bc07da6b5a948d7b29 | 9000                |
</Accordion>

<Accordion title="Example Query">
  **Query with partition filter**

  ```sql theme={null}
  SELECT *
  FROM `tt-contracts.blur_v1_ethereum.Blend_LoanOfferTaken_event`
  WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
  LIMIT 100
  ```
</Accordion>

***

### Blend\_Refinance\_event

Refinancing events from Blur's Blend NFT peer-to-peer lending protocol on Ethereum, capturing when existing loans (liens) are restructured with new lenders, loan amounts, interest rates, and auction durations. Used for analyzing loan rollover activity and refinancing terms across NFT collections.

<Accordion title="Columns">
  | Column                  | Type        | Description                                                                                                                                                  |
  | ----------------------- | ----------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------ |
  | `block_timestamp`       | `TIMESTAMP` | Timestamp when the block was produced. UTC timezone, millisecond precision.                                                                                  |
  | `block_number`          | `INT64`     | Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block's position in the blockchain.         |
  | `transaction_hash`      | `STRING`    | Unique identifier for the transaction. 66-character hex string including 0x prefix.                                                                          |
  | `log_index`             | `INT64`     | Position of the event within the block's transaction logs. Zero-indexed integer representing the sequential order of log emission.                           |
  | `address`               | `STRING`    | Contract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.                                                                      |
  | `removed`               | `BOOL`      | Boolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.                                                 |
  | `in_lienId`             | `STRING`    | Unique identifier for a lien position in the Blur Blend lending protocol. Numeric string representation of the lien's ID.                                    |
  | `in_collection`         | `STRING`    | Contract address of the NFT collection involved in the transaction. Hex-encoded, 0x-prefixed, 42-character string.                                           |
  | `in_newLender`          | `STRING`    | Address of the new lender who is providing the refinanced loan for the NFT collateral on Blur Blend. Hex-encoded, 0x-prefixed 40-character Ethereum address. |
  | `in_newAmount`          | `STRING`    | Updated amount of tokens in the position or loan. Numeric string representation in wei units (18 decimals).                                                  |
  | `in_newRate`            | `STRING`    | Updated stable borrow rate for the user after the mint operation. Numeric string representation in ray units (27 decimals).                                  |
  | `in_newAuctionDuration` | `STRING`    | Time window in seconds for the auction period on the refinanced lien. Commonly set to 9000 seconds (2.5 hours) based on sample data.                         |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_lienId | log\_index | in\_newRate | block\_number | in\_newAmount      | in\_newLender                              | in\_collection                             | block\_timestamp         | transaction\_hash                                                  | in\_newAuctionDuration |
  | ------------------------------------------ | ------- | ---------- | ---------- | ----------- | ------------- | ------------------ | ------------------------------------------ | ------------------------------------------ | ------------------------ | ------------------------------------------------------------------ | ---------------------- |
  | 0x29469395eaf6f95920e59f858042f0e28d98a20b | false   | 54851      | 213        | 0           | 17754638      | 100000000000000000 | 0x515a6c0e816f1096a5eaaf2b0516b9738c137c8c | 0x306b1ea3ecdf94ab739f1910bbda052ed4a9f949 | 2023-07-23T08:30:47.000Z | 0x4c0fa7940278a1b9aa8fdd59b57c1474a9e2f9527f0ba06d354e784b5c800956 | 9000                   |
  | 0x29469395eaf6f95920e59f858042f0e28d98a20b | false   | 46137      | 216        | 0           | 17753896      | 140000000000000000 | 0xb23a734f49ed11dc3b0dd3ff322b5df95220574e | 0x306b1ea3ecdf94ab739f1910bbda052ed4a9f949 | 2023-07-23T06:01:47.000Z | 0x7c0ff29a00f92abed3642068116d54558d7acdc4245b2316d491604cfcfb8907 | 9000                   |
  | 0x29469395eaf6f95920e59f858042f0e28d98a20b | false   | 10192      | 109        | 0           | 17754261      | 140000000000000000 | 0xcfbf3aa72bcc8af0ba064d9e7b83888495a280de | 0x306b1ea3ecdf94ab739f1910bbda052ed4a9f949 | 2023-07-23T07:15:11.000Z | 0x4601ff7844743fe417d3bb5b4470b8142b64cb18264d8e5e1deb40a79999b2ec | 9000                   |
</Accordion>

<Accordion title="Example Query">
  **Query with partition filter**

  ```sql theme={null}
  SELECT *
  FROM `tt-contracts.blur_v1_ethereum.Blend_Refinance_event`
  WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
  LIMIT 100
  ```
</Accordion>

***

### Blend\_Repay\_event

Loan repayment events from Blur's Blend NFT lending protocol on Ethereum, tracking when borrowers repay their NFT-backed loans by lien identifier and collection address. Used for analyzing loan lifecycle completion and borrower repayment behavior.

<Accordion title="Columns">
  | Column             | Type        | Description                                                                                                                                          |
  | ------------------ | ----------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- |
  | `block_timestamp`  | `TIMESTAMP` | Timestamp when the block was produced. UTC timezone, millisecond precision.                                                                          |
  | `block_number`     | `INT64`     | Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block's position in the blockchain. |
  | `transaction_hash` | `STRING`    | Unique identifier for the transaction. 66-character hex string including 0x prefix.                                                                  |
  | `log_index`        | `INT64`     | Position of the event within the block's transaction logs. Zero-indexed integer representing the sequential order of log emission.                   |
  | `address`          | `STRING`    | Contract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.                                                              |
  | `removed`          | `BOOL`      | Boolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.                                         |
  | `in_lienId`        | `STRING`    | Unique identifier for a lien position in the Blur Blend lending protocol. Numeric string representation of the lien's ID.                            |
  | `in_collection`    | `STRING`    | Contract address of the NFT collection involved in the transaction. Hex-encoded, 0x-prefixed, 42-character string.                                   |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_lienId | log\_index | block\_number | in\_collection                             | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ---------- | ---------- | ------------- | ------------------------------------------ | ------------------------ | ------------------------------------------------------------------ |
  | 0x29469395eaf6f95920e59f858042f0e28d98a20b | false   | 56337      | 194        | 17925028      | 0x306b1ea3ecdf94ab739f1910bbda052ed4a9f949 | 2023-08-16T04:32:23.000Z | 0xcb94f050a14c22250ebc418e550f60e23150cc4b44f883c02b85bcc377ce681a |
  | 0x29469395eaf6f95920e59f858042f0e28d98a20b | false   | 70396      | 422        | 17927956      | 0x306b1ea3ecdf94ab739f1910bbda052ed4a9f949 | 2023-08-16T14:22:35.000Z | 0xd2c30892967ac83c362555ab20094cc3b0fa313b1ca21454d74572433d64acbb |
  | 0x29469395eaf6f95920e59f858042f0e28d98a20b | false   | 70666      | 186        | 17926005      | 0x306b1ea3ecdf94ab739f1910bbda052ed4a9f949 | 2023-08-16T07:49:11.000Z | 0x5563ce8c41a0b0ebf31dc48a11392c9ce57316387398906db5c718649ab1ab43 |
</Accordion>

<Accordion title="Example Query">
  **Query with partition filter**

  ```sql theme={null}
  SELECT *
  FROM `tt-contracts.blur_v1_ethereum.Blend_Repay_event`
  WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
  LIMIT 100
  ```
</Accordion>

***

### Blend\_Seize\_event

NFT loan liquidation events from Blur's Blend peer-to-peer lending protocol on Ethereum, recording when lenders seize collateral NFTs from defaulted loans. Used for analyzing loan defaults, collateral seizures, and credit risk across NFT collections.

<Accordion title="Columns">
  | Column             | Type        | Description                                                                                                                                          |
  | ------------------ | ----------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- |
  | `block_timestamp`  | `TIMESTAMP` | Timestamp when the block was produced. UTC timezone, millisecond precision.                                                                          |
  | `block_number`     | `INT64`     | Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block's position in the blockchain. |
  | `transaction_hash` | `STRING`    | Unique identifier for the transaction. 66-character hex string including 0x prefix.                                                                  |
  | `log_index`        | `INT64`     | Position of the event within the block's transaction logs. Zero-indexed integer representing the sequential order of log emission.                   |
  | `address`          | `STRING`    | Contract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.                                                              |
  | `removed`          | `BOOL`      | Boolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.                                         |
  | `in_lienId`        | `STRING`    | Unique identifier for a lien position in the Blur Blend lending protocol. Numeric string representation of the lien's ID.                            |
  | `in_collection`    | `STRING`    | Contract address of the NFT collection involved in the transaction. Hex-encoded, 0x-prefixed, 42-character string.                                   |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_lienId | log\_index | block\_number | in\_collection                             | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ---------- | ---------- | ------------- | ------------------------------------------ | ------------------------ | ------------------------------------------------------------------ |
  | 0x29469395eaf6f95920e59f858042f0e28d98a20b | false   | 42700      | 233        | 18424075      | 0x306b1ea3ecdf94ab739f1910bbda052ed4a9f949 | 2023-10-25T01:45:35.000Z | 0x879c85cbdbcb1ccb3f19ae07c28dbb2c880b70ceaaf530747eabb9251ab76340 |
  | 0x29469395eaf6f95920e59f858042f0e28d98a20b | false   | 69383      | 255        | 18424090      | 0x306b1ea3ecdf94ab739f1910bbda052ed4a9f949 | 2023-10-25T01:48:35.000Z | 0x07be027e9cb7b1e5475c04041d1ab40dfdc01a01aa938cf328efe983f093ac1d |
  | 0x29469395eaf6f95920e59f858042f0e28d98a20b | false   | 106445     | 282        | 18429869      | 0x34d85c9cdeb23fa97cb08333b511ac86e1c4e258 | 2023-10-25T21:16:47.000Z | 0x1fc524c3e93f390881621852f5b89ba893080fdf0f778bb60678e1dc182b81f0 |
</Accordion>

<Accordion title="Example Query">
  **Query with partition filter**

  ```sql theme={null}
  SELECT *
  FROM `tt-contracts.blur_v1_ethereum.Blend_Seize_event`
  WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
  LIMIT 100
  ```
</Accordion>

***

### BlurAirdrop\_Claimed\_event

BLUR token airdrop claim events from Blur NFT marketplace on Ethereum. Records recipient addresses and claimed token amounts for tracking airdrop distribution to eligible users.

<Accordion title="Columns">
  | Column             | Type        | Description                                                                                                                                          |
  | ------------------ | ----------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- |
  | `block_timestamp`  | `TIMESTAMP` | Timestamp when the block was produced. UTC timezone, millisecond precision.                                                                          |
  | `block_number`     | `INT64`     | Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block's position in the blockchain. |
  | `transaction_hash` | `STRING`    | Unique identifier for the transaction. 66-character hex string including 0x prefix.                                                                  |
  | `log_index`        | `INT64`     | Position of the event within the block's transaction logs. Zero-indexed integer representing the sequential order of log emission.                   |
  | `address`          | `STRING`    | Contract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.                                                              |
  | `removed`          | `BOOL`      | Boolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.                                         |
  | `in_account`       | `STRING`    | Account address involved in the transaction or operation. Hex-encoded, 0x-prefixed, 42-character string.                                             |
  | `in_amount`        | `STRING`    | Input amount for the swap, transaction, or operation. Numeric string representation of token quantity in smallest denomination.                      |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_amount           | log\_index | in\_account                                | block\_number | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | -------------------- | ---------- | ------------------------------------------ | ------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0xf2d15c0a89428c9251d71a0e29b39ff1e86bce25 | false   | 984773918065825100   | 146        | 0x60883aede67198cbf1a5fa33c7ebf85050eb84f1 | 16768036      | 2023-03-06T08:09:47.000Z | 0x8d882c4bcf72602114d77b3c3748340ca6ffb0e36661199e010e979c50f730b2 |
  | 0xf2d15c0a89428c9251d71a0e29b39ff1e86bce25 | false   | 17878440549447387000 | 341        | 0x7cdd717a3336f4f661d8b04f5d636e06f95fc1c0 | 16768468      | 2023-03-06T09:36:23.000Z | 0xc7e760aab344db32b174d5567f93008c5511623b83480b9f6f391ef52c299608 |
  | 0xf2d15c0a89428c9251d71a0e29b39ff1e86bce25 | false   | 17878440549447387000 | 137        | 0x20453968fd558cec52c81ed2454fd0b47f6a4a1b | 16772426      | 2023-03-06T22:59:11.000Z | 0x346343a376c9081ecd549686e04d4be10784142ad39410557c3f20956c3e5845 |
</Accordion>

<Accordion title="Example Query">
  **Query with partition filter**

  ```sql theme={null}
  SELECT *
  FROM `tt-contracts.blur_v1_ethereum.BlurAirdrop_Claimed_event`
  WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
  LIMIT 100
  ```
</Accordion>

***

### BlurAirdrop2\_Claimed\_event

BLUR token claims from Blur NFT marketplace's second airdrop distribution on Ethereum. Records individual claim transactions with recipient addresses and token amounts for tracking airdrop participation and distribution analysis.

<Accordion title="Columns">
  | Column             | Type        | Description                                                                                                                                          |
  | ------------------ | ----------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- |
  | `block_timestamp`  | `TIMESTAMP` | Timestamp when the block was produced. UTC timezone, millisecond precision.                                                                          |
  | `block_number`     | `INT64`     | Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block's position in the blockchain. |
  | `transaction_hash` | `STRING`    | Unique identifier for the transaction. 66-character hex string including 0x prefix.                                                                  |
  | `log_index`        | `INT64`     | Position of the event within the block's transaction logs. Zero-indexed integer representing the sequential order of log emission.                   |
  | `address`          | `STRING`    | Contract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.                                                              |
  | `removed`          | `BOOL`      | Boolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.                                         |
  | `in_account`       | `STRING`    | Account address involved in the transaction or operation. Hex-encoded, 0x-prefixed, 42-character string.                                             |
  | `in_amount`        | `STRING`    | Input amount for the swap, transaction, or operation. Numeric string representation of token quantity in smallest denomination.                      |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_amount             | log\_index | in\_account                                | block\_number | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ---------------------- | ---------- | ------------------------------------------ | ------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0xb38283cb75faabb384c22f97c633606265ddf093 | false   | 375931924057503700000  | 256        | 0x400aabcbbe8348b463a5ed2c0eba227a60c731be | 18628079      | 2023-11-22T15:10:23.000Z | 0x39328086fc88b4851013362a9999a6ed5f1c194f96d202c8beff48f590078af4 |
  | 0xb38283cb75faabb384c22f97c633606265ddf093 | false   | 329663379558118600000  | 256        | 0x114c8bb55cd5823114c37aa2ee58305b32646c42 | 18627940      | 2023-11-22T14:42:35.000Z | 0x1339890db82ad6c41943aed72833376c1070502948e8c07ae518e66485d35650 |
  | 0xb38283cb75faabb384c22f97c633606265ddf093 | false   | 3065291073084260500000 | 256        | 0xe0c15524a2f0028daa3180fa8b5660cda9fd4dc9 | 18624676      | 2023-11-22T03:42:59.000Z | 0x4a8212388930e34cca40ff41cd621e7b7474e730e8f7c4fc46034b1877e83564 |
</Accordion>

<Accordion title="Example Query">
  **Query with partition filter**

  ```sql theme={null}
  SELECT *
  FROM `tt-contracts.blur_v1_ethereum.BlurAirdrop2_Claimed_event`
  WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
  LIMIT 100
  ```
</Accordion>

***

### BlurExchange\_OrdersMatched\_event

NFT order matching events from Blur marketplace on Ethereum, containing buy and sell order details including price, token ID, collection address, maker/taker addresses, and optional creator fees for tracking secondary market trades.

<Accordion title="Columns">
  | Column             | Type                                                                                                                                                                                                                                                                           | Description                                                                                                                                                                      |
  | ------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | `block_timestamp`  | `TIMESTAMP`                                                                                                                                                                                                                                                                    | Timestamp when the block was produced. UTC timezone, millisecond precision.                                                                                                      |
  | `block_number`     | `INT64`                                                                                                                                                                                                                                                                        | Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block's position in the blockchain.                             |
  | `transaction_hash` | `STRING`                                                                                                                                                                                                                                                                       | Unique identifier for the transaction. 66-character hex string including 0x prefix.                                                                                              |
  | `log_index`        | `INT64`                                                                                                                                                                                                                                                                        | Position of the event within the block's transaction logs. Zero-indexed integer representing the sequential order of log emission.                                               |
  | `address`          | `STRING`                                                                                                                                                                                                                                                                       | Contract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.                                                                                          |
  | `removed`          | `BOOL`                                                                                                                                                                                                                                                                         | Boolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.                                                                     |
  | `in_maker`         | `STRING`                                                                                                                                                                                                                                                                       | Address of the order maker who created the original order. Hex-encoded, 0x-prefixed, 42-character string.                                                                        |
  | `in_taker`         | `STRING`                                                                                                                                                                                                                                                                       | Address of the order taker who filled or executed the order. Hex-encoded, 0x-prefixed, 42-character string.                                                                      |
  | `in_sell`          | `STRUCT<trader STRING, side INT64, matchingPolicy STRING, collection STRING, tokenId STRING, amount STRING, paymentToken STRING, price STRING, listingTime STRING, expirationTime STRING, fees ARRAY<STRUCT<rate STRING, recipient STRING>>, salt STRING, extraParams STRING>` | Contract address of the token being sold in the trade. Hex-encoded, 0x-prefixed, 42-character string.                                                                            |
  | `in_sellHash`      | `STRING`                                                                                                                                                                                                                                                                       | Unique hash identifier for the sell order in the matched trade. Hex-encoded, 0x-prefixed 64-character string generated from the sell order parameters.                           |
  | `in_buy`           | `STRUCT<trader STRING, side INT64, matchingPolicy STRING, collection STRING, tokenId STRING, amount STRING, paymentToken STRING, price STRING, listingTime STRING, expirationTime STRING, fees ARRAY<STRUCT<rate STRING, recipient STRING>>, salt STRING, extraParams STRING>` | Contract address of the token being purchased in the trade. Hex-encoded, 0x-prefixed, 42-character string.                                                                       |
  | `in_buyHash`       | `STRING`                                                                                                                                                                                                                                                                       | Keccak-256 hash of the buy order parameters that uniquely identifies the buyer's intent. Used to verify order authenticity and prevent replay attacks on Blur's NFT marketplace. |
</Accordion>

<Accordion title="Sample Data">
  | in\_buy                                                                                                                                                                                                                                                                                                                                                                                                                                                 | address                                    | in\_sell                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        | removed | in\_maker                                  | in\_taker                                  | log\_index | in\_buyHash                                                        | in\_sellHash                                                       | block\_number | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------- | ------------------------------------------ | ------------------------------------------ | ---------- | ------------------------------------------------------------------ | ------------------------------------------------------------------ | ------------- | ------------------------ | ------------------------------------------------------------------ |
  | \{"fees":\[],"salt":"323373882086219534733681766349344733766","side":0,"price":"19600000000000000","amount":"1","trader":"0x39da41747a83aee658334415666f3ef92dd0d541","tokenId":"2596","collection":"0x03558d808f9e73a4452ad8ca5cc14d5c0c59d364","extraParams":"0x","listingTime":"1669326627","paymentToken":"0x0000000000000000000000000000000000000000","expirationTime":"1669333827","matchingPolicy":"0x00000000006411739da1c40b106f8511de5d1fac"} | 0x000000000000ad05ccc4f10045630fb830b95127 | \{"fees":\[],"salt":"94504068256919526807670489329380729575","side":1,"price":"19600000000000000","amount":"1","trader":"0xe673447b7167b03883f392db02b889ec5764b32d","tokenId":"2596","collection":"0x03558d808f9e73a4452ad8ca5cc14d5c0c59d364","extraParams":"0x","listingTime":"1669311707","paymentToken":"0x0000000000000000000000000000000000000000","expirationTime":"1669398109","matchingPolicy":"0x00000000006411739da1c40b106f8511de5d1fac"}                                                                          | false   | 0xe673447b7167b03883f392db02b889ec5764b32d | 0x39da41747a83aee658334415666f3ef92dd0d541 | 190        | 0xab33ef32bb7892749fa7516a0b00fd9ffa730ecfa31aacf7bc6798f33b97e8c6 | 0x63e4266fba3c89fe8eb386b27f912743b2fcfb36aa3d48707e4beaec56254ba8 | 16042946      | 2022-11-24T22:52:35.000Z | 0x97a6fc733fbee44b46208169c12b5173058b2fd1044140c916b09ba3f3d0724b |
  | \{"fees":\[],"salt":"335415234612074655918998799931478101103","side":0,"price":"19600000000000000","amount":"1","trader":"0x39da41747a83aee658334415666f3ef92dd0d541","tokenId":"2009","collection":"0x03558d808f9e73a4452ad8ca5cc14d5c0c59d364","extraParams":"0x","listingTime":"1669326627","paymentToken":"0x0000000000000000000000000000000000000000","expirationTime":"1669333827","matchingPolicy":"0x00000000006411739da1c40b106f8511de5d1fac"} | 0x000000000000ad05ccc4f10045630fb830b95127 | \{"fees":\[\{"rate":"1000","recipient":"0xc067591a7cf68d6190bd6041fbd4d58565eaab5d"}],"salt":"99540309114233927434957880069962673536","side":1,"price":"19600000000000000","amount":"1","trader":"0xe6eaf29c78590eec67b421d2136655458f5a8675","tokenId":"2009","collection":"0x03558d808f9e73a4452ad8ca5cc14d5c0c59d364","extraParams":"0x","listingTime":"1669258992","paymentToken":"0x0000000000000000000000000000000000000000","expirationTime":"1684810992","matchingPolicy":"0x00000000006411739da1c40b106f8511de5d1fac"} | false   | 0xe6eaf29c78590eec67b421d2136655458f5a8675 | 0x39da41747a83aee658334415666f3ef92dd0d541 | 187        | 0x8252a61de0b379010b12ede7ddc0bea0f4c6a38bab15442ba8585c79d89f24a3 | 0x429b6244a2888771b71bb3a3503afea33adce034a423952ef0a443d8763980a5 | 16042946      | 2022-11-24T22:52:35.000Z | 0x97a6fc733fbee44b46208169c12b5173058b2fd1044140c916b09ba3f3d0724b |
  | \{"fees":\[],"salt":"330437459071935241536630665002003230572","side":0,"price":"275000000000000000","amount":"1","trader":"0x89ee516fe857d3f3dfebd4630fe92fdfb96ff24a","tokenId":"585","collection":"0x03ef30e1aee25abd320ad961b8cd31aa1a011c97","extraParams":"0x","listingTime":"1669286868","paymentToken":"0x0000000000000000000000000000000000000000","expirationTime":"1669294068","matchingPolicy":"0x00000000006411739da1c40b106f8511de5d1fac"} | 0x000000000000ad05ccc4f10045630fb830b95127 | \{"fees":\[],"salt":"69649809144590519129319038271223725389","side":1,"price":"275000000000000000","amount":"1","trader":"0x8ad1e37a8c34ce4d6fbf478d2e67aa6edd1d0b9a","tokenId":"585","collection":"0x03ef30e1aee25abd320ad961b8cd31aa1a011c97","extraParams":"0x","listingTime":"1667427536","paymentToken":"0x0000000000000000000000000000000000000000","expirationTime":"1682979536","matchingPolicy":"0x00000000006411739da1c40b106f8511de5d1fac"}                                                                          | false   | 0x8ad1e37a8c34ce4d6fbf478d2e67aa6edd1d0b9a | 0x89ee516fe857d3f3dfebd4630fe92fdfb96ff24a | 95         | 0xf9eb1fcc3c770ccf4c52d04d8a61857e68f14de1d514064a7de428f5ecf9c748 | 0x86a912e4697c3e50d575fe610bc65251b3a58d5a97abc475d2b77de45aca592d | 16039637      | 2022-11-24T11:47:59.000Z | 0x0a93fea47d501c2c01bb32c0abd12a81d3faa0d04f4331a4d913b6a39966ef34 |
</Accordion>

<Accordion title="Example Query">
  **Query with partition filter**

  ```sql theme={null}
  SELECT *
  FROM `tt-contracts.blur_v1_ethereum.BlurExchange_OrdersMatched_event`
  WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
  LIMIT 100
  ```
</Accordion>

***

### BlurSwap\_batchBuyWithETH\_function

Batch NFT purchase transactions on Blur marketplace using ETH, containing trade details, prices, and marketplace identifiers for analyzing bulk buying activity.

<Accordion title="Columns">
  | Column             | Type                                                             | Description                                                                                                                                                                                                                                                          |
  | ------------------ | ---------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | `block_timestamp`  | `TIMESTAMP`                                                      | Timestamp when the block was produced. UTC timezone, millisecond precision.                                                                                                                                                                                          |
  | `block_number`     | `INT64`                                                          | Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block's position in the blockchain.                                                                                                                 |
  | `transaction_hash` | `STRING`                                                         | Unique identifier for the transaction. 66-character hex string including 0x prefix.                                                                                                                                                                                  |
  | `trace_address`    | `STRING`                                                         | Hierarchical position of the internal call within a transaction's execution trace. Comma-separated sequence of integers representing the call path, where each number indicates the index of the call at that nesting level, with null representing top-level calls. |
  | `status`           | `BOOL`                                                           | Transaction execution outcome indicator. Boolean value where true represents successful execution and false represents failed execution.                                                                                                                             |
  | `from_address`     | `STRING`                                                         | Address that initiated the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.                                                                                                                                                              |
  | `to_address`       | `STRING`                                                         | Address receiving the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.                                                                                                                                                                   |
  | `value`            | `FLOAT64`                                                        | Amount of native cryptocurrency sent with the transaction. Floating-point representation in whole units (e.g., ETH, BNB, MATIC).                                                                                                                                     |
  | `gas_used`         | `INT64`                                                          | Amount of gas consumed by the transaction execution. Integer representing the actual computational steps used.                                                                                                                                                       |
  | `gas`              | `INT64`                                                          | Gas limit allocated for the transaction execution. Integer representing the maximum computational steps allowed.                                                                                                                                                     |
  | `signature`        | `STRING`                                                         | Function selector identifying which contract function was called. 10-character hex string including 0x prefix.                                                                                                                                                       |
  | `in_tradeDetails`  | `ARRAY<STRUCT<marketId STRING, value STRING, tradeData STRING>>` | Array of trade execution details for batch NFT purchases. Each element contains the ETH value, marketplace identifier (marketId), and encoded transaction data (tradeData) for individual NFT acquisitions within the batch operation.                               |
</Accordion>

<Accordion title="Sample Data">
  | gas     | value               | status | gas\_used | signature  | to\_address                                | block\_number | from\_address                              | trace\_address | block\_timestamp         | in\_tradeDetails                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     | transaction\_hash                                                  |
  | ------- | ------------------- | ------ | --------- | ---------- | ------------------------------------------ | ------------- | ------------------------------------------ | -------------- | ------------------------ | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------ |
  | 1226216 | 114200000000000000  | true   | 943243    | 0x9a2b8115 | 0x39da41747a83aee658334415666f3ef92dd0d541 | 16285117      | 0x7d04ee9c70a0359b838c69813a42556e838ac01f |                | 2022-12-28T18:42:59.000Z | \[\{"value":"98200000000000000","marketId":"3","tradeData":"0x09c5eabe0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000338487201b4100000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000286000000000000000000000000000000000000000000000000000000000000028800000000000000000000000000000000000000000000000000000000000002ba000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000015ce06134f18000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000007200000000000000000000000000000000000000000000000000000000000000da000000000000000000000000000000000000000000000000000000000000014200000000000000000000000000000000000000000000000000000000000001a80000000000000000000000000000000000000000000000000000000000000210000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000005e00000000000000000000000000000000000000000000000000000000000000640000000000000000000000000f30fee0b988aa124f03cc25b8b0e88b2c8667c00000000000000000000000000004c00500000ad104d7dbd00e3ae0a5c00560c000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000063ac8cd10000000000000000000000000000000000000000000000000000000063acc50b3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000af84615dad3ba87e0000007b02230091a7ed01230072f7006a004d60a8d4e71d599b8104250f0000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000aaa7a35e442a77e37cde2f445b359aabf5ad038700000000000000000000000000000000000000000000000000000000000008bb0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000033cc6ec8d340000000000000000000000000000000000000000000000000000033cc6ec8d34000000000000000000000000000f30fee0b988aa124f03cc25b8b0e88b2c8667c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000170586922500000000000000000000000000000000000000000000000000000017058692250000000000000000000000000000000a26b00c1f0df003000390027140000faa71900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000032a5c1a7eb00000000000000000000000000000000000000000000000000000032a5c1a7eb0000000000000000000000000005ce11585556f04d82bd84d7f622de5d245328689000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000126ad20e84000000000000000000000000000000000000000000000000000000126ad20e84000000000000000000000000000e70ec1434084d10a69a32296316dd7210f7d0b8000000000000000000000000000000000000000000000000000000000000000404845873dcf81fe3225f511b6878102442ad49d0cf05937160917657bb6411287059dd2194cff9de4d34015d5ae7efdabdbb5a5f9586de2543cca39b90da6a3ec000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000005e000000000000000000000000000000000000000000000000000000000000006600000000000000000000000003b6549b94237ecb948053bb93f7c2b12e34f8108000000000000000000000000004c00500000ad104d7dbd00e3ae0a5c00560c000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000063ac7d0c0000000000000000000000000000000000000000000000000000000063b0718c0000000000000000000000000000000000000000000000000000000000000000360c6ebe0000000000000000000000000000000000000000c9beab6e909040ab0000007b02230091a7ed01230072f7006a004d60a8d4e71d599b8104250f0000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000aaa7a35e442a77e37cde2f445b359aabf5ad03870000000000000000000000000000000000000000000000000000000000000e3f0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035b78f550100000000000000000000000000000000000000000000000000000035b78f550100000000000000000000000000003b6549b94237ecb948053bb93f7c2b12e34f810800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000017dfcdece400000000000000000000000000000000000000000000000000000017dfcdece40000000000000000000000000000000a26b00c1f0df003000390027140000faa7190000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003485f83c5c0000000000000000000000000000000000000000000000000000003485f83c5c0000000000000000000000000005ce11585556f04d82bd84d7f622de5d2453286890000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001319718a500000000000000000000000000000000000000000000000000000001319718a50000000000000000000000000000e70ec1434084d10a69a32296316dd7210f7d0b800000000000000000000000000000000000000000000000000000000000000041146b3a097d87288c3120e33eb3cba42b079f3918f1ec9610f83df6a97cf1edf91d31cb555648e34ac27a1dd54bf4fa0fce2fe70b5199d175fecad766d20e46891b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000005e0000000000000000000000000000000000000000000000000000000000000066000000000000000000000000057d38a1eca9e2683978c481c81a24616e12bdb48000000000000000000000000004c00500000ad104d7dbd00e3ae0a5c00560c000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000063ac85dd0000000000000000000000000000000000000000000000000000000063adcdb40000000000000000000000000000000000000000000000000000000000000000360c6ebe0000000000000000000000000000000000000000f77cb1f83542f87c0000007b02230091a7ed01230072f7006a004d60a8d4e71d599b8104250f0000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000aaa7a35e442a77e37cde2f445b359aabf5ad03870000000000000000000000000000000000000000000000000000000000000edd0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034c1ff0eea20000000000000000000000000000000000000000000000000000034c1ff0eea200000000000000000000000000057d38a1eca9e2683978c481c81a24616e12bdb480000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001772aa3f848000000000000000000000000000000000000000000000000000001772aa3f848000000000000000000000000000000a26b00c1f0df003000390027140000faa7190000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003395dcf2238000000000000000000000000000000000000000000000000000003395dcf2238000000000000000000000000005ce11585556f04d82bd84d7f622de5d24532868900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000012c221cc6a00000000000000000000000000000000000000000000000000000012c221cc6a000000000000000000000000000e70ec1434084d10a69a32296316dd7210f7d0b80000000000000000000000000000000000000000000000000000000000000004149f0ba7559ba31330cf4c807ad90056ad0aaf9f15425f11e552d1417669ea7683387c38c61edb0314d212d504c38c508854ab163bb5284100de846ac91b8e3011c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000005e00000000000000000000000000000000000000000000000000000000000000640000000000000000000000000f30fee0b988aa124f03cc25b8b0e88b2c8667c00000000000000000000000000004c00500000ad104d7dbd00e3ae0a5c00560c000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000063ac8cce0000000000000000000000000000000000000000000000000000000063acc50b3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000364ce737cf8a10f30000007b02230091a7ed01230072f7006a004d60a8d4e71d599b8104250f0000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000aaa7a35e442a77e37cde2f445b359aabf5ad038700000000000000000000000000000000000000000000000000000000000012fe0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000033cc6ec8d340000000000000000000000000000000000000000000000000000033cc6ec8d34000000000000000000000000000f30fee0b988aa124f03cc25b8b0e88b2c8667c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000170586922500000000000000000000000000000000000000000000000000000017058692250000000000000000000000000000000a26b00c1f0df003000390027140000faa71900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000032a5c1a7eb00000000000000000000000000000000000000000000000000000032a5c1a7eb0000000000000000000000000005ce11585556f04d82bd84d7f622de5d245328689000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000126ad20e84000000000000000000000000000000000000000000000000000000126ad20e84000000000000000000000000000e70ec1434084d10a69a32296316dd7210f7d0b800000000000000000000000000000000000000000000000000000000000000040f80684eb63dbf89a5e0a156be10103016760c04098a48cedc79b275a9ba1a64c7f1873027b39eb7efc6637bc9ff8a1770839c69eaba791208868c226541f74ff000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000005e0000000000000000000000000000000000000000000000000000000000000066000000000000000000000000006be1200b6a52e3ca12096fe099394a831b16368000000000000000000000000004c00500000ad104d7dbd00e3ae0a5c00560c000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000063ac8bf70000000000000000000000000000000000000000000000000000000063ac9a0700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000720b0528cadf95798c20ef43ba2045656fc40000007b02230091a7ed01230072f7006a004d60a8d4e71d599b8104250f0000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000aaa7a35e442a77e37cde2f445b359aabf5ad038700000000000000000000000000000000000000000000000000000000000014c300000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000341e498adae00000000000000000000000000000000000000000000000000000341e498adae00000000000000000000000000006be1200b6a52e3ca12096fe099394a831b163680000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001729e7cbef8000000000000000000000000000000000000000000000000000001729e7cbef8000000000000000000000000000000a26b00c1f0df003000390027140000faa71900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000032f5cac0a880000000000000000000000000000000000000000000000000000032f5cac0a88000000000000000000000000005ce11585556f04d82bd84d7f622de5d2453286890000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001287eca3260000000000000000000000000000000000000000000000000000001287eca326000000000000000000000000000e70ec1434084d10a69a32296316dd7210f7d0b8000000000000000000000000000000000000000000000000000000000000000414c8104b1d20b391e0425d78c1f45ba160b0d4cafd135169b85e331e2d8a4fb5056e80303acb69261b615fba59937c319eb716c33a8fa7c7811972e3c5d2d2e161b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000005e00000000000000000000000000000000000000000000000000000000000000640000000000000000000000000f30fee0b988aa124f03cc25b8b0e88b2c8667c00000000000000000000000000004c00500000ad104d7dbd00e3ae0a5c00560c000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000063ac8ccb0000000000000000000000000000000000000000000000000000000063acb6fb300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ec15df4f0458920000007b02230091a7ed01230072f7006a004d60a8d4e71d599b8104250f0000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000aaa7a35e442a77e37cde2f445b359aabf5ad038700000000000000000000000000000000000000000000000000000000000014c60000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000033cc6ec8d340000000000000000000000000000000000000000000000000000033cc6ec8d34000000000000000000000000000f30fee0b988aa124f03cc25b8b0e88b2c8667c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000170586922500000000000000000000000000000000000000000000000000000017058692250000000000000000000000000000000a26b00c1f0df003000390027140000faa71900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000032a5c1a7eb00000000000000000000000000000000000000000000000000000032a5c1a7eb0000000000000000000000000005ce11585556f04d82bd84d7f622de5d245328689000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000126ad20e84000000000000000000000000000000000000000000000000000000126ad20e84000000000000000000000000000e70ec1434084d10a69a32296316dd7210f7d0b8000000000000000000000000000000000000000000000000000000000000000400d3749e5ec7322832cb607909b47b91eeaa86867209a60bc122be69577343c0315f1b9085dcf9e0eaf9ba6c80f54911717c0b274d8d1a72ffc9adc52e19e6b3c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001e0000000000000000000000000000000000000000000000000000000000000024000000000000000000000000000000000000000000000000000000000000002a0000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000700000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000360000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000000000006a000000000000000000000000000000000000000000000000000000000000007000000000000000000000000000000000000000000000000000000000000000760000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000005000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"},\{"value":"16000000000000000","marketId":"7","tradeData":"0xf7fc708b000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000008400000000000000000000000000000000000000000000000000038d7ea4c680000000000000000000000000000aaa7a35e442a77e37cde2f445b359aabf5ad03870000000000000000000000000000000000000000000000000000000000f87dba000000000000000000000000000000000000000000000000000000000000001c7b9257532a512bb80537f62a65af47fe3123aa7419e345b76017489226968578239e7018a24c3d2160411c1e5be6d3f41baf2b32ec45bb3b314ebc608593fb5700000000000000000000000000000000000000000000000000000000000007049a1fc3a7000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000003a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000001c551712adc21baeea4b314dc3a27e75524669e52b4c51545c0e7c9f0a521d28743b3cd48fc1237347370ee29438cf9503b4cf65761e610abed0b6260ff9ae8f9f00000000000000000000000000000000000000000000000000000000000002e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f87dba000000000000000000000000948963936a601704b89878aeb09f381a6b1d8d2200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000dab4a563819e8fd93dba3b25bc3495000000000000000000000000aaa7a35e442a77e37cde2f445b359aabf5ad03870000000000000000000000000000000000000000000000000000000000001b39000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000038d7ea4c6800000000000000000000000000000000000000000000000000000000000063ac7d4f0000000000000000000000000000000000000000000000000000000063adcece00000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000973ffe47bea4ef251e318d7c7c4ed9d600000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000001c16a7a443353708a6671fa6e691894d8c92aa7106c9e9d75e77059c1b3654ae942dc4651cc256a8fa882dcec516df2ead960f7c41804937f0c44a48e022fcb90100000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f87dba00000000000000000000000039da41747a83aee658334415666f3ef92dd0d54100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000dab4a563819e8fd93dba3b25bc3495000000000000000000000000aaa7a35e442a77e37cde2f445b359aabf5ad03870000000000000000000000000000000000000000000000000000000000001b39000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000038d7ea4c6800000000000000000000000000000000000000000000000000000000000063ac7d500000000000000000000000000000000000000000000000000000000063ac9c2c00000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000025ffd122d4b9adc0deb7308380e3b6f300000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000001bf4a66c908d199e8433df4bb816a7dbb6d18c7300e6e711d034111b7932de19eb44c09d9d259767990fdf2ddd11a850c3a8a161c9f1564d52ec8e7daa8fa32e6b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000001b39"}]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     | 0xb8ffbb0724c9bfe2abb8dc12413e230672c7e15831db35b2615fdeac1300e632 |
  | 2434154 | 3937000000000000000 | true   | 1872426   | 0x9a2b8115 | 0x39da41747a83aee658334415666f3ef92dd0d541 | 16285388      | 0x52536fd5a1d9a3ee13a741219429570abb3f91ce |                | 2022-12-28T19:37:11.000Z | \[\{"value":"1998000000000000000","marketId":"3","tradeData":"0x09c5eabe000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000026c487201b4100000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000001e600000000000000000000000000000000000000000000000000000000000001e800000000000000000000000000000000000000000000000000000000000002120000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000001bba526a053b0000000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000006600000000000000000000000000000000000000000000000000000000000000c2000000000000000000000000000000000000000000000000000000000000011e000000000000000000000000000000000000000000000000000000000000017a000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000052000000000000000000000000000000000000000000000000000000000000005a0000000000000000000000000843a46d1405f22903dd1cd1ad80863dca236bacf000000000000000000000000004c00500000ad104d7dbd00e3ae0a5c00560c000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000063ac99000000000000000000000000000000000000000000000000000000000063d577800000000000000000000000000000000000000000000000000000000000000000360c6ebe0000000000000000000000000000000000000000f2e27493483ce2380000007b02230091a7ed01230072f7006a004d60a8d4e71d599b8104250f0000000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000733e534a2b8330df4ac10a4f248bbaa81a887492000000000000000000000000000000000000000000000000000000000000019d0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000506151500b100000000000000000000000000000000000000000000000000000506151500b10000000000000000000000000000843a46d1405f22903dd1cd1ad80863dca236bacf000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002386f26fc10000000000000000000000000000000000000000000000000000002386f26fc100000000000000000000000000000000a26b00c1f0df003000390027140000faa719000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006379da05b60000000000000000000000000000000000000000000000000000006379da05b60000000000000000000000000000affa080613f8955612573135e7a4c3a0257c6b58000000000000000000000000000000000000000000000000000000000000004111442c8f57b65b5697d81f31e12dedc0ac5fa3fbdc115e5e74066572b99b75b00b6df781bc3ab58f4b846a385bee1f1ed4285728a0a55fc385974351d486d8e21b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000052000000000000000000000000000000000000000000000000000000000000005a00000000000000000000000007852257a59ca38a9d3aed5079aa9de5ff2fde758000000000000000000000000004c00500000ad104d7dbd00e3ae0a5c00560c000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000063ac99010000000000000000000000000000000000000000000000000000000063d577810000000000000000000000000000000000000000000000000000000000000000360c6ebe0000000000000000000000000000000000000000c868687a08d036340000007b02230091a7ed01230072f7006a004d60a8d4e71d599b8104250f0000000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000733e534a2b8330df4ac10a4f248bbaa81a88749200000000000000000000000000000000000000000000000000000000000001da0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000502ddfd452b70000000000000000000000000000000000000000000000000000502ddfd452b70000000000000000000000000007852257a59ca38a9d3aed5079aa9de5ff2fde75800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000237035aba2700000000000000000000000000000000000000000000000000000237035aba270000000000000000000000000000000a26b00c1f0df003000390027140000faa71900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000633a2fe093a00000000000000000000000000000000000000000000000000000633a2fe093a000000000000000000000000000affa080613f8955612573135e7a4c3a0257c6b58000000000000000000000000000000000000000000000000000000000000004115370c0845205154b18b5483d4aa1ef424d2242b036e6c76d858e57fbd3e0e8200299a7026d9c4b15cbea30f7020102459839e6a65257c2d2f833df6919f60f91c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000052000000000000000000000000000000000000000000000000000000000000005a0000000000000000000000000dcc418686ffe9d3458515c717560202e13780351000000000000000000000000004c00500000ad104d7dbd00e3ae0a5c00560c000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000063ac990c0000000000000000000000000000000000000000000000000000000063aca17c0000000000000000000000000000000000000000000000000000000000000000360c6ebe000000000000000000000000000000000000000064d1c87a5c605e4a0000007b02230091a7ed01230072f7006a004d60a8d4e71d599b8104250f0000000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000733e534a2b8330df4ac10a4f248bbaa81a88749200000000000000000000000000000000000000000000000000000000000002130000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000506151500b100000000000000000000000000000000000000000000000000000506151500b10000000000000000000000000000dcc418686ffe9d3458515c717560202e13780351000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002386f26fc10000000000000000000000000000000000000000000000000000002386f26fc100000000000000000000000000000000a26b00c1f0df003000390027140000faa719000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006379da05b60000000000000000000000000000000000000000000000000000006379da05b60000000000000000000000000000affa080613f8955612573135e7a4c3a0257c6b580000000000000000000000000000000000000000000000000000000000000041957d254cd7cca5e2bab08957032923492971ccab74867034cac974d6a4c347e8409b6dbaae94e53f877e4b3093fd6a27a6891c63ac22a095b013d7b972060df31b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000052000000000000000000000000000000000000000000000000000000000000005a000000000000000000000000001f80f596c01d504b9630d424c10fa85fedb6723000000000000000000000000004c00500000ad104d7dbd00e3ae0a5c00560c000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000063ac99010000000000000000000000000000000000000000000000000000000063b5d3810000000000000000000000000000000000000000000000000000000000000000360c6ebe0000000000000000000000000000000000000000e01358d1efcf876a0000007b02230091a7ed01230072f7006a004d60a8d4e71d599b8104250f0000000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000733e534a2b8330df4ac10a4f248bbaa81a88749200000000000000000000000000000000000000000000000000000000000002a50000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000506151500b100000000000000000000000000000000000000000000000000000506151500b1000000000000000000000000000001f80f596c01d504b9630d424c10fa85fedb6723000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002386f26fc10000000000000000000000000000000000000000000000000000002386f26fc100000000000000000000000000000000a26b00c1f0df003000390027140000faa719000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006379da05b60000000000000000000000000000000000000000000000000000006379da05b60000000000000000000000000000affa080613f8955612573135e7a4c3a0257c6b580000000000000000000000000000000000000000000000000000000000000041df617b0ad83c5a0f8169c04d088121b9a68d1dcd849e10346c626199be9751630d26b42cc79c36b0cb8652ed28132cc23eed9b3716d05e6abc87b00a3dfa8f3b1c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000052000000000000000000000000000000000000000000000000000000000000005a0000000000000000000000000b5619ba9d7f67254e4c53c8be903d951b551c9a5000000000000000000000000004c00500000ad104d7dbd00e3ae0a5c00560c000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000063ac999f0000000000000000000000000000000000000000000000000000000063d5781f0000000000000000000000000000000000000000000000000000000000000000360c6ebe0000000000000000000000000000000000000000b04ef79cfcec13fb0000007b02230091a7ed01230072f7006a004d60a8d4e71d599b8104250f0000000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000733e534a2b8330df4ac10a4f248bbaa81a88749200000000000000000000000000000000000000000000000000000000000003b60000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000502ddfd452b70000000000000000000000000000000000000000000000000000502ddfd452b7000000000000000000000000000b5619ba9d7f67254e4c53c8be903d951b551c9a500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000237035aba2700000000000000000000000000000000000000000000000000000237035aba270000000000000000000000000000000a26b00c1f0df003000390027140000faa71900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000633a2fe093a00000000000000000000000000000000000000000000000000000633a2fe093a000000000000000000000000000affa080613f8955612573135e7a4c3a0257c6b5800000000000000000000000000000000000000000000000000000000000000418f0b7d909aa6abd42f2676c3ce03c02028a19c94b5e828b9abed00d47efe406f79f393dd632824a470a96d2947bb636ca7c93b785ce3a0797c5b19ee67939a3d1b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000220000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000700000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000002a00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000046000000000000000000000000000000000000000000000000000000000000004c00000000000000000000000000000000000000000000000000000000000000520000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000005000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"},\{"value":"1939000000000000000","marketId":"7","tradeData":"0xf7fc708b000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000025600000000000000000000000000000000000000000000000001ae8b63a0b7b8000000000000000000000000000733e534a2b8330df4ac10a4f248bbaa81a8874920000000000000000000000000000000000000000000000000000000000f87eca000000000000000000000000000000000000000000000000000000000000001b769e5feed6d09b4c541f3224175cb27af258be2487414d622c32fbee12a52f372efe38353f54d5871f29ab6179acd4301f6b1fd522de9460f536a12644639ca30000000000000000000000000000000000000000000000000000000000002424b3be57f80000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000007a00000000000000000000000000000000000000000000000000000000000000ea000000000000000000000000000000000000000000000000000000000000015a00000000000000000000000000000000000000000000000000000000000001ca0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000003a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000001cb963e26de9e5729641c1af31e6194fc2e5f45bc73cf182dbfaaa38d3e40f3fb84f4279c71daffea261e803bb6a64a23672c63d1a8e39dbb47665fd3d3990059e00000000000000000000000000000000000000000000000000000000000002e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f87eca000000000000000000000000870b1a05778e6b778dc22d7eb77bf5aae5a1638a00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000dab4a563819e8fd93dba3b25bc3495000000000000000000000000733e534a2b8330df4ac10a4f248bbaa81a887492000000000000000000000000000000000000000000000000000000000000018a0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005698eef066700000000000000000000000000000000000000000000000000000000000063ac99e70000000000000000000000000000000000000000000000000000000063aca7f700000000000000000000000000000000000000000000000000000000000001a0000000000000000000000000000000000b3fd4df1ca09f7c8bf281cbb4df4bae00000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000001cd94c21be24502a5710a6ee576f097535ab38b983ff1478dbe3fa9989482588c47e7c3ac955972cbda13a61fdbed3cbcdea6f595ed880d3b71faf0de65d3b990700000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f87eca00000000000000000000000039da41747a83aee658334415666f3ef92dd0d54100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000dab4a563819e8fd93dba3b25bc3495000000000000000000000000733e534a2b8330df4ac10a4f248bbaa81a887492000000000000000000000000000000000000000000000000000000000000018a0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005698eef066700000000000000000000000000000000000000000000000000000000000063ac99e80000000000000000000000000000000000000000000000000000000063aca8eb00000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000eb33911236983c0074d0dce8778dc50100000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000001b49fe0cb086e9e8a5ec57cdc667d2ad82855f18977e119b1dbd79564c2dc162f82cfb02d613ba38498a26bc72c26a21c719167799084c014c20d4db10a590bc79000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000003a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000001bbb3a1d6c54f57846e9378b776dd18ead1e92331738786f0b3dc2b4a94a08268545e13675678e2e238dae9ae7fe86faee9e5f8ff6dfa9926e1c7cbd00cb5d6d4b00000000000000000000000000000000000000000000000000000000000002e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f87eca000000000000000000000000afba765e49a4545569e955f6c4baba12e427bf6400000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000dab4a563819e8fd93dba3b25bc3495000000000000000000000000733e534a2b8330df4ac10a4f248bbaa81a887492000000000000000000000000000000000000000000000000000000000000019b0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005698eef066700000000000000000000000000000000000000000000000000000000000063ac9ad70000000000000000000000000000000000000000000000000000000063b5d55600000000000000000000000000000000000000000000000000000000000001a0000000000000000000000000000000004c056bbb2fd6c4036b22710a416513a300000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000001c4999dfc914ca1ea8422ebd6f6ca1f105f0e9fac605bc0d4c0077fb8de74a76b66cbb1bcbb9fa4fa7c5382c484a0438250d8e924d0b9d69dd15a4e86e881f842300000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f87eca00000000000000000000000039da41747a83aee658334415666f3ef92dd0d54100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000dab4a563819e8fd93dba3b25bc3495000000000000000000000000733e534a2b8330df4ac10a4f248bbaa81a887492000000000000000000000000000000000000000000000000000000000000019b0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005698eef066700000000000000000000000000000000000000000000000000000000000063ac9ad80000000000000000000000000000000000000000000000000000000063aca8eb00000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000032ffde5435c18782cdaa133a960d880500000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000001c38b4846951e2233718abbf2ad06499c62726a72ab3f603c253f2c19096fa151507706352b3ad1119bc29c5c6699e2ea49366a9f519d325280a3a415308a26f6f000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000003a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000001b3ec1f1a91439fe35cc4274fe6551c3b43e4ee44fe7023959c2252c3e1d97291877bb30c4b114a9d7bacc1995d61c1f0c9f0040fc7ff5e2da52289670f31bc2a400000000000000000000000000000000000000000000000000000000000002e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f87eca000000000000000000000000bc3340130876edb51ac044d8658b4260eb4a1c2900000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000dab4a563819e8fd93dba3b25bc3495000000000000000000000000733e534a2b8330df4ac10a4f248bbaa81a88749200000000000000000000000000000000000000000000000000000000000001b300000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000058d15e1762800000000000000000000000000000000000000000000000000000000000063ac9ace0000000000000000000000000000000000000000000000000000000063b5d54d00000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000055c1b3f7c5e21ec4a8dffc66612a565f00000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000001cc20e5a551f7ae654b306b450f6f6def7ec888790eed58c0df82e222ab4be363834d6ae43b52e1d6cdeda03dc62e606f93fd76842389fe9b2277225c8d68b047000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f87eca00000000000000000000000039da41747a83aee658334415666f3ef92dd0d54100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000dab4a563819e8fd93dba3b25bc3495000000000000000000000000733e534a2b8330df4ac10a4f248bbaa81a88749200000000000000000000000000000000000000000000000000000000000001b300000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000058d15e1762800000000000000000000000000000000000000000000000000000000000063ac9acf0000000000000000000000000000000000000000000000000000000063aca8eb00000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000080153ee3b85eb93d83bc80a41fb6201500000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000001b9bb63434d5a22fbe06d41ea760ca37ebea12ea2ac123a6c62920c26460293f8b5966eba90f075ced94fc7deeefa8753f1fa40c9a11904814b68253032efcda35000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000003a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000001bce0cce95cb361ab43a4799309e1a89297dec0aa3b98045d4d01651d096027ac2177f691cc9aec58c2c6a8e14ef8e2069aeef51f5741da4abb0cb55afd3f8d69c00000000000000000000000000000000000000000000000000000000000002e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f87eca0000000000000000000000006ee7a2bafab6e6b650dd8e4038b6b8ae1057486700000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000dab4a563819e8fd93dba3b25bc3495000000000000000000000000733e534a2b8330df4ac10a4f248bbaa81a88749200000000000000000000000000000000000000000000000000000000000001f70000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005698eef066700000000000000000000000000000000000000000000000000000000000063ac9ac60000000000000000000000000000000000000000000000000000000063b5d54500000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000cd697825cdbeed1ac6c092d33f5c4ce000000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000001b8beeba204f17cf6008341d4b72c1386922d8322d8f9105aae000c1e6b4f7041f471293e629d84f210b12265722759735b343a305735515ee10d315f5ec946e2600000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f87eca00000000000000000000000039da41747a83aee658334415666f3ef92dd0d54100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000dab4a563819e8fd93dba3b25bc3495000000000000000000000000733e534a2b8330df4ac10a4f248bbaa81a88749200000000000000000000000000000000000000000000000000000000000001f70000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005698eef066700000000000000000000000000000000000000000000000000000000000063ac9ac70000000000000000000000000000000000000000000000000000000063aca8eb00000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000eb7606c63805f726463c23f150f8e53d00000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000001b3a8d6a934ca73f1df24538ba1b469659a34985f139039df4659d13f15f91a01c5ef50a19a618c387ed6a8be149dfe3d8477f6f821d65832c0f95cfcbd8b0070a000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000003e000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000001b4549ce7d86a78616f1e4945ad99fb997f54b2f7171cf4ce9e4e321928a61578f2776484b64987f8413cc3c86ab03676ca5c416c0b8f63e842259b66ca475936d000000000000000000000000000000000000000000000000000000000000032000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f87eca0000000000000000000000004cb36e4f3ff360e57ba14d0ac6f570e73ee2789900000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000dab4a563819e8fd93dba3b25bc3495000000000000000000000000733e534a2b8330df4ac10a4f248bbaa81a88749200000000000000000000000000000000000000000000000000000000000003d800000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000051ef38b821e80000000000000000000000000000000000000000000000000000000000063ac9ac80000000000000000000000000000000000000000000000000000000063adec4700000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000e47591807717036c9e94af6570ddbb950000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000002bc000000000000000000000000affa080613f8955612573135e7a4c3a0257c6b58000000000000000000000000000000000000000000000000000000000000000101000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000001cf5038e4d87881ed732fca209ee5752e3346f71df6368cc7dbf2564ecfe8ba390577f68c26f9ed3cc1b38fd783e6371bd0182d7b118b6893d26038d23e7e82f0800000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f87eca00000000000000000000000039da41747a83aee658334415666f3ef92dd0d54100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000dab4a563819e8fd93dba3b25bc3495000000000000000000000000733e534a2b8330df4ac10a4f248bbaa81a88749200000000000000000000000000000000000000000000000000000000000003d800000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000051ef38b821e80000000000000000000000000000000000000000000000000000000000063ac9ac90000000000000000000000000000000000000000000000000000000063aca8eb00000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000095edda9a152d5b26adb92e6b4b85802b00000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000001c404ca930088a99dc3fc625dadf3c5294fd176ac7ed547b66dfd35d24a75d326b346f152a290951a7cc9062d1a17afd8a1f4cdb5cfd3f1cb11e3ec1dd69b35b68000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005000000000000000000000000000000000000000000000000000000000000018a000000000000000000000000000000000000000000000000000000000000019b00000000000000000000000000000000000000000000000000000000000001b300000000000000000000000000000000000000000000000000000000000001f700000000000000000000000000000000000000000000000000000000000003d8"}] | 0xd9b4e1beee13bd12ceff67eb4de308d55069ccfea1096475f735e3106355adea |
  | 1086905 | 98700000000000000   | true   | 836081    | 0x9a2b8115 | 0x39da41747a83aee658334415666f3ef92dd0d541 | 16284538      | 0x35d752550343f14f66893fc884ac4074aa4d3909 |                | 2022-12-28T16:46:35.000Z | \[\{"value":"59500000000000000","marketId":"3","tradeData":"0x09c5eabe00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000001b4487201b4100000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000014e0000000000000000000000000000000000000000000000000000000000000150000000000000000000000000000000000000000000000000000000000000016a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000d362ef4c22c0000000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000006e00000000000000000000000000000000000000000000000000000000000000d6000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000005e00000000000000000000000000000000000000000000000000000000000000660000000000000000000000000d607b34d395dbc1d2ec54ed8db9e3f6d9470d648000000000000000000000000004c00500000ad104d7dbd00e3ae0a5c00560c000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000063abe5890000000000000000000000000000000000000000000000000000000063d4b4d60000000000000000000000000000000000000000000000000000000000000000360c6ebe00000000000000000000000000000000000000007cd648c451e080a80000007b02230091a7ed01230072f7006a004d60a8d4e71d599b8104250f0000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000f4ccac05f220bfaa79db04b23b46fbb2f5e2eeac00000000000000000000000000000000000000000000000000000000000005170000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000041b9a6e85840000000000000000000000000000000000000000000000000000041b9a6e8584000000000000000000000000000d607b34d395dbc1d2ec54ed8db9e3f6d9470d6480000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001c6bf526340000000000000000000000000000000000000000000000000000001c6bf526340000000000000000000000000000000a26b00c1f0df003000390027140000faa7190000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002378652570000000000000000000000000000000000000000000000000000000237865257000000000000000000000000000081d86faf587daea18497103666dcfd8f369d61c8000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000155f8526f8000000000000000000000000000000000000000000000000000000155f8526f8000000000000000000000000000b7734b5c378fd169d2b9720d0d5ac1a7b30f9fc90000000000000000000000000000000000000000000000000000000000000041b2014fa3b835454de2a87ac77fa053faf3fa9a8e34039b6bda052b5dca2e31c35ac791ab86c5801cbf4af65491121cbee6473b198140a5c48de3000f75f599c51c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000005e00000000000000000000000000000000000000000000000000000000000000660000000000000000000000000dea6c7505b62c369199e9eeb8ee839b7e331d3be000000000000000000000000004c00500000ad104d7dbd00e3ae0a5c00560c000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000063ac48e30000000000000000000000000000000000000000000000000000000063d46feb0000000000000000000000000000000000000000000000000000000000000000360c6ebe000000000000000000000000000000000000000057a62784b017b6990000007b02230091a7ed01230072f7006a004d60a8d4e71d599b8104250f0000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000f4ccac05f220bfaa79db04b23b46fbb2f5e2eeac00000000000000000000000000000000000000000000000000000000000002670000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040bd44676b68000000000000000000000000000000000000000000000000000040bd44676b6800000000000000000000000000dea6c7505b62c369199e9eeb8ee839b7e331d3be0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001bfed178d48000000000000000000000000000000000000000000000000000001bfed178d48000000000000000000000000000000a26b00c1f0df003000390027140000faa71900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000022f0306dd600000000000000000000000000000000000000000000000000000022f0306dd600000000000000000000000000081d86faf587daea18497103666dcfd8f369d61c8000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000150d7283d3000000000000000000000000000000000000000000000000000000150d7283d3000000000000000000000000000b7734b5c378fd169d2b9720d0d5ac1a7b30f9fc9000000000000000000000000000000000000000000000000000000000000004112d6a695923c991220d0de0d12566aa1192db14f15f4aa070b8f2651b462f502769bc333c7dc9319f0d904028f244836e4a6631405ee9a2e6e0e95f1fe6217d41c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000005e00000000000000000000000000000000000000000000000000000000000000660000000000000000000000000453f2a8e2ee8107e056bc71cdbf29322a1b73a53000000000000000000000000004c00500000ad104d7dbd00e3ae0a5c00560c000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000063ac44060000000000000000000000000000000000000000000000000000000063b57e120000000000000000000000000000000000000000000000000000000000000000360c6ebe00000000000000000000000000000000000000008defe86748c8a72c0000007b02230091a7ed01230072f7006a004d60a8d4e71d599b8104250f0000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000f4ccac05f220bfaa79db04b23b46fbb2f5e2eeac0000000000000000000000000000000000000000000000000000000000000384000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004111653d0fb000000000000000000000000000000000000000000000000000004111653d0fb000000000000000000000000000453f2a8e2ee8107e056bc71cdbf29322a1b73a530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001c2332b29f0000000000000000000000000000000000000000000000000000001c2332b29f0000000000000000000000000000000a26b00c1f0df003000390027140000faa719000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000231d9755b4000000000000000000000000000000000000000000000000000000231d9755b400000000000000000000000000081d86faf587daea18497103666dcfd8f369d61c80000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001528ce0f8a0000000000000000000000000000000000000000000000000000001528ce0f8a000000000000000000000000000b7734b5c378fd169d2b9720d0d5ac1a7b30f9fc9000000000000000000000000000000000000000000000000000000000000004190d34795f96d5f6b8a9c2fd6a3a7a64ad49fd6d316bc97908e7eb916c85ef6834eb7524416549aa980f95e444c80f92aa377f20ab88d55732188ff88b03d8e611c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002e000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000042000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"},\{"value":"39200000000000000","marketId":"7","tradeData":"0xf7fc708b00000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000fc0000000000000000000000000000000000000000000000000008b44313b320000000000000000000000000000f4ccac05f220bfaa79db04b23b46fbb2f5e2eeac0000000000000000000000000000000000000000000000000000000000f87b77000000000000000000000000000000000000000000000000000000000000001b2b7d0733f656e5269ea88309adbcfbafe62b014de5806c42477f494d2b973e1754830e92091965b9fcc2d86c498f6a9bad88fec886ed6260db14e941840ff7770000000000000000000000000000000000000000000000000000000000000e84b3be57f80000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000740000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000003a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000001c854e13ed25fdbaee27b697cc8c58c8c34a9d1e905eb1e696ffec7c34f9cb0992526150011fe03cda2048d772b28dce774c46de0b56af2c1bee2168bb1df48c4800000000000000000000000000000000000000000000000000000000000002e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f87b77000000000000000000000000a8afd1e0ce6bf6c0507b416e524bdc3671e6edf700000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000dab4a563819e8fd93dba3b25bc3495000000000000000000000000f4ccac05f220bfaa79db04b23b46fbb2f5e2eeac000000000000000000000000000000000000000000000000000000000000056c000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045a2189d9900000000000000000000000000000000000000000000000000000000000063ac6feb0000000000000000000000000000000000000000000000000000000063ac7de800000000000000000000000000000000000000000000000000000000000001a0000000000000000000000000000000002192e57adecda468836671a78e5b8ad100000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000001b1820af66ead8deff4c369f1f5944283939e85bc4cfd576935a837faed2729cbd40af5b1658482d1c5f322d542067ad6cc08cde1dd919b2c4347ccad88217880700000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f87b7700000000000000000000000039da41747a83aee658334415666f3ef92dd0d54100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000dab4a563819e8fd93dba3b25bc3495000000000000000000000000f4ccac05f220bfaa79db04b23b46fbb2f5e2eeac000000000000000000000000000000000000000000000000000000000000056c000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045a2189d9900000000000000000000000000000000000000000000000000000000000063ac6fec0000000000000000000000000000000000000000000000000000000063ac80e400000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000ed37a8e5e1b3dd90a6b770f612e1a0a100000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000001c2a2d8d17646765ba283cac23d257584c7a1c480ba3542894acd0f1bba45c64ad7fd54ec8d99d9113520170471b9f12e7dc44efa1ede5da816ebb4dc6c1b7ca9b000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000003a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000001c47ca57795a6a2d2157b2f5a7b3883be0ce4753e93d0b7c347385069cb88c0f4b7d0400465e9803a14fd4e26a9db1d5a3391f4b86c98a805010d0595a15bee39500000000000000000000000000000000000000000000000000000000000002e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f87b77000000000000000000000000a8afd1e0ce6bf6c0507b416e524bdc3671e6edf700000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000dab4a563819e8fd93dba3b25bc3495000000000000000000000000f4ccac05f220bfaa79db04b23b46fbb2f5e2eeac0000000000000000000000000000000000000000000000000000000000000181000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045a2189d9900000000000000000000000000000000000000000000000000000000000063ac6da00000000000000000000000000000000000000000000000000000000063ac7b8c00000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000010483e5aff760ea907aa28f5375b8e7b00000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000001b4328148fbb3e573ef302a5248993d4c125a858c588d047c2fe7bb5385cdfcfcc56feaa3ffdce031df6e60ec878798dc2d5bb9927b8da96741e1272e106fe01d900000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f87b7700000000000000000000000039da41747a83aee658334415666f3ef92dd0d54100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000dab4a563819e8fd93dba3b25bc3495000000000000000000000000f4ccac05f220bfaa79db04b23b46fbb2f5e2eeac0000000000000000000000000000000000000000000000000000000000000181000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045a2189d9900000000000000000000000000000000000000000000000000000000000063ac6da10000000000000000000000000000000000000000000000000000000063ac80e400000000000000000000000000000000000000000000000000000000000001a0000000000000000000000000000000009aafb40b73311a38e18ea5535436a00e00000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000001b62d8a7d54df9f274e7360fb5cb13620a4b6f31da6297909b9066c3192af4cc522e6c5d502d99574051c58505170c9ff6071a398471a23552edb24b07d868dcbd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000056c0000000000000000000000000000000000000000000000000000000000000181"}]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     | 0x1401c136c733f9d7a87c1133f578b52b5c1fc2fea1d32fdfdb2f30997b3c6adb |
</Accordion>

<Accordion title="Example Query">
  **Query with partition filter**

  ```sql theme={null}
  SELECT *
  FROM `tt-contracts.blur_v1_ethereum.BlurSwap_batchBuyWithETH_function`
  WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
  LIMIT 100
  ```
</Accordion>

***
