ETH Price: $3,156.31 (+1.17%)
Gas: 2 Gwei

Token

DeezNuts (DEEZNUTS)
 

Overview

Max Total Supply

420,690,000,000,000 DEEZNUTS

Holders

890

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
5,000,000,000.000000000000920974 DEEZNUTS

Value
$0.00
0x317b3aae698262f1d82121e66017da2c127a1d24
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
DeezNutsToken

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-04-19
*/

// DeezNuts - $DEEZNUTS
// It's the coin we've all been itching for!
// Telegram: t.me/deeznuts_portal



// Sources flattened with hardhat v2.7.0 https://hardhat.org

// File @openzeppelin/contracts/utils/[email protected]

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

// File @openzeppelin/contracts/access/[email protected]

// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File @openzeppelin/contracts/token/ERC20/[email protected]

// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]

// OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

// File @openzeppelin/contracts/token/ERC20/[email protected]

// OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @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");

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

    /**
     * @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 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 {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been 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 _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

interface IUniswapV2Factory {
    function createPair(address tokenA, address tokenB) external returns (address pair);
}

interface IUniswapV2Router02 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);
}

// File contracts/DeezNutsToken.sol
contract DeezNutsToken is Ownable, ERC20 {
    bool public limited = false;
    bool public tradingOpen = false;
    
    address public uniswapV2Pair;
    mapping(address => bool) public blacklists;
    IUniswapV2Router02 private uniswapV2Router;

    uint8 private constant _decimals = 18;
    uint256 private constant _tTotal = 420_690_000_000_000 * 10**_decimals;

    uint256 public maxHoldingAmount = 4_206_900_000_000 * 10**_decimals; //1%

    constructor() ERC20("DeezNuts", "DEEZNUTS") {
        _mint(msg.sender, _tTotal);

        uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        _approve(address(this), address(uniswapV2Router), _tTotal);
        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH());
        IERC20(uniswapV2Pair).approve(address(uniswapV2Router), type(uint).max);
    }

    function blacklist(address _address, bool _isBlacklisting) external onlyOwner {
        blacklists[_address] = _isBlacklisting;
    }

    function openTrading() external onlyOwner() {
        require(!tradingOpen,"trading is already open");
        limited = true;
        tradingOpen = true;  
    }

    function removeMaxLimit() external onlyOwner() {
        limited = false;
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) override internal virtual {
            require(!blacklists[to] && !blacklists[from], "Blacklisted");

            if (!tradingOpen) {
                require(from == owner() || to == owner(), "Trading is not started");
                return;
            }

            if (limited && from == uniswapV2Pair) {
                require(super.balanceOf(to) + amount <= maxHoldingAmount, "Forbid");
            }
    }

    function burn(uint256 value) external {
        _burn(msg.sender, value);
    }
}

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":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","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":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_isBlacklisting","type":"bool"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limited","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeMaxLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","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":[],"name":"tradingOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","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"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60806040526006805461ffff191690556200001d6012600a620009eb565b6200002f906503d37ec7b50062000ad6565b6009553480156200003f57600080fd5b50604051806040016040528060088152602001674465657a4e75747360c01b815250604051806040016040528060088152602001674445455a4e55545360c01b8152506200009c62000096620003a760201b60201c565b620003ab565b8151620000b190600490602085019062000716565b508051620000c790600590602084019062000716565b505050620000f8336012600a620000df9190620009eb565b620000f29066017e9d8602b40062000ad6565b620003fb565b600880546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d1790819055620001579030906001600160a01b03166200013e6012600a620009eb565b620001519066017e9d8602b40062000ad6565b620004dd565b600860009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620001a657600080fd5b505afa158015620001bb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001e19190620007bc565b6001600160a01b031663c9c6539630600860009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200023f57600080fd5b505afa15801562000254573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200027a9190620007bc565b6040518363ffffffff1660e01b8152600401620002999291906200080e565b602060405180830381600087803b158015620002b457600080fd5b505af1158015620002c9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ef9190620007bc565b6006805462010000600160b01b031916620100006001600160a01b039384168102919091179182905560085460405163095ea7b360e01b81529190920483169263095ea7b3926200034a929116906000199060040162000828565b602060405180830381600087803b1580156200036557600080fd5b505af11580156200037a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003a09190620007ec565b5062000b4b565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166200042d5760405162461bcd60e51b815260040162000424906200091e565b60405180910390fd5b6200043b6000838362000599565b80600360008282546200044f919062000983565b90915550506001600160a01b038216600090815260016020526040812080548392906200047e90849062000983565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90620004c39085906200097a565b60405180910390a3620004d960008383620006e7565b5050565b6001600160a01b038316620005065760405162461bcd60e51b81526004016200042490620008da565b6001600160a01b0382166200052f5760405162461bcd60e51b8152600401620004249062000841565b6001600160a01b0380841660008181526002602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906200058c9085906200097a565b60405180910390a3505050565b6001600160a01b03821660009081526007602052604090205460ff16158015620005dc57506001600160a01b03831660009081526007602052604090205460ff16155b620005fb5760405162461bcd60e51b8152600401620004249062000955565b600654610100900460ff16620006745762000615620006ec565b6001600160a01b0316836001600160a01b031614806200064f57506200063a620006ec565b6001600160a01b0316826001600160a01b0316145b6200066e5760405162461bcd60e51b81526004016200042490620008a3565b620006e7565b60065460ff1680156200069a57506006546001600160a01b038481166201000090920416145b15620006e75760095481620006ba84620006fb60201b620005171760201c565b620006c6919062000983565b1115620006e75760405162461bcd60e51b8152600401620004249062000883565b505050565b6000546001600160a01b031690565b6001600160a01b031660009081526001602052604090205490565b828054620007249062000af8565b90600052602060002090601f01602090048101928262000748576000855562000793565b82601f106200076357805160ff191683800117855562000793565b8280016001018555821562000793579182015b828111156200079357825182559160200191906001019062000776565b50620007a1929150620007a5565b5090565b5b80821115620007a15760008155600101620007a6565b600060208284031215620007ce578081fd5b81516001600160a01b0381168114620007e5578182fd5b9392505050565b600060208284031215620007fe578081fd5b81518015158114620007e5578182fd5b6001600160a01b0392831681529116602082015260400190565b6001600160a01b03929092168252602082015260400190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b602080825260069082015265119bdc989a5960d21b604082015260600190565b60208082526016908201527f54726164696e67206973206e6f74207374617274656400000000000000000000604082015260600190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b6020808252600b908201526a109b1858dadb1a5cdd195960aa1b604082015260600190565b90815260200190565b6000821982111562000999576200099962000b35565b500190565b80825b6001808611620009b25750620009e2565b818704821115620009c757620009c762000b35565b80861615620009d557918102915b9490941c938002620009a1565b94509492505050565b6000620007e560001960ff85168460008262000a0a57506001620007e5565b8162000a1957506000620007e5565b816001811462000a32576002811462000a3d5762000a71565b6001915050620007e5565b60ff84111562000a515762000a5162000b35565b6001841b91508482111562000a6a5762000a6a62000b35565b50620007e5565b5060208310610133831016604e8410600b841016171562000aa9575081810a8381111562000aa35762000aa362000b35565b620007e5565b62000ab884848460016200099e565b80860482111562000acd5762000acd62000b35565b02949350505050565b600081600019048311821515161562000af35762000af362000b35565b500290565b60028104600182168062000b0d57607f821691505b6020821081141562000b2f57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6111e88062000b5b6000396000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c8063715018a6116100c3578063a9059cbb1161007c578063a9059cbb1461027e578063c9567bf914610291578063dd62ed3e14610299578063f2fde38b146102ac578063fa0096df146102bf578063ffb54a99146102c75761014d565b8063715018a614610243578063860a32ec1461024b57806389f9a1d3146102535780638da5cb5b1461025b57806395d89b4114610263578063a457c2d71461026b5761014d565b8063313ce56711610115578063313ce567146101cb57806339509351146101e0578063404e5129146101f357806342966c681461020857806349bd5a5e1461021b57806370a08231146102305761014d565b806306fdde0314610152578063095ea7b31461017057806316c021291461019057806318160ddd146101a357806323b872dd146101b8575b600080fd5b61015a6102cf565b6040516101679190610d3d565b60405180910390f35b61018361017e366004610cdd565b610361565b6040516101679190610d32565b61018361019e366004610c15565b61037e565b6101ab610393565b604051610167919061111b565b6101836101c6366004610c68565b610399565b6101d3610432565b6040516101679190611124565b6101836101ee366004610cdd565b610437565b610206610201366004610ca3565b61048b565b005b610206610216366004610d06565b6104f5565b610223610502565b6040516101679190610d1e565b6101ab61023e366004610c15565b610517565b610206610536565b610183610581565b6101ab61058a565b610223610590565b61015a61059f565b610183610279366004610cdd565b6105ae565b61018361028c366004610cdd565b610627565b61020661063b565b6101ab6102a7366004610c36565b6106bc565b6102066102ba366004610c15565b6106e7565b610206610755565b6101836107a0565b6060600480546102de90611161565b80601f016020809104026020016040519081016040528092919081815260200182805461030a90611161565b80156103575780601f1061032c57610100808354040283529160200191610357565b820191906000526020600020905b81548152906001019060200180831161033a57829003601f168201915b5050505050905090565b600061037561036e6107ae565b84846107b2565b50600192915050565b60076020526000908152604090205460ff1681565b60035490565b60006103a6848484610866565b6001600160a01b0384166000908152600260205260408120816103c76107ae565b6001600160a01b03166001600160a01b03168152602001908152602001600020549050828110156104135760405162461bcd60e51b815260040161040a90610f33565b60405180910390fd5b6104278561041f6107ae565b8584036107b2565b506001949350505050565b601290565b60006103756104446107ae565b8484600260006104526107ae565b6001600160a01b03908116825260208083019390935260409182016000908120918b16815292529020546104869190611132565b6107b2565b6104936107ae565b6001600160a01b03166104a4610590565b6001600160a01b0316146104ca5760405162461bcd60e51b815260040161040a90610f7b565b6001600160a01b03919091166000908152600760205260409020805460ff1916911515919091179055565b6104ff3382610990565b50565b6006546201000090046001600160a01b031681565b6001600160a01b0381166000908152600160205260409020545b919050565b61053e6107ae565b6001600160a01b031661054f610590565b6001600160a01b0316146105755760405162461bcd60e51b815260040161040a90610f7b565b61057f6000610a82565b565b60065460ff1681565b60095481565b6000546001600160a01b031690565b6060600580546102de90611161565b600080600260006105bd6107ae565b6001600160a01b03908116825260208083019390935260409182016000908120918816815292529020549050828110156106095760405162461bcd60e51b815260040161040a906110b1565b61061d6106146107ae565b858584036107b2565b5060019392505050565b60006103756106346107ae565b8484610866565b6106436107ae565b6001600160a01b0316610654610590565b6001600160a01b03161461067a5760405162461bcd60e51b815260040161040a90610f7b565b600654610100900460ff16156106a25760405162461bcd60e51b815260040161040a9061107a565b6006805461ff001960ff1990911660011716610100179055565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6106ef6107ae565b6001600160a01b0316610700610590565b6001600160a01b0316146107265760405162461bcd60e51b815260040161040a90610f7b565b6001600160a01b03811661074c5760405162461bcd60e51b815260040161040a90610e15565b6104ff81610a82565b61075d6107ae565b6001600160a01b031661076e610590565b6001600160a01b0316146107945760405162461bcd60e51b815260040161040a90610f7b565b6006805460ff19169055565b600654610100900460ff1681565b3390565b6001600160a01b0383166107d85760405162461bcd60e51b815260040161040a90611036565b6001600160a01b0382166107fe5760405162461bcd60e51b815260040161040a90610e5b565b6001600160a01b0380841660008181526002602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061085990859061111b565b60405180910390a3505050565b6001600160a01b03831661088c5760405162461bcd60e51b815260040161040a90610ff1565b6001600160a01b0382166108b25760405162461bcd60e51b815260040161040a90610d90565b6108bd838383610ad2565b6001600160a01b038316600090815260016020526040902054818110156108f65760405162461bcd60e51b815260040161040a90610e9d565b6001600160a01b0380851660009081526001602052604080822085850390559185168152908120805484929061092d908490611132565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610977919061111b565b60405180910390a361098a848484610a7d565b50505050565b6001600160a01b0382166109b65760405162461bcd60e51b815260040161040a90610fb0565b6109c282600083610ad2565b6001600160a01b038216600090815260016020526040902054818110156109fb5760405162461bcd60e51b815260040161040a90610dd3565b6001600160a01b0383166000908152600160205260408120838303905560038054849290610a2a90849061114a565b90915550506040516000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610a6d90869061111b565b60405180910390a3610a7d836000845b505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b03821660009081526007602052604090205460ff16158015610b1457506001600160a01b03831660009081526007602052604090205460ff16155b610b305760405162461bcd60e51b815260040161040a906110f6565b600654610100900460ff16610b9f57610b47610590565b6001600160a01b0316836001600160a01b03161480610b7e5750610b69610590565b6001600160a01b0316826001600160a01b0316145b610b9a5760405162461bcd60e51b815260040161040a90610f03565b610a7d565b60065460ff168015610bc457506006546001600160a01b038481166201000090920416145b15610a7d5760095481610bd684610517565b610be09190611132565b1115610a7d5760405162461bcd60e51b815260040161040a90610ee3565b80356001600160a01b038116811461053157600080fd5b600060208284031215610c26578081fd5b610c2f82610bfe565b9392505050565b60008060408385031215610c48578081fd5b610c5183610bfe565b9150610c5f60208401610bfe565b90509250929050565b600080600060608486031215610c7c578081fd5b610c8584610bfe565b9250610c9360208501610bfe565b9150604084013590509250925092565b60008060408385031215610cb5578182fd5b610cbe83610bfe565b915060208301358015158114610cd2578182fd5b809150509250929050565b60008060408385031215610cef578182fd5b610cf883610bfe565b946020939093013593505050565b600060208284031215610d17578081fd5b5035919050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b81811015610d6957858101830151858201604001528201610d4d565b81811115610d7a5783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604082015261636560f01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b602080825260069082015265119bdc989a5960d21b604082015260600190565b602080825260169082015275151c98591a5b99c81a5cc81b9bdd081cdd185c9d195960521b604082015260600190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526017908201527f74726164696e6720697320616c7265616479206f70656e000000000000000000604082015260600190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b6020808252600b908201526a109b1858dadb1a5cdd195960aa1b604082015260600190565b90815260200190565b60ff91909116815260200190565b600082198211156111455761114561119c565b500190565b60008282101561115c5761115c61119c565b500390565b60028104600182168061117557607f821691505b6020821081141561119657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea264697066735822122094bc6eb530ba9eb4ee085c7fc19373b4f0502be2ac93b47bfe9ce9f8416a5b4664736f6c63430008000033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061014d5760003560e01c8063715018a6116100c3578063a9059cbb1161007c578063a9059cbb1461027e578063c9567bf914610291578063dd62ed3e14610299578063f2fde38b146102ac578063fa0096df146102bf578063ffb54a99146102c75761014d565b8063715018a614610243578063860a32ec1461024b57806389f9a1d3146102535780638da5cb5b1461025b57806395d89b4114610263578063a457c2d71461026b5761014d565b8063313ce56711610115578063313ce567146101cb57806339509351146101e0578063404e5129146101f357806342966c681461020857806349bd5a5e1461021b57806370a08231146102305761014d565b806306fdde0314610152578063095ea7b31461017057806316c021291461019057806318160ddd146101a357806323b872dd146101b8575b600080fd5b61015a6102cf565b6040516101679190610d3d565b60405180910390f35b61018361017e366004610cdd565b610361565b6040516101679190610d32565b61018361019e366004610c15565b61037e565b6101ab610393565b604051610167919061111b565b6101836101c6366004610c68565b610399565b6101d3610432565b6040516101679190611124565b6101836101ee366004610cdd565b610437565b610206610201366004610ca3565b61048b565b005b610206610216366004610d06565b6104f5565b610223610502565b6040516101679190610d1e565b6101ab61023e366004610c15565b610517565b610206610536565b610183610581565b6101ab61058a565b610223610590565b61015a61059f565b610183610279366004610cdd565b6105ae565b61018361028c366004610cdd565b610627565b61020661063b565b6101ab6102a7366004610c36565b6106bc565b6102066102ba366004610c15565b6106e7565b610206610755565b6101836107a0565b6060600480546102de90611161565b80601f016020809104026020016040519081016040528092919081815260200182805461030a90611161565b80156103575780601f1061032c57610100808354040283529160200191610357565b820191906000526020600020905b81548152906001019060200180831161033a57829003601f168201915b5050505050905090565b600061037561036e6107ae565b84846107b2565b50600192915050565b60076020526000908152604090205460ff1681565b60035490565b60006103a6848484610866565b6001600160a01b0384166000908152600260205260408120816103c76107ae565b6001600160a01b03166001600160a01b03168152602001908152602001600020549050828110156104135760405162461bcd60e51b815260040161040a90610f33565b60405180910390fd5b6104278561041f6107ae565b8584036107b2565b506001949350505050565b601290565b60006103756104446107ae565b8484600260006104526107ae565b6001600160a01b03908116825260208083019390935260409182016000908120918b16815292529020546104869190611132565b6107b2565b6104936107ae565b6001600160a01b03166104a4610590565b6001600160a01b0316146104ca5760405162461bcd60e51b815260040161040a90610f7b565b6001600160a01b03919091166000908152600760205260409020805460ff1916911515919091179055565b6104ff3382610990565b50565b6006546201000090046001600160a01b031681565b6001600160a01b0381166000908152600160205260409020545b919050565b61053e6107ae565b6001600160a01b031661054f610590565b6001600160a01b0316146105755760405162461bcd60e51b815260040161040a90610f7b565b61057f6000610a82565b565b60065460ff1681565b60095481565b6000546001600160a01b031690565b6060600580546102de90611161565b600080600260006105bd6107ae565b6001600160a01b03908116825260208083019390935260409182016000908120918816815292529020549050828110156106095760405162461bcd60e51b815260040161040a906110b1565b61061d6106146107ae565b858584036107b2565b5060019392505050565b60006103756106346107ae565b8484610866565b6106436107ae565b6001600160a01b0316610654610590565b6001600160a01b03161461067a5760405162461bcd60e51b815260040161040a90610f7b565b600654610100900460ff16156106a25760405162461bcd60e51b815260040161040a9061107a565b6006805461ff001960ff1990911660011716610100179055565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6106ef6107ae565b6001600160a01b0316610700610590565b6001600160a01b0316146107265760405162461bcd60e51b815260040161040a90610f7b565b6001600160a01b03811661074c5760405162461bcd60e51b815260040161040a90610e15565b6104ff81610a82565b61075d6107ae565b6001600160a01b031661076e610590565b6001600160a01b0316146107945760405162461bcd60e51b815260040161040a90610f7b565b6006805460ff19169055565b600654610100900460ff1681565b3390565b6001600160a01b0383166107d85760405162461bcd60e51b815260040161040a90611036565b6001600160a01b0382166107fe5760405162461bcd60e51b815260040161040a90610e5b565b6001600160a01b0380841660008181526002602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061085990859061111b565b60405180910390a3505050565b6001600160a01b03831661088c5760405162461bcd60e51b815260040161040a90610ff1565b6001600160a01b0382166108b25760405162461bcd60e51b815260040161040a90610d90565b6108bd838383610ad2565b6001600160a01b038316600090815260016020526040902054818110156108f65760405162461bcd60e51b815260040161040a90610e9d565b6001600160a01b0380851660009081526001602052604080822085850390559185168152908120805484929061092d908490611132565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610977919061111b565b60405180910390a361098a848484610a7d565b50505050565b6001600160a01b0382166109b65760405162461bcd60e51b815260040161040a90610fb0565b6109c282600083610ad2565b6001600160a01b038216600090815260016020526040902054818110156109fb5760405162461bcd60e51b815260040161040a90610dd3565b6001600160a01b0383166000908152600160205260408120838303905560038054849290610a2a90849061114a565b90915550506040516000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610a6d90869061111b565b60405180910390a3610a7d836000845b505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b03821660009081526007602052604090205460ff16158015610b1457506001600160a01b03831660009081526007602052604090205460ff16155b610b305760405162461bcd60e51b815260040161040a906110f6565b600654610100900460ff16610b9f57610b47610590565b6001600160a01b0316836001600160a01b03161480610b7e5750610b69610590565b6001600160a01b0316826001600160a01b0316145b610b9a5760405162461bcd60e51b815260040161040a90610f03565b610a7d565b60065460ff168015610bc457506006546001600160a01b038481166201000090920416145b15610a7d5760095481610bd684610517565b610be09190611132565b1115610a7d5760405162461bcd60e51b815260040161040a90610ee3565b80356001600160a01b038116811461053157600080fd5b600060208284031215610c26578081fd5b610c2f82610bfe565b9392505050565b60008060408385031215610c48578081fd5b610c5183610bfe565b9150610c5f60208401610bfe565b90509250929050565b600080600060608486031215610c7c578081fd5b610c8584610bfe565b9250610c9360208501610bfe565b9150604084013590509250925092565b60008060408385031215610cb5578182fd5b610cbe83610bfe565b915060208301358015158114610cd2578182fd5b809150509250929050565b60008060408385031215610cef578182fd5b610cf883610bfe565b946020939093013593505050565b600060208284031215610d17578081fd5b5035919050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b81811015610d6957858101830151858201604001528201610d4d565b81811115610d7a5783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604082015261636560f01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b602080825260069082015265119bdc989a5960d21b604082015260600190565b602080825260169082015275151c98591a5b99c81a5cc81b9bdd081cdd185c9d195960521b604082015260600190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526017908201527f74726164696e6720697320616c7265616479206f70656e000000000000000000604082015260600190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b6020808252600b908201526a109b1858dadb1a5cdd195960aa1b604082015260600190565b90815260200190565b60ff91909116815260200190565b600082198211156111455761114561119c565b500190565b60008282101561115c5761115c61119c565b500390565b60028104600182168061117557607f821691505b6020821081141561119657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea264697066735822122094bc6eb530ba9eb4ee085c7fc19373b4f0502be2ac93b47bfe9ce9f8416a5b4664736f6c63430008000033

Deployed Bytecode Sourcemap

19676:1957:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9404:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11571:169;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;19837:42::-;;;;;;:::i;:::-;;:::i;10524:108::-;;;:::i;:::-;;;;;;;:::i;12222:492::-;;;;;;:::i;:::-;;:::i;10366:93::-;;;:::i;:::-;;;;;;;:::i;13123:215::-;;;;;;:::i;:::-;;:::i;20603:135::-;;;;;;:::i;:::-;;:::i;:::-;;21549:81;;;;;;:::i;:::-;;:::i;19802:28::-;;;:::i;:::-;;;;;;;:::i;10695:127::-;;;;;;:::i;:::-;;:::i;2821:103::-;;;:::i;19724:27::-;;;:::i;20060:67::-;;;:::i;2170:87::-;;;:::i;9623:104::-;;;:::i;13841:413::-;;;;;;:::i;:::-;;:::i;11035:175::-;;;;;;:::i;:::-;;:::i;20746:166::-;;;:::i;11273:151::-;;;;;;:::i;:::-;;:::i;3079:201::-;;;;;;:::i;:::-;;:::i;20920:81::-;;;:::i;19758:31::-;;;:::i;9404:100::-;9458:13;9491:5;9484:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9404:100;:::o;11571:169::-;11654:4;11671:39;11680:12;:10;:12::i;:::-;11694:7;11703:6;11671:8;:39::i;:::-;-1:-1:-1;11728:4:0;11571:169;;;;:::o;19837:42::-;;;;;;;;;;;;;;;:::o;10524:108::-;10612:12;;10524:108;:::o;12222:492::-;12362:4;12379:36;12389:6;12397:9;12408:6;12379:9;:36::i;:::-;-1:-1:-1;;;;;12455:19:0;;12428:24;12455:19;;;:11;:19;;;;;12428:24;12475:12;:10;:12::i;:::-;-1:-1:-1;;;;;12455:33:0;-1:-1:-1;;;;;12455:33:0;;;;;;;;;;;;;12428:60;;12527:6;12507:16;:26;;12499:79;;;;-1:-1:-1;;;12499:79:0;;;;;;;:::i;:::-;;;;;;;;;12614:57;12623:6;12631:12;:10;:12::i;:::-;12664:6;12645:16;:25;12614:8;:57::i;:::-;-1:-1:-1;12702:4:0;;12222:492;-1:-1:-1;;;;12222:492:0:o;10366:93::-;10449:2;10366:93;:::o;13123:215::-;13211:4;13228:80;13237:12;:10;:12::i;:::-;13251:7;13297:10;13260:11;:25;13272:12;:10;:12::i;:::-;-1:-1:-1;;;;;13260:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;13260:25:0;;;:34;;;;;;;;;;:47;;;;:::i;:::-;13228:8;:80::i;20603:135::-;2401:12;:10;:12::i;:::-;-1:-1:-1;;;;;2390:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2390:23:0;;2382:68;;;;-1:-1:-1;;;2382:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;20692:20:0;;;::::1;;::::0;;;:10:::1;:20;::::0;;;;:38;;-1:-1:-1;;20692:38:0::1;::::0;::::1;;::::0;;;::::1;::::0;;20603:135::o;21549:81::-;21598:24;21604:10;21616:5;21598;:24::i;:::-;21549:81;:::o;19802:28::-;;;;;;-1:-1:-1;;;;;19802:28:0;;:::o;10695:127::-;-1:-1:-1;;;;;10796:18:0;;10769:7;10796:18;;;:9;:18;;;;;;10695:127;;;;:::o;2821:103::-;2401:12;:10;:12::i;:::-;-1:-1:-1;;;;;2390:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2390:23:0;;2382:68;;;;-1:-1:-1;;;2382:68:0;;;;;;;:::i;:::-;2886:30:::1;2913:1;2886:18;:30::i;:::-;2821:103::o:0;19724:27::-;;;;;;:::o;20060:67::-;;;;:::o;2170:87::-;2216:7;2243:6;-1:-1:-1;;;;;2243:6:0;2170:87;:::o;9623:104::-;9679:13;9712:7;9705:14;;;;;:::i;13841:413::-;13934:4;13951:24;13978:11;:25;13990:12;:10;:12::i;:::-;-1:-1:-1;;;;;13978:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;13978:25:0;;;:34;;;;;;;;;;;-1:-1:-1;14031:35:0;;;;14023:85;;;;-1:-1:-1;;;14023:85:0;;;;;;;:::i;:::-;14144:67;14153:12;:10;:12::i;:::-;14167:7;14195:15;14176:16;:34;14144:8;:67::i;:::-;-1:-1:-1;14242:4:0;;13841:413;-1:-1:-1;;;13841:413:0:o;11035:175::-;11121:4;11138:42;11148:12;:10;:12::i;:::-;11162:9;11173:6;11138:9;:42::i;20746:166::-;2401:12;:10;:12::i;:::-;-1:-1:-1;;;;;2390:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2390:23:0;;2382:68;;;;-1:-1:-1;;;2382:68:0;;;;;;;:::i;:::-;20810:11:::1;::::0;::::1;::::0;::::1;;;20809:12;20801:47;;;;-1:-1:-1::0;;;20801:47:0::1;;;;;;;:::i;:::-;20859:7;:14:::0;;-1:-1:-1;;;;20859:14:0;;::::1;20869:4;20859:14;20884:18;20859:14;20884:18;::::0;;20746:166::o;11273:151::-;-1:-1:-1;;;;;11389:18:0;;;11362:7;11389:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11273:151::o;3079:201::-;2401:12;:10;:12::i;:::-;-1:-1:-1;;;;;2390:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2390:23:0;;2382:68;;;;-1:-1:-1;;;2382:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3168:22:0;::::1;3160:73;;;;-1:-1:-1::0;;;3160:73:0::1;;;;;;;:::i;:::-;3244:28;3263:8;3244:18;:28::i;20920:81::-:0;2401:12;:10;:12::i;:::-;-1:-1:-1;;;;;2390:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2390:23:0;;2382:68;;;;-1:-1:-1;;;2382:68:0;;;;;;;:::i;:::-;20978:7:::1;:15:::0;;-1:-1:-1;;20978:15:0::1;::::0;;20920:81::o;19758:31::-;;;;;;;;;:::o;892:98::-;972:10;892:98;:::o;17525:380::-;-1:-1:-1;;;;;17661:19:0;;17653:68;;;;-1:-1:-1;;;17653:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;17740:21:0;;17732:68;;;;-1:-1:-1;;;17732:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;17813:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;17865:32;;;;;17843:6;;17865:32;:::i;:::-;;;;;;;;17525:380;;;:::o;14744:733::-;-1:-1:-1;;;;;14884:20:0;;14876:70;;;;-1:-1:-1;;;14876:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14965:23:0;;14957:71;;;;-1:-1:-1;;;14957:71:0;;;;;;;:::i;:::-;15041:47;15062:6;15070:9;15081:6;15041:20;:47::i;:::-;-1:-1:-1;;;;;15125:17:0;;15101:21;15125:17;;;:9;:17;;;;;;15161:23;;;;15153:74;;;;-1:-1:-1;;;15153:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15263:17:0;;;;;;;:9;:17;;;;;;15283:22;;;15263:42;;15327:20;;;;;;;;:30;;15299:6;;15263:17;15327:30;;15299:6;;15327:30;:::i;:::-;;;;;;;;15392:9;-1:-1:-1;;;;;15375:35:0;15384:6;-1:-1:-1;;;;;15375:35:0;;15403:6;15375:35;;;;;;:::i;:::-;;;;;;;;15423:46;15443:6;15451:9;15462:6;15423:19;:46::i;:::-;14744:733;;;;:::o;16496:591::-;-1:-1:-1;;;;;16580:21:0;;16572:67;;;;-1:-1:-1;;;16572:67:0;;;;;;;:::i;:::-;16652:49;16673:7;16690:1;16694:6;16652:20;:49::i;:::-;-1:-1:-1;;;;;16739:18:0;;16714:22;16739:18;;;:9;:18;;;;;;16776:24;;;;16768:71;;;;-1:-1:-1;;;16768:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16875:18:0;;;;;;:9;:18;;;;;16896:23;;;16875:44;;16941:12;:22;;16913:6;;16875:18;16941:22;;16913:6;;16941:22;:::i;:::-;;;;-1:-1:-1;;16981:37:0;;17007:1;;-1:-1:-1;;;;;16981:37:0;;;;;;;17011:6;;16981:37;:::i;:::-;;;;;;;;17031:48;17051:7;17068:1;17072:6;17031:48;16496:591;;;:::o;3440:191::-;3514:16;3533:6;;-1:-1:-1;;;;;3550:17:0;;;-1:-1:-1;;;;;;3550:17:0;;;;;;3583:40;;3533:6;;;;;;;3583:40;;3514:16;3583:40;3440:191;;:::o;21009:532::-;-1:-1:-1;;;;;21165:14:0;;;;;;:10;:14;;;;;;;;21164:15;:36;;;;-1:-1:-1;;;;;;21184:16:0;;;;;;:10;:16;;;;;;;;21183:17;21164:36;21156:60;;;;-1:-1:-1;;;21156:60:0;;;;;;;:::i;:::-;21238:11;;;;;;;21233:145;;21286:7;:5;:7::i;:::-;-1:-1:-1;;;;;21278:15:0;:4;-1:-1:-1;;;;;21278:15:0;;:32;;;;21303:7;:5;:7::i;:::-;-1:-1:-1;;;;;21297:13:0;:2;-1:-1:-1;;;;;21297:13:0;;21278:32;21270:67;;;;-1:-1:-1;;;21270:67:0;;;;;;;:::i;:::-;21356:7;;21233:145;21398:7;;;;:32;;;;-1:-1:-1;21417:13:0;;-1:-1:-1;;;;;21409:21:0;;;21417:13;;;;;21409:21;21398:32;21394:140;;;21491:16;;21481:6;21459:19;21475:2;21459:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;21451:67;;;;-1:-1:-1;;;21451:67:0;;;;;;;:::i;14:175:1:-;84:20;;-1:-1:-1;;;;;133:31:1;;123:42;;113:2;;179:1;176;169:12;194:198;;306:2;294:9;285:7;281:23;277:32;274:2;;;327:6;319;312:22;274:2;355:31;376:9;355:31;:::i;:::-;345:41;264:128;-1:-1:-1;;;264:128:1:o;397:274::-;;;526:2;514:9;505:7;501:23;497:32;494:2;;;547:6;539;532:22;494:2;575:31;596:9;575:31;:::i;:::-;565:41;;625:40;661:2;650:9;646:18;625:40;:::i;:::-;615:50;;484:187;;;;;:::o;676:342::-;;;;822:2;810:9;801:7;797:23;793:32;790:2;;;843:6;835;828:22;790:2;871:31;892:9;871:31;:::i;:::-;861:41;;921:40;957:2;946:9;942:18;921:40;:::i;:::-;911:50;;1008:2;997:9;993:18;980:32;970:42;;780:238;;;;;:::o;1023:369::-;;;1149:2;1137:9;1128:7;1124:23;1120:32;1117:2;;;1170:6;1162;1155:22;1117:2;1198:31;1219:9;1198:31;:::i;:::-;1188:41;;1279:2;1268:9;1264:18;1251:32;1326:5;1319:13;1312:21;1305:5;1302:32;1292:2;;1353:6;1345;1338:22;1292:2;1381:5;1371:15;;;1107:285;;;;;:::o;1397:266::-;;;1526:2;1514:9;1505:7;1501:23;1497:32;1494:2;;;1547:6;1539;1532:22;1494:2;1575:31;1596:9;1575:31;:::i;:::-;1565:41;1653:2;1638:18;;;;1625:32;;-1:-1:-1;;;1484:179:1:o;1668:190::-;;1780:2;1768:9;1759:7;1755:23;1751:32;1748:2;;;1801:6;1793;1786:22;1748:2;-1:-1:-1;1829:23:1;;1738:120;-1:-1:-1;1738:120:1:o;1863:203::-;-1:-1:-1;;;;;2027:32:1;;;;2009:51;;1997:2;1982:18;;1964:102::o;2071:187::-;2236:14;;2229:22;2211:41;;2199:2;2184:18;;2166:92::o;2263:603::-;;2404:2;2433;2422:9;2415:21;2465:6;2459:13;2508:6;2503:2;2492:9;2488:18;2481:34;2533:4;2546:140;2560:6;2557:1;2554:13;2546:140;;;2655:14;;;2651:23;;2645:30;2621:17;;;2640:2;2617:26;2610:66;2575:10;;2546:140;;;2704:6;2701:1;2698:13;2695:2;;;2774:4;2769:2;2760:6;2749:9;2745:22;2741:31;2734:45;2695:2;-1:-1:-1;2850:2:1;2829:15;-1:-1:-1;;2825:29:1;2810:45;;;;2857:2;2806:54;;2384:482;-1:-1:-1;;;2384:482:1:o;2871:399::-;3073:2;3055:21;;;3112:2;3092:18;;;3085:30;3151:34;3146:2;3131:18;;3124:62;-1:-1:-1;;;3217:2:1;3202:18;;3195:33;3260:3;3245:19;;3045:225::o;3275:398::-;3477:2;3459:21;;;3516:2;3496:18;;;3489:30;3555:34;3550:2;3535:18;;3528:62;-1:-1:-1;;;3621:2:1;3606:18;;3599:32;3663:3;3648:19;;3449:224::o;3678:402::-;3880:2;3862:21;;;3919:2;3899:18;;;3892:30;3958:34;3953:2;3938:18;;3931:62;-1:-1:-1;;;4024:2:1;4009:18;;4002:36;4070:3;4055:19;;3852:228::o;4085:398::-;4287:2;4269:21;;;4326:2;4306:18;;;4299:30;4365:34;4360:2;4345:18;;4338:62;-1:-1:-1;;;4431:2:1;4416:18;;4409:32;4473:3;4458:19;;4259:224::o;4488:402::-;4690:2;4672:21;;;4729:2;4709:18;;;4702:30;4768:34;4763:2;4748:18;;4741:62;-1:-1:-1;;;4834:2:1;4819:18;;4812:36;4880:3;4865:19;;4662:228::o;4895:329::-;5097:2;5079:21;;;5136:1;5116:18;;;5109:29;-1:-1:-1;;;5169:2:1;5154:18;;5147:36;5215:2;5200:18;;5069:155::o;5229:346::-;5431:2;5413:21;;;5470:2;5450:18;;;5443:30;-1:-1:-1;;;5504:2:1;5489:18;;5482:52;5566:2;5551:18;;5403:172::o;5580:404::-;5782:2;5764:21;;;5821:2;5801:18;;;5794:30;5860:34;5855:2;5840:18;;5833:62;-1:-1:-1;;;5926:2:1;5911:18;;5904:38;5974:3;5959:19;;5754:230::o;5989:356::-;6191:2;6173:21;;;6210:18;;;6203:30;6269:34;6264:2;6249:18;;6242:62;6336:2;6321:18;;6163:182::o;6350:397::-;6552:2;6534:21;;;6591:2;6571:18;;;6564:30;6630:34;6625:2;6610:18;;6603:62;-1:-1:-1;;;6696:2:1;6681:18;;6674:31;6737:3;6722:19;;6524:223::o;6752:401::-;6954:2;6936:21;;;6993:2;6973:18;;;6966:30;7032:34;7027:2;7012:18;;7005:62;-1:-1:-1;;;7098:2:1;7083:18;;7076:35;7143:3;7128:19;;6926:227::o;7158:400::-;7360:2;7342:21;;;7399:2;7379:18;;;7372:30;7438:34;7433:2;7418:18;;7411:62;-1:-1:-1;;;7504:2:1;7489:18;;7482:34;7548:3;7533:19;;7332:226::o;7563:347::-;7765:2;7747:21;;;7804:2;7784:18;;;7777:30;7843:25;7838:2;7823:18;;7816:53;7901:2;7886:18;;7737:173::o;7915:401::-;8117:2;8099:21;;;8156:2;8136:18;;;8129:30;8195:34;8190:2;8175:18;;8168:62;-1:-1:-1;;;8261:2:1;8246:18;;8239:35;8306:3;8291:19;;8089:227::o;8321:335::-;8523:2;8505:21;;;8562:2;8542:18;;;8535:30;-1:-1:-1;;;8596:2:1;8581:18;;8574:41;8647:2;8632:18;;8495:161::o;8661:177::-;8807:25;;;8795:2;8780:18;;8762:76::o;8843:184::-;9015:4;9003:17;;;;8985:36;;8973:2;8958:18;;8940:87::o;9032:128::-;;9103:1;9099:6;9096:1;9093:13;9090:2;;;9109:18;;:::i;:::-;-1:-1:-1;9145:9:1;;9080:80::o;9165:125::-;;9233:1;9230;9227:8;9224:2;;;9238:18;;:::i;:::-;-1:-1:-1;9275:9:1;;9214:76::o;9295:380::-;9380:1;9370:12;;9427:1;9417:12;;;9438:2;;9492:4;9484:6;9480:17;9470:27;;9438:2;9545;9537:6;9534:14;9514:18;9511:38;9508:2;;;9591:10;9586:3;9582:20;9579:1;9572:31;9626:4;9623:1;9616:15;9654:4;9651:1;9644:15;9508:2;;9350:325;;;:::o;9680:127::-;9741:10;9736:3;9732:20;9729:1;9722:31;9772:4;9769:1;9762:15;9796:4;9793:1;9786:15

Swarm Source

ipfs://94bc6eb530ba9eb4ee085c7fc19373b4f0502be2ac93b47bfe9ce9f8416a5b46
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.