Showing the last 6 internal transactions (View Advanced Filter)
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| Transfer | 23206701 | 182 days ago | 3.02673 ETH | ||||
| Transfer | 22924982 | 221 days ago | 2.10660412 ETH | ||||
| Transfer | 22923878 | 221 days ago | 11.85703893 ETH | ||||
| Transfer | 21911558 | 363 days ago | 1.94427915 ETH | ||||
| Transfer | 21862476 | 370 days ago | 3.28913251 ETH | ||||
| Transfer | 21059870 | 482 days ago | 1.12401178 ETH |
Loading...
Loading
Loading...
Loading
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/",
"foundry-huff/=lib/foundry-huff/src/",
"openzeppelin-contracts/=lib/openzeppelin-contracts/",
"prb-test/=lib/prb-test/src/",
"solady/=lib/solady/",
"solidity-bytes-utils/=lib/solidity-bytes-utils/contracts/",
"solidity-stringutils/=lib/foundry-huff/lib/solidity-stringutils/",
"solmate/=lib/create3-factory/lib/solmate/src/",
"stringutils/=lib/foundry-huff/lib/solidity-stringutils/"
],
"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
Net Worth in USD
$754,960.80
Net Worth in ETH
382.193913
Token Allocations
TRU
40.70%
UXLINK
30.35%
USDC
6.68%
Others
22.28%
Multichain Portfolio | 34 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|---|---|---|---|---|
| ETH | 40.70% | $0.006661 | 46,123,416.5335 | $307,248.23 | |
| ETH | 2.94% | $0.999856 | 22,181.6 | $22,178.41 | |
| ETH | 1.37% | $0.999613 | 10,334.9234 | $10,330.92 | |
| ETH | 1.14% | $1.22 | 7,064.5986 | $8,618.81 | |
| ETH | 0.74% | $1,975.41 | 2.815 | $5,560.69 | |
| ETH | 0.73% | $1,975.41 | 2.7855 | $5,502.42 | |
| ETH | 0.41% | $76,149 | 0.0407 | $3,097.59 | |
| ETH | 0.36% | $0.247116 | 10,890.7464 | $2,691.28 | |
| ETH | 0.33% | $1.16 | 2,163.4003 | $2,509.54 | |
| ETH | 0.28% | $1.09 | 1,942.8545 | $2,109.94 | |
| ETH | 0.27% | $0.999035 | 2,037.6742 | $2,035.71 | |
| ETH | 0.20% | $1 | 1,474.8184 | $1,479.24 | |
| ETH | 0.16% | $99.44 | 12.4115 | $1,234.2 | |
| ETH | 0.16% | $0.995636 | 1,236.9295 | $1,231.53 | |
| ETH | 0.10% | $0.990932 | 746.0705 | $739.31 | |
| ETH | 0.09% | $0.999818 | 692.8321 | $692.71 | |
| ETH | 0.07% | $2,767.01 | 0.1865 | $516.02 | |
| ETH | 0.07% | $0.951451 | 541.4858 | $515.2 | |
| ETH | 0.05% | <$0.000001 | 2,113,008,495.8687 | $396.85 | |
| ETH | 0.04% | $0.066904 | 5,046.9594 | $337.66 | |
| ETH | 0.04% | $5,097.97 | 0.0622 | $317.33 | |
| ETH | 0.04% | $8.85 | 34.4427 | $304.82 | |
| ETH | 0.04% | $5,137.12 | 0.053 | $272.18 | |
| ETH | 0.04% | $119.11 | 2.2629 | $269.53 | |
| ETH | 0.03% | $0.312268 | 782.2327 | $244.27 | |
| ETH | 0.03% | $76,331 | 0.00308917 | $235.8 | |
| ETH | 0.03% | $0.999669 | 210.4792 | $210.41 | |
| ETH | 0.03% | $2,257.37 | 0.0895 | $202.06 | |
| ETH | 0.03% | $0.119416 | 1,677.0297 | $200.26 | |
| ETH | 0.03% | $0.064676 | 3,033.5289 | $196.2 | |
| ETH | 0.02% | $0.999887 | 154.5753 | $154.56 | |
| ETH | 0.02% | $1.29 | 109.885 | $141.75 | |
| ETH | 0.02% | $0.999838 | 134.1405 | $134.12 | |
| ETH | 0.02% | $194.74 | 0.6705 | $130.57 | |
| ETH | 0.02% | $1.18 | 103.2512 | $121.84 | |
| ETH | 0.02% | $0.786902 | 152.9766 | $120.38 | |
| ETH | 0.02% | $0.075908 | 1,527.8395 | $115.97 | |
| ETH | 0.01% | $0.999318 | 112.9246 | $112.85 | |
| ETH | 0.01% | $0.225397 | 498.159 | $112.28 | |
| ETH | 0.01% | $2,449.67 | 0.0448 | $109.87 | |
| ETH | 0.01% | $0.999441 | 109.3802 | $109.32 | |
| ETH | 0.01% | $0.00713 | 14,598.1348 | $104.09 | |
| ETH | 0.01% | $0.492749 | 207.0211 | $102.01 | |
| ETH | 0.01% | $64,957 | 0.00152763 | $99.23 | |
| ETH | 0.01% | $1.89 | 48.9451 | $92.31 | |
| ETH | 0.01% | $65.6 | 1.2085 | $79.28 | |
| ETH | <0.01% | $3.56 | 21.158 | $75.32 | |
| ETH | <0.01% | $2,459.09 | 0.0298 | $73.25 | |
| ETH | <0.01% | $0.41763 | 174.3498 | $72.81 | |
| ETH | <0.01% | $1.04 | 66.1187 | $68.9 | |
| ETH | <0.01% | $2,624.38 | 0.0259 | $68.02 | |
| ETH | <0.01% | $0.016262 | 3,923.6984 | $63.81 | |
| ETH | <0.01% | $76,298 | 0.00079888 | $60.95 | |
| ETH | <0.01% | $0.000198 | 289,073.517 | $57.31 | |
| ETH | <0.01% | $0.009698 | 5,585.9977 | $54.17 | |
| ETH | <0.01% | $0.99981 | 52.3336 | $52.32 | |
| ETH | <0.01% | $0.999844 | 50.3648 | $50.36 | |
| ETH | <0.01% | $2.08 | 22.5574 | $46.92 | |
| ETH | <0.01% | $17.22 | 2.459 | $42.34 | |
| ETH | <0.01% | $0.452118 | 92.4163 | $41.78 | |
| ETH | <0.01% | $1 | 41.4995 | $41.5 | |
| ETH | <0.01% | $71,099 | 0.00056614 | $40.25 | |
| ETH | <0.01% | $1 | 36.5764 | $36.58 | |
| ETH | <0.01% | $1.15 | 30.8359 | $35.46 | |
| ETH | <0.01% | $0.00072 | 48,568.9734 | $34.95 | |
| ETH | <0.01% | $0.99534 | 32.8441 | $32.69 | |
| ETH | <0.01% | $0.027177 | 1,163.7783 | $31.63 | |
| ETH | <0.01% | $2,533.88 | 0.0122 | $31.02 | |
| ETH | <0.01% | $0.232263 | 131.4563 | $30.53 | |
| ETH | <0.01% | $0.99791 | 30.4938 | $30.43 | |
| ETH | <0.01% | $0.99681 | 30.4427 | $30.35 | |
| ETH | <0.01% | $0.007262 | 4,112.9773 | $29.87 | |
| ETH | <0.01% | $0.10409 | 283.1235 | $29.47 | |
| ETH | <0.01% | $0.13013 | 217.0045 | $28.24 | |
| ETH | <0.01% | $0.058553 | 479.918 | $28.1 | |
| ETH | <0.01% | <$0.000001 | 303,576,848.8115 | $27.89 | |
| ETH | <0.01% | $8.07 | 3.4216 | $27.61 | |
| ETH | <0.01% | <$0.000001 | 404,566,516.8516 | $26.94 | |
| ETH | <0.01% | $0.993467 | 27.0627 | $26.89 | |
| ETH | <0.01% | $1.63 | 16.1079 | $26.26 | |
| ETH | <0.01% | $76,732 | 0.00033854 | $25.98 | |
| ETH | <0.01% | $0.858019 | 29.6167 | $25.41 | |
| ETH | <0.01% | $0.006037 | 4,201.3769 | $25.36 | |
| ETH | <0.01% | $1.73 | 14.3868 | $24.89 | |
| ETH | <0.01% | $0.013764 | 1,795.1436 | $24.71 | |
| ETH | <0.01% | $0.110397 | 221.592 | $24.46 | |
| ETH | <0.01% | $0.002785 | 8,750.97 | $24.37 | |
| ETH | <0.01% | <$0.000001 | 813,474,926.3643 | $24.22 | |
| ETH | <0.01% | $2,257.29 | 0.0106 | $23.9 | |
| ETH | <0.01% | $0.999182 | 23.04 | $23.02 | |
| ETH | <0.01% | $0.265103 | 85.7633 | $22.74 | |
| ETH | <0.01% | $1,975.17 | 0.0112 | $22.09 | |
| ETH | <0.01% | $1.01 | 21.9074 | $22.02 | |
| ETH | <0.01% | $0.097597 | 214.6669 | $20.95 | |
| ETH | <0.01% | <$0.000001 | 459,976,285.5222 | $20.14 | |
| ETH | <0.01% | $0.092134 | 213.8167 | $19.7 | |
| ETH | <0.01% | $0.334045 | 58.7835 | $19.64 | |
| ETH | <0.01% | $0.30738 | 62.9862 | $19.36 | |
| ETH | <0.01% | $0.056038 | 344.3343 | $19.3 | |
| ETH | <0.01% | $0.076656 | 240.1719 | $18.41 | |
| ETH | <0.01% | $0.006546 | 2,789.138 | $18.26 | |
| ETH | <0.01% | $0.00001 | 1,828,501.0801 | $18.12 | |
| ETH | <0.01% | $0.756794 | 23.8208 | $18.03 | |
| ETH | <0.01% | $121.66 | 0.1478 | $17.98 | |
| ETH | <0.01% | $0.629765 | 28.1184 | $17.71 | |
| ETH | <0.01% | $0.007823 | 2,239.5321 | $17.52 | |
| ETH | <0.01% | $0.011217 | 1,547.2669 | $17.36 | |
| ETH | <0.01% | <$0.000001 | 2,306,484,069.6601 | $17.25 | |
| ETH | <0.01% | $8.12 | 2.116 | $17.18 | |
| ETH | <0.01% | $0.023538 | 729.5889 | $17.17 | |
| ETH | <0.01% | $1.44 | 11.8118 | $17.01 | |
| ETH | <0.01% | $0.996014 | 17.0146 | $16.95 | |
| ETH | <0.01% | $0.003998 | 4,144.301 | $16.57 | |
| ETH | <0.01% | $0.046297 | 356.5409 | $16.51 | |
| ETH | <0.01% | $0.630736 | 26.1053 | $16.47 | |
| ETH | <0.01% | $0.021008 | 782.1298 | $16.43 | |
| ETH | <0.01% | $2,802.86 | 0.00575115 | $16.12 | |
| ETH | <0.01% | $0.002519 | 6,379.2332 | $16.07 | |
| ETH | <0.01% | $0.020171 | 796.4735 | $16.07 | |
| ETH | <0.01% | $1.14 | 13.6668 | $15.58 | |
| ETH | <0.01% | $0.68662 | 22.2901 | $15.3 | |
| ETH | <0.01% | $0.002348 | 6,443.9315 | $15.13 | |
| ETH | <0.01% | $0.006289 | 2,393.3235 | $15.05 | |
| ETH | <0.01% | $0.382534 | 39.1979 | $14.99 | |
| ETH | <0.01% | $0.065215 | 229.5198 | $14.97 | |
| ETH | <0.01% | $76,212 | 0.00019611 | $14.95 | |
| ETH | <0.01% | $0.053328 | 279.5665 | $14.91 | |
| ETH | <0.01% | $0.321684 | 46.2601 | $14.88 | |
| ETH | <0.01% | $1.2 | 12.3901 | $14.87 | |
| ETH | <0.01% | $0.16204 | 90.2115 | $14.62 | |
| ETH | <0.01% | <$0.000001 | 63,690,330.8567 | $14.58 | |
| ETH | <0.01% | $0.148075 | 98.2256 | $14.54 | |
| ETH | <0.01% | $0.000032 | 447,799.4364 | $14.39 | |
| ETH | <0.01% | $0.029038 | 490.7926 | $14.25 | |
| ETH | <0.01% | $8.3 | 1.7056 | $14.16 | |
| ETH | <0.01% | $0.000434 | 32,471.3646 | $14.1 | |
| ETH | <0.01% | $0.022489 | 621.8613 | $13.98 | |
| ETH | <0.01% | $0.107593 | 129.9225 | $13.98 | |
| ETH | <0.01% | $0.011218 | 1,228.548 | $13.78 | |
| ETH | <0.01% | $0.000004 | 3,580,224.3634 | $13.71 | |
| ETH | <0.01% | $0.079858 | 169.7692 | $13.56 | |
| ETH | <0.01% | $0.015543 | 865.9631 | $13.46 | |
| ETH | <0.01% | $0.032654 | 408.4878 | $13.34 | |
| ETH | <0.01% | $1.17 | 11.333 | $13.26 | |
| ETH | <0.01% | $0.000006 | 2,113,035.5485 | $13.16 | |
| ETH | <0.01% | $16.3 | 0.8011 | $13.06 | |
| ETH | <0.01% | $2.1 | 6.0269 | $12.64 | |
| ETH | <0.01% | $0.020232 | 618.4002 | $12.51 | |
| ETH | <0.01% | $3.38 | 3.6434 | $12.31 | |
| ETH | <0.01% | $1.29 | 9.5108 | $12.27 | |
| ETH | <0.01% | $0.915672 | 13.2775 | $12.16 | |
| ETH | <0.01% | $257.32 | 0.0468 | $12.03 | |
| ETH | <0.01% | $76.99 | 0.1545 | $11.9 | |
| ETH | <0.01% | $0.000004 | 2,907,766.0463 | $11.89 | |
| ETH | <0.01% | $0.107346 | 109.9897 | $11.81 | |
| ETH | <0.01% | $120.5 | 0.0971 | $11.7 | |
| ETH | <0.01% | $0.005673 | 2,035.0298 | $11.55 | |
| ETH | <0.01% | $0.9996 | 11.4525 | $11.45 | |
| ETH | <0.01% | $0.004846 | 2,360.1616 | $11.44 | |
| ETH | <0.01% | $3.56 | 3.183 | $11.33 | |
| ETH | <0.01% | $0.992021 | 11.351 | $11.26 | |
| ETH | <0.01% | $0.005164 | 2,171.0432 | $11.21 | |
| ETH | <0.01% | $0.463077 | 24.0472 | $11.14 | |
| ETH | <0.01% | $0.213911 | 50.8686 | $10.88 | |
| ETH | <0.01% | $1.24 | 8.6499 | $10.73 | |
| ETH | <0.01% | $1.32 | 7.9908 | $10.55 | |
| ETH | <0.01% | $0.05727 | 183.0983 | $10.49 | |
| ETH | <0.01% | $0.017655 | 593.8601 | $10.48 | |
| ETH | <0.01% | $1.28 | 8.1754 | $10.46 | |
| ETH | <0.01% | $0.020503 | 508.1816 | $10.42 | |
| ETH | <0.01% | $0.022843 | 455.4231 | $10.4 | |
| ETH | <0.01% | $0.961831 | 10.7731 | $10.36 | |
| ETH | <0.01% | $0.999792 | 10.3073 | $10.31 | |
| ETH | <0.01% | $0.004243 | 2,386.198 | $10.12 | |
| ETH | <0.01% | $0.149764 | 66.96 | $10.03 | |
| ETH | <0.01% | $0.002529 | 3,945.578 | $9.98 | |
| ETH | <0.01% | $0.029233 | 336.1848 | $9.83 | |
| ETH | <0.01% | $0.03317 | 296.0617 | $9.82 | |
| ETH | <0.01% | $119.11 | 0.0811 | $9.66 | |
| ETH | <0.01% | $0.998191 | 9.6638 | $9.65 | |
| ETH | <0.01% | $0.006476 | 1,467.9283 | $9.51 | |
| ETH | <0.01% | $0.044644 | 212.0678 | $9.47 | |
| ETH | <0.01% | $0.178118 | 53.0808 | $9.45 | |
| ETH | <0.01% | $0.154976 | 60.1492 | $9.32 | |
| ETH | <0.01% | $1,810.99 | 0.00512386 | $9.28 | |
| ETH | <0.01% | $1.01 | 9.1568 | $9.2 | |
| ETH | <0.01% | $0.002242 | 4,095.3172 | $9.18 | |
| ETH | <0.01% | $2,594.71 | 0.00353814 | $9.18 | |
| ETH | <0.01% | $0.994142 | 9.0719 | $9.02 | |
| ETH | <0.01% | $0.009784 | 910.0065 | $8.9 | |
| ETH | <0.01% | $1.07 | 8.3047 | $8.84 | |
| ETH | <0.01% | $0.032555 | 271.0684 | $8.82 | |
| ETH | <0.01% | $0.006929 | 1,254.0384 | $8.69 | |
| ETH | <0.01% | $0.018713 | 459.7097 | $8.6 | |
| ETH | <0.01% | $0.011867 | 722.8083 | $8.58 | |
| ETH | <0.01% | $0.002812 | 3,049.3185 | $8.57 | |
| ETH | <0.01% | $0.005877 | 1,446.8852 | $8.5 | |
| ETH | <0.01% | $10.06 | 0.8444 | $8.5 | |
| ETH | <0.01% | $0.036785 | 229.6868 | $8.45 | |
| ETH | <0.01% | $0.163228 | 51.6721 | $8.43 | |
| ETH | <0.01% | $8.52 | 0.987 | $8.41 | |
| ETH | <0.01% | $1.06 | 7.8921 | $8.38 | |
| ETH | <0.01% | $0.077357 | 107.909 | $8.35 | |
| ETH | <0.01% | <$0.000001 | 816,542,859.0527 | $8.31 | |
| ETH | <0.01% | $1,529.97 | 0.00542895 | $8.31 | |
| ETH | <0.01% | $0.116941 | 69.8579 | $8.17 | |
| ETH | <0.01% | $0.211516 | 38.3683 | $8.12 | |
| ETH | <0.01% | $0.479239 | 16.9329 | $8.11 | |
| ETH | <0.01% | $0.083487 | 96.2327 | $8.03 | |
| ETH | <0.01% | $0.052605 | 152.1172 | $8 | |
| ETH | <0.01% | $103.18 | 0.077 | $7.95 | |
| ETH | <0.01% | $0.013494 | 587.5713 | $7.93 | |
| ETH | <0.01% | $0.000001 | 8,825,346.0607 | $7.91 | |
| ETH | <0.01% | $1.58 | 4.9785 | $7.87 | |
| ETH | <0.01% | $0.066327 | 118.3501 | $7.85 | |
| ETH | <0.01% | $0.163107 | 47.7693 | $7.79 | |
| ETH | <0.01% | $0.13757 | 56.0221 | $7.71 | |
| ETH | <0.01% | $0.999669 | 7.6039 | $7.6 | |
| ETH | <0.01% | $7.89 | 0.9596 | $7.57 | |
| ETH | <0.01% | $0.03964 | 190.7461 | $7.56 | |
| ETH | <0.01% | $0.120026 | 62.5585 | $7.51 | |
| ETH | <0.01% | $0.109862 | 66.7495 | $7.33 | |
| ETH | <0.01% | $0.004043 | 1,812.2544 | $7.33 | |
| ETH | <0.01% | $1.18 | 6.1303 | $7.23 | |
| ETH | <0.01% | $0.005447 | 1,325.5052 | $7.22 | |
| ETH | <0.01% | $6.55 | 1.1021 | $7.22 | |
| ETH | <0.01% | $0.00001 | 738,837.3971 | $7.17 | |
| ETH | <0.01% | $0.00709 | 997.8973 | $7.08 | |
| ETH | <0.01% | <$0.000001 | 85,097,355.4529 | $7.01 | |
| ETH | <0.01% | $0.045656 | 152.7576 | $6.97 | |
| ETH | <0.01% | $0.00367 | 1,890.2749 | $6.94 | |
| ETH | <0.01% | $0.000182 | 37,025.8028 | $6.74 | |
| ETH | <0.01% | $1.53 | 4.3854 | $6.71 | |
| ETH | <0.01% | $1.22 | 5.495 | $6.7 | |
| ETH | <0.01% | $0.167302 | 39.9011 | $6.68 | |
| ETH | <0.01% | $0.125962 | 51.3231 | $6.46 | |
| ETH | <0.01% | $1.62 | 3.9898 | $6.46 | |
| ETH | <0.01% | $0.016975 | 376.856 | $6.4 | |
| ETH | <0.01% | $0.005292 | 1,200.1076 | $6.35 | |
| ETH | <0.01% | $0.142883 | 44.1618 | $6.31 | |
| ETH | <0.01% | $0.07001 | 89.3801 | $6.26 | |
| ETH | <0.01% | $0.071808 | 86.8308 | $6.24 | |
| ETH | <0.01% | $0.000747 | 8,330.8703 | $6.22 | |
| ETH | <0.01% | $0.236659 | 26.2926 | $6.22 | |
| ETH | <0.01% | $621.73 | 0.00997964 | $6.2 | |
| ETH | <0.01% | $0.000004 | 1,591,631.5475 | $6.18 | |
| ETH | <0.01% | <$0.000001 | 36,465,992.2039 | $6.17 | |
| ETH | <0.01% | $0.079714 | 77.2525 | $6.16 | |
| ETH | <0.01% | $0.005021 | 1,220.6656 | $6.13 | |
| ETH | <0.01% | $0.095102 | 64.2564 | $6.11 | |
| ETH | <0.01% | $56.93 | 0.1072 | $6.11 | |
| ETH | <0.01% | $0.073917 | 81.777 | $6.04 | |
| ETH | <0.01% | $0.000507 | 11,917.7087 | $6.04 | |
| ETH | <0.01% | $0.040592 | 147.2959 | $5.98 | |
| ETH | <0.01% | $0.024163 | 244.3287 | $5.9 | |
| ETH | <0.01% | $759.71 | 0.00769599 | $5.85 | |
| ETH | <0.01% | $13.97 | 0.4171 | $5.83 | |
| ETH | <0.01% | $0.001581 | 3,594.1328 | $5.68 | |
| ETH | <0.01% | $9.61 | 0.5892 | $5.66 | |
| ETH | <0.01% | $0.227654 | 24.0705 | $5.48 | |
| ETH | <0.01% | <$0.000001 | 750,487,366.2558 | $5.42 | |
| ETH | <0.01% | $0.475916 | 11.289 | $5.37 | |
| ETH | <0.01% | $0.002121 | 2,516.7482 | $5.34 | |
| ETH | <0.01% | $3.6 | 1.4806 | $5.33 | |
| ETH | <0.01% | $0.001471 | 3,617.9994 | $5.32 | |
| ETH | <0.01% | $0.013183 | 402.1601 | $5.3 | |
| ETH | <0.01% | $0.163486 | 32.1843 | $5.26 | |
| ETH | <0.01% | $0.000017 | 313,218.5075 | $5.25 | |
| ETH | <0.01% | $0.018798 | 273.1001 | $5.13 | |
| ETH | <0.01% | $0.029056 | 175.3579 | $5.1 | |
| ETH | <0.01% | <$0.000001 | 10,592,429.3441 | $5.08 | |
| ETH | <0.01% | $0.010204 | 498.0661 | $5.08 | |
| ETH | <0.01% | $0.111566 | 44.6613 | $4.98 | |
| ETH | <0.01% | $0.044245 | 112.3154 | $4.97 | |
| ETH | <0.01% | $0.341202 | 14.485 | $4.94 | |
| ETH | <0.01% | $0.000006 | 839,376.9907 | $4.92 | |
| ETH | <0.01% | $2,323.98 | 0.00210721 | $4.9 | |
| ETH | <0.01% | $0.000006 | 796,065.2646 | $4.89 | |
| ETH | <0.01% | $0.001843 | 2,621.5495 | $4.83 | |
| ETH | <0.01% | $0.01951 | 245.3142 | $4.79 | |
| ETH | <0.01% | $1.01 | 4.7041 | $4.77 | |
| ETH | <0.01% | $0.000439 | 10,766.9373 | $4.73 | |
| ETH | <0.01% | $0.306168 | 15.4142 | $4.72 | |
| ETH | <0.01% | $0.985671 | 4.7866 | $4.72 | |
| ETH | <0.01% | $1.13 | 4.1485 | $4.69 | |
| ETH | <0.01% | $0.022407 | 208.5305 | $4.67 | |
| ETH | <0.01% | $4.4 | 1.0559 | $4.65 | |
| ETH | <0.01% | $0.000017 | 269,363.8609 | $4.62 | |
| ETH | <0.01% | $0.027264 | 167.6406 | $4.57 | |
| ETH | <0.01% | $2.3 | 1.9721 | $4.54 | |
| ETH | <0.01% | $0.504816 | 8.7415 | $4.41 | |
| ETH | <0.01% | $2,407.24 | 0.00181269 | $4.36 | |
| ETH | <0.01% | $0.061894 | 69.4931 | $4.3 | |
| ETH | <0.01% | $0.014195 | 302.356 | $4.29 | |
| ETH | <0.01% | $0.027085 | 157.9296 | $4.28 | |
| ETH | <0.01% | $1.03 | 4.0541 | $4.19 | |
| ETH | <0.01% | $0.000087 | 47,932.4008 | $4.16 | |
| ETH | <0.01% | $0.000883 | 4,700.3199 | $4.15 | |
| ETH | <0.01% | $2,265.17 | 0.00181939 | $4.12 | |
| ETH | <0.01% | $0.000002 | 2,741,426.2194 | $4.11 | |
| ETH | <0.01% | $0.986054 | 4.1399 | $4.08 | |
| ETH | <0.01% | $0.019943 | 203.8588 | $4.07 | |
| ETH | <0.01% | $0.002939 | 1,377.0583 | $4.05 | |
| ETH | <0.01% | $0.00 | 0.026 | $0.00 | |
| ETH | <0.01% | $0.009227 | 437.2058 | $4.03 | |
| ETH | <0.01% | $0.106703 | 37.8011 | $4.03 | |
| ETH | <0.01% | $0.009962 | 403.4307 | $4.02 | |
| ETH | <0.01% | $2.33 | 1.7185 | $4 | |
| ETH | <0.01% | $0.008576 | 464.2066 | $3.98 | |
| ETH | <0.01% | $0.152779 | 25.992 | $3.97 | |
| ETH | <0.01% | $0.038409 | 100.4971 | $3.86 | |
| ETH | <0.01% | $0.000076 | 50,479.8348 | $3.85 | |
| ETH | <0.01% | $0.038796 | 98.4445 | $3.82 | |
| ETH | <0.01% | $0.007623 | 497.1292 | $3.79 | |
| ETH | <0.01% | $0.000062 | 60,784.5309 | $3.78 | |
| ETH | <0.01% | $0.021161 | 178.6925 | $3.78 | |
| ETH | <0.01% | $0.000004 | 980,782.4849 | $3.77 | |
| ETH | <0.01% | $0.000178 | 21,125.75 | $3.75 | |
| ETH | <0.01% | $0.145122 | 25.7998 | $3.74 | |
| ETH | <0.01% | $0.048816 | 75.9755 | $3.71 | |
| ETH | <0.01% | $0.027377 | 135.1446 | $3.7 | |
| ETH | <0.01% | $0.000278 | 13,038.3177 | $3.62 | |
| ETH | <0.01% | $0.002253 | 1,582.4511 | $3.57 | |
| ETH | <0.01% | $0.005989 | 594.4718 | $3.56 | |
| ETH | <0.01% | $0.108219 | 32.866 | $3.56 | |
| ETH | <0.01% | $1.16 | 3.0481 | $3.54 | |
| ETH | <0.01% | $0.007014 | 504.0057 | $3.54 | |
| ETH | <0.01% | $0.988917 | 3.5377 | $3.5 | |
| ETH | <0.01% | <$0.000001 | 34,040,213,867.8113 | $3.49 | |
| ETH | <0.01% | $0.999908 | 3.4678 | $3.47 | |
| ETH | <0.01% | $0.194203 | 17.8307 | $3.46 | |
| ETH | <0.01% | $0.009243 | 372.9653 | $3.45 | |
| ETH | <0.01% | $3.05 | 1.1279 | $3.44 | |
| ETH | <0.01% | $0.027665 | 123.6917 | $3.42 | |
| ETH | <0.01% | $0.020087 | 170.2756 | $3.42 | |
| ETH | <0.01% | $0.000051 | 66,266.5702 | $3.4 | |
| ETH | <0.01% | $0.12446 | 27.2923 | $3.4 | |
| ETH | <0.01% | <$0.000001 | 1,909,342,256.9495 | $3.39 | |
| ETH | <0.01% | $123.93 | 0.0272 | $3.37 | |
| ETH | <0.01% | $0.016054 | 207.8648 | $3.34 | |
| ETH | <0.01% | $0.090728 | 36.6922 | $3.33 | |
| ETH | <0.01% | $0.203975 | 16.2626 | $3.32 | |
| ETH | <0.01% | $15.83 | 0.2082 | $3.3 | |
| ETH | <0.01% | $0.000478 | 6,896.2788 | $3.29 | |
| ETH | <0.01% | $0.095692 | 34.3627 | $3.29 | |
| ETH | <0.01% | $2,453.81 | 0.00133726 | $3.28 | |
| ETH | <0.01% | $0.000035 | 92,506.797 | $3.25 | |
| ETH | <0.01% | $1 | 3.2172 | $3.23 | |
| ETH | <0.01% | $1.8 | 1.779 | $3.21 | |
| ETH | <0.01% | $0.999032 | 3.1505 | $3.15 | |
| ETH | <0.01% | $0.558266 | 5.6321 | $3.14 | |
| ETH | <0.01% | $0.103111 | 30.3997 | $3.13 | |
| ETH | <0.01% | <$0.000001 | 3,281,686,334.8625 | $3.1 | |
| ETH | <0.01% | $78.38 | 0.0395 | $3.1 | |
| ETH | <0.01% | $17.95 | 0.1715 | $3.08 | |
| ETH | <0.01% | $0.079003 | 38.936 | $3.08 | |
| ETH | <0.01% | $0.185504 | 16.3941 | $3.04 | |
| ETH | <0.01% | $0.004472 | 675.3935 | $3.02 | |
| ETH | <0.01% | $0.000081 | 37,100.8501 | $3 | |
| ETH | <0.01% | $0.10901 | 27.4217 | $2.99 | |
| ETH | <0.01% | $0.000898 | 3,320.0201 | $2.98 | |
| ETH | <0.01% | $0.007611 | 391.1205 | $2.98 | |
| ETH | <0.01% | $0.00003 | 100,192.7848 | $2.97 | |
| ETH | <0.01% | $0.024135 | 122.2383 | $2.95 | |
| ETH | <0.01% | $0.012239 | 239.7794 | $2.93 | |
| ETH | <0.01% | <$0.000001 | 52,485,883.2153 | $2.93 | |
| ETH | <0.01% | $0.029069 | 100.7696 | $2.93 | |
| ETH | <0.01% | <$0.000001 | 396,653,612.9908 | $2.87 | |
| ETH | <0.01% | $0.010315 | 277.2816 | $2.86 | |
| ETH | <0.01% | $0.082683 | 34.5895 | $2.86 | |
| ETH | <0.01% | $0.011035 | 254.3598 | $2.81 | |
| ETH | <0.01% | $0.000108 | 25,915.3775 | $2.8 | |
| ETH | <0.01% | <$0.000001 | 107,908,568.3272 | $2.8 | |
| ETH | <0.01% | $0.003828 | 724.023 | $2.77 | |
| ETH | <0.01% | $0.915672 | 3.0184 | $2.76 | |
| ETH | <0.01% | $0.668327 | 4.1015 | $2.74 | |
| ETH | <0.01% | $1.34 | 2.0333 | $2.72 | |
| ETH | <0.01% | $2.32 | 1.1601 | $2.69 | |
| ETH | <0.01% | $0.003751 | 714.9742 | $2.68 | |
| ETH | <0.01% | $0.092491 | 28.9847 | $2.68 | |
| ETH | <0.01% | $0.000008 | 350,691.3277 | $2.67 | |
| ETH | <0.01% | $76,077 | 0.0000348 | $2.65 | |
| ETH | <0.01% | $0.004764 | 555.3004 | $2.65 | |
| ETH | <0.01% | $0.000247 | 10,586.5824 | $2.62 | |
| ETH | <0.01% | $1.18 | 2.2143 | $2.61 | |
| ETH | <0.01% | $0.032814 | 79.6034 | $2.61 | |
| ETH | <0.01% | $0.000952 | 2,706.7579 | $2.58 | |
| ETH | <0.01% | $0.070666 | 36.2155 | $2.56 | |
| ETH | <0.01% | $0.000474 | 5,397.9564 | $2.56 | |
| ETH | <0.01% | <$0.000001 | 8,829,289,342.7561 | $2.53 | |
| ETH | <0.01% | <$0.000001 | 88,172,289.4717 | $2.51 | |
| ETH | <0.01% | $0.286294 | 8.7708 | $2.51 | |
| ETH | <0.01% | $0.44034 | 5.6893 | $2.51 | |
| ETH | <0.01% | $0.985151 | 2.5267 | $2.49 | |
| ETH | <0.01% | $0.021872 | 111.7463 | $2.44 | |
| ETH | <0.01% | $0.999574 | 2.4419 | $2.44 | |
| ETH | <0.01% | $0.003861 | 630.5327 | $2.43 | |
| ETH | <0.01% | $0.005834 | 417.1727 | $2.43 | |
| ETH | <0.01% | $0.000021 | 116,434.6246 | $2.43 | |
| ETH | <0.01% | <$0.000001 | 543,638,565.5037 | $2.43 | |
| ETH | <0.01% | $0.665569 | 3.649 | $2.43 | |
| ETH | <0.01% | $0.003104 | 777.0816 | $2.41 | |
| ETH | <0.01% | $0.584453 | 4.0473 | $2.37 | |
| ETH | <0.01% | $0.058283 | 40.3414 | $2.35 | |
| ETH | <0.01% | $0.00 | 0.00033402 | $0.00 | |
| ETH | <0.01% | $0.288971 | 8 | $2.31 | |
| ETH | <0.01% | $0.006285 | 367.5982 | $2.31 | |
| ETH | <0.01% | $0.21158 | 10.8854 | $2.3 | |
| ETH | <0.01% | $0.272808 | 8.4187 | $2.3 | |
| ETH | <0.01% | $0.000667 | 3,424.0722 | $2.28 | |
| ETH | <0.01% | $0.003272 | 687.3557 | $2.25 | |
| ETH | <0.01% | $0.00022 | 10,219.3493 | $2.25 | |
| ETH | <0.01% | $0.003983 | 562.2806 | $2.24 | |
| ETH | <0.01% | $0.946432 | 2.349 | $2.22 | |
| ETH | <0.01% | $0.089266 | 24.7557 | $2.21 | |
| ETH | <0.01% | $0.001694 | 1,303.8786 | $2.21 | |
| ETH | <0.01% | $0.000044 | 50,207.2884 | $2.21 | |
| ETH | <0.01% | $2,453.13 | 0.00089802 | $2.2 | |
| ETH | <0.01% | $0.000283 | 7,760.1162 | $2.2 | |
| ETH | <0.01% | $0.001394 | 1,571.5211 | $2.19 | |
| ETH | <0.01% | $0.001763 | 1,239.8989 | $2.19 | |
| ETH | <0.01% | $0.000385 | 5,667.1115 | $2.18 | |
| ETH | <0.01% | <$0.000001 | 216,724,765.5405 | $2.18 | |
| ETH | <0.01% | $75,933 | 0.00002857 | $2.17 | |
| ETH | <0.01% | $0.004402 | 492.5668 | $2.17 | |
| ETH | <0.01% | $0.000397 | 5,438.3776 | $2.16 | |
| ETH | <0.01% | $0.206766 | 10.3997 | $2.15 | |
| ETH | <0.01% | $0.003803 | 565.3185 | $2.15 | |
| ETH | <0.01% | $0.000579 | 3,700.3397 | $2.14 | |
| ETH | <0.01% | $0.000122 | 17,475.3949 | $2.13 | |
| ETH | <0.01% | $0.083661 | 25.3726 | $2.12 | |
| ETH | <0.01% | $0.047717 | 44.2148 | $2.11 | |
| ETH | <0.01% | $0.004389 | 478.2274 | $2.1 | |
| ETH | <0.01% | $0.020185 | 103.5188 | $2.09 | |
| ETH | <0.01% | $1.31 | 1.5918 | $2.09 | |
| ETH | <0.01% | $0.085251 | 24.3071 | $2.07 | |
| ETH | <0.01% | <$0.000001 | 2,258,444,768.5326 | $2.06 | |
| ETH | <0.01% | $187.98 | 0.011 | $2.06 | |
| ETH | <0.01% | $0.000162 | 12,648.569 | $2.05 | |
| ETH | <0.01% | $2,027.17 | 0.00100763 | $2.04 | |
| ETH | <0.01% | $0.102066 | 20.0086 | $2.04 | |
| ETH | <0.01% | $0.000821 | 2,476.5525 | $2.03 | |
| ETH | <0.01% | $0.011854 | 170.0054 | $2.02 | |
| ETH | <0.01% | $0.00196 | 1,021.8548 | $2 | |
| ETH | <0.01% | $0.025108 | 79.1499 | $1.99 | |
| ETH | <0.01% | $0.000178 | 11,122.9129 | $1.98 | |
| ETH | <0.01% | $0.00 | 131.9154 | $0.00 | |
| ETH | <0.01% | $0.001331 | 1,472.4386 | $1.96 | |
| ETH | <0.01% | $0.001041 | 1,873.9887 | $1.95 | |
| ETH | <0.01% | $1.18 | 1.6379 | $1.93 | |
| ETH | <0.01% | $1.18 | 1.6379 | $1.93 | |
| ETH | <0.01% | $0.022047 | 87.3465 | $1.93 | |
| ETH | <0.01% | $0.000385 | 4,986.2956 | $1.92 | |
| ETH | <0.01% | $57,660 | 0.00003261 | $1.88 | |
| ETH | <0.01% | $0.001275 | 1,465.2557 | $1.87 | |
| ETH | <0.01% | $0.005744 | 322.8678 | $1.85 | |
| ETH | <0.01% | $0.006659 | 277.7517 | $1.85 | |
| ETH | <0.01% | $0.108962 | 16.8902 | $1.84 | |
| ETH | <0.01% | $0.461786 | 3.9831 | $1.84 | |
| ETH | <0.01% | <$0.000001 | 51,304,461.9261 | $1.82 | |
| ETH | <0.01% | $0.050188 | 35.9009 | $1.8 | |
| ETH | <0.01% | $0.024997 | 71.9094 | $1.8 | |
| ETH | <0.01% | $0.016317 | 110.0045 | $1.79 | |
| ETH | <0.01% | $0.000169 | 10,606.2962 | $1.79 | |
| ETH | <0.01% | $0.000002 | 1,054,596.3294 | $1.79 | |
| ETH | <0.01% | $0.000001 | 1,427,579.1698 | $1.78 | |
| ETH | <0.01% | $5.78 | 0.3046 | $1.76 | |
| ETH | <0.01% | $17.58 | 0.0989 | $1.74 | |
| ETH | <0.01% | $76,043 | 0.00002274 | $1.73 | |
| ETH | <0.01% | $0.007058 | 241.6952 | $1.71 | |
| ETH | <0.01% | $0.000687 | 2,436.6995 | $1.67 | |
| ETH | <0.01% | $0.015669 | 106.7526 | $1.67 | |
| ETH | <0.01% | $1.26 | 1.32 | $1.66 | |
| ETH | <0.01% | $0.145543 | 11.3591 | $1.65 | |
| ETH | <0.01% | $0.00035 | 4,718.0383 | $1.65 | |
| ETH | <0.01% | $0.000131 | 12,550.6256 | $1.65 | |
| ETH | <0.01% | $0.003858 | 426.2172 | $1.64 | |
| ETH | <0.01% | $0.020313 | 80.521 | $1.64 | |
| ETH | <0.01% | $0.000001 | 1,887,964.0672 | $1.63 | |
| ETH | <0.01% | $2,031.44 | 0.00080027 | $1.63 | |
| ETH | <0.01% | $2.18 | 0.7459 | $1.62 | |
| ETH | <0.01% | $0.066926 | 24.0989 | $1.61 | |
| ETH | <0.01% | $0.001453 | 1,101.0178 | $1.6 | |
| ETH | <0.01% | $0.557444 | 2.8483 | $1.59 | |
| ETH | <0.01% | $0.000465 | 3,404.362 | $1.58 | |
| ETH | <0.01% | $0.25733 | 6.1448 | $1.58 | |
| ETH | <0.01% | $0.713608 | 2.2097 | $1.58 | |
| ETH | <0.01% | $0.003327 | 472.6041 | $1.57 | |
| ETH | <0.01% | $0.007512 | 208.5389 | $1.57 | |
| ETH | <0.01% | <$0.000001 | 83,801,141.7134 | $1.55 | |
| ETH | <0.01% | $0.000622 | 2,483.5095 | $1.55 | |
| ETH | <0.01% | $0.000159 | 9,640.1763 | $1.53 | |
| ETH | <0.01% | <$0.000001 | 10,148,371.2822 | $1.53 | |
| ETH | <0.01% | $0.007563 | 201.667 | $1.53 | |
| ETH | <0.01% | $0.000101 | 14,998.793 | $1.51 | |
| ETH | <0.01% | <$0.000001 | 1,103,947,774.1253 | $1.51 | |
| ETH | <0.01% | $1,961.77 | 0.00076446 | $1.5 | |
| ETH | <0.01% | $0.004276 | 350.666 | $1.5 | |
| ETH | <0.01% | $0.000827 | 1,792.1412 | $1.48 | |
| ETH | <0.01% | $0.002406 | 615.2354 | $1.48 | |
| ETH | <0.01% | <$0.000001 | 16,301,345.4184 | $1.47 | |
| ETH | <0.01% | <$0.000001 | 96,425,274.4677 | $1.46 | |
| ETH | <0.01% | $0.00192 | 761.0433 | $1.46 | |
| ETH | <0.01% | $0.017292 | 84.4693 | $1.46 | |
| ETH | <0.01% | $0.496366 | 2.93 | $1.45 | |
| ETH | <0.01% | $0.00521 | 278.956 | $1.45 | |
| ETH | <0.01% | $0.000492 | 2,943.3262 | $1.45 | |
| ETH | <0.01% | $0.004832 | 297.2426 | $1.44 | |
| ETH | <0.01% | $0.000683 | 2,099.5504 | $1.43 | |
| ETH | <0.01% | $0.009324 | 153.7674 | $1.43 | |
| ETH | <0.01% | $0.222216 | 6.4171 | $1.43 | |
| ETH | <0.01% | $0.002547 | 559.6262 | $1.43 | |
| ETH | <0.01% | $0.088093 | 16.1692 | $1.42 | |
| ETH | <0.01% | $0.018188 | 78.2781 | $1.42 | |
| ETH | <0.01% | $0.013104 | 108.4907 | $1.42 | |
| ETH | <0.01% | <$0.000001 | 735,621,648.4346 | $1.42 | |
| ETH | <0.01% | $1.52 | 0.93 | $1.41 | |
| ETH | <0.01% | $0.006888 | 205.0805 | $1.41 | |
| ETH | <0.01% | $2.45 | 0.574 | $1.41 | |
| ETH | <0.01% | $76,340 | 0.00001839 | $1.4 | |
| ETH | <0.01% | $0.001718 | 814.1122 | $1.4 | |
| ETH | <0.01% | $0.000105 | 13,215.5563 | $1.38 | |
| ETH | <0.01% | $0.003239 | 426.1935 | $1.38 | |
| ETH | <0.01% | $0.007959 | 173.4471 | $1.38 | |
| ETH | <0.01% | $0.002612 | 527.9798 | $1.38 | |
| ETH | <0.01% | $0.019587 | 69.7813 | $1.37 | |
| ETH | <0.01% | $0.104264 | 12.8539 | $1.34 | |
| ETH | <0.01% | $0.017394 | 76.0883 | $1.32 | |
| ETH | <0.01% | $0.021334 | 61.9439 | $1.32 | |
| ETH | <0.01% | $0.004273 | 303.8546 | $1.3 | |
| ETH | <0.01% | $0.00721 | 179.4428 | $1.29 | |
| ETH | <0.01% | $1.9 | 0.6763 | $1.29 | |
| ETH | <0.01% | $0.99908 | 1.2814 | $1.28 | |
| ETH | <0.01% | $0.00 | 0.00002213 | $0.00 | |
| ETH | <0.01% | $0.000138 | 9,267.8885 | $1.27 | |
| ETH | <0.01% | $0.341529 | 3.7148 | $1.27 | |
| ETH | <0.01% | $0.01111 | 114.1608 | $1.27 | |
| ETH | <0.01% | $75,557 | 0.00001675 | $1.27 | |
| ETH | <0.01% | $0.010902 | 115.0637 | $1.25 | |
| ETH | <0.01% | $0.127105 | 9.6849 | $1.23 | |
| ETH | <0.01% | $0.091147 | 13.4964 | $1.23 | |
| ETH | <0.01% | $0.153961 | 7.9356 | $1.22 | |
| ETH | <0.01% | $0.006874 | 173.82 | $1.19 | |
| ETH | <0.01% | $0.000039 | 30,519.185 | $1.19 | |
| ETH | <0.01% | $0.005292 | 222.2056 | $1.18 | |
| ETH | <0.01% | $0.057882 | 20.0364 | $1.16 | |
| ETH | <0.01% | $0.000002 | 627,275.1643 | $1.16 | |
| ETH | <0.01% | $0.000446 | 2,579.2313 | $1.15 | |
| ETH | <0.01% | <$0.000001 | 5,321,170.5984 | $1.15 | |
| ETH | <0.01% | $0.062141 | 18.3445 | $1.14 | |
| ETH | <0.01% | $0.248742 | 4.5805 | $1.14 | |
| ETH | <0.01% | $0.020725 | 54.8849 | $1.14 | |
| ETH | <0.01% | $2,297.35 | 0.00049436 | $1.14 | |
| ETH | <0.01% | $0.621907 | 1.8227 | $1.13 | |
| ETH | <0.01% | $0.137174 | 8.0918 | $1.11 | |
| ETH | <0.01% | $0.000123 | 8,990.4023 | $1.11 | |
| ETH | <0.01% | $0.00103 | 1,071.0484 | $1.1 | |
| ETH | <0.01% | $0.002936 | 373.9598 | $1.1 | |
| ETH | <0.01% | $0.008095 | 135.2304 | $1.09 | |
| ETH | <0.01% | $0.086355 | 12.6134 | $1.09 | |
| ETH | <0.01% | $1.01 | 1.0752 | $1.08 | |
| ETH | <0.01% | $0.000606 | 1,777.4512 | $1.08 | |
| ETH | <0.01% | $0.243458 | 4.3771 | $1.07 | |
| ETH | <0.01% | $0.27477 | 3.8052 | $1.05 | |
| ETH | <0.01% | $0.007125 | 145.9224 | $1.04 | |
| ETH | <0.01% | $0.00003 | 34,596.8739 | $1.04 | |
| ETH | <0.01% | $0.04258 | 24.3733 | $1.04 | |
| ETH | <0.01% | $0.016512 | 62.5162 | $1.03 | |
| ETH | <0.01% | $0.000016 | 63,648.9998 | $1.03 | |
| ETH | <0.01% | $0.000136 | 7,506.8739 | $1.02 | |
| ETH | <0.01% | <$0.000001 | 628,892,581.1767 | $1.02 | |
| ETH | <0.01% | $67,854.69 | 0.000015 | $1.02 | |
| ETH | <0.01% | $0.00417 | 243.0841 | $1.01 | |
| ETH | <0.01% | $0.003469 | 290.801 | $1.01 | |
| ETH | <0.01% | $0.107926 | 9.3253 | $1.01 | |
| ETH | <0.01% | $0.005208 | 192.7933 | $1 | |
| ETH | <0.01% | $4.88 | 0.2054 | $1 | |
| ETH | <0.01% | $15.89 | 0.0625 | $0.9925 | |
| ETH | <0.01% | $0.000001 | 1,278,621.5118 | $0.9814 | |
| ETH | <0.01% | $0.010103 | 96.6689 | $0.9766 | |
| ETH | <0.01% | $0.000821 | 1,183.881 | $0.9723 | |
| ETH | <0.01% | $0.00252 | 385.4674 | $0.9712 | |
| ETH | <0.01% | $0.665498 | 1.4469 | $0.9628 | |
| ETH | <0.01% | $0.001864 | 515.1178 | $0.9602 | |
| ETH | <0.01% | $0.000298 | 3,196.4979 | $0.9538 | |
| ETH | <0.01% | $0.005589 | 170.5398 | $0.9531 | |
| ETH | <0.01% | $0.152103 | 6.2272 | $0.9471 | |
| ETH | <0.01% | $0.01278 | 74.0839 | $0.9467 | |
| ETH | <0.01% | $0.018445 | 51.1157 | $0.9428 | |
| ETH | <0.01% | $0.000042 | 22,218.8002 | $0.9405 | |
| ETH | <0.01% | $0.051653 | 18.0383 | $0.9317 | |
| ETH | <0.01% | $0.999701 | 0.9025 | $0.9022 | |
| ETH | <0.01% | $0.010757 | 83.6398 | $0.8997 | |
| ETH | <0.01% | $0.000089 | 10,099.5678 | $0.8993 | |
| ETH | <0.01% | $0.000799 | 1,118.4769 | $0.894 | |
| ETH | <0.01% | $0.001402 | 632.9103 | $0.8874 | |
| ETH | <0.01% | $0.003306 | 265.9428 | $0.8791 | |
| ETH | <0.01% | $0.059783 | 14.6768 | $0.8774 | |
| ETH | <0.01% | $0.037728 | 23.119 | $0.8722 | |
| ETH | <0.01% | $0.000326 | 2,677.5132 | $0.872 | |
| ETH | <0.01% | $0.000097 | 9,019.3059 | $0.8716 | |
| ETH | <0.01% | $0.324172 | 2.6869 | $0.871 | |
| ETH | <0.01% | $0.000076 | 11,329.7447 | $0.8658 | |
| ETH | <0.01% | $0.002509 | 344.5928 | $0.8645 | |
| ETH | <0.01% | $0.005122 | 167.1294 | $0.8559 | |
| ETH | <0.01% | $0.026634 | 31.8145 | $0.8473 | |
| ETH | <0.01% | $0.00024 | 3,523.3431 | $0.8461 | |
| ETH | <0.01% | $0.17494 | 4.8263 | $0.8443 | |
| ETH | <0.01% | $45.54 | 0.0185 | $0.8421 | |
| ETH | <0.01% | $0.064969 | 12.9116 | $0.8388 | |
| ETH | <0.01% | $0.035318 | 23.7002 | $0.837 | |
| ETH | <0.01% | $0.009316 | 89.7019 | $0.8357 | |
| ETH | <0.01% | $2,086.2 | 0.00039832 | $0.8309 | |
| ETH | <0.01% | $0.908961 | 0.9008 | $0.8187 | |
| ETH | <0.01% | $0.002229 | 363.6077 | $0.8104 | |
| ETH | <0.01% | $0.001961 | 404.293 | $0.7928 | |
| ETH | <0.01% | $2,288.82 | 0.00034033 | $0.7789 | |
| ETH | <0.01% | $0.341201 | 2.2756 | $0.7764 | |
| ETH | <0.01% | $0.000184 | 4,175.5332 | $0.7694 | |
| ETH | <0.01% | <$0.000001 | 2,262,522.4994 | $0.7689 | |
| ETH | <0.01% | <$0.000001 | 14,979,190.8839 | $0.7667 | |
| ETH | <0.01% | $0.07598 | 10.082 | $0.766 | |
| ETH | <0.01% | $0.003391 | 225.5109 | $0.7646 | |
| ETH | <0.01% | $0.001334 | 572.6653 | $0.7641 | |
| ETH | <0.01% | $0.011322 | 67.4633 | $0.7637 | |
| ETH | <0.01% | $0.0345 | 22.1036 | $0.7625 | |
| ETH | <0.01% | $0.076071 | 10.0219 | $0.7623 | |
| ETH | <0.01% | $1 | 0.757 | $0.7569 | |
| ETH | <0.01% | $0.0513 | 14.7479 | $0.7565 | |
| ETH | <0.01% | $0.03388 | 22.2796 | $0.7548 | |
| ETH | <0.01% | $0.00172 | 433.4443 | $0.7457 | |
| ETH | <0.01% | $0.000008 | 93,633.0424 | $0.7434 | |
| ETH | <0.01% | $2,639.96 | 0.00028002 | $0.7392 | |
| ETH | <0.01% | $0.005047 | 145.2818 | $0.7333 | |
| ETH | <0.01% | $0.000521 | 1,401.7781 | $0.7305 | |
| ETH | <0.01% | $0.147029 | 4.9371 | $0.7258 | |
| ETH | <0.01% | $0.002298 | 310.7259 | $0.714 | |
| ETH | <0.01% | $2.33 | 0.3048 | $0.7101 | |
| ETH | <0.01% | $0.011789 | 58.9402 | $0.6948 | |
| ETH | <0.01% | $2,206.92 | 0.00031482 | $0.6947 | |
| ETH | <0.01% | $0.019425 | 35.6318 | $0.6921 | |
| ETH | <0.01% | $0.007034 | 97.5376 | $0.686 | |
| ETH | <0.01% | $0.012738 | 53.5047 | $0.6815 | |
| ETH | <0.01% | $0.005784 | 117.4284 | $0.6791 | |
| ETH | <0.01% | $0.567189 | 1.1929 | $0.6766 | |
| ETH | <0.01% | $0.002579 | 262.1237 | $0.6761 | |
| ETH | <0.01% | $0.000001 | 510,628.7741 | $0.6703 | |
| ETH | <0.01% | <$0.000001 | 698,250,856.9288 | $0.6688 | |
| ETH | <0.01% | $8.82 | 0.0751 | $0.6623 | |
| ETH | <0.01% | $3.75 | 0.1759 | $0.6597 | |
| ETH | <0.01% | $0.000297 | 2,207.4523 | $0.6551 | |
| ETH | <0.01% | <$0.000001 | 519,691,192.6843 | $0.6503 | |
| ETH | <0.01% | $0.023805 | 27.2351 | $0.6483 | |
| ETH | <0.01% | $0.984814 | 0.6502 | $0.6403 | |
| ETH | <0.01% | $0.000384 | 1,661.5353 | $0.6373 | |
| ETH | <0.01% | $0.010246 | 61.7049 | $0.6322 | |
| ETH | <0.01% | $0.600724 | 1.0479 | $0.6294 | |
| ETH | <0.01% | $1.03 | 0.6077 | $0.6228 | |
| ETH | <0.01% | $0.000007 | 94,040.5951 | $0.6206 | |
| ETH | <0.01% | $0.00 | 24.955 | $0.00 | |
| ETH | <0.01% | $0.000071 | 8,718.7428 | $0.6191 | |
| ETH | <0.01% | $0.13885 | 4.4585 | $0.619 | |
| ETH | <0.01% | $0.023068 | 26.8199 | $0.6186 | |
| ETH | <0.01% | $0.001078 | 572.6136 | $0.617 | |
| ETH | <0.01% | <$0.000001 | 11,917,555.9583 | $0.6155 | |
| ETH | <0.01% | $0.014696 | 41.8416 | $0.6148 | |
| ETH | <0.01% | $225.72 | 0.0027219 | $0.6143 | |
| ETH | <0.01% | $0.136875 | 4.4148 | $0.6042 | |
| ETH | <0.01% | <$0.000001 | 2,264,785.9077 | $0.6031 | |
| ETH | <0.01% | $3.56 | 0.1692 | $0.6023 | |
| ETH | <0.01% | $0.276014 | 2.179 | $0.6014 | |
| ETH | <0.01% | $0.002371 | 250.4447 | $0.5937 | |
| ETH | <0.01% | $0.017796 | 33.1139 | $0.5892 | |
| ETH | <0.01% | $0.001454 | 402.7606 | $0.5856 | |
| ETH | <0.01% | $0.003692 | 157.706 | $0.5822 | |
| ETH | <0.01% | $0.000171 | 3,406.9705 | $0.5815 | |
| ETH | <0.01% | $0.002212 | 262.0382 | $0.5796 | |
| ETH | <0.01% | $0.324172 | 1.7836 | $0.5781 | |
| ETH | <0.01% | $2.44 | 0.2369 | $0.578 | |
| ETH | <0.01% | $0.000372 | 1,549.1841 | $0.5762 | |
| ETH | <0.01% | $0.011819 | 48.7237 | $0.5758 | |
| ETH | <0.01% | $0.001029 | 559.0974 | $0.5753 | |
| ETH | <0.01% | $0.003722 | 153.8504 | $0.5726 | |
| ETH | <0.01% | $0.226135 | 2.5191 | $0.5696 | |
| ETH | <0.01% | $0.015641 | 36.2343 | $0.5667 | |
| ETH | <0.01% | $0.007225 | 77.2183 | $0.5578 | |
| ETH | <0.01% | $0.325238 | 1.7134 | $0.5572 | |
| ETH | <0.01% | <$0.000001 | 4,934,347.2219 | $0.5519 | |
| ETH | <0.01% | $65,384 | 0.00000844 | $0.5518 | |
| ETH | <0.01% | $0.019217 | 28.6402 | $0.5503 | |
| ETH | <0.01% | $0.018027 | 30.4938 | $0.5497 | |
| ETH | <0.01% | $0.083866 | 6.5476 | $0.5491 | |
| ETH | <0.01% | $0.079269 | 6.9261 | $0.549 | |
| ETH | <0.01% | $0.016137 | 33.8648 | $0.5464 | |
| ETH | <0.01% | <$0.000001 | 1,904,337.7244 | $0.5445 | |
| ETH | <0.01% | $0.054978 | 9.8628 | $0.5422 | |
| ETH | <0.01% | $0.007391 | 73.2655 | $0.5415 | |
| ETH | <0.01% | $0.000186 | 2,886.351 | $0.5375 | |
| ETH | <0.01% | <$0.000001 | 42,409,293.6098 | $0.5344 | |
| ETH | <0.01% | $0.975789 | 0.5458 | $0.5326 | |
| ETH | <0.01% | $2,193.64 | 0.00024254 | $0.532 | |
| ETH | <0.01% | $0.003888 | 136.2814 | $0.5299 | |
| ETH | <0.01% | $0.164704 | 3.2009 | $0.5272 | |
| ETH | <0.01% | $0.004968 | 105.753 | $0.5253 | |
| ETH | <0.01% | $2,019.46 | 0.00025945 | $0.5239 | |
| ETH | <0.01% | $0.002612 | 199.7278 | $0.5217 | |
| ETH | <0.01% | $0.195165 | 2.6718 | $0.5214 | |
| ETH | <0.01% | $2,100.46 | 0.00024703 | $0.5188 | |
| ETH | <0.01% | $0.000359 | 1,439.1016 | $0.5172 | |
| ETH | <0.01% | $0.124747 | 4.129 | $0.515 | |
| ETH | <0.01% | $0.004731 | 107.4345 | $0.5082 | |
| ETH | <0.01% | $8.88 | 0.0572 | $0.5075 | |
| ETH | <0.01% | $0.28541 | 1.7645 | $0.5036 | |
| ETH | <0.01% | $0.002129 | 236.0371 | $0.5024 | |
| ETH | <0.01% | $0.032388 | 15.3661 | $0.4976 | |
| ETH | <0.01% | $0.000002 | 214,793.9033 | $0.494 | |
| ETH | <0.01% | $12.69 | 0.0387 | $0.4912 | |
| ETH | <0.01% | $0.019815 | 24.6847 | $0.4891 | |
| ETH | <0.01% | $0.000355 | 1,354.8217 | $0.4806 | |
| ETH | <0.01% | $0.038942 | 12.3376 | $0.4804 | |
| ETH | <0.01% | $0.000724 | 662.8869 | $0.4801 | |
| ETH | <0.01% | $0.001662 | 285.5645 | $0.4745 | |
| ETH | <0.01% | $0.00 | 0.6051 | $0.00 | |
| ETH | <0.01% | $0.010182 | 45.0772 | $0.4589 | |
| ETH | <0.01% | $0.917018 | 0.4999 | $0.4584 | |
| ETH | <0.01% | $0.007414 | 61.5961 | $0.4566 | |
| ETH | <0.01% | $1.55 | 0.2927 | $0.4536 | |
| ETH | <0.01% | $0.126749 | 3.5633 | $0.4516 | |
| ETH | <0.01% | $0.001151 | 390.8643 | $0.4497 | |
| ETH | <0.01% | <$0.000001 | 12,669,455.4032 | $0.4438 | |
| ETH | <0.01% | <$0.000001 | 3,866,995.5078 | $0.4424 | |
| ETH | <0.01% | $0.000351 | 1,245.0335 | $0.4372 | |
| ETH | <0.01% | $0.003105 | 139.9691 | $0.4345 | |
| ETH | <0.01% | <$0.000001 | 12,275,635,976.0232 | $0.4317 | |
| ETH | <0.01% | $0.000382 | 1,126.874 | $0.4303 | |
| ETH | <0.01% | $0.000047 | 9,184.5829 | $0.4288 | |
| ETH | <0.01% | $0.000009 | 48,844.0185 | $0.4273 | |
| ETH | <0.01% | $0.001257 | 339.6616 | $0.4269 | |
| ETH | <0.01% | <$0.000001 | 2,755,286,272.7372 | $0.4267 | |
| ETH | <0.01% | $0.100164 | 4.2558 | $0.4262 | |
| ETH | <0.01% | $11.89 | 0.0355 | $0.4218 | |
| ETH | <0.01% | $0.00456 | 92.4703 | $0.4216 | |
| ETH | <0.01% | $2,407.09 | 0.00017501 | $0.4212 | |
| ETH | <0.01% | $0.043989 | 9.5083 | $0.4182 | |
| ETH | <0.01% | $0.002553 | 162.9478 | $0.416 | |
| ETH | <0.01% | $0.001107 | 373.0895 | $0.413 | |
| ETH | <0.01% | <$0.000001 | 9,865,956.8185 | $0.409 | |
| ETH | <0.01% | $0.000001 | 569,538.5184 | $0.4075 | |
| ETH | <0.01% | $0.098324 | 4.1006 | $0.4031 | |
| ETH | <0.01% | $0.000057 | 7,102.2808 | $0.4019 | |
| ETH | <0.01% | $0.007819 | 51.2966 | $0.4011 | |
| ETH | <0.01% | <$0.000001 | 256,563,690.037 | $0.4003 | |
| ETH | <0.01% | $0.00107 | 370.1004 | $0.396 | |
| ETH | <0.01% | $0.105341 | 3.7379 | $0.3937 | |
| ETH | <0.01% | $0.000001 | 711,365.9576 | $0.393 | |
| ETH | <0.01% | $0.089963 | 4.3639 | $0.3925 | |
| ETH | <0.01% | $0.00006 | 6,550.9119 | $0.3921 | |
| ETH | <0.01% | $0.205555 | 1.8989 | $0.3903 | |
| ETH | <0.01% | $0.008338 | 46.7627 | $0.3899 | |
| ETH | <0.01% | $0.256224 | 1.5197 | $0.3893 | |
| ETH | <0.01% | $0.000003 | 139,705.9182 | $0.38 | |
| ETH | <0.01% | $1,278.92 | 0.00029638 | $0.379 | |
| ETH | <0.01% | $0.289962 | 1.3016 | $0.3774 | |
| ETH | <0.01% | $0.30178 | 1.2359 | $0.3729 | |
| ETH | <0.01% | $0.005181 | 71.9014 | $0.3725 | |
| ETH | <0.01% | $0.00811 | 45.8971 | $0.3722 | |
| ETH | <0.01% | $0.999617 | 0.3636 | $0.3634 | |
| ETH | <0.01% | $0.000103 | 3,504.8123 | $0.3619 | |
| ETH | <0.01% | $2,317.13 | 0.00015555 | $0.3604 | |
| ETH | <0.01% | $3.23 | 0.1113 | $0.3596 | |
| ETH | <0.01% | $0.000056 | 6,380.0479 | $0.3586 | |
| ETH | <0.01% | <$0.000001 | 2,782,843.9791 | $0.3583 | |
| ETH | <0.01% | $0.000038 | 9,516.6322 | $0.3574 | |
| ETH | <0.01% | $0.00 | 590.1016 | $0.00 | |
| ETH | <0.01% | $0.020907 | 16.8531 | $0.3523 | |
| ETH | <0.01% | $0.007712 | 45.4227 | $0.3502 | |
| ETH | <0.01% | $0.000104 | 3,344.1063 | $0.3493 | |
| ETH | <0.01% | $0.000001 | 331,012.3692 | $0.3478 | |
| ETH | <0.01% | $0.008716 | 39.8941 | $0.3477 | |
| ETH | <0.01% | <$0.000001 | 2,381,710,725.254 | $0.3474 | |
| ETH | <0.01% | $0.004695 | 73.3492 | $0.3443 | |
| ETH | <0.01% | $77,257 | 0.00000443 | $0.3422 | |
| ETH | <0.01% | $4,551.92 | 0.00007457 | $0.3394 | |
| ETH | <0.01% | $0.001678 | 198.8919 | $0.3337 | |
| ETH | <0.01% | <$0.000001 | 422,371,175.1789 | $0.3318 | |
| ETH | <0.01% | $0.000002 | 149,326.4338 | $0.3315 | |
| ETH | <0.01% | $0.052542 | 6.2764 | $0.3297 | |
| ETH | <0.01% | $0.091842 | 3.5668 | $0.3275 | |
| ETH | <0.01% | $0.029236 | 11.0633 | $0.3234 | |
| ETH | <0.01% | $0.007031 | 45.8069 | $0.322 | |
| ETH | <0.01% | <$0.000001 | 938,846.2574 | $0.3216 | |
| ETH | <0.01% | $0.03715 | 8.6552 | $0.3215 | |
| ETH | <0.01% | $0.000142 | 2,263.6298 | $0.3207 | |
| ETH | <0.01% | $0.000155 | 2,064.4671 | $0.3206 | |
| ETH | <0.01% | $2,095.5 | 0.00015249 | $0.3195 | |
| ETH | <0.01% | $0.002414 | 132.0031 | $0.3186 | |
| ETH | <0.01% | $0.138808 | 2.2908 | $0.3179 | |
| ETH | <0.01% | $0.025163 | 12.6212 | $0.3175 | |
| ETH | <0.01% | $0.000704 | 450.4167 | $0.3171 | |
| ETH | <0.01% | $0.002384 | 133.0298 | $0.3171 | |
| ETH | <0.01% | <$0.000001 | 633,347,294.7121 | $0.3164 | |
| ETH | <0.01% | $0.001176 | 265.0877 | $0.3116 | |
| ETH | <0.01% | $0.002562 | 120.7397 | $0.3093 | |
| ETH | <0.01% | $0.000091 | 3,362.9232 | $0.3068 | |
| ETH | <0.01% | $0.000225 | 1,358.7563 | $0.3059 | |
| ETH | <0.01% | $0.016013 | 18.9218 | $0.3029 | |
| ETH | <0.01% | $0.00415 | 72.9903 | $0.3028 | |
| ETH | <0.01% | $0.00016 | 1,878.0825 | $0.3013 | |
| ETH | <0.01% | $0.007039 | 42.7112 | $0.3006 | |
| ETH | <0.01% | $0.1181 | 2.5089 | $0.2962 | |
| ETH | <0.01% | $0.020877 | 14.1477 | $0.2953 | |
| ETH | <0.01% | $2,777.07 | 0.00010547 | $0.2928 | |
| ETH | <0.01% | $0.193472 | 1.5117 | $0.2924 | |
| ETH | <0.01% | $0.000521 | 560.3144 | $0.2918 | |
| ETH | <0.01% | $0.001254 | 231.3233 | $0.2899 | |
| ETH | <0.01% | $63.63 | 0.00453235 | $0.2883 | |
| ETH | <0.01% | $0.000855 | 336.5574 | $0.2877 | |
| ETH | <0.01% | $0.092712 | 3.09 | $0.2864 | |
| ETH | <0.01% | $0.055184 | 5.1304 | $0.2831 | |
| ETH | <0.01% | $0.392305 | 0.7213 | $0.2829 | |
| ETH | <0.01% | $0.003651 | 77.1423 | $0.2816 | |
| ETH | <0.01% | $0.001966 | 143.0016 | $0.2811 | |
| ETH | <0.01% | $0.000041 | 6,872.9769 | $0.2808 | |
| ETH | <0.01% | <$0.000001 | 2,010,245.0006 | $0.2791 | |
| ETH | <0.01% | $0.000061 | 4,546.8826 | $0.2786 | |
| ETH | <0.01% | $0.001931 | 143.7216 | $0.2775 | |
| ETH | <0.01% | $0.003812 | 72.3559 | $0.2758 | |
| ETH | <0.01% | $0.024455 | 11.1857 | $0.2735 | |
| ETH | <0.01% | $0.002685 | 101.2489 | $0.2718 | |
| ETH | <0.01% | $0.011287 | 24.0354 | $0.2712 | |
| ETH | <0.01% | $0.063603 | 4.2591 | $0.2708 | |
| ETH | <0.01% | $0.000691 | 389.7636 | $0.2692 | |
| ETH | <0.01% | $0.000624 | 421.1317 | $0.2629 | |
| ETH | <0.01% | $0.0012 | 218.7404 | $0.2624 | |
| ETH | <0.01% | $0.004769 | 54.411 | $0.2594 | |
| ETH | <0.01% | $0.000358 | 721.0675 | $0.2582 | |
| ETH | <0.01% | $0.006722 | 38.4202 | $0.2582 | |
| ETH | <0.01% | $0.008061 | 31.822 | $0.2565 | |
| ETH | <0.01% | $0.000839 | 303.9069 | $0.2551 | |
| ETH | <0.01% | $0.000001 | 207,109.589 | $0.2547 | |
| ETH | <0.01% | $0.003055 | 83.2073 | $0.2542 | |
| ETH | <0.01% | $0.001874 | 135.0588 | $0.2531 | |
| ETH | <0.01% | $1.03 | 0.2463 | $0.2526 | |
| ETH | <0.01% | $0.000039 | 6,441.933 | $0.2487 | |
| ETH | <0.01% | $0.001471 | 168.3799 | $0.2476 | |
| ETH | <0.01% | $0.064575 | 3.8056 | $0.2457 | |
| ETH | <0.01% | $0.00509 | 47.784 | $0.2432 | |
| ETH | <0.01% | $0.000312 | 779.4354 | $0.243 | |
| ETH | <0.01% | $0.000876 | 274.2526 | $0.2402 | |
| ETH | <0.01% | $0.000972 | 245.0533 | $0.238 | |
| ETH | <0.01% | $0.002197 | 107.0775 | $0.2352 | |
| ETH | <0.01% | $0.035536 | 6.6128 | $0.2349 | |
| ETH | <0.01% | $0.000318 | 733.5491 | $0.2333 | |
| ETH | <0.01% | $0.000228 | 1,016.949 | $0.2315 | |
| ETH | <0.01% | <$0.000001 | 3,275,283,523.4299 | $0.2286 | |
| ETH | <0.01% | $0.000156 | 1,456.6412 | $0.2266 | |
| ETH | <0.01% | $0.037728 | 5.9773 | $0.2255 | |
| ETH | <0.01% | $0.491925 | 0.4495 | $0.2211 | |
| ETH | <0.01% | <$0.000001 | 4,568,463.5058 | $0.2193 | |
| ETH | <0.01% | $0.038061 | 5.759 | $0.2191 | |
| ETH | <0.01% | $0.00002 | 11,112.834 | $0.2182 | |
| ETH | <0.01% | $0.999885 | 0.2165 | $0.2164 | |
| ETH | <0.01% | $0.000168 | 1,286.2833 | $0.216 | |
| ETH | <0.01% | <$0.000001 | 1,948,745.9533 | $0.2158 | |
| ETH | <0.01% | $0.001028 | 208.9673 | $0.2149 | |
| ETH | <0.01% | $0.026152 | 8.2124 | $0.2147 | |
| ETH | <0.01% | $0.000024 | 8,754.0607 | $0.2139 | |
| ETH | <0.01% | $0.002964 | 71.4611 | $0.2118 | |
| ETH | <0.01% | $0.000273 | 775.0748 | $0.2116 | |
| ETH | <0.01% | $0.000003 | 64,422.1661 | $0.2114 | |
| ETH | <0.01% | $0.001687 | 125.1137 | $0.211 | |
| ETH | <0.01% | $0.00201 | 103.2776 | $0.2075 | |
| ETH | <0.01% | $0.000001 | 156,684.7325 | $0.2075 | |
| ETH | <0.01% | $0.000456 | 454.2166 | $0.2073 | |
| ETH | <0.01% | $0.030819 | 6.7143 | $0.2069 | |
| ETH | <0.01% | $0.000692 | 292.8069 | $0.2025 | |
| ETH | <0.01% | <$0.000001 | 532,078.9884 | $0.1974 | |
| ETH | <0.01% | $0.016389 | 11.9864 | $0.1964 | |
| ETH | <0.01% | $0.000015 | 13,101.4185 | $0.1963 | |
| ETH | <0.01% | $0.000001 | 175,837.0409 | $0.1951 | |
| ETH | <0.01% | $0.000241 | 801.3486 | $0.1934 | |
| ETH | <0.01% | $0.137676 | 1.4028 | $0.1931 | |
| ETH | <0.01% | $0.002544 | 75.1192 | $0.191 | |
| ETH | <0.01% | $38.08 | 0.00500298 | $0.1905 | |
| ETH | <0.01% | $0.000902 | 210.915 | $0.1902 | |
| ETH | <0.01% | $0.000042 | 4,549.1982 | $0.1895 | |
| ETH | <0.01% | $0.001918 | 98.3573 | $0.1886 | |
| ETH | <0.01% | $0.012093 | 15.4165 | $0.1864 | |
| ETH | <0.01% | $8.55 | 0.0217 | $0.1854 | |
| ETH | <0.01% | $1 | 0.1849 | $0.185 | |
| ETH | <0.01% | $0.008707 | 21.1844 | $0.1844 | |
| ETH | <0.01% | $0.021364 | 8.5627 | $0.1829 | |
| ETH | <0.01% | $0.000007 | 27,097.2583 | $0.181 | |
| ETH | <0.01% | $0.000172 | 1,046.9154 | $0.18 | |
| ETH | <0.01% | <$0.000001 | 435,969,211.2955 | $0.1789 | |
| ETH | <0.01% | $0.000016 | 11,248.2481 | $0.1787 | |
| ETH | <0.01% | $0.00002 | 8,877.1633 | $0.1778 | |
| ETH | <0.01% | $0.002509 | 69.353 | $0.1739 | |
| ETH | <0.01% | $0.000164 | 1,043.1424 | $0.1705 | |
| ETH | <0.01% | $0.013711 | 12.2828 | $0.1684 | |
| ETH | <0.01% | $0.003601 | 46.6232 | $0.1678 | |
| ETH | <0.01% | <$0.000001 | 277,569,252.376 | $0.1663 | |
| ETH | <0.01% | $0.000007 | 24,691.592 | $0.1644 | |
| ETH | <0.01% | $0.000006 | 26,652.3595 | $0.1616 | |
| ETH | <0.01% | $0.020514 | 7.8377 | $0.1607 | |
| ETH | <0.01% | $0.999505 | 0.1604 | $0.1602 | |
| ETH | <0.01% | $0.050386 | 3.1345 | $0.1579 | |
| ETH | <0.01% | $0.015371 | 10.1771 | $0.1564 | |
| ETH | <0.01% | $0.010978 | 14.2218 | $0.1561 | |
| ETH | <0.01% | $0.056826 | 2.7312 | $0.1552 | |
| ETH | <0.01% | $0.035611 | 4.3576 | $0.1551 | |
| ETH | <0.01% | $0.000004 | 36,992.0419 | $0.1531 | |
| ETH | <0.01% | $0.000586 | 259.4271 | $0.1521 | |
| ETH | <0.01% | $0.001341 | 112.0592 | $0.1503 | |
| ETH | <0.01% | <$0.000001 | 325,621,916.4999 | $0.1498 | |
| ETH | <0.01% | $0.027414 | 5.4578 | $0.1496 | |
| ETH | <0.01% | $0.000172 | 856.9548 | $0.1476 | |
| ETH | <0.01% | $0.001196 | 123.3424 | $0.1474 | |
| ETH | <0.01% | $0.705795 | 0.2077 | $0.1465 | |
| ETH | <0.01% | $0.000453 | 320.2459 | $0.1452 | |
| ETH | <0.01% | $0.001154 | 125.7211 | $0.1451 | |
| ETH | <0.01% | $0.000001 | 148,539.7228 | $0.1444 | |
| ETH | <0.01% | $0.02375 | 6.0787 | $0.1443 | |
| ETH | <0.01% | $0.114328 | 1.2582 | $0.1438 | |
| ETH | <0.01% | <$0.000001 | 454,194.5048 | $0.1435 | |
| ETH | <0.01% | $0.00001 | 13,989.111 | $0.1435 | |
| ETH | <0.01% | $0.000028 | 5,154.0433 | $0.1433 | |
| ETH | <0.01% | $0.000097 | 1,479.8901 | $0.1433 | |
| ETH | <0.01% | $0.00158 | 90.7609 | $0.1433 | |
| ETH | <0.01% | $0.004154 | 34.3089 | $0.1425 | |
| ETH | <0.01% | <$0.000001 | 19,798,178.596 | $0.1418 | |
| ETH | <0.01% | $0.000011 | 12,695.6031 | $0.14 | |
| ETH | <0.01% | <$0.000001 | 362,285,639.6352 | $0.1399 | |
| ETH | <0.01% | $0.02198 | 6.363 | $0.1398 | |
| ETH | <0.01% | $1.5 | 0.0925 | $0.1387 | |
| ETH | <0.01% | $0.001762 | 78.3651 | $0.138 | |
| ETH | <0.01% | $0.004059 | 33.6536 | $0.1366 | |
| ETH | <0.01% | $0.001077 | 125.6613 | $0.1353 | |
| ETH | <0.01% | $0.023978 | 5.6418 | $0.1352 | |
| ETH | <0.01% | $0.000104 | 1,293.2736 | $0.1348 | |
| ETH | <0.01% | $0.000185 | 726.8405 | $0.1344 | |
| ETH | <0.01% | $0.004264 | 31.4948 | $0.1342 | |
| ETH | <0.01% | $0.000274 | 489.369 | $0.134 | |
| ETH | <0.01% | $0.000011 | 12,273.5649 | $0.1339 | |
| ETH | <0.01% | $0.009435 | 14.1562 | $0.1335 | |
| ETH | <0.01% | $0.022701 | 5.8119 | $0.1319 | |
| ETH | <0.01% | $0.001268 | 103.9677 | $0.1318 | |
| ETH | <0.01% | $0.190698 | 0.6854 | $0.1307 | |
| ETH | <0.01% | $0.000038 | 3,439.4762 | $0.1297 | |
| ETH | <0.01% | $0.895867 | 0.1448 | $0.1296 | |
| ETH | <0.01% | $0.002298 | 56.1174 | $0.1289 | |
| ETH | <0.01% | $0.007777 | 16.2601 | $0.1264 | |
| ETH | <0.01% | $0.000099 | 1,274.6864 | $0.1255 | |
| ETH | <0.01% | $0.004296 | 29.1858 | $0.1253 | |
| ETH | <0.01% | $0.000003 | 36,237.9993 | $0.1235 | |
| ETH | <0.01% | $0.000156 | 784.3827 | $0.1222 | |
| ETH | <0.01% | $0.000034 | 3,564.6621 | $0.1211 | |
| ETH | <0.01% | $0.000019 | 6,228.0712 | $0.1209 | |
| ETH | <0.01% | $0.001064 | 113.5522 | $0.1208 | |
| ETH | <0.01% | $0.00062 | 193.1654 | $0.1198 | |
| ETH | <0.01% | $0.079671 | 1.5038 | $0.1198 | |
| ETH | <0.01% | $0.004959 | 24.0648 | $0.1193 | |
| ETH | <0.01% | $0.000004 | 33,914.1316 | $0.119 | |
| ETH | <0.01% | $0.00 | 0.01 | $0.00 | |
| ETH | <0.01% | $0.000306 | 387.5004 | $0.1185 | |
| ETH | <0.01% | $0.005669 | 20.9008 | $0.1184 | |
| ETH | <0.01% | $0.000017 | 6,893.1869 | $0.1172 | |
| ETH | <0.01% | $0.042803 | 2.712 | $0.116 | |
| ETH | <0.01% | $1.04 | 0.1114 | $0.1155 | |
| ETH | <0.01% | <$0.000001 | 223,721,250.2458 | $0.1152 | |
| ETH | <0.01% | $0.000127 | 907.3772 | $0.115 | |
| ETH | <0.01% | $0.007333 | 15.6739 | $0.1149 | |
| ETH | <0.01% | $0.079276 | 1.4477 | $0.1147 | |
| ETH | <0.01% | $1.54 | 0.0744 | $0.1145 | |
| ETH | <0.01% | <$0.000001 | 2,282,753.136 | $0.114 | |
| ETH | <0.01% | $0.000008 | 13,702.6037 | $0.1135 | |
| ETH | <0.01% | $0.071904 | 1.5653 | $0.1125 | |
| ETH | <0.01% | $0.048262 | 2.3262 | $0.1122 | |
| ETH | <0.01% | <$0.000001 | 70,853,070.5 | $0.1113 | |
| ETH | <0.01% | $0.002026 | 54.3922 | $0.1102 | |
| ETH | <0.01% | $1.6 | 0.0679 | $0.1086 | |
| ETH | <0.01% | $0.999583 | 0.1072 | $0.1071 | |
| ETH | <0.01% | $0.557571 | 0.1921 | $0.107 | |
| ETH | <0.01% | $41.66 | 0.00255115 | $0.1062 | |
| ETH | <0.01% | $1.18 | 0.0888 | $0.1047 | |
| ETH | <0.01% | $0.009786 | 10.6741 | $0.1044 | |
| ETH | <0.01% | <$0.000001 | 829,431.8427 | $0.1043 | |
| ETH | <0.01% | $0.00031 | 330.0052 | $0.1021 | |
| ARB | 30.35% | $0.00 | 38,566,892.1577 | $0.00 | |
| ARB | 0.76% | $0.999905 | 5,714.0824 | $5,713.54 | |
| ARB | 0.66% | $76,177 | 0.0654 | $4,985.51 | |
| ARB | 0.55% | $0.998438 | 4,195.7136 | $4,189.16 | |
| ARB | 0.12% | $2,258.88 | 0.4158 | $939.32 | |
| ARB | 0.11% | $1,975.01 | 0.4282 | $845.61 | |
| ARB | 0.03% | $0.999905 | 255.8936 | $255.87 | |
| ARB | 0.02% | $8.85 | 16.5646 | $146.6 | |
| ARB | 0.02% | $2,767.96 | 0.0476 | $131.84 | |
| ARB | 0.01% | $0.232539 | 445.5016 | $103.6 | |
| ARB | 0.01% | $0.999892 | 87.8586 | $87.85 | |
| ARB | 0.01% | $0.307297 | 254.0763 | $78.08 | |
| ARB | <0.01% | $0.052607 | 1,075.3243 | $56.57 | |
| ARB | <0.01% | $76,390 | 0.00062444 | $47.7 | |
| ARB | <0.01% | $119.04 | 0.3373 | $40.16 | |
| ARB | <0.01% | $0.095597 | 382.7549 | $36.59 | |
| 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.00748137 | $17.34 | |
| ARB | <0.01% | $1.2 | 12.4012 | $14.88 | |
| ARB | <0.01% | $0.009383 | 1,453.7746 | $13.64 | |
| ARB | <0.01% | $1.18 | 11.4058 | $13.46 | |
| ARB | <0.01% | $0.998798 | 13.3308 | $13.31 | |
| ARB | <0.01% | $3.56 | 3.3327 | $11.86 | |
| ARB | <0.01% | $0.0239 | 472.0235 | $11.28 | |
| ARB | <0.01% | $64,957 | 0.00015626 | $10.15 | |
| ARB | <0.01% | $0.05604 | 175.7402 | $9.85 | |
| ARB | <0.01% | $70,983 | 0.00011035 | $7.83 | |
| ARB | <0.01% | $1,975.17 | 0.00298532 | $5.9 | |
| ARB | <0.01% | $0.059015 | 99.2774 | $5.86 | |
| ARB | <0.01% | $17.23 | 0.3257 | $5.61 | |
| ARB | <0.01% | $1.72 | 3.2532 | $5.6 | |
| ARB | <0.01% | $2,624.38 | 0.00211808 | $5.56 | |
| ARB | <0.01% | $1.01 | 4.8835 | $4.91 | |
| ARB | <0.01% | $6.44 | 0.712 | $4.58 | |
| ARB | <0.01% | $0.999608 | 4.0677 | $4.07 | |
| ARB | <0.01% | $0.00 | 0.000046 | $0.00 | |
| ARB | <0.01% | $29.61 | 0.1075 | $3.18 | |
| ARB | <0.01% | $0.986994 | 3.1186 | $3.08 | |
| ARB | <0.01% | $0.067633 | 43.9893 | $2.98 | |
| ARB | <0.01% | $2,533.28 | 0.00109436 | $2.77 | |
| ARB | <0.01% | $0.999737 | 2.7532 | $2.75 | |
| 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% | $0.00 | 0.00082525 | $0.00 | |
| ARB | <0.01% | $103.18 | 0.0178 | $1.84 | |
| ARB | <0.01% | $0.994104 | 1.6802 | $1.67 | |
| ARB | <0.01% | $0.005565 | 296.5283 | $1.65 | |
| ARB | <0.01% | $0.998647 | 1.6146 | $1.61 | |
| ARB | <0.01% | $5,027.48 | 0.000289 | $1.45 | |
| ARB | <0.01% | $1.11 | 1.2887 | $1.43 | |
| ARB | <0.01% | $0.003709 | 365.3962 | $1.36 | |
| ARB | <0.01% | $0.908981 | 1.486 | $1.35 | |
| ARB | <0.01% | $0.00713 | 183.7378 | $1.31 | |
| ARB | <0.01% | $1 | 1.2814 | $1.28 | |
| ARB | <0.01% | $0.00 | 1.2377 | $0.00 | |
| ARB | <0.01% | $0.149378 | 8.0973 | $1.21 | |
| ARB | <0.01% | $0.793841 | 1.5085 | $1.2 | |
| ARB | <0.01% | $0.000185 | 6,294.0109 | $1.16 | |
| ARB | <0.01% | $1.15 | 0.9399 | $1.08 | |
| ARB | <0.01% | $0.014426 | 74.2499 | $1.07 | |
| ARB | <0.01% | $0.275846 | 3.7107 | $1.02 | |
| ARB | <0.01% | $2,596 | 0.00038568 | $1 | |
| ARB | <0.01% | $17.59 | 0.0543 | $0.9548 | |
| ARB | <0.01% | $0.999234 | 0.9017 | $0.9009 | |
| ARB | <0.01% | $0.087902 | 9.9785 | $0.8771 | |
| ARB | <0.01% | $0.452091 | 1.8733 | $0.8468 | |
| ARB | <0.01% | $0.027077 | 30.8479 | $0.8352 | |
| ARB | <0.01% | $0.997756 | 0.8363 | $0.8344 | |
| ARB | <0.01% | $0.994846 | 0.8314 | $0.827 | |
| ARB | <0.01% | $0.210646 | 3.9253 | $0.8268 | |
| ARB | <0.01% | $0.99791 | 0.8115 | $0.8097 | |
| ARB | <0.01% | $78.39 | 0.0102 | $0.7995 | |
| ARB | <0.01% | $0.00207 | 354.8354 | $0.7344 | |
| ARB | <0.01% | $0.000185 | 3,890.968 | $0.7178 | |
| ARB | <0.01% | $2.45 | 0.2861 | $0.701 | |
| ARB | <0.01% | $0.000001 | 1,066,922.8938 | $0.6672 | |
| ARB | <0.01% | $0.002698 | 235.9003 | $0.6363 | |
| ARB | <0.01% | $76,732 | 0.00000813 | $0.6238 | |
| ARB | <0.01% | $1.34 | 0.4588 | $0.6147 | |
| ARB | <0.01% | $2.31 | 0.2641 | $0.61 | |
| ARB | <0.01% | $4,582.16 | 0.00012305 | $0.5638 | |
| ARB | <0.01% | $0.133553 | 4.2072 | $0.5618 | |
| ARB | <0.01% | $2,273.11 | 0.00023927 | $0.5438 | |
| ARB | <0.01% | $0.003621 | 146.3645 | $0.5299 | |
| ARB | <0.01% | $0.000445 | 1,188.3229 | $0.5283 | |
| ARB | <0.01% | $8.11 | 0.0649 | $0.5265 | |
| ARB | <0.01% | $0.009768 | 52.9383 | $0.5171 | |
| ARB | <0.01% | $75,557 | 0.00000664 | $0.5016 | |
| ARB | <0.01% | $1.31 | 0.3676 | $0.4815 | |
| ARB | <0.01% | $2,291.89 | 0.00018759 | $0.4299 | |
| ARB | <0.01% | $0.520132 | 0.7753 | $0.4032 | |
| ARB | <0.01% | $2.96 | 0.136 | $0.4026 | |
| ARB | <0.01% | $0.014463 | 26.9297 | $0.3894 | |
| ARB | <0.01% | $1.88 | 0.2027 | $0.3811 | |
| ARB | <0.01% | $0.135347 | 2.6896 | $0.364 | |
| ARB | <0.01% | $0.210988 | 1.7018 | $0.359 | |
| ARB | <0.01% | $0.000653 | 538.7548 | $0.3518 | |
| ARB | <0.01% | $0.466316 | 0.7528 | $0.351 | |
| ARB | <0.01% | $0.003723 | 88.6129 | $0.3298 | |
| 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% | $0.997714 | 0.3148 | $0.314 | |
| ARB | <0.01% | $0.00 | 0.3232 | $0.00 | |
| ARB | <0.01% | $0.000476 | 622.9476 | $0.2965 | |
| ARB | <0.01% | $0.050645 | 5.8237 | $0.2949 | |
| ARB | <0.01% | $0.026994 | 10.5011 | $0.2834 | |
| ARB | <0.01% | $2.3 | 0.1209 | $0.278 | |
| ARB | <0.01% | $0.666043 | 0.4163 | $0.2772 | |
| ARB | <0.01% | $0.014296 | 19.2182 | $0.2747 | |
| ARB | <0.01% | $0.058297 | 4.7135 | $0.2747 | |
| ARB | <0.01% | $0.00 | 6.2382 | $0.00 | |
| ARB | <0.01% | $76,284 | 0.00000358 | $0.2731 | |
| ARB | <0.01% | $1,782.35 | 0.00015053 | $0.2683 | |
| ARB | <0.01% | $0.913234 | 0.2785 | $0.2543 | |
| ARB | <0.01% | $0.27558 | 0.9139 | $0.2518 | |
| ARB | <0.01% | $0.001099 | 228.88 | $0.2515 | |
| ARB | <0.01% | $0.000004 | 63,431.4996 | $0.2429 | |
| ARB | <0.01% | $0.999617 | 0.239 | $0.2389 | |
| ARB | <0.01% | $0.321619 | 0.7325 | $0.2355 | |
| ARB | <0.01% | $0.019237 | 12.1473 | $0.2336 | |
| ARB | <0.01% | $0.999737 | 0.222 | $0.2219 | |
| ARB | <0.01% | $0.001457 | 152.1893 | $0.2217 | |
| ARB | <0.01% | $0.000907 | 236.8559 | $0.2148 | |
| ARB | <0.01% | $0.000251 | 833.747 | $0.209 | |
| ARB | <0.01% | $0.046488 | 4.445 | $0.2066 | |
| ARB | <0.01% | $0.203909 | 0.9992 | $0.2037 | |
| ARB | <0.01% | $0.012397 | 16.4244 | $0.2036 | |
| ARB | <0.01% | $0.00252 | 78.398 | $0.1975 | |
| ARB | <0.01% | $0.011381 | 17.245 | $0.1962 | |
| ARB | <0.01% | $0.009271 | 21.1596 | $0.1961 | |
| ARB | <0.01% | $20.94 | 0.0093402 | $0.1955 | |
| ARB | <0.01% | $76,043 | 0.00000254 | $0.193 | |
| ARB | <0.01% | $0.618505 | 0.3078 | $0.1903 | |
| ARB | <0.01% | $0.998454 | 0.1826 | $0.1822 | |
| ARB | <0.01% | $0.107368 | 1.688 | $0.1812 | |
| ARB | <0.01% | $0.00013 | 1,347.8394 | $0.1748 | |
| ARB | <0.01% | $0.45006 | 0.377 | $0.1696 | |
| ARB | <0.01% | $0.000006 | 27,459.6865 | $0.1686 | |
| ARB | <0.01% | $0.001416 | 117.2475 | $0.1659 | |
| ARB | <0.01% | $0.000004 | 39,521.7443 | $0.1616 | |
| ARB | <0.01% | $2.08 | 0.0774 | $0.1609 | |
| ARB | <0.01% | $0.057041 | 2.8168 | $0.1606 | |
| ARB | <0.01% | $0.999571 | 0.1587 | $0.1585 | |
| ARB | <0.01% | $0.995151 | 0.1533 | $0.1525 | |
| ARB | <0.01% | $0.00 | 3.5837 | $0.00 | |
| ARB | <0.01% | $0.005449 | 25.4848 | $0.1388 | |
| ARB | <0.01% | $0.99828 | 0.1377 | $0.1374 | |
| ARB | <0.01% | $0.048302 | 2.7752 | $0.134 | |
| ARB | <0.01% | $0.016096 | 8.2778 | $0.1332 | |
| ARB | <0.01% | $0.138327 | 0.9032 | $0.1249 | |
| ARB | <0.01% | $0.052453 | 2.2941 | $0.1203 | |
| ARB | <0.01% | $0.00 | 3.281 | $0.00 | |
| ARB | <0.01% | $2,197.56 | 0.00005043 | $0.1108 | |
| ARB | <0.01% | $0.000035 | 3,132.2317 | $0.1103 | |
| ARB | <0.01% | $0.000382 | 272.882 | $0.1043 | |
| ARB | <0.01% | $0.000004 | 24,671.9023 | $0.1026 | |
| BSC | 5.35% | $0.00213 | 18,982,506.9819 | $40,425.72 | |
| BSC | 1.69% | $1.86 | 6,862.8717 | $12,792.77 | |
| BSC | 1.13% | $0.999613 | 8,536.763 | $8,533.46 | |
| BSC | 0.41% | $0.999998 | 3,090.707 | $3,090.7 | |
| BSC | 0.35% | $621.64 | 4.2492 | $2,641.5 | |
| BSC | 0.10% | $0.083934 | 8,860.4082 | $743.69 | |
| BSC | 0.06% | $0.036565 | 13,208.7568 | $482.98 | |
| BSC | 0.06% | $0.705885 | 666.6782 | $470.6 | |
| BSC | 0.05% | $0.229358 | 1,616.5479 | $370.77 | |
| BSC | 0.03% | $68,004.93 | 0.00315506 | $214.56 | |
| BSC | 0.03% | $1,975.47 | 0.107 | $211.47 | |
| BSC | 0.01% | $621.73 | 0.1613 | $100.31 | |
| BSC | 0.01% | $28.43 | 3.1988 | $90.95 | |
| BSC | 0.01% | $0.008481 | 10,588.4734 | $89.8 | |
| BSC | 0.01% | $0.009786 | 8,471.2086 | $82.9 | |
| BSC | <0.01% | $0.013569 | 4,544.8063 | $61.67 | |
| BSC | <0.01% | $0.999441 | 60.5147 | $60.48 | |
| BSC | <0.01% | $8.02 | 6.7331 | $54 | |
| BSC | <0.01% | $0.079003 | 628.9805 | $49.69 | |
| BSC | <0.01% | $0.000324 | 142,560.8761 | $46.25 | |
| BSC | <0.01% | $0.163042 | 267.519 | $43.62 | |
| BSC | <0.01% | $0.093759 | 428.0619 | $40.13 | |
| BSC | <0.01% | $0.210336 | 154.9482 | $32.59 | |
| BSC | <0.01% | $0.058195 | 501.0377 | $29.16 | |
| BSC | <0.01% | $1.31 | 21.2277 | $27.81 | |
| BSC | <0.01% | $0.256379 | 78.9262 | $20.24 | |
| BSC | <0.01% | $0.180862 | 88.2764 | $15.97 | |
| BSC | <0.01% | $0.998675 | 15.4354 | $15.41 | |
| BSC | <0.01% | $254.63 | 0.0583 | $14.84 | |
| BSC | <0.01% | $0.15159 | 97.7717 | $14.82 | |
| BSC | <0.01% | $40.88 | 0.3308 | $13.52 | |
| BSC | <0.01% | $0.028454 | 473.6825 | $13.48 | |
| BSC | <0.01% | $0.944509 | 13.051 | $12.33 | |
| BSC | <0.01% | $0.719478 | 16.6868 | $12.01 | |
| BSC | <0.01% | $0.083775 | 135.4769 | $11.35 | |
| BSC | <0.01% | $0.00 | 17.4116 | $0.00 | |
| BSC | <0.01% | $0.225397 | 43.6939 | $9.85 | |
| BSC | <0.01% | $0.090427 | 106.1615 | $9.6 | |
| BSC | <0.01% | $0.998983 | 9.5991 | $9.59 | |
| BSC | <0.01% | $0.315569 | 29.1603 | $9.2 | |
| BSC | <0.01% | $0.008696 | 952.6428 | $8.28 | |
| BSC | <0.01% | $0.00521 | 1,513.7676 | $7.89 | |
| BSC | <0.01% | $0.001455 | 5,071.3842 | $7.38 | |
| BSC | <0.01% | $1.36 | 5.2293 | $7.11 | |
| BSC | <0.01% | $99 | 0.0702 | $6.95 | |
| BSC | <0.01% | $0.03846 | 177.4274 | $6.82 | |
| BSC | <0.01% | $0.079714 | 83.2195 | $6.63 | |
| BSC | <0.01% | $0.517585 | 12.1849 | $6.31 | |
| BSC | <0.01% | $0.137946 | 44.4112 | $6.13 | |
| BSC | <0.01% | $0.010833 | 554.2645 | $6 | |
| BSC | <0.01% | $0.014876 | 385.2361 | $5.73 | |
| BSC | <0.01% | $0.017938 | 291.3633 | $5.23 | |
| BSC | <0.01% | $0.005544 | 909.3618 | $5.04 | |
| BSC | <0.01% | $0.02751 | 180.8846 | $4.98 | |
| BSC | <0.01% | $1 | 4.6194 | $4.62 | |
| BSC | <0.01% | $0.010371 | 444.9038 | $4.61 | |
| BSC | <0.01% | $0.948017 | 4.6284 | $4.39 | |
| BSC | <0.01% | $0.046727 | 93.8736 | $4.39 | |
| BSC | <0.01% | $0.024585 | 165.4541 | $4.07 | |
| BSC | <0.01% | $0.000423 | 9,348.7188 | $3.96 | |
| BSC | <0.01% | $0.652426 | 5.759 | $3.76 | |
| BSC | <0.01% | $0.048731 | 70.4333 | $3.43 | |
| BSC | <0.01% | $0.050533 | 66.9954 | $3.39 | |
| BSC | <0.01% | $0.001894 | 1,749.9333 | $3.31 | |
| BSC | <0.01% | $0.034447 | 95.2872 | $3.28 | |
| BSC | <0.01% | $0.088142 | 34.9284 | $3.08 | |
| BSC | <0.01% | $1.42 | 1.9756 | $2.81 | |
| BSC | <0.01% | $76,114 | 0.0000368 | $2.8 | |
| BSC | <0.01% | $0.000333 | 8,357.6807 | $2.78 | |
| BSC | <0.01% | $0.079758 | 32.9257 | $2.63 | |
| BSC | <0.01% | $0.033182 | 78.8656 | $2.62 | |
| BSC | <0.01% | $0.195165 | 13.3172 | $2.6 | |
| BSC | <0.01% | $0.001763 | 1,468.7966 | $2.59 | |
| BSC | <0.01% | $0.00 | 1.9525 | $0.00 | |
| BSC | <0.01% | $0.000002 | 1,418,803.478 | $2.53 | |
| BSC | <0.01% | $0.005023 | 439.0661 | $2.21 | |
| BSC | <0.01% | $0.019943 | 107.6648 | $2.15 | |
| BSC | <0.01% | $0.00906 | 236.2748 | $2.14 | |
| BSC | <0.01% | $0.000305 | 6,890.0088 | $2.1 | |
| BSC | <0.01% | $0.000783 | 2,676.5448 | $2.09 | |
| BSC | <0.01% | $0.998084 | 2.0501 | $2.05 | |
| BSC | <0.01% | $0.00 | 160,602,457.1185 | $0.00 | |
| BSC | <0.01% | $0.003568 | 555.3287 | $1.98 | |
| BSC | <0.01% | $0.097266 | 20.3625 | $1.98 | |
| BSC | <0.01% | $0.003828 | 497.066 | $1.9 | |
| BSC | <0.01% | $119.09 | 0.016 | $1.9 | |
| BSC | <0.01% | $0.999851 | 1.8982 | $1.9 | |
| BSC | <0.01% | $0.073917 | 24.234 | $1.79 | |
| BSC | <0.01% | $0.001696 | 1,053.2709 | $1.79 | |
| BSC | <0.01% | $0.009443 | 187.0675 | $1.77 | |
| BSC | <0.01% | $0.00 | 0.59 | $0.00 | |
| BSC | <0.01% | $0.038226 | 44.5025 | $1.7 | |
| BSC | <0.01% | $0.557571 | 2.9875 | $1.67 | |
| BSC | <0.01% | $0.012192 | 131.6109 | $1.6 | |
| BSC | <0.01% | $76,284 | 0.00002051 | $1.56 | |
| BSC | <0.01% | $0.029811 | 52.4531 | $1.56 | |
| BSC | <0.01% | <$0.000001 | 3,838,441,430.6145 | $1.48 | |
| BSC | <0.01% | $1.34 | 1.1063 | $1.48 | |
| BSC | <0.01% | $0.007075 | 205.8226 | $1.46 | |
| BSC | <0.01% | $0.005744 | 240.2694 | $1.38 | |
| BSC | <0.01% | $0.026877 | 50.4791 | $1.36 | |
| BSC | <0.01% | $0.999792 | 1.3445 | $1.34 | |
| BSC | <0.01% | $8.85 | 0.1513 | $1.34 | |
| BSC | <0.01% | $0.99908 | 1.3298 | $1.33 | |
| BSC | <0.01% | $3.56 | 0.3701 | $1.32 | |
| BSC | <0.01% | $0.000018 | 71,474.1642 | $1.3 | |
| BSC | <0.01% | $0.003647 | 353.359 | $1.29 | |
| BSC | <0.01% | $572.84 | 0.00213151 | $1.22 | |
| BSC | <0.01% | $0.665569 | 1.7874 | $1.19 | |
| BSC | <0.01% | $0.000004 | 288,607.9353 | $1.18 | |
| BSC | <0.01% | $0.002405 | 483.8346 | $1.16 | |
| BSC | <0.01% | $0.499616 | 2.3144 | $1.16 | |
| BSC | <0.01% | $189.89 | 0.00607882 | $1.15 | |
| BSC | <0.01% | $0.002698 | 426.1956 | $1.15 | |
| BSC | <0.01% | $0.112807 | 10.1703 | $1.15 | |
| BSC | <0.01% | $0.119416 | 9.6021 | $1.15 | |
| BSC | <0.01% | $0.003116 | 361.1511 | $1.13 | |
| BSC | <0.01% | $0.017808 | 62.0614 | $1.11 | |
| BSC | <0.01% | $0.05099 | 21.5374 | $1.1 | |
| BSC | <0.01% | $0.001238 | 879.6915 | $1.09 | |
| BSC | <0.01% | $0.290104 | 3.6144 | $1.05 | |
| BSC | <0.01% | $0.100544 | 10.419 | $1.05 | |
| BSC | <0.01% | $0.00 | 217,474.8677 | $0.00 | |
| BSC | <0.01% | $0.008304 | 117.3531 | $0.9745 | |
| BSC | <0.01% | $0.01188 | 78.5139 | $0.9327 | |
| BSC | <0.01% | $8.31 | 0.1107 | $0.9196 | |
| BSC | <0.01% | $0.008095 | 113.3259 | $0.9173 | |
| BSC | <0.01% | $0.056826 | 16.1219 | $0.9161 | |
| BSC | <0.01% | $0.140873 | 6.2078 | $0.8745 | |
| BSC | <0.01% | $0.003877 | 220.7146 | $0.8557 | |
| BSC | <0.01% | $1.34 | 0.6355 | $0.8511 | |
| BSC | <0.01% | $0.007146 | 118.3914 | $0.846 | |
| BSC | <0.01% | $0.00 | 18.5245 | $0.00 | |
| BSC | <0.01% | $0.022412 | 35.0163 | $0.7847 | |
| BSC | <0.01% | $0.325238 | 2.3555 | $0.766 | |
| BSC | <0.01% | $0.00031 | 2,437.1676 | $0.7547 | |
| BSC | <0.01% | $0.001791 | 413.9444 | $0.7414 | |
| BSC | <0.01% | $0.004107 | 178.8285 | $0.7344 | |
| BSC | <0.01% | $55,073.93 | 0.00001268 | $0.6983 | |
| BSC | <0.01% | $0.029236 | 23.8811 | $0.6981 | |
| BSC | <0.01% | $1 | 0.6946 | $0.6946 | |
| BSC | <0.01% | $0.070666 | 9.7661 | $0.6901 | |
| BSC | <0.01% | $0.994142 | 0.6735 | $0.6695 | |
| BSC | <0.01% | $0.00127 | 526.2256 | $0.6682 | |
| BSC | <0.01% | $9 | 0.0738 | $0.6645 | |
| BSC | <0.01% | $76,043 | 0.00000819 | $0.6224 | |
| BSC | <0.01% | $0.000199 | 3,107.2834 | $0.6173 | |
| BSC | <0.01% | $0.010269 | 59.9364 | $0.6154 | |
| BSC | <0.01% | $0.057073 | 10.7761 | $0.615 | |
| BSC | <0.01% | $0.000041 | 14,978.8845 | $0.6097 | |
| BSC | <0.01% | $805.52 | 0.00073034 | $0.5883 | |
| BSC | <0.01% | $0.009316 | 61.7828 | $0.5755 | |
| BSC | <0.01% | $0.026034 | 21.3513 | $0.5558 | |
| BSC | <0.01% | $0.003888 | 142.2689 | $0.5532 | |
| BSC | <0.01% | $0.00 | 48,077,444.3369 | $0.00 | |
| BSC | <0.01% | $0.587488 | 0.9245 | $0.5431 | |
| BSC | <0.01% | $0.025703 | 20.5707 | $0.5287 | |
| BSC | <0.01% | $0.008563 | 60.8432 | $0.521 | |
| BSC | <0.01% | $0.00 | 85.2208 | $0.00 | |
| BSC | <0.01% | <$0.000001 | 9,879,904.6806 | $0.5057 | |
| BSC | <0.01% | $0.027264 | 18.261 | $0.4978 | |
| BSC | <0.01% | <$0.000001 | 13,536,151,353.8788 | $0.495 | |
| BSC | <0.01% | $0.015199 | 32.2389 | $0.49 | |
| BSC | <0.01% | $0.000042 | 11,518.6923 | $0.4875 | |
| BSC | <0.01% | <$0.000001 | 2,072,256.1982 | $0.4852 | |
| BSC | <0.01% | $47.98 | 0.00992165 | $0.476 | |
| BSC | <0.01% | $0.004725 | 100.2887 | $0.4738 | |
| BSC | <0.01% | $0.00313 | 149.0262 | $0.4664 | |
| BSC | <0.01% | $1.2 | 0.371 | $0.4452 | |
| BSC | <0.01% | $0.013183 | 33.5036 | $0.4416 | |
| BSC | <0.01% | $0.000006 | 66,236.4729 | $0.4123 | |
| BSC | <0.01% | $1.03 | 0.3982 | $0.4113 | |
| BSC | <0.01% | $0.033315 | 12.1817 | $0.4058 | |
| BSC | <0.01% | <$0.000001 | 2,123,030.3423 | $0.3987 | |
| BSC | <0.01% | $0.288356 | 1.3465 | $0.3882 | |
| BSC | <0.01% | $0.066327 | 5.8428 | $0.3875 | |
| BSC | <0.01% | $5,074.99 | 0.00007619 | $0.3866 | |
| BSC | <0.01% | $0.010177 | 37.7726 | $0.3844 | |
| BSC | <0.01% | $0.000747 | 514.5841 | $0.3843 | |
| BSC | <0.01% | $0.093325 | 4.0527 | $0.3782 | |
| BSC | <0.01% | $0.016644 | 22.7157 | $0.378 | |
| BSC | <0.01% | $0.041596 | 9.0739 | $0.3774 | |
| BSC | <0.01% | $0.065215 | 5.6644 | $0.3694 | |
| BSC | <0.01% | $0.079269 | 4.6452 | $0.3682 | |
| BSC | <0.01% | $0.756794 | 0.4825 | $0.3651 | |
| BSC | <0.01% | $0.004979 | 72.7841 | $0.3623 | |
| BSC | <0.01% | $0.001508 | 237.2551 | $0.3576 | |
| BSC | <0.01% | $0.015209 | 23.5012 | $0.3574 | |
| BSC | <0.01% | $2.31 | 0.1514 | $0.3497 | |
| BSC | <0.01% | $0.000904 | 386.8913 | $0.3496 | |
| BSC | <0.01% | $0.00096 | 361.4409 | $0.3469 | |
| BSC | <0.01% | $0.010352 | 33.4962 | $0.3467 | |
| BSC | <0.01% | $0.000034 | 10,106.3149 | $0.3445 | |
| BSC | <0.01% | $0.870857 | 0.3813 | $0.332 | |
| BSC | <0.01% | $0.001804 | 183.2503 | $0.3305 | |
| BSC | <0.01% | $0.149764 | 2.191 | $0.3281 | |
| BSC | <0.01% | $0.02972 | 10.9478 | $0.3253 | |
| BSC | <0.01% | $0.999035 | 0.3208 | $0.3204 | |
| BSC | <0.01% | $0.00 | 10.77 | $0.00 | |
| BSC | <0.01% | $0.000198 | 1,569.4083 | $0.3105 | |
| BSC | <0.01% | $0.41904 | 0.7232 | $0.303 | |
| BSC | <0.01% | $0.001402 | 212.4877 | $0.2978 | |
| BSC | <0.01% | $0.001065 | 276.8665 | $0.2948 | |
| BSC | <0.01% | $0.002686 | 109.2655 | $0.2934 | |
| BSC | <0.01% | $0.00 | 17.7425 | $0.00 | |
| BSC | <0.01% | $2.3 | 0.1246 | $0.2866 | |
| BSC | <0.01% | $3.61 | 0.0782 | $0.2824 | |
| BSC | <0.01% | $0.00334 | 84.0097 | $0.2806 | |
| BSC | <0.01% | $0.000001 | 285,087.2253 | $0.2772 | |
| BSC | <0.01% | $0.079858 | 3.4169 | $0.2728 | |
| BSC | <0.01% | $0.00 | 100.7104 | $0.00 | |
| BSC | <0.01% | $0.090896 | 2.8408 | $0.2582 | |
| BSC | <0.01% | $54.56 | 0.00464132 | $0.2532 | |
| BSC | <0.01% | $0.140873 | 1.7656 | $0.2487 | |
| BSC | <0.01% | $0.008026 | 30.9818 | $0.2486 | |
| BSC | <0.01% | $0.000378 | 641.9784 | $0.2427 | |
| BSC | <0.01% | $0.092491 | 2.5956 | $0.24 | |
| BSC | <0.01% | $0.000023 | 10,417.5366 | $0.2385 | |
| BSC | <0.01% | $0.016093 | 14.3495 | $0.2309 | |
| BSC | <0.01% | $0.000026 | 8,853.9119 | $0.2301 | |
| BSC | <0.01% | $0.015543 | 14.6101 | $0.227 | |
| BSC | <0.01% | $0.004629 | 48.4603 | $0.2243 | |
| BSC | <0.01% | <$0.000001 | 9,859,340.3477 | $0.2207 | |
| BSC | <0.01% | $0.020185 | 10.6865 | $0.2157 | |
| BSC | <0.01% | $1.32 | 0.1613 | $0.2129 | |
| BSC | <0.01% | $0.005569 | 38.1556 | $0.2125 | |
| BSC | <0.01% | $0.00006 | 3,510.5569 | $0.2116 | |
| BSC | <0.01% | <$0.000001 | 44,844,037.1642 | $0.2054 | |
| BSC | <0.01% | $0.000189 | 1,073.7686 | $0.2028 | |
| BSC | <0.01% | $0.043732 | 4.5869 | $0.2005 | |
| BSC | <0.01% | $0.004818 | 41.3743 | $0.1993 | |
| BSC | <0.01% | $0.017781 | 10.9989 | $0.1955 | |
| BSC | <0.01% | $1.32 | 0.1466 | $0.1935 | |
| BSC | <0.01% | $0.001637 | 117.6105 | $0.1925 | |
| BSC | <0.01% | $0.000246 | 777.7929 | $0.1911 | |
| BSC | <0.01% | $0.013104 | 14.5596 | $0.1907 | |
| BSC | <0.01% | $0.001093 | 174.4593 | $0.1906 | |
| BSC | <0.01% | $0.000627 | 302.0504 | $0.1893 | |
| BSC | <0.01% | $0.003104 | 60.9819 | $0.1892 | |
| BSC | <0.01% | $0.000064 | 2,923.0163 | $0.1878 | |
| BSC | <0.01% | $0.000426 | 441.1576 | $0.1878 | |
| BSC | <0.01% | $0.001215 | 153.2049 | $0.1861 | |
| BSC | <0.01% | $0.293227 | 0.631 | $0.185 | |
| BSC | <0.01% | $0.00 | 331.3066 | $0.00 | |
| BSC | <0.01% | $0.037728 | 4.7766 | $0.1802 | |
| BSC | <0.01% | $0.0002 | 900.7391 | $0.1798 | |
| BSC | <0.01% | $0.000682 | 263.1339 | $0.1793 | |
| BSC | <0.01% | $2.44 | 0.0731 | $0.1783 | |
| BSC | <0.01% | $0.071566 | 2.4775 | $0.1773 | |
| BSC | <0.01% | $0.020687 | 8.4237 | $0.1742 | |
| BSC | <0.01% | $0.002212 | 78.6322 | $0.1739 | |
| BSC | <0.01% | $0.03136 | 5.5373 | $0.1736 | |
| BSC | <0.01% | $0.027024 | 6.2983 | $0.1702 | |
| BSC | <0.01% | $0.032814 | 5.1322 | $0.1684 | |
| BSC | <0.01% | $0.276538 | 0.6009 | $0.1661 | |
| BSC | <0.01% | $1,958.5 | 0.00008463 | $0.1657 | |
| BSC | <0.01% | $0.004391 | 37.3916 | $0.1641 | |
| BSC | <0.01% | $0.163228 | 0.9979 | $0.1628 | |
| BSC | <0.01% | $0.06692 | 2.4254 | $0.1623 | |
| BSC | <0.01% | $0.016618 | 9.595 | $0.1594 | |
| BSC | <0.01% | $0.008024 | 19.7762 | $0.1586 | |
| BSC | <0.01% | $0.000966 | 159.8339 | $0.1543 | |
| BSC | <0.01% | $0.001973 | 77.0658 | $0.152 | |
| BSC | <0.01% | $0.00006 | 2,506.72 | $0.1516 | |
| BSC | <0.01% | $0.001133 | 133.7666 | $0.1515 | |
| BSC | <0.01% | $0.001463 | 103.3929 | $0.1512 | |
| BSC | <0.01% | $0.000006 | 24,313.994 | $0.1492 | |
| BSC | <0.01% | $0.003674 | 38.4974 | $0.1414 | |
| BSC | <0.01% | $0.086924 | 1.6269 | $0.1414 | |
| BSC | <0.01% | $1.73 | 0.0739 | $0.1278 | |
| BSC | <0.01% | $0.013928 | 9.0389 | $0.1258 | |
| BSC | <0.01% | $0.000487 | 256.8472 | $0.1251 | |
| BSC | <0.01% | $0.055184 | 2.2341 | $0.1232 | |
| BSC | <0.01% | $0.009425 | 12.8797 | $0.1213 | |
| BSC | <0.01% | $0.265385 | 0.4469 | $0.1186 | |
| BSC | <0.01% | $0.000049 | 2,399.9159 | $0.1175 | |
| BSC | <0.01% | $0.000023 | 5,176.0564 | $0.1167 | |
| BSC | <0.01% | $0.000052 | 2,258.2881 | $0.1163 | |
| BSC | <0.01% | $0.001982 | 58.6515 | $0.1162 | |
| BSC | <0.01% | $0.024054 | 4.8346 | $0.1162 | |
| BSC | <0.01% | $0.001356 | 84.9489 | $0.1151 | |
| BSC | <0.01% | $0.468637 | 0.2446 | $0.1146 | |
| BSC | <0.01% | $0.00107 | 107.0894 | $0.1145 | |
| BSC | <0.01% | $0.095102 | 1.2033 | $0.1144 | |
| BSC | <0.01% | $0.005021 | 22.6079 | $0.1135 | |
| BSC | <0.01% | $0.00123 | 91.8644 | $0.1129 | |
| BSC | <0.01% | $0.055364 | 1.977 | $0.1094 | |
| BSC | <0.01% | $0.001103 | 95.8787 | $0.1057 | |
| BSC | <0.01% | $0.00 | 5.4188 | $0.00 | |
| BSC | <0.01% | $0.008889 | 11.8049 | $0.1049 | |
| BSC | <0.01% | $0.001062 | 98.6989 | $0.1048 | |
| BSC | <0.01% | $0.007712 | 13.3507 | $0.1029 | |
| BSC | <0.01% | $0.003351 | 30.6429 | $0.1026 | |
| BSC | <0.01% | $2.22 | 0.0455 | $0.1011 | |
| BSC | <0.01% | $0.002812 | 35.6953 | $0.1003 | |
| BSC | <0.01% | $0.027477 | 3.6523 | $0.1003 | |
| BASE | 1.75% | $0.999913 | 13,233.4503 | $13,232.3 | |
| BASE | 0.89% | $2,263.38 | 2.9671 | $6,715.73 | |
| BASE | 0.41% | $76,331 | 0.0402 | $3,070.91 | |
| BASE | 0.37% | $1,975.02 | 1.4091 | $2,782.98 | |
| BASE | 0.09% | $0.631054 | 1,083.1561 | $683.53 | |
| BASE | 0.09% | $0.183424 | 3,715.2547 | $681.47 | |
| BASE | 0.07% | $0.324182 | 1,732.9159 | $561.78 | |
| BASE | 0.07% | $4.32 | 122.2511 | $528.12 | |
| BASE | 0.05% | $1.18 | 330.7176 | $390.25 | |
| BASE | 0.05% | $0.000595 | 591,567.3433 | $351.89 | |
| BASE | 0.04% | $32.22 | 10.1964 | $328.53 | |
| BASE | 0.03% | $0.998334 | 246.2054 | $245.8 | |
| BASE | 0.03% | $0.26123 | 877.3382 | $229.19 | |
| BASE | 0.02% | $0.020583 | 8,186.1092 | $168.5 | |
| BASE | 0.02% | $0.036585 | 4,327.1251 | $158.31 | |
| BASE | 0.02% | $0.000209 | 721,599.736 | $151.05 | |
| BASE | 0.02% | $5.78 | 20.9974 | $121.37 | |
| BASE | 0.02% | $71,128 | 0.00168063 | $119.54 | |
| BASE | 0.02% | $0.986994 | 119.4877 | $117.93 | |
| BASE | 0.01% | $0.111616 | 830.8362 | $92.73 | |
| BASE | 0.01% | $0.296961 | 303.621 | $90.16 | |
| BASE | 0.01% | $1 | 84.7875 | $84.87 | |
| BASE | 0.01% | $0.999958 | 83.6493 | $83.65 | |
| BASE | 0.01% | $59.82 | 1.3852 | $82.86 | |
| BASE | <0.01% | $0.637073 | 111.2248 | $70.86 | |
| BASE | <0.01% | $0.10775 | 648.1395 | $69.84 | |
| BASE | <0.01% | $1.59 | 42.6006 | $67.73 | |
| BASE | <0.01% | $0.095876 | 605.0526 | $58.01 | |
| BASE | <0.01% | $1.12 | 48.3351 | $54.14 | |
| BASE | <0.01% | $1.62 | 23.7685 | $38.51 | |
| BASE | <0.01% | $2.86 | 12.5084 | $35.77 | |
| BASE | <0.01% | $0.000089 | 368,108.2855 | $32.92 | |
| BASE | <0.01% | $0.019462 | 1,684.0895 | $32.78 | |
| BASE | <0.01% | $0.298303 | 104.2386 | $31.09 | |
| BASE | <0.01% | $0.402404 | 74.5224 | $29.99 | |
| BASE | <0.01% | $0.09431 | 311.3631 | $29.36 | |
| BASE | <0.01% | $0.000049 | 594,482.4121 | $29.36 | |
| BASE | <0.01% | $0.019895 | 1,440 | $28.65 | |
| BASE | <0.01% | $2,419.43 | 0.0117 | $28.26 | |
| BASE | <0.01% | $1.29 | 20.9446 | $27.02 | |
| BASE | <0.01% | $0.062188 | 404.4691 | $25.15 | |
| BASE | <0.01% | $0.000031 | 711,083.9428 | $22.04 | |
| BASE | <0.01% | $0.006195 | 3,547.4786 | $21.98 | |
| BASE | <0.01% | $0.013987 | 1,415.9675 | $19.8 | |
| BASE | <0.01% | $2,773.1 | 0.00710362 | $19.7 | |
| BASE | <0.01% | $0.029822 | 651.6939 | $19.43 | |
| BASE | <0.01% | $0.000123 | 157,719.9489 | $19.42 | |
| BASE | <0.01% | $1.73 | 11.187 | $19.35 | |
| BASE | <0.01% | $0.011656 | 1,645.9575 | $19.19 | |
| BASE | <0.01% | $0.994939 | 17.5248 | $17.44 | |
| BASE | <0.01% | $0.020629 | 794.3827 | $16.39 | |
| BASE | <0.01% | $0.312221 | 51.1971 | $15.98 | |
| BASE | <0.01% | $0.094916 | 158.8642 | $15.08 | |
| BASE | <0.01% | $0.000225 | 65,067.1591 | $14.61 | |
| BASE | <0.01% | $0.000562 | 22,319.7901 | $12.53 | |
| BASE | <0.01% | $0.011651 | 1,029.0838 | $11.99 | |
| BASE | <0.01% | $0.022261 | 493.1274 | $10.98 | |
| BASE | <0.01% | $0.107014 | 102.3145 | $10.95 | |
| BASE | <0.01% | $0.381651 | 26.8607 | $10.25 | |
| BASE | <0.01% | $0.004124 | 2,442.6839 | $10.07 | |
| BASE | <0.01% | $0.027172 | 370.0079 | $10.05 | |
| BASE | <0.01% | $0.999899 | 9.9995 | $10 | |
| BASE | <0.01% | $76,114 | 0.00012984 | $9.88 | |
| BASE | <0.01% | $0.001354 | 6,940.8766 | $9.4 | |
| BASE | <0.01% | $0.007325 | 1,272.4462 | $9.32 | |
| BASE | <0.01% | $2,217.14 | 0.00419656 | $9.3 | |
| BASE | <0.01% | $0.098363 | 93.7039 | $9.22 | |
| BASE | <0.01% | $0.089129 | 89.1624 | $7.95 | |
| BASE | <0.01% | $0.00 | 1,527.8423 | $0.00 | |
| BASE | <0.01% | $85.26 | 0.0815 | $6.95 | |
| BASE | <0.01% | $0.00 | 0.00279302 | $0.00 | |
| BASE | <0.01% | $119.07 | 0.0559 | $6.66 | |
| BASE | <0.01% | $0.001403 | 4,712.8072 | $6.61 | |
| BASE | <0.01% | $0.01777 | 363.2957 | $6.46 | |
| BASE | <0.01% | $0.000786 | 8,083 | $6.35 | |
| BASE | <0.01% | $1.35 | 4.3447 | $5.87 | |
| BASE | <0.01% | $0.079659 | 73.5328 | $5.86 | |
| BASE | <0.01% | $0.000414 | 13,977.8996 | $5.78 | |
| BASE | <0.01% | $2,462.49 | 0.00232443 | $5.72 | |
| BASE | <0.01% | $0.00216 | 2,573.0064 | $5.56 | |
| BASE | <0.01% | $0.09094 | 61.1124 | $5.56 | |
| BASE | <0.01% | $0.025721 | 205.3772 | $5.28 | |
| BASE | <0.01% | $0.001293 | 3,973.9899 | $5.14 | |
| BASE | <0.01% | $0.073478 | 66.5691 | $4.89 | |
| BASE | <0.01% | $0.998591 | 4.8381 | $4.83 | |
| BASE | <0.01% | $0.007163 | 623.1023 | $4.46 | |
| BASE | <0.01% | $172.1 | 0.0255 | $4.39 | |
| BASE | <0.01% | $2,803.99 | 0.00155808 | $4.37 | |
| BASE | <0.01% | $1.29 | 3.3793 | $4.36 | |
| BASE | <0.01% | $0.002603 | 1,671.5391 | $4.35 | |
| BASE | <0.01% | $0.079757 | 54.3273 | $4.33 | |
| BASE | <0.01% | $0.000419 | 10,322.4853 | $4.32 | |
| BASE | <0.01% | $0.015528 | 272.8789 | $4.24 | |
| BASE | <0.01% | $0.053342 | 77.0039 | $4.11 | |
| BASE | <0.01% | $0.000006 | 702,646.3281 | $4.06 | |
| BASE | <0.01% | $0.013175 | 302.2503 | $3.98 | |
| BASE | <0.01% | $0.00067 | 5,503.6614 | $3.69 | |
| BASE | <0.01% | $1.04 | 3.5123 | $3.66 | |
| BASE | <0.01% | $0.002785 | 1,239.67 | $3.45 | |
| BASE | <0.01% | $0.025669 | 133.9252 | $3.44 | |
| BASE | <0.01% | $0.463065 | 7.2488 | $3.36 | |
| BASE | <0.01% | $0.030528 | 105.5279 | $3.22 | |
| BASE | <0.01% | $0.106004 | 29.9615 | $3.18 | |
| BASE | <0.01% | $0.00533 | 595.1049 | $3.17 | |
| BASE | <0.01% | $174.4 | 0.018 | $3.15 | |
| BASE | <0.01% | $0.006608 | 468.453 | $3.1 | |
| BASE | <0.01% | $0.00009 | 34,186.0138 | $3.07 | |
| BASE | <0.01% | $0.042605 | 71.0923 | $3.03 | |
| BASE | <0.01% | $0.995159 | 3.0156 | $3 | |
| BASE | <0.01% | $0.070351 | 42.3721 | $2.98 | |
| BASE | <0.01% | $0.031927 | 92.8954 | $2.97 | |
| BASE | <0.01% | $0.001308 | 2,200.9332 | $2.88 | |
| BASE | <0.01% | $0.007288 | 392.3495 | $2.86 | |
| BASE | <0.01% | $0.124568 | 22.9072 | $2.85 | |
| BASE | <0.01% | $76,388 | 0.00003689 | $2.82 | |
| BASE | <0.01% | $0.015199 | 181.0522 | $2.75 | |
| BASE | <0.01% | $3.4 | 0.7931 | $2.7 | |
| BASE | <0.01% | $1.18 | 2.2843 | $2.7 | |
| BASE | <0.01% | $0.00 | 1,544 | $0.00 | |
| BASE | <0.01% | $0.00318 | 816.5326 | $2.6 | |
| BASE | <0.01% | $0.002687 | 934.0124 | $2.51 | |
| BASE | <0.01% | $0.020784 | 117.4207 | $2.44 | |
| BASE | <0.01% | $0.000732 | 3,304.1918 | $2.42 | |
| BASE | <0.01% | $1,975.17 | 0.00122188 | $2.41 | |
| BASE | <0.01% | $0.000487 | 4,928.3739 | $2.4 | |
| BASE | <0.01% | $0.135374 | 17.1835 | $2.33 | |
| BASE | <0.01% | $0.009887 | 226.6189 | $2.24 | |
| BASE | <0.01% | $0.021162 | 105.0199 | $2.22 | |
| BASE | <0.01% | <$0.000001 | 13,079,692.2105 | $2.21 | |
| BASE | <0.01% | $0.101169 | 21.797 | $2.21 | |
| BASE | <0.01% | $0.00134 | 1,593.5061 | $2.13 | |
| BASE | <0.01% | $0.008983 | 231.4454 | $2.08 | |
| BASE | <0.01% | $0.000081 | 24,269.1974 | $1.96 | |
| BASE | <0.01% | $0.005746 | 338.1838 | $1.94 | |
| BASE | <0.01% | $1 | 1.8003 | $1.8 | |
| BASE | <0.01% | $0.056031 | 31.3913 | $1.76 | |
| BASE | <0.01% | $0.003646 | 481.7768 | $1.76 | |
| BASE | <0.01% | <$0.000001 | 218,765,034.7109 | $1.75 | |
| BASE | <0.01% | $0.492643 | 3.3926 | $1.67 | |
| BASE | <0.01% | $1.2 | 1.3149 | $1.58 | |
| BASE | <0.01% | $0.000001 | 1,331,089.0043 | $1.57 | |
| BASE | <0.01% | $1.06 | 1.4371 | $1.53 | |
| BASE | <0.01% | $0.013803 | 110.4094 | $1.52 | |
| BASE | <0.01% | $0.999803 | 1.5131 | $1.51 | |
| BASE | <0.01% | $0.999739 | 1.4478 | $1.45 | |
| BASE | <0.01% | $0.003983 | 358.8969 | $1.43 | |
| BASE | <0.01% | $0.000125 | 11,281.7259 | $1.41 | |
| BASE | <0.01% | $0.953067 | 1.4369 | $1.37 | |
| BASE | <0.01% | $0.026536 | 51.1347 | $1.36 | |
| BASE | <0.01% | $2,286.55 | 0.00059295 | $1.36 | |
| BASE | <0.01% | $0.997097 | 1.3544 | $1.35 | |
| BASE | <0.01% | $0.000274 | 4,880.1499 | $1.34 | |
| BASE | <0.01% | $0.016868 | 75.0942 | $1.27 | |
| BASE | <0.01% | $0.001176 | 1,073.7686 | $1.26 | |
| BASE | <0.01% | $0.136763 | 9.0372 | $1.24 | |
| BASE | <0.01% | $0.013077 | 93.7608 | $1.23 | |
| BASE | <0.01% | $2.31 | 0.5191 | $1.2 | |
| BASE | <0.01% | $0.005167 | 230.5634 | $1.19 | |
| BASE | <0.01% | $0.996523 | 1.1808 | $1.18 | |
| BASE | <0.01% | $0.000001 | 1,125,704.0836 | $1.16 | |
| BASE | <0.01% | $0.007605 | 143.77 | $1.09 | |
| BASE | <0.01% | $0.090546 | 11.894 | $1.08 | |
| BASE | <0.01% | $2,269 | 0.00047419 | $1.08 | |
| BASE | <0.01% | $0.232521 | 4.5843 | $1.07 | |
| BASE | <0.01% | $0.019219 | 54.1289 | $1.04 | |
| BASE | <0.01% | $0.558813 | 1.8595 | $1.04 | |
| BASE | <0.01% | $0.958285 | 1.0229 | $0.9801 | |
| BASE | <0.01% | $0.211042 | 4.5085 | $0.9514 | |
| BASE | <0.01% | $0.00 | 839.1455 | $0.00 | |
| BASE | <0.01% | $0.013106 | 69.735 | $0.9139 | |
| BASE | <0.01% | $0.049673 | 18.0795 | $0.898 | |
| BASE | <0.01% | $0.007783 | 112.1551 | $0.8728 | |
| BASE | <0.01% | $0.000996 | 870.2641 | $0.8666 | |
| BASE | <0.01% | $0.054595 | 15.6473 | $0.8542 | |
| BASE | <0.01% | $76,738 | 0.00001099 | $0.8433 | |
| BASE | <0.01% | $0.00002 | 42,902.7944 | $0.8417 | |
| BASE | <0.01% | $1.09 | 0.7747 | $0.8405 | |
| BASE | <0.01% | $0.067087 | 12.1933 | $0.818 | |
| BASE | <0.01% | $2.04 | 0.3895 | $0.7945 | |
| BASE | <0.01% | $17.59 | 0.0441 | $0.7759 | |
| BASE | <0.01% | $0.008942 | 83.8081 | $0.7493 | |
| BASE | <0.01% | $0.00875 | 85.4303 | $0.7475 | |
| BASE | <0.01% | $0.104118 | 7.1669 | $0.7462 | |
| BASE | <0.01% | $0.053461 | 13.9525 | $0.7459 | |
| BASE | <0.01% | $0.725589 | 0.9878 | $0.7167 | |
| BASE | <0.01% | $0.001453 | 491.3675 | $0.7138 | |
| BASE | <0.01% | $0.000815 | 863.1715 | $0.7032 | |
| BASE | <0.01% | $0.000066 | 10,582.2782 | $0.6989 | |
| BASE | <0.01% | $0.000041 | 16,885.8809 | $0.6902 | |
| BASE | <0.01% | <$0.000001 | 140,909,453.8202 | $0.6763 | |
| BASE | <0.01% | $0.109406 | 6.1574 | $0.6736 | |
| BASE | <0.01% | $0.009127 | 73.7204 | $0.6728 | |
| BASE | <0.01% | <$0.000001 | 84,021,637.2921 | $0.6553 | |
| BASE | <0.01% | $0.007608 | 85.4741 | $0.6503 | |
| BASE | <0.01% | $0.000345 | 1,787.1757 | $0.6169 | |
| BASE | <0.01% | $0.000178 | 3,441 | $0.6136 | |
| BASE | <0.01% | $0.003464 | 166.1041 | $0.5753 | |
| BASE | <0.01% | $0.00014 | 3,991.0844 | $0.5584 | |
| BASE | <0.01% | $0.000072 | 7,671.3191 | $0.5534 | |
| BASE | <0.01% | $0.39204 | 1.4075 | $0.5517 | |
| BASE | <0.01% | $0.00 | 1.1541 | $0.00 | |
| BASE | <0.01% | $0.00001 | 53,483.905 | $0.5203 | |
| BASE | <0.01% | $0.020152 | 25.7197 | $0.5183 | |
| BASE | <0.01% | <$0.000001 | 1,295,388,984.4512 | $0.5181 | |
| BASE | <0.01% | $0.00334 | 154.6735 | $0.5166 | |
| BASE | <0.01% | $0.705862 | 0.7178 | $0.5066 | |
| BASE | <0.01% | $0.005724 | 87.7677 | $0.5023 | |
| BASE | <0.01% | $0.000221 | 2,216.2044 | $0.4895 | |
| BASE | <0.01% | $0.012399 | 39.4305 | $0.4888 | |
| BASE | <0.01% | $0.129151 | 3.7423 | $0.4833 | |
| BASE | <0.01% | $0.000068 | 6,518.8944 | $0.4434 | |
| BASE | <0.01% | <$0.000001 | 5,071,729.8578 | $0.4381 | |
| BASE | <0.01% | $0.156614 | 2.7659 | $0.4331 | |
| BASE | <0.01% | $0.000001 | 759,961.1293 | $0.4308 | |
| BASE | <0.01% | $0.418336 | 1.0174 | $0.4256 | |
| BASE | <0.01% | $0.012717 | 32.6358 | $0.415 | |
| BASE | <0.01% | $0.006476 | 64.0103 | $0.4145 | |
| BASE | <0.01% | $0.601032 | 0.6872 | $0.413 | |
| BASE | <0.01% | $0.00 | 2.0364 | $0.00 | |
| BASE | <0.01% | $0.558381 | 0.6994 | $0.3905 | |
| BASE | <0.01% | $0.059926 | 6.3399 | $0.3799 | |
| BASE | <0.01% | $0.001725 | 219.0046 | $0.3777 | |
| BASE | <0.01% | $0.002189 | 170.3591 | $0.3728 | |
| BASE | <0.01% | $0.004645 | 76.4074 | $0.3548 | |
| BASE | <0.01% | $0.00004 | 8,897.8897 | $0.3536 | |
| BASE | <0.01% | <$0.000001 | 5,087,575.5294 | $0.3495 | |
| BASE | <0.01% | $0.00559 | 62.1084 | $0.3471 | |
| BASE | <0.01% | $11.89 | 0.0285 | $0.3389 | |
| BASE | <0.01% | $0.003858 | 87.6578 | $0.3381 | |
| BASE | <0.01% | $0.584421 | 0.5762 | $0.3367 | |
| BASE | <0.01% | $0.050188 | 6.5299 | $0.3277 | |
| BASE | <0.01% | $0.029221 | 11.1802 | $0.3266 | |
| BASE | <0.01% | $0.016443 | 19.816 | $0.3258 | |
| BASE | <0.01% | $0.002122 | 149.8643 | $0.3179 | |
| BASE | <0.01% | $0.005021 | 63.1643 | $0.3171 | |
| BASE | <0.01% | $1.01 | 0.3124 | $0.3139 | |
| BASE | <0.01% | $0.00648 | 46.8258 | $0.3034 | |
| BASE | <0.01% | $0.000004 | 73,057.9631 | $0.283 | |
| BASE | <0.01% | $0.000027 | 10,464.4534 | $0.2785 | |
| BASE | <0.01% | $0.000839 | 329.6072 | $0.2765 | |
| BASE | <0.01% | $0.000171 | 1,607.1471 | $0.2744 | |
| BASE | <0.01% | $0.000746 | 364.2069 | $0.2718 | |
| BASE | <0.01% | $0.001278 | 208.4843 | $0.2664 | |
| BASE | <0.01% | $0.011967 | 21.9747 | $0.2629 | |
| BASE | <0.01% | $0.147834 | 1.7243 | $0.2549 | |
| BASE | <0.01% | $0.005293 | 47.8796 | $0.2534 | |
| BASE | <0.01% | $0.000172 | 1,432.4479 | $0.2462 | |
| BASE | <0.01% | $0.000009 | 26,668.6023 | $0.2429 | |
| BASE | <0.01% | $0.686823 | 0.353 | $0.2424 | |
| BASE | <0.01% | $0.018777 | 12.3649 | $0.2321 | |
| BASE | <0.01% | $1.94 | 0.1193 | $0.2314 | |
| BASE | <0.01% | $0.01278 | 17.7213 | $0.2264 | |
| BASE | <0.01% | $0.001252 | 174.345 | $0.2183 | |
| BASE | <0.01% | $0.037746 | 5.7047 | $0.2153 | |
| BASE | <0.01% | $0.055185 | 3.8913 | $0.2147 | |
| BASE | <0.01% | $0.000155 | 1,373.8497 | $0.2133 | |
| BASE | <0.01% | $0.003427 | 61.3057 | $0.21 | |
| BASE | <0.01% | $0.00 | 10.24 | $0.00 | |
| BASE | <0.01% | $0.000131 | 1,548.6474 | $0.2027 | |
| BASE | <0.01% | $0.000191 | 1,049.3027 | $0.1998 | |
| BASE | <0.01% | $0.000023 | 8,220.8239 | $0.191 | |
| BASE | <0.01% | $0.000991 | 192.524 | $0.1907 | |
| BASE | <0.01% | $0.11949 | 1.5945 | $0.1905 | |
| BASE | <0.01% | $0.000626 | 299.6161 | $0.1876 | |
| BASE | <0.01% | $0.000191 | 976.6809 | $0.1864 | |
| BASE | <0.01% | $0.019495 | 9.4814 | $0.1848 | |
| BASE | <0.01% | $0.015229 | 11.9019 | $0.1812 | |
| BASE | <0.01% | <$0.000001 | 640,509.0435 | $0.174 | |
| BASE | <0.01% | $0.000106 | 1,596.0845 | $0.1699 | |
| BASE | <0.01% | $0.000307 | 552.392 | $0.1693 | |
| BASE | <0.01% | $76,285 | 0.00000221 | $0.1689 | |
| BASE | <0.01% | $0.009998 | 16.4616 | $0.1645 | |
| BASE | <0.01% | $0.000379 | 427.6345 | $0.1621 | |
| BASE | <0.01% | $0.127303 | 1.2632 | $0.1608 | |
| BASE | <0.01% | $0.08381 | 1.8307 | $0.1534 | |
| BASE | <0.01% | $0.00 | 4.624 | $0.00 | |
| BASE | <0.01% | $0.000001 | 246,373.2666 | $0.1486 | |
| BASE | <0.01% | $0.870857 | 0.1694 | $0.1474 | |
| BASE | <0.01% | $0.000002 | 71,797.6357 | $0.1471 | |
| BASE | <0.01% | $0.169349 | 0.8532 | $0.1444 | |
| BASE | <0.01% | $0.999865 | 0.1437 | $0.1436 | |
| BASE | <0.01% | $0.000078 | 1,831.753 | $0.1428 | |
| BASE | <0.01% | $0.00001 | 13,368.8328 | $0.139 | |
| BASE | <0.01% | $0.016229 | 8.5378 | $0.1385 | |
| BASE | <0.01% | $0.04046 | 3.3771 | $0.1366 | |
| BASE | <0.01% | $0.020261 | 6.6837 | $0.1354 | |
| BASE | <0.01% | $0.000827 | 162.6104 | $0.1344 | |
| BASE | <0.01% | $0.463533 | 0.2874 | $0.1332 | |
| BASE | <0.01% | $0.000018 | 7,539.9959 | $0.1331 | |
| BASE | <0.01% | $0.119533 | 1.0867 | $0.1298 | |
| BASE | <0.01% | $0.051184 | 2.4461 | $0.1251 | |
| BASE | <0.01% | $0.000008 | 15,418.169 | $0.1218 | |
| BASE | <0.01% | $0.000004 | 30,817.8093 | $0.1177 | |
| BASE | <0.01% | $0.000003 | 42,894.9832 | $0.1153 | |
| BASE | <0.01% | $0.993795 | 0.1151 | $0.1143 | |
| BASE | <0.01% | $0.169228 | 0.6717 | $0.1136 | |
| BASE | <0.01% | $0.000196 | 575.6051 | $0.1127 | |
| BASE | <0.01% | $0.282251 | 0.391 | $0.1103 | |
| BASE | <0.01% | $0.000128 | 855.88 | $0.1092 | |
| BASE | <0.01% | $147.83 | 0.0006966 | $0.1029 | |
| BASE | <0.01% | $0.000001 | 133,141.912 | $0.1016 | |
| BASE | <0.01% | $0.00042 | 239.0794 | $0.1004 | |
| AVAX | 0.46% | $1 | 3,450.978 | $3,451.04 | |
| AVAX | 0.13% | $0.00 | 999.5996 | $0.00 | |
| AVAX | 0.10% | $9 | 86.5377 | $779.25 | |
| AVAX | 0.07% | $76,248 | 0.00668978 | $510.08 | |
| AVAX | 0.06% | $9 | 53.4238 | $481.04 | |
| AVAX | 0.04% | $2,263.38 | 0.1489 | $336.92 | |
| AVAX | 0.02% | $12.51 | 9.6949 | $121.28 | |
| AVAX | 0.01% | $5,009.63 | 0.0155 | $77.56 | |
| AVAX | <0.01% | $0.999637 | 31.8669 | $31.86 | |
| AVAX | <0.01% | $0.036498 | 775.0695 | $28.29 | |
| AVAX | <0.01% | $1.18 | 9.2445 | $10.89 | |
| AVAX | <0.01% | $67,834.84 | 0.0001387 | $9.41 | |
| AVAX | <0.01% | $67,834.84 | 0.00013264 | $9 | |
| AVAX | <0.01% | $76,284 | 0.00009705 | $7.4 | |
| AVAX | <0.01% | $0.000951 | 6,054.6423 | $5.76 | |
| AVAX | <0.01% | $0.025653 | 196.9661 | $5.05 | |
| AVAX | <0.01% | $0.028154 | 171.9141 | $4.84 | |
| AVAX | <0.01% | $0.009434 | 505.7177 | $4.77 | |
| AVAX | <0.01% | <$0.000001 | 31,968,793.2593 | $2.83 | |
| AVAX | <0.01% | $0.001924 | 1,375.4468 | $2.65 | |
| AVAX | <0.01% | $8.85 | 0.2737 | $2.42 | |
| AVAX | <0.01% | $1.3 | 1.7696 | $2.3 | |
| AVAX | <0.01% | $1 | 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% | $0.999721 | 1.6408 | $1.64 | |
| AVAX | <0.01% | $264,122 | 0.00000581 | $1.53 | |
| AVAX | <0.01% | $119.01 | 0.0126 | $1.5 | |
| AVAX | <0.01% | $13.09 | 0.0965 | $1.26 | |
| AVAX | <0.01% | $119.42 | 0.00900466 | $1.08 | |
| AVAX | <0.01% | $0.006418 | 140.9587 | $0.9046 | |
| AVAX | <0.01% | $1.72 | 0.4224 | $0.7264 | |
| AVAX | <0.01% | $0.99981 | 0.6728 | $0.6726 | |
| AVAX | <0.01% | $0.008042 | 81.4432 | $0.6549 | |
| AVAX | <0.01% | $103.18 | 0.00624926 | $0.6447 | |
| AVAX | <0.01% | <$0.000001 | 344,361,983.6194 | $0.5854 | |
| AVAX | <0.01% | $0.149275 | 3.7995 | $0.5671 | |
| AVAX | <0.01% | $0.999965 | 0.5469 | $0.5469 | |
| AVAX | <0.01% | $0.991318 | 0.5387 | $0.534 | |
| AVAX | <0.01% | $0.007047 | 75.1323 | $0.5294 | |
| AVAX | <0.01% | $0.999617 | 0.4749 | $0.4747 | |
| AVAX | <0.01% | $1.22 | 0.3578 | $0.4364 | |
| AVAX | <0.01% | $0.013287 | 29.1805 | $0.3877 | |
| AVAX | <0.01% | $8.06 | 0.0356 | $0.2871 | |
| AVAX | <0.01% | $0.000355 | 738.219 | $0.2619 | |
| AVAX | <0.01% | $0.000185 | 1,392.0361 | $0.2569 | |
| AVAX | <0.01% | $0.000291 | 623.3117 | $0.1814 | |
| AVAX | <0.01% | $0.045034 | 3.3839 | $0.1523 | |
| AVAX | <0.01% | $0.037398 | 3.5817 | $0.1339 | |
| AVAX | <0.01% | $0.000883 | 125.3944 | $0.1107 | |
| POL | 0.11% | $0.999945 | 803.7579 | $803.71 | |
| POL | 0.09% | $0.998295 | 689.2774 | $688.1 | |
| POL | 0.07% | $0.99978 | 555.5808 | $555.46 | |
| POL | 0.06% | $1,975.55 | 0.2312 | $456.72 | |
| POL | 0.06% | $76,114 | 0.00556458 | $423.54 | |
| POL | 0.02% | $0.107331 | 1,435.9799 | $154.13 | |
| POL | 0.02% | $0.00 | 140.5431 | $0.00 | |
| POL | <0.01% | $8.85 | 8.085 | $71.55 | |
| POL | <0.01% | $2,773.1 | 0.0175 | $48.54 | |
| POL | <0.01% | $119.01 | 0.3522 | $41.92 | |
| POL | <0.01% | $0.107402 | 330.1514 | $35.46 | |
| POL | <0.01% | $64,957 | 0.00026375 | $17.13 | |
| POL | <0.01% | $0.142558 | 119.7573 | $17.07 | |
| POL | <0.01% | $0.111672 | 123.0704 | $13.74 | |
| POL | <0.01% | $0.192298 | 65.092 | $12.52 | |
| POL | <0.01% | $85.24 | 0.1364 | $11.63 | |
| POL | <0.01% | $0.002784 | 3,632.84 | $10.11 | |
| POL | <0.01% | $5,135.4 | 0.00185623 | $9.53 | |
| POL | <0.01% | $0.000021 | 369,995.512 | $7.85 | |
| POL | <0.01% | $0.082668 | 86.7692 | $7.17 | |
| 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.99791 | 5.149 | $5.14 | |
| POL | <0.01% | $0.008907 | 470.7073 | $4.19 | |
| POL | <0.01% | $3.57 | 1.151 | $4.11 | |
| POL | <0.01% | $0.00 | 0.0306 | $0.00 | |
| POL | <0.01% | $0.00001 | 371,035.1904 | $3.71 | |
| POL | <0.01% | $2.08 | 1.6156 | $3.36 | |
| POL | <0.01% | $1.18 | 2.7608 | $3.26 | |
| POL | <0.01% | $1.18 | 2.7608 | $3.26 | |
| POL | <0.01% | $0.788261 | 4.0804 | $3.22 | |
| POL | <0.01% | $0.01083 | 251.8196 | $2.73 | |
| POL | <0.01% | $0.000531 | 5,088.3274 | $2.7 | |
| POL | <0.01% | $0.993867 | 2.527 | $2.51 | |
| POL | <0.01% | $0.426247 | 5.7161 | $2.44 | |
| POL | <0.01% | $0.012071 | 183.4957 | $2.21 | |
| POL | <0.01% | $0.109011 | 19.1092 | $2.08 | |
| POL | <0.01% | $0.794401 | 2.5005 | $1.99 | |
| POL | <0.01% | $0.232574 | 8.5268 | $1.98 | |
| POL | <0.01% | $0.040388 | 48.3873 | $1.95 | |
| POL | <0.01% | $4,545.39 | 0.00041394 | $1.88 | |
| POL | <0.01% | $0.999617 | 1.8334 | $1.83 | |
| POL | <0.01% | $0.053457 | 33.7017 | $1.8 | |
| POL | <0.01% | $0.191894 | 9.2122 | $1.77 | |
| POL | <0.01% | $1.26 | 1.39 | $1.75 | |
| POL | <0.01% | $0.009445 | 172.7727 | $1.63 | |
| POL | <0.01% | $0.107712 | 14.8731 | $1.6 | |
| POL | <0.01% | $1.24 | 1.1677 | $1.45 | |
| POL | <0.01% | <$0.000001 | 10,073,242.6591 | $1.43 | |
| POL | <0.01% | $17.6 | 0.0797 | $1.4 | |
| POL | <0.01% | $0.027075 | 51.3719 | $1.39 | |
| POL | <0.01% | $0.448518 | 2.6564 | $1.19 | |
| POL | <0.01% | $1,975.17 | 0.00059476 | $1.17 | |
| POL | <0.01% | $0.000024 | 46,727.3088 | $1.14 | |
| POL | <0.01% | $0.027405 | 38.8917 | $1.07 | |
| POL | <0.01% | $147.83 | 0.00708642 | $1.05 | |
| POL | <0.01% | $1,529.95 | 0.00067531 | $1.03 | |
| POL | <0.01% | $0.006418 | 157.6321 | $1.01 | |
| POL | <0.01% | $0.998438 | 0.9809 | $0.9793 | |
| POL | <0.01% | $1.44 | 0.645 | $0.9287 | |
| POL | <0.01% | $0.16461 | 5.5465 | $0.913 | |
| POL | <0.01% | $0.111737 | 8.0284 | $0.897 | |
| POL | <0.01% | $0.007047 | 123.0349 | $0.8669 | |
| POL | <0.01% | $123.86 | 0.00688331 | $0.8525 | |
| POL | <0.01% | $0.999637 | 0.8289 | $0.8286 | |
| POL | <0.01% | $0.138403 | 5.9362 | $0.8215 | |
| POL | <0.01% | $0.193146 | 4.0853 | $0.789 | |
| POL | <0.01% | $0.000264 | 2,933.2226 | $0.7749 | |
| POL | <0.01% | $0.00001 | 76,051.0732 | $0.7555 | |
| POL | <0.01% | $0.123414 | 5.9193 | $0.7305 | |
| POL | <0.01% | $0.000669 | 1,037.3142 | $0.6935 | |
| POL | <0.01% | $0.024055 | 28.0681 | $0.6751 | |
| POL | <0.01% | $2,314.06 | 0.00026687 | $0.6175 | |
| POL | <0.01% | $0.03708 | 15.9069 | $0.5898 | |
| POL | <0.01% | $0.007168 | 82.1003 | $0.5884 | |
| POL | <0.01% | $0.99999 | 0.5524 | $0.5523 | |
| POL | <0.01% | $0.008379 | 64.2118 | $0.538 | |
| POL | <0.01% | $0.009966 | 52.2014 | $0.5202 | |
| POL | <0.01% | $1.72 | 0.2966 | $0.5101 | |
| POL | <0.01% | $0.000006 | 82,174.819 | $0.5043 | |
| POL | <0.01% | $0.282597 | 1.7779 | $0.5024 | |
| POL | <0.01% | $0.001069 | 445.5109 | $0.476 | |
| POL | <0.01% | $0.999006 | 0.4508 | $0.4503 | |
| POL | <0.01% | $0.99981 | 0.4369 | $0.4368 | |
| POL | <0.01% | $0.00158 | 275.5254 | $0.4352 | |
| POL | <0.01% | $0.199402 | 2.0886 | $0.4164 | |
| POL | <0.01% | $0.055555 | 7.4739 | $0.4152 | |
| POL | <0.01% | $0.000328 | 1,256.1762 | $0.4117 | |
| POL | <0.01% | $0.1427 | 2.8296 | $0.4037 | |
| POL | <0.01% | $1 | 0.4016 | $0.4015 | |
| POL | <0.01% | $0.07832 | 5.059 | $0.3962 | |
| POL | <0.01% | $0.032384 | 12.1163 | $0.3923 | |
| POL | <0.01% | $0.227865 | 1.6938 | $0.3859 | |
| POL | <0.01% | $0.098359 | 3.5526 | $0.3494 | |
| POL | <0.01% | $1,975.56 | 0.00017634 | $0.3483 | |
| POL | <0.01% | $6.36 | 0.0541 | $0.344 | |
| POL | <0.01% | $0.157587 | 2.1279 | $0.3353 | |
| POL | <0.01% | $0.107295 | 3.0865 | $0.3311 | |
| POL | <0.01% | $0.006877 | 47.7111 | $0.3281 | |
| POL | <0.01% | $0.000108 | 3,010.358 | $0.3252 | |
| POL | <0.01% | $45.52 | 0.0071366 | $0.3248 | |
| POL | <0.01% | $0.048724 | 6.585 | $0.3208 | |
| POL | <0.01% | $0.175755 | 1.7952 | $0.3155 | |
| POL | <0.01% | $0.004742 | 65.4857 | $0.3105 | |
| POL | <0.01% | $0.008511 | 36.1038 | $0.3072 | |
| POL | <0.01% | $0.00281 | 106.8274 | $0.3001 | |
| POL | <0.01% | <$0.000001 | 5,851,703.3948 | $0.2996 | |
| POL | <0.01% | $0.002391 | 124.8537 | $0.2985 | |
| POL | <0.01% | $0.109063 | 2.6332 | $0.2871 | |
| POL | <0.01% | $0.027972 | 10.0242 | $0.2803 | |
| POL | <0.01% | $0.000001 | 272,292.1289 | $0.2636 | |
| POL | <0.01% | $17 | 0.0151 | $0.2569 | |
| POL | <0.01% | $0.148049 | 1.6086 | $0.2381 | |
| POL | <0.01% | $0.094747 | 2.4598 | $0.233 | |
| POL | <0.01% | $0.011694 | 19.7298 | $0.2307 | |
| POL | <0.01% | $71,100 | 0.00000317 | $0.2254 | |
| POL | <0.01% | $0.032826 | 6.5929 | $0.2164 | |
| POL | <0.01% | $0.09525 | 2.2715 | $0.2163 | |
| POL | <0.01% | $0.00423 | 49.6642 | $0.21 | |
| POL | <0.01% | $0.149553 | 1.3694 | $0.2047 | |
| POL | <0.01% | $0.000274 | 745.2088 | $0.2039 | |
| POL | <0.01% | $0.021359 | 8.9688 | $0.1915 | |
| POL | <0.01% | $0.000006 | 30,528.6332 | $0.1898 | |
| POL | <0.01% | $0.000008 | 22,869.2921 | $0.1895 | |
| POL | <0.01% | $0.000455 | 396.8293 | $0.1807 | |
| POL | <0.01% | $0.092782 | 1.9226 | $0.1783 | |
| POL | <0.01% | $0.000155 | 1,124.5533 | $0.1743 | |
| POL | <0.01% | $0.558351 | 0.3098 | $0.1729 | |
| POL | <0.01% | $0.872195 | 0.1959 | $0.1708 | |
| POL | <0.01% | $0.057106 | 2.9909 | $0.1707 | |
| POL | <0.01% | $0.000556 | 304.6598 | $0.1693 | |
| POL | <0.01% | $0.016054 | 10.4185 | $0.1672 | |
| POL | <0.01% | $0.000074 | 2,201.4312 | $0.163 | |
| POL | <0.01% | $0.001115 | 143.7004 | $0.1602 | |
| POL | <0.01% | $0.000034 | 4,668.9048 | $0.1579 | |
| POL | <0.01% | $0.001843 | 84.5058 | $0.1557 | |
| POL | <0.01% | $0.00 | 28.9735 | $0.00 | |
| POL | <0.01% | $3.38 | 0.0399 | $0.1349 | |
| POL | <0.01% | $9 | 0.015 | $0.1345 | |
| POL | <0.01% | $0.162066 | 0.8269 | $0.134 | |
| POL | <0.01% | $0.152561 | 0.8487 | $0.1294 | |
| POL | <0.01% | $0.000028 | 4,555.3497 | $0.1254 | |
| POL | <0.01% | $0.005039 | 24.8125 | $0.125 | |
| POL | <0.01% | $0.00004 | 3,111.6958 | $0.1237 | |
| POL | <0.01% | $0.001069 | 114.0083 | $0.1218 | |
| POL | <0.01% | $0.00 | 84.8339 | $0.00 | |
| POL | <0.01% | $0.000366 | 332.0365 | $0.1213 | |
| POL | <0.01% | $0.000315 | 379.9847 | $0.1198 | |
| POL | <0.01% | $0.00012 | 977.3567 | $0.1169 | |
| POL | <0.01% | $0.000844 | 124.5136 | $0.105 | |
| POL | <0.01% | $0.321578 | 0.3228 | $0.1037 | |
| POL | <0.01% | $0.092508 | 1.1052 | $0.1022 | |
| POL | <0.01% | $0.153953 | 0.6561 | $0.101 | |
| OP | 0.13% | $0.999945 | 974.5385 | $974.48 | |
| OP | 0.04% | $1,975.02 | 0.1417 | $279.83 | |
| OP | 0.03% | $76,114 | 0.00282695 | $215.17 | |
| OP | 0.03% | $2,263.38 | 0.0903 | $204.33 | |
| OP | 0.02% | $0.99971 | 122.2036 | $122.17 | |
| OP | 0.01% | $0.859273 | 109.1266 | $93.77 | |
| OP | <0.01% | $0.999945 | 71.4736 | $71.47 | |
| OP | <0.01% | $71,128 | 0.00089345 | $63.55 | |
| OP | <0.01% | $1.34 | 39.0969 | $52.39 | |
| OP | <0.01% | $0.014968 | 3,464.5203 | $51.86 | |
| OP | <0.01% | $2,773.1 | 0.0104 | $28.76 | |
| OP | <0.01% | $0.125832 | 124.9601 | $15.72 | |
| OP | <0.01% | $0.426247 | 35.1451 | $14.98 | |
| OP | <0.01% | $1.01 | 13.5098 | $13.58 | |
| OP | <0.01% | $2,314.06 | 0.00340619 | $7.88 | |
| OP | <0.01% | $0.99978 | 7.0309 | $7.03 | |
| OP | <0.01% | $121.62 | 0.0413 | $5.02 | |
| OP | <0.01% | $119.01 | 0.0384 | $4.57 | |
| OP | <0.01% | $0.382703 | 9.7949 | $3.75 | |
| OP | <0.01% | $8.85 | 0.316 | $2.8 | |
| OP | <0.01% | $0.01955 | 88.4015 | $1.73 | |
| OP | <0.01% | $1,810.99 | 0.00087696 | $1.59 | |
| OP | <0.01% | $0.149275 | 7.8815 | $1.18 | |
| OP | <0.01% | $0.99981 | 1.0912 | $1.09 | |
| OP | <0.01% | $0.99791 | 0.9385 | $0.9365 | |
| OP | <0.01% | $0.00 | 0.00035519 | $0.00 | |
| OP | <0.01% | $1.72 | 0.4722 | $0.8121 | |
| OP | <0.01% | $2,627.86 | 0.0002802 | $0.7363 | |
| OP | <0.01% | $3.57 | 0.1932 | $0.6898 | |
| OP | <0.01% | $0.075985 | 8.7081 | $0.6616 | |
| OP | <0.01% | $0.135315 | 4.3186 | $0.5843 | |
| OP | <0.01% | $0.999739 | 0.5534 | $0.5532 | |
| OP | <0.01% | $1 | 0.403 | $0.4037 | |
| OP | <0.01% | $0.00 | 5,525.5703 | $0.00 | |
| OP | <0.01% | $0.961836 | 0.3707 | $0.3565 | |
| OP | <0.01% | $0.00729 | 48.0176 | $0.35 | |
| OP | <0.01% | $0.149433 | 2.3159 | $0.346 | |
| OP | <0.01% | $6.95 | 0.0491 | $0.3414 | |
| OP | <0.01% | $0.00 | 0.2808 | $0.00 | |
| OP | <0.01% | $1.2 | 0.174 | $0.2088 | |
| OP | <0.01% | $2,188.23 | 0.00009333 | $0.2042 | |
| OP | <0.01% | $0.998438 | 0.2017 | $0.2013 | |
| OP | <0.01% | $103.18 | 0.00180054 | $0.1857 | |
| OP | <0.01% | $1,975.17 | 0.00008403 | $0.1659 | |
| OP | <0.01% | $0.014968 | 10.4355 | $0.1562 | |
| OP | <0.01% | $8.06 | 0.0194 | $0.1561 | |
| OP | <0.01% | $0.035322 | 3.8993 | $0.1377 | |
| OP | <0.01% | $0.004156 | 31.7264 | $0.1318 | |
| OP | <0.01% | $0.000746 | 164.0278 | $0.1222 | |
| OP | <0.01% | $0.052453 | 2.1686 | $0.1137 | |
| OP | <0.01% | $0.031934 | 3.4 | $0.1085 | |
| UNI | 0.10% | $0.999945 | 777.5999 | $777.56 | |
| UNI | 0.04% | $1,975.34 | 0.1711 | $337.96 | |
| UNI | 0.04% | $0.998295 | 336.1466 | $335.57 | |
| UNI | 0.03% | $2,263.48 | 0.1018 | $230.39 | |
| UNI | <0.01% | $67,861.17 | 0.00081577 | $55.36 | |
| UNI | <0.01% | $32.94 | 1.1836 | $38.99 | |
| UNI | <0.01% | $99.2 | 0.1125 | $11.16 | |
| UNI | <0.01% | $3.57 | 1.274 | $4.55 | |
| UNI | <0.01% | $0.00003 | 38,445.711 | $1.15 | |
| GNO | 0.05% | $2,258.88 | 0.1631 | $368.39 | |
| GNO | 0.03% | $120.52 | 1.828 | $220.32 | |
| GNO | 0.02% | $0.999932 | 168.4816 | $168.47 | |
| GNO | 0.02% | $1.18 | 138.519 | $163.45 | |
| GNO | 0.02% | $1.18 | 138.519 | $163.45 | |
| GNO | 0.02% | $0.9999 | 163.1351 | $163.12 | |
| GNO | 0.01% | $0.999932 | 103.1957 | $103.19 | |
| GNO | 0.01% | $0.210566 | 469.5667 | $98.87 | |
| GNO | <0.01% | $0.106705 | 184.5095 | $19.69 | |
| GNO | <0.01% | $2,767.96 | 0.00635058 | $17.58 | |
| GNO | <0.01% | $0.9999 | 16.6481 | $16.65 | |
| GNO | <0.01% | $1.22 | 13.5552 | $16.54 | |
| GNO | <0.01% | $0.999739 | 10.413 | $10.41 | |
| GNO | <0.01% | $0.999617 | 5.2871 | $5.29 | |
| GNO | <0.01% | $0.040388 | 97.6475 | $3.94 | |
| GNO | <0.01% | $76,177 | 0.00004957 | $3.78 | |
| GNO | <0.01% | $424.64 | 0.00649368 | $2.76 | |
| GNO | <0.01% | $8.85 | 0.2255 | $2 | |
| GNO | <0.01% | $1.29 | 1.068 | $1.38 | |
| GNO | <0.01% | $0.000608 | 1,788.7358 | $1.09 | |
| GNO | <0.01% | $0.99966 | 1.0763 | $1.08 | |
| GNO | <0.01% | $738.36 | 0.00143038 | $1.06 | |
| GNO | <0.01% | $0.192298 | 5.3794 | $1.03 | |
| GNO | <0.01% | $0.99981 | 0.7541 | $0.7539 | |
| GNO | <0.01% | $0.992463 | 0.5518 | $0.5476 | |
| GNO | <0.01% | $1,975.17 | 0.00021641 | $0.4274 | |
| GNO | <0.01% | $1.18 | 0.2198 | $0.2593 | |
| GNO | <0.01% | $0.998436 | 0.2433 | $0.2428 | |
| GNO | <0.01% | $0.14794 | 1.552 | $0.2296 | |
| GNO | <0.01% | $2,314.06 | 0.00007109 | $0.1645 | |
| SONIC | <0.01% | $0.798156 | 26.274 | $20.97 | |
| SONIC | <0.01% | $0.999856 | 13.8309 | $13.83 | |
| SONIC | <0.01% | $0.001214 | 9,402.9424 | $11.42 | |
| SONIC | <0.01% | $0.053892 | 205.196 | $11.06 | |
| SONIC | <0.01% | $0.999613 | 3.8477 | $3.85 | |
| SONIC | <0.01% | $2,263.38 | 0.00095786 | $2.17 | |
| SONIC | <0.01% | $0.999792 | 1.3998 | $1.4 | |
| SONIC | <0.01% | $0.051182 | 21.8972 | $1.12 | |
| SONIC | <0.01% | $0.042723 | 21.3148 | $0.910631 | |
| SONIC | <0.01% | $0.005963 | 144.504 | $0.8616 | |
| PLASMA | <0.01% | $0.093891 | 0.068 | $0.006387 |
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ 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.