ETH Price: $2,475.86 (+2.18%)

Contract

0x90CbE4BDd538D6e9b379bFF5fE72c3d67A521De5

Overview

ETH Balance

0.796255782069260762 ETH

ETH Value

$1,971.42 (@ $2,475.86/ETH)

Token Holdings

More Info

Private Name Tags

Age:1H
Reset Filter

Transaction Hash
Method
Block
From
To

There are no matching entries

> 10 Internal Transactions and > 10 Token Transfers found.

Latest 25 internal transactions (View All)

Advanced mode:
Parent Transaction Hash Block From To
1368303322025-06-07 1:24:0119 secs ago1749259441
0x90CbE4BD...67A521De5
0.00000053176 ETH
1368291702025-06-07 0:45:1739 mins ago1749257117
0x90CbE4BD...67A521De5
0.000039 ETH
1368291252025-06-07 0:43:4740 mins ago1749257027
0x90CbE4BD...67A521De5
0.00006 ETH
1368290892025-06-07 0:42:3541 mins ago1749256955
0x90CbE4BD...67A521De5
0.000036 ETH
1368290512025-06-07 0:41:1943 mins ago1749256879
0x90CbE4BD...67A521De5
0.00003 ETH
1368290492025-06-07 0:41:1543 mins ago1749256875
0x90CbE4BD...67A521De5
0.000045 ETH
1368290262025-06-07 0:40:2943 mins ago1749256829
0x90CbE4BD...67A521De5
0.000039 ETH
1368289382025-06-07 0:37:3346 mins ago1749256653
0x90CbE4BD...67A521De5
0.000027 ETH
1368288682025-06-07 0:35:1349 mins ago1749256513
0x90CbE4BD...67A521De5
0.00003 ETH
1368288292025-06-07 0:33:5550 mins ago1749256435
0x90CbE4BD...67A521De5
0.00003 ETH
1368287312025-06-07 0:30:3953 mins ago1749256239
0x90CbE4BD...67A521De5
0.00006 ETH
1368285972025-06-07 0:26:1158 mins ago1749255971
0x90CbE4BD...67A521De5
0.000036 ETH
1368285772025-06-07 0:25:3158 mins ago1749255931
0x90CbE4BD...67A521De5
0.000006 ETH
1368285612025-06-07 0:24:591 hrs ago1749255899
0x90CbE4BD...67A521De5
0.000036 ETH
1368285462025-06-07 0:24:291 hrs ago1749255869
0x90CbE4BD...67A521De5
0.000006 ETH
1368285282025-06-07 0:23:531 hr ago1749255833
0x90CbE4BD...67A521De5
0.000024 ETH
1368284882025-06-07 0:22:331 hr ago1749255753
0x90CbE4BD...67A521De5
0.0000642 ETH
1368284822025-06-07 0:22:211 hr ago1749255741
0x90CbE4BD...67A521De5
0.000024 ETH
1368284622025-06-07 0:21:411 hr ago1749255701
0x90CbE4BD...67A521De5
0.00006 ETH
1368284612025-06-07 0:21:391 hr ago1749255699
0x90CbE4BD...67A521De5
0.00003 ETH
1368284572025-06-07 0:21:311 hr ago1749255691
0x90CbE4BD...67A521De5
0.0000456 ETH
1368284152025-06-07 0:20:071 hr ago1749255607
0x90CbE4BD...67A521De5
0.000039 ETH
1368284112025-06-07 0:19:591 hr ago1749255599
0x90CbE4BD...67A521De5
0.00006 ETH
1368283912025-06-07 0:19:191 hr ago1749255559
0x90CbE4BD...67A521De5
0.00006 ETH
1368283882025-06-07 0:19:131 hr ago1749255553
0x90CbE4BD...67A521De5
0.000036 ETH
View All Internal Transactions

Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x91FaD5D4...6f9a7a5bD
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
BeaconProxy

Compiler Version
v0.8.23+commit.f704f362

Optimization Enabled:
Yes with 1000000 runs

Other Settings:
shanghai EvmVersion
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (proxy/beacon/BeaconProxy.sol)

pragma solidity ^0.8.20;

import {IBeacon} from "./IBeacon.sol";
import {Proxy} from "../Proxy.sol";
import {ERC1967Utils} from "../ERC1967/ERC1967Utils.sol";

/**
 * @dev This contract implements a proxy that gets the implementation address for each call from an {UpgradeableBeacon}.
 *
 * The beacon address can only be set once during construction, and cannot be changed afterwards. It is stored in an
 * immutable variable to avoid unnecessary storage reads, and also in the beacon storage slot specified by
 * https://eips.ethereum.org/EIPS/eip-1967[ERC-1967] so that it can be accessed externally.
 *
 * CAUTION: Since the beacon address can never be changed, you must ensure that you either control the beacon, or trust
 * the beacon to not upgrade the implementation maliciously.
 *
 * IMPORTANT: Do not use the implementation logic to modify the beacon storage slot. Doing so would leave the proxy in
 * an inconsistent state where the beacon storage slot does not match the beacon address.
 */
contract BeaconProxy is Proxy {
    // An immutable address for the beacon to avoid unnecessary SLOADs before each delegate call.
    address private immutable _beacon;

    /**
     * @dev Initializes the proxy with `beacon`.
     *
     * If `data` is nonempty, it's used as data in a delegate call to the implementation returned by the beacon. This
     * will typically be an encoded function call, and allows initializing the storage of the proxy like a Solidity
     * constructor.
     *
     * Requirements:
     *
     * - `beacon` must be a contract with the interface {IBeacon}.
     * - If `data` is empty, `msg.value` must be zero.
     */
    constructor(address beacon, bytes memory data) payable {
        ERC1967Utils.upgradeBeaconToAndCall(beacon, data);
        _beacon = beacon;
    }

    /**
     * @dev Returns the current implementation address of the associated beacon.
     */
    function _implementation() internal view virtual override returns (address) {
        return IBeacon(_getBeacon()).implementation();
    }

    /**
     * @dev Returns the beacon.
     */
    function _getBeacon() internal view virtual returns (address) {
        return _beacon;
    }
}

File 1 of 8 : IERC1967.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC1967.sol)

pragma solidity ^0.8.20;

/**
 * @dev ERC-1967: Proxy Storage Slots. This interface contains the events defined in the ERC.
 */
interface IERC1967 {
    /**
     * @dev Emitted when the implementation is upgraded.
     */
    event Upgraded(address indexed implementation);

    /**
     * @dev Emitted when the admin account has changed.
     */
    event AdminChanged(address previousAdmin, address newAdmin);

    /**
     * @dev Emitted when the beacon is changed.
     */
    event BeaconUpgraded(address indexed beacon);
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (proxy/beacon/IBeacon.sol)

pragma solidity ^0.8.20;

/**
 * @dev This is the interface that {BeaconProxy} expects of its beacon.
 */
interface IBeacon {
    /**
     * @dev Must return an address that can be used as a delegate call target.
     *
     * {UpgradeableBeacon} will check that this address is a contract.
     */
    function implementation() external view returns (address);
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (proxy/ERC1967/ERC1967Utils.sol)

pragma solidity ^0.8.21;

import {IBeacon} from "../beacon/IBeacon.sol";
import {IERC1967} from "../../interfaces/IERC1967.sol";
import {Address} from "../../utils/Address.sol";
import {StorageSlot} from "../../utils/StorageSlot.sol";

/**
 * @dev This library provides getters and event emitting update functions for
 * https://eips.ethereum.org/EIPS/eip-1967[ERC-1967] slots.
 */
library ERC1967Utils {
    /**
     * @dev Storage slot with the address of the current implementation.
     * This is the keccak-256 hash of "eip1967.proxy.implementation" subtracted by 1.
     */
    // solhint-disable-next-line private-vars-leading-underscore
    bytes32 internal constant IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;

    /**
     * @dev The `implementation` of the proxy is invalid.
     */
    error ERC1967InvalidImplementation(address implementation);

    /**
     * @dev The `admin` of the proxy is invalid.
     */
    error ERC1967InvalidAdmin(address admin);

    /**
     * @dev The `beacon` of the proxy is invalid.
     */
    error ERC1967InvalidBeacon(address beacon);

    /**
     * @dev An upgrade function sees `msg.value > 0` that may be lost.
     */
    error ERC1967NonPayable();

    /**
     * @dev Returns the current implementation address.
     */
    function getImplementation() internal view returns (address) {
        return StorageSlot.getAddressSlot(IMPLEMENTATION_SLOT).value;
    }

    /**
     * @dev Stores a new address in the ERC-1967 implementation slot.
     */
    function _setImplementation(address newImplementation) private {
        if (newImplementation.code.length == 0) {
            revert ERC1967InvalidImplementation(newImplementation);
        }
        StorageSlot.getAddressSlot(IMPLEMENTATION_SLOT).value = newImplementation;
    }

    /**
     * @dev Performs implementation upgrade with additional setup call if data is nonempty.
     * This function is payable only if the setup call is performed, otherwise `msg.value` is rejected
     * to avoid stuck value in the contract.
     *
     * Emits an {IERC1967-Upgraded} event.
     */
    function upgradeToAndCall(address newImplementation, bytes memory data) internal {
        _setImplementation(newImplementation);
        emit IERC1967.Upgraded(newImplementation);

        if (data.length > 0) {
            Address.functionDelegateCall(newImplementation, data);
        } else {
            _checkNonPayable();
        }
    }

    /**
     * @dev Storage slot with the admin of the contract.
     * This is the keccak-256 hash of "eip1967.proxy.admin" subtracted by 1.
     */
    // solhint-disable-next-line private-vars-leading-underscore
    bytes32 internal constant ADMIN_SLOT = 0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103;

    /**
     * @dev Returns the current admin.
     *
     * TIP: To get this value clients can read directly from the storage slot shown below (specified by ERC-1967) using
     * the https://eth.wiki/json-rpc/API#eth_getstorageat[`eth_getStorageAt`] RPC call.
     * `0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103`
     */
    function getAdmin() internal view returns (address) {
        return StorageSlot.getAddressSlot(ADMIN_SLOT).value;
    }

    /**
     * @dev Stores a new address in the ERC-1967 admin slot.
     */
    function _setAdmin(address newAdmin) private {
        if (newAdmin == address(0)) {
            revert ERC1967InvalidAdmin(address(0));
        }
        StorageSlot.getAddressSlot(ADMIN_SLOT).value = newAdmin;
    }

    /**
     * @dev Changes the admin of the proxy.
     *
     * Emits an {IERC1967-AdminChanged} event.
     */
    function changeAdmin(address newAdmin) internal {
        emit IERC1967.AdminChanged(getAdmin(), newAdmin);
        _setAdmin(newAdmin);
    }

    /**
     * @dev The storage slot of the UpgradeableBeacon contract which defines the implementation for this proxy.
     * This is the keccak-256 hash of "eip1967.proxy.beacon" subtracted by 1.
     */
    // solhint-disable-next-line private-vars-leading-underscore
    bytes32 internal constant BEACON_SLOT = 0xa3f0ad74e5423aebfd80d3ef4346578335a9a72aeaee59ff6cb3582b35133d50;

    /**
     * @dev Returns the current beacon.
     */
    function getBeacon() internal view returns (address) {
        return StorageSlot.getAddressSlot(BEACON_SLOT).value;
    }

    /**
     * @dev Stores a new beacon in the ERC-1967 beacon slot.
     */
    function _setBeacon(address newBeacon) private {
        if (newBeacon.code.length == 0) {
            revert ERC1967InvalidBeacon(newBeacon);
        }

        StorageSlot.getAddressSlot(BEACON_SLOT).value = newBeacon;

        address beaconImplementation = IBeacon(newBeacon).implementation();
        if (beaconImplementation.code.length == 0) {
            revert ERC1967InvalidImplementation(beaconImplementation);
        }
    }

    /**
     * @dev Change the beacon and trigger a setup call if data is nonempty.
     * This function is payable only if the setup call is performed, otherwise `msg.value` is rejected
     * to avoid stuck value in the contract.
     *
     * Emits an {IERC1967-BeaconUpgraded} event.
     *
     * CAUTION: Invoking this function has no effect on an instance of {BeaconProxy} since v5, since
     * it uses an immutable beacon without looking at the value of the ERC-1967 beacon slot for
     * efficiency.
     */
    function upgradeBeaconToAndCall(address newBeacon, bytes memory data) internal {
        _setBeacon(newBeacon);
        emit IERC1967.BeaconUpgraded(newBeacon);

        if (data.length > 0) {
            Address.functionDelegateCall(IBeacon(newBeacon).implementation(), data);
        } else {
            _checkNonPayable();
        }
    }

    /**
     * @dev Reverts if `msg.value` is not zero. It can be used to avoid `msg.value` stuck in the contract
     * if an upgrade doesn't perform an initialization call.
     */
    function _checkNonPayable() private {
        if (msg.value > 0) {
            revert ERC1967NonPayable();
        }
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (proxy/Proxy.sol)

pragma solidity ^0.8.20;

/**
 * @dev This abstract contract provides a fallback function that delegates all calls to another contract using the EVM
 * instruction `delegatecall`. We refer to the second contract as the _implementation_ behind the proxy, and it has to
 * be specified by overriding the virtual {_implementation} function.
 *
 * Additionally, delegation to the implementation can be triggered manually through the {_fallback} function, or to a
 * different contract through the {_delegate} function.
 *
 * The success and return data of the delegated call will be returned back to the caller of the proxy.
 */
abstract contract Proxy {
    /**
     * @dev Delegates the current call to `implementation`.
     *
     * This function does not return to its internal call site, it will return directly to the external caller.
     */
    function _delegate(address implementation) internal virtual {
        assembly {
            // Copy msg.data. We take full control of memory in this inline assembly
            // block because it will not return to Solidity code. We overwrite the
            // Solidity scratch pad at memory position 0.
            calldatacopy(0, 0, calldatasize())

            // Call the implementation.
            // out and outsize are 0 because we don't know the size yet.
            let result := delegatecall(gas(), implementation, 0, calldatasize(), 0, 0)

            // Copy the returned data.
            returndatacopy(0, 0, returndatasize())

            switch result
            // delegatecall returns 0 on error.
            case 0 {
                revert(0, returndatasize())
            }
            default {
                return(0, returndatasize())
            }
        }
    }

    /**
     * @dev This is a virtual function that should be overridden so it returns the address to which the fallback
     * function and {_fallback} should delegate.
     */
    function _implementation() internal view virtual returns (address);

    /**
     * @dev Delegates the current call to the address returned by `_implementation()`.
     *
     * This function does not return to its internal call site, it will return directly to the external caller.
     */
    function _fallback() internal virtual {
        _delegate(_implementation());
    }

    /**
     * @dev Fallback function that delegates calls to the address returned by `_implementation()`. Will run if no other
     * function in the contract matches the call data.
     */
    fallback() external payable virtual {
        _fallback();
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (utils/Address.sol)

pragma solidity ^0.8.20;

import {Errors} from "./Errors.sol";

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev There's no code at `target` (it is not a contract).
     */
    error AddressEmptyCode(address target);

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.8.20/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        if (address(this).balance < amount) {
            revert Errors.InsufficientBalance(address(this).balance, amount);
        }

        (bool success, ) = recipient.call{value: amount}("");
        if (!success) {
            revert Errors.FailedCall();
        }
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason or custom error, it is bubbled
     * up by this function (like regular Solidity function calls). However, if
     * the call reverted with no returned reason, this function reverts with a
     * {Errors.FailedCall} error.
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        if (address(this).balance < value) {
            revert Errors.InsufficientBalance(address(this).balance, value);
        }
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, success, returndata);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and reverts if the target
     * was not a contract or bubbling up the revert reason (falling back to {Errors.FailedCall}) in case
     * of an unsuccessful call.
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata
    ) internal view returns (bytes memory) {
        if (!success) {
            _revert(returndata);
        } else {
            // only check if target is a contract if the call was successful and the return data is empty
            // otherwise we already know that it was a contract
            if (returndata.length == 0 && target.code.length == 0) {
                revert AddressEmptyCode(target);
            }
            return returndata;
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and reverts if it wasn't, either by bubbling the
     * revert reason or with a default {Errors.FailedCall} error.
     */
    function verifyCallResult(bool success, bytes memory returndata) internal pure returns (bytes memory) {
        if (!success) {
            _revert(returndata);
        } else {
            return returndata;
        }
    }

    /**
     * @dev Reverts with returndata if present. Otherwise reverts with {Errors.FailedCall}.
     */
    function _revert(bytes memory returndata) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            assembly ("memory-safe") {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert Errors.FailedCall();
        }
    }
}

File 2 of 8 : Errors.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (utils/Errors.sol)

pragma solidity ^0.8.20;

/**
 * @dev Collection of common custom errors used in multiple contracts
 *
 * IMPORTANT: Backwards compatibility is not guaranteed in future versions of the library.
 * It is recommended to avoid relying on the error API for critical functionality.
 *
 * _Available since v5.1._
 */
library Errors {
    /**
     * @dev The ETH balance of the account is not enough to perform the operation.
     */
    error InsufficientBalance(uint256 balance, uint256 needed);

    /**
     * @dev A call to an address target failed. The target may have reverted.
     */
    error FailedCall();

    /**
     * @dev The deployment failed.
     */
    error FailedDeployment();

    /**
     * @dev A necessary precompile is missing.
     */
    error MissingPrecompile(address);
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (utils/StorageSlot.sol)
// This file was procedurally generated from scripts/generate/templates/StorageSlot.js.

pragma solidity ^0.8.20;

/**
 * @dev Library for reading and writing primitive types to specific storage slots.
 *
 * Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts.
 * This library helps with reading and writing to such slots without the need for inline assembly.
 *
 * The functions in this library return Slot structs that contain a `value` member that can be used to read or write.
 *
 * Example usage to set ERC-1967 implementation slot:
 * ```solidity
 * contract ERC1967 {
 *     // Define the slot. Alternatively, use the SlotDerivation library to derive the slot.
 *     bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;
 *
 *     function _getImplementation() internal view returns (address) {
 *         return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;
 *     }
 *
 *     function _setImplementation(address newImplementation) internal {
 *         require(newImplementation.code.length > 0);
 *         StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;
 *     }
 * }
 * ```
 *
 * TIP: Consider using this library along with {SlotDerivation}.
 */
library StorageSlot {
    struct AddressSlot {
        address value;
    }

    struct BooleanSlot {
        bool value;
    }

    struct Bytes32Slot {
        bytes32 value;
    }

    struct Uint256Slot {
        uint256 value;
    }

    struct Int256Slot {
        int256 value;
    }

    struct StringSlot {
        string value;
    }

    struct BytesSlot {
        bytes value;
    }

    /**
     * @dev Returns an `AddressSlot` with member `value` located at `slot`.
     */
    function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) {
        assembly ("memory-safe") {
            r.slot := slot
        }
    }

    /**
     * @dev Returns a `BooleanSlot` with member `value` located at `slot`.
     */
    function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) {
        assembly ("memory-safe") {
            r.slot := slot
        }
    }

    /**
     * @dev Returns a `Bytes32Slot` with member `value` located at `slot`.
     */
    function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) {
        assembly ("memory-safe") {
            r.slot := slot
        }
    }

    /**
     * @dev Returns a `Uint256Slot` with member `value` located at `slot`.
     */
    function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) {
        assembly ("memory-safe") {
            r.slot := slot
        }
    }

