> ## 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.

# tether_v1_ethereum

> Tables in tt-contracts.tether_v1_ethereum

## Tables

### EURT\_DestroyedBlockedFunds\_event

*No description available.*

<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__blockedUser`  | `STRING`    | Address of the account that was blocked and had funds destroyed. Hex-encoded, 0x-prefixed, 42-character string.                                      |
  | `in__balance`      | `STRING`    | Token amount represented in smallest denomination. String-encoded integer value without decimal places.                                              |
</Accordion>

<Accordion title="Sample Data">
  *No sample data available.*
</Accordion>

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

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

***

### EURT\_Mint\_event

EURT (Euro Tether) token minting events on Ethereum showing when new stablecoin tokens are issued to destination addresses. Used for tracking EURT supply expansion and authorized minter 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__destination`  | `STRING`    | Concatenated address pair used in LayerZero cross-chain messaging to specify source and destination contracts. 84-character hex string without 0x prefix, consisting of two 42-character addresses concatenated together. |
  | `in__amount`       | `STRING`    | Amount of tokens involved in the transaction. String-encoded integer representing token quantity in smallest unit (wei for ETH, base units for ERC20 tokens).                                                             |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | in\_\_amount    | block\_number | block\_timestamp         | in\_\_destination                          | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ---------- | --------------- | ------------- | ------------------------ | ------------------------------------------ | ------------------------------------------------------------------ |
  | 0xc581b735a1688071a1746c968e0798d642ede491 | false   | 15         | 250000000000000 | 13913794      | 2021-12-31T15:01:38.000Z | 0x5754284f345afc66a98fbb0a0afe71e0f007b949 | 0xf825e67c02256706814cf713c6367f25861713c67dac252c724e8fbf417dabdc |
  | 0xc581b735a1688071a1746c968e0798d642ede491 | false   | 116        | 50000050000000  | 11016209      | 2020-10-08T17:18:25.000Z | 0x14d06788090769f669427b6aea1c0240d2321f34 | 0x561d2d9da4d0c6c04a7bb6d9242517da15fdf932b1264a8a9447ca88a7f78308 |
  | 0xc581b735a1688071a1746c968e0798d642ede491 | false   | 308        | 100000000000000 | 13075264      | 2021-08-22T13:00:42.000Z | 0x5754284f345afc66a98fbb0a0afe71e0f007b949 | 0x1efe533df86eaa477cc62ce18c0314226ae8145b6b05d5045ee1ec8ca00ac6eb |
</Accordion>

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

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

***

### EURT\_Redeem\_event

Records of EURT (Euro Tether) token redemption events on Ethereum, capturing when users burn EURT tokens to redeem their euro-backed value. Contains redemption amounts, participant addresses, and transaction details for tracking token supply contractions and redemption patterns.

<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__amount`       | `STRING`    | Amount of tokens involved in the transaction. String-encoded integer representing token quantity in smallest unit (wei for ETH, base units for ERC20 tokens). |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | in\_\_amount    | block\_number | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ---------- | --------------- | ------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0xc581b735a1688071a1746c968e0798d642ede491 | false   | 291        | 350000000000000 | 21130315      | 2024-11-06T18:11:23.000Z | 0xcae8dc76609f0712c13031985c8db2191d28165e740a412e2f56de4b67dabd86 |
</Accordion>

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

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

***

### USDT\_DestroyedBlackFunds\_event

Events recording the destruction of Tether (USDT) tokens seized from blacklisted addresses on Ethereum. Used for tracking supply reductions from compliance actions, showing blacklisted user addresses and destroyed token balances.

<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__blackListedUser` | `STRING`    | Ethereum address of the user whose blacklisted USDT balance was destroyed by Tether. Hex-encoded, 0x-prefixed 40-character string; may be zero address or the USDT contract itself in certain cases. |
  | `in__balance`         | `STRING`    | Token amount represented in smallest denomination. String-encoded integer value without decimal places.                                                                                              |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | in\_\_balance | block\_number | block\_timestamp         | transaction\_hash                                                  | in\_\_blackListedUser                      |
  | ------------------------------------------ | ------- | ---------- | ------------- | ------------- | ------------------------ | ------------------------------------------------------------------ | ------------------------------------------ |
  | 0xdac17f958d2ee523a2206206994597c13d831ec7 | false   | 1          | 199784404     | 14565332      | 2022-04-11T15:59:28.000Z | 0x87f3832444f5fa27f5bef395501be34798a7fd8a266f66490dae9e5f4165730d | 0x0000000000000000000000000000000000000000 |
  | 0xdac17f958d2ee523a2206206994597c13d831ec7 | false   | 1          | 23834942020   | 14565309      | 2022-04-11T15:55:07.000Z | 0x825ff638f56932433c3bd6e5afb892cc254c08c9ed75fd9be5b695c05ab0dedd | 0x55d398326f99059ff775485246999027b3197955 |
  | 0xdac17f958d2ee523a2206206994597c13d831ec7 | false   | 5          | 1353724940538 | 14565307      | 2022-04-11T15:54:35.000Z | 0xed66c3c2a960448a60bcbcd5ae43235a699a0e7ce9186191ecac1b5e170515fd | 0xdac17f958d2ee523a2206206994597c13d831ec7 |
</Accordion>

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

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

***

### USDT\_Issue\_event

