Latest 25 internal transactions (View All)
Advanced mode:
| Parent Transaction Hash | Block | From | To | |||
|---|---|---|---|---|---|---|
| 63741308 | 7 days ago | 0 S | ||||
| 63670132 | 8 days ago | 0.00218904 S | ||||
| 63041662 | 17 days ago | 0.00292052 S | ||||
| 62674898 | 21 days ago | 0 S | ||||
| 62661887 | 21 days ago | 15.91186405 S | ||||
| 62054600 | 28 days ago | 0.00088177 S | ||||
| 61946741 | 29 days ago | 0.03712846 S | ||||
| 61856531 | 30 days ago | 0.00195925 S | ||||
| 61319504 | 36 days ago | 0 S | ||||
| 61072121 | 40 days ago | 0 S | ||||
| 60845705 | 43 days ago | 0.00000005 S | ||||
| 60814239 | 43 days ago | 0 S | ||||
| 60684922 | 45 days ago | 0.01076872 S | ||||
| 59690278 | 58 days ago | 0.00114744 S | ||||
| 59686786 | 59 days ago | 0.00025283 S | ||||
| 59683791 | 59 days ago | 0.00151314 S | ||||
| 59629917 | 59 days ago | 0.00000002 S | ||||
| 59303224 | 64 days ago | 0.00000003 S | ||||
| 59122882 | 67 days ago | 0.00712985 S | ||||
| 59122299 | 67 days ago | 0.0004041 S | ||||
| 59096653 | 67 days ago | 3.611299 S | ||||
| 59036910 | 68 days ago | 0 S | ||||
| 58051456 | 79 days ago | 0.00015738 S | ||||
| 57948951 | 80 days ago | 34 wei | ||||
| 57697297 | 84 days ago | 0.1057346 S |
Cross-Chain Transactions
Loading...
Loading
Contract Name:
AugustusFeeVault
Compiler Version
v0.8.22+commit.4fc1097e
Optimization Enabled:
Yes with 1000000 runs
Other Settings:
shanghai EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
pragma solidity 0.8.22;
// Contracts
import { Ownable } from "@openzeppelin/contracts/access/Ownable.sol";
import { Pausable } from "@openzeppelin/contracts/utils/Pausable.sol";
// Interfaces
import { IAugustusFeeVault } from "../interfaces/IAugustusFeeVault.sol";
import { IERC20 } from "@openzeppelin/token/ERC20/IERC20.sol";
// Libraries
import { ERC20Utils } from "../libraries/ERC20Utils.sol";
/// @title Augstus Fee Vault
/// @notice Allows partners to collect fees stored in the vault, and allows augustus contracts to register fees
contract AugustusFeeVault is IAugustusFeeVault, Ownable, Pausable {
/*//////////////////////////////////////////////////////////////
LIBRARIES
//////////////////////////////////////////////////////////////*/
using ERC20Utils for IERC20;
/*//////////////////////////////////////////////////////////////
VARIABLES
//////////////////////////////////////////////////////////////*/
/// @dev A mapping of augustus contract addresses to their approval status
mapping(address augustus => bool approved) public augustusContracts;
// @dev Mapping of fee tokens to stored fee amounts
mapping(address account => mapping(IERC20 token => uint256 amount)) public fees;
// @dev Mapping of fee tokens to allocated fee amounts
mapping(IERC20 token => uint256 amount) public allocatedFees;
/*//////////////////////////////////////////////////////////////
CONSTRUCTOR
//////////////////////////////////////////////////////////////*/
constructor(address[] memory _augustusContracts, address owner) Ownable(owner) {
// Set augustus verifier contracts
for (uint256 i = 0; i < _augustusContracts.length; i++) {
augustusContracts[_augustusContracts[i]] = true;
emit AugustusApprovalSet(_augustusContracts[i], true);
}
}
/*//////////////////////////////////////////////////////////////
MODIFIERS
//////////////////////////////////////////////////////////////*/
/// @dev Modifier to check if the caller is an approved augustus contract
modifier onlyApprovedAugustus() {
if (!augustusContracts[msg.sender]) {
revert UnauthorizedCaller();
}
_;
}
/// @dev Verifies that the withdraw amount is not zero
modifier validAmount(uint256 amount) {
// Check if amount is zero
if (amount == 0) {
revert InvalidWithdrawAmount();
}
_;
}
/*//////////////////////////////////////////////////////////////
PUBLIC
//////////////////////////////////////////////////////////////*/
/// @inheritdoc IAugustusFeeVault
function withdrawSomeERC20(
IERC20 token,
uint256 amount,
address recipient
)
public
validAmount(amount)
whenNotPaused
returns (bool success)
{
/// Check recipient
recipient = _checkRecipient(recipient);
// Update fees mapping
_updateFees(token, msg.sender, amount);
// Transfer tokens to recipient
token.safeTransfer(recipient, amount);
// Return success
return true;
}
/// @inheritdoc IAugustusFeeVault
function getUnallocatedFees(IERC20 token) public view returns (uint256 unallocatedFees) {
// Get the allocated fees for the given token
uint256 allocatedFee = allocatedFees[token];
// Get the balance of the given token
uint256 balance = token.getBalance(address(this));
// If the balance is bigger than the allocated fee, then the unallocated fees should
// be equal to the balance minus the allocated fee
if (balance > allocatedFee) {
// Set the unallocated fees to the balance minus the allocated fee
unallocatedFees = balance - allocatedFee;
}
}
/*///////////////////////////////////////////////////////////////
EXTERNAL
//////////////////////////////////////////////////////////////*/
/// @inheritdoc IAugustusFeeVault
function batchWithdrawSomeERC20(
IERC20[] calldata tokens,
uint256[] calldata amounts,
address recipient
)
external
whenNotPaused
returns (bool success)
{
// Check if the length of the tokens and amounts arrays are the same
if (tokens.length != amounts.length) {
revert InvalidParameterLength();
}
// Loop through the tokens and amounts arrays
for (uint256 i; i < tokens.length; ++i) {
// Collect fees for the given token
if (!withdrawSomeERC20(tokens[i], amounts[i], recipient)) {
// Revert if collect fails
revert BatchCollectFailed();
}
}
// Return success
return true;
}
/// @inheritdoc IAugustusFeeVault
function withdrawAllERC20(IERC20 token, address recipient) public whenNotPaused returns (bool success) {
// Check recipient
recipient = _checkRecipient(recipient);
// Get the total fees for msg.sender in the given token
uint256 totalBalance = fees[msg.sender][token];
// Make sure the amount is not zero
if (totalBalance == 0) {
revert InvalidWithdrawAmount();
}
// Update fees mapping
_updateFees(token, msg.sender, totalBalance);
// Transfer tokens to recipient
token.safeTransfer(recipient, totalBalance);
// Return success
return true;
}
/// @inheritdoc IAugustusFeeVault
function batchWithdrawAllERC20(
IERC20[] calldata tokens,
address recipient
)
external
whenNotPaused
returns (bool success)
{
// Loop through the tokens array
for (uint256 i; i < tokens.length; ++i) {
// Collect all fees for the given token
if (!withdrawAllERC20(tokens[i], recipient)) {
// Revert if withdrawAllERC20 fails
revert BatchCollectFailed();
}
}
// Return success
return true;
}
/// @inheritdoc IAugustusFeeVault
function registerFees(FeeRegistration memory feeData) external onlyApprovedAugustus {
// Get the addresses, tokens, and feeAmounts from the feeData struct
address[] memory addresses = feeData.addresses;
IERC20 token = feeData.token;
uint256[] memory feeAmounts = feeData.fees;
// Make sure the length of the addresses and feeAmounts arrays are the same
if (addresses.length != feeAmounts.length) {
revert InvalidParameterLength();
}
// Loop through the addresses and fees arrays
for (uint256 i; i < addresses.length; ++i) {
// Register the fees for the given address and token if the fee and address are not zero
if (feeAmounts[i] != 0 && addresses[i] != address(0)) {
_registerFee(addresses[i], token, feeAmounts[i]);
}
}
}
/// @inheritdoc IAugustusFeeVault
function setAugustusApproval(address augustus, bool approved) external onlyOwner {
// Set the approval status for the given augustus contract
augustusContracts[augustus] = approved;
// Emit an event
emit AugustusApprovalSet(augustus, approved);
}
/// @inheritdoc IAugustusFeeVault
function setContractPauseState(bool _isPaused) external onlyOwner {
// Set the pause state
if (_isPaused) {
_pause();
} else {
_unpause();
}
}
/// @inheritdoc IAugustusFeeVault
function getBalance(IERC20 token, address partner) external view returns (uint256 feeBalance) {
// Get the fees for the given token and partner
return fees[partner][token];
}
/// @inheritdoc IAugustusFeeVault
function batchGetBalance(
IERC20[] calldata tokens,
address partner
)
external
view
returns (uint256[] memory feeBalances)
{
// Initialize the feeBalances array
feeBalances = new uint256[](tokens.length);
// Loop through the tokens array
for (uint256 i; i < tokens.length; ++i) {
// Get the fees for the given token and partner
feeBalances[i] = fees[partner][tokens[i]];
}
}
/*//////////////////////////////////////////////////////////////
PRIVATE
//////////////////////////////////////////////////////////////*/
/// @notice Register fees for a given account and token
/// @param account The account to register the fees for
/// @param token The token to register the fees for
/// @param fee The amount of fees to register
function _registerFee(address account, IERC20 token, uint256 fee) private {
// Get the unallocated fees for the given token
uint256 unallocatedFees = getUnallocatedFees(token);
// Make sure the fee is not bigger than the unallocated fees
if (fee > unallocatedFees) {
// If it is, set the fee to the unallocated fees
fee = unallocatedFees;
}
// Update the fees mapping
fees[account][token] += fee;
// Update the allocated fees mapping
allocatedFees[token] += fee;
}
/// @notice Update fees and allocatedFees for a given token and claimer
/// @param token The token to update the fees for
/// @param claimer The address to withdraw the fees for
/// @param withdrawAmount The amount of fees to withdraw
function _updateFees(IERC20 token, address claimer, uint256 withdrawAmount) private {
// get the fees for the claimer
uint256 feesForClaimer = fees[claimer][token];
// revert if withdraw amount is bigger than the fees for the claimer
if (withdrawAmount > feesForClaimer) {
revert InvalidWithdrawAmount();
}
// update the allocated fees
allocatedFees[token] -= withdrawAmount;
// update the fees for the claimer
fees[claimer][token] -= withdrawAmount;
}
/// @notice Check if recipient is zero address and set it to msg sender if it is, otherwise return recipient
/// @param recipient The recipient address
/// @return recipient The updated recipient address
function _checkRecipient(address recipient) private view returns (address) {
// Allow arbitrary recipient unless it is zero address
if (recipient == address(0)) {
recipient = msg.sender;
}
// Return recipient
return recipient;
}
/*//////////////////////////////////////////////////////////////
RECEIVE
//////////////////////////////////////////////////////////////*/
/// @notice Reverts if the caller is one of the following:
// - an externally-owned account
// - a contract in construction
// - an address where a contract will be created
// - an address where a contract lived, but was destroyed
receive() external payable {
address addr = msg.sender;
// solhint-disable-next-line no-inline-assembly
assembly ("memory-safe") {
if iszero(extcodesize(addr)) { revert(0, 0) }
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)
pragma solidity ^0.8.20;
import {Context} from "../utils/Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* The initial owner is set to the address provided by the deployer. This can
* later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
/**
* @dev The caller account is not authorized to perform an operation.
*/
error OwnableUnauthorizedAccount(address account);
/**
* @dev The owner is not a valid owner account. (eg. `address(0)`)
*/
error OwnableInvalidOwner(address owner);
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the address provided by the deployer as the initial owner.
*/
constructor(address initialOwner) {
if (initialOwner == address(0)) {
revert OwnableInvalidOwner(address(0));
}
_transferOwnership(initialOwner);
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
if (owner() != _msgSender()) {
revert OwnableUnauthorizedAccount(_msgSender());
}
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby disabling any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
if (newOwner == address(0)) {
revert OwnableInvalidOwner(address(0));
}
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/Pausable.sol)
pragma solidity ^0.8.20;
import {Context} from "../utils/Context.sol";
/**
* @dev Contract module which allows children to implement an emergency stop
* mechanism that can be triggered by an authorized account.
*
* This module is used through inheritance. It will make available the
* modifiers `whenNotPaused` and `whenPaused`, which can be applied to
* the functions of your contract. Note that they will not be pausable by
* simply including this module, only once the modifiers are put in place.
*/
abstract contract Pausable is Context {
bool private _paused;
/**
* @dev Emitted when the pause is triggered by `account`.
*/
event Paused(address account);
/**
* @dev Emitted when the pause is lifted by `account`.
*/
event Unpaused(address account);
/**
* @dev The operation failed because the contract is paused.
*/
error EnforcedPause();
/**
* @dev The operation failed because the contract is not paused.
*/
error ExpectedPause();
/**
* @dev Initializes the contract in unpaused state.
*/
constructor() {
_paused = false;
}
/**
* @dev Modifier to make a function callable only when the contract is not paused.
*
* Requirements:
*
* - The contract must not be paused.
*/
modifier whenNotPaused() {
_requireNotPaused();
_;
}
/**
* @dev Modifier to make a function callable only when the contract is paused.
*
* Requirements:
*
* - The contract must be paused.
*/
modifier whenPaused() {
_requirePaused();
_;
}
/**
* @dev Returns true if the contract is paused, and false otherwise.
*/
function paused() public view virtual returns (bool) {
return _paused;
}
/**
* @dev Throws if the contract is paused.
*/
function _requireNotPaused() internal view virtual {
if (paused()) {
revert EnforcedPause();
}
}
/**
* @dev Throws if the contract is not paused.
*/
function _requirePaused() internal view virtual {
if (!paused()) {
revert ExpectedPause();
}
}
/**
* @dev Triggers stopped state.
*
* Requirements:
*
* - The contract must not be paused.
*/
function _pause() internal virtual whenNotPaused {
_paused = true;
emit Paused(_msgSender());
}
/**
* @dev Returns to normal state.
*
* Requirements:
*
* - The contract must be paused.
*/
function _unpause() internal virtual whenPaused {
_paused = false;
emit Unpaused(_msgSender());
}
}// SPDX-License-Identifier: MIT
pragma solidity 0.8.22;
// Interfaces
import { IERC20 } from "@openzeppelin/token/ERC20/IERC20.sol";
/// @title IAugustusFeeVault
/// @notice Interface for the AugustusFeeVault contract
interface IAugustusFeeVault {
/*//////////////////////////////////////////////////////////////
ERRORS
//////////////////////////////////////////////////////////////*/
/// @notice Error emitted when withdraw amount is zero or exceeds the stored amount
error InvalidWithdrawAmount();
/// @notice Error emmitted when caller is not an approved augustus contract
error UnauthorizedCaller();
/// @notice Error emitted when an invalid parameter length is passed
error InvalidParameterLength();
/// @notice Error emitted when batch withdraw fails
error BatchCollectFailed();
/*//////////////////////////////////////////////////////////////
EVENTS
//////////////////////////////////////////////////////////////*/
/// @notice Emitted when an augustus contract approval status is set
/// @param augustus The augustus contract address
/// @param approved The approval status
event AugustusApprovalSet(address indexed augustus, bool approved);
/*//////////////////////////////////////////////////////////////
STRUCTS
//////////////////////////////////////////////////////////////*/
/// @notice Struct to register fees
/// @param addresses The addresses to register fees for
/// @param token The token to register fees for
/// @param fees The fees to register
struct FeeRegistration {
address[] addresses;
IERC20 token;
uint256[] fees;
}
/*//////////////////////////////////////////////////////////////
COLLECT
//////////////////////////////////////////////////////////////*/
/// @notice Allows partners to withdraw fees allocated to them and stored in the vault
/// @param token The token to withdraw fees in
/// @param amount The amount of fees to withdraw
/// @param recipient The address to send the fees to
/// @return success Whether the transfer was successful or not
function withdrawSomeERC20(IERC20 token, uint256 amount, address recipient) external returns (bool success);
/// @notice Allows partners to withdraw all fees allocated to them and stored in the vault for a given token
/// @param token The token to withdraw fees in
/// @param recipient The address to send the fees to
/// @return success Whether the transfer was successful or not
function withdrawAllERC20(IERC20 token, address recipient) external returns (bool success);
/// @notice Allows partners to withdraw all fees allocated to them and stored in the vault for multiple tokens
/// @param tokens The tokens to withdraw fees i
/// @param recipient The address to send the fees to
/// @return success Whether the transfer was successful or not
function batchWithdrawAllERC20(IERC20[] calldata tokens, address recipient) external returns (bool success);
/// @notice Allows partners to withdraw fees allocated to them and stored in the vault
/// @param tokens The tokens to withdraw fees in
/// @param amounts The amounts of fees to withdraw
/// @param recipient The address to send the fees to
/// @return success Whether the transfer was successful or not
function batchWithdrawSomeERC20(
IERC20[] calldata tokens,
uint256[] calldata amounts,
address recipient
)
external
returns (bool success);
/*//////////////////////////////////////////////////////////////
BALANCE GETTERS
//////////////////////////////////////////////////////////////*/
/// @notice Get the balance of a given token for a given partner
/// @param token The token to get the balance of
/// @param partner The partner to get the balance for
/// @return feeBalance The balance of the given token for the given partner
function getBalance(IERC20 token, address partner) external view returns (uint256 feeBalance);
/// @notice Get the balances of a given partner for multiple tokens
/// @param tokens The tokens to get the balances of
/// @param partner The partner to get the balances for
/// @return feeBalances The balances of the given tokens for the given partner
function batchGetBalance(
IERC20[] calldata tokens,
address partner
)
external
view
returns (uint256[] memory feeBalances);
/// @notice Returns the unallocated fees for a given token
/// @param token The token to get the unallocated fees for
/// @return unallocatedFees The unallocated fees for the given token
function getUnallocatedFees(IERC20 token) external view returns (uint256 unallocatedFees);
/*//////////////////////////////////////////////////////////////
OWNER
//////////////////////////////////////////////////////////////*/
/// @notice Registers the given feeData to the vault
/// @param feeData The fee registration data
function registerFees(FeeRegistration memory feeData) external;
/// @notice Sets the augustus contract approval status
/// @param augustus The augustus contract address
/// @param approved The approval status
function setAugustusApproval(address augustus, bool approved) external;
/// @notice Sets the contract pause state
/// @param _isPaused The new pause state
function setContractPauseState(bool _isPaused) external;
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.20;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
/**
* @dev Returns the value of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the value of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves a `value` amount of tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, uint256 value) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets a `value` amount of tokens as the allowance of `spender` over the
* caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 value) external returns (bool);
/**
* @dev Moves a `value` amount of tokens from `from` to `to` using the
* allowance mechanism. `value` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(address from, address to, uint256 value) external returns (bool);
}// SPDX-License-Identifier: MIT
pragma solidity 0.8.22;
// Interfaces
import { IERC20 } from "@openzeppelin/token/ERC20/IERC20.sol";
/// @title ERC20Utils
/// @notice Optimized functions for ERC20 tokens
library ERC20Utils {
/*//////////////////////////////////////////////////////////////
ERRORS
//////////////////////////////////////////////////////////////*/
error IncorrectEthAmount();
error PermitFailed();
error TransferFromFailed();
error TransferFailed();
error ApprovalFailed();
/*//////////////////////////////////////////////////////////////
CONSTANTS
//////////////////////////////////////////////////////////////*/
IERC20 internal constant ETH = IERC20(0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE);
/*//////////////////////////////////////////////////////////////
APPROVE
//////////////////////////////////////////////////////////////*/
/// @dev Vendored from Solady by @vectorized - SafeTransferLib.approveWithRetry
/// https://github.com/Vectorized/solady/src/utils/SafeTransferLib.sol#L325
/// Instead of approving a specific amount, this function approves for uint256(-1) (type(uint256).max).
function approve(IERC20 token, address to) internal {
// solhint-disable-next-line no-inline-assembly
assembly ("memory-safe") {
mstore(0x14, to) // Store the `to` argument.
mstore(0x34, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) // Store the `amount`
// argument (type(uint256).max).
mstore(0x00, 0x095ea7b3000000000000000000000000) // `approve(address,uint256)`.
// Perform the approval, retrying upon failure.
if iszero(
and( // The arguments of `and` are evaluated from right to left.
or(eq(mload(0x00), 1), iszero(returndatasize())), // Returned 1 or nothing.
call(gas(), token, 0, 0x10, 0x44, 0x00, 0x20)
)
) {
mstore(0x34, 0) // Store 0 for the `amount`.
mstore(0x00, 0x095ea7b3000000000000000000000000) // `approve(address,uint256)`.
pop(call(gas(), token, 0, 0x10, 0x44, codesize(), 0x00)) // Reset the approval.
mstore(0x34, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) // Store
// type(uint256).max for the `amount`.
// Retry the approval, reverting upon failure.
if iszero(
and(
or(eq(mload(0x00), 1), iszero(returndatasize())), // Returned 1 or nothing.
call(gas(), token, 0, 0x10, 0x44, 0x00, 0x20)
)
) {
mstore(0, 0x8164f84200000000000000000000000000000000000000000000000000000000)
// store the selector (error ApprovalFailed())
revert(0, 4) // revert with error selector
}
}
mstore(0x34, 0) // Restore the part of the free memory pointer that was overwritten.
}
}
/*//////////////////////////////////////////////////////////////
PERMIT
//////////////////////////////////////////////////////////////*/
/// @dev Executes an ERC20 permit and reverts if invalid length is provided
function permit(IERC20 token, bytes calldata data) internal {
// solhint-disable-next-line no-inline-assembly
assembly ("memory-safe") {
// check the permit length
switch data.length
// 32 * 7 = 224 EIP2612 Permit
case 224 {
let x := mload(64) // get the free memory pointer
mstore(x, 0xd505accf00000000000000000000000000000000000000000000000000000000) // store the selector
// function permit(address owner, address spender, uint256
// amount, uint256 deadline, uint8 v, bytes32 r, bytes32 s)
calldatacopy(add(x, 4), data.offset, 224) // store the args
pop(call(gas(), token, 0, x, 228, 0, 32)) // call ERC20 permit, skip checking return data
}
// 32 * 8 = 256 DAI-Style Permit
case 256 {
let x := mload(64) // get the free memory pointer
mstore(x, 0x8fcbaf0c00000000000000000000000000000000000000000000000000000000) // store the selector
// function permit(address holder, address spender, uint256
// nonce, uint256 expiry, bool allowed, uint8 v, bytes32 r, bytes32 s)
calldatacopy(add(x, 4), data.offset, 256) // store the args
pop(call(gas(), token, 0, x, 260, 0, 32)) // call ERC20 permit, skip checking return data
}
default {
mstore(0, 0xb78cb0dd00000000000000000000000000000000000000000000000000000000) // store the selector
// (error PermitFailed())
revert(0, 4)
}
}
}
/*//////////////////////////////////////////////////////////////
ETH
//////////////////////////////////////////////////////////////*/
/// @dev Returns 1 if the token is ETH, 0 if not ETH
function isETH(IERC20 token, uint256 amount) internal view returns (uint256 fromETH) {
// solhint-disable-next-line no-inline-assembly
assembly ("memory-safe") {
// If token is ETH
if eq(token, 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE) {
// if msg.value is not equal to fromAmount, then revert
if xor(amount, callvalue()) {
mstore(0, 0x8b6ebb4d00000000000000000000000000000000000000000000000000000000) // store the selector
// (error IncorrectEthAmount())
revert(0, 4) // revert with error selector
}
// return 1 if ETH
fromETH := 1
}
// If token is not ETH
if xor(token, 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE) {
// if msg.value is not equal to 0, then revert
if gt(callvalue(), 0) {
mstore(0, 0x8b6ebb4d00000000000000000000000000000000000000000000000000000000) // store the selector
// (error IncorrectEthAmount())
revert(0, 4) // revert with error selector
}
}
}
// return 0 if not ETH
}
/*//////////////////////////////////////////////////////////////
TRANSFER
//////////////////////////////////////////////////////////////*/
/// @dev Executes transfer and reverts if it fails, works for both ETH and ERC20 transfers
function safeTransfer(IERC20 token, address recipient, uint256 amount) internal returns (bool success) {
// solhint-disable-next-line no-inline-assembly
assembly {
switch eq(token, 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE)
// ETH
case 1 {
// transfer ETH
// Cap gas at 10000 to avoid reentrancy
success := call(10000, recipient, amount, 0, 0, 0, 0)
}
// ERC20
default {
let x := mload(64) // get the free memory pointer
mstore(x, 0xa9059cbb00000000000000000000000000000000000000000000000000000000) // store the selector
// (function transfer(address recipient, uint256 amount))
mstore(add(x, 4), recipient) // store the recipient
mstore(add(x, 36), amount) // store the amount
success := call(gas(), token, 0, x, 68, 0, 32) // call transfer
if success {
switch returndatasize()
// check the return data size
case 0 { success := gt(extcodesize(token), 0) }
default { success := and(gt(returndatasize(), 31), eq(mload(0), 1)) }
}
}
if iszero(success) {
mstore(0, 0x90b8ec1800000000000000000000000000000000000000000000000000000000) // store the selector
// (error TransferFailed())
revert(0, 4) // revert with error selector
}
}
}
/*//////////////////////////////////////////////////////////////
TRANSFER FROM
//////////////////////////////////////////////////////////////*/
/// @dev Executes transferFrom and reverts if it fails
function safeTransferFrom(
IERC20 srcToken,
address sender,
address recipient,
uint256 amount
)
internal
returns (bool success)
{
// solhint-disable-next-line no-inline-assembly
assembly {
let x := mload(64) // get the free memory pointer
mstore(x, 0x23b872dd00000000000000000000000000000000000000000000000000000000) // store the selector
// (function transferFrom(address sender, address recipient,
// uint256 amount))
mstore(add(x, 4), sender) // store the sender
mstore(add(x, 36), recipient) // store the recipient
mstore(add(x, 68), amount) // store the amount
success := call(gas(), srcToken, 0, x, 100, 0, 32) // call transferFrom
if success {
switch returndatasize()
// check the return data size
case 0 { success := gt(extcodesize(srcToken), 0) }
default { success := and(gt(returndatasize(), 31), eq(mload(0), 1)) }
}
if iszero(success) {
mstore(x, 0x7939f42400000000000000000000000000000000000000000000000000000000) // store the selector
// (error TransferFromFailed())
revert(x, 4) // revert with error selector
}
}
}
/*//////////////////////////////////////////////////////////////
BALANCE
//////////////////////////////////////////////////////////////*/
/// @dev Returns the balance of an account, works for both ETH and ERC20 tokens
function getBalance(IERC20 token, address account) internal view returns (uint256 balanceOf) {
// solhint-disable-next-line no-inline-assembly
assembly {
switch eq(token, 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE)
// ETH
case 1 { balanceOf := balance(account) }
// ERC20
default {
let x := mload(64) // get the free memory pointer
mstore(x, 0x70a0823100000000000000000000000000000000000000000000000000000000) // store the selector
// (function balanceOf(address account))
mstore(add(x, 4), account) // store the account
let success := staticcall(gas(), token, x, 36, x, 32) // call balanceOf
if success { balanceOf := mload(x) } // load the balance
}
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/Context.sol)
pragma solidity ^0.8.20;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}{
"remappings": [
"@prb/test/=lib/prb-test/src/",
"forge-std/=lib/forge-std/src/",
"@openzeppelin/=lib/openzeppelin-contracts/contracts/",
"@solady/=lib/solady/src/",
"@create3/=lib/create3-factory/src/",
"@openzeppelin/contracts/=lib/openzeppelin-contracts/contracts/",
"create3-factory/=lib/create3-factory/",
"ds-test/=lib/forge-std/lib/ds-test/src/",
"erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/",
"openzeppelin-contracts/=lib/openzeppelin-contracts/",
"prb-test/=lib/prb-test/src/",
"solady/=lib/solady/",
"solmate/=lib/create3-factory/lib/solmate/src/"
],
"optimizer": {
"enabled": true,
"runs": 1000000
},
"metadata": {
"useLiteralContent": false,
"bytecodeHash": "none",
"appendCBOR": true
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"evmVersion": "shanghai",
"viaIR": true,
"libraries": {}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address[]","name":"_augustusContracts","type":"address[]"},{"internalType":"address","name":"owner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"BatchCollectFailed","type":"error"},{"inputs":[],"name":"EnforcedPause","type":"error"},{"inputs":[],"name":"ExpectedPause","type":"error"},{"inputs":[],"name":"InvalidParameterLength","type":"error"},{"inputs":[],"name":"InvalidWithdrawAmount","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[],"name":"UnauthorizedCaller","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"augustus","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"AugustusApprovalSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"allocatedFees","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"augustus","type":"address"}],"name":"augustusContracts","outputs":[{"internalType":"bool","name":"approved","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20[]","name":"tokens","type":"address[]"},{"internalType":"address","name":"partner","type":"address"}],"name":"batchGetBalance","outputs":[{"internalType":"uint256[]","name":"feeBalances","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20[]","name":"tokens","type":"address[]"},{"internalType":"address","name":"recipient","type":"address"}],"name":"batchWithdrawAllERC20","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20[]","name":"tokens","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"address","name":"recipient","type":"address"}],"name":"batchWithdrawSomeERC20","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"fees","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"partner","type":"address"}],"name":"getBalance","outputs":[{"internalType":"uint256","name":"feeBalance","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"getUnallocatedFees","outputs":[{"internalType":"uint256","name":"unallocatedFees","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"uint256[]","name":"fees","type":"uint256[]"}],"internalType":"struct IAugustusFeeVault.FeeRegistration","name":"feeData","type":"tuple"}],"name":"registerFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"augustus","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setAugustusApproval","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isPaused","type":"bool"}],"name":"setContractPauseState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"recipient","type":"address"}],"name":"withdrawAllERC20","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"recipient","type":"address"}],"name":"withdrawSomeERC20","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]Contract Creation Code
604060808152346200019b57620015ac90813803806200001f81620001b3565b938439820181838203126200019b5782516001600160401b0391908281116200019b5784019381601f860112156200019b5784519160209383116200019f578260051b95848062000072818a01620001b3565b8096815201978201019182116200019b578401955b8187106200018157506001600160a01b03939291849150620000ab908401620001d9565b1680156200016a575f54818582167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05f80a36001600160a81b031916175f9081555b81518110156200015b5780846200010760019385620001ee565b51165f5281808552865f208160ff198254161790557f6e22534cd7ba9ac690c8291d348b7cd994a6753f153ed57cd0a24dd720ae2d0485876200014b8588620001ee565b5116928951908152a201620000ed565b84516113949081620002188239f35b8451631e4fbdf760e01b81525f6004820152602490fd5b8480916200018f89620001d9565b81520196019562000087565b5f80fd5b634e487b7160e01b5f52604160045260245ffd5b6040519190601f01601f191682016001600160401b038111838210176200019f57604052565b51906001600160a01b03821682036200019b57565b8051821015620002035760209160051b010190565b634e487b7160e01b5f52603260045260245ffdfe60806040526004361015610022575b3615610018575f80fd5b610020611056565b005b5f3560e01c80633ea6f5111461013157806345f32b0b1461012c5780635c975abb14610127578063715018a6146101225780638da5cb5b1461011d5780638f79528c146101185780639b9ac2cb14610113578063ae11c7f81461010e578063b0a65b1714610109578063bbedcc4014610104578063d2ea29c0146100ff578063d4fac45d146100fa578063e20b52d9146100f5578063e537348b146100f0578063f2fde38b146100eb578063f89abe8c146100e65763ffcc41ee0361000e57610c1d565b610bd0565b610aee565b610a16565b6109aa565b610951565b610886565b610804565b610723565b610647565b610568565b610508565b6104b8565b61041e565b6103dc565b6102d5565b610165565b73ffffffffffffffffffffffffffffffffffffffff81160361015457565b5f80fd5b359061016382610136565b565b346101545760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101545773ffffffffffffffffffffffffffffffffffffffff6004356101b581610136565b165f526003602052602060405f2054604051908152f35b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b604051906060820182811067ffffffffffffffff82111761021957604052565b6101cc565b907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f604051930116820182811067ffffffffffffffff82111761021957604052565b67ffffffffffffffff81116102195760051b60200190565b9080601f8301121561015457602090823561029c61029782610262565b61021e565b9360208086848152019260051b82010192831161015457602001905b8282106102c6575050505090565b813581529083019083016102b8565b346101545760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc90602082360112610154576004359167ffffffffffffffff90818411610154576060908436030112610154576103316101f9565b91836004013582811161015457840190366023830112156101545760048201359161035e61029784610262565b926024602085838152019160051b8301019136831161015457602401905b8282106103c35750505050825261039560248401610158565b60208301526044830135908111610154576100209260046103b9923692010161027a565b6040820152610d4a565b83809183356103d181610136565b81520191019061037c565b34610154575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261015457602060ff5f5460a01c166040519015158152f35b34610154575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610154576104546110ed565b5f73ffffffffffffffffffffffffffffffffffffffff81547fffffffffffffffffffffffff000000000000000000000000000000000000000081168355167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08280a3005b34610154575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261015457602073ffffffffffffffffffffffffffffffffffffffff5f5416604051908152f35b346101545760607ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261015457602061055e60043561054881610136565b6044359061055582610136565b60243590610eb1565b6040519015158152f35b346101545760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101545760206105f86004356105a881610136565b73ffffffffffffffffffffffffffffffffffffffff602435916105ca83610136565b165f526002835260405f209073ffffffffffffffffffffffffffffffffffffffff165f5260205260405f2090565b54604051908152f35b7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc60409101126101545760043561063781610136565b9060243561064481610136565b90565b3461015457602061055e61065a36610601565b90610f0c565b9181601f840112156101545782359167ffffffffffffffff8311610154576020808501948460051b01011161015457565b60407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc820112610154576004359067ffffffffffffffff8211610154576106da91600401610660565b909160243561064481610136565b60209060206040818301928281528551809452019301915f5b82811061070f575050505090565b835185529381019392810192600101610701565b346101545761073136610691565b909161073f61029784610262565b9280845261074c81610262565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0602091013660208701375f5b828110610792576040518061078e88826106e8565b0390f35b60019073ffffffffffffffffffffffffffffffffffffffff86165f52600283526107f260405f206107c4838789610f63565b35906107cf82610136565b9073ffffffffffffffffffffffffffffffffffffffff165f5260205260405f2090565b546107fd8289610e98565b5201610779565b346101545761081236610691565b61081d92919261113d565b5f5b83811061083157602060405160018152f35b61084f82610840838787610f63565b3561084a81610136565b610f0c565b1561085c5760010161081f565b60046040517f3439313b000000000000000000000000000000000000000000000000000000008152fd5b346101545760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610154576004356108c181610136565b6024359081151580920361015457602073ffffffffffffffffffffffffffffffffffffffff7f6e22534cd7ba9ac690c8291d348b7cd994a6753f153ed57cd0a24dd720ae2d04926109106110ed565b1692835f526001825260405f207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0081541660ff8316179055604051908152a2005b346101545760206105f873ffffffffffffffffffffffffffffffffffffffff61097936610601565b919091165f526002835260405f209073ffffffffffffffffffffffffffffffffffffffff165f5260205260405f2090565b346101545760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101545773ffffffffffffffffffffffffffffffffffffffff6004356109fa81610136565b165f526001602052602060ff60405f2054166040519015158152f35b346101545760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261015457600435801515810361015457610a596110ed565b15610a6657610020611316565b5f5460ff8160a01c1615610ac4577fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff165f557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6020604051338152a1005b60046040517f8dfc202b000000000000000000000000000000000000000000000000000000008152fd5b346101545760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261015457600435610b2981610136565b610b316110ed565b73ffffffffffffffffffffffffffffffffffffffff809116908115610ba0575f54827fffffffffffffffffffffffff00000000000000000000000000000000000000008216175f55167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05f80a3005b60246040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081525f6004820152fd5b346101545760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610154576020610c15600435610c1081610136565b610fa0565b604051908152f35b346101545760607ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261015457600467ffffffffffffffff813581811161015457610c6e903690600401610660565b9160243590811161015457610c87903690600401610660565b9060443590610c9582610136565b610c9d61113d565b828503610d20575f5b858110610cb95760405160018152602090f35b610ceb610ce784610ccb848a8a610f63565b35610cd581610136565b610ce0858988610f63565b3590610eb1565b1590565b610cf757600101610ca6565b866040517f3439313b000000000000000000000000000000000000000000000000000000008152fd5b60046040517fc0375efc000000000000000000000000000000000000000000000000000000008152fd5b335f52600190600160205260ff60405f20541615610e41578051906040610d88602083015173ffffffffffffffffffffffffffffffffffffffff1690565b910151908251825103610d20575f92845b610da5575b5050505050565b8051841015610e3c578484610dbb829686610e98565b51151580610e11575b610dd0575b0193610d99565b610e0c610dfa610de08386610e98565b5173ffffffffffffffffffffffffffffffffffffffff1690565b85610e058489610e98565b519161105f565b610dc9565b5073ffffffffffffffffffffffffffffffffffffffff610e34610de08386610e98565b161515610dc4565b610d9e565b60046040517f5c427cd9000000000000000000000000000000000000000000000000000000008152fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b8051821015610eac5760209160051b010190565b610e6b565b8115610ee257610ecb610edc93610ec661113d565b611175565b90610ed7833383611199565b611248565b50600190565b60046040517fdb73cdf0000000000000000000000000000000000000000000000000000000008152fd5b90610f1990610ec661113d565b335f526002602052610f4c8260405f209073ffffffffffffffffffffffffffffffffffffffff165f5260205260405f2090565b54908115610ee257610edc92610ed7833383611199565b9190811015610eac5760051b0190565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b905f9173ffffffffffffffffffffffffffffffffffffffff81165f52600360205260405f20545f9173eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee811460011461104d576020602491604051928380927f70a082310000000000000000000000000000000000000000000000000000000082523060048301525afa611044575b505b80821161102f575050565b90809293500390811161103f5790565b610f73565b5191505f611022565b50479150611024565b333b1561015457565b9061106981610fa0565b8084116110e5575b5073ffffffffffffffffffffffffffffffffffffffff8092165f5260026020526110bc8160405f209073ffffffffffffffffffffffffffffffffffffffff165f5260205260405f2090565b80549084820180921161103f5755165f52600360205260405f20805491820180921161103f5755565b92505f611071565b73ffffffffffffffffffffffffffffffffffffffff5f5416330361110d57565b60246040517f118cdaa7000000000000000000000000000000000000000000000000000000008152336004820152fd5b60ff5f5460a01c1661114b57565b60046040517fd93c0665000000000000000000000000000000000000000000000000000000008152fd5b73ffffffffffffffffffffffffffffffffffffffff8116156111945790565b503390565b73ffffffffffffffffffffffffffffffffffffffff80921691825f5260026020526111e58260405f209073ffffffffffffffffffffffffffffffffffffffff165f5260205260405f2090565b548411610ee25781165f52600360205260405f2091825484810390811161103f5761123993555f52600260205260405f209073ffffffffffffffffffffffffffffffffffffffff165f5260205260405f2090565b805491820391821161103f5755565b929173eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee84146001146113025760446020925f92604051917fa9059cbb0000000000000000000000000000000000000000000000000000000083526004830152602482015282865af191826112dd575b505b81156112b557565b7f90b8ec18000000000000000000000000000000000000000000000000000000005f5260045ffd5b9091503d156112f9575060015f5114601f3d1116905b5f6112ab565b3b1515906112f3565b5f809394508092918192612710f1906112ad565b61131e61113d565b740100000000000000000000000000000000000000007fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff5f5416175f557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586020604051338152a156fea164736f6c6343000816000a0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000d7e24a49944f7972ceb826c7557580658f9c33030000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x60806040526004361015610022575b3615610018575f80fd5b610020611056565b005b5f3560e01c80633ea6f5111461013157806345f32b0b1461012c5780635c975abb14610127578063715018a6146101225780638da5cb5b1461011d5780638f79528c146101185780639b9ac2cb14610113578063ae11c7f81461010e578063b0a65b1714610109578063bbedcc4014610104578063d2ea29c0146100ff578063d4fac45d146100fa578063e20b52d9146100f5578063e537348b146100f0578063f2fde38b146100eb578063f89abe8c146100e65763ffcc41ee0361000e57610c1d565b610bd0565b610aee565b610a16565b6109aa565b610951565b610886565b610804565b610723565b610647565b610568565b610508565b6104b8565b61041e565b6103dc565b6102d5565b610165565b73ffffffffffffffffffffffffffffffffffffffff81160361015457565b5f80fd5b359061016382610136565b565b346101545760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101545773ffffffffffffffffffffffffffffffffffffffff6004356101b581610136565b165f526003602052602060405f2054604051908152f35b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b604051906060820182811067ffffffffffffffff82111761021957604052565b6101cc565b907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f604051930116820182811067ffffffffffffffff82111761021957604052565b67ffffffffffffffff81116102195760051b60200190565b9080601f8301121561015457602090823561029c61029782610262565b61021e565b9360208086848152019260051b82010192831161015457602001905b8282106102c6575050505090565b813581529083019083016102b8565b346101545760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc90602082360112610154576004359167ffffffffffffffff90818411610154576060908436030112610154576103316101f9565b91836004013582811161015457840190366023830112156101545760048201359161035e61029784610262565b926024602085838152019160051b8301019136831161015457602401905b8282106103c35750505050825261039560248401610158565b60208301526044830135908111610154576100209260046103b9923692010161027a565b6040820152610d4a565b83809183356103d181610136565b81520191019061037c565b34610154575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261015457602060ff5f5460a01c166040519015158152f35b34610154575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610154576104546110ed565b5f73ffffffffffffffffffffffffffffffffffffffff81547fffffffffffffffffffffffff000000000000000000000000000000000000000081168355167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08280a3005b34610154575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261015457602073ffffffffffffffffffffffffffffffffffffffff5f5416604051908152f35b346101545760607ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261015457602061055e60043561054881610136565b6044359061055582610136565b60243590610eb1565b6040519015158152f35b346101545760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101545760206105f86004356105a881610136565b73ffffffffffffffffffffffffffffffffffffffff602435916105ca83610136565b165f526002835260405f209073ffffffffffffffffffffffffffffffffffffffff165f5260205260405f2090565b54604051908152f35b7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc60409101126101545760043561063781610136565b9060243561064481610136565b90565b3461015457602061055e61065a36610601565b90610f0c565b9181601f840112156101545782359167ffffffffffffffff8311610154576020808501948460051b01011161015457565b60407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc820112610154576004359067ffffffffffffffff8211610154576106da91600401610660565b909160243561064481610136565b60209060206040818301928281528551809452019301915f5b82811061070f575050505090565b835185529381019392810192600101610701565b346101545761073136610691565b909161073f61029784610262565b9280845261074c81610262565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0602091013660208701375f5b828110610792576040518061078e88826106e8565b0390f35b60019073ffffffffffffffffffffffffffffffffffffffff86165f52600283526107f260405f206107c4838789610f63565b35906107cf82610136565b9073ffffffffffffffffffffffffffffffffffffffff165f5260205260405f2090565b546107fd8289610e98565b5201610779565b346101545761081236610691565b61081d92919261113d565b5f5b83811061083157602060405160018152f35b61084f82610840838787610f63565b3561084a81610136565b610f0c565b1561085c5760010161081f565b60046040517f3439313b000000000000000000000000000000000000000000000000000000008152fd5b346101545760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610154576004356108c181610136565b6024359081151580920361015457602073ffffffffffffffffffffffffffffffffffffffff7f6e22534cd7ba9ac690c8291d348b7cd994a6753f153ed57cd0a24dd720ae2d04926109106110ed565b1692835f526001825260405f207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0081541660ff8316179055604051908152a2005b346101545760206105f873ffffffffffffffffffffffffffffffffffffffff61097936610601565b919091165f526002835260405f209073ffffffffffffffffffffffffffffffffffffffff165f5260205260405f2090565b346101545760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101545773ffffffffffffffffffffffffffffffffffffffff6004356109fa81610136565b165f526001602052602060ff60405f2054166040519015158152f35b346101545760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261015457600435801515810361015457610a596110ed565b15610a6657610020611316565b5f5460ff8160a01c1615610ac4577fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff165f557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6020604051338152a1005b60046040517f8dfc202b000000000000000000000000000000000000000000000000000000008152fd5b346101545760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261015457600435610b2981610136565b610b316110ed565b73ffffffffffffffffffffffffffffffffffffffff809116908115610ba0575f54827fffffffffffffffffffffffff00000000000000000000000000000000000000008216175f55167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05f80a3005b60246040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081525f6004820152fd5b346101545760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610154576020610c15600435610c1081610136565b610fa0565b604051908152f35b346101545760607ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261015457600467ffffffffffffffff813581811161015457610c6e903690600401610660565b9160243590811161015457610c87903690600401610660565b9060443590610c9582610136565b610c9d61113d565b828503610d20575f5b858110610cb95760405160018152602090f35b610ceb610ce784610ccb848a8a610f63565b35610cd581610136565b610ce0858988610f63565b3590610eb1565b1590565b610cf757600101610ca6565b866040517f3439313b000000000000000000000000000000000000000000000000000000008152fd5b60046040517fc0375efc000000000000000000000000000000000000000000000000000000008152fd5b335f52600190600160205260ff60405f20541615610e41578051906040610d88602083015173ffffffffffffffffffffffffffffffffffffffff1690565b910151908251825103610d20575f92845b610da5575b5050505050565b8051841015610e3c578484610dbb829686610e98565b51151580610e11575b610dd0575b0193610d99565b610e0c610dfa610de08386610e98565b5173ffffffffffffffffffffffffffffffffffffffff1690565b85610e058489610e98565b519161105f565b610dc9565b5073ffffffffffffffffffffffffffffffffffffffff610e34610de08386610e98565b161515610dc4565b610d9e565b60046040517f5c427cd9000000000000000000000000000000000000000000000000000000008152fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b8051821015610eac5760209160051b010190565b610e6b565b8115610ee257610ecb610edc93610ec661113d565b611175565b90610ed7833383611199565b611248565b50600190565b60046040517fdb73cdf0000000000000000000000000000000000000000000000000000000008152fd5b90610f1990610ec661113d565b335f526002602052610f4c8260405f209073ffffffffffffffffffffffffffffffffffffffff165f5260205260405f2090565b54908115610ee257610edc92610ed7833383611199565b9190811015610eac5760051b0190565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b905f9173ffffffffffffffffffffffffffffffffffffffff81165f52600360205260405f20545f9173eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee811460011461104d576020602491604051928380927f70a082310000000000000000000000000000000000000000000000000000000082523060048301525afa611044575b505b80821161102f575050565b90809293500390811161103f5790565b610f73565b5191505f611022565b50479150611024565b333b1561015457565b9061106981610fa0565b8084116110e5575b5073ffffffffffffffffffffffffffffffffffffffff8092165f5260026020526110bc8160405f209073ffffffffffffffffffffffffffffffffffffffff165f5260205260405f2090565b80549084820180921161103f5755165f52600360205260405f20805491820180921161103f5755565b92505f611071565b73ffffffffffffffffffffffffffffffffffffffff5f5416330361110d57565b60246040517f118cdaa7000000000000000000000000000000000000000000000000000000008152336004820152fd5b60ff5f5460a01c1661114b57565b60046040517fd93c0665000000000000000000000000000000000000000000000000000000008152fd5b73ffffffffffffffffffffffffffffffffffffffff8116156111945790565b503390565b73ffffffffffffffffffffffffffffffffffffffff80921691825f5260026020526111e58260405f209073ffffffffffffffffffffffffffffffffffffffff165f5260205260405f2090565b548411610ee25781165f52600360205260405f2091825484810390811161103f5761123993555f52600260205260405f209073ffffffffffffffffffffffffffffffffffffffff165f5260205260405f2090565b805491820391821161103f5755565b929173eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee84146001146113025760446020925f92604051917fa9059cbb0000000000000000000000000000000000000000000000000000000083526004830152602482015282865af191826112dd575b505b81156112b557565b7f90b8ec18000000000000000000000000000000000000000000000000000000005f5260045ffd5b9091503d156112f9575060015f5114601f3d1116905b5f6112ab565b3b1515906112f3565b5f809394508092918192612710f1906112ad565b61131e61113d565b740100000000000000000000000000000000000000007fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff5f5416175f557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586020604051338152a156fea164736f6c6343000816000a
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000d7e24a49944f7972ceb826c7557580658f9c33030000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _augustusContracts (address[]):
Arg [1] : owner (address): 0xD7e24A49944F7972cEb826C7557580658F9C3303
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 000000000000000000000000d7e24a49944f7972ceb826c7557580658f9c3303
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
Loading...
Loading
Net Worth in USD
$748,052.95
Net Worth in S
Token Allocations
TRU
43.99%
UXLINK
25.45%
USDC
7.22%
Others
23.34%
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|---|---|---|---|---|
| ETH | 43.99% | $0.007134 | 46,123,416.5335 | $329,047.04 | |
| ETH | 3.35% | $0.999904 | 25,036.3377 | $25,033.93 | |
| ETH | 1.66% | $1 | 12,400.0145 | $12,400.01 | |
| ETH | 1.15% | $1.22 | 7,061.2069 | $8,614.67 | |
| ETH | 0.95% | $2,094.3 | 3.3811 | $7,080.93 | |
| ETH | 0.79% | $2,094.3 | 2.8261 | $5,918.65 | |
| ETH | 0.39% | $71,002.67 | 0.0409 | $2,902.13 | |
| ETH | 0.36% | $0.247116 | 10,890.7464 | $2,691.28 | |
| ETH | 0.34% | $1.16 | 2,163.4003 | $2,509.54 | |
| ETH | 0.28% | $1.09 | 1,953.471 | $2,125.38 | |
| ETH | 0.27% | $0.999332 | 2,039.4344 | $2,038.07 | |
| ETH | 0.20% | $1 | 1,474.8184 | $1,476.29 | |
| ETH | 0.17% | $1 | 1,244.0785 | $1,249.05 | |
| ETH | 0.16% | $89.05 | 13.1745 | $1,173.19 | |
| ETH | 0.10% | $1.02 | 746.1465 | $758.83 | |
| ETH | 0.09% | $0.999639 | 694.0024 | $693.75 | |
| ETH | 0.07% | $0.958585 | 541.4858 | $519.06 | |
| ETH | 0.07% | $2,558.8 | 0.1923 | $492.08 | |
| ETH | 0.05% | <$0.000001 | 2,113,008,495.8687 | $353.5 | |
| ETH | 0.05% | $0.066904 | 5,046.9594 | $337.66 | |
| ETH | 0.05% | $9.27 | 36.3167 | $336.66 | |
| ETH | 0.04% | $5,057.6 | 0.0625 | $316 | |
| ETH | 0.04% | $0.347148 | 782.2327 | $271.55 | |
| ETH | 0.04% | $119.53 | 2.2662 | $270.88 | |
| ETH | 0.04% | $5,095.94 | 0.0531 | $270.43 | |
| ETH | 0.03% | $0.076878 | 2,911.3447 | $223.82 | |
| ETH | 0.03% | $71,108.47 | 0.00307045 | $218.33 | |
| ETH | 0.03% | $1 | 214.1499 | $214.15 | |
| ETH | 0.03% | $2,087.2 | 0.1001 | $208.97 | |
| ETH | 0.02% | $0.102518 | 1,811.1138 | $185.67 | |
| ETH | 0.02% | $0.999904 | 155.0255 | $155.01 | |
| ETH | 0.02% | $0.999425 | 137.0949 | $137.02 | |
| ETH | 0.02% | $0.009292 | 14,633.0025 | $135.96 | |
| ETH | 0.02% | $0.270938 | 499.8022 | $135.42 | |
| ETH | 0.02% | $0.999975 | 134.3255 | $134.32 | |
| ETH | 0.02% | $1.16 | 110.0809 | $127.69 | |
| ETH | 0.02% | $189.42 | 0.6705 | $127 | |
| ETH | 0.02% | $1.12 | 109.885 | $123.07 | |
| ETH | 0.02% | $0.078775 | 1,530.316 | $120.55 | |
| ETH | 0.02% | $0.782787 | 152.9766 | $119.75 | |
| ETH | 0.02% | $0.999866 | 114.392 | $114.38 | |
| ETH | 0.01% | $70,890 | 0.00152763 | $108.29 | |
| ETH | 0.01% | $2,264.88 | 0.0449 | $101.67 | |
| ETH | 0.01% | $0.485166 | 207.0211 | $100.44 | |
| ETH | 0.01% | $1.97 | 49.0013 | $96.52 | |
| ETH | 0.01% | $4.01 | 21.1665 | $84.88 | |
| ETH | 0.01% | $66.64 | 1.2086 | $80.54 | |
| ETH | 0.01% | <$0.000001 | 3,370,864,561.9499 | $80.41 | |
| ETH | <0.01% | $0.01549 | 4,650.6278 | $72.04 | |
| ETH | <0.01% | $1.04 | 66.1187 | $68.83 | |
| ETH | <0.01% | $2,268.78 | 0.0298 | $67.58 | |
| ETH | <0.01% | $71,380.75 | 0.00090174 | $64.37 | |
| ETH | <0.01% | $2,410.87 | 0.0259 | $62.52 | |
| ETH | <0.01% | $0.330057 | 174.528 | $57.6 | |
| ETH | <0.01% | $0.000198 | 289,073.517 | $57.31 | |
| ETH | <0.01% | $0.000004 | 15,952,800.7381 | $56.15 | |
| ETH | <0.01% | $0.009745 | 5,585.9977 | $54.43 | |
| ETH | <0.01% | $2.32 | 22.9813 | $53.32 | |
| ETH | <0.01% | $0.999824 | 52.3543 | $52.35 | |
| ETH | <0.01% | $0.550773 | 94.4227 | $52.01 | |
| ETH | <0.01% | $1 | 50.3661 | $50.37 | |
| ETH | <0.01% | $0.000795 | 62,936.2078 | $50.03 | |
| ETH | <0.01% | $17.39 | 2.493 | $43.35 | |
| ETH | <0.01% | <$0.000001 | 813,474,926.3643 | $42.41 | |
| ETH | <0.01% | $71,241 | 0.00059317 | $42.26 | |
| ETH | <0.01% | $0.999825 | 41.5041 | $41.5 | |
| ETH | <0.01% | $1.68 | 23.8208 | $40.02 | |
| ETH | <0.01% | $0.013535 | 2,898.3957 | $39.23 | |
| ETH | <0.01% | <$0.000001 | 415,040,035.3215 | $37.19 | |
| ETH | <0.01% | $0.997114 | 36.5764 | $36.47 | |
| ETH | <0.01% | $1.15 | 30.8359 | $35.46 | |
| ETH | <0.01% | $0.147901 | 239.2746 | $35.39 | |
| ETH | <0.01% | $0.116954 | 295.1003 | $34.51 | |
| ETH | <0.01% | $0.015015 | 2,176.8078 | $32.69 | |
| ETH | <0.01% | $0.994186 | 32.8714 | $32.68 | |
| ETH | <0.01% | $1.97 | 16.1087 | $31.73 | |
| ETH | <0.01% | $0.002235 | 14,100.5857 | $31.51 | |
| ETH | <0.01% | $1 | 30.879 | $30.88 | |
| ETH | <0.01% | $0.997299 | 30.4427 | $30.36 | |
| ETH | <0.01% | $0.253832 | 115.5027 | $29.32 | |
| ETH | <0.01% | $1.87 | 15.6012 | $29.17 | |
| ETH | <0.01% | $0.024232 | 1,190.8763 | $28.86 | |
| ETH | <0.01% | $2,348.29 | 0.0122 | $28.75 | |
| ETH | <0.01% | $8.21 | 3.4216 | $28.09 | |
| ETH | <0.01% | $0.058163 | 479.918 | $27.91 | |
| ETH | <0.01% | <$0.000001 | 303,576,848.8115 | $27.89 | |
| ETH | <0.01% | $0.127952 | 217.348 | $27.81 | |
| ETH | <0.01% | $0.987666 | 27.0627 | $26.73 | |
| ETH | <0.01% | $0.006076 | 4,201.3924 | $25.53 | |
| ETH | <0.01% | $0.114852 | 221.7626 | $25.47 | |
| ETH | <0.01% | $0.008754 | 2,892.1274 | $25.32 | |
| ETH | <0.01% | $1.54 | 16.3692 | $25.21 | |
| ETH | <0.01% | $0.002692 | 9,280.49 | $24.99 | |
| ETH | <0.01% | $0.005976 | 4,112.9773 | $24.58 | |
| ETH | <0.01% | $0.827746 | 29.6471 | $24.54 | |
| ETH | <0.01% | $0.266365 | 91.8772 | $24.47 | |
| ETH | <0.01% | $2,079.17 | 0.0116 | $24.14 | |
| ETH | <0.01% | $71,086 | 0.00033854 | $24.07 | |
| ETH | <0.01% | $131.84 | 0.1778 | $23.44 | |
| ETH | <0.01% | $0.999359 | 23.04 | $23.03 | |
| ETH | <0.01% | $0.073191 | 314.1778 | $22.99 | |
| ETH | <0.01% | $2,084.93 | 0.0106 | $22.08 | |
| ETH | <0.01% | $1 | 21.9074 | $21.97 | |
| ETH | <0.01% | $0.15831 | 131.8247 | $20.87 | |
| ETH | <0.01% | $1.4 | 14.8521 | $20.79 | |
| ETH | <0.01% | $0.726143 | 28.2297 | $20.5 | |
| ETH | <0.01% | $0.093154 | 217.8878 | $20.3 | |
| ETH | <0.01% | <$0.000001 | 459,976,285.5222 | $20.14 | |
| ETH | <0.01% | $9.27 | 2.116 | $19.62 | |
| ETH | <0.01% | $0.000011 | 1,828,501.0801 | $19.49 | |
| ETH | <0.01% | $0.302596 | 62.9862 | $19.06 | |
| ETH | <0.01% | $0.00452 | 4,144.301 | $18.73 | |
| ETH | <0.01% | $0.077432 | 241.4249 | $18.69 | |
| ETH | <0.01% | $0.053942 | 344.3343 | $18.57 | |
| ETH | <0.01% | $0.70135 | 26.1053 | $18.31 | |
| ETH | <0.01% | $0.01175 | 1,547.2669 | $18.18 | |
| ETH | <0.01% | $118.47 | 0.1478 | $17.51 | |
| ETH | <0.01% | $0.776194 | 22.2901 | $17.3 | |
| ETH | <0.01% | $74.15 | 0.2314 | $17.16 | |
| ETH | <0.01% | $0.29143 | 58.7835 | $17.13 | |
| ETH | <0.01% | $0.996027 | 17.0146 | $16.95 | |
| ETH | <0.01% | $0.02164 | 782.1298 | $16.93 | |
| ETH | <0.01% | $1.28 | 13.0097 | $16.65 | |
| ETH | <0.01% | <$0.000001 | 2,306,484,069.6601 | $16.53 | |
| ETH | <0.01% | $0.005871 | 2,789.138 | $16.38 | |
| ETH | <0.01% | $0.020333 | 799.7589 | $16.26 | |
| ETH | <0.01% | $0.412135 | 39.1979 | $16.15 | |
| ETH | <0.01% | $0.01813 | 865.9631 | $15.7 | |
| ETH | <0.01% | $1.14 | 13.6668 | $15.58 | |
| ETH | <0.01% | $0.104376 | 146.8032 | $15.32 | |
| ETH | <0.01% | $2,647.06 | 0.00575115 | $15.22 | |
| ETH | <0.01% | $0.06497 | 229.5198 | $14.91 | |
| ETH | <0.01% | $8.65 | 1.7056 | $14.75 | |
| ETH | <0.01% | $0.316218 | 46.2894 | $14.64 | |
| ETH | <0.01% | $0.006084 | 2,393.3235 | $14.56 | |
| ETH | <0.01% | $0.000032 | 448,325.5212 | $14.43 | |
| ETH | <0.01% | $0.007299 | 1,972.7684 | $14.4 | |
| ETH | <0.01% | $0.078375 | 178.9646 | $14.03 | |
| ETH | <0.01% | <$0.000001 | 63,690,330.8567 | $14.03 | |
| ETH | <0.01% | $70,991 | 0.00019611 | $13.92 | |
| ETH | <0.01% | $0.154149 | 90.2115 | $13.91 | |
| ETH | <0.01% | $0.074972 | 185.3178 | $13.89 | |
| ETH | <0.01% | $0.037413 | 358.9472 | $13.43 | |
| ETH | <0.01% | $2.22 | 6.0269 | $13.4 | |
| ETH | <0.01% | $0.018223 | 729.5889 | $13.3 | |
| ETH | <0.01% | $1.17 | 11.333 | $13.26 | |
| ETH | <0.01% | $0.03205 | 413.2374 | $13.24 | |
| ETH | <0.01% | $0.972898 | 13.2775 | $12.92 | |
| ETH | <0.01% | $15.76 | 0.8136 | $12.82 | |
| ETH | <0.01% | $0.000003 | 3,846,815.2935 | $12.39 | |
| ETH | <0.01% | $0.019737 | 622.4394 | $12.28 | |
| ETH | <0.01% | $0.0249 | 491.9395 | $12.25 | |
| ETH | <0.01% | $1.28 | 9.511 | $12.17 | |
| ETH | <0.01% | $0.019678 | 618.4002 | $12.17 | |
| ETH | <0.01% | $0.009876 | 1,229.4379 | $12.14 | |
| ETH | <0.01% | $3.33 | 3.6434 | $12.13 | |
| ETH | <0.01% | $0.000006 | 2,115,018.1424 | $11.87 | |
| ETH | <0.01% | $1.1 | 10.7731 | $11.86 | |
| ETH | <0.01% | $0.005718 | 2,035.3579 | $11.64 | |
| ETH | <0.01% | $0.999897 | 11.4525 | $11.45 | |
| ETH | <0.01% | $0.101583 | 111.3851 | $11.31 | |
| ETH | <0.01% | $0.992863 | 11.351 | $11.27 | |
| ETH | <0.01% | $0.167771 | 66.96 | $11.23 | |
| ETH | <0.01% | $0.00034 | 32,473.5788 | $11.05 | |
| ETH | <0.01% | $234.28 | 0.0468 | $10.95 | |
| ETH | <0.01% | $1.35 | 7.9908 | $10.79 | |
| ETH | <0.01% | $0.448224 | 24.0472 | $10.78 | |
| ETH | <0.01% | $0.031692 | 336.1848 | $10.65 | |
| ETH | <0.01% | $0.004414 | 2,398.9943 | $10.59 | |
| ETH | <0.01% | $0.168883 | 62.605 | $10.57 | |
| ETH | <0.01% | $3.3 | 3.1834 | $10.51 | |
| ETH | <0.01% | $2,232.96 | 0.00470016 | $10.5 | |
| ETH | <0.01% | $1.28 | 8.186 | $10.48 | |
| ETH | <0.01% | $0.999918 | 10.399 | $10.4 | |
| ETH | <0.01% | $1.2 | 8.6499 | $10.38 | |
| ETH | <0.01% | $119.54 | 0.0864 | $10.33 | |
| ETH | <0.01% | $0.002098 | 4,857.1184 | $10.19 | |
| ETH | <0.01% | $0.019963 | 508.1861 | $10.14 | |
| ETH | <0.01% | $0.017082 | 593.8601 | $10.14 | |
| ETH | <0.01% | $0.004205 | 2,404.9753 | $10.11 | |
| ETH | <0.01% | $1,964.34 | 0.00512386 | $10.07 | |
| ETH | <0.01% | $1,816.58 | 0.00542895 | $9.86 | |
| ETH | <0.01% | $1.01 | 9.6327 | $9.77 | |
| ETH | <0.01% | $119.53 | 0.0811 | $9.7 | |
| ETH | <0.01% | $0.045595 | 212.0678 | $9.67 | |
| ETH | <0.01% | $0.249392 | 38.3683 | $9.57 | |
| ETH | <0.01% | $0.041112 | 229.6868 | $9.44 | |
| ETH | <0.01% | $0.003049 | 3,062.9906 | $9.34 | |
| ETH | <0.01% | $9.41 | 0.9886 | $9.3 | |
| ETH | <0.01% | $0.010045 | 910.7746 | $9.15 | |
| ETH | <0.01% | $1.09 | 8.3675 | $9.14 | |
| ETH | <0.01% | $0.171861 | 53.0808 | $9.12 | |
| ETH | <0.01% | $0.179037 | 50.8686 | $9.11 | |
| ETH | <0.01% | $0.006816 | 1,325.5052 | $9.04 | |
| ETH | <0.01% | $0.000001 | 8,825,346.0607 | $9 | |
| ETH | <0.01% | $0.988279 | 9.0762 | $8.97 | |
| ETH | <0.01% | $0.164737 | 53.8823 | $8.88 | |
| ETH | <0.01% | $0.032039 | 271.0684 | $8.68 | |
| ETH | <0.01% | $0.052399 | 165.2107 | $8.66 | |
| ETH | <0.01% | $0.173381 | 49.2477 | $8.54 | |
| ETH | <0.01% | $2,399.76 | 0.00353814 | $8.49 | |
| ETH | <0.01% | $0.088208 | 96.2327 | $8.49 | |
| ETH | <0.01% | $0.322507 | 26.2926 | $8.48 | |
| ETH | <0.01% | $0.120529 | 70.2241 | $8.46 | |
| ETH | <0.01% | $1.06 | 7.9318 | $8.44 | |
| ETH | <0.01% | $0.005819 | 1,446.8852 | $8.42 | |
| ETH | <0.01% | $0.282908 | 29.3747 | $8.31 | |
| ETH | <0.01% | $0.006569 | 1,254.0384 | $8.24 | |
| ETH | <0.01% | $0.001933 | 4,218.7439 | $8.16 | |
| ETH | <0.01% | $0.01126 | 722.8083 | $8.14 | |
| ETH | <0.01% | $0.069836 | 115.3809 | $8.06 | |
| ETH | <0.01% | $9.42 | 0.8444 | $7.95 | |
| ETH | <0.01% | $8.04 | 0.987 | $7.93 | |
| ETH | <0.01% | $0.000011 | 738,837.3971 | $7.85 | |
| ETH | <0.01% | $0.017179 | 455.4231 | $7.82 | |
| ETH | <0.01% | $1.57 | 4.9212 | $7.73 | |
| ETH | <0.01% | $0.005239 | 1,471.5114 | $7.71 | |
| ETH | <0.01% | $0.065084 | 118.3501 | $7.7 | |
| ETH | <0.01% | $0.000005 | 1,614,534.6362 | $7.65 | |
| ETH | <0.01% | $0.159673 | 47.7693 | $7.63 | |
| ETH | <0.01% | $0.118787 | 64.0745 | $7.61 | |
| ETH | <0.01% | $1 | 7.6039 | $7.6 | |
| ETH | <0.01% | $0.0041 | 1,812.2544 | $7.43 | |
| ETH | <0.01% | $0.00062 | 11,917.7087 | $7.39 | |
| ETH | <0.01% | $0.178976 | 40.7756 | $7.3 | |
| ETH | <0.01% | $0.108822 | 66.7495 | $7.26 | |
| ETH | <0.01% | $0.007058 | 1,013.8108 | $7.15 | |
| ETH | <0.01% | $0.049623 | 143.3171 | $7.11 | |
| ETH | <0.01% | $1.16 | 6.1303 | $7.11 | |
| ETH | <0.01% | $1.42 | 4.9785 | $7.07 | |
| ETH | <0.01% | $1.31 | 5.3627 | $7.03 | |
| ETH | <0.01% | $0.0004 | 17,475.3949 | $6.99 | |
| ETH | <0.01% | $6.17 | 1.1277 | $6.96 | |
| ETH | <0.01% | <$0.000001 | 85,115,804.5438 | $6.96 | |
| ETH | <0.01% | $0.018051 | 376.856 | $6.8 | |
| ETH | <0.01% | $0.154714 | 42.9636 | $6.65 | |
| ETH | <0.01% | $0.148148 | 44.6613 | $6.62 | |
| ETH | <0.01% | $0.02155 | 306.5783 | $6.61 | |
| ETH | <0.01% | $0.061053 | 107.909 | $6.59 | |
| ETH | <0.01% | $0.03428 | 190.7461 | $6.54 | |
| ETH | <0.01% | $0.38396 | 16.9329 | $6.5 | |
| ETH | <0.01% | $650.72 | 0.00997964 | $6.49 | |
| ETH | <0.01% | $0.102684 | 62.79 | $6.45 | |
| ETH | <0.01% | $0.042194 | 152.7576 | $6.45 | |
| ETH | <0.01% | <$0.000001 | 38,512,796.4889 | $6.34 | |
| ETH | <0.01% | $0.003351 | 1,890.2749 | $6.34 | |
| ETH | <0.01% | $1.44 | 4.3854 | $6.32 | |
| ETH | <0.01% | $0.002391 | 2,634.8833 | $6.3 | |
| ETH | <0.01% | $0.097976 | 64.2564 | $6.3 | |
| ETH | <0.01% | $0.000169 | 37,041.0636 | $6.25 | |
| ETH | <0.01% | $0.037195 | 163.9965 | $6.1 | |
| ETH | <0.01% | $0.068222 | 89.3801 | $6.1 | |
| ETH | <0.01% | $0.010335 | 587.8212 | $6.08 | |
| ETH | <0.01% | $0.012846 | 471.2415 | $6.05 | |
| ETH | <0.01% | $0.000001 | 10,592,429.3766 | $6.05 | |
| ETH | <0.01% | $0.001656 | 3,594.1832 | $5.95 | |
| ETH | <0.01% | $0.114026 | 51.3231 | $5.85 | |
| ETH | <0.01% | $0.070631 | 81.8573 | $5.78 | |
| ETH | <0.01% | $0.0047 | 1,225.3239 | $5.76 | |
| ETH | <0.01% | $0.237987 | 24.0705 | $5.73 | |
| ETH | <0.01% | $0.032554 | 175.3579 | $5.71 | |
| ETH | <0.01% | $53.11 | 0.1072 | $5.7 | |
| ETH | <0.01% | $13.63 | 0.4171 | $5.69 | |
| ETH | <0.01% | $1.28 | 4.435 | $5.68 | |
| ETH | <0.01% | $0.502573 | 11.289 | $5.67 | |
| ETH | <0.01% | $0.023163 | 244.435 | $5.66 | |
| ETH | <0.01% | $0.172225 | 32.1843 | $5.54 | |
| ETH | <0.01% | $0.131645 | 42.0365 | $5.53 | |
| ETH | <0.01% | <$0.000001 | 750,487,366.2558 | $5.53 | |
| ETH | <0.01% | $9.28 | 0.5892 | $5.47 | |
| ETH | <0.01% | $0.000638 | 8,550.4004 | $5.45 | |
| ETH | <0.01% | $0.273094 | 19.8508 | $5.42 | |
| ETH | <0.01% | $2,562.87 | 0.00210721 | $5.4 | |
| ETH | <0.01% | <$0.000001 | 92,781,031.5116 | $5.37 | |
| ETH | <0.01% | $0.000497 | 10,766.9373 | $5.35 | |
| ETH | <0.01% | $0.013764 | 373.0438 | $5.13 | |
| ETH | <0.01% | $0.314019 | 16.3412 | $5.13 | |
| ETH | <0.01% | $0.004241 | 1,200.1076 | $5.09 | |
| ETH | <0.01% | $0.001083 | 4,700.3199 | $5.09 | |
| ETH | <0.01% | $0.000006 | 818,615.9349 | $5.08 | |
| ETH | <0.01% | $650.01 | 0.00779275 | $5.07 | |
| ETH | <0.01% | $0.065476 | 77.2525 | $5.06 | |
| ETH | <0.01% | $0.57339 | 8.7415 | $5.01 | |
| ETH | <0.01% | $0.019354 | 255.551 | $4.95 | |
| ETH | <0.01% | $0.001843 | 2,621.5495 | $4.83 | |
| ETH | <0.01% | $0.000018 | 269,363.8609 | $4.81 | |
| ETH | <0.01% | $1.01 | 4.7041 | $4.77 | |
| ETH | <0.01% | $0.021761 | 217.8857 | $4.74 | |
| ETH | <0.01% | $0.984681 | 4.7866 | $4.71 | |
| ETH | <0.01% | $1.13 | 4.1485 | $4.69 | |
| ETH | <0.01% | $0.015444 | 303.3532 | $4.68 | |
| ETH | <0.01% | $0.0216 | 216.7013 | $4.68 | |
| ETH | <0.01% | $4.42 | 1.0559 | $4.67 | |
| ETH | <0.01% | $0.000015 | 316,582.6068 | $4.66 | |
| ETH | <0.01% | <$0.000001 | 1,909,342,256.9495 | $4.63 | |
| ETH | <0.01% | $3.07 | 1.4881 | $4.56 | |
| ETH | <0.01% | $0.040439 | 112.3154 | $4.54 | |
| ETH | <0.01% | $0.000005 | 839,376.9907 | $4.53 | |
| ETH | <0.01% | $0.011039 | 402.1601 | $4.44 | |
| ETH | <0.01% | $0.147745 | 29.9807 | $4.43 | |
| ETH | <0.01% | $0.003491 | 1,260.6526 | $4.4 | |
| ETH | <0.01% | $0.007055 | 623.2554 | $4.4 | |
| ETH | <0.01% | $0.008761 | 498.0661 | $4.36 | |
| ETH | <0.01% | $0.015971 | 273.1001 | $4.36 | |
| ETH | <0.01% | $0.0012 | 3,617.9994 | $4.34 | |
| ETH | <0.01% | $0.00313 | 1,380.2323 | $4.32 | |
| ETH | <0.01% | $0.026469 | 160.6316 | $4.25 | |
| ETH | <0.01% | $0.06045 | 69.4931 | $4.2 | |
| ETH | <0.01% | $0.988866 | 4.2225 | $4.18 | |
| ETH | <0.01% | $0.000002 | 2,741,426.2194 | $4.17 | |
| ETH | <0.01% | $1.35 | 3.0481 | $4.11 | |
| ETH | <0.01% | $2.87 | 1.411 | $4.05 | |
| ETH | <0.01% | $155.24 | 0.026 | $4.04 | |
| ETH | <0.01% | $0.051707 | 78.0831 | $4.04 | |
| ETH | <0.01% | $93.09 | 0.043 | $4 | |
| ETH | <0.01% | $0.105056 | 37.8011 | $3.97 | |
| ETH | <0.01% | $0.000004 | 980,782.4849 | $3.94 | |
| ETH | <0.01% | $2,140.04 | 0.00181269 | $3.88 | |
| ETH | <0.01% | $2.21 | 1.7493 | $3.87 | |
| ETH | <0.01% | $1.96 | 1.9721 | $3.87 | |
| ETH | <0.01% | <$0.000001 | 34,040,213,867.8113 | $3.85 | |
| ETH | <0.01% | $0.00008 | 47,932.4008 | $3.82 | |
| ETH | <0.01% | $0.009433 | 403.4307 | $3.81 | |
| ETH | <0.01% | $2,089.09 | 0.00181939 | $3.8 | |
| ETH | <0.01% | $2,816 | 0.00133726 | $3.77 | |
| ETH | <0.01% | $0.427192 | 8.79 | $3.76 | |
| ETH | <0.01% | $0.020545 | 182.2651 | $3.74 | |
| ETH | <0.01% | $0.037959 | 98.4445 | $3.74 | |
| ETH | <0.01% | $0.000174 | 21,125.75 | $3.68 | |
| ETH | <0.01% | $0.004138 | 888.7163 | $3.68 | |
| ETH | <0.01% | $0.024125 | 151.5149 | $3.66 | |
| ETH | <0.01% | <$0.000001 | 3,281,686,334.8625 | $3.65 | |
| ETH | <0.01% | $0.020363 | 178.6925 | $3.64 | |
| ETH | <0.01% | $0.007211 | 497.1292 | $3.58 | |
| ETH | <0.01% | $0.104162 | 34.3658 | $3.58 | |
| ETH | <0.01% | $0.006366 | 562.2806 | $3.58 | |
| ETH | <0.01% | $0.020966 | 170.2756 | $3.57 | |
| ETH | <0.01% | $0.005987 | 594.4718 | $3.56 | |
| ETH | <0.01% | $0.11292 | 31.4842 | $3.56 | |
| ETH | <0.01% | $0.002236 | 1,582.4511 | $3.54 | |
| ETH | <0.01% | $0.994587 | 3.5377 | $3.52 | |
| ETH | <0.01% | $0.007971 | 437.2058 | $3.48 | |
| ETH | <0.01% | $0.00001 | 350,691.3277 | $3.47 | |
| ETH | <0.01% | $0.999782 | 3.468 | $3.47 | |
| ETH | <0.01% | $0.000021 | 161,706.8324 | $3.46 | |
| ETH | <0.01% | $0.000037 | 92,698.0078 | $3.45 | |
| ETH | <0.01% | $0.192965 | 17.8307 | $3.44 | |
| ETH | <0.01% | $0.084716 | 40.3799 | $3.42 | |
| ETH | <0.01% | $0.208205 | 16.2768 | $3.39 | |
| ETH | <0.01% | $0.001691 | 1,990.6113 | $3.37 | |
| ETH | <0.01% | $0.102215 | 32.866 | $3.36 | |
| ETH | <0.01% | $0.009128 | 367.5982 | $3.36 | |
| ETH | <0.01% | $0.000055 | 60,784.5309 | $3.35 | |
| ETH | <0.01% | $0.000482 | 6,896.2788 | $3.32 | |
| ETH | <0.01% | $0.090365 | 36.6922 | $3.32 | |
| ETH | <0.01% | $0.572315 | 5.6968 | $3.26 | |
| ETH | <0.01% | $0.000049 | 66,266.5702 | $3.26 | |
| ETH | <0.01% | $0.12554 | 25.7998 | $3.24 | |
| ETH | <0.01% | $0.000064 | 50,479.8348 | $3.24 | |
| ETH | <0.01% | $1 | 3.2211 | $3.22 | |
| ETH | <0.01% | $0.195756 | 16.3941 | $3.21 | |
| ETH | <0.01% | $1.8 | 1.779 | $3.21 | |
| ETH | <0.01% | $0.004749 | 675.3935 | $3.21 | |
| ETH | <0.01% | $15.24 | 0.2082 | $3.17 | |
| ETH | <0.01% | $18.42 | 0.1715 | $3.16 | |
| ETH | <0.01% | $0.994944 | 3.1734 | $3.16 | |
| ETH | <0.01% | $0.000401 | 7,760.1162 | $3.11 | |
| ETH | <0.01% | $0.000238 | 13,038.3177 | $3.11 | |
| ETH | <0.01% | <$0.000001 | 399,185,970.8494 | $3.1 | |
| ETH | <0.01% | $0.005552 | 555.3004 | $3.08 | |
| ETH | <0.01% | $0.01472 | 207.8648 | $3.06 | |
| ETH | <0.01% | $0.021304 | 141.0741 | $3.01 | |
| ETH | <0.01% | $0.097731 | 30.3997 | $2.97 | |
| ETH | <0.01% | $0.010659 | 277.2816 | $2.96 | |
| ETH | <0.01% | $0.000097 | 30,519.185 | $2.95 | |
| ETH | <0.01% | $0.000029 | 100,192.7848 | $2.95 | |
| ETH | <0.01% | $0.011299 | 260.2935 | $2.94 | |
| ETH | <0.01% | $0.972898 | 3.0184 | $2.94 | |
| ETH | <0.01% | $0.012239 | 239.7794 | $2.93 | |
| ETH | <0.01% | $0.009059 | 322.8678 | $2.92 | |
| ETH | <0.01% | $0.004063 | 714.9742 | $2.9 | |
| ETH | <0.01% | $106.64 | 0.0272 | $2.9 | |
| ETH | <0.01% | $0.028866 | 100.4971 | $2.9 | |
| ETH | <0.01% | $0.036053 | 79.9511 | $2.88 | |
| ETH | <0.01% | $0.021299 | 135.1446 | $2.88 | |
| ETH | <0.01% | $0.005698 | 504.0057 | $2.87 | |
| ETH | <0.01% | $0.098372 | 28.9847 | $2.85 | |
| ETH | <0.01% | $0.072907 | 38.936 | $2.84 | |
| ETH | <0.01% | $0.03542 | 78.2781 | $2.77 | |
| ETH | <0.01% | $0.00702 | 391.1205 | $2.75 | |
| ETH | <0.01% | $2.36 | 1.1601 | $2.74 | |
| ETH | <0.01% | $0.00082 | 3,320.0201 | $2.72 | |
| ETH | <0.01% | $0.000995 | 2,706.7579 | $2.69 | |
| ETH | <0.01% | <$0.000001 | 2,258,444,768.5326 | $2.68 | |
| ETH | <0.01% | $0.211528 | 12.5636 | $2.66 | |
| ETH | <0.01% | <$0.000001 | 107,908,568.3272 | $2.64 | |
| ETH | <0.01% | $0.000489 | 5,397.9564 | $2.64 | |
| ETH | <0.01% | $0.000712 | 3,700.3397 | $2.64 | |
| ETH | <0.01% | $0.003873 | 680.3185 | $2.64 | |
| ETH | <0.01% | $0.004271 | 615.2354 | $2.63 | |
| ETH | <0.01% | $0.298308 | 8.7708 | $2.62 | |
| ETH | <0.01% | $1.03 | 2.5353 | $2.61 | |
| ETH | <0.01% | $0.995554 | 2.5941 | $2.58 | |
| ETH | <0.01% | $0.453346 | 5.6893 | $2.58 | |
| ETH | <0.01% | $1.16 | 2.2143 | $2.57 | |
| ETH | <0.01% | $0.003547 | 724.023 | $2.57 | |
| ETH | <0.01% | <$0.000001 | 8,829,289,342.7561 | $2.55 | |
| ETH | <0.01% | $0.00024 | 10,586.5824 | $2.54 | |
| ETH | <0.01% | <$0.000001 | 88,172,289.4717 | $2.51 | |
| ETH | <0.01% | $0.998511 | 2.5004 | $2.5 | |
| ETH | <0.01% | $0.034802 | 71.742 | $2.5 | |
| ETH | <0.01% | $0.06759 | 36.2155 | $2.45 | |
| ETH | <0.01% | $0.999668 | 2.4419 | $2.44 | |
| ETH | <0.01% | $0.023464 | 103.8684 | $2.44 | |
| ETH | <0.01% | $0.005834 | 417.1727 | $2.43 | |
| ETH | <0.01% | $0.001961 | 1,239.8989 | $2.43 | |
| ETH | <0.01% | $0.001654 | 1,465.3811 | $2.42 | |
| ETH | <0.01% | $0.635695 | 3.793 | $2.41 | |
| ETH | <0.01% | $0.58511 | 4.1015 | $2.4 | |
| ETH | <0.01% | $0.021939 | 107.5059 | $2.36 | |
| ETH | <0.01% | $0.021076 | 111.7463 | $2.36 | |
| ETH | <0.01% | $0.003028 | 777.0816 | $2.35 | |
| ETH | <0.01% | $0.000047 | 50,207.2884 | $2.34 | |
| ETH | <0.01% | $6,992.34 | 0.00033402 | $2.34 | |
| ETH | <0.01% | $0.000063 | 37,100.8501 | $2.33 | |
| ETH | <0.01% | $0.000185 | 12,648.569 | $2.33 | |
| ETH | <0.01% | $0.574648 | 4.0473 | $2.33 | |
| ETH | <0.01% | $0.290054 | 8 | $2.32 | |
| ETH | <0.01% | $0.195416 | 11.764 | $2.3 | |
| ETH | <0.01% | $0.000926 | 2,476.5525 | $2.29 | |
| ETH | <0.01% | $0.000224 | 10,219.3493 | $2.29 | |
| ETH | <0.01% | $65,738 | 0.0000348 | $2.29 | |
| ETH | <0.01% | $0.089924 | 25.3726 | $2.28 | |
| ETH | <0.01% | $0.946432 | 2.349 | $2.22 | |
| ETH | <0.01% | $0.003524 | 630.5327 | $2.22 | |
| ETH | <0.01% | $1.39 | 1.5918 | $2.21 | |
| ETH | <0.01% | $0.089266 | 24.7557 | $2.21 | |
| ETH | <0.01% | $0.001694 | 1,303.8786 | $2.21 | |
| ETH | <0.01% | $200.08 | 0.011 | $2.2 | |
| ETH | <0.01% | $0.001394 | 1,571.5211 | $2.19 | |
| ETH | <0.01% | <$0.000001 | 816,542,859.0527 | $2.18 | |
| ETH | <0.01% | $0.000399 | 5,438.3776 | $2.17 | |
| ETH | <0.01% | <$0.000001 | 216,724,765.5405 | $2.17 | |
| ETH | <0.01% | $0.012685 | 170.8906 | $2.17 | |
| ETH | <0.01% | $0.001581 | 1,366.9589 | $2.16 | |
| ETH | <0.01% | $0.588904 | 3.649 | $2.15 | |
| ETH | <0.01% | $0.000622 | 3,424.0722 | $2.13 | |
| ETH | <0.01% | $0.000138 | 14,998.793 | $2.07 | |
| ETH | <0.01% | $0.103192 | 20.0568 | $2.07 | |
| ETH | <0.01% | $0.000001 | 1,887,964.0672 | $2.06 | |
| ETH | <0.01% | $2,274.19 | 0.00089802 | $2.04 | |
| ETH | <0.01% | $2,213.87 | 0.0009198 | $2.04 | |
| ETH | <0.01% | $71,188 | 0.00002857 | $2.03 | |
| ETH | <0.01% | $0.050254 | 40.3414 | $2.03 | |
| ETH | <0.01% | $0.003582 | 565.3185 | $2.02 | |
| ETH | <0.01% | $0.004213 | 478.2274 | $2.01 | |
| ETH | <0.01% | <$0.000001 | 51,959,553.4818 | $2 | |
| ETH | <0.01% | $0.082401 | 24.0989 | $1.99 | |
| ETH | <0.01% | $0.014864 | 131.9154 | $1.96 | |
| ETH | <0.01% | $0.001041 | 1,873.9887 | $1.95 | |
| ETH | <0.01% | $0.000391 | 4,986.2956 | $1.95 | |
| ETH | <0.01% | $0.000173 | 11,122.9129 | $1.92 | |
| ETH | <0.01% | $0.053133 | 36.2086 | $1.92 | |
| ETH | <0.01% | $2.55 | 0.7459 | $1.9 | |
| ETH | <0.01% | $1.16 | 1.6379 | $1.9 | |
| ETH | <0.01% | $1.16 | 1.6379 | $1.9 | |
| ETH | <0.01% | $0.000296 | 6,379.2332 | $1.89 | |
| ETH | <0.01% | $0.006784 | 277.7517 | $1.88 | |
| ETH | <0.01% | $0.023796 | 79.1499 | $1.88 | |
| ETH | <0.01% | $57,375 | 0.00003261 | $1.87 | |
| ETH | <0.01% | <$0.000001 | 543,638,565.5037 | $1.86 | |
| ETH | <0.01% | $0.000392 | 4,718.0383 | $1.85 | |
| ETH | <0.01% | $0.108652 | 16.8902 | $1.84 | |
| ETH | <0.01% | $1 | 1.8344 | $1.83 | |
| ETH | <0.01% | $0.003865 | 472.6041 | $1.83 | |
| ETH | <0.01% | $2,518.87 | 0.00072403 | $1.82 | |
| ETH | <0.01% | $0.000171 | 10,606.2962 | $1.82 | |
| ETH | <0.01% | $2,238.83 | 0.00080028 | $1.79 | |
| ETH | <0.01% | $18.07 | 0.0989 | $1.79 | |
| ETH | <0.01% | $0.000001 | 1,427,579.1698 | $1.78 | |
| ETH | <0.01% | $0.000312 | 5,667.1115 | $1.77 | |
| ETH | <0.01% | $0.003666 | 481.9059 | $1.77 | |
| ETH | <0.01% | $0.000719 | 2,436.6995 | $1.75 | |
| ETH | <0.01% | $0.024347 | 71.9094 | $1.75 | |
| ETH | <0.01% | $0.007217 | 241.6952 | $1.74 | |
| ETH | <0.01% | $0.00498 | 343.67 | $1.71 | |
| ETH | <0.01% | $0.425513 | 3.9831 | $1.69 | |
| ETH | <0.01% | $0.011993 | 140.3817 | $1.68 | |
| ETH | <0.01% | $0.015258 | 110.0045 | $1.68 | |
| ETH | <0.01% | $0.003397 | 492.5668 | $1.67 | |
| ETH | <0.01% | $0.003164 | 527.9798 | $1.67 | |
| ETH | <0.01% | $0.152178 | 10.9669 | $1.67 | |
| ETH | <0.01% | $0.000002 | 1,054,596.3294 | $1.67 | |
| ETH | <0.01% | <$0.000001 | 83,801,141.7134 | $1.66 | |
| ETH | <0.01% | $0.000063 | 25,915.3775 | $1.64 | |
| ETH | <0.01% | $1.24 | 1.32 | $1.64 | |
| ETH | <0.01% | $0.00017 | 9,640.1763 | $1.63 | |
| ETH | <0.01% | $0.015186 | 106.7526 | $1.62 | |
| ETH | <0.01% | $0.727946 | 2.2097 | $1.61 | |
| ETH | <0.01% | $0.001091 | 1,472.4386 | $1.61 | |
| ETH | <0.01% | <$0.000001 | 10,148,371.2822 | $1.61 | |
| ETH | <0.01% | $0.558727 | 2.8483 | $1.59 | |
| ETH | <0.01% | $2,078.07 | 0.00076446 | $1.59 | |
| ETH | <0.01% | $69,582 | 0.00002274 | $1.58 | |
| ETH | <0.01% | $0.019611 | 80.521 | $1.58 | |
| ETH | <0.01% | $0.007512 | 208.5389 | $1.57 | |
| ETH | <0.01% | $0.00363 | 426.2172 | $1.55 | |
| ETH | <0.01% | $5.02 | 0.3046 | $1.53 | |
| ETH | <0.01% | $0.003377 | 451.5894 | $1.52 | |
| ETH | <0.01% | $0.034108 | 44.2148 | $1.51 | |
| ETH | <0.01% | $0.00084 | 1,792.1412 | $1.51 | |
| ETH | <0.01% | $0.185634 | 8.0188 | $1.49 | |
| ETH | <0.01% | $0.000485 | 3,062.7926 | $1.49 | |
| ETH | <0.01% | $0.091714 | 16.1692 | $1.48 | |
| ETH | <0.01% | $0.01363 | 108.4907 | $1.48 | |
| ETH | <0.01% | $0.017292 | 84.4693 | $1.46 | |
| ETH | <0.01% | $0.000157 | 9,267.8885 | $1.46 | |
| ETH | <0.01% | $0.001913 | 761.0433 | $1.46 | |
| ETH | <0.01% | $0.012592 | 115.0637 | $1.45 | |
| ETH | <0.01% | $0.009324 | 153.7674 | $1.43 | |
| ETH | <0.01% | <$0.000001 | 1,103,947,774.1253 | $1.43 | |
| ETH | <0.01% | $0.01053 | 135.2304 | $1.42 | |
| ETH | <0.01% | $0.307647 | 4.5805 | $1.41 | |
| ETH | <0.01% | $0.219072 | 6.4171 | $1.41 | |
| ETH | <0.01% | $0.057303 | 24.3071 | $1.39 | |
| ETH | <0.01% | $0.000083 | 16,721.4603 | $1.39 | |
| ETH | <0.01% | $0.000111 | 12,550.6256 | $1.39 | |
| ETH | <0.01% | $0.007986 | 173.4471 | $1.39 | |
| ETH | <0.01% | $0.00001 | 140,256.4174 | $1.38 | |
| ETH | <0.01% | $1.48 | 0.93 | $1.38 | |
| ETH | <0.01% | $0.003839 | 350.666 | $1.35 | |
| ETH | <0.01% | $0.104264 | 12.8539 | $1.34 | |
| ETH | <0.01% | $0.002394 | 559.6262 | $1.34 | |
| ETH | <0.01% | $0.024054 | 55.6127 | $1.34 | |
| ETH | <0.01% | $0.000629 | 2,109.6395 | $1.33 | |
| ETH | <0.01% | $0.066187 | 20.0364 | $1.33 | |
| ETH | <0.01% | $0.017394 | 76.0883 | $1.32 | |
| ETH | <0.01% | $0.000098 | 13,337.2624 | $1.31 | |
| ETH | <0.01% | $2.11 | 0.6208 | $1.31 | |
| ETH | <0.01% | $0.004303 | 303.8546 | $1.31 | |
| ETH | <0.01% | $70,970 | 0.00001839 | $1.31 | |
| ETH | <0.01% | $0.096685 | 13.4964 | $1.3 | |
| ETH | <0.01% | $0.000383 | 3,404.362 | $1.3 | |
| ETH | <0.01% | $1.92 | 0.6763 | $1.3 | |
| ETH | <0.01% | $0.001588 | 814.1122 | $1.29 | |
| ETH | <0.01% | $0.000404 | 3,196.4979 | $1.29 | |
| ETH | <0.01% | $57,671.17 | 0.00002213 | $1.28 | |
| ETH | <0.01% | $0.153524 | 8.2768 | $1.27 | |
| ETH | <0.01% | $2,539.68 | 0.00049436 | $1.26 | |
| ETH | <0.01% | $0.007174 | 173.82 | $1.25 | |
| ETH | <0.01% | $0.006804 | 182.6107 | $1.24 | |
| ETH | <0.01% | <$0.000001 | 735,621,648.4346 | $1.24 | |
| ETH | <0.01% | <$0.000001 | 23,056,499.7326 | $1.23 | |
| ETH | <0.01% | $0.066714 | 18.3445 | $1.22 | |
| ETH | <0.01% | $0.041191 | 29.1644 | $1.2 | |
| ETH | <0.01% | $0.00101 | 1,183.881 | $1.2 | |
| ETH | <0.01% | $0.005039 | 236.7083 | $1.19 | |
| ETH | <0.01% | $70,641 | 0.00001675 | $1.18 | |
| ETH | <0.01% | $0.010262 | 114.1608 | $1.17 | |
| ETH | <0.01% | $77,142.57 | 0.00001507 | $1.16 | |
| ETH | <0.01% | $0.000446 | 2,579.2313 | $1.15 | |
| ETH | <0.01% | <$0.000001 | 628,892,581.1767 | $1.14 | |
| ETH | <0.01% | $0.000152 | 7,506.8739 | $1.14 | |
| ETH | <0.01% | $0.296606 | 3.8052 | $1.13 | |
| ETH | <0.01% | $0.000995 | 1,130.7807 | $1.12 | |
| ETH | <0.01% | <$0.000001 | 5,321,170.5984 | $1.12 | |
| ETH | <0.01% | $0.000078 | 14,277.6119 | $1.12 | |
| ETH | <0.01% | $0.115396 | 9.6849 | $1.12 | |
| ETH | <0.01% | $0.00176 | 632.9103 | $1.11 | |
| ETH | <0.01% | $0.000002 | 627,275.1643 | $1.11 | |
| ETH | <0.01% | $0.137174 | 8.0918 | $1.11 | |
| ETH | <0.01% | $0.000123 | 8,990.4023 | $1.11 | |
| ETH | <0.01% | $0.017837 | 61.9439 | $1.1 | |
| ETH | <0.01% | $0.000001 | 1,278,621.5118 | $1.1 | |
| ETH | <0.01% | $0.296136 | 3.7148 | $1.1 | |
| ETH | <0.01% | $0.00003 | 36,115.175 | $1.09 | |
| ETH | <0.01% | $0.044767 | 24.3733 | $1.09 | |
| ETH | <0.01% | $0.086307 | 12.6134 | $1.09 | |
| ETH | <0.01% | $0.019824 | 54.8849 | $1.09 | |
| ETH | <0.01% | $0.002901 | 373.9598 | $1.09 | |
| ETH | <0.01% | $0.001055 | 1,021.8548 | $1.08 | |
| ETH | <0.01% | $0.000994 | 1,076.6303 | $1.07 | |
| ETH | <0.01% | $0.003723 | 278.956 | $1.04 | |
| ETH | <0.01% | $0.943724 | 1.0983 | $1.04 | |
| ETH | <0.01% | $0.01652 | 62.6817 | $1.04 | |
| ETH | <0.01% | $0.021178 | 48.664 | $1.03 | |
| ETH | <0.01% | $0.011236 | 91.3857 | $1.03 | |
| ETH | <0.01% | $0.000576 | 1,777.4512 | $1.02 | |
| ETH | <0.01% | $0.554703 | 1.8227 | $1.01 | |
| ETH | <0.01% | $0.006833 | 147.8499 | $1.01 | |
| ETH | <0.01% | $0.013435 | 74.0839 | $0.9953 | |
| ETH | <0.01% | $0.682541 | 1.4469 | $0.9875 | |
| ETH | <0.01% | $0.01019 | 96.6689 | $0.985 | |
| ETH | <0.01% | $0.000015 | 63,648.9998 | $0.9649 | |
| ETH | <0.01% | $0.893978 | 1.0752 | $0.9612 | |
| ETH | <0.01% | $0.002742 | 345.304 | $0.9467 | |
| ETH | <0.01% | $0.004691 | 201.667 | $0.9459 | |
| ETH | <0.01% | $0.004854 | 192.7933 | $0.9357 | |
| ETH | <0.01% | $0.004171 | 224.2428 | $0.9352 | |
| ETH | <0.01% | $0.000042 | 22,218.8002 | $0.9338 | |
| ETH | <0.01% | $0.081886 | 11.2629 | $0.9222 | |
| ETH | <0.01% | $0.00315 | 292.3058 | $0.9206 | |
| ETH | <0.01% | $0.039729 | 23.119 | $0.9184 | |
| ETH | <0.01% | $0.071136 | 12.9116 | $0.9184 | |
| ETH | <0.01% | $0.767763 | 1.1929 | $0.9158 | |
| ETH | <0.01% | $4.45 | 0.2054 | $0.9138 | |
| ETH | <0.01% | $0.144034 | 6.3011 | $0.9075 | |
| ETH | <0.01% | $0.010797 | 83.6398 | $0.903 | |
| ETH | <0.01% | $1 | 0.9025 | $0.9026 | |
| ETH | <0.01% | $0.002323 | 385.4674 | $0.8955 | |
| ETH | <0.01% | $48.28 | 0.0185 | $0.8927 | |
| ETH | <0.01% | $14.17 | 0.0625 | $0.8851 | |
| ETH | <0.01% | $0.00063 | 1,401.7781 | $0.8833 | |
| ETH | <0.01% | $0.048768 | 18.0383 | $0.8796 | |
| ETH | <0.01% | $2,194.63 | 0.00039832 | $0.8741 | |
| ETH | <0.01% | $0.000248 | 3,523.3431 | $0.8736 | |
| ETH | <0.01% | $0.000097 | 9,019.3059 | $0.8716 | |
| ETH | <0.01% | $0.0314 | 27.6078 | $0.8668 | |
| ETH | <0.01% | $0.002566 | 335.1484 | $0.86 | |
| ETH | <0.01% | $0.000767 | 1,118.4769 | $0.8582 | |
| ETH | <0.01% | $0.038769 | 22.1036 | $0.8569 | |
| ETH | <0.01% | $0.003513 | 243.0841 | $0.8539 | |
| ETH | <0.01% | <$0.000001 | 11,917,555.9583 | $0.8518 | |
| ETH | <0.01% | $0.00234 | 363.6077 | $0.8507 | |
| ETH | <0.01% | $0.005554 | 152.2442 | $0.8455 | |
| ETH | <0.01% | $0.090359 | 9.3253 | $0.8426 | |
| ETH | <0.01% | $3.55 | 0.2369 | $0.841 | |
| ETH | <0.01% | $0.312736 | 2.6869 | $0.8402 | |
| ETH | <0.01% | $0.035335 | 23.7002 | $0.8374 | |
| ETH | <0.01% | $0.10182 | 8.1164 | $0.8264 | |
| ETH | <0.01% | $0.001416 | 572.6653 | $0.8108 | |
| ETH | <0.01% | $0.18427 | 4.3771 | $0.8065 | |
| ETH | <0.01% | $0.029284 | 27.5134 | $0.8057 | |
| ETH | <0.01% | <$0.000001 | 14,979,190.8839 | $0.8015 | |
| ETH | <0.01% | $0.002281 | 345.8805 | $0.7889 | |
| ETH | <0.01% | $0.004623 | 170.5398 | $0.7884 | |
| ETH | <0.01% | $0.343708 | 2.2756 | $0.7821 | |
| ETH | <0.01% | $2,288.82 | 0.00034033 | $0.7789 | |
| ETH | <0.01% | <$0.000001 | 698,250,856.9288 | $0.7778 | |
| ETH | <0.01% | $2.4 | 0.3198 | $0.7674 | |
| ETH | <0.01% | $0.009807 | 77.1423 | $0.7565 | |
| ETH | <0.01% | <$0.000001 | 2,262,522.4994 | $0.7557 | |
| ETH | <0.01% | $0.997845 | 0.757 | $0.7553 | |
| ETH | <0.01% | $0.000008 | 93,633.0424 | $0.7528 | |
| ETH | <0.01% | $0.001715 | 433.4443 | $0.7433 | |
| ETH | <0.01% | $0.013951 | 53.1421 | $0.7413 | |
| ETH | <0.01% | $2,332.96 | 0.00031482 | $0.7344 | |
| ETH | <0.01% | $0.000175 | 4,175.5332 | $0.7295 | |
| ETH | <0.01% | $0.072238 | 10.0219 | $0.7239 | |
| ETH | <0.01% | $0.031884 | 22.2796 | $0.7103 | |
| ETH | <0.01% | $0.013876 | 51.1157 | $0.7092 | |
| ETH | <0.01% | $0.001948 | 358.2508 | $0.6977 | |
| ETH | <0.01% | $0.019302 | 35.6318 | $0.6877 | |
| ETH | <0.01% | $0.006968 | 97.5376 | $0.6796 | |
| ETH | <0.01% | $0.009991 | 67.4633 | $0.674 | |
| ETH | <0.01% | $0.000001 | 510,628.7741 | $0.6687 | |
| ETH | <0.01% | $0.000302 | 2,207.4523 | $0.6656 | |
| ETH | <0.01% | $0.045319 | 14.6768 | $0.6651 | |
| ETH | <0.01% | $0.000007 | 94,040.5951 | $0.6629 | |
| ETH | <0.01% | $0.147607 | 4.4585 | $0.6581 | |
| ETH | <0.01% | $0.01114 | 58.9402 | $0.6565 | |
| ETH | <0.01% | $3.71 | 0.1759 | $0.6527 | |
| ETH | <0.01% | <$0.000001 | 519,691,192.6843 | $0.6503 | |
| ETH | <0.01% | $11.37 | 0.0572 | $0.6498 | |
| ETH | <0.01% | $0.00024 | 2,677.5132 | $0.6438 | |
| ETH | <0.01% | $0.00833 | 77.2183 | $0.6432 | |
| ETH | <0.01% | $0.00159 | 404.293 | $0.6426 | |
| ETH | <0.01% | $0.000445 | 1,439.1016 | $0.6403 | |
| ETH | <0.01% | $0.000384 | 1,661.5353 | $0.6373 | |
| ETH | <0.01% | $0.291889 | 2.1794 | $0.6361 | |
| ETH | <0.01% | $0.002409 | 262.0382 | $0.6312 | |
| ETH | <0.01% | $0.002026 | 310.7259 | $0.6294 | |
| ETH | <0.01% | $0.999435 | 0.6289 | $0.6284 | |
| ETH | <0.01% | $0.024817 | 24.955 | $0.6193 | |
| ETH | <0.01% | $0.08937 | 6.9261 | $0.6189 | |
| ETH | <0.01% | $0.001078 | 572.6136 | $0.617 | |
| ETH | <0.01% | $225.72 | 0.0027219 | $0.6143 | |
| ETH | <0.01% | $0.022679 | 26.8199 | $0.6082 | |
| ETH | <0.01% | $0.018997 | 31.8145 | $0.6043 | |
| ETH | <0.01% | $0.005601 | 107.4345 | $0.6017 | |
| ETH | <0.01% | $71,210 | 0.00000844 | $0.601 | |
| ETH | <0.01% | $0.000069 | 8,718.7428 | $0.5996 | |
| ETH | <0.01% | <$0.000001 | 2,264,785.9077 | $0.5959 | |
| ETH | <0.01% | $0.003778 | 157.706 | $0.5958 | |
| ETH | <0.01% | $0.048271 | 12.3376 | $0.5955 | |
| ETH | <0.01% | $0.009649 | 61.7049 | $0.5953 | |
| ETH | <0.01% | $1.32 | 0.45 | $0.5939 | |
| ETH | <0.01% | $0.023861 | 24.8597 | $0.5931 | |
| ETH | <0.01% | $0.017796 | 33.1139 | $0.5892 | |
| ETH | <0.01% | $0.0398 | 14.7479 | $0.5869 | |
| ETH | <0.01% | <$0.000001 | 42,409,293.6098 | $0.5808 | |
| ETH | <0.01% | $0.000096 | 6,042.1303 | $0.5796 | |
| ETH | <0.01% | $2,231.02 | 0.00025945 | $0.5788 | |
| ETH | <0.01% | $0.118944 | 4.8263 | $0.574 | |
| ETH | <0.01% | $0.001024 | 559.0974 | $0.5726 | |
| ETH | <0.01% | $0.022508 | 25.4303 | $0.5723 | |
| ETH | <0.01% | $0.541394 | 1.0479 | $0.5673 | |
| ETH | <0.01% | $3.35 | 0.1692 | $0.5668 | |
| ETH | <0.01% | $0.086297 | 6.5476 | $0.565 | |
| ETH | <0.01% | $0.044826 | 12.596 | $0.5646 | |
| ETH | <0.01% | $2,319.64 | 0.00024254 | $0.5626 | |
| ETH | <0.01% | $0.000491 | 1,138.4178 | $0.5592 | |
| ETH | <0.01% | $2,261.06 | 0.00024709 | $0.5586 | |
| ETH | <0.01% | $0.312736 | 1.7836 | $0.5577 | |
| ETH | <0.01% | $0.018233 | 30.4938 | $0.5559 | |
| ETH | <0.01% | $0.016377 | 33.8648 | $0.5546 | |
| ETH | <0.01% | <$0.000001 | 4,934,347.2219 | $0.5463 | |
| ETH | <0.01% | $0.01299 | 41.8416 | $0.5435 | |
| ETH | <0.01% | <$0.000001 | 1,904,337.7244 | $0.5434 | |
| ETH | <0.01% | $104.71 | 0.00518324 | $0.5427 | |
| ETH | <0.01% | $0.00145 | 373.0895 | $0.5408 | |
| ETH | <0.01% | $0.005112 | 105.753 | $0.5406 | |
| ETH | <0.01% | $0.018822 | 28.6402 | $0.539 | |
| ETH | <0.01% | $0.003949 | 136.2814 | $0.5381 | |
| ETH | <0.01% | $0.985761 | 0.5458 | $0.538 | |
| ETH | <0.01% | $0.209947 | 2.5191 | $0.5288 | |
| ETH | <0.01% | $0.00717 | 73.2655 | $0.5253 | |
| ETH | <0.01% | $1 | 0.521 | $0.5212 | |
| ETH | <0.01% | $0.117751 | 4.4148 | $0.5198 | |
| ETH | <0.01% | $0.302343 | 1.7134 | $0.518 | |
| ETH | <0.01% | $0.000772 | 662.8869 | $0.5117 | |
| ETH | <0.01% | $0.000373 | 1,354.8217 | $0.5055 | |
| ETH | <0.01% | $0.286133 | 1.7645 | $0.5048 | |
| ETH | <0.01% | $0.001923 | 262.1237 | $0.504 | |
| ETH | <0.01% | $1.72 | 0.2927 | $0.5033 | |
| ETH | <0.01% | $0.085299 | 5.8844 | $0.5019 | |
| ETH | <0.01% | $12.95 | 0.0387 | $0.5012 | |
| ETH | <0.01% | $0.001241 | 402.7606 | $0.4998 | |
| ETH | <0.01% | $0.995816 | 0.4999 | $0.4978 | |
| ETH | <0.01% | <$0.000001 | 9,865,956.8185 | $0.4975 | |
| ETH | <0.01% | $0.000002 | 214,793.9033 | $0.4961 | |
| ETH | <0.01% | $0.000171 | 2,886.351 | $0.4943 | |
| ETH | <0.01% | $0.000507 | 968.965 | $0.4914 | |
| ETH | <0.01% | $6.54 | 0.0751 | $0.4911 | |
| ETH | <0.01% | $0.001712 | 285.5645 | $0.489 | |
| ETH | <0.01% | $0.118078 | 4.129 | $0.4875 | |
| ETH | <0.01% | $0.181284 | 2.6718 | $0.4843 | |
| ETH | <0.01% | $0.000312 | 1,549.1841 | $0.4837 | |
| ETH | <0.01% | $0.0208 | 22.7099 | $0.4723 | |
| ETH | <0.01% | $0.019125 | 24.6847 | $0.472 | |
| ETH | <0.01% | $0.000373 | 1,263.9415 | $0.4718 | |
| ETH | <0.01% | $0.00287 | 162.9478 | $0.4676 | |
| ETH | <0.01% | $0.003305 | 139.9691 | $0.4626 | |
| ETH | <0.01% | $12.99 | 0.0355 | $0.4608 | |
| ETH | <0.01% | $0.759912 | 0.6051 | $0.4598 | |
| ETH | <0.01% | $0.007446 | 61.5961 | $0.4586 | |
| ETH | <0.01% | <$0.000001 | 2,755,286,272.7372 | $0.4584 | |
| ETH | <0.01% | $0.000405 | 1,126.874 | $0.4567 | |
| ETH | <0.01% | $0.350505 | 1.3016 | $0.4562 | |
| ETH | <0.01% | $0.010068 | 45.0772 | $0.4538 | |
| ETH | <0.01% | <$0.000001 | 12,669,455.4032 | $0.4527 | |
| ETH | <0.01% | <$0.000001 | 256,563,690.037 | $0.45 | |
| ETH | <0.01% | $0.001308 | 339.6616 | $0.4442 | |
| ETH | <0.01% | $0.100302 | 4.4159 | $0.4429 | |
| ETH | <0.01% | $0.001876 | 236.0371 | $0.4427 | |
| ETH | <0.01% | $0.004745 | 93.0245 | $0.4414 | |
| ETH | <0.01% | <$0.000001 | 12,275,635,976.0232 | $0.4379 | |
| ETH | <0.01% | $0.000048 | 9,184.5829 | $0.437 | |
| ETH | <0.01% | $0.051337 | 8.4618 | $0.4344 | |
| ETH | <0.01% | $0.000046 | 9,516.6322 | $0.4342 | |
| ETH | <0.01% | $0.000001 | 331,012.3692 | $0.4328 | |
| ETH | <0.01% | <$0.000001 | 3,866,995.5078 | $0.4266 | |
| ETH | <0.01% | $0.654869 | 0.6502 | $0.4258 | |
| ETH | <0.01% | $0.132168 | 3.2204 | $0.4256 | |
| ETH | <0.01% | $0.101494 | 4.1006 | $0.4161 | |
| ETH | <0.01% | $0.000008 | 48,844.0185 | $0.4137 | |
| ETH | <0.01% | $0.563064 | 0.7339 | $0.4132 | |
| ETH | <0.01% | $0.217012 | 1.8989 | $0.412 | |
| ETH | <0.01% | $0.008929 | 45.8971 | $0.4098 | |
| ETH | <0.01% | $0.005574 | 73.3492 | $0.4088 | |
| ETH | <0.01% | $0.001093 | 370.1004 | $0.4045 | |
| ETH | <0.01% | $0.000003 | 139,705.9182 | $0.4037 | |
| ETH | <0.01% | $0.000057 | 7,102.2808 | $0.4018 | |
| ETH | <0.01% | $0.000001 | 569,538.5184 | $0.3992 | |
| ETH | <0.01% | $0.005524 | 71.9014 | $0.3971 | |
| ETH | <0.01% | $0.007723 | 51.2966 | $0.3961 | |
| ETH | <0.01% | $1,330 | 0.00029638 | $0.3941 | |
| ETH | <0.01% | $0.000001 | 711,365.9576 | $0.393 | |
| ETH | <0.01% | $0.00006 | 6,550.9119 | $0.3921 | |
| ETH | <0.01% | $0.104915 | 3.7379 | $0.3921 | |
| ETH | <0.01% | $0.008203 | 47.784 | $0.3919 | |
| ETH | <0.01% | $0.008338 | 46.7627 | $0.3899 | |
| ETH | <0.01% | $0.000111 | 3,504.8123 | $0.3879 | |
| ETH | <0.01% | $2,208.74 | 0.00017501 | $0.3865 | |
| ETH | <0.01% | $0.000168 | 2,263.6298 | $0.3808 | |
| ETH | <0.01% | <$0.000001 | 422,371,175.1789 | $0.3796 | |
| ETH | <0.01% | $0.000113 | 3,344.1063 | $0.3785 | |
| ETH | <0.01% | $0.085398 | 4.3639 | $0.3726 | |
| ETH | <0.01% | $0.103356 | 3.5633 | $0.3682 | |
| ETH | <0.01% | $0.0031 | 117.4284 | $0.364 | |
| ETH | <0.01% | $1 | 0.3636 | $0.3635 | |
| ETH | <0.01% | $0.000193 | 1,878.0825 | $0.3632 | |
| ETH | <0.01% | $0.00111 | 327.1079 | $0.3631 | |
| ETH | <0.01% | $0.000057 | 6,380.0479 | $0.3613 | |
| ETH | <0.01% | $3.19 | 0.1114 | $0.3553 | |
| ETH | <0.01% | $0.00178 | 198.8919 | $0.3541 | |
| ETH | <0.01% | $0.0006 | 590.1016 | $0.3541 | |
| ETH | <0.01% | <$0.000001 | 2,782,843.9791 | $0.3518 | |
| ETH | <0.01% | $4,678.58 | 0.00007457 | $0.3488 | |
| ETH | <0.01% | $0.008716 | 39.8941 | $0.3477 | |
| ETH | <0.01% | $0.054284 | 6.2764 | $0.3407 | |
| ETH | <0.01% | <$0.000001 | 633,347,294.7121 | $0.3333 | |
| ETH | <0.01% | $0.007338 | 45.4227 | $0.3332 | |
| ETH | <0.01% | $0.000002 | 149,326.4338 | $0.3315 | |
| ETH | <0.01% | $0.036994 | 8.8858 | $0.3287 | |
| ETH | <0.01% | <$0.000001 | 2,010,245.0006 | $0.3274 | |
| ETH | <0.01% | $0.001219 | 268.0615 | $0.3267 | |
| ETH | <0.01% | $2,090.86 | 0.00015555 | $0.3252 | |
| ETH | <0.01% | $0.260733 | 1.2359 | $0.3222 | |
| ETH | <0.01% | $0.000096 | 3,362.9232 | $0.3215 | |
| ETH | <0.01% | $0.033672 | 9.5083 | $0.3201 | |
| ETH | <0.01% | $0.000026 | 12,209.1136 | $0.3193 | |
| ETH | <0.01% | $0.000006 | 52,509.7007 | $0.3184 | |
| ETH | <0.01% | $71,764 | 0.00000443 | $0.3179 | |
| ETH | <0.01% | $0.000704 | 450.4167 | $0.3171 | |
| ETH | <0.01% | $0.000092 | 3,406.9705 | $0.3139 | |
| ETH | <0.01% | $0.000152 | 2,064.4671 | $0.3137 | |
| ETH | <0.01% | $1.01 | 0.3112 | $0.313 | |
| ETH | <0.01% | $0.006825 | 45.8069 | $0.3126 | |
| ETH | <0.01% | $0.024531 | 12.6212 | $0.3096 | |
| ETH | <0.01% | $0.000001 | 233,676.4539 | $0.3095 | |
| ETH | <0.01% | $0.002448 | 125.1137 | $0.3063 | |
| ETH | <0.01% | $0.002319 | 132.0031 | $0.306 | |
| ETH | <0.01% | $0.000225 | 1,358.7563 | $0.3059 | |
| ETH | <0.01% | $2,577.93 | 0.00011751 | $0.3029 | |
| ETH | <0.01% | $0.001306 | 231.3233 | $0.302 | |
| ETH | <0.01% | $0.000884 | 336.5574 | $0.2973 | |
| ETH | <0.01% | $0.002937 | 101.2489 | $0.2973 | |
| ETH | <0.01% | $0.020977 | 14.1477 | $0.2967 | |
| ETH | <0.01% | $0.129394 | 2.2908 | $0.2964 | |
| ETH | <0.01% | $0.002396 | 120.7397 | $0.2892 | |
| ETH | <0.01% | $0.025884 | 11.0633 | $0.2863 | |
| ETH | <0.01% | $0.003857 | 72.9903 | $0.2815 | |
| ETH | <0.01% | $0.000092 | 3,051.5165 | $0.2812 | |
| ETH | <0.01% | $0.006537 | 42.7112 | $0.2791 | |
| ETH | <0.01% | $0.38405 | 0.7213 | $0.277 | |
| ETH | <0.01% | $0.053945 | 5.1304 | $0.2767 | |
| ETH | <0.01% | $0.002046 | 135.0588 | $0.2762 | |
| ETH | <0.01% | $0.000708 | 389.7636 | $0.2758 | |
| ETH | <0.01% | <$0.000001 | 2,381,710,725.254 | $0.274 | |
| ETH | <0.01% | $0.024455 | 11.1857 | $0.2735 | |
| ETH | <0.01% | $0.002022 | 133.0298 | $0.269 | |
| ETH | <0.01% | $0.008432 | 31.822 | $0.2683 | |
| ETH | <0.01% | $0.000682 | 390.8643 | $0.2667 | |
| ETH | <0.01% | $0.000871 | 303.9069 | $0.2647 | |
| ETH | <0.01% | $0.013959 | 18.9218 | $0.2641 | |
| ETH | <0.01% | $0.004845 | 54.411 | $0.2636 | |
| ETH | <0.01% | $0.000358 | 722.4259 | $0.2587 | |
| ETH | <0.01% | $0.0018 | 143.1916 | $0.2578 | |
| ETH | <0.01% | $0.000001 | 207,109.589 | $0.2568 | |
| ETH | <0.01% | $0.00004 | 6,441.933 | $0.2566 | |
| ETH | <0.01% | $0.067291 | 3.8056 | $0.256 | |
| ETH | <0.01% | $0.010551 | 24.0354 | $0.2535 | |
| ETH | <0.01% | $1.03 | 0.2463 | $0.2524 | |
| ETH | <0.01% | $0.001146 | 219.6598 | $0.2516 | |
| ETH | <0.01% | $0.000245 | 1,016.949 | $0.2492 | |
| ETH | <0.01% | $0.000019 | 13,101.4185 | $0.2491 | |
| ETH | <0.01% | $0.001245 | 199.7278 | $0.2486 | |
| ETH | <0.01% | $0.00464 | 53.5047 | $0.2482 | |
| ETH | <0.01% | $0.001471 | 168.3799 | $0.2476 | |
| ETH | <0.01% | $0.079892 | 3.09 | $0.2468 | |
| ETH | <0.01% | $0.001178 | 208.9673 | $0.2461 | |
| ETH | <0.01% | $0.000312 | 779.4354 | $0.243 | |
| ETH | <0.01% | $0.096122 | 2.5089 | $0.2411 | |
| ETH | <0.01% | $0.000876 | 274.2526 | $0.2402 | |
| ETH | <0.01% | $0.001356 | 176.9645 | $0.2399 | |
| ETH | <0.01% | $0.036268 | 6.6128 | $0.2398 | |
| ETH | <0.01% | <$0.000001 | 4,568,463.5058 | $0.2395 | |
| ETH | <0.01% | $0.531078 | 0.4495 | $0.2387 | |
| ETH | <0.01% | $0.041242 | 5.759 | $0.2375 | |
| ETH | <0.01% | $0.039729 | 5.9773 | $0.2374 | |
| ETH | <0.01% | $0.004681 | 50.563 | $0.2366 | |
| ETH | <0.01% | $0.000007 | 34,722.5759 | $0.2343 | |
| ETH | <0.01% | $0.002252 | 103.2776 | $0.2325 | |
| ETH | <0.01% | $0.007891 | 29.4603 | $0.2324 | |
| ETH | <0.01% | $0.000317 | 733.5491 | $0.2322 | |
| ETH | <0.01% | <$0.000001 | 3,275,283,523.4299 | $0.2315 | |
| ETH | <0.01% | $0.153069 | 1.5117 | $0.2313 | |
| ETH | <0.01% | $0.000179 | 1,286.2833 | $0.2304 | |
| ETH | <0.01% | $0.002763 | 83.2073 | $0.2298 | |
| ETH | <0.01% | $0.000505 | 454.2166 | $0.2295 | |
| ETH | <0.01% | $0.00005 | 4,546.8826 | $0.2279 | |
| ETH | <0.01% | $0.000921 | 245.0533 | $0.2256 | |
| ETH | <0.01% | $0.009297 | 24.2126 | $0.2251 | |
| ETH | <0.01% | $0.029018 | 7.7516 | $0.2249 | |
| ETH | <0.01% | $0.000288 | 775.0748 | $0.2235 | |
| ETH | <0.01% | $0.00002 | 11,112.834 | $0.2235 | |
| ETH | <0.01% | $0.000312 | 714.9695 | $0.2232 | |
| ETH | <0.01% | $0.000032 | 6,872.9769 | $0.2215 | |
| ETH | <0.01% | $0.001532 | 143.7216 | $0.2201 | |
| ETH | <0.01% | $0.051309 | 4.2591 | $0.2185 | |
| ETH | <0.01% | <$0.000001 | 1,948,745.9533 | $0.2157 | |
| ETH | <0.01% | $0.032004 | 6.7143 | $0.2148 | |
| ETH | <0.01% | $0.000003 | 64,422.1661 | $0.2114 | |
| ETH | <0.01% | $0.002904 | 72.5522 | $0.2107 | |
| ETH | <0.01% | $42.04 | 0.00500298 | $0.2103 | |
| ETH | <0.01% | <$0.000001 | 435,969,211.2955 | $0.2101 | |
| ETH | <0.01% | $0.01518 | 13.8214 | $0.2098 | |
| ETH | <0.01% | $0.137424 | 1.5197 | $0.2088 | |
| ETH | <0.01% | $0.000253 | 817.2922 | $0.2071 | |
| ETH | <0.01% | $0.012299 | 16.4987 | $0.2029 | |
| ETH | <0.01% | $0.000692 | 292.8069 | $0.2025 | |
| ETH | <0.01% | $0.002769 | 72.3559 | $0.2003 | |
| ETH | <0.01% | $0.02285 | 8.7427 | $0.1997 | |
| ETH | <0.01% | $1.01 | 0.1979 | $0.1988 | |
| ETH | <0.01% | $0.141361 | 1.4028 | $0.1982 | |
| ETH | <0.01% | $0.000023 | 8,754.0607 | $0.197 | |
| ETH | <0.01% | $0.002619 | 75.1192 | $0.1967 | |
| ETH | <0.01% | $0.003636 | 54.0979 | $0.1966 | |
| ETH | <0.01% | $205.36 | 0.00095709 | $0.1965 | |
| ETH | <0.01% | $0.000005 | 36,992.0419 | $0.1964 | |
| ETH | <0.01% | $0.000001 | 175,837.0409 | $0.1951 | |
| ETH | <0.01% | $0.023261 | 8.2124 | $0.191 | |
| ETH | <0.01% | $0.150659 | 1.2582 | $0.1895 | |
| ETH | <0.01% | $0.000017 | 11,248.2481 | $0.1875 | |
| ETH | <0.01% | $0.000128 | 1,456.6412 | $0.1858 | |
| ETH | <0.01% | $1 | 0.1849 | $0.185 | |
| ETH | <0.01% | $0.000177 | 1,043.1424 | $0.1845 | |
| ETH | <0.01% | $0.000437 | 421.1317 | $0.1841 | |
| ETH | <0.01% | $0.01523 | 11.9864 | $0.1825 | |
| ETH | <0.01% | $0.000171 | 1,046.9154 | $0.179 | |
| ETH | <0.01% | $0.017482 | 10.1771 | $0.1779 | |
| ETH | <0.01% | <$0.000001 | 532,078.9884 | $0.1779 | |
| ETH | <0.01% | $0.00002 | 8,877.1633 | $0.1778 | |
| ETH | <0.01% | $0.003199 | 55.5606 | $0.1777 | |
| ETH | <0.01% | $0.012483 | 14.2218 | $0.1775 | |
| ETH | <0.01% | $0.002541 | 69.353 | $0.1762 | |
| ETH | <0.01% | $0.001783 | 98.3573 | $0.1754 | |
| ETH | <0.01% | <$0.000001 | 277,569,252.376 | $0.1753 | |
| ETH | <0.01% | $0.000046 | 3,742.4259 | $0.1718 | |
| ETH | <0.01% | $0.00066 | 259.4271 | $0.1711 | |
| ETH | <0.01% | $0.004456 | 38.4202 | $0.1711 | |
| ETH | <0.01% | $0.000013 | 12,695.6031 | $0.1678 | |
| ETH | <0.01% | $0.001557 | 107.0775 | $0.1667 | |
| ETH | <0.01% | $7.61 | 0.0217 | $0.165 | |
| ETH | <0.01% | $0.000007 | 24,691.592 | $0.1644 | |
| ETH | <0.01% | $0.000772 | 210.915 | $0.1628 | |
| ETH | <0.01% | $0.000287 | 564.6148 | $0.1618 | |
| ETH | <0.01% | $0.020648 | 7.8377 | $0.1618 | |
| ETH | <0.01% | $0.007573 | 21.1844 | $0.1604 | |
| ETH | <0.01% | $0.001276 | 125.7211 | $0.1604 | |
| ETH | <0.01% | $1 | 0.1604 | $0.1603 | |
| ETH | <0.01% | $0.058166 | 2.7312 | $0.1588 | |
| ETH | <0.01% | $0.000185 | 856.9548 | $0.1586 | |
| ETH | <0.01% | <$0.000001 | 325,621,916.4999 | $0.1586 | |
| ETH | <0.01% | $0.050591 | 3.1345 | $0.1585 | |
| ETH | <0.01% | $1.61 | 0.0983 | $0.1582 | |
| ETH | <0.01% | $0.012727 | 12.2828 | $0.1563 | |
| ETH | <0.01% | $0.004601 | 33.6536 | $0.1548 | |
| ETH | <0.01% | $0.000001 | 160,404.7921 | $0.152 | |
| ETH | <0.01% | $0.000011 | 13,989.111 | $0.1499 | |
| ETH | <0.01% | $0.025679 | 5.8341 | $0.1498 | |
| ETH | <0.01% | <$0.000001 | 454,194.5048 | $0.1487 | |
| ETH | <0.01% | $0.004265 | 34.3089 | $0.1463 | |
| ETH | <0.01% | $0.698062 | 0.2077 | $0.1449 | |
| ETH | <0.01% | <$0.000001 | 362,285,639.6352 | $0.1446 | |
| ETH | <0.01% | $0.000028 | 5,154.0433 | $0.1433 | |
| ETH | <0.01% | $0.00011 | 1,293.2736 | $0.1418 | |
| ETH | <0.01% | $0.000094 | 1,496.6926 | $0.1411 | |
| ETH | <0.01% | $0.000178 | 784.3827 | $0.1392 | |
| ETH | <0.01% | $0.001234 | 112.0592 | $0.1382 | |
| ETH | <0.01% | $0.021726 | 6.363 | $0.1382 | |
| ETH | <0.01% | $0.002952 | 46.6232 | $0.1376 | |
| ETH | <0.01% | $0.001734 | 78.3651 | $0.1358 | |
| ETH | <0.01% | $0.00003 | 4,549.1982 | $0.1356 | |
| ETH | <0.01% | $0.000011 | 12,273.5649 | $0.1339 | |
| ETH | <0.01% | $0.144138 | 0.9291 | $0.1339 | |
| ETH | <0.01% | <$0.000001 | 19,798,178.596 | $0.1334 | |
| ETH | <0.01% | $0.192585 | 0.6854 | $0.132 | |
| ETH | <0.01% | $0.000004 | 36,237.9993 | $0.13 | |
| ETH | <0.01% | $0.007975 | 16.2601 | $0.1296 | |
| ETH | <0.01% | $0.021302 | 6.0787 | $0.1294 | |
| ETH | <0.01% | $0.085912 | 1.5038 | $0.1291 | |
| ETH | <0.01% | $0.000038 | 3,439.4762 | $0.129 | |
| ETH | <0.01% | $0.890009 | 0.1448 | $0.1288 | |
| ETH | <0.01% | $0.006505 | 19.7276 | $0.1283 | |
| ETH | <0.01% | $0.00002 | 6,228.7809 | $0.1263 | |
| ETH | <0.01% | $0.000099 | 1,274.6864 | $0.1255 | |
| ETH | <0.01% | $0.000324 | 387.5004 | $0.1254 | |
| ETH | <0.01% | $0.243109 | 0.5102 | $0.124 | |
| ETH | <0.01% | $0.000986 | 125.6613 | $0.1239 | |
| ETH | <0.01% | $0.003902 | 31.4948 | $0.1229 | |
| ETH | <0.01% | $0.070435 | 1.733 | $0.122 | |
| ETH | <0.01% | $0.000004 | 33,914.1316 | $0.1203 | |
| ETH | <0.01% | $0.001152 | 103.9677 | $0.1197 | |
| ETH | <0.01% | $11.89 | 0.01 | $0.1189 | |
| ETH | <0.01% | $0.000033 | 3,564.6621 | $0.1188 | |
| ETH | <0.01% | $1.06 | 0.1115 | $0.1177 | |
| ETH | <0.01% | <$0.000001 | 223,721,250.2458 | $0.1173 | |
| ETH | <0.01% | $0.000017 | 6,893.1869 | $0.1172 | |
| ETH | <0.01% | $0.001032 | 113.5522 | $0.1171 | |
| ETH | <0.01% | $0.00825 | 14.1562 | $0.1167 | |
| ETH | <0.01% | $1.04 | 0.1114 | $0.1161 | |
| ETH | <0.01% | $0.006899 | 16.7835 | $0.1157 | |
| ETH | <0.01% | <$0.000001 | 2,282,753.136 | $0.114 | |
| ETH | <0.01% | $0.003901 | 29.1858 | $0.1138 | |
| ETH | <0.01% | $0.002091 | 54.3922 | $0.1137 | |
| ETH | <0.01% | $0.048846 | 2.3262 | $0.1136 | |
| ETH | <0.01% | $0.000008 | 13,702.6037 | $0.1135 | |
| ETH | <0.01% | $0.001017 | 111.4251 | $0.1133 | |
| ETH | <0.01% | $0.000156 | 726.8405 | $0.1131 | |
| ETH | <0.01% | $0.004691 | 24.0648 | $0.1128 | |
| ETH | <0.01% | $0.000877 | 128.2007 | $0.1123 | |
| ETH | <0.01% | $0.005359 | 20.9008 | $0.112 | |
| ETH | <0.01% | $1.21 | 0.0925 | $0.1119 | |
| ETH | <0.01% | <$0.000001 | 70,853,070.5 | $0.1108 | |
| ETH | <0.01% | $0.000573 | 193.1654 | $0.1106 | |
| ETH | <0.01% | $0.07636 | 1.4477 | $0.1105 | |
| ETH | <0.01% | $0.040659 | 2.712 | $0.1102 | |
| ETH | <0.01% | <$0.000001 | 829,431.8427 | $0.1101 | |
| ETH | <0.01% | $0.000885 | 123.3424 | $0.1091 | |
| ETH | <0.01% | $0.024914 | 4.3576 | $0.1085 | |
| ETH | <0.01% | $0.001137 | 94.9743 | $0.1079 | |
| ETH | <0.01% | $1.37 | 0.0786 | $0.1073 | |
| ETH | <0.01% | $0.002794 | 38.3859 | $0.1072 | |
| ETH | <0.01% | $0.997689 | 0.1072 | $0.1069 | |
| ETH | <0.01% | $0.000321 | 330.0052 | $0.106 | |
| ETH | <0.01% | $0.011609 | 9.1137 | $0.1057 | |
| ETH | <0.01% | $71.99 | 0.00145775 | $0.1049 | |
| ETH | <0.01% | $1.18 | 0.0888 | $0.1047 | |
| ETH | <0.01% | $40.41 | 0.00255115 | $0.103 | |
| ETH | <0.01% | $2.22 | 0.0461 | $0.1022 | |
| ETH | <0.01% | $1.49 | 0.0679 | $0.1012 | |
| ETH | <0.01% | $181.91 | 0.00055038 | $0.1001 | |
| ARB | 25.45% | $0.004937 | 38,566,892.1577 | $190,412.46 | |
| ARB | 0.80% | $0.999994 | 5,986.528 | $5,986.49 | |
| ARB | 0.67% | $76,177 | 0.0658 | $5,015.84 | |
| ARB | 0.56% | $0.998438 | 4,226.2634 | $4,219.66 | |
| ARB | 0.14% | $2,258.88 | 0.4788 | $1,081.58 | |
| ARB | 0.12% | $2,094.05 | 0.4297 | $899.85 | |
| ARB | 0.03% | $0.999994 | 255.9002 | $255.9 | |
| ARB | 0.02% | $9.27 | 16.5672 | $153.58 | |
| ARB | 0.02% | $2,767.96 | 0.0483 | $133.71 | |
| ARB | 0.02% | $0.253731 | 445.5016 | $113.04 | |
| ARB | 0.01% | $0.999415 | 103.5752 | $103.51 | |
| ARB | 0.01% | $0.302107 | 254.0763 | $76.76 | |
| ARB | <0.01% | $0.052406 | 1,164.3036 | $61.02 | |
| ARB | <0.01% | $76,390 | 0.00075172 | $57.42 | |
| ARB | <0.01% | $119.4 | 0.3368 | $40.22 | |
| ARB | <0.01% | $0.104096 | 376.9742 | $39.24 | |
| ARB | <0.01% | $0.053889 | 485.5347 | $26.16 | |
| ARB | <0.01% | $1.22 | 20.8147 | $25.39 | |
| ARB | <0.01% | $2,314.06 | 0.0107 | $24.76 | |
| ARB | <0.01% | $77,257 | 0.0002596 | $20.06 | |
| ARB | <0.01% | $2,317.13 | 0.00748595 | $17.35 | |
| ARB | <0.01% | $1.28 | 12.4743 | $15.97 | |
| ARB | <0.01% | $0.009532 | 1,453.7746 | $13.86 | |
| ARB | <0.01% | $4.01 | 3.3327 | $13.36 | |
| ARB | <0.01% | $0.999381 | 13.3313 | $13.32 | |
| ARB | <0.01% | $1.16 | 11.4058 | $13.23 | |
| ARB | <0.01% | $64,957 | 0.0001581 | $10.27 | |
| ARB | <0.01% | $0.018308 | 472.0235 | $8.64 | |
| ARB | <0.01% | $70,983 | 0.00011088 | $7.87 | |
| ARB | <0.01% | $2,079.17 | 0.00306393 | $6.37 | |
| ARB | <0.01% | $1.88 | 3.2537 | $6.12 | |
| ARB | <0.01% | $17.38 | 0.3257 | $5.66 | |
| ARB | <0.01% | $2,624.38 | 0.00211808 | $5.56 | |
| ARB | <0.01% | $7.17 | 0.7437 | $5.33 | |
| ARB | <0.01% | $1.01 | 4.8835 | $4.94 | |
| ARB | <0.01% | $0.044066 | 99.2774 | $4.37 | |
| ARB | <0.01% | $0.999608 | 4.0677 | $4.07 | |
| ARB | <0.01% | $1 | 3.9581 | $3.96 | |
| ARB | <0.01% | $76,256 | 0.000046 | $3.51 | |
| ARB | <0.01% | $29.88 | 0.1075 | $3.21 | |
| ARB | <0.01% | $0.996111 | 3.1202 | $3.11 | |
| ARB | <0.01% | $0.06354 | 43.9893 | $2.8 | |
| ARB | <0.01% | $2,533.28 | 0.00109436 | $2.77 | |
| ARB | <0.01% | $0.099974 | 24.4632 | $2.45 | |
| ARB | <0.01% | $1.18 | 1.8958 | $2.24 | |
| ARB | <0.01% | $0.99981 | 2.0526 | $2.05 | |
| ARB | <0.01% | $103.18 | 0.0184 | $1.9 | |
| ARB | <0.01% | $2,416.57 | 0.0007472 | $1.81 | |
| ARB | <0.01% | $1 | 1.7499 | $1.76 | |
| ARB | <0.01% | $0.988175 | 1.6802 | $1.66 | |
| ARB | <0.01% | $0.00559 | 296.5283 | $1.66 | |
| ARB | <0.01% | $5,027.48 | 0.000295 | $1.48 | |
| ARB | <0.01% | $1.11 | 1.2887 | $1.43 | |
| ARB | <0.01% | $0.943724 | 1.4908 | $1.41 | |
| ARB | <0.01% | $0.16801 | 8.0973 | $1.36 | |
| ARB | <0.01% | $0.003397 | 384.6109 | $1.31 | |
| ARB | <0.01% | $0.998052 | 1.2814 | $1.28 | |
| ARB | <0.01% | $0.550797 | 2.2947 | $1.26 | |
| ARB | <0.01% | $0.999134 | 1.2377 | $1.24 | |
| ARB | <0.01% | $0.802106 | 1.5347 | $1.23 | |
| ARB | <0.01% | $91.75 | 0.0119 | $1.1 | |
| ARB | <0.01% | $18.07 | 0.06 | $1.08 | |
| ARB | <0.01% | $0.29176 | 3.7107 | $1.08 | |
| ARB | <0.01% | $1.15 | 0.9399 | $1.08 | |
| ARB | <0.01% | $2,596 | 0.00038568 | $1 | |
| ARB | <0.01% | $0.005405 | 183.784 | $0.9933 | |
| ARB | <0.01% | $0.000156 | 6,294.0109 | $0.9796 | |
| ARB | <0.01% | $0.012937 | 74.2499 | $0.9605 | |
| ARB | <0.01% | $0.094128 | 9.9785 | $0.9392 | |
| ARB | <0.01% | $0.9999 | 0.9017 | $0.9015 | |
| ARB | <0.01% | $1.61 | 0.5573 | $0.8972 | |
| ARB | <0.01% | $0.002787 | 320.0591 | $0.8919 | |
| ARB | <0.01% | $0.02646 | 31.9036 | $0.8441 | |
| ARB | <0.01% | $1.01 | 0.8363 | $0.8404 | |
| ARB | <0.01% | $0.994846 | 0.8314 | $0.827 | |
| ARB | <0.01% | $0.99791 | 0.8118 | $0.81 | |
| ARB | <0.01% | $0.000004 | 189,611.6904 | $0.7375 | |
| ARB | <0.01% | $1.54 | 0.4588 | $0.7065 | |
| ARB | <0.01% | $0.000175 | 3,890.968 | $0.6795 | |
| ARB | <0.01% | $0.000001 | 1,066,922.8938 | $0.6672 | |
| ARB | <0.01% | $76,732 | 0.00000813 | $0.6238 | |
| ARB | <0.01% | $2.36 | 0.2641 | $0.6232 | |
| ARB | <0.01% | $2.11 | 0.2878 | $0.6072 | |
| ARB | <0.01% | $0.001681 | 354.8717 | $0.5964 | |
| ARB | <0.01% | $0.139572 | 4.2072 | $0.5872 | |
| ARB | <0.01% | $4,582.16 | 0.00012305 | $0.5638 | |
| ARB | <0.01% | $2,273.11 | 0.00023927 | $0.5438 | |
| ARB | <0.01% | $0.003621 | 146.3645 | $0.5299 | |
| ARB | <0.01% | $8.11 | 0.0649 | $0.5265 | |
| ARB | <0.01% | $0.009778 | 52.9383 | $0.5176 | |
| ARB | <0.01% | $1.39 | 0.3676 | $0.5109 | |
| ARB | <0.01% | $75,557 | 0.00000664 | $0.5016 | |
| ARB | <0.01% | $0.248985 | 1.7456 | $0.4346 | |
| ARB | <0.01% | $2,291.89 | 0.00018759 | $0.4299 | |
| ARB | <0.01% | $0.000351 | 1,217.8196 | $0.4273 | |
| ARB | <0.01% | $0.136383 | 3.0634 | $0.4177 | |
| ARB | <0.01% | $3.04 | 0.136 | $0.4135 | |
| ARB | <0.01% | $0.034384 | 11.8577 | $0.4077 | |
| ARB | <0.01% | $0.520132 | 0.7797 | $0.4055 | |
| ARB | <0.01% | $0.014463 | 26.9297 | $0.3894 | |
| ARB | <0.01% | $1.86 | 0.2027 | $0.377 | |
| ARB | <0.01% | $0.003874 | 88.6129 | $0.3432 | |
| ARB | <0.01% | $1.09 | 0.3011 | $0.3272 | |
| ARB | <0.01% | $0.992463 | 0.3244 | $0.3219 | |
| ARB | <0.01% | $1.28 | 0.2467 | $0.3157 | |
| ARB | <0.01% | $1 | 0.3148 | $0.3148 | |
| ARB | <0.01% | $0.000485 | 622.9476 | $0.3018 | |
| ARB | <0.01% | $0.930255 | 0.3232 | $0.3006 | |
| ARB | <0.01% | $0.056589 | 5.2886 | $0.2992 | |
| ARB | <0.01% | $0.000005 | 63,431.4996 | $0.2981 | |
| ARB | <0.01% | $0.000546 | 538.7548 | $0.294 | |
| ARB | <0.01% | $0.015281 | 19.2182 | $0.2936 | |
| ARB | <0.01% | $0.026442 | 10.9913 | $0.2906 | |
| ARB | <0.01% | $0.00124 | 228.88 | $0.2838 | |
| ARB | <0.01% | $0.047699 | 5.8237 | $0.2777 | |
| ARB | <0.01% | $76,284 | 0.00000358 | $0.2731 | |
| ARB | <0.01% | $0.296681 | 0.9139 | $0.2711 | |
| ARB | <0.01% | $1,782.35 | 0.00015053 | $0.2683 | |
| ARB | <0.01% | $0.343203 | 0.7528 | $0.2583 | |
| ARB | <0.01% | $0.913234 | 0.2785 | $0.2543 | |
| ARB | <0.01% | $0.588762 | 0.4163 | $0.2451 | |
| ARB | <0.01% | $0.999617 | 0.2392 | $0.239 | |
| ARB | <0.01% | $1.96 | 0.1209 | $0.2369 | |
| ARB | <0.01% | $0.315811 | 0.7496 | $0.2367 | |
| ARB | <0.01% | $0.037163 | 6.2382 | $0.2318 | |
| ARB | <0.01% | $0.018832 | 12.1473 | $0.2287 | |
| ARB | <0.01% | $1 | 0.222 | $0.222 | |
| ARB | <0.01% | $0.001406 | 152.1893 | $0.2139 | |
| ARB | <0.01% | $0.208302 | 0.9992 | $0.2081 | |
| ARB | <0.01% | $0.000879 | 236.8559 | $0.2081 | |
| ARB | <0.01% | $22.12 | 0.0093402 | $0.2066 | |
| ARB | <0.01% | $0.046324 | 4.445 | $0.2059 | |
| ARB | <0.01% | $0.012518 | 16.4244 | $0.2056 | |
| ARB | <0.01% | $0.011675 | 17.245 | $0.2013 | |
| ARB | <0.01% | $0.002476 | 78.398 | $0.1941 | |
| ARB | <0.01% | $76,043 | 0.00000254 | $0.193 | |
| ARB | <0.01% | $0.008906 | 21.1596 | $0.1884 | |
| ARB | <0.01% | $0.998454 | 0.1826 | $0.1822 | |
| ARB | <0.01% | $0.99985 | 0.1821 | $0.182 | |
| ARB | <0.01% | $2.32 | 0.0774 | $0.1795 | |
| ARB | <0.01% | $0.006806 | 25.4848 | $0.1734 | |
| ARB | <0.01% | $0.101956 | 1.6907 | $0.1723 | |
| ARB | <0.01% | $0.001455 | 117.2475 | $0.1705 | |
| ARB | <0.01% | $0.000006 | 27,459.6865 | $0.1702 | |
| ARB | <0.01% | $0.45006 | 0.377 | $0.1696 | |
| ARB | <0.01% | $0.994612 | 0.1533 | $0.1524 | |
| ARB | <0.01% | $0.053706 | 2.8168 | $0.1512 | |
| ARB | <0.01% | $0.000026 | 5,678.6119 | $0.149 | |
| ARB | <0.01% | $0.000104 | 1,347.8947 | $0.1405 | |
| ARB | <0.01% | $0.000004 | 39,521.7443 | $0.1391 | |
| ARB | <0.01% | $0.997726 | 0.1377 | $0.1373 | |
| ARB | <0.01% | $0.048837 | 2.7752 | $0.1355 | |
| ARB | <0.01% | $0.039437 | 3.281 | $0.1293 | |
| ARB | <0.01% | $0.054248 | 2.2941 | $0.1244 | |
| ARB | <0.01% | $0.013509 | 8.9766 | $0.1212 | |
| ARB | <0.01% | $0.133242 | 0.9032 | $0.1203 | |
| ARB | <0.01% | $173.96 | 0.00066344 | $0.1154 | |
| ARB | <0.01% | $2,197.56 | 0.00005043 | $0.1108 | |
| ARB | <0.01% | $0.000035 | 3,132.2317 | $0.1103 | |
| ARB | <0.01% | $0.000381 | 272.882 | $0.104 | |
| BSC | 5.40% | $0.00213 | 18,982,506.9819 | $40,425.72 | |
| BSC | 1.71% | $1.86 | 6,862.8717 | $12,792.77 | |
| BSC | 1.15% | $0.999984 | 8,605.389 | $8,605.25 | |
| BSC | 0.41% | $0.99988 | 3,097.0448 | $3,096.67 | |
| BSC | 0.38% | $651.17 | 4.3162 | $2,810.59 | |
| BSC | 0.07% | $0.058721 | 8,860.4082 | $520.29 | |
| BSC | 0.07% | $0.037615 | 13,446.8087 | $505.8 | |
| BSC | 0.06% | $0.710548 | 666.6782 | $473.71 | |
| BSC | 0.05% | $0.228759 | 1,616.5479 | $369.8 | |
| BSC | 0.03% | $2,086.55 | 0.1127 | $235.15 | |
| BSC | 0.03% | $71,110.04 | 0.0031838 | $226.4 | |
| BSC | 0.01% | $16.19 | 6.7633 | $109.5 | |
| BSC | 0.01% | $650.26 | 0.1604 | $104.28 | |
| BSC | 0.01% | $0.008774 | 10,588.4734 | $92.91 | |
| BSC | 0.01% | $28.69 | 3.1988 | $91.77 | |
| BSC | <0.01% | $0.007798 | 8,471.2086 | $66.06 | |
| BSC | <0.01% | $0.999339 | 60.894 | $60.85 | |
| BSC | <0.01% | $0.012719 | 4,544.8063 | $57.81 | |
| BSC | <0.01% | $0.119648 | 428.3861 | $51.26 | |
| BSC | <0.01% | $0.32212 | 154.9482 | $49.91 | |
| BSC | <0.01% | $0.16635 | 282.6766 | $47.02 | |
| BSC | <0.01% | $0.000324 | 142,560.8761 | $46.25 | |
| BSC | <0.01% | $0.072917 | 628.9805 | $45.86 | |
| BSC | <0.01% | $0.06029 | 501.1025 | $30.21 | |
| BSC | <0.01% | $1.39 | 21.5514 | $29.96 | |
| BSC | <0.01% | $0.269192 | 78.9774 | $21.26 | |
| BSC | <0.01% | $0.233743 | 88.2765 | $20.63 | |
| BSC | <0.01% | $0.998423 | 15.4354 | $15.41 | |
| BSC | <0.01% | $0.146387 | 97.7717 | $14.31 | |
| BSC | <0.01% | $40.88 | 0.3308 | $13.52 | |
| BSC | <0.01% | $229.77 | 0.0583 | $13.39 | |
| BSC | <0.01% | $0.026798 | 473.6825 | $12.69 | |
| BSC | <0.01% | $0.089761 | 135.4769 | $12.16 | |
| BSC | <0.01% | $0.715883 | 16.6868 | $11.95 | |
| BSC | <0.01% | $0.27106 | 43.6939 | $11.84 | |
| BSC | <0.01% | $0.999946 | 9.5991 | $9.6 | |
| BSC | <0.01% | $0.318116 | 29.1721 | $9.28 | |
| BSC | <0.01% | $0.008696 | 952.6428 | $8.28 | |
| BSC | <0.01% | $1.49 | 5.2293 | $7.79 | |
| BSC | <0.01% | $0.041565 | 177.4274 | $7.37 | |
| BSC | <0.01% | $0.025624 | 284.5128 | $7.29 | |
| BSC | <0.01% | $99 | 0.0702 | $6.95 | |
| BSC | <0.01% | $0.151549 | 44.4112 | $6.73 | |
| BSC | <0.01% | $0.061374 | 106.1615 | $6.52 | |
| BSC | <0.01% | $0.00124 | 5,071.3842 | $6.29 | |
| BSC | <0.01% | $0.354037 | 17.4116 | $6.16 | |
| BSC | <0.01% | $0.502203 | 12.1849 | $6.12 | |
| BSC | <0.01% | $0.010321 | 554.2645 | $5.72 | |
| BSC | <0.01% | $0.003692 | 1,547.7115 | $5.71 | |
| BSC | <0.01% | $0.01426 | 385.2401 | $5.49 | |
| BSC | <0.01% | $0.005864 | 909.3618 | $5.33 | |
| BSC | <0.01% | $0.017845 | 291.3633 | $5.2 | |
| BSC | <0.01% | $0.065419 | 78.2241 | $5.12 | |
| BSC | <0.01% | $1.02 | 4.6345 | $4.74 | |
| BSC | <0.01% | $1 | 4.6221 | $4.62 | |
| BSC | <0.01% | $0.342931 | 13.051 | $4.48 | |
| BSC | <0.01% | $0.009554 | 444.9038 | $4.25 | |
| BSC | <0.01% | $0.040898 | 93.8736 | $3.84 | |
| BSC | <0.01% | $0.000383 | 9,658.8284 | $3.7 | |
| BSC | <0.01% | $0.620184 | 5.759 | $3.57 | |
| BSC | <0.01% | $0.035857 | 95.2872 | $3.42 | |
| BSC | <0.01% | $0.098869 | 32.9257 | $3.26 | |
| BSC | <0.01% | $0.00184 | 1,749.9333 | $3.22 | |
| BSC | <0.01% | $0.018833 | 165.4541 | $3.12 | |
| BSC | <0.01% | $0.00693 | 439.0661 | $3.04 | |
| BSC | <0.01% | $1.53 | 1.9618 | $3.01 | |
| BSC | <0.01% | $0.084315 | 35.251 | $2.97 | |
| BSC | <0.01% | $0.001959 | 1,468.7966 | $2.88 | |
| BSC | <0.01% | $76,114 | 0.0000368 | $2.8 | |
| BSC | <0.01% | $1.41 | 1.9756 | $2.79 | |
| BSC | <0.01% | $0.999779 | 2.6974 | $2.7 | |
| BSC | <0.01% | $0.039072 | 66.9954 | $2.62 | |
| BSC | <0.01% | $0.033182 | 78.8656 | $2.62 | |
| BSC | <0.01% | $0.021581 | 121.2193 | $2.62 | |
| BSC | <0.01% | $1.3 | 1.9525 | $2.54 | |
| BSC | <0.01% | $0.000296 | 8,357.6807 | $2.47 | |
| BSC | <0.01% | $0.000002 | 1,418,803.478 | $2.43 | |
| BSC | <0.01% | $0.180933 | 13.3172 | $2.41 | |
| BSC | <0.01% | $3.04 | 0.7769 | $2.36 | |
| BSC | <0.01% | $0.000821 | 2,676.5448 | $2.2 | |
| BSC | <0.01% | $0.003821 | 555.3287 | $2.12 | |
| BSC | <0.01% | $0.008729 | 236.2748 | $2.06 | |
| BSC | <0.01% | $0.998637 | 2.0501 | $2.05 | |
| BSC | <0.01% | <$0.000001 | 160,602,457.1185 | $2.01 | |
| BSC | <0.01% | $0.000289 | 6,890.0088 | $1.99 | |
| BSC | <0.01% | $118.88 | 0.0165 | $1.96 | |
| BSC | <0.01% | $0.094636 | 20.6244 | $1.95 | |
| BSC | <0.01% | $0.025745 | 70.4333 | $1.81 | |
| BSC | <0.01% | $0.001709 | 1,053.2709 | $1.8 | |
| BSC | <0.01% | $0.00353 | 497.066 | $1.75 | |
| BSC | <0.01% | $0.07049 | 24.234 | $1.71 | |
| BSC | <0.01% | $0.008994 | 187.0675 | $1.68 | |
| BSC | <0.01% | $0.142853 | 11.7671 | $1.68 | |
| BSC | <0.01% | $0.037732 | 44.5025 | $1.68 | |
| BSC | <0.01% | $0.007899 | 205.8226 | $1.63 | |
| BSC | <0.01% | $76,284 | 0.00002052 | $1.57 | |
| BSC | <0.01% | <$0.000001 | 3,838,441,430.6145 | $1.53 | |
| BSC | <0.01% | $4.01 | 0.3701 | $1.48 | |
| BSC | <0.01% | $0.027282 | 52.4531 | $1.43 | |
| BSC | <0.01% | $9.24 | 0.1513 | $1.4 | |
| BSC | <0.01% | $0.999696 | 1.3445 | $1.34 | |
| BSC | <0.01% | $0.005535 | 240.2694 | $1.33 | |
| BSC | <0.01% | $0.999942 | 1.3298 | $1.33 | |
| BSC | <0.01% | $0.026317 | 50.4791 | $1.33 | |
| BSC | <0.01% | $0.003629 | 353.359 | $1.28 | |
| BSC | <0.01% | $0.000017 | 71,958.3014 | $1.26 | |
| BSC | <0.01% | $0.010504 | 113.3259 | $1.19 | |
| BSC | <0.01% | $0.002785 | 426.1956 | $1.19 | |
| BSC | <0.01% | $0.002446 | 483.8346 | $1.18 | |
| BSC | <0.01% | $74.36 | 0.0159 | $1.18 | |
| BSC | <0.01% | $0.112145 | 10.1703 | $1.14 | |
| BSC | <0.01% | $0.052297 | 21.5374 | $1.13 | |
| BSC | <0.01% | $181.9 | 0.00607882 | $1.11 | |
| BSC | <0.01% | $0.363217 | 2.9875 | $1.09 | |
| BSC | <0.01% | $0.588218 | 1.8153 | $1.07 | |
| BSC | <0.01% | $0.455129 | 2.3144 | $1.05 | |
| BSC | <0.01% | $0.290104 | 3.6144 | $1.05 | |
| BSC | <0.01% | $0.000004 | 288,607.9353 | $1.02 | |
| BSC | <0.01% | $0.002808 | 361.1511 | $1.01 | |
| BSC | <0.01% | $1.53 | 0.6482 | $0.9942 | |
| BSC | <0.01% | $0.102269 | 9.6021 | $0.982 | |
| BSC | <0.01% | $458.24 | 0.00213151 | $0.9767 | |
| BSC | <0.01% | $8.65 | 0.1107 | $0.9568 | |
| BSC | <0.01% | $0.007997 | 118.3914 | $0.9467 | |
| BSC | <0.01% | $0.058121 | 16.1219 | $0.937 | |
| BSC | <0.01% | $0.007979 | 117.3531 | $0.9363 | |
| BSC | <0.01% | $0.01188 | 78.5139 | $0.9327 | |
| BSC | <0.01% | $71,211.03 | 0.00001268 | $0.9029 | |
| BSC | <0.01% | $0.045689 | 18.5245 | $0.8463 | |
| BSC | <0.01% | $0.003614 | 233.6095 | $0.8443 | |
| BSC | <0.01% | $0.080367 | 10.419 | $0.8373 | |
| BSC | <0.01% | $0.000004 | 217,474.8677 | $0.822 | |
| BSC | <0.01% | $1.69 | 0.4825 | $0.8154 | |
| BSC | <0.01% | $0.000321 | 2,437.1676 | $0.7829 | |
| BSC | <0.01% | $0.033286 | 22.7454 | $0.7571 | |
| BSC | <0.01% | $0.004107 | 178.8285 | $0.7344 | |
| BSC | <0.01% | $0.301499 | 2.3557 | $0.7102 | |
| BSC | <0.01% | $1 | 0.6946 | $0.6959 | |
| BSC | <0.01% | $9.42 | 0.0738 | $0.6955 | |
| BSC | <0.01% | $0.01123 | 61.7828 | $0.6938 | |
| BSC | <0.01% | $0.033729 | 20.5707 | $0.6938 | |
| BSC | <0.01% | $0.001272 | 526.2256 | $0.6695 | |
| BSC | <0.01% | $0.988284 | 0.6735 | $0.6655 | |
| BSC | <0.01% | $0.000748 | 882.2424 | $0.6601 | |
| BSC | <0.01% | $0.005576 | 118.2456 | $0.6593 | |
| BSC | <0.01% | $0.067442 | 9.7661 | $0.6586 | |
| BSC | <0.01% | $76,043 | 0.00000819 | $0.6224 | |
| BSC | <0.01% | $0.000199 | 3,107.2834 | $0.6173 | |
| BSC | <0.01% | $0.025845 | 23.8811 | $0.6172 | |
| BSC | <0.01% | $0.003787 | 158.8136 | $0.6014 | |
| BSC | <0.01% | $0.009807 | 60.8432 | $0.5966 | |
| BSC | <0.01% | $805.52 | 0.00073061 | $0.5885 | |
| BSC | <0.01% | $0.003681 | 159.8339 | $0.5882 | |
| BSC | <0.01% | $0.053671 | 10.7761 | $0.5783 | |
| BSC | <0.01% | $0.026863 | 21.3513 | $0.5735 | |
| BSC | <0.01% | $0.009536 | 59.9364 | $0.5715 | |
| BSC | <0.01% | $0.003949 | 142.2689 | $0.5618 | |
| BSC | <0.01% | $0.001281 | 413.9444 | $0.5301 | |
| BSC | <0.01% | <$0.000001 | 9,879,904.6806 | $0.5281 | |
| BSC | <0.01% | <$0.000001 | 48,077,444.3369 | $0.5269 | |
| BSC | <0.01% | $0.08486 | 6.2078 | $0.5267 | |
| BSC | <0.01% | $0.01624 | 32.2389 | $0.5235 | |
| BSC | <0.01% | $0.003941 | 131.6109 | $0.5186 | |
| BSC | <0.01% | $0.000059 | 8,853.9119 | $0.5181 | |
| BSC | <0.01% | $0.000034 | 14,978.8845 | $0.5146 | |
| BSC | <0.01% | $0.000581 | 882.1127 | $0.5129 | |
| BSC | <0.01% | $0.005986 | 85.2208 | $0.5101 | |
| BSC | <0.01% | $1.27 | 0.3982 | $0.5053 | |
| BSC | <0.01% | $0.545453 | 0.9245 | $0.5042 | |
| BSC | <0.01% | $5,049.16 | 0.00009849 | $0.4973 | |
| BSC | <0.01% | $0.013886 | 35.0163 | $0.4862 | |
| BSC | <0.01% | <$0.000001 | 2,072,256.1982 | $0.4793 | |
| BSC | <0.01% | $48.12 | 0.00992165 | $0.4774 | |
| BSC | <0.01% | $0.002078 | 229.4315 | $0.4768 | |
| BSC | <0.01% | <$0.000001 | 13,536,151,353.8788 | $0.4756 | |
| BSC | <0.01% | $0.000041 | 11,518.6923 | $0.4753 | |
| BSC | <0.01% | $1.28 | 0.371 | $0.4749 | |
| BSC | <0.01% | $0.002926 | 149.0262 | $0.436 | |
| BSC | <0.01% | $0.001033 | 418.2437 | $0.4321 | |
| BSC | <0.01% | $2.85 | 0.1514 | $0.4314 | |
| BSC | <0.01% | $0.000269 | 1,569.4083 | $0.422 | |
| BSC | <0.01% | $0.034646 | 12.1817 | $0.422 | |
| BSC | <0.01% | $0.089246 | 4.6452 | $0.4145 | |
| BSC | <0.01% | $0.001109 | 361.4409 | $0.4009 | |
| BSC | <0.01% | $0.282874 | 1.3465 | $0.3808 | |
| BSC | <0.01% | $0.010079 | 37.7726 | $0.3806 | |
| BSC | <0.01% | $0.064955 | 5.8428 | $0.3795 | |
| BSC | <0.01% | $0.093325 | 4.0527 | $0.3782 | |
| BSC | <0.01% | $0.020573 | 18.2639 | $0.3757 | |
| BSC | <0.01% | $0.000006 | 66,236.4729 | $0.3708 | |
| BSC | <0.01% | $0.011027 | 33.5036 | $0.3694 | |
| BSC | <0.01% | $3.55 | 0.1039 | $0.3688 | |
| BSC | <0.01% | $0.065023 | 5.6644 | $0.3683 | |
| BSC | <0.01% | $0.167615 | 2.191 | $0.3672 | |
| BSC | <0.01% | $0.004979 | 72.7841 | $0.3623 | |
| BSC | <0.01% | $0.000035 | 10,106.3149 | $0.3547 | |
| BSC | <0.01% | <$0.000001 | 2,123,030.3423 | $0.3546 | |
| BSC | <0.01% | $0.000026 | 13,261.4415 | $0.3477 | |
| BSC | <0.01% | $0.000874 | 386.8913 | $0.3381 | |
| BSC | <0.01% | $0.010049 | 33.4962 | $0.3365 | |
| BSC | <0.01% | $0.031097 | 10.77 | $0.3349 | |
| BSC | <0.01% | $0.870857 | 0.3813 | $0.332 | |
| BSC | <0.01% | $0.000637 | 514.5841 | $0.3278 | |
| BSC | <0.01% | $0.013777 | 23.5012 | $0.3237 | |
| BSC | <0.01% | $0.999417 | 0.3208 | $0.3205 | |
| BSC | <0.01% | $0.419527 | 0.7232 | $0.3033 | |
| BSC | <0.01% | $0.275716 | 1.0722 | $0.2956 | |
| BSC | <0.01% | $0.031931 | 9.0739 | $0.2897 | |
| BSC | <0.01% | $0.00136 | 212.4877 | $0.289 | |
| BSC | <0.01% | $0.000028 | 10,417.5366 | $0.2888 | |
| BSC | <0.01% | $0.003273 | 84.0097 | $0.2749 | |
| BSC | <0.01% | $0.000001 | 285,087.2253 | $0.2733 | |
| BSC | <0.01% | $0.07835 | 3.4169 | $0.2677 | |
| BSC | <0.01% | $0.018148 | 14.6101 | $0.2651 | |
| BSC | <0.01% | $55.82 | 0.00464132 | $0.259 | |
| BSC | <0.01% | $0.008326 | 30.9818 | $0.2579 | |
| BSC | <0.01% | $0.014448 | 17.7425 | $0.2563 | |
| BSC | <0.01% | $0.098226 | 2.5956 | $0.2549 | |
| BSC | <0.01% | $0.087185 | 2.8408 | $0.2476 | |
| BSC | <0.01% | $3.07 | 0.0782 | $0.2401 | |
| BSC | <0.01% | $0.001004 | 237.2551 | $0.2381 | |
| BSC | <0.01% | $0.006168 | 38.1556 | $0.2353 | |
| BSC | <0.01% | $0.021937 | 10.6865 | $0.2344 | |
| BSC | <0.01% | $0.000067 | 3,510.5569 | $0.2341 | |
| BSC | <0.01% | $1.85 | 0.1246 | $0.2308 | |
| BSC | <0.01% | $0.002291 | 100.7104 | $0.2307 | |
| BSC | <0.01% | $0.02078 | 10.9989 | $0.2285 | |
| BSC | <0.01% | $0.005419 | 41.3743 | $0.2241 | |
| BSC | <0.01% | $1.35 | 0.1613 | $0.2178 | |
| BSC | <0.01% | <$0.000001 | 44,844,037.1642 | $0.2169 | |
| BSC | <0.01% | $0.004037 | 52.8436 | $0.2133 | |
| BSC | <0.01% | $0.000073 | 2,923.0163 | $0.213 | |
| BSC | <0.01% | <$0.000001 | 9,859,340.3477 | $0.2124 | |
| BSC | <0.01% | $0.000702 | 302.0504 | $0.212 | |
| BSC | <0.01% | $0.009248 | 22.7157 | $0.21 | |
| BSC | <0.01% | $0.000064 | 3,171.3765 | $0.2036 | |
| BSC | <0.01% | $0.000189 | 1,073.7686 | $0.2028 | |
| BSC | <0.01% | $0.042558 | 4.7637 | $0.2027 | |
| BSC | <0.01% | $0.043732 | 4.5869 | $0.2005 | |
| BSC | <0.01% | $0.001699 | 117.6105 | $0.1997 | |
| BSC | <0.01% | $0.020905 | 9.503 | $0.1986 | |
| BSC | <0.01% | $0.01363 | 14.5596 | $0.1984 | |
| BSC | <0.01% | $0.001544 | 127.2255 | $0.1964 | |
| BSC | <0.01% | $0.039615 | 4.9403 | $0.1957 | |
| BSC | <0.01% | $0.013491 | 14.3496 | $0.1935 | |
| BSC | <0.01% | $0.001752 | 109.2655 | $0.1914 | |
| BSC | <0.01% | $0.000245 | 777.7929 | $0.1906 | |
| BSC | <0.01% | $0.000722 | 263.1339 | $0.1899 | |
| BSC | <0.01% | $0.002409 | 78.6322 | $0.1894 | |
| BSC | <0.01% | $0.000207 | 900.7391 | $0.1863 | |
| BSC | <0.01% | $0.036002 | 5.1322 | $0.1847 | |
| BSC | <0.01% | $0.003014 | 60.9819 | $0.1838 | |
| BSC | <0.01% | $0.002953 | 62.0614 | $0.1832 | |
| BSC | <0.01% | $0.020326 | 8.997 | $0.1828 | |
| BSC | <0.01% | $0.02162 | 8.4237 | $0.1821 | |
| BSC | <0.01% | $0.00117 | 153.2049 | $0.1792 | |
| BSC | <0.01% | $1.21 | 0.1466 | $0.1774 | |
| BSC | <0.01% | $2,078.3 | 0.00008463 | $0.1758 | |
| BSC | <0.01% | $0.000389 | 441.1576 | $0.1715 | |
| BSC | <0.01% | $0.008384 | 19.7762 | $0.1658 | |
| BSC | <0.01% | $0.164625 | 0.9979 | $0.1642 | |
| BSC | <0.01% | $0.271053 | 0.6025 | $0.1633 | |
| BSC | <0.01% | $0.066873 | 2.4254 | $0.1621 | |
| BSC | <0.01% | $0.000006 | 25,872.8723 | $0.1604 | |
| BSC | <0.01% | $0.0009 | 174.4593 | $0.157 | |
| BSC | <0.01% | $0.004191 | 37.3916 | $0.1567 | |
| BSC | <0.01% | $0.028017 | 5.5373 | $0.1551 | |
| BSC | <0.01% | $0.0246 | 6.2983 | $0.1549 | |
| BSC | <0.01% | $0.002002 | 77.0658 | $0.1543 | |
| BSC | <0.01% | $0.00006 | 2,506.72 | $0.1515 | |
| BSC | <0.01% | $0.08486 | 1.7656 | $0.1498 | |
| BSC | <0.01% | $0.015526 | 9.595 | $0.1489 | |
| BSC | <0.01% | $0.001389 | 107.0894 | $0.1487 | |
| BSC | <0.01% | $0.001075 | 133.7666 | $0.1437 | |
| BSC | <0.01% | $0.086544 | 1.6269 | $0.1407 | |
| BSC | <0.01% | $0.001344 | 103.3929 | $0.1389 | |
| BSC | <0.01% | $1.87 | 0.0739 | $0.1381 | |
| BSC | <0.01% | $0.052955 | 2.4775 | $0.1311 | |
| BSC | <0.01% | $0.014459 | 9.0389 | $0.1306 | |
| BSC | <0.01% | $0.003345 | 38.4974 | $0.1287 | |
| BSC | <0.01% | $0.000482 | 256.8472 | $0.1239 | |
| BSC | <0.01% | $0.000054 | 2,258.2881 | $0.1216 | |
| BSC | <0.01% | $0.270123 | 0.4469 | $0.1207 | |
| BSC | <0.01% | $0.053863 | 2.2344 | $0.1203 | |
| BSC | <0.01% | $0.010937 | 10.9478 | $0.1197 | |
| BSC | <0.01% | $0.097888 | 1.2033 | $0.1177 | |
| BSC | <0.01% | $0.000049 | 2,399.9159 | $0.1175 | |
| BSC | <0.01% | $0.001241 | 91.8644 | $0.1139 | |
| BSC | <0.01% | $0.052188 | 2.1667 | $0.113 | |
| BSC | <0.01% | $0.000022 | 5,176.0564 | $0.1126 | |
| BSC | <0.01% | <$0.000001 | 4,633,841.7213 | $0.112 | |
| BSC | <0.01% | $0.001118 | 98.6989 | $0.1103 | |
| BSC | <0.01% | $0.001298 | 84.9489 | $0.1102 | |
| BSC | <0.01% | $0.003049 | 35.6953 | $0.1088 | |
| BSC | <0.01% | $0.009204 | 11.8049 | $0.1086 | |
| BSC | <0.01% | $0.008251 | 12.8797 | $0.1062 | |
| BSC | <0.01% | $2.33 | 0.0455 | $0.106 | |
| BSC | <0.01% | $0.004674 | 22.6079 | $0.1056 | |
| BSC | <0.01% | $0.019193 | 5.4188 | $0.104 | |
| BSC | <0.01% | $0.027912 | 3.6523 | $0.1019 | |
| BASE | 1.83% | $0.999905 | 13,659.338 | $13,658.04 | |
| BASE | 0.90% | $2,263.38 | 2.9788 | $6,742.25 | |
| BASE | 0.42% | $2,093.65 | 1.4962 | $3,132.55 | |
| BASE | 0.42% | $76,331 | 0.0409 | $3,124.69 | |
| BASE | 0.11% | $0.720125 | 1,098.8728 | $791.33 | |
| BASE | 0.10% | $6.32 | 123.3037 | $779.28 | |
| BASE | 0.09% | $0.364337 | 1,745.3147 | $635.88 | |
| BASE | 0.08% | $0.169461 | 3,715.9718 | $629.71 | |
| BASE | 0.05% | $1.16 | 332.1437 | $385.29 | |
| BASE | 0.05% | $0.000533 | 684,865.4814 | $364.86 | |
| BASE | 0.04% | $28.25 | 10.2662 | $290.02 | |
| BASE | 0.04% | $0.003945 | 68,533.5351 | $270.36 | |
| BASE | 0.03% | $0.998334 | 247.0398 | $246.63 | |
| BASE | 0.03% | $0.249139 | 884.7623 | $220.43 | |
| BASE | 0.02% | $0.170315 | 930.1585 | $158.42 | |
| BASE | 0.02% | $0.000211 | 726,044.7051 | $153.35 | |
| BASE | 0.02% | $0.177453 | 831.1473 | $147.49 | |
| BASE | 0.02% | $0.017164 | 8,284.999 | $142.2 | |
| BASE | 0.02% | $0.028266 | 4,373.0462 | $123.61 | |
| BASE | 0.02% | $5.76 | 21.3506 | $122.98 | |
| BASE | 0.02% | $71,128 | 0.00169174 | $120.33 | |
| BASE | 0.02% | $0.996111 | 119.6305 | $119.17 | |
| BASE | 0.01% | $0.296961 | 302.9078 | $89.95 | |
| BASE | 0.01% | $1 | 84.6488 | $84.73 | |
| BASE | 0.01% | $0.9999 | 84.6349 | $84.63 | |
| BASE | 0.01% | $59.82 | 1.3956 | $83.48 | |
| BASE | <0.01% | $0.10775 | 650.5471 | $70.1 | |
| BASE | <0.01% | $1.59 | 43.7134 | $69.5 | |
| BASE | <0.01% | $1.12 | 48.3351 | $54.14 | |
| BASE | <0.01% | $0.028591 | 1,693.6141 | $48.42 | |
| BASE | <0.01% | $1.96 | 23.8991 | $46.84 | |
| BASE | <0.01% | $0.353837 | 116.6385 | $41.27 | |
| BASE | <0.01% | $3.14 | 12.5084 | $39.28 | |
| BASE | <0.01% | $0.000064 | 608,216.3104 | $39.05 | |
| BASE | <0.01% | $0.353493 | 102.1643 | $36.11 | |
| BASE | <0.01% | $0.039419 | 861.6552 | $33.97 | |
| BASE | <0.01% | $0.000079 | 369,292.9909 | $29.31 | |
| BASE | <0.01% | $0.019895 | 1,440 | $28.65 | |
| BASE | <0.01% | $1.28 | 22.2466 | $28.48 | |
| BASE | <0.01% | $2,419.43 | 0.0117 | $28.26 | |
| BASE | <0.01% | $0.34809 | 74.5224 | $25.94 | |
| BASE | <0.01% | $0.080237 | 311.6812 | $25.01 | |
| BASE | <0.01% | $0.00671 | 3,641.0059 | $24.43 | |
| BASE | <0.01% | $0.014903 | 1,469.1722 | $21.9 | |
| BASE | <0.01% | $1.88 | 11.5071 | $21.63 | |
| BASE | <0.01% | $0.049921 | 418.439 | $20.89 | |
| BASE | <0.01% | $2,773.1 | 0.00699608 | $19.4 | |
| BASE | <0.01% | $0.000109 | 164,342.6605 | $17.93 | |
| BASE | <0.01% | $0.347717 | 51.2506 | $17.82 | |
| BASE | <0.01% | $0.027264 | 651.6939 | $17.77 | |
| BASE | <0.01% | $0.010624 | 1,645.9575 | $17.49 | |
| BASE | <0.01% | $0.995646 | 17.5248 | $17.45 | |
| BASE | <0.01% | $0.000238 | 65,067.1591 | $15.5 | |
| BASE | <0.01% | $0.09 | 158.8642 | $14.3 | |
| BASE | <0.01% | $0.000528 | 25,698.697 | $13.57 | |
| BASE | <0.01% | $0.027087 | 493.1274 | $13.36 | |
| BASE | <0.01% | $89.27 | 0.1425 | $12.72 | |
| BASE | <0.01% | $76,114 | 0.00016423 | $12.5 | |
| BASE | <0.01% | $0.011917 | 1,044.9791 | $12.45 | |
| BASE | <0.01% | $0.000017 | 713,119.6646 | $12.39 | |
| BASE | <0.01% | $0.004814 | 2,442.6839 | $11.76 | |
| BASE | <0.01% | $0.02076 | 514.1266 | $10.67 | |
| BASE | <0.01% | $0.999853 | 10.0035 | $10 | |
| BASE | <0.01% | $2,343.95 | 0.00420756 | $9.86 | |
| BASE | <0.01% | $0.007616 | 1,294.7544 | $9.86 | |
| BASE | <0.01% | $0.086964 | 106.3039 | $9.24 | |
| BASE | <0.01% | $0.088603 | 102.3145 | $9.07 | |
| BASE | <0.01% | $0.000981 | 8,864.2291 | $8.69 | |
| BASE | <0.01% | $0.322842 | 26.8607 | $8.67 | |
| BASE | <0.01% | $0.08883 | 89.1624 | $7.92 | |
| BASE | <0.01% | $0.020563 | 372.445 | $7.66 | |
| BASE | <0.01% | $0.004617 | 1,562.6304 | $7.22 | |
| BASE | <0.01% | $0.002513 | 2,729.3551 | $6.86 | |
| BASE | <0.01% | $0.000842 | 8,083 | $6.8 | |
| BASE | <0.01% | $2,421.77 | 0.00279302 | $6.76 | |
| BASE | <0.01% | $119.18 | 0.0561 | $6.68 | |
| BASE | <0.01% | $0.096868 | 64.5488 | $6.25 | |
| BASE | <0.01% | $0.085251 | 71.8528 | $6.13 | |
| BASE | <0.01% | $1.4 | 4.3447 | $6.08 | |
| BASE | <0.01% | $2,462.49 | 0.00232453 | $5.72 | |
| BASE | <0.01% | $2,645.79 | 0.00207235 | $5.48 | |
| BASE | <0.01% | $0.999446 | 5.3883 | $5.39 | |
| BASE | <0.01% | $0.098833 | 54.3273 | $5.37 | |
| BASE | <0.01% | $0.025343 | 205.3772 | $5.2 | |
| BASE | <0.01% | $0.001177 | 4,098.8481 | $4.83 | |
| BASE | <0.01% | $0.065477 | 73.5328 | $4.81 | |
| BASE | <0.01% | $0.007397 | 623.1023 | $4.61 | |
| BASE | <0.01% | $0.033665 | 134.307 | $4.52 | |
| BASE | <0.01% | $172.1 | 0.0255 | $4.39 | |
| BASE | <0.01% | $1.28 | 3.3793 | $4.33 | |
| BASE | <0.01% | $0.036656 | 117.6783 | $4.31 | |
| BASE | <0.01% | $0.002446 | 1,688.4074 | $4.13 | |
| BASE | <0.01% | $0.052937 | 77.0039 | $4.08 | |
| BASE | <0.01% | $0.000729 | 5,521.3169 | $4.03 | |
| BASE | <0.01% | $0.000283 | 13,977.8996 | $3.96 | |
| BASE | <0.01% | $0.01278 | 302.2503 | $3.86 | |
| BASE | <0.01% | $0.00037 | 10,328.6155 | $3.82 | |
| BASE | <0.01% | $0.044812 | 84.4639 | $3.78 | |
| BASE | <0.01% | $0.0134 | 272.8789 | $3.66 | |
| BASE | <0.01% | $1.04 | 3.5123 | $3.66 | |
| BASE | <0.01% | $0.016251 | 219.0965 | $3.56 | |
| BASE | <0.01% | $0.000075 | 47,687.1113 | $3.56 | |
| BASE | <0.01% | $0.107685 | 32.1383 | $3.46 | |
| BASE | <0.01% | $0.005291 | 653.3914 | $3.46 | |
| BASE | <0.01% | $0.000005 | 702,646.3281 | $3.35 | |
| BASE | <0.01% | $0.007154 | 468.453 | $3.35 | |
| BASE | <0.01% | $0.002691 | 1,239.67 | $3.34 | |
| BASE | <0.01% | $0.44803 | 7.2488 | $3.25 | |
| BASE | <0.01% | $174.4 | 0.018 | $3.15 | |
| BASE | <0.01% | $0.033563 | 92.8954 | $3.12 | |
| BASE | <0.01% | $0.009056 | 338.1838 | $3.06 | |
| BASE | <0.01% | $0.069576 | 43.748 | $3.04 | |
| BASE | <0.01% | $0.007572 | 400.8925 | $3.04 | |
| BASE | <0.01% | $0.994491 | 3.0156 | $3 | |
| BASE | <0.01% | $0.020374 | 143.7192 | $2.93 | |
| BASE | <0.01% | $0.001298 | 2,200.9332 | $2.86 | |
| BASE | <0.01% | $76,388 | 0.00003689 | $2.82 | |
| BASE | <0.01% | $0.01168 | 231.4454 | $2.7 | |
| BASE | <0.01% | $1.16 | 2.2843 | $2.65 | |
| BASE | <0.01% | $0.11454 | 22.9072 | $2.62 | |
| BASE | <0.01% | $0.011365 | 226.6189 | $2.58 | |
| BASE | <0.01% | $3.23 | 0.7931 | $2.56 | |
| BASE | <0.01% | $2,079.17 | 0.00122304 | $2.54 | |
| BASE | <0.01% | $0.000482 | 5,263.2428 | $2.54 | |
| BASE | <0.01% | $0.003047 | 816.5326 | $2.49 | |
| BASE | <0.01% | $0.136426 | 18.1953 | $2.48 | |
| BASE | <0.01% | $0.000732 | 3,304.1918 | $2.42 | |
| BASE | <0.01% | $0.000094 | 24,269.1974 | $2.29 | |
| BASE | <0.01% | $0.014546 | 149.8626 | $2.18 | |
| BASE | <0.01% | $0.017393 | 123.8509 | $2.15 | |
| BASE | <0.01% | <$0.000001 | 13,079,692.2105 | $2.15 | |
| BASE | <0.01% | $0.090543 | 23.1734 | $2.1 | |
| BASE | <0.01% | $0.003635 | 498.0833 | $1.81 | |
| BASE | <0.01% | $1 | 1.8003 | $1.81 | |
| BASE | <0.01% | $0.507423 | 3.3926 | $1.72 | |
| BASE | <0.01% | <$0.000001 | 218,765,034.7109 | $1.71 | |
| BASE | <0.01% | $0.0539 | 31.3913 | $1.69 | |
| BASE | <0.01% | $0.000001 | 1,331,089.0043 | $1.69 | |
| BASE | <0.01% | $1.28 | 1.3149 | $1.68 | |
| BASE | <0.01% | $0.001752 | 934.0124 | $1.64 | |
| BASE | <0.01% | $0.004518 | 358.8969 | $1.62 | |
| BASE | <0.01% | $0.000138 | 11,281.7259 | $1.56 | |
| BASE | <0.01% | $1.06 | 1.4371 | $1.53 | |
| BASE | <0.01% | $0.999803 | 1.5131 | $1.51 | |
| BASE | <0.01% | $2.85 | 0.5191 | $1.48 | |
| BASE | <0.01% | $0.999739 | 1.4545 | $1.45 | |
| BASE | <0.01% | $2,410.87 | 0.00059593 | $1.44 | |
| BASE | <0.01% | $0.253657 | 5.5714 | $1.41 | |
| BASE | <0.01% | $0.000001 | 1,393,389.0767 | $1.41 | |
| BASE | <0.01% | $0.000288 | 4,880.1499 | $1.4 | |
| BASE | <0.01% | $0.974148 | 1.4369 | $1.4 | |
| BASE | <0.01% | $1 | 1.3544 | $1.36 | |
| BASE | <0.01% | $0.008694 | 149.795 | $1.3 | |
| BASE | <0.01% | $0.969384 | 1.3051 | $1.27 | |
| BASE | <0.01% | $0.016766 | 75.0942 | $1.26 | |
| BASE | <0.01% | $0.00875 | 143.77 | $1.26 | |
| BASE | <0.01% | $0.02419 | 51.1347 | $1.24 | |
| BASE | <0.01% | $1.1 | 1.0229 | $1.13 | |
| BASE | <0.01% | $0.249345 | 4.5085 | $1.12 | |
| BASE | <0.01% | $2,269 | 0.00047419 | $1.08 | |
| BASE | <0.01% | $0.090326 | 11.894 | $1.07 | |
| BASE | <0.01% | $0.11774 | 9.0372 | $1.06 | |
| BASE | <0.01% | $0.000949 | 1,073.7686 | $1.02 | |
| BASE | <0.01% | $0.018819 | 54.1289 | $1.02 | |
| BASE | <0.01% | $0.07296 | 13.9525 | $1.02 | |
| BASE | <0.01% | $0.013633 | 71.6697 | $0.977 | |
| BASE | <0.01% | $0.523823 | 1.8634 | $0.9761 | |
| BASE | <0.01% | $0.003688 | 252.1192 | $0.9297 | |
| BASE | <0.01% | $0.000087 | 10,582.2782 | $0.9244 | |
| BASE | <0.01% | $0.000021 | 42,902.7944 | $0.8807 | |
| BASE | <0.01% | $0.047211 | 18.0795 | $0.8535 | |
| BASE | <0.01% | $0.007678 | 110.4094 | $0.8477 | |
| BASE | <0.01% | $76,738 | 0.00001099 | $0.8433 | |
| BASE | <0.01% | $2.16 | 0.3895 | $0.8412 | |
| BASE | <0.01% | $1.09 | 0.7747 | $0.8405 | |
| BASE | <0.01% | $0.000951 | 881.7896 | $0.8384 | |
| BASE | <0.01% | $0.116778 | 7.1669 | $0.8369 | |
| BASE | <0.01% | $0.02559 | 32.6358 | $0.8351 | |
| BASE | <0.01% | $0.051006 | 16.027 | $0.8174 | |
| BASE | <0.01% | <$0.000001 | 84,021,637.2921 | $0.815 | |
| BASE | <0.01% | $18.07 | 0.045 | $0.8139 | |
| BASE | <0.01% | $0.000956 | 839.1455 | $0.8023 | |
| BASE | <0.01% | $0.000444 | 1,787.1757 | $0.7933 | |
| BASE | <0.01% | $0.008398 | 93.7608 | $0.7874 | |
| BASE | <0.01% | $0.00049 | 1,593.5061 | $0.7808 | |
| BASE | <0.01% | $0.063498 | 12.1933 | $0.7742 | |
| BASE | <0.01% | $0.0005 | 1,544 | $0.7719 | |
| BASE | <0.01% | $0.009151 | 83.8081 | $0.7669 | |
| BASE | <0.01% | $0.008923 | 85.4303 | $0.7622 | |
| BASE | <0.01% | $0.728402 | 0.9907 | $0.7216 | |
| BASE | <0.01% | <$0.000001 | 140,909,453.8202 | $0.7186 | |
| BASE | <0.01% | $0.102443 | 6.9682 | $0.7138 | |
| BASE | <0.01% | $0.050065 | 14.1674 | $0.7092 | |
| BASE | <0.01% | $0.008248 | 85.5288 | $0.7054 | |
| BASE | <0.01% | $0.00079 | 863.1715 | $0.6819 | |
| BASE | <0.01% | $0.000178 | 3,441 | $0.6136 | |
| BASE | <0.01% | $0.00124 | 491.3675 | $0.6094 | |
| BASE | <0.01% | $0.000151 | 3,991.0844 | $0.6027 | |
| BASE | <0.01% | $0.060843 | 9.8994 | $0.6023 | |
| BASE | <0.01% | $0.572878 | 1.0515 | $0.6023 | |
| BASE | <0.01% | $0.007652 | 73.7204 | $0.5641 | |
| BASE | <0.01% | $0.002897 | 193.092 | $0.5592 | |
| BASE | <0.01% | $0.000032 | 16,885.8809 | $0.5455 | |
| BASE | <0.01% | $0.020356 | 25.7197 | $0.5235 | |
| BASE | <0.01% | $0.003273 | 154.6735 | $0.5061 | |
| BASE | <0.01% | $0.356076 | 1.4075 | $0.5011 | |
| BASE | <0.01% | $0.697844 | 0.7181 | $0.5011 | |
| BASE | <0.01% | $0.000226 | 2,216.2044 | $0.5007 | |
| BASE | <0.01% | $0.005614 | 88.7273 | $0.4981 | |
| BASE | <0.01% | $0.417253 | 1.1541 | $0.4815 | |
| BASE | <0.01% | $0.127541 | 3.7423 | $0.4772 | |
| BASE | <0.01% | $0.000009 | 53,483.905 | $0.4765 | |
| BASE | <0.01% | $75,561 | 0.00000627 | $0.4737 | |
| BASE | <0.01% | $0.011693 | 39.4305 | $0.461 | |
| BASE | <0.01% | $0.00007 | 6,518.8944 | $0.4564 | |
| BASE | <0.01% | $0.632777 | 0.6872 | $0.4348 | |
| BASE | <0.01% | $0.000001 | 759,961.1293 | $0.4311 | |
| BASE | <0.01% | $0.150116 | 2.7659 | $0.4152 | |
| BASE | <0.01% | $0.000005 | 86,079.3304 | $0.4067 | |
| BASE | <0.01% | $0.001802 | 219.0046 | $0.3946 | |
| BASE | <0.01% | <$0.000001 | 1,295,388,984.4512 | $0.3886 | |
| BASE | <0.01% | $0.189597 | 2.0364 | $0.386 | |
| BASE | <0.01% | $13 | 0.0285 | $0.3706 | |
| BASE | <0.01% | $0.002111 | 170.3591 | $0.3595 | |
| BASE | <0.01% | $0.00004 | 8,897.8897 | $0.3592 | |
| BASE | <0.01% | $0.002383 | 149.8888 | $0.3571 | |
| BASE | <0.01% | $0.01525 | 23.0095 | $0.3508 | |
| BASE | <0.01% | $0.053346 | 6.5299 | $0.3483 | |
| BASE | <0.01% | $0.000044 | 7,671.3191 | $0.3379 | |
| BASE | <0.01% | $0.329995 | 1.0178 | $0.3358 | |
| BASE | <0.01% | $0.00524 | 64.0103 | $0.3354 | |
| BASE | <0.01% | $0.574785 | 0.5762 | $0.3311 | |
| BASE | <0.01% | $0.029429 | 11.1802 | $0.329 | |
| BASE | <0.01% | $0.003628 | 87.6578 | $0.318 | |
| BASE | <0.01% | $1.01 | 0.3128 | $0.3165 | |
| BASE | <0.01% | $0.000856 | 359.2822 | $0.3076 | |
| BASE | <0.01% | $0.044757 | 6.6837 | $0.2991 | |
| BASE | <0.01% | $0.004688 | 63.1643 | $0.2961 | |
| BASE | <0.01% | $0.004568 | 62.1084 | $0.2836 | |
| BASE | <0.01% | $0.011717 | 23.9624 | $0.2807 | |
| BASE | <0.01% | $0.014111 | 19.816 | $0.2796 | |
| BASE | <0.01% | $0.001332 | 208.4843 | $0.2777 | |
| BASE | <0.01% | $0.157834 | 1.7487 | $0.276 | |
| BASE | <0.01% | $0.000026 | 10,464.4534 | $0.2743 | |
| BASE | <0.01% | $0.000636 | 421.0696 | $0.2676 | |
| BASE | <0.01% | $2.24 | 0.1193 | $0.2671 | |
| BASE | <0.01% | <$0.000001 | 5,071,729.8578 | $0.2606 | |
| BASE | <0.01% | $0.00016 | 1,607.1471 | $0.2571 | |
| BASE | <0.01% | $0.000009 | 26,668.6023 | $0.2528 | |
| BASE | <0.01% | $0.003131 | 79.6528 | $0.2493 | |
| BASE | <0.01% | $0.000171 | 1,432.4479 | $0.2449 | |
| BASE | <0.01% | $0.000679 | 359.9654 | $0.2444 | |
| BASE | <0.01% | $1.61 | 0.1513 | $0.2435 | |
| BASE | <0.01% | $0.013431 | 17.7213 | $0.238 | |
| BASE | <0.01% | $0.000153 | 1,548.6474 | $0.2363 | |
| BASE | <0.01% | <$0.000001 | 5,087,575.5294 | $0.2325 | |
| BASE | <0.01% | $0.018424 | 12.3649 | $0.2278 | |
| BASE | <0.01% | $0.645396 | 0.353 | $0.2278 | |
| BASE | <0.01% | $0.001304 | 174.345 | $0.2272 | |
| BASE | <0.01% | $0.039708 | 5.7047 | $0.2265 | |
| BASE | <0.01% | $0.000203 | 1,049.3027 | $0.2129 | |
| BASE | <0.01% | $0.004171 | 51.0076 | $0.2127 | |
| BASE | <0.01% | $0.020648 | 10.24 | $0.2114 | |
| BASE | <0.01% | $0.000703 | 299.6161 | $0.2107 | |
| BASE | <0.01% | $0.003428 | 61.3057 | $0.2101 | |
| BASE | <0.01% | $0.053996 | 3.8913 | $0.2101 | |
| BASE | <0.01% | $0.000152 | 1,373.8497 | $0.2088 | |
| BASE | <0.01% | $0.000025 | 8,220.8239 | $0.2085 | |
| BASE | <0.01% | $0.001039 | 192.524 | $0.1999 | |
| BASE | <0.01% | $0.020798 | 9.4814 | $0.1971 | |
| BASE | <0.01% | $0.000003 | 60,722.3682 | $0.1955 | |
| BASE | <0.01% | $0.000191 | 976.6809 | $0.1867 | |
| BASE | <0.01% | $0.000332 | 552.392 | $0.1833 | |
| BASE | <0.01% | $0.010682 | 16.4616 | $0.1758 | |
| BASE | <0.01% | $0.000001 | 246,373.2666 | $0.1697 | |
| BASE | <0.01% | $76,285 | 0.00000221 | $0.1689 | |
| BASE | <0.01% | $0.089883 | 1.8307 | $0.1645 | |
| BASE | <0.01% | $0.013792 | 11.9019 | $0.1641 | |
| BASE | <0.01% | $0.000379 | 427.6345 | $0.1621 | |
| BASE | <0.01% | <$0.000001 | 640,509.0435 | $0.1612 | |
| BASE | <0.01% | $0.000265 | 575.6051 | $0.1526 | |
| BASE | <0.01% | $0.000011 | 13,368.8328 | $0.1501 | |
| BASE | <0.01% | $0.000081 | 1,831.753 | $0.1487 | |
| BASE | <0.01% | $0.017334 | 8.5378 | $0.1479 | |
| BASE | <0.01% | $0.11015 | 1.3398 | $0.1475 | |
| BASE | <0.01% | $0.870857 | 0.1694 | $0.1474 | |
| BASE | <0.01% | $0.000003 | 42,894.9832 | $0.1467 | |
| BASE | <0.01% | $0.115346 | 1.2632 | $0.1457 | |
| BASE | <0.01% | $0.999927 | 0.1437 | $0.1436 | |
| BASE | <0.01% | $0.000002 | 71,797.6357 | $0.1435 | |
| BASE | <0.01% | $0.042392 | 3.3771 | $0.1431 | |
| BASE | <0.01% | $0.000088 | 1,596.0845 | $0.1408 | |
| BASE | <0.01% | $0.029858 | 4.624 | $0.138 | |
| BASE | <0.01% | <$0.000001 | 5,662,889.6117 | $0.1359 | |
| BASE | <0.01% | $0.139939 | 0.9675 | $0.1353 | |
| BASE | <0.01% | $0.000009 | 15,418.169 | $0.1341 | |
| BASE | <0.01% | $0.000018 | 7,539.9959 | $0.1331 | |
| BASE | <0.01% | $0.463494 | 0.2874 | $0.1331 | |
| BASE | <0.01% | $0.000001 | 170,457.9331 | $0.1264 | |
| BASE | <0.01% | $0.051184 | 2.4461 | $0.1251 | |
| BASE | <0.01% | $173.96 | 0.0006966 | $0.1211 | |
| BASE | <0.01% | $0.039996 | 3.0212 | $0.1208 | |
| BASE | <0.01% | $0.000729 | 162.6104 | $0.1186 | |
| BASE | <0.01% | $0.29546 | 0.391 | $0.1155 | |
| BASE | <0.01% | $0.993795 | 0.1151 | $0.1143 | |
| BASE | <0.01% | $0.000132 | 855.88 | $0.1133 | |
| BASE | <0.01% | $0.000053 | 2,090.8602 | $0.1109 | |
| BASE | <0.01% | $0.096868 | 1.0867 | $0.1052 | |
| BASE | <0.01% | $0.000815 | 127.0659 | $0.1035 | |
| AVAX | 0.47% | $0.99988 | 3,494.3644 | $3,493.94 | |
| AVAX | 0.13% | $0.999922 | 1,001.858 | $1,001.78 | |
| AVAX | 0.11% | $9.42 | 89.3821 | $842.14 | |
| AVAX | 0.08% | $9.5 | 60.131 | $571.11 | |
| AVAX | 0.07% | $76,248 | 0.00675214 | $514.84 | |
| AVAX | 0.05% | $2,263.38 | 0.1771 | $400.83 | |
| AVAX | 0.02% | $12.51 | 9.7167 | $121.56 | |
| AVAX | 0.01% | $5,009.63 | 0.0155 | $77.67 | |
| AVAX | <0.01% | $0.03029 | 1,173.4165 | $35.54 | |
| AVAX | <0.01% | $0.999934 | 32.1413 | $32.14 | |
| AVAX | <0.01% | $0.03937 | 775.0695 | $30.51 | |
| AVAX | <0.01% | $70,940.41 | 0.00016991 | $12.05 | |
| AVAX | <0.01% | $70,940.41 | 0.00016033 | $11.37 | |
| AVAX | <0.01% | $1.16 | 8.8242 | $10.23 | |
| AVAX | <0.01% | $76,284 | 0.00009776 | $7.46 | |
| AVAX | <0.01% | $0.000948 | 6,054.6423 | $5.74 | |
| AVAX | <0.01% | $0.009434 | 505.7177 | $4.77 | |
| AVAX | <0.01% | <$0.000001 | 31,968,793.2593 | $3.68 | |
| AVAX | <0.01% | $0.020358 | 171.9141 | $3.5 | |
| AVAX | <0.01% | $0.001912 | 1,647.1129 | $3.15 | |
| AVAX | <0.01% | $9.24 | 0.2749 | $2.54 | |
| AVAX | <0.01% | $1.22 | 1.7696 | $2.16 | |
| AVAX | <0.01% | $0.999922 | 2.1384 | $2.14 | |
| AVAX | <0.01% | $0.99988 | 2.0228 | $2.02 | |
| AVAX | <0.01% | $4,545.39 | 0.00043628 | $1.98 | |
| AVAX | <0.01% | $0.99791 | 1.6725 | $1.67 | |
| AVAX | <0.01% | $264,122 | 0.00000581 | $1.53 | |
| AVAX | <0.01% | $119.15 | 0.0126 | $1.5 | |
| AVAX | <0.01% | $13.09 | 0.0965 | $1.26 | |
| AVAX | <0.01% | $119.54 | 0.00900466 | $1.08 | |
| AVAX | <0.01% | $0.006338 | 140.9587 | $0.8934 | |
| AVAX | <0.01% | $1.88 | 0.4224 | $0.794 | |
| AVAX | <0.01% | $0.99981 | 0.6728 | $0.6726 | |
| AVAX | <0.01% | $0.008042 | 81.4432 | $0.6549 | |
| AVAX | <0.01% | $0.007259 | 89.1967 | $0.6474 | |
| AVAX | <0.01% | $103.18 | 0.00624926 | $0.6447 | |
| AVAX | <0.01% | $0.168021 | 3.7995 | $0.6383 | |
| AVAX | <0.01% | <$0.000001 | 345,033,664.0253 | $0.552 | |
| AVAX | <0.01% | $0.999779 | 0.5469 | $0.5468 | |
| AVAX | <0.01% | $0.99137 | 0.5387 | $0.534 | |
| AVAX | <0.01% | $0.999617 | 0.4749 | $0.4747 | |
| AVAX | <0.01% | $1.31 | 0.3578 | $0.4686 | |
| AVAX | <0.01% | $8.06 | 0.0356 | $0.2871 | |
| AVAX | <0.01% | $0.000359 | 738.219 | $0.2648 | |
| AVAX | <0.01% | $0.006636 | 39.2845 | $0.2606 | |
| AVAX | <0.01% | $0.000174 | 1,392.0361 | $0.2428 | |
| AVAX | <0.01% | $0.000234 | 623.3117 | $0.1459 | |
| AVAX | <0.01% | $0.041604 | 3.3839 | $0.1407 | |
| AVAX | <0.01% | $0.03637 | 3.5817 | $0.1302 | |
| AVAX | <0.01% | $0.000891 | 125.3944 | $0.1117 | |
| AVAX | <0.01% | $0.002183 | 46.4674 | $0.1014 | |
| POL | 0.11% | $0.999905 | 814.3102 | $814.23 | |
| POL | 0.09% | $0.998295 | 705.1793 | $703.98 | |
| POL | 0.07% | $1 | 555.6788 | $555.68 | |
| POL | 0.07% | $2,086.55 | 0.2369 | $494.4 | |
| POL | 0.06% | $76,114 | 0.00575965 | $438.39 | |
| POL | 0.02% | $0.101799 | 1,466.6891 | $149.31 | |
| POL | 0.02% | $0.999905 | 140.6415 | $140.63 | |
| POL | <0.01% | $9.25 | 8.087 | $74.8 | |
| POL | <0.01% | $2,773.1 | 0.0175 | $48.54 | |
| POL | <0.01% | $118.96 | 0.3522 | $41.9 | |
| POL | <0.01% | $0.101205 | 366.087 | $37.05 | |
| POL | <0.01% | $64,957 | 0.00026375 | $17.13 | |
| POL | <0.01% | $0.12486 | 119.7573 | $14.95 | |
| POL | <0.01% | $0.111672 | 123.0704 | $13.74 | |
| POL | <0.01% | $0.189409 | 69.7137 | $13.2 | |
| POL | <0.01% | $89.21 | 0.137 | $12.22 | |
| POL | <0.01% | $5,100.67 | 0.0020282 | $10.35 | |
| POL | <0.01% | $0.000028 | 369,995.512 | $10.29 | |
| POL | <0.01% | $0.002685 | 3,647.57 | $9.79 | |
| POL | <0.01% | $0.084454 | 91.3703 | $7.72 | |
| POL | <0.01% | $0.956203 | 7.3652 | $7.04 | |
| POL | <0.01% | $103.18 | 0.0674 | $6.95 | |
| POL | <0.01% | $0.99981 | 6.8538 | $6.85 | |
| POL | <0.01% | $0.010491 | 491.0793 | $5.15 | |
| POL | <0.01% | $0.99791 | 5.149 | $5.14 | |
| POL | <0.01% | $4.01 | 1.2629 | $5.06 | |
| POL | <0.01% | $2.32 | 1.6242 | $3.77 | |
| POL | <0.01% | $0.000717 | 5,088.3274 | $3.65 | |
| POL | <0.01% | $118.32 | 0.0306 | $3.62 | |
| POL | <0.01% | $0.000009 | 371,035.1904 | $3.25 | |
| POL | <0.01% | $0.782126 | 4.102 | $3.21 | |
| POL | <0.01% | $1.16 | 2.761 | $3.2 | |
| POL | <0.01% | $1.16 | 2.7608 | $3.2 | |
| POL | <0.01% | $0.012602 | 251.8196 | $3.17 | |
| POL | <0.01% | $0.988284 | 2.527 | $2.5 | |
| POL | <0.01% | $0.901862 | 2.6564 | $2.4 | |
| POL | <0.01% | $0.012258 | 186.5795 | $2.29 | |
| POL | <0.01% | $0.253233 | 8.5423 | $2.16 | |
| POL | <0.01% | <$0.000001 | 10,073,242.6591 | $2.16 | |
| POL | <0.01% | $0.112872 | 19.1092 | $2.16 | |
| POL | <0.01% | $0.189314 | 10.9478 | $2.07 | |
| POL | <0.01% | $0.801332 | 2.5005 | $2 | |
| POL | <0.01% | $0.329678 | 5.7814 | $1.91 | |
| POL | <0.01% | $4,545.39 | 0.00041394 | $1.88 | |
| POL | <0.01% | $0.999617 | 1.8334 | $1.83 | |
| POL | <0.01% | $0.037125 | 48.8309 | $1.81 | |
| POL | <0.01% | $1.24 | 1.39 | $1.72 | |
| POL | <0.01% | $0.104205 | 14.8731 | $1.55 | |
| POL | <0.01% | $18.06 | 0.0797 | $1.44 | |
| POL | <0.01% | $1.19 | 1.1677 | $1.39 | |
| POL | <0.01% | $0.026409 | 51.3719 | $1.36 | |
| POL | <0.01% | $0.073047 | 18.2274 | $1.33 | |
| POL | <0.01% | $2,091.6 | 0.00059476 | $1.24 | |
| POL | <0.01% | $1,815.71 | 0.00068451 | $1.24 | |
| POL | <0.01% | $173.96 | 0.00708642 | $1.23 | |
| POL | <0.01% | $0.01123 | 98.7446 | $1.11 | |
| POL | <0.01% | $0.027405 | 38.8917 | $1.07 | |
| POL | <0.01% | $0.000022 | 46,727.3088 | $1.05 | |
| POL | <0.01% | $0.006339 | 158.2252 | $1 | |
| POL | <0.01% | $1.01 | 0.9809 | $0.9867 | |
| POL | <0.01% | $0.111737 | 8.0284 | $0.897 | |
| POL | <0.01% | $1.39 | 0.645 | $0.8964 | |
| POL | <0.01% | $0.007264 | 123.0349 | $0.8937 | |
| POL | <0.01% | $0.99983 | 0.8289 | $0.8287 | |
| POL | <0.01% | $0.133341 | 5.9362 | $0.7915 | |
| POL | <0.01% | $0.000269 | 2,933.2226 | $0.7884 | |
| POL | <0.01% | $0.189613 | 4.0853 | $0.7746 | |
| POL | <0.01% | $0.132084 | 5.5851 | $0.7377 | |
| POL | <0.01% | $106.48 | 0.00688331 | $0.7329 | |
| POL | <0.01% | $0.00001 | 76,051.0732 | $0.7325 | |
| POL | <0.01% | $0.116183 | 5.9193 | $0.6877 | |
| POL | <0.01% | $2,314.06 | 0.00026687 | $0.6175 | |
| POL | <0.01% | $0.15904 | 3.8265 | $0.6085 | |
| POL | <0.01% | $0.007357 | 82.1003 | $0.6039 | |
| POL | <0.01% | $0.020905 | 28.0681 | $0.5867 | |
| POL | <0.01% | $0.036869 | 15.9069 | $0.5864 | |
| POL | <0.01% | $1.87 | 0.2966 | $0.5546 | |
| POL | <0.01% | $0.999855 | 0.5524 | $0.5523 | |
| POL | <0.01% | $0.008424 | 64.2118 | $0.5409 | |
| POL | <0.01% | $0.000006 | 86,663.6077 | $0.5377 | |
| POL | <0.01% | $0.173278 | 2.9659 | $0.5139 | |
| POL | <0.01% | $0.27942 | 1.7779 | $0.4967 | |
| POL | <0.01% | $0.009438 | 52.2038 | $0.4927 | |
| POL | <0.01% | $0.001099 | 445.5109 | $0.4897 | |
| POL | <0.01% | $0.000449 | 1,037.3142 | $0.466 | |
| POL | <0.01% | $0.001665 | 275.5254 | $0.4587 | |
| POL | <0.01% | $0.999859 | 0.4508 | $0.4507 | |
| POL | <0.01% | $0.99981 | 0.4369 | $0.4368 | |
| POL | <0.01% | $0.075057 | 5.7419 | $0.4309 | |
| POL | <0.01% | $0.101879 | 4.2127 | $0.4291 | |
| POL | <0.01% | $0.199402 | 2.0886 | $0.4164 | |
| POL | <0.01% | $1 | 0.4016 | $0.4023 | |
| POL | <0.01% | $0.000319 | 1,256.1762 | $0.401 | |
| POL | <0.01% | $0.031414 | 12.1163 | $0.3806 | |
| POL | <0.01% | $2,077.43 | 0.00017634 | $0.3663 | |
| POL | <0.01% | $48.25 | 0.00715452 | $0.3452 | |
| POL | <0.01% | $0.044825 | 7.6224 | $0.3416 | |
| POL | <0.01% | $0.007073 | 47.7111 | $0.3374 | |
| POL | <0.01% | $0.009297 | 36.1038 | $0.3356 | |
| POL | <0.01% | $6.12 | 0.0541 | $0.331 | |
| POL | <0.01% | $0.048724 | 6.585 | $0.3208 | |
| POL | <0.01% | $0.063316 | 5.059 | $0.3203 | |
| POL | <0.01% | $0.188504 | 1.6938 | $0.3192 | |
| POL | <0.01% | $0.086955 | 3.6111 | $0.314 | |
| POL | <0.01% | <$0.000001 | 5,851,703.3948 | $0.313 | |
| POL | <0.01% | $0.169622 | 1.7952 | $0.3045 | |
| POL | <0.01% | $0.000001 | 272,292.1289 | $0.2913 | |
| POL | <0.01% | $0.109063 | 2.6332 | $0.2871 | |
| POL | <0.01% | $0.036002 | 7.9407 | $0.2858 | |
| POL | <0.01% | $0.004332 | 65.4857 | $0.2837 | |
| POL | <0.01% | $0.130912 | 2.1279 | $0.2785 | |
| POL | <0.01% | $0.611965 | 0.43 | $0.2631 | |
| POL | <0.01% | $16.91 | 0.0151 | $0.2556 | |
| POL | <0.01% | $0.00202 | 124.8537 | $0.2522 | |
| POL | <0.01% | $0.024367 | 10.0242 | $0.2442 | |
| POL | <0.01% | $0.094747 | 2.4598 | $0.233 | |
| POL | <0.01% | $0.571985 | 0.4023 | $0.2301 | |
| POL | <0.01% | $0.167604 | 1.3694 | $0.2295 | |
| POL | <0.01% | $0.011612 | 19.7298 | $0.2291 | |
| POL | <0.01% | $71,100 | 0.00000317 | $0.2254 | |
| POL | <0.01% | $0.097888 | 2.2715 | $0.2223 | |
| POL | <0.01% | $0.000287 | 745.2088 | $0.214 | |
| POL | <0.01% | $0.004203 | 49.6642 | $0.2087 | |
| POL | <0.01% | $0.00454 | 44.5427 | $0.2022 | |
| POL | <0.01% | $0.00064 | 304.6598 | $0.1949 | |
| POL | <0.01% | $0.000064 | 3,010.358 | $0.192 | |
| POL | <0.01% | $0.021359 | 8.9688 | $0.1915 | |
| POL | <0.01% | $0.000006 | 32,711.5644 | $0.1831 | |
| POL | <0.01% | $0.092782 | 1.9226 | $0.1783 | |
| POL | <0.01% | $0.000449 | 396.8293 | $0.178 | |
| POL | <0.01% | $0.001215 | 143.7004 | $0.1746 | |
| POL | <0.01% | $0.000155 | 1,124.5533 | $0.1743 | |
| POL | <0.01% | $0.872195 | 0.1959 | $0.1708 | |
| POL | <0.01% | $0.152132 | 1.0809 | $0.1644 | |
| POL | <0.01% | $0.000172 | 956.5992 | $0.1642 | |
| POL | <0.01% | $0.000074 | 2,201.4312 | $0.163 | |
| POL | <0.01% | $0.005544 | 28.9735 | $0.1606 | |
| POL | <0.01% | $0.001388 | 114.0083 | $0.1582 | |
| POL | <0.01% | $0.000007 | 22,869.2921 | $0.1566 | |
| POL | <0.01% | $0.001843 | 84.5058 | $0.1557 | |
| POL | <0.01% | $0.01472 | 10.4224 | $0.1534 | |
| POL | <0.01% | $0.00015 | 977.3567 | $0.1467 | |
| POL | <0.01% | $9.45 | 0.015 | $0.1412 | |
| POL | <0.01% | $0.000301 | 455.1805 | $0.1371 | |
| POL | <0.01% | $0.003652 | 36.8154 | $0.1344 | |
| POL | <0.01% | $3.32 | 0.0399 | $0.1325 | |
| POL | <0.01% | $0.000344 | 379.9847 | $0.1306 | |
| POL | <0.01% | $0.153847 | 0.8328 | $0.1281 | |
| POL | <0.01% | $0.00004 | 3,111.6958 | $0.1256 | |
| POL | <0.01% | $0.000028 | 4,555.3497 | $0.1254 | |
| POL | <0.01% | $0.14416 | 0.8655 | $0.1247 | |
| POL | <0.01% | $0.000373 | 332.0365 | $0.124 | |
| POL | <0.01% | $0.001418 | 84.8339 | $0.1202 | |
| POL | <0.01% | $0.000026 | 4,668.9048 | $0.1192 | |
| POL | <0.01% | $0.098226 | 1.1052 | $0.1085 | |
| POL | <0.01% | $0.002187 | 49.0996 | $0.1073 | |
| POL | <0.01% | $0.000851 | 124.5136 | $0.1059 | |
| POL | <0.01% | $0.013382 | 7.8573 | $0.1051 | |
| POL | <0.01% | $0.315226 | 0.3228 | $0.1017 | |
| OP | 0.13% | $0.999905 | 980.2169 | $980.12 | |
| OP | 0.04% | $2,093.59 | 0.143 | $299.32 | |
| OP | 0.03% | $76,114 | 0.00285903 | $217.61 | |
| OP | 0.03% | $2,263.38 | 0.0918 | $207.8 | |
| OP | 0.02% | $1 | 122.3752 | $122.38 | |
| OP | 0.01% | $0.827044 | 109.1266 | $90.25 | |
| OP | <0.01% | $0.999905 | 71.737 | $71.73 | |
| OP | <0.01% | $71,128 | 0.00088658 | $63.06 | |
| OP | <0.01% | $0.017311 | 3,467.6867 | $60.03 | |
| OP | <0.01% | $1.37 | 39.1249 | $53.6 | |
| OP | <0.01% | $2,773.1 | 0.0104 | $28.77 | |
| OP | <0.01% | $0.125828 | 130.9966 | $16.48 | |
| OP | <0.01% | $1.01 | 13.51 | $13.67 | |
| OP | <0.01% | $0.329905 | 35.1451 | $11.59 | |
| OP | <0.01% | $2,314.06 | 0.00340646 | $7.88 | |
| OP | <0.01% | $1 | 7.0309 | $7.03 | |
| OP | <0.01% | $118.3 | 0.0413 | $4.88 | |
| OP | <0.01% | $119.15 | 0.0384 | $4.57 | |
| OP | <0.01% | $0.410117 | 9.9692 | $4.09 | |
| OP | <0.01% | $0.034902 | 88.4015 | $3.09 | |
| OP | <0.01% | $9.26 | 0.316 | $2.93 | |
| OP | <0.01% | $1,810.99 | 0.00088598 | $1.6 | |
| OP | <0.01% | $0.168021 | 8.2128 | $1.38 | |
| OP | <0.01% | $0.136206 | 8.3193 | $1.13 | |
| OP | <0.01% | $0.99981 | 1.0912 | $1.09 | |
| OP | <0.01% | $0.99791 | 0.9394 | $0.9374 | |
| OP | <0.01% | $1.88 | 0.4722 | $0.8876 | |
| OP | <0.01% | $2,421.77 | 0.00035519 | $0.8602 | |
| OP | <0.01% | $4.02 | 0.2119 | $0.8516 | |
| OP | <0.01% | $2,627.86 | 0.0002802 | $0.7363 | |
| OP | <0.01% | $0.081802 | 8.7081 | $0.7123 | |
| OP | <0.01% | $0.999739 | 0.5534 | $0.5532 | |
| OP | <0.01% | $1 | 0.403 | $0.4041 | |
| OP | <0.01% | $0.000072 | 5,525.5703 | $0.395 | |
| OP | <0.01% | $110,933 | 0.00000343 | $0.3805 | |
| OP | <0.01% | $0.985853 | 0.3707 | $0.3654 | |
| OP | <0.01% | $0.007572 | 48.0182 | $0.3635 | |
| OP | <0.01% | $0.153564 | 2.3159 | $0.3556 | |
| OP | <0.01% | $0.999134 | 0.2808 | $0.2806 | |
| OP | <0.01% | $5.58 | 0.0491 | $0.2741 | |
| OP | <0.01% | $1.28 | 0.174 | $0.2227 | |
| OP | <0.01% | $2,188.23 | 0.00009333 | $0.2042 | |
| OP | <0.01% | $1.01 | 0.2017 | $0.203 | |
| OP | <0.01% | $103.18 | 0.00180054 | $0.1857 | |
| OP | <0.01% | $0.017311 | 10.4355 | $0.1806 | |
| OP | <0.01% | $2,091.6 | 0.00008403 | $0.1757 | |
| OP | <0.01% | $8.06 | 0.0194 | $0.1561 | |
| OP | <0.01% | $0.035299 | 3.8993 | $0.1376 | |
| OP | <0.01% | $0.004263 | 31.7264 | $0.1352 | |
| OP | <0.01% | $0.054248 | 2.1686 | $0.1176 | |
| OP | <0.01% | $0.033558 | 3.4002 | $0.1141 | |
| OP | <0.01% | $0.000637 | 164.0653 | $0.1045 | |
| UNI | 0.10% | $0.999994 | 781.5695 | $781.56 | |
| UNI | 0.05% | $2,092.29 | 0.1733 | $362.67 | |
| UNI | 0.05% | $0.998295 | 338.0139 | $337.44 | |
| UNI | 0.03% | $2,263.48 | 0.1025 | $232.01 | |
| UNI | <0.01% | $71,006.73 | 0.0008197 | $58.2 | |
| UNI | <0.01% | $32.94 | 1.191 | $39.23 | |
| UNI | <0.01% | $99.2 | 0.1125 | $11.16 | |
| UNI | <0.01% | $4.01 | 1.274 | $5.11 | |
| UNI | <0.01% | $0.000032 | 38,445.711 | $1.21 | |
| GNO | 0.05% | $2,258.88 | 0.1637 | $369.78 | |
| GNO | 0.03% | $131.34 | 1.8273 | $240 | |
| GNO | 0.02% | $0.99991 | 168.227 | $168.21 | |
| GNO | 0.02% | $1.16 | 142.1789 | $164.93 | |
| GNO | 0.02% | $1.16 | 142.1789 | $164.93 | |
| GNO | 0.02% | $0.999905 | 163.3759 | $163.36 | |
| GNO | 0.02% | $0.249345 | 469.4838 | $117.06 | |
| GNO | 0.01% | $0.99991 | 103.1368 | $103.13 | |
| GNO | <0.01% | $0.104981 | 184.5095 | $19.37 | |
| GNO | <0.01% | $2,767.96 | 0.00647578 | $17.92 | |
| GNO | <0.01% | $0.999905 | 17.5904 | $17.59 | |
| GNO | <0.01% | $1.22 | 13.9101 | $16.97 | |
| GNO | <0.01% | $1 | 10.413 | $10.41 | |
| GNO | <0.01% | $0.999617 | 5.2871 | $5.29 | |
| GNO | <0.01% | $0.037129 | 97.8442 | $3.63 | |
| GNO | <0.01% | $76,177 | 0.00004625 | $3.52 | |
| GNO | <0.01% | $424.64 | 0.00649368 | $2.76 | |
| GNO | <0.01% | $9.26 | 0.2386 | $2.21 | |
| GNO | <0.01% | $1.28 | 1.068 | $1.37 | |
| GNO | <0.01% | $0.000643 | 1,788.7358 | $1.15 | |
| GNO | <0.01% | $0.157834 | 7.0118 | $1.11 | |
| GNO | <0.01% | $1 | 1.0763 | $1.08 | |
| GNO | <0.01% | $735.87 | 0.00144476 | $1.06 | |
| GNO | <0.01% | $0.189545 | 5.3794 | $1.02 | |
| GNO | <0.01% | $0.99981 | 0.7541 | $0.7539 | |
| GNO | <0.01% | $0.992463 | 0.5518 | $0.5476 | |
| GNO | <0.01% | $2,079.17 | 0.00021641 | $0.4499 | |
| GNO | <0.01% | $1.18 | 0.2198 | $0.2593 | |
| GNO | <0.01% | $1 | 0.2433 | $0.2439 | |
| GNO | <0.01% | $0.007076 | 30.8005 | $0.2179 | |
| GNO | <0.01% | $2,314.06 | 0.00007109 | $0.1645 | |
| SONIC | <0.01% | $0.561867 | 26.274 | $14.76 | |
| SONIC | <0.01% | $0.999903 | 13.8333 | $13.83 | |
| SONIC | <0.01% | $0.001197 | 9,402.9424 | $11.26 | |
| SONIC | <0.01% | $0.053892 | 205.196 | $11.06 | |
| SONIC | <0.01% | $0.999993 | 3.8477 | $3.85 | |
| SONIC | <0.01% | $2,263.38 | 0.00112103 | $2.54 | |
| SONIC | <0.01% | $0.999683 | 1.3998 | $1.4 | |
| SONIC | <0.01% | $0.051182 | 22.9117 | $1.17 | |
| SONIC | <0.01% | $0.041864 | 21.317 | $0.892405 | |
| SONIC | <0.01% | $0.005182 | 144.504 | $0.7488 | |
| PLASMA | <0.01% | $0.120148 | 0.068 | $0.008173 |
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.