    /**
     * @dev Returns a `Int256Slot` with member `value` located at `slot`.
     */
    function getInt256Slot(bytes32 slot) internal pure returns (Int256Slot storage r) {
        assembly ("memory-safe") {
            r.slot := slot
        }
    }

    /**
     * @dev Returns a `StringSlot` with member `value` located at `slot`.
     */
    function getStringSlot(bytes32 slot) internal pure returns (StringSlot storage r) {
        assembly ("memory-safe") {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `StringSlot` representation of the string storage pointer `store`.
     */
    function getStringSlot(string storage store) internal pure returns (StringSlot storage r) {
        assembly ("memory-safe") {
            r.slot := store.slot
        }
    }

    /**
     * @dev Returns a `BytesSlot` with member `value` located at `slot`.
     */
    function getBytesSlot(bytes32 slot) internal pure returns (BytesSlot storage r) {
        assembly ("memory-safe") {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `BytesSlot` representation of the bytes storage pointer `store`.
     */
    function getBytesSlot(bytes storage store) internal pure returns (BytesSlot storage r) {
        assembly ("memory-safe") {
            r.slot := store.slot
        }
    }
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 1000000
  },
  "evmVersion": "shanghai",
  "viaIR": true,
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "metadata": {
    "useLiteralContent": true
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"beacon","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"stateMutability":"payable","type":"constructor"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"},{"inputs":[{"internalType":"address","name":"beacon","type":"address"}],"name":"ERC1967InvalidBeacon","type":"error"},{"inputs":[{"internalType":"address","name":"implementation","type":"address"}],"name":"ERC1967InvalidImplementation","type":"error"},{"inputs":[],"name":"ERC1967NonPayable","type":"error"},{"inputs":[],"name":"FailedCall","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"beacon","type":"address"}],"name":"BeaconUpgraded","type":"event"},{"stateMutability":"payable","type":"fallback"}]

0x60a0604090808252610527803803809161001982856102a3565b8339810182828203126101e15761002f826102da565b60208084015191939091906001600160401b0382116101e1570182601f820112156101e157805190610060826102ee565b9361006d875195866102a3565b8285528383830101116101e15782905f5b83811061028f5750505f9184010152823b1561026f577fa3f0ad74e5423aebfd80d3ef4346578335a9a72aeaee59ff6cb3582b35133d5080546001600160a01b0319166001600160a01b038581169182179092558551635c60da1b60e01b8082529194928482600481895afa918215610265575f9261022e575b50813b156102155750508551847f1cf3b03a6cf19fa2baba4df148e9dcabedea7f8a5c07840e207e5c089be95d3e5f80a28251156101f657508290600487518096819382525afa9283156101ec575f936101ac575b50915f80848461018996519101845af4903d156101a3573d61016e816102ee565b9061017b885192836102a3565b81525f81943d92013e610309565b505b608052516101ba908161036d82396080518160450152f35b60609250610309565b92508183813d83116101e5575b6101c381836102a3565b810103126101e1575f806101d9610189956102da565b94505061014d565b5f80fd5b503d6101b9565b85513d5f823e3d90fd5b935050505034610206575061018b565b63b398979f60e01b8152600490fd5b8751634c9c8ce360e01b81529116600482015260249150fd5b9091508481813d831161025e575b61024681836102a3565b810103126101e157610257906102da565b905f6100f8565b503d61023c565b88513d5f823e3d90fd5b8351631933b43b60e21b81526001600160a01b0384166004820152602490fd5b81810183015186820184015284920161007e565b601f909101601f19168101906001600160401b038211908210176102c657604052565b634e487b7160e01b5f52604160045260245ffd5b51906001600160a01b03821682036101e157565b6001600160401b0381116102c657601f01601f191660200190565b90610330575080511561031e57805190602001fd5b60405163d6bda27560e01b8152600490fd5b81511580610363575b610341575090565b604051639996b31560e01b81526001600160a01b039091166004820152602490fd5b50803b1561033956fe6080806040527f5c60da1b00000000000000000000000000000000000000000000000000000000815260208160048173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000165afa90811561010b575f9161007b575b50610167565b905060203d602011610104575b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f82011682019180831067ffffffffffffffff8411176100d7576100d19260405201610116565b5f610075565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b503d610088565b6040513d5f823e3d90fd5b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8060209101126101635760805173ffffffffffffffffffffffffffffffffffffffff811681036101635790565b5f80fd5b5f8091368280378136915af43d5f803e15610180573d5ff35b3d5ffdfea2646970667358221220b60cbf4ce8772cb3e254605ee39a357ae36438377aa078a457c041ee4eec50da64736f6c63430008170033000000000000000000000000d25c6f0293d41758552b0b27d6f69353a1134d5100000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080806040527f5c60da1b00000000000000000000000000000000000000000000000000000000815260208160048173ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000d25c6f0293d41758552b0b27d6f69353a1134d51165afa90811561010b575f9161007b575b50610167565b905060203d602011610104575b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f82011682019180831067ffffffffffffffff8411176100d7576100d19260405201610116565b5f610075565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b503d610088565b6040513d5f823e3d90fd5b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8060209101126101635760805173ffffffffffffffffffffffffffffffffffffffff811681036101635790565b5f80fd5b5f8091368280378136915af43d5f803e15610180573d5ff35b3d5ffdfea2646970667358221220b60cbf4ce8772cb3e254605ee39a357ae36438377aa078a457c041ee4eec50da64736f6c63430008170033

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Chain Token Portfolio % Price Amount Value
ETH3.28%$12,670.0105$2,672.68
ETH2.93%$2.63908.2919$2,390.34
ETH2.54%$2,475.790.8349$2,067.02
ETH1.36%$0.9997881,108.0013$1,107.77
ETH0.88%$104,6150.00685555$717.19
ETH0.53%$2,475.790.1756$434.84
ETH0.49%$27.4114.6026$400.25
ETH0.48%$2,478.850.1573$389.81
ETH0.43%$1.08324.6699$351.29
ETH0.41%<$0.00000150,881,972,358.9619$334.17
ETH0.40%$1.15284.97$327.72
ETH0.37%$0.02771410,942.8301$303.27
ETH0.36%$104,6670.00283204$296.42
ETH0.36%$7.9736.4421$290.44
ETH0.35%<$0.00000117,485,368,201.8362$288.78
ETH0.33%$0.01061625,022.8149$265.63
ETH0.32%$0.367085720.3814$264.44
ETH0.32%$0.054694,698.9382$256.98
ETH0.31%$0.0669043,818.2239$255.45
ETH0.31%<$0.000001542,718,204.625$250.93
ETH0.29%$0.0846372,795.7789$236.63
ETH0.28%$0.000344668,678.8229$230.32
ETH0.28%<$0.00000111,489,910,892.5671$226.64
ETH0.27%$0.0591413,754.3706$222.04
ETH0.27%$2,472.160.0884$218.44
ETH0.27%$0.00000634,829,693.7753$216.11
ETH0.26%$0.637044338.3627$215.55
ETH0.26%$0.1906291,115.9971$212.74
ETH0.26%$0.578019363.0674$209.86
ETH0.25%$0.00669130,693.4418$205.37
ETH0.25%<$0.000001586,568,933.2179$204.98
ETH0.24%$105.361.8513$195.05
ETH0.23%$0.1300431,434.9067$186.6
ETH0.23%$1.3142.685$185.49
ETH0.22%$3,337.560.0539$179.76
ETH0.22%$0.0185219,578.7059$177.41
ETH0.21%$0.734237229.7288$168.68
ETH0.20%$3.9940.6145$162.05
ETH0.20%$0.0070422,957.6102$161.63
ETH0.19%$0.0342854,552.7692$156.09
ETH0.19%<$0.00000136,859,807,689.1272$155.73
ETH0.19%$0.001373111,764.6003$153.5
ETH0.19%$0.0357894,288.8384$153.49
ETH0.19%$0.0663382,293.7502$152.16
ETH0.19%$65.892.2899$150.88
ETH0.18%$1.14128.1642$146.11
ETH0.18%<$0.0000013,248,923,019.0518$144.51
ETH0.18%$9.0315.9113$143.68
ETH0.17%$127.161.1126$141.47
ETH0.17%$0.404235349.8066$141.4
ETH0.17%$0.0000512,743,665.3156$139.38
ETH0.17%$2,966.270.0465$137.94
ETH0.17%$0.166927816.3907$136.28
ETH0.17%$0.783637171.7808$134.61
ETH0.16%$0.0279544,677.4254$130.75
ETH0.16%<$0.000001498,145,743.1371$129.14
ETH0.16%$0.0240495,256.9104$126.42
ETH0.15%$0.149272818.1699$122.13
ETH0.14%$0.0000383,069,528.4149$117.5
ETH0.14%$0.8894129.0174$114.75
ETH0.14%$0.0926381,233.606$114.28
ETH0.14%<$0.00000132,680,640,207.0414$113.66
ETH0.14%$0.258026439.5331$113.41
ETH0.13%$0.0569381,907.5466$108.61
ETH0.13%$0.0380052,799.3338$106.39
ETH0.13%<$0.0000012,043,963,152.7142$105.67
ETH0.13%$2,797.810.0377$105.52
ETH0.13%<$0.000001386,875,782.2906$103.59
ETH0.13%$0.0000293,567,295$102.95
ETH0.13%$27.283.7509$102.32
ETH0.12%$0.0000119,040,605.8957$101.35
ETH0.12%<$0.0000014,528,678,290.2441$99.66
ETH0.12%$104,5230.00091557$95.7
ETH0.12%$0.376278253.9647$95.56
ETH0.12%<$0.00000113,319,449,635.6312$93.76
ETH0.11%$19.324.7968$92.67
ETH0.11%$0.0103188,690.8551$89.67
ETH0.11%$0.0319122,805.5891$89.53
ETH0.11%$0.0564231,583.0712$89.32
ETH0.11%$5.6115.6698$87.91
ETH0.11%<$0.00000182,203,327,207,538.922$86.88
ETH0.11%$1.366.8304$86.88
ETH0.10%$6.0514.1442$85.57
ETH0.10%$0.09835850.2438$83.62
ETH0.10%$0.0236323,529.9788$83.42
ETH0.10%$0.0139085,965.7178$82.97
ETH0.10%$0.0121016,705.3271$81.14
ETH0.10%$0.00407319,747.3684$80.43
ETH0.10%$0.301124258.3568$77.8
ETH0.09%$0.241234312.5135$75.39
ETH0.09%$19.23.9208$75.28
ETH0.09%$1.1861.401$72.45
ETH0.09%$0.0549081,290.3711$70.85
ETH0.09%$1.0467.7907$70.64
ETH0.09%$0.00119259,092.0767$70.41
ETH0.09%$0.00105166,636.0131$70.02
ETH0.08%$0.0000651,044,445.1179$67.61
ETH0.08%<$0.00000126,448,758,970.4672$67.5
ETH0.08%$0.00160441,459.8677$66.49
ETH0.08%$0.78046285.1959$66.49
ETH0.08%$0.000139476,839.4951$66.42
ETH0.08%$0.350027187.8047$65.74
ETH0.08%$2.1729.9988$65.1
ETH0.08%$0.00429115,125.5688$64.9
ETH0.08%$0.198956319.5311$63.57
ETH0.08%$0.0306762,065.4192$63.36
ETH0.08%$0.527103120.0481$63.28
ETH0.08%$0.326502190.4666$62.19
ETH0.08%$0.0000262,340,514.9908$61.86
ETH0.08%$0.0492641,253.6039$61.76
ETH0.08%$0.81178575.4192$61.22
ETH0.07%$0.0284912,090.9795$59.57
ETH0.07%$0.99966659.3508$59.33
ETH0.07%$103,9040.00056201$58.4
ETH0.07%$0.140859413.1265$58.19
ETH0.07%$0.0474411,212.5553$57.53
ETH0.07%$0.0000134,499,065.2041$56.28
ETH0.07%$0.0284991,939.1477$55.26
ETH0.07%$0.122698437.0826$53.63
ETH0.07%$0.00106150,128.5803$53.17
ETH0.06%$0.137842380.8063$52.49
ETH0.06%$0.21245247.0493$52.49
ETH0.06%$0.508126102.4368$52.05
ETH0.06%$116.060.4468$51.85
ETH0.06%<$0.000001259,809,178.0214$51.79
ETH0.06%$2.7218.9758$51.61
ETH0.06%$0.0000242,171,464.545$51.12
ETH0.06%$0.0097055,195.4903$50.42
ETH0.06%$0.0301721,665.6059$50.25
ETH0.06%$0.00142834,205.8549$48.85
ETH0.06%$104,3940.00045217$47.2
ETH0.06%$0.2706172.9426$46.8
ETH0.06%$0.0404131,145.9321$46.31
ETH0.06%$0.407339112.8871$45.98
ETH0.06%$0.62409972.7486$45.4
ETH0.06%$0.083388541.21$45.13
ETH0.05%<$0.00000118,952,524,049.5678$44.69
ETH0.05%$0.0008552,406.5561$44.55
ETH0.05%$0.0251011,773.1648$44.51
ETH0.05%$0.99722943.1516$43.03
ETH0.05%$0.00103541,339.1864$42.79
ETH0.05%$0.000412103,546.2686$42.65
ETH0.05%$0.0120543,497.3$42.16
ETH0.05%$0.0361811,161.4022$42.02
ETH0.05%$0.0053677,804.9433$41.89
ETH0.05%$0.00220418,609.8788$41.01
ETH0.05%$9.74.1907$40.65
ETH0.05%$0.0041829,701.82$40.57
ETH0.05%$0.00210519,178.03$40.36
ETH0.05%$3.3412.0668$40.3
ETH0.05%$0.103212388.8957$40.14
ETH0.05%$0.9438841.7201$39.38
ETH0.05%$0.0041659,339.3296$38.9
ETH0.05%$0.0216281,779.5226$38.49
ETH0.05%$0.0049747,722$38.41
ETH0.05%$0.0147512,583.9827$38.12
ETH0.05%$0.0000049,454,082.5455$38.01
ETH0.05%$0.131248289.2079$37.96
ETH0.05%$0.06264601.0687$37.65
ETH0.05%<$0.00000112,907,554,284.8177$37.41
ETH0.05%$0.338307109.3374$36.99
ETH0.04%$0.003789,551.0458$36.1
ETH0.04%$0.00064256,111.0076$36.05
ETH0.04%$0.0067595,180.4861$35.02
ETH0.04%$1.8718.7231$35.01
ETH0.04%$13.72.5381$34.77
ETH0.04%$0.328623105.0286$34.51
ETH0.04%$0.035829959.8683$34.39
ETH0.04%$0.0059685,747.4877$34.3
ETH0.04%$44.420.7673$34.08
ETH0.04%$0.78982942.6979$33.72
ETH0.04%$0.00051564,911.0178$33.43
ETH0.04%$0.50359665.2181$32.84
ETH0.04%$6.684.9006$32.74
ETH0.04%$0.0000039,746,293.466$32.51
ETH0.04%$0.0164721,962.3348$32.32
ETH0.04%$0.99981931.8045$31.8
ETH0.04%$251.40.1245$31.3
ETH0.04%$0.0035078,707.9609$30.54
ETH0.04%$0.111533271.9569$30.33
ETH0.04%$0.99947629.95$29.93
ETH0.04%<$0.0000018,079,126,513.6176$29.9
ETH0.04%$0.61878648.3126$29.9
ETH0.04%$0.079264376.8234$29.87
ETH0.04%$0.00199314,869.2869$29.63
ETH0.04%$0.51971756.8884$29.57
ETH0.04%$0.043985669.2293$29.44
ETH0.04%$0.0000241,190,036.9247$28.63
ETH0.04%$0.72835439.3045$28.63
ETH0.03%$0.204137139.697$28.52
ETH0.03%$0.000071402,507.3712$28.45
ETH0.03%$0.093518304.0888$28.44
ETH0.03%$20.41.3753$28.06
ETH0.03%$0.0079393,519.1082$27.94
ETH0.03%$0.00124622,405.3536$27.91
ETH0.03%$0.000201138,036.8838$27.81
ETH0.03%$0.0031718,770.159$27.81
ETH0.03%$0.0000151,873,020.8312$27.67
ETH0.03%$0.0042466,448.5275$27.38
ETH0.03%$0.03212849.2325$27.28
ETH0.03%$0.094184288.4283$27.17
ETH0.03%$0.074996358.6853$26.9
ETH0.03%$0.00000128,339,444.9992$26.85
ETH0.03%$0.058119459.4101$26.7
ETH0.03%$0.12769207.2688$26.47
ETH0.03%$0.000047564,034.1568$26.33
ETH0.03%$0.046398559.4749$25.96
ETH0.03%$0.19788130.6814$25.86
ETH0.03%$0.047401543.6107$25.77
ETH0.03%$0.004615,584.0455$25.74
ETH0.03%$0.00061641,705.5392$25.67
ETH0.03%$0.0007633,715.4653$25.61
ETH0.03%$0.0000092,828,372.5908$25.03
ETH0.03%$0.00000129,762,806.677$24.83
ETH0.03%$6.323.91$24.71
ETH0.03%<$0.00000135,917,119,398.5188$24.61
ETH0.03%$1.4516.8808$24.52
ETH0.03%$0.00141317,281.0737$24.42
ETH0.03%$2.3310.3001$24
ETH0.03%$0.00140417,053.9787$23.95
ETH0.03%$0.119111199.3982$23.75
ETH0.03%$2,474.960.00946692$23.43
ETH0.03%$0.086804268.6038$23.32
ETH0.03%$0.3396568.4836$23.26
ETH0.03%$0.00107721,378.4379$23.02
ETH0.03%$0.067181341.6554$22.95
ETH0.03%$0.0194781,176.6555$22.92
ETH0.03%$0.034931650.5503$22.72
ETH0.03%$0.03915579.8874$22.7
ETH0.03%$0.0000151,496,118.1386$22.61
ETH0.03%$0.43367651.9613$22.53
ETH0.03%$0.182857122.3435$22.37
ETH0.03%$0.00094123,539.2325$22.15
ETH0.03%$0.25904985.0006$22.02
ETH0.03%$0.0166711,317.1963$21.96
ETH0.03%$0.00054240,092.6572$21.73
ETH0.03%$0.00210110,291.2465$21.62
ETH0.03%$0.065945327.692$21.61
ETH0.03%$1,701.380.0126$21.45
ETH0.03%$0.0029127,327.2069$21.33
ETH0.03%$0.0194751,087.4148$21.18
ETH0.03%$2,818.860.00743417$20.96
ETH0.03%$0.042808486.193$20.81
ETH0.03%$0.032046647.8706$20.76
ETH0.03%$1.2117.0703$20.72
ETH0.03%$0.99916920.6063$20.59
ETH0.03%$0.99856320.4791$20.45
ETH0.02%$1.1417.6661$20.14
ETH0.02%$0.0106591,873.5182$19.97
ETH0.02%$0.125851158.6247$19.96
ETH0.02%$0.159388123.3976$19.67
ETH0.02%$0.000049392,239.4844$19.36
ETH0.02%$0.66885428.0491$18.76
ETH0.02%<$0.000001534,396,985.4924$18.67
ETH0.02%$0.00020887,515.2762$18.17
ETH0.02%$0.138264127.4284$17.62
ETH0.02%$0.9852417.8791$17.62
ETH0.02%$4.593.8255$17.56
ETH0.02%$0.76080123.0363$17.53
ETH0.02%$0.159332109.9114$17.51
ETH0.02%$0.057663300$17.3
ETH0.02%$16.311.0542$17.2
ETH0.02%$0.026364647.0997$17.06
ETH0.02%$0.00000121,429,242.0555$16.91
ETH0.02%$0.036229466.5109$16.9
ETH0.02%$0.0000026,954,916.9834$16.9
ETH0.02%$0.038424427.8936$16.44
ETH0.02%$0.5477229.8648$16.36
ETH0.02%$0.0058582,762.4073$16.18
ETH0.02%$0.28309157.0027$16.14
ETH0.02%$0.00046734,222.2718$15.97
ETH0.02%$3.814.1282$15.73
ETH0.02%$0.53323528.9494$15.44
ETH0.02%$0.060589252.8887$15.32
ETH0.02%$0.0000043,652,536.2332$15.12
ETH0.02%$0.18622580.8026$15.05
ETH0.02%$0.087789170.8309$15
ETH0.02%$11.081.3317$14.75
ETH0.02%$0.090829162.3137$14.74
ETH0.02%<$0.0000011,348,763,215.4849$14.52
ETH0.02%$0.028164514.4692$14.49
ETH0.02%$0.32058245.0045$14.43
ETH0.02%$0.0139291,003.5739$13.98
ETH0.02%$0.057204244.1936$13.97
ETH0.02%$0.0025175,546.7746$13.96
ETH0.02%$0.00111412,517.1902$13.95
ETH0.02%$0.156987.998$13.81
ETH0.02%$0.0110961,239.7682$13.76
ETH0.02%<$0.000001322,685,795.9863$13.62
ETH0.02%$0.00117211,513.203$13.49
ETH0.02%$5,152.70.00260823$13.44
ETH0.02%$1.1211.8915$13.32
ETH0.02%$0.019015696.3154$13.24
ETH0.02%$0.0019156,851.4899$13.12
ETH0.02%$0.047074278.2856$13.1
ETH0.02%$0.058284220.0683$12.83
ETH0.02%$0.017962709.0342$12.74
ETH0.02%$0.104488120.4012$12.58
ETH0.02%$4.013.1369$12.58
ETH0.02%$0.12907496.353$12.44
ETH0.02%<$0.000001125,860,919.9223$12.39
ETH0.02%<$0.000001295,248,065.835$12.28
ETH0.02%$0.54256422.6245$12.28
ETH0.02%<$0.000001131,012,557.3763$12.24
ETH0.01%$2,600.010.00469017$12.19
ETH0.01%$0.16420274.2311$12.19
ETH0.01%$0.49974624.079$12.03
ETH0.01%$0.025514471.2132$12.02
ETH0.01%$0.000075158,093.4338$11.9
ETH0.01%$0.0096941,224.0424$11.87
ETH0.01%$3.163.7529$11.86
ETH0.01%<$0.000001297,782,543.276$11.85
ETH0.01%$29.50.3965$11.7
ETH0.01%<$0.000001265,199,897.4607$11.64
ETH0.01%$2.774.1809$11.58
ETH0.01%$0.0096331,186.8662$11.43
ETH0.01%$0.14810376.5602$11.34
ETH0.01%$0.046102245.4476$11.32
ETH0.01%$0.16206469.7542$11.3
ETH0.01%$0.0000024,916,268.7101$11.01
ETH0.01%$0.17966659.982$10.78
ETH0.01%$1.318.1564$10.68
ETH0.01%$0.0000081,269,749.3285$10.62
ETH0.01%$0.00000119,535,298.7336$10.55
ETH0.01%$0.0034373,056.1795$10.5
ETH0.01%$0.000026396,310.2243$10.5
ETH0.01%$0.0021284,927.7064$10.49
ETH0.01%$0.000034307,514.3034$10.45
ETH0.01%$0.096664106.5098$10.3
ETH0.01%$0.0000033,344,888.4704$10.27
ETH0.01%$2,728.850.00376183$10.27
ETH0.01%$0.0010259,946.4354$10.2
ETH0.01%$2,596.540.00390327$10.14
ETH0.01%$0.003622,796.2595$10.12
ETH0.01%$1.287.8829$10.09
ETH0.01%<$0.000001108,653,486.4918$10.01
ETH0.01%$0.27278836.6351$9.99
ETH0.01%$0.00010990,784.1723$9.89
ETH0.01%$0.000064155,355.2785$9.87
ETH0.01%$0.33484929.4359$9.86
ETH0.01%$1.168.4232$9.77
ETH0.01%$0.00017256,655.1763$9.73
ETH0.01%$3,320.840.002915$9.68
ETH0.01%$0.081581118.5204$9.67
ETH0.01%<$0.00000172,483,849.683$9.35
ETH0.01%$0.0045812,027.57$9.29
ETH0.01%$0.063516145.1053$9.22
ETH0.01%$0.0004321,397.8202$9.2
ETH0.01%$12.090.7585$9.17
ETH0.01%$0.022214412.7046$9.17
ETH0.01%$0.0034522,639.3199$9.11
ETH0.01%$0.038762233.725$9.06
ETH0.01%$0.0013096,733.7534$8.82
ETH0.01%$0.0075331,153.6247$8.69
ETH0.01%$0.19566444.1293$8.63
ETH0.01%$0.00018945,328.7149$8.59
ETH0.01%$0.0016245,263.2543$8.55
ETH0.01%$0.013232627.3099$8.3
ETH0.01%$0.080466102.7369$8.27
ETH0.01%$0.54825615$8.22
ETH<0.01%$0.00016948,009.8553$8.13
ETH<0.01%$0.20646839.069$8.07
ETH<0.01%$0.058907135.649$7.99
ETH<0.01%$0.0014195,606.094$7.96
ETH<0.01%$5,104.970.00154795$7.9
ETH<0.01%$0.57151613.6848$7.82
ETH<0.01%$0.0010817,236.4483$7.82
ETH<0.01%$37.540.2068$7.76
ETH<0.01%$2.882.6978$7.76
ETH<0.01%$0.12031464.3872$7.75
ETH<0.01%<$0.00000144,405,026.0145$7.68
ETH<0.01%$0.010424734.7172$7.66
ETH<0.01%$0.031981234.627$7.5
ETH<0.01%$3.682.0157$7.42
ETH<0.01%$0.68950210.6557$7.35
ETH<0.01%$0.008047911.8507$7.34
ETH<0.01%$0.33701721.7048$7.31
ETH<0.01%$0.00043516,788.6469$7.3
ETH<0.01%$0.0000019,908,761.5227$7.23
ETH<0.01%$2.912.4699$7.19
ETH<0.01%$0.21493433.2074$7.14
ETH<0.01%$0.24261529.3283$7.12
ETH<0.01%$0.000051136,379.2098$7.02
ETH<0.01%$0.0032162,169.4921$6.98
ETH<0.01%$0.020293342.7992$6.96
ETH<0.01%$0.011837583.6513$6.91
ETH<0.01%$2,649.730.00258897$6.86
ETH<0.01%$0.060547112.4736$6.81
ETH<0.01%<$0.0000014,238,375,316.0822$6.68
ETH<0.01%$0.02694243.6813$6.56
ETH<0.01%$2,596.480.00251291$6.52
ETH<0.01%$0.007884826.0289$6.51
ETH<0.01%$0.044729141.4078$6.32
ETH<0.01%$0.0314200.82$6.31
ETH<0.01%<$0.00000122,556,585,250.6192$6.25
ETH<0.01%$1.434.3119$6.17
ETH<0.01%$0.019391315.9653$6.13
ETH<0.01%$0.1531839.8842$6.11
ETH<0.01%$0.00018632,502.7062$6.05
ETH<0.01%<$0.00000116,222,996.8296$6.04
ETH<0.01%$142.40.0417$5.94
ETH<0.01%$0.0000014,364,589.6933$5.9
ETH<0.01%$0.000011521,989.7223$5.87
ETH<0.01%$0.000033179,196.9239$5.85
ETH<0.01%$0.0187312.5849$5.85
ETH<0.01%$0.22792325.4138$5.79
ETH<0.01%$0.01103521.1376$5.75
ETH<0.01%$0.06223391.6603$5.7
ETH<0.01%$0.0014353,947.069$5.66
ETH<0.01%$0.0024622,265.3633$5.58
ETH<0.01%$0.007947682.1386$5.42
ETH<0.01%$0.0001341,071.3723$5.33
ETH<0.01%$0.00034115,473.142$5.27
ETH<0.01%$0.07943965.6829$5.22
ETH<0.01%<$0.0000011,295,945,542.5149$5.16
ETH<0.01%$0.051145100.8018$5.16
ETH<0.01%$0.6427588.0059$5.15
ETH<0.01%$123.930.0411$5.1
ETH<0.01%$0.6395457.9488$5.08
ETH<0.01%$0.000032158,705.8171$5.01
ETH<0.01%$0.033298149.7177$4.99
ETH<0.01%$0.021101235.055$4.96
ETH<0.01%$0.018929260.9848$4.94
ETH<0.01%$0.00023920,599.395$4.93
ETH<0.01%$0.019255254.815$4.91
ETH<0.01%$0.008492573.8812$4.87
ETH<0.01%$0.05969781.4662$4.86
ETH<0.01%$0.006399757.7206$4.85
ETH<0.01%$14.8189$4.82
ETH<0.01%$43.970.1093$4.8
ETH<0.01%$0.012197392.4125$4.79
ETH<0.01%$80.5951$4.76
ETH<0.01%$0.0005568,561.4499$4.76
ETH<0.01%$0.0016222,930.4119$4.75
ETH<0.01%$0.006873689.6226$4.74
ETH<0.01%$0.21438122.0626$4.73
ETH<0.01%$0.00038512,271.0692$4.72
ETH<0.01%$0.0009045,194.7209$4.7
ETH<0.01%$0.006658703.6079$4.68
ETH<0.01%$0.9989924.6585$4.65
ETH<0.01%$0.00007561,543.1703$4.64
ETH<0.01%$0.00017626,368.1474$4.64
ETH<0.01%$0.10973941.8393$4.59
ETH<0.01%$0.030442149$4.54
ETH<0.01%$0.08021156.5316$4.53
ETH<0.01%$0.12859134.9808$4.5
ETH<0.01%$0.4591629.7383$4.47
ETH<0.01%$0.008144548.873$4.47
ETH<0.01%$0.0008145,484.4415$4.46
ETH<0.01%$0.000022200,055.65$4.44
ETH<0.01%$0.018235243.0748$4.43
ETH<0.01%$0.14410830.6898$4.42
ETH<0.01%$0.0005078,654.579$4.39
ETH<0.01%$0.00023318,588.21$4.32
ETH<0.01%$0.31604313.6032$4.3
ETH<0.01%$0.00012334,844.179$4.29
ETH<0.01%$0.00019921,493.6888$4.29
ETH<0.01%$0.13653630.9706$4.23
ETH<0.01%$1.422.9715$4.22
ETH<0.01%$0.00017224,480.6417$4.21
ETH<0.01%<$0.000001450,806,643.0109$4.2
ETH<0.01%$0.001193,514.3081$4.18
ETH<0.01%$0.16420225.0621$4.12
ETH<0.01%$0.020843197.086$4.11
ETH<0.01%$0.000994,104.7056$4.06
ETH<0.01%$0.00039310,137.3485$3.98
ETH<0.01%$0.0008654,583.8084$3.97
ETH<0.01%$0.011351349.3272$3.97
ETH<0.01%$0.0024681,578.5127$3.9
ETH<0.01%$0.0011363,426.6107$3.89
ETH<0.01%$0.27330414.1666$3.87
ETH<0.01%$0.0017882,141.3314$3.83
ETH<0.01%$0.15162825.0872$3.8
ETH<0.01%$0.013733276.9786$3.8
ETH<0.01%$0.0003979,569.1807$3.8
ETH<0.01%$0.07920147.5655$3.77
ETH<0.01%$0.9961543.7694$3.75
ETH<0.01%$0.029607124.284$3.68
ETH<0.01%$0.0007115,119.9911$3.64
ETH<0.01%$0.004045898.38$3.63
ETH<0.01%$1.053.4401$3.62
ETH<0.01%$0.018291195.0744$3.57
ETH<0.01%$0.15111523.5944$3.57
ETH<0.01%$0.0000015,278,486.7542$3.56
ETH<0.01%$0.05873160.6034$3.56
ETH<0.01%$0.006481547.581$3.55
ETH<0.01%$0.009478373.8387$3.54
ETH<0.01%$0.010485337.8189$3.54
ETH<0.01%$0.020582171.9337$3.54
ETH<0.01%$3,3130.00106485$3.53
ETH<0.01%$0.6407735.4753$3.51
ETH<0.01%$0.003543986.8868$3.5
ETH<0.01%$0.29037611.9736$3.48
ETH<0.01%$0.0000021,431,091.5859$3.46
ETH<0.01%$0.0012722,715.8053$3.45
ETH<0.01%$13.260.2593$3.44
ETH<0.01%$0.0545863.0001$3.44
ETH<0.01%$0.000006618,389.0897$3.41
ETH<0.01%$0.32083410.5037$3.37
ETH<0.01%$0.0003778,830.1824$3.33
ETH<0.01%$0.07537344.0437$3.32
ETH<0.01%$0.04235478.223$3.31
ETH<0.01%$0.0027141,217.8147$3.31
ETH<0.01%$0.012833257.3814$3.3
ETH<0.01%$0.0000012,596,780.467$3.28
ETH<0.01%$0.04989465.7275$3.28
ETH<0.01%$0.17622318.4682$3.25
ETH<0.01%$0.024384132.131$3.22
ETH<0.01%$0.21997814.6328$3.22
ETH<0.01%$3.340.9464$3.16
ETH<0.01%$0.03288995.3396$3.14
ETH<0.01%$0.04828864.7063$3.12
ETH<0.01%$0.18748516.6202$3.12
ETH<0.01%$0.13077323.8003$3.11
ETH<0.01%$0.00852360.42$3.07
ETH<0.01%$0.0003458,875.173$3.06
ETH<0.01%$0.00017917,014.7985$3.04
ETH<0.01%$0.015799192.4515$3.04
ETH<0.01%<$0.0000013,616,967,204.8345$3.03
ETH<0.01%$0.0006134,926.5912$3.02
ETH<0.01%$0.00795376.637$2.99
ETH<0.01%$0.20794914.3075$2.98
ETH<0.01%$0.37477.9342$2.97
ETH<0.01%$0.00010129,147.388$2.93
ETH<0.01%$0.0299395.6728$2.86
ETH<0.01%$0.0016361,741.2806$2.85
ETH<0.01%$0.11855623.9481$2.84
ETH<0.01%$0.27306310.3861$2.84
ETH<0.01%$7.990.3538$2.83
ETH<0.01%<$0.0000011,118,829,238.282$2.82
ETH<0.01%$0.0022911,231.9689$2.82
ETH<0.01%$0.05634250.0574$2.82
ETH<0.01%$0.017265162.9635$2.81
ETH<0.01%$0.000367,795.3416$2.81
ETH<0.01%$0.0014181,978.9432$2.81
ETH<0.01%<$0.00000171,838,123.2332$2.8
ETH<0.01%$0.06454943.2494$2.79
ETH<0.01%$0.7892653.4992$2.76
ETH<0.01%$0.023822115.482$2.75
ETH<0.01%$0.003401794.2066$2.7
ETH<0.01%<$0.0000011,058,657,192.1424$2.7
ETH<0.01%$0.00003380,820.0916$2.65
ETH<0.01%$0.3778337.0094$2.65
ETH<0.01%$0.000006445,096.8318$2.65
ETH<0.01%$6.340.41$2.6
ETH<0.01%$0.0016541,544.9505$2.56
ETH<0.01%$0.0024741,029.8686$2.55
ETH<0.01%$0.6889523.69$2.54
ETH<0.01%$0.9977592.5472$2.54
ETH<0.01%$0.05660144.734$2.53
ETH<0.01%$0.011568216.8484$2.51
ETH<0.01%$0.0010822,290.6833$2.48
ETH<0.01%$0.01084226.4111$2.45
ETH<0.01%$0.001271,921.4731$2.44
ETH<0.01%$0.008069302.5351$2.44
ETH<0.01%$0.00014416,663.8119$2.4
ETH<0.01%$0.0009562,485.3439$2.37
ETH<0.01%$0.00016814,074.8918$2.36
ETH<0.01%$0.1743513.3186$2.32
ETH<0.01%$0.013196175.6593$2.32
ETH<0.01%$0.006565352.8898$2.32
ETH<0.01%$0.1929711.9408$2.3
ETH<0.01%$0.0000014,214,450.1158$2.29
ETH<0.01%$0.00008227,500$2.27
ETH<0.01%$0.0015841,429.2583$2.26
ETH<0.01%$0.4572254.8598$2.22
ETH<0.01%$0.2783227.8325$2.18
ETH<0.01%$0.0004954,373.8714$2.17
ETH<0.01%$0.0004894,413.2114$2.16
ETH<0.01%$0.00008325,692.9815$2.13
ETH<0.01%$0.4632884.5381$2.1
ETH<0.01%$2.350.8939$2.1
ETH<0.01%$0.002857730.1896$2.09
ETH<0.01%$0.03486958.8404$2.05
ETH<0.01%$0.14272314.2976$2.04
ETH<0.01%$0.04111348.5301$2
ETH<0.01%$0.11029117.7261$1.96
ETH<0.01%$0.013971137.3686$1.92
ETH<0.01%$0.014156135.1273$1.91
ETH<0.01%$0.005807329.307$1.91
ETH<0.01%$0.00082,372.481$1.9
ETH<0.01%$0.03128260$1.88
ETH<0.01%$0.00017810,443.0248$1.86
ETH<0.01%$0.0003425,401.9471$1.85
ETH<0.01%$0.002421759.7793$1.84
ETH<0.01%<$0.0000013,773,899,543.488$1.83
ETH<0.01%$0.1506211.9252$1.8
ETH<0.01%$1.161.5428$1.79
ETH<0.01%$0.04216442.4264$1.79
ETH<0.01%$0.01485117.9173$1.75
ETH<0.01%$0.1782049.7783$1.74
ETH<0.01%$0.0011231,528.7132$1.72
ETH<0.01%$0.3670864.6675$1.71
ETH<0.01%$2.40.7095$1.7
ETH<0.01%$0.01963286.5307$1.7
ETH<0.01%$0.002119798.4299$1.69
ETH<0.01%$0.0000012,252,368.3192$1.69
ETH<0.01%$643.950.0026187$1.69
ETH<0.01%$0.00003253,288.7112$1.68
ETH<0.01%$0.006434256.4135$1.65
ETH<0.01%$0.08417519.5631$1.65
ETH<0.01%$0.0002018,177.0134$1.64
ETH<0.01%$0.001948839.3975$1.63
ETH<0.01%$3.140.5191$1.63
ETH<0.01%$0.2181447.4352$1.62
ETH<0.01%$0.003164507.4088$1.61
ETH<0.01%$0.3117985.099$1.59
ETH<0.01%$0.0005293,002.9912$1.59
ETH<0.01%$2.670.5866$1.57
ETH<0.01%$0.003108500$1.55
ETH<0.01%$0.015183102.242$1.55
ETH<0.01%$0.009355165.7669$1.55
ETH<0.01%$11.5429$1.55
ETH<0.01%$0.2981775.1788$1.54
ETH<0.01%$0.00015210,045.293$1.52
ETH<0.01%$0.004784315.8616$1.51
ETH<0.01%<$0.0000013,467,104.5002$1.5
ETH<0.01%$0.0012531,195.728$1.5
ETH<0.01%$0.014492102.3484$1.48
ETH<0.01%$0.0004623,192.3867$1.47
ETH<0.01%$0.04265334.5262$1.47
ETH<0.01%<$0.0000016,966,000$1.47
ETH<0.01%$0.0005052,852.1234$1.44
ETH<0.01%$0.04807429.8311$1.43
ETH<0.01%$0.0470830.1249$1.42
ETH<0.01%$0.0003873,662.8665$1.42
ETH<0.01%$0.00001498,449.4977$1.38
ETH<0.01%$0.001886728.8689$1.37
ETH<0.01%$0.0188672.4432$1.37
ETH<0.01%$0.0214263.7368$1.37
ETH<0.01%$0.009164148.7651$1.36
ETH<0.01%$0.000383,502.2304$1.33
ETH<0.01%$0.07097318.5735$1.32
ETH<0.01%<$0.00000136,955,213.1417$1.31
ETH<0.01%$0.4695992.7739$1.3
ETH<0.01%$0.01372293.5117$1.28
ETH<0.01%$0.004856261.8511$1.27
ETH<0.01%$0.04468328.0191$1.25
ETH<0.01%$0.003895320.0443$1.25
ETH<0.01%$0.00769161.5034$1.24
ETH<0.01%$0.0003283,781.0457$1.24
ETH<0.01%$0.8533191.4521$1.24
ETH<0.01%$0.00008414,734.3662$1.23
ETH<0.01%<$0.000001152,797,911.4845$1.23
ETH<0.01%$1.340.9148$1.23
ETH<0.01%$0.01537779.3529$1.22
ETH<0.01%$0.2784864.3448$1.21
ETH<0.01%$0.004704255.4389$1.2
ETH<0.01%$0.006584178.9158$1.18
ETH<0.01%$0.002181525.8672$1.15
ETH<0.01%$0.0988711.4973$1.14
ETH<0.01%$2.010.5649$1.14
ETH<0.01%$0.00001115,616.8765$1.13
ETH<0.01%$0.01647868.3441$1.13
ETH<0.01%$0.03759729.4$1.11
ETH<0.01%$1.870.5851$1.09
ETH<0.01%$0.000005241,968.6745$1.09
ETH<0.01%$0.08033813.3732$1.07
ETH<0.01%<$0.0000013,004,136.1399$1.06
ETH<0.01%$0.03234332.412$1.05
ETH<0.01%$0.0003273,196.9939$1.04
ETH<0.01%$0.3034073.4047$1.03
ETH<0.01%$0.0007121,436.4884$1.02
ETH<0.01%$0.002373430.4127$1.02
ETH<0.01%$0.0003582,847.8178$1.02
ETH<0.01%$14.310.071$1.02
ETH<0.01%<$0.000001228,304,709.7648$1.01
ETH<0.01%$0.9988430.9755$0.9743
ETH<0.01%$0.0001516,433.333$0.9711
ETH<0.01%$0.02051747.2536$0.9694
ETH<0.01%$0.002807334.8835$0.94
ETH<0.01%$0.006151148.404$0.9127
ETH<0.01%$0.004463203.4559$0.9081
ETH<0.01%$0.08846310.2453$0.9063
ETH<0.01%$0.0006911,303.389$0.9007
ETH<0.01%$0.002976298.2824$0.8877
ETH<0.01%$0.0002064,298.2461$0.8854
ETH<0.01%$0.00895198.7526$0.8839
ETH<0.01%$0.002147403.9538$0.8673
ETH<0.01%$0.004441192.6119$0.8553
ETH<0.01%$671.640.001269$0.8523
ETH<0.01%$67,191.630.00001265$0.8498
ETH<0.01%$0.3866172.1918$0.8473
ETH<0.01%$0.001439575.9012$0.8285
ETH<0.01%$0.004253193.485$0.8229
ETH<0.01%$0.0087792.3642$0.81
ETH<0.01%$0.6610531.22$0.8065
ETH<0.01%<$0.000001470,773,501.2439$0.8031
ETH<0.01%$0.04259718.6625$0.7949
ETH<0.01%$0.0001097,223.027$0.7879
ETH<0.01%$0.01324458.4768$0.7744
ETH<0.01%$0.02077337.0965$0.7705
ETH<0.01%$0.0001535,000$0.7636
ETH<0.01%$104,7750.00000726$0.7606
ETH<0.01%$0.1600634.7458$0.7596
ETH<0.01%$0.01797242.1133$0.7568
ETH<0.01%$0.5528491.3549$0.749
ETH<0.01%$29.350.0251$0.7352
ETH<0.01%$0.00003123,745.7217$0.7327
ETH<0.01%<$0.000001327,291,333.2845$0.7274
ETH<0.01%$0.001932374.973$0.7243
ETH<0.01%$0.001144628.5677$0.7188
ETH<0.01%$0.00003321,563.1394$0.7126
ETH<0.01%$0.02572927.17$0.699
ETH<0.01%$0.00702599.3667$0.698
ETH<0.01%$0.4282711.6028$0.6864
ETH<0.01%$0.03412219.722$0.6729
ETH<0.01%$0.01586842.0478$0.6671
ETH<0.01%<$0.000001210,734,113.7235$0.661
ETH<0.01%$0.1029076.3882$0.6573
ETH<0.01%$0.001926338.165$0.6514
ETH<0.01%$0.001792358.6392$0.6427
ETH<0.01%$0.2300892.7718$0.6377
ETH<0.01%$0.00143444.4753$0.6355
ETH<0.01%$2,481.370.00025535$0.6336
ETH<0.01%$23,7860.00002642$0.6284
ETH<0.01%$0.001407446.6236$0.6284
ETH<0.01%$1.240.5032$0.6239
ETH<0.01%$9.010.0687$0.6187
ETH<0.01%$0.710760.8556$0.6081
ETH<0.01%$0.1218624.7748$0.5818
ETH<0.01%$52.10.011$0.5744
ETH<0.01%$0.004347132.0892$0.5741
ETH<0.01%$0.05632910.1388$0.5711
ETH<0.01%$0.01041354.7598$0.5702
ETH<0.01%$0.0637078.8181$0.5617
ETH<0.01%$10.5514$0.553
ETH<0.01%$0.000767720.3142$0.5521
ETH<0.01%<$0.000001218,494,402.2159$0.5429
ETH<0.01%$0.001776299.7483$0.5322
ETH<0.01%$0.5135581.036$0.532
ETH<0.01%$0.002136247.4098$0.5283
ETH<0.01%<$0.00000110,136,737.2518$0.5179
ETH<0.01%$0.973050.5289$0.5146
ETH<0.01%$0.001226409.9898$0.5027
ETH<0.01%$0.2354332.0648$0.4861
ETH<0.01%$0.000001327,713.1347$0.485
ETH<0.01%$0.000067,964.8048$0.479
ETH<0.01%$0.001274374.5905$0.4772
ETH<0.01%$0.002261210.3059$0.4754
ETH<0.01%$0.0797055.9202$0.4718
ETH<0.01%$0.01318335.2148$0.4642
ETH<0.01%$0.03752111.9901$0.4498
ETH<0.01%$0.001037429.2628$0.4453
ETH<0.01%$0.00665766.6117$0.4434
ETH<0.01%$0.03720211.8492$0.4408
ETH<0.01%<$0.00000157,738,252.0043$0.4408
ETH<0.01%$0.0002951,485.0793$0.4384
ETH<0.01%$0.1295233.3533$0.4343
ETH<0.01%$0.02676415.8759$0.4248
ETH<0.01%$0.02134419.8455$0.4235
ETH<0.01%$0.001751241.0665$0.4221
ETH<0.01%$0.0003071,337.7158$0.4102
ETH<0.01%$0.00808350.6373$0.4093
ETH<0.01%$0.0190821.3472$0.4073
ETH<0.01%$0.0000429,586.704$0.4033
ETH<0.01%$0.00000847,876.0862$0.3997
ETH<0.01%$0.0000537,435.1659$0.3942
ETH<0.01%$0.01783121.6033$0.3852
ETH<0.01%$0.001295293.4568$0.38
ETH<0.01%$0.00527471.6744$0.378
ETH<0.01%$0.000003125,000$0.3762
ETH<0.01%<$0.000001998,994.3106$0.3757
ETH<0.01%<$0.0000016,374,781.804$0.3714
ETH<0.01%$0.0758764.8389$0.3671
ETH<0.01%$1.050.3443$0.3601
ETH<0.01%$1.140.3072$0.3502
ETH<0.01%$0.2904441.2042$0.3497
ETH<0.01%$0.1655222.0945$0.3466
ETH<0.01%$0.0000389,032.2103$0.3453
ETH<0.01%$0.2820251.2225$0.3447
ETH<0.01%$0.0001442,387.5352$0.3439
ETH<0.01%$0.001038327.8467$0.3401
ETH<0.01%$0.2912391.1537$0.336
ETH<0.01%$0.002682125.1558$0.3356
ETH<0.01%$0.000574580.2264$0.3331
ETH<0.01%$0.0001522,192.0432$0.3327
ETH<0.01%$0.0843593.8835$0.3276
ETH<0.01%$0.1029013.0795$0.3168
ETH<0.01%$0.002494126.108$0.3145
ETH<0.01%$0.0732184.2889$0.314
ETH<0.01%$0.0001951,604.7089$0.3121
ETH<0.01%$0.001704181.9238$0.31
ETH<0.01%$0.0401577.6472$0.307
ETH<0.01%$0.2356731.3008$0.3065
ETH<0.01%$0.000858350.6511$0.3009
ETH<0.01%$0.9998610.3$0.2999
ETH<0.01%$0.00002412,260.8991$0.2899
ETH<0.01%$0.001021281.094$0.287
ETH<0.01%$0.9731860.2945$0.2865
ETH<0.01%<$0.000001335,574,268.7172$0.2835
ETH<0.01%$0.0916113.0794$0.2821
ETH<0.01%$0.4096840.6769$0.2773
ETH<0.01%$0.000292943.4723$0.2756
ETH<0.01%$0.002486110.0245$0.2735
ETH<0.01%$0.3975860.6823$0.2712
ETH<0.01%<$0.00000160,000,000$0.2659
ETH<0.01%$0.0795063.2707$0.26
ETH<0.01%$0.00000466,132$0.2579
ETH<0.01%$0.9999690.2553$0.2553
ETH<0.01%$1.440.1758$0.254
ETH<0.01%$0.1748031.4281$0.2496
ETH<0.01%<$0.0000013,153,822.559$0.2462
ETH<0.01%$0.0001192,061.5159$0.246
ETH<0.01%$0.001952124.08$0.2422
ETH<0.01%$0.00001219,967.2434$0.2392
ETH<0.01%$0.0652733.6192$0.2362
ETH<0.01%$0.000869270.9257$0.2355
ETH<0.01%$0.0000465,000$0.2275
ETH<0.01%$0.00581938.2122$0.2223
ETH<0.01%$0.000776286.0854$0.222
ETH<0.01%$0.001441152.2352$0.2193
ETH<0.01%$0.9999540.218$0.2179
ETH<0.01%$0.0482594.4993$0.2171
ETH<0.01%$0.00000378,536.0222$0.2166
ETH<0.01%$0.001087197.877$0.215
ETH<0.01%$0.4290870.5009$0.2149
ETH<0.01%$0.001817117.0412$0.2126
ETH<0.01%$0.4879590.4349$0.2122
ETH<0.01%$0.001375150.5657$0.207
ETH<0.01%$148.740.0013849$0.2059
ETH<0.01%$0.0392345.234$0.2053
ETH<0.01%$0.000787260.5356$0.2051
ETH<0.01%$958.360.00021163$0.2028
ETH<0.01%$0.0148413.4987$0.2003
ETH<0.01%$0.01321315.0407$0.1987
ETH<0.01%$2,955.760.00006625$0.1958
ETH<0.01%$0.000574341.272$0.1958
ETH<0.01%$0.00387249.9692$0.1934
ETH<0.01%$0.1249351.543$0.1927
ETH<0.01%$0.000841228.6463$0.1923
ETH<0.01%$0.000315599.517$0.1886
ETH<0.01%$0.000761246.5299$0.1876
ETH<0.01%$0.00001314,425.9823$0.1869
ETH<0.01%$0.3078540.603$0.1856
ETH<0.01%$0.000618295.609$0.1828
ETH<0.01%$0.01597811.3981$0.1821
ETH<0.01%$0.000837216.15$0.181
ETH<0.01%$0.999760.1809$0.1808
ETH<0.01%$0.00235176.0823$0.1788
ETH<0.01%$2.810.0601$0.1689
ETH<0.01%$0.00650625.8157$0.1679
ETH<0.01%$0.1390521.1755$0.1634
ETH<0.01%$0.0396784.1022$0.1627
ETH<0.01%$10.1625$0.1626
ETH<0.01%$0.0000295,566.9361$0.1626
ETH<0.01%$104,0530.00000155$0.1612
ETH<0.01%<$0.0000012,847,680.8224$0.1579
ETH<0.01%$0.0297685.2313$0.1557
ETH<0.01%$0.0136411.3563$0.1548
ETH<0.01%$0.00011,524.6155$0.1523
ETH<0.01%$0.3230030.466$0.1505
ETH<0.01%$0.00790418.9992$0.1501
ETH<0.01%$0.7835730.1899$0.1487
ETH<0.01%$0.0000532,780.9024$0.1461
ETH<0.01%$0.00244559.3164$0.145
ETH<0.01%$0.00000818,631.5666$0.1403
ETH<0.01%$0.01075313.0453$0.1402
ETH<0.01%$0.000141988.7193$0.1398
ETH<0.01%$0.00023598.3818$0.1375
ETH<0.01%<$0.000001134,697,241.0404$0.1369
ETH<0.01%$0.0033639.0406$0.1311
ETH<0.01%$0.0001061,216.3635$0.1292
ETH<0.01%$0.6334660.2015$0.1276
ETH<0.01%$0.00141590$0.1273
ETH<0.01%$0.000001165,827.6803$0.1235
ETH<0.01%$0.0319393.854$0.123
ETH<0.01%$0.00725916.8537$0.1223
ETH<0.01%$3.30.0369$0.1216
ETH<0.01%$0.3431650.3538$0.1214
ETH<0.01%$0.00908113.2427$0.1202
ETH<0.01%$0.000633187.6781$0.1187
ETH<0.01%$0.00387330.5556$0.1183
ETH<0.01%<$0.000001237,452.4279$0.1173
ETH<0.01%$0.000146795.9952$0.1161
ETH<0.01%$0.0028740.4316$0.116
ETH<0.01%$0.01056610.8832$0.1149
ETH<0.01%$0.0143997.9705$0.1147
ETH<0.01%<$0.000001287,065.4128$0.1137
ETH<0.01%<$0.000001841,561.3988$0.1119
ETH<0.01%$0.0129128.5131$0.1099
ETH<0.01%$0.0000363,058.4771$0.1092
ETH<0.01%$0.056051.9455$0.109
ETH<0.01%$69.380.00156836$0.1088
ETH<0.01%$0.0000542,026.8591$0.1086
ETH<0.01%$2,650.650.00004055$0.1074
ETH<0.01%$0.00202952.1944$0.1058
ETH<0.01%$0.0838541.2453$0.1044
ETH<0.01%$10.340.01$0.1036
ETH<0.01%$0.00624816.5794$0.1035
ETH<0.01%$0.0148976.8966$0.1027
ETH<0.01%<$0.000001236,305,735.4376$0.1024
BASE8.96%$0.9997887,300.0656$7,298.52
BASE8.38%$104,3940.0654$6,832.58
BASE1.52%$0.06271919,690.2413$1,234.94
BASE0.68%$2,480.850.2241$555.91
BASE0.36%$2,474.580.1184$292.96
BASE0.19%$1.31117.4704$153.89
BASE0.14%$1115.9248$116.04
BASE0.11%$1.1481.3011$92.68
BASE0.11%$0.000001109,447,640.2515$91.45
BASE0.11%$104,6670.00081995$85.82
BASE0.10%$2,966.270.0272$80.76
BASE0.10%$179.3908$79.4
BASE0.09%$3.2222.284$71.75
BASE0.08%$1.0664.1595$67.75
BASE0.08%$0.0481311,397.0991$67.24
BASE0.08%$2,727.370.0224$61.16
BASE0.07%$0.0197163,005.5333$59.26
BASE0.06%$0.00386513,275.4491$51.31
BASE0.06%$2,824.530.0159$44.99
BASE0.05%$0.072455577.1289$41.82
BASE0.05%$0.00146127,948.7632$40.83
BASE0.05%$0.098253414.5843$40.73
BASE0.03%$83.1776$25.42
BASE0.03%$0.0172241,445.4736$24.9
BASE0.03%$0.00040160,971.0797$24.45
BASE0.03%$0.060736343.8567$20.88
BASE0.02%$0.0040994,875.8476$19.99
BASE0.02%$0.99982918.2951$18.29
BASE0.02%$0.99973315.8512$15.85
BASE0.02%$0.50999230.5247$15.57
BASE0.02%$0.0046423,145.8822$14.6
BASE0.02%$0.0058852,444.1571$14.38
BASE0.02%$1.1412.5675$14.33
BASE0.02%$0.00108713,039.3036$14.17
BASE0.02%$2.136.2685$13.35
BASE0.01%$25.430.4519$11.49
BASE0.01%$0.030643374.3914$11.47
BASE0.01%$0.0020365,581.8321$11.36
BASE0.01%$0.53093819.5944$10.4
BASE0.01%$0.0044622,250.3055$10.04
BASE0.01%$0.048761204.0142$9.95
BASE0.01%$0.028722344.0978$9.88
BASE0.01%$0.000015659,252.9354$9.65
BASE0.01%$0.76574311.1645$8.55
BASE0.01%$0.0035492,360.5567$8.38
BASE0.01%$0.0018244,575.5036$8.35
BASE0.01%$0.038415216.4499$8.31
BASE<0.01%$0.000024338,286.7554$8.14
BASE<0.01%$0.0000061,310,951.7997$7.96
BASE<0.01%$0.00028826,667.4799$7.68
BASE<0.01%$0.0059671,283.2795$7.66
BASE<0.01%$0.054417136.8381$7.45
BASE<0.01%$0.16420243.0279$7.07
BASE<0.01%$0.009458714.2584$6.76
BASE<0.01%$0.00838792.2942$6.64
BASE<0.01%$0.0047241,349.1151$6.37
BASE<0.01%$0.0053671,177.4705$6.32
BASE<0.01%$0.15933238.6961$6.17
BASE<0.01%$1.873.2583$6.09
BASE<0.01%<$0.000001303,291,573.2515$5.73
BASE<0.01%$0.020754272.8081$5.66
BASE<0.01%$1.653.351$5.53
BASE<0.01%$0.016002344.3486$5.51
BASE<0.01%$0.033959160.8954$5.46
BASE<0.01%$0.014751358.2962$5.29
BASE<0.01%$0.17775929.2764$5.2
BASE<0.01%$0.0027991,840.7805$5.15
BASE<0.01%$0.0005778,910.836$5.14
BASE<0.01%$0.17826226.6127$4.74
BASE<0.01%$0.42908710.9885$4.72
BASE<0.01%$0.016472285.0695$4.7
BASE<0.01%$3.251.4367$4.67
BASE<0.01%$0.0004310,607.6884$4.56
BASE<0.01%$0.05349284.613$4.53
BASE<0.01%$0.0004969,030.3216$4.48
BASE<0.01%$0.9997564.3176$4.32
BASE<0.01%$0.00027615,564.1706$4.29
BASE<0.01%$0.0016242,606.0313$4.23
BASE<0.01%$0.01611261.9405$4.22
BASE<0.01%$0.0005477,539.1637$4.13
BASE<0.01%$2.721.4514$3.95
BASE<0.01%$0.032399119.4164$3.87
BASE<0.01%$0.005774666.3458$3.85
BASE<0.01%$251.40.0149$3.76
BASE<0.01%$0.005731649.3804$3.72
BASE<0.01%$0.01984183.1307$3.63
BASE<0.01%$0.00795422.3714$3.36
BASE<0.01%$0.004134787.659$3.26
BASE<0.01%$0.000011290,085.7694$3.17
BASE<0.01%$2,633.430.00120433$3.17
BASE<0.01%$0.3667628.5532$3.14
BASE<0.01%$0.0004796,478.0605$3.1
BASE<0.01%$0.000027115,692.0711$3.08
BASE<0.01%$0.000027115,692.0711$3.08
BASE<0.01%$0.0008353,632.243$3.03
BASE<0.01%$0.0006894,334.6829$2.99
BASE<0.01%$0.000674,228.0754$2.83
BASE<0.01%$0.3011249.281$2.79
BASE<0.01%$0.00020213,627.1972$2.76
BASE<0.01%$0.03755768.6473$2.58
BASE<0.01%$0.010616235.8745$2.5
BASE<0.01%$0.04739952.191$2.47
BASE<0.01%$0.004042595.095$2.41
BASE<0.01%$0.001351,781.1419$2.4
BASE<0.01%$0.006691357.1892$2.39
BASE<0.01%$0.3785465.7906$2.19
BASE<0.01%$0.14442412.7597$1.84
BASE<0.01%$0.16006311.2617$1.8
BASE<0.01%$170.940.0105$1.8
BASE<0.01%$0.010226173.0677$1.77
BASE<0.01%$0.02188476.3598$1.67
BASE<0.01%$0.006791233.1437$1.58
BASE<0.01%$0.4949133.1903$1.58
BASE<0.01%$0.00002660,869.3497$1.57
BASE<0.01%$0.01780987.1164$1.55
BASE<0.01%$0.0002496,128.4817$1.53
BASE<0.01%$0.000012124,945.0336$1.52
BASE<0.01%$0.9134181.6386$1.5
BASE<0.01%$0.000012125,460.6988$1.47
BASE<0.01%$2,649.730.00054061$1.43
BASE<0.01%$0.0005822,424.4196$1.41
BASE<0.01%$0.1841157.4939$1.38
BASE<0.01%$0.004099335.118$1.37
BASE<0.01%$0.03477538.9669$1.36
BASE<0.01%$0.999421.3465$1.35
BASE<0.01%$0.01367897.6533$1.34
BASE<0.01%$0.02833346.4051$1.31
BASE<0.01%$0.0006252,020.7279$1.26
BASE<0.01%$0.003403367.3076$1.25
BASE<0.01%$0.0004962,422.0696$1.2
BASE<0.01%$1.141.038$1.18
BASE<0.01%$0.6367951.7928$1.14
BASE<0.01%$0.000002642,877.9297$1.13
BASE<0.01%$0.4953592.178$1.08
BASE<0.01%$0.003581300.0104$1.07
BASE<0.01%$0.6387721.6793$1.07
BASE<0.01%$0.001021,008.0403$1.03
BASE<0.01%$1.010.9857$0.9955
BASE<0.01%$0.009071108.974$0.9885
BASE<0.01%$0.00006115,845.5886$0.9714
BASE<0.01%$1.050.8983$0.9467
BASE<0.01%$0.000003339,008.799$0.9119
BASE<0.01%$0.002704334.9222$0.9055
BASE<0.01%<$0.0000011,232,468,578.9682$0.8627
BASE<0.01%$0.002838288.4988$0.8187
BASE<0.01%$0.000005152,640.6981$0.812
BASE<0.01%$0.9956230.807$0.8034
BASE<0.01%$0.00002628,000.816$0.7417
BASE<0.01%$0.000811838.0553$0.6792
BASE<0.01%$0.077888.6354$0.6725
BASE<0.01%<$0.0000011,102,679,762.6269$0.6616
BASE<0.01%$12.950.0505$0.6545
BASE<0.01%$0.01918533.9532$0.6513
BASE<0.01%$0.001551412.2009$0.6393
BASE<0.01%$0.0252525.3038$0.6389
BASE<0.01%$1.020.624$0.6345
BASE<0.01%$0.0001344,380.6154$0.5879
BASE<0.01%$0.0656058.6026$0.5643
BASE<0.01%$0.00001830,575.3021$0.5625
BASE<0.01%$0.00566190.4396$0.5119
BASE<0.01%$2,609.050.00019214$0.5012
BASE<0.01%$10.4945$0.4949
BASE<0.01%$0.004441105.0022$0.4662
BASE<0.01%$0.003685126.4224$0.4658
BASE<0.01%$0.1635252.6639$0.4356
BASE<0.01%$0.0758765.4545$0.4138
BASE<0.01%$0.01924421.4679$0.4131
BASE<0.01%$0.1755722.3029$0.4043
BASE<0.01%$0.00001822,346.4603$0.4011
BASE<0.01%$0.1045343.7066$0.3874
BASE<0.01%$0.0000137,174.677$0.3869
BASE<0.01%$0.00567963.7716$0.3621
BASE<0.01%$10.3542$0.3549
BASE<0.01%$0.00002214,696.6927$0.3233
BASE<0.01%$0.0001232,587.4376$0.3179
BASE<0.01%<$0.00000121,930,758.2104$0.3048
BASE<0.01%$0.001938151.9021$0.2943
BASE<0.01%$0.00485658.4126$0.2836
BASE<0.01%$0.02475111.4406$0.2831
BASE<0.01%$0.00449861.5898$0.277
BASE<0.01%$0.0734283.6626$0.2689
BASE<0.01%$2,479.390.00010266$0.2545
BASE<0.01%$0.00329776.1332$0.251
BASE<0.01%$0.000334740.004$0.2475
BASE<0.01%$0.1956621.2451$0.2436
BASE<0.01%$0.001055219.9282$0.232
BASE<0.01%$0.0001961,163.1097$0.2275
BASE<0.01%$0.000557408.1305$0.2271
BASE<0.01%$0.00000455,343.9484$0.2158
BASE<0.01%$0.000304675.692$0.2054
BASE<0.01%$0.00337557.5835$0.1943
BASE<0.01%$0.8167340.2341$0.1912
BASE<0.01%$0.0001571,129.6754$0.1776
BASE<0.01%<$0.00000184,561,458.7427$0.1775
BASE<0.01%$104,6150.00000163$0.1705
BASE<0.01%$0.00101164.9853$0.1666
BASE<0.01%$0.0868111.8977$0.1647
BASE<0.01%$0.00000271,051.0938$0.1591
BASE<0.01%<$0.0000013,782,133.0715$0.1558
BASE<0.01%$0.0000169,574.694$0.1551
BASE<0.01%$0.00749718.2922$0.1371
BASE<0.01%$0.1292191.0505$0.1357
BASE<0.01%$0.0791831.6338$0.1293
BASE<0.01%$0.0036435.5081$0.1292
BASE<0.01%$0.00641219.5115$0.1251
BASE<0.01%$0.2232650.5419$0.1209
BASE<0.01%$0.999760.1166$0.1166
BASE<0.01%$0.00302837.5911$0.1138
BASE<0.01%$0.7263970.1529$0.111
BASE<0.01%$0.0167476.3435$0.1062
BASE<0.01%$0.018865.5677$0.105
BASE<0.01%<$0.00000135,405,457.4635$0.1026
BASE<0.01%$0.4395560.228$0.1002
POL13.59%$0.42863925,838.2316$11,075.27
POL0.45%$2,477.910.1474$365.15
POL0.10%$0.99968378.8854$78.86
POL0.08%$161.872$61.93
POL0.03%$0.248233101.6117$25.22
POL0.02%$2,966.290.00614887$18.24
POL0.02%$0.99978617.9178$17.91
POL0.02%$6.052.5617$15.5
POL0.02%$0.21346357.8106$12.34
POL0.01%$0.21456751.2461$11
POL0.01%$0.0017186,302.7923$10.83
POL0.01%$0.17799453.5111$9.52
POL0.01%$13.690.6621$9.06
POL<0.01%$1.145.7107$6.51
POL<0.01%$1.145.7107$6.51
POL<0.01%$0.39566815.2551$6.04
POL<0.01%$0.000876,896.7324$6
POL<0.01%$6.050.8785$5.32
POL<0.01%$0.1903825.975$4.95
POL<0.01%$0.027493154.1294$4.24
POL<0.01%$251.230.0158$3.96
POL<0.01%$0.033959111.8459$3.8
POL<0.01%$0.9997113.4921$3.49
POL<0.01%$0.08692638.4876$3.35
POL<0.01%$0.5313936.0757$3.23
POL<0.01%$0.04958764.6086$3.2
POL<0.01%$0.019494159.2786$3.11
POL<0.01%$17.690.1719$3.04
POL<0.01%$0.2726889.5555$2.61
POL<0.01%$104,4480.00002414$2.52
POL<0.01%$0.22819410.1196$2.31
POL<0.01%$0.3016197.4556$2.25
POL<0.01%$1.871.1353$2.12
POL<0.01%$0.00006333,373.6923$2.11
POL<0.01%$0.4908844.2362$2.08
POL<0.01%$0.006979283.2533$1.98
POL<0.01%$0.02345382.1897$1.93
POL<0.01%<$0.000001205,072,941.591$1.74
POL<0.01%$0.00467351.7355$1.64
POL<0.01%$0.2730856.0026$1.64
POL<0.01%$0.3813884.293$1.64
POL<0.01%$0.00357445.14$1.59
POL<0.01%$0.2147.393$1.58
POL<0.01%$0.0004253,539.3206$1.5
POL<0.01%$0.1633228.5068$1.39
POL<0.01%$0.06221421.015$1.31
POL<0.01%$0.01240190.8897$1.13
POL<0.01%$0.0006491,730.9694$1.12
POL<0.01%$0.0003932,631.9984$1.03
POL<0.01%<$0.0000019,810,976.2252$0.9791
POL<0.01%$0.005363182.3338$0.9778
POL<0.01%$0.000155,445.6099$0.8143
POL<0.01%$0.6356121.167$0.7417
POL<0.01%$0.002625272.9097$0.7165
POL<0.01%$0.00001546,924.5012$0.709
POL<0.01%$0.00701199.7466$0.6993
POL<0.01%$0.001751393.924$0.6898
POL<0.01%$0.3004342.2822$0.6856
POL<0.01%$0.001251525.5333$0.6574
POL<0.01%$0.9995020.624$0.6236
POL<0.01%$0.000731835.659$0.6112
POL<0.01%$0.0000896,855.2296$0.6103
POL<0.01%$0.7784690.7737$0.6023
POL<0.01%$3.810.1477$0.5625
POL<0.01%<$0.000001101,041,814.487$0.5254
POL<0.01%$0.054569.3828$0.5119
POL<0.01%$0.0907445.5372$0.5024
POL<0.01%$0.0583338.164$0.4762
POL<0.01%$0.7808950.6055$0.4728
POL<0.01%$0.004181109.14$0.4563
POL<0.01%$0.02409417.0053$0.4097
POL<0.01%$0.2454631.6622$0.408
POL<0.01%$0.0002961,370.2334$0.4051
POL<0.01%$0.1796482.2533$0.4047
POL<0.01%$0.999950.4003$0.4002
POL<0.01%$0.00532672.9703$0.3886
POL<0.01%$19.590.0198$0.3883
POL<0.01%$0.0602136.2933$0.3789
POL<0.01%$0.002566135.08$0.3465
POL<0.01%$0.002101155.3024$0.3262
POL<0.01%$2.130.1439$0.3065
POL<0.01%$0.109082.6806$0.2924
POL<0.01%$0.0331947.863$0.261
POL<0.01%$0.001609152.5164$0.2453
POL<0.01%$3,337.20.00007167$0.2391
POL<0.01%$2,477.890.00009608$0.238
POL<0.01%$0.000682335.1815$0.2287
POL<0.01%$0.00203489.5683$0.1821
POL<0.01%$1.050.1643$0.1717
POL<0.01%$0.9997860.1709$0.1708
POL<0.01%$0.109621.5489$0.1697
POL<0.01%$0.00345346.1363$0.1592
POL<0.01%<$0.0000011,201,294.7399$0.1549
POL<0.01%$0.1480351.0046$0.1487
POL<0.01%$0.6904960.2127$0.1468
POL<0.01%$0.000386376.3009$0.1453
POL<0.01%$0.000765186.9242$0.143
POL<0.01%$142.380.00097068$0.1382
POL<0.01%$0.000622214.5864$0.1333
POL<0.01%$0.00585822.6087$0.1324
POL<0.01%$17.130.00765034$0.131
POL<0.01%$148.50.00083056$0.1233
POL<0.01%$0.0694681.6181$0.1124
POL<0.01%$0.0202925.2166$0.1058
POL<0.01%$0.0000651,607.25$0.104
POL<0.01%$0.3755760.272$0.1021
ARB4.39%$2,481.11.4405$3,573.9
ARB2.47%$104,4890.0193$2,013.57
ARB2.26%$0.9997761,845.1062$1,844.69
ARB2.08%$2,474.530.6864$1,698.43
ARB0.53%$251.221.7332$435.43
ARB0.39%$13.6923.3326$319.42
ARB0.38%$0.999767310.321$310.25
ARB0.36%$0.999776294.9243$294.86
ARB0.24%$1192.4048$192.6
ARB0.16%$2,975.560.0447$133.07
ARB0.02%$0.33691644.8984$15.13
ARB0.02%$0.0075881,742.9182$13.23
ARB0.01%$0.049257238.7026$11.76
ARB0.01%$6.051.9319$11.69
ARB0.01%$1.168.2287$9.55
ARB0.01%$44.390.2037$9.04
ARB<0.01%$0.000011724,518.9348$8.11
ARB<0.01%$0.0004318,564.6131$7.98
ARB<0.01%$0.018236376.4568$6.87
ARB<0.01%$0.00051511,801.5522$6.08
ARB<0.01%$0.12598239.5063$4.98
ARB<0.01%$7.470.6531$4.88
ARB<0.01%$15.210.3157$4.8
ARB<0.01%$0.06285174.3747$4.67
ARB<0.01%$4.011.0934$4.38
ARB<0.01%$0.6359366.6509$4.23
ARB<0.01%<$0.00000113,263,509,025.7531$3.98
ARB<0.01%$1.13.3507$3.69
ARB<0.01%$0.9725773.6169$3.52
ARB<0.01%$13.1097$3.11
ARB<0.01%$0.9985152.7491$2.75
ARB<0.01%$0.9996422.3953$2.39
ARB<0.01%$327.180.00634329$2.08
ARB<0.01%$104,5240.00001919$2.01
ARB<0.01%$0.14437313.7485$1.98
ARB<0.01%$0.005368320.8641$1.72
ARB<0.01%$2.330.7064$1.65
ARB<0.01%$104,6440.00001531$1.6
ARB<0.01%$104,4740.00001508$1.58
ARB<0.01%$2.390.6551$1.57
ARB<0.01%$2.130.6875$1.46
ARB<0.01%$2,475.010.00054391$1.35
ARB<0.01%$0.009684136.3111$1.32
ARB<0.01%$11.2507$1.25
ARB<0.01%$0.9976861.2299$1.23
ARB<0.01%<$0.00000112,673,646.9959$1.17
ARB<0.01%$0.0003443,391.2508$1.17
ARB<0.01%$3.630.315$1.14
ARB<0.01%$0.09079612.2983$1.12
ARB<0.01%$2.750.4043$1.11
ARB<0.01%$0.00005918,010.8673$1.06
ARB<0.01%$0.9997640.9999$0.9996
ARB<0.01%$0.780591.2297$0.9598
ARB<0.01%$0.004456208.1864$0.9277
ARB<0.01%$0.05018918.4481$0.9258
ARB<0.01%$1.050.7982$0.8388
ARB<0.01%$0.1036437.8721$0.8158
ARB<0.01%$0.07341311.0357$0.8101
ARB<0.01%$0.0905238.5436$0.7733
ARB<0.01%$0.1796243.9231$0.7046
ARB<0.01%$0.2088073.3439$0.6982
ARB<0.01%$0.003144220.221$0.6924
ARB<0.01%$0.004441151.0753$0.6709
ARB<0.01%$0.01932729.8995$0.5778
ARB<0.01%$0.0999235.2811$0.5277
ARB<0.01%$0.9981360.4644$0.4635
ARB<0.01%$0.9997920.4399$0.4398
ARB<0.01%$0.02477314.1352$0.3501
ARB<0.01%$0.0399126.9832$0.2787
ARB<0.01%$0.000002122,965.5823$0.2754
ARB<0.01%$10.1923$0.1923
ARB<0.01%$0.9997220.1779$0.1778
ARB<0.01%$0.00375245.6854$0.1713
ARB<0.01%$1.040.1564$0.1624
ARB<0.01%$0.3648360.4146$0.1512
ARB<0.01%$0.9132340.1584$0.1446
ARB<0.01%$104,2010.00000138$0.1437
ARB<0.01%$0.3831570.3293$0.1261
ARB<0.01%$0.00666316.7318$0.1114
BSC1.09%$2,477.910.3597$891.23
BSC0.97%$0.00907387,182.5127$791.04
BSC0.76%$643.260.9586$616.63
BSC0.65%$0.999829526.1691$526.08
BSC0.61%$2.17229.5482$497.26
BSC0.48%$115.473.3944$391.95
BSC0.18%<$0.0000013,424,175,861.9965$150.27
BSC0.15%$104,386.870.0011749$122.64
BSC0.13%$0.061031,730.9519$105.64
BSC0.12%$199.1043$99.2
BSC0.11%$644.590.1356$87.39
BSC0.08%$165.4571$65.53
BSC0.05%<$0.000001377,599,111.0018$44.77
BSC0.05%$0.070908555.8832$39.42
BSC0.04%$2.9110.2393$29.8
BSC0.03%$0.00032471,965.9905$23.35
BSC0.03%$0.99982220.6372$20.63
BSC0.02%<$0.00000111,711,705,329.8789$15.68
BSC0.02%$0.23522760.1124$14.14
BSC0.02%$1.1911.1328$13.23
BSC0.02%$3.164.0957$12.94
BSC0.02%$0.43367829.5936$12.83
BSC0.02%$0.0028614,396.3404$12.58
BSC0.01%$0.99963511.346$11.34
BSC0.01%$0.49971721.1777$10.58
BSC0.01%$0.0084761,238.9705$10.5
BSC0.01%$104,4490.00009246$9.66
BSC0.01%$0.19544146.2927$9.05
BSC0.01%$0.00015956,412.7423$8.97
BSC0.01%$0.00009296,044.3317$8.88
BSC0.01%$0.12599970.4667$8.88
BSC0.01%$0.000013695,256.3497$8.7
BSC0.01%$0.008786967.2089$8.5
BSC0.01%<$0.0000013,139,447,773,886.502$8.36
BSC0.01%$0.18059745.5155$8.22
BSC<0.01%$0.22313336.1444$8.07
BSC<0.01%$0.00045717,473.9933$7.98
BSC<0.01%$148.60.0536$7.97
BSC<0.01%$0.039214200.8647$7.88
BSC<0.01%$0.002143,645.2106$7.8
BSC<0.01%<$0.000001525,585,740.7627$7.62
BSC<0.01%$0.0000071,145,759.3992$7.56
BSC<0.01%$0.08950184.2297$7.54
BSC<0.01%$0.0000015,333,484.5791$7.41
BSC<0.01%$3.931.8766$7.38
BSC<0.01%$0.07350397.1322$7.14
BSC<0.01%$0.0030142,341.0659$7.06
BSC<0.01%$0.9985847.041$7.03
BSC<0.01%$0.29199524.0445$7.02
BSC<0.01%$0.65593210.5714$6.93
BSC<0.01%$5.871.181$6.93
BSC<0.01%$0.07905187.1789$6.89
BSC<0.01%$2.332.9296$6.83
BSC<0.01%$0.0008238,199.469$6.75
BSC<0.01%$16.6169$6.62
BSC<0.01%$0.047989133.6933$6.42
BSC<0.01%$0.6692569.5369$6.38
BSC<0.01%$0.6674799.4828$6.33
BSC<0.01%$2.132.9201$6.22
BSC<0.01%$0.07255484.5253$6.13
BSC<0.01%$0.7919027.5892$6.01
BSC<0.01%$0.030272189.1689$5.73
BSC<0.01%$12.110.4713$5.71
BSC<0.01%$0.9995595.686$5.68
BSC<0.01%$0.013775411.3826$5.67
BSC<0.01%$0.47302611.8732$5.62
BSC<0.01%$13.720.4066$5.58
BSC<0.01%<$0.00000142,608,277.4761$5.49
BSC<0.01%$0.0000777,101.4658$5.43
BSC<0.01%$0.1036351.9781$5.39
BSC<0.01%$0.00892593.6925$5.3
BSC<0.01%$0.21042424.3821$5.13
BSC<0.01%$0.17954628.2717$5.08
BSC<0.01%$1.842.7241$5.01
BSC<0.01%$0.027663180.9178$5
BSC<0.01%$87.330.0566$4.94
BSC<0.01%$0.27849517.7279$4.94
BSC<0.01%$0.0013033,782.2884$4.93
BSC<0.01%$0.0001531,467.8581$4.73
BSC<0.01%$1.33.5867$4.67
BSC<0.01%$0.000015307,800.1251$4.65
BSC<0.01%$0.0020712,237.896$4.64
BSC<0.01%$2.771.6336$4.53
BSC<0.01%$0.09270848.7425$4.52
BSC<0.01%$4.221.0695$4.51
BSC<0.01%$0.12904334.2661$4.42
BSC<0.01%$0.040065108.4404$4.34
BSC<0.01%$0.012016351.7615$4.23
BSC<0.01%$0.22363818.8665$4.22
BSC<0.01%$0.009563433.6135$4.15
BSC<0.01%$0.11048737.0429$4.09
BSC<0.01%$0.009147440.7779$4.03
BSC<0.01%$5.350.7252$3.88
BSC<0.01%$0.21532417.8328$3.84
BSC<0.01%$0.004885770.8749$3.77
BSC<0.01%$251.530.0149$3.74
BSC<0.01%$2.351.582$3.72
BSC<0.01%$0.019236190.279$3.66
BSC<0.01%$0.018525194.7738$3.61
BSC<0.01%$0.011607306.5676$3.56
BSC<0.01%$2.441.4466$3.53
BSC<0.01%$0.00008342,379.7663$3.51
BSC<0.01%$395.520.00876011$3.46
BSC<0.01%$0.013514255.0172$3.45
BSC<0.01%$10.370.3209$3.33
BSC<0.01%$0.00020116,225.7022$3.27
BSC<0.01%$0.0005675,600.006$3.17
BSC<0.01%$0.0005086,212.9019$3.16
BSC<0.01%$0.000008382,679.8365$3.15
BSC<0.01%$0.00004864,657.1365$3.13
BSC<0.01%$0.00013822,542.3244$3.12
BSC<0.01%$0.0003668,398.3392$3.08
BSC<0.01%$0.011353268.6331$3.05
BSC<0.01%$0.07164541.2666$2.96
BSC<0.01%$19.840.145$2.88
BSC<0.01%$0.002944971.1798$2.86
BSC<0.01%<$0.000001156,594,798.8245$2.84
BSC<0.01%$0.00935303.0684$2.83
BSC<0.01%$0.04173467.6925$2.83
BSC<0.01%$0.04282365.6183$2.81
BSC<0.01%$0.2637159.9523$2.62
BSC<0.01%$0.019374133.6462$2.59
BSC<0.01%$0.023772108.7911$2.59
BSC<0.01%<$0.00000161,569,609.966$2.57
BSC<0.01%$0.00009527,024.1134$2.56
BSC<0.01%$0.020183126.2682$2.55
BSC<0.01%$2.161.1625$2.51
BSC<0.01%$0.0005844,288.3788$2.51
BSC<0.01%$0.6142694.0287$2.47
BSC<0.01%$0.0000013,465,789.2689$2.34
BSC<0.01%$0.022015106$2.33
BSC<0.01%$16.870.1326$2.24
BSC<0.01%$0.6240483.5111$2.19
BSC<0.01%$0.2708927.8787$2.13
BSC<0.01%$0.1627112.8903$2.1
BSC<0.01%$0.3451116.0602$2.09
BSC<0.01%$0.007933261.0458$2.07
BSC<0.01%$0.0000012,729,742.5601$2.05
BSC<0.01%$0.008391241.7939$2.03
BSC<0.01%$0.01008197.3978$1.99
BSC<0.01%$1.041.9175$1.99
BSC<0.01%$0.015934124.2262$1.98
BSC<0.01%$0.003095629.7358$1.95
BSC<0.01%$0.7038542.7623$1.94
BSC<0.01%$0.14765713.1621$1.94
BSC<0.01%$0.9021462.1415$1.93
BSC<0.01%$0.02583374.3775$1.92
BSC<0.01%$2.360.8081$1.91
BSC<0.01%$0.0000013,606,945.152$1.91
BSC<0.01%$0.003336571.1947$1.91
BSC<0.01%$0.0005943,203.489$1.9
BSC<0.01%$0.65582.844$1.87
BSC<0.01%$0.00009120,334.916$1.85
BSC<0.01%$0.000002856,843.4992$1.84
BSC<0.01%$0.000003543,876.7078$1.83
BSC<0.01%$104,3760.0000173$1.81
BSC<0.01%$0.000692,595.427$1.79
BSC<0.01%$0.003343535.0443$1.79
BSC<0.01%$0.79072.2604$1.79
BSC<0.01%$0.017105104.0132$1.78
BSC<0.01%$0.02589368.3838$1.77
BSC<0.01%$0.05633931.2369$1.76
BSC<0.01%$0.5429453.1685$1.72
BSC<0.01%$0.008667198.1522$1.72
BSC<0.01%$48.180.0356$1.71
BSC<0.01%$0.000005313,364.5254$1.66
BSC<0.01%<$0.000001530,267,821.7098$1.63
BSC<0.01%$0.01892885.0802$1.61
BSC<0.01%$0.0008131,981.791$1.61
BSC<0.01%$0.000011143,767.1549$1.61
BSC<0.01%$0.0007622,094.3649$1.59
BSC<0.01%$0.004704336.1314$1.58
BSC<0.01%$0.0004573,448.7063$1.57
BSC<0.01%$142.40.011$1.57
BSC<0.01%$0.008196189.7023$1.55
BSC<0.01%$0.003492438.9895$1.53
BSC<0.01%$0.00012312,293.1272$1.51
BSC<0.01%$0.000013118,171.4332$1.49
BSC<0.01%$0.02271865.2789$1.48
BSC<0.01%$0.1802267.899$1.42
BSC<0.01%$2,483.570.00056844$1.41
BSC<0.01%$0.012376113.9874$1.41
BSC<0.01%$2.670.5252$1.4
BSC<0.01%$0.0001469,482.325$1.38
BSC<0.01%$0.01397597.9205$1.37
BSC<0.01%$0.7010241.8692$1.31
BSC<0.01%$706.630.00183617$1.3
BSC<0.01%$0.0188667.5003$1.27
BSC<0.01%$0.10673111.8393$1.26
BSC<0.01%$0.2731134.5453$1.24
BSC<0.01%$0.1593217.7873$1.24
BSC<0.01%$0.0001478,396.5782$1.24
BSC<0.01%$0.05046724.305$1.23
BSC<0.01%$0.02393150.9281$1.22
BSC<0.01%$0.01367187.2842$1.19
BSC<0.01%<$0.0000016,645,343,798.7826$1.19
BSC<0.01%$0.00009112,943.6862$1.18
BSC<0.01%$0.1365458.6434$1.18
BSC<0.01%$0.3075613.8348$1.18
BSC<0.01%$0.004752245.3291$1.17
BSC<0.01%$0.482572.4133$1.16
BSC<0.01%$0.002839408.5516$1.16
BSC<0.01%$0.01731764.76$1.12
BSC<0.01%$0.08428813.0575$1.1
BSC<0.01%$0.009127119.6881$1.09
BSC<0.01%<$0.00000112,907,451,686.2953$1.08
BSC<0.01%$0.0207751.6982$1.07
BSC<0.01%$0.08353712.6243$1.05
BSC<0.01%$0.0009711,078.9793$1.05
BSC<0.01%$0.009459109.7054$1.04
BSC<0.01%$0.2281924.4876$1.02
BSC<0.01%$0.000002498,968.816$1.01
BSC<0.01%$0.002008502.2098$1.01
BSC<0.01%$0.004861207.0376$1.01
BSC<0.01%<$0.0000018,779,968.8662$0.9887
BSC<0.01%$0.1018799.5593$0.9738
BSC<0.01%<$0.00000118,528,871.1116$0.9738
BSC<0.01%<$0.0000019,855,764.0207$0.9653
BSC<0.01%$0.3285532.9198$0.9593
BSC<0.01%$0.0227942.0194$0.9576
BSC<0.01%$1.010.9438$0.957
BSC<0.01%$0.003432278.7222$0.9565
BSC<0.01%$0.01556760.8307$0.9469
BSC<0.01%<$0.0000012,044,332,517.6064$0.9468
BSC<0.01%$0.01750753.7273$0.9405
BSC<0.01%$0.2487053.6482$0.9073
BSC<0.01%$0.0001994,453.7502$0.8867
BSC<0.01%$0.1988664.4403$0.883
BSC<0.01%$0.01292265.5626$0.8472
BSC<0.01%$0.02461334.2376$0.8426
BSC<0.01%$2.750.2886$0.7937
BSC<0.01%<$0.000001786,738,800.7355$0.7867
BSC<0.01%<$0.000001602,725,921.4684$0.7858
BSC<0.01%$0.0000829,455.0365$0.779
BSC<0.01%$0.01597948.5676$0.776
BSC<0.01%$0.4440691.744$0.7744
BSC<0.01%<$0.000001194,733,734,037.7361$0.7602
BSC<0.01%$0.0001415,344.3976$0.7531
BSC<0.01%$0.0001415,230.3446$0.7387
BSC<0.01%$0.5610591.3031$0.7311
BSC<0.01%$0.1769074.107$0.7265
BSC<0.01%<$0.0000011,257,466,016.676$0.7236
BSC<0.01%$0.0003042,375.3585$0.7221
BSC<0.01%<$0.0000012,496,901.9508$0.7049
BSC<0.01%$3.140.2247$0.7048
BSC<0.01%$0.02227531.2172$0.6953
BSC<0.01%$0.05652812.2164$0.6905
BSC<0.01%$40.880.0168$0.6867
BSC<0.01%$0.0841618.0827$0.6802
BSC<0.01%<$0.0000017,319,737.5529$0.6736
BSC<0.01%$0.04958713.5827$0.6735
BSC<0.01%$1.960.3409$0.6691
BSC<0.01%$0.002696244.0986$0.6581
BSC<0.01%$0.1296335.0637$0.6564
BSC<0.01%$0.00116559.2925$0.6489
BSC<0.01%$0.004966130.0386$0.6457
BSC<0.01%$0.00816377.2965$0.6309
BSC<0.01%$102,7250.00000613$0.6297
BSC<0.01%$0.005668110.6831$0.6273
BSC<0.01%$0.01322646.0056$0.6084
BSC<0.01%$0.6402220.9403$0.602
BSC<0.01%$0.000001752,111.3739$0.5952
BSC<0.01%<$0.00000183,057,882,794.6911$0.5916
BSC<0.01%$0.003029193.6684$0.5866
BSC<0.01%$104,3690.00000554$0.5783
BSC<0.01%$0.0003791,505.6953$0.5704
BSC<0.01%$1.870.3006$0.562
BSC<0.01%$0.1205464.6507$0.5606
BSC<0.01%$1,698.580.00032802$0.5571
BSC<0.01%$0.04078113.5329$0.5518
BSC<0.01%$0.00980655.7656$0.5468
BSC<0.01%$0.0586949.286$0.545
BSC<0.01%$0.00910959.29$0.54
BSC<0.01%$0.0001363,960.576$0.5389
BSC<0.01%$0.0002092,541.4455$0.532
BSC<0.01%$0.00003316,084.337$0.5299
BSC<0.01%<$0.0000019,017,884.3248$0.5229
BSC<0.01%$0.02073324.8934$0.5161
BSC<0.01%$0.002755185.4444$0.5108
BSC<0.01%$0.01297339.2822$0.5096
BSC<0.01%$0.00003713,403.7931$0.4985
BSC<0.01%<$0.000001524,741,003.8191$0.4979
BSC<0.01%$0.1343913.7$0.4972
BSC<0.01%$0.0003561,393.923$0.4964
BSC<0.01%$10.4893$0.4893
BSC<0.01%$0.001246386.827$0.4818
BSC<0.01%$0.0683196.9558$0.4752
BSC<0.01%$0.02289320.3923$0.4668
BSC<0.01%$0.00000949,109.1285$0.4616
BSC<0.01%$0.00815656.163$0.458
BSC<0.01%$0.00869650.8043$0.4418
BSC<0.01%$0.1277183.454$0.4411
BSC<0.01%$0.000953458.418$0.4369
BSC<0.01%$0.02553817.0809$0.4362
BSC<0.01%$0.001034421.944$0.4361
BSC<0.01%$0.002169200.5952$0.435
BSC<0.01%$0.002215.3435$0.4306
BSC<0.01%$6.050.0711$0.4302
BSC<0.01%$0.00002318,638.3325$0.4293
BSC<0.01%$0.00949644.8139$0.4255
BSC<0.01%$0.03113213.5801$0.4227
BSC<0.01%$0.00161256.1898$0.4124
BSC<0.01%$0.001375296.7775$0.4082
BSC<0.01%$0.000559729.0451$0.4077
BSC<0.01%$0.000003133,953.6713$0.4032
BSC<0.01%$0.002285174.4187$0.3985
BSC<0.01%$0.002861138.2757$0.3955
BSC<0.01%$0.2585941.5278$0.395
BSC<0.01%$0.2123311.8606$0.395
BSC<0.01%$0.00762351.6279$0.3935
BSC<0.01%$0.3011171.2678$0.3817
BSC<0.01%$0.001075355.0621$0.3816
BSC<0.01%$0.0000626,082.762$0.3765
BSC<0.01%$0.1028163.607$0.3708
BSC<0.01%$0.043848.4493$0.3704
BSC<0.01%$0.9996850.3702$0.3701
BSC<0.01%$63.550.00576462$0.3663
BSC<0.01%<$0.000001615,901,569.853$0.365
BSC<0.01%$0.02194616.5116$0.3623
BSC<0.01%$0.03391510.2429$0.3473
BSC<0.01%<$0.000001767,677,335,125.538$0.3448
BSC<0.01%$0.1027883.3321$0.3425
BSC<0.01%$44.460.00764941$0.3401
BSC<0.01%$0.001439235.2133$0.3384
BSC<0.01%$0.01551921.5198$0.3339
BSC<0.01%$0.000591556.5127$0.3287
BSC<0.01%<$0.0000013,573,455,187,837.415$0.3228
BSC<0.01%$0.00365787.8984$0.3214
BSC<0.01%$0.02448812.908$0.316
BSC<0.01%$0.002413130.4013$0.3146
BSC<0.01%$0.1276312.4645$0.3145
BSC<0.01%$0.0409127.2887$0.2981
BSC<0.01%$0.001584187.18$0.2965
BSC<0.01%$0.0419737.0158$0.2944
BSC<0.01%$2.230.1308$0.2921
BSC<0.01%$4.020.0718$0.2884
BSC<0.01%$0.000351821.9505$0.2884
BSC<0.01%$0.0726643.8913$0.2827
BSC<0.01%$0.00980228.804$0.2823
BSC<0.01%$2,608.660.00010669$0.2783
BSC<0.01%$0.0813533.4174$0.278
BSC<0.01%$0.1746931.5764$0.2753
BSC<0.01%$0.1340452.0095$0.2693
BSC<0.01%$0.0002671,006.715$0.269
BSC<0.01%$0.0001891,412.3933$0.2667
BSC<0.01%$0.000558475.6592$0.2652
BSC<0.01%$0.002187120.7831$0.2641
BSC<0.01%$0.206881.2674$0.2622
BSC<0.01%$0.0304828.4881$0.2587
BSC<0.01%$0.0000376,935.7569$0.2587
BSC<0.01%$460.00558094$0.2567
BSC<0.01%<$0.0000011,216,162.4371$0.2534
BSC<0.01%$0.001026246.273$0.2526
BSC<0.01%$0.196041.281$0.2511
BSC<0.01%$0.0002291,097.0961$0.2509
BSC<0.01%$0.9839880.2541$0.25
BSC<0.01%<$0.000001110,945,398.557$0.2478
BSC<0.01%$0.0272869.0004$0.2455
BSC<0.01%$0.0040460.6203$0.2449
BSC<0.01%$0.6325730.3823$0.2418
BSC<0.01%$0.3006260.8004$0.2406
BSC<0.01%$2.930.0818$0.2397
BSC<0.01%$0.0001651,449.8962$0.2389
BSC<0.01%$0.00319172.3841$0.2309
BSC<0.01%$0.0304757.4922$0.2283
BSC<0.01%$0.0321457.0511$0.2266
BSC<0.01%$0.00001416,112.2139$0.2226
BSC<0.01%$5,111.350.00004354$0.2225
BSC<0.01%$0.000226957.1849$0.2164
BSC<0.01%$0.00276876.9492$0.213
BSC<0.01%<$0.0000015,936,579.7992$0.2098
BSC<0.01%$0.01010820.7312$0.2095
BSC<0.01%$0.0468624.3689$0.2047
BSC<0.01%<$0.0000013,819,904.8583$0.2046
BSC<0.01%$0.00001612,524.7802$0.2014
BSC<0.01%$0.01662912.1005$0.2012
BSC<0.01%$0.00321961.894$0.1992
BSC<0.01%$0.000965199.8528$0.1929
BSC<0.01%$0.00916120.053$0.1837
BSC<0.01%$1.020.1786$0.1828
BSC<0.01%$0.278590.6407$0.1785
BSC<0.01%$0.0596132.9819$0.1777
BSC<0.01%$0.1664451.0677$0.1777
BSC<0.01%$0.00263766.8896$0.1763
BSC<0.01%$0.0205468.5131$0.1749
BSC<0.01%<$0.0000014,172,121.4551$0.1741
BSC<0.01%$0.00142122.0064$0.1732
BSC<0.01%$0.0069624.4229$0.1699
BSC<0.01%$0.0581432.8409$0.1651
BSC<0.01%$2.410.0685$0.165
BSC<0.01%$0.001333120.3094$0.1603
BSC<0.01%$0.0162179.7219$0.1576
BSC<0.01%$0.0001231,258.3343$0.1546
BSC<0.01%$0.00460432.5745$0.1499
BSC<0.01%$0.774380.1925$0.149
BSC<0.01%$0.00934115.7333$0.1469
BSC<0.01%<$0.0000016,992,666,766.6272$0.1449
BSC<0.01%$0.0230336.1191$0.1409
BSC<0.01%$0.0421983.3365$0.1407
BSC<0.01%$1.20.1156$0.1383
BSC<0.01%$0.5467490.2515$0.1375
BSC<0.01%$0.123891.0812$0.1339
BSC<0.01%$0.0383243.4838$0.1335
BSC<0.01%$0.00444729.8452$0.1327
BSC<0.01%$10.1311$0.1312
BSC<0.01%$7.170.0181$0.1298
BSC<0.01%$0.001002128.7066$0.129
BSC<0.01%<$0.000001303,939.0407$0.1259
BSC<0.01%$0.0000393,224.7999$0.1255
BSC<0.01%$0.001059116.0858$0.1229
BSC<0.01%$1.210.1$0.121
BSC<0.01%$0.0000522,331.9887$0.12
BSC<0.01%$103,8760.00000115$0.1194
BSC<0.01%$0.0244734.8743$0.1192
BSC<0.01%$0.0733451.6232$0.119
BSC<0.01%$0.0585261.9552$0.1144
BSC<0.01%$0.0225734.9465$0.1116
BSC<0.01%<$0.0000011,087,362.3198$0.1085
BSC<0.01%$0.1755260.6185$0.1085
BSC<0.01%$0.0818971.3189$0.108
BSC<0.01%$0.000612172.7381$0.1057
BSC<0.01%$0.082591.2577$0.1038
BSC<0.01%$0.0000195,379.81$0.1034
BSC<0.01%$0.000753136.212$0.1025
BSC<0.01%$0.001663.3959$0.1014
OP
Ether (ETH)
2.42%$2,475.860.7963$1,971.42
OP0.51%$104,6150.00394694$412.91
OP0.45%$2,480.850.1473$365.32
OP0.38%$0.606936510.2803$309.71
OP0.06%$0.99978847.2114$47.2
OP0.05%$138.6903$38.73
OP0.05%$0.99978838.5555$38.55
OP0.01%$0.9996669.5728$9.57
OP<0.01%$0.9680028.3037$8.04
OP<0.01%$0.048476160.3919$7.78
OP<0.01%$0.14442442.7712$6.18
OP<0.01%$13.70.3857$5.28
OP<0.01%$9.740.4955$4.83
OP<0.01%$0.10533438.9633$4.1
OP<0.01%$2.131.4973$3.19
OP<0.01%$2,966.270.00098785$2.93
OP<0.01%$0.17820411.3852$2.03
OP<0.01%$11.9525$1.95
OP<0.01%$0.000721,885.8143$1.36
OP<0.01%$0.002262563.4169$1.27
OP<0.01%$0.9998291.2118$1.21
OP<0.01%$2,477.280.00044648$1.11
OP<0.01%$0.2582.9165$0.7524
OP<0.01%$0.2412341.8953$0.4572
OP<0.01%$0.001771240.2967$0.4256
OP<0.01%$142.40.00296101$0.4216
OP<0.01%$0.00935544.8439$0.4195
OP<0.01%$0.5358120.6903$0.3698
OP<0.01%$0.0001471,602.345$0.235
OP<0.01%$1.040.2024$0.2109
OP<0.01%$6.050.0328$0.1984
OP<0.01%$10.1947$0.1947
OP<0.01%$0.7804620.1853$0.1445
OP<0.01%$0.1796660.5952$0.1069
GNO<0.01%$0.9997885.8519$5.85
GNO<0.01%$11.975$1.98
GNO<0.01%$1.141.4273$1.63
GNO<0.01%$1.141.4273$1.63
GNO<0.01%$0.03305134.6203$1.14
GNO<0.01%$10.8715$0.871624
GNO<0.01%$0.9997880.7016$0.7014
GNO<0.01%$1.040.1818$0.1894
GNO<0.01%$2,966.270.00005739$0.1702
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.

OSZAR »