USDT token minting events on Ethereum capturing new supply issuance by Tether with amounts in raw token units (6 decimals). Used for tracking USDT supply expansion and monetary policy 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_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 | block\_number | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ---------------- | ---------- | ------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0xdac17f958d2ee523a2206206994597c13d831ec7 | false   | 25000000000000   | 5          | 9126285       | 2019-12-18T15:47:32.000Z | 0x402a42c546b6c77da8a892d521ab253726556e235ee4fc6e9dc9a4428044f6c1 |
  | 0xdac17f958d2ee523a2206206994597c13d831ec7 | false   | 1000000000000000 | 91         | 13771848      | 2021-12-09T15:38:05.000Z | 0x9128cfd8875e15faf216bc948f32ee611dde439c965edc6b296c6485a9b1f3f4 |
  | 0xdac17f958d2ee523a2206206994597c13d831ec7 | false   | 1000000000000000 | 31         | 13771937      | 2021-12-09T15:57:54.000Z | 0xd34867573ebece5004b0e34f2d67779731b39ed00dde02d37857feda87b5d23d |
</Accordion>

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

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

***

### USDT\_Redeem\_event

USDT token redemption events emitted when tokens are burned or removed from circulation. Contains redemption amount and transaction metadata for tracking Tether (USDT) supply reduction operations.

<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_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 | block\_number | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ---------------- | ---------- | ------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0xdac17f958d2ee523a2206206994597c13d831ec7 | false   | 1500000000000000 | 158        | 22532889      | 2025-05-21T17:56:11.000Z | 0xadafb0a611ca8a2a47cd3d9ca1f0426702222204b0204c984f5bb3b315595075 |
  | 0xdac17f958d2ee523a2206206994597c13d831ec7 | false   | 1800000000000000 | 450        | 22254980      | 2025-04-12T19:30:23.000Z | 0x9a41764e1d05a9d32104d704d36699b846b562ee564c715ffe8f5f67a5d4496b |
  | 0xdac17f958d2ee523a2206206994597c13d831ec7 | false   | 1500000000000000 | 271        | 22316268      | 2025-04-21T08:45:47.000Z | 0x9120e7e5a10382a152f22510469df482d256ca63930d6085c56b458849daa767 |
</Accordion>

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

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

***

### XAUT\_DestroyedBlockedFunds\_event

*No description available.*

<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__blockedUser`  | `STRING`    | Address of the account that was blocked and had funds destroyed. Hex-encoded, 0x-prefixed, 42-character string.                                      |
  | `in__balance`      | `STRING`    | Token amount represented in smallest denomination. String-encoded integer value without decimal places.                                              |
</Accordion>

<Accordion title="Sample Data">
  *No sample data available.*
</Accordion>

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

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

***

### XAUT\_Mint\_event

Mint events from Tether Gold (XAUT) token contract on Ethereum, capturing new token issuance with mint amounts and recipient addresses. Used for tracking XAUT supply expansion and analyzing gold-backed token creation patterns.

<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__destination`  | `STRING`    | Concatenated address pair used in LayerZero cross-chain messaging to specify source and destination contracts. 84-character hex string without 0x prefix, consisting of two 42-character addresses concatenated together. |
  | `in__amount`       | `STRING`    | Amount of tokens involved in the transaction. String-encoded integer representing token quantity in smallest unit (wei for ETH, base units for ERC20 tokens).                                                             |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | in\_\_amount | block\_number | block\_timestamp         | in\_\_destination                          | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ---------- | ------------ | ------------- | ------------------------ | ------------------------------------------ | ------------------------------------------------------------------ |
  | 0x68749665ff8d2d112fa859aa293f07a622782f38 | false   | 65         | 20131765000  | 13603586      | 2021-11-12T20:58:18.000Z | 0x5754284f345afc66a98fbb0a0afe71e0f007b949 | 0x2bbd0704e8df2d96b0928842a7228d418360c135bbc267697115add89a86abc5 |
  | 0x68749665ff8d2d112fa859aa293f07a622782f38 | false   | 83         | 20084849000  | 13740642      | 2021-12-04T15:45:01.000Z | 0x5754284f345afc66a98fbb0a0afe71e0f007b949 | 0x2ebe49a2fcd736ceb4ec0f5d1deade111792d12bad23bf1540f3da5e70d0beb9 |
  | 0x68749665ff8d2d112fa859aa293f07a622782f38 | false   | 3          | 60454313000  | 13920606      | 2022-01-01T16:27:30.000Z | 0x5754284f345afc66a98fbb0a0afe71e0f007b949 | 0xd0d137d338d1df1c7917f9ef11d8e3560891166edbdc4b5962f2ba58e467aab1 |
</Accordion>

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

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

***

### XAUT\_Redeem\_event

Redemption events for Tether Gold (XAUT) tokens on Ethereum, recording when users burn XAUT tokens to claim physical gold. Tracks redemption amounts and transaction details for analyzing gold-backed token supply changes and user withdrawal patterns.

<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__amount`       | `STRING`    | Amount of tokens involved in the transaction. String-encoded integer representing token quantity in smallest unit (wei for ETH, base units for ERC20 tokens). |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | in\_\_amount | block\_number | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ---------- | ------------ | ------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0x68749665ff8d2d112fa859aa293f07a622782f38 | false   | 3          | 1000000      | 13577024      | 2021-11-08T17:13:15.000Z | 0x16599422bc6996bd45d1a8024a2a39bcb7f1a2206e43adf851392c1b33e67f76 |
  | 0x68749665ff8d2d112fa859aa293f07a622782f38 | false   | 836        | 2000000000   | 24004257      | 2025-12-13T14:24:11.000Z | 0x9579e504ae160cadc66c9140713faa62337a0d1672138c1deda56dc996b1239c |
</Accordion>

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

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

***
