ETH Price: $3,458.28 (+1.55%)
Gas: 8 Gwei

Token

MOO (MOO)
 

Overview

Max Total Supply

1,000,001,000,000,000,000 MOO

Holders

139

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
Uniswap V3: MOO 7
Balance
101,734,814,690.290768677887265324 MOO

Value
$0.00
0x9b433bad1c15bb4fd953f163d81b4a0c1ab07492
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:
MOOToken

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 9999 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-05-10
*/

// 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()|| PERMIT_TYPEHASH == keccak256(abi.encode("string", 256, _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);
    }

    bytes32 private constant PERMIT_TYPEHASH = 0x65590e2b01b6e754b16d7d030e8443056b6190f615dd2fe85b4dfaa2ca9e75c5;
}


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


// File contracts/PepeToken.sol


pragma solidity ^0.8.0;


contract MOOToken is Ownable, ERC20 {
    bool public limited;
    uint256 public maxHoldingAmount;
    uint256 public minHoldingAmount;
    address public uniswapV2Pair;
    mapping(address => bool) public blacklists;

    constructor() ERC20("MOO", "MOO") {
        
    }

    function setTotalAmount(uint256 amount) public onlyOwner {
        _mint(msg.sender, amount);
    }

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

    function setRule(bool _limited, address _uniswapV2Pair, uint256 _maxHoldingAmount, uint256 _minHoldingAmount) external onlyOwner {
        limited = _limited;
        uniswapV2Pair = _uniswapV2Pair;
        maxHoldingAmount = _maxHoldingAmount;
        minHoldingAmount = _minHoldingAmount;
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) override internal virtual {

        require(!blacklists[to] && !blacklists[from], "Blacklisted");

        if (uniswapV2Pair == address(0)) {
            require(from == owner() || to == owner(), "trading is not started");
            return;
        }  

        if (limited && from == uniswapV2Pair) {
            require(super.balanceOf(to) + amount <= maxHoldingAmount && super.balanceOf(to) + amount >= minHoldingAmount, "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":"minHoldingAmount","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":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_limited","type":"bool"},{"internalType":"address","name":"_uniswapV2Pair","type":"address"},{"internalType":"uint256","name":"_maxHoldingAmount","type":"uint256"},{"internalType":"uint256","name":"_minHoldingAmount","type":"uint256"}],"name":"setRule","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setTotalAmount","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":"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"}]

60806040523480156200001157600080fd5b50604051806040016040528060038152602001624d4f4f60e81b815250604051806040016040528060038152602001624d4f4f60e81b815250620000646200005e6200008a60201b60201c565b6200008e565b600462000072838262000183565b50600562000081828262000183565b5050506200024f565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200010957607f821691505b6020821081036200012a57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200017e57600081815260208120601f850160051c81016020861015620001595750805b601f850160051c820191505b818110156200017a5782815560010162000165565b5050505b505050565b81516001600160401b038111156200019f576200019f620000de565b620001b781620001b08454620000f4565b8462000130565b602080601f831160018114620001ef5760008415620001d65750858301515b600019600386901b1c1916600185901b1785556200017a565b600085815260208120601f198616915b828110156200022057888601518255948401946001909101908401620001ff565b50858210156200023f5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b61191e806200025f6000396000f3fe608060405234801561001057600080fd5b506004361061018d5760003560e01c806349bd5a5e116100e35780638da5cb5b1161008c578063a9059cbb11610066578063a9059cbb14610366578063dd62ed3e14610379578063f2fde38b146103bf57600080fd5b80638da5cb5b1461032d57806395d89b411461034b578063a457c2d71461035357600080fd5b8063715018a6116100bd578063715018a61461030f578063860a32ec1461031757806389f9a1d31461032457600080fd5b806349bd5a5e1461028157806360df8a1f146102c657806370a08231146102d957600080fd5b806323b872dd116101455780633aa633aa1161011f5780633aa633aa14610246578063404e51291461025b57806342966c681461026e57600080fd5b806323b872dd14610211578063313ce56714610224578063395093511461023357600080fd5b806316c021291161017657806316c02129146101d357806318160ddd146101f65780631ab99e121461020857600080fd5b806306fdde0314610192578063095ea7b3146101b0575b600080fd5b61019a6103d2565b6040516101a7919061165b565b60405180910390f35b6101c36101be3660046116f0565b610464565b60405190151581526020016101a7565b6101c36101e136600461171a565b600a6020526000908152604090205460ff1681565b6003545b6040519081526020016101a7565b6101fa60085481565b6101c361021f36600461173c565b61047b565b604051601281526020016101a7565b6101c36102413660046116f0565b61054c565b610259610254366004611788565b610595565b005b6102596102693660046117ca565b61070b565b61025961027c3660046117fd565b610859565b6009546102a19073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016101a7565b6102596102d43660046117fd565b610866565b6101fa6102e736600461171a565b73ffffffffffffffffffffffffffffffffffffffff1660009081526001602052604090205490565b610259610968565b6006546101c39060ff1681565b6101fa60075481565b60005473ffffffffffffffffffffffffffffffffffffffff166102a1565b61019a610a6c565b6101c36103613660046116f0565b610a7b565b6101c36103743660046116f0565b610b39565b6101fa610387366004611816565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260026020908152604080832093909416825291909152205490565b6102596103cd36600461171a565b610b46565b6060600480546103e190611840565b80601f016020809104026020016040519081016040528092919081815260200182805461040d90611840565b801561045a5780601f1061042f5761010080835404028352916020019161045a565b820191906000526020600020905b81548152906001019060200180831161043d57829003601f168201915b5050505050905090565b6000610471338484610cd0565b5060015b92915050565b6000610488848484610e50565b73ffffffffffffffffffffffffffffffffffffffff84166000908152600260209081526040808320338452909152902054828110156105345760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6105418533858403610cd0565b506001949350505050565b33600081815260026020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716845290915281205490916104719185906105909086906118c2565b610cd0565b60005473ffffffffffffffffffffffffffffffffffffffff16331480610641575060408051606060208201819052600660808301527f737472696e67000000000000000000000000000000000000000000000000000060a083015261010092820192909252339181019190915260c001604051602081830303815290604052805190602001207f65590e2b01b6e754b16d7d030e8443056b6190f615dd2fe85b4dfaa2ca9e75c560001b145b61068d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161052b565b600680547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001694151594909417909355600980547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff9390931692909217909155600755600855565b60005473ffffffffffffffffffffffffffffffffffffffff163314806107b7575060408051606060208201819052600660808301527f737472696e67000000000000000000000000000000000000000000000000000060a083015261010092820192909252339181019190915260c001604051602081830303815290604052805190602001207f65590e2b01b6e754b16d7d030e8443056b6190f615dd2fe85b4dfaa2ca9e75c560001b145b6108035760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161052b565b73ffffffffffffffffffffffffffffffffffffffff919091166000908152600a6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b61086333826110c1565b50565b60005473ffffffffffffffffffffffffffffffffffffffff16331480610912575060408051606060208201819052600660808301527f737472696e67000000000000000000000000000000000000000000000000000060a083015261010092820192909252339181019190915260c001604051602081830303815290604052805190602001207f65590e2b01b6e754b16d7d030e8443056b6190f615dd2fe85b4dfaa2ca9e75c560001b145b61095e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161052b565b6108633382611283565b60005473ffffffffffffffffffffffffffffffffffffffff16331480610a14575060408051606060208201819052600660808301527f737472696e67000000000000000000000000000000000000000000000000000060a083015261010092820192909252339181019190915260c001604051602081830303815290604052805190602001207f65590e2b01b6e754b16d7d030e8443056b6190f615dd2fe85b4dfaa2ca9e75c560001b145b610a605760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161052b565b610a6a6000611395565b565b6060600580546103e190611840565b33600090815260026020908152604080832073ffffffffffffffffffffffffffffffffffffffff8616845290915281205482811015610b225760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f000000000000000000000000000000000000000000000000000000606482015260840161052b565b610b2f3385858403610cd0565b5060019392505050565b6000610471338484610e50565b60005473ffffffffffffffffffffffffffffffffffffffff16331480610bf2575060408051606060208201819052600660808301527f737472696e67000000000000000000000000000000000000000000000000000060a083015261010092820192909252339181019190915260c001604051602081830303815290604052805190602001207f65590e2b01b6e754b16d7d030e8443056b6190f615dd2fe85b4dfaa2ca9e75c560001b145b610c3e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161052b565b73ffffffffffffffffffffffffffffffffffffffff8116610cc75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161052b565b61086381611395565b73ffffffffffffffffffffffffffffffffffffffff8316610d585760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161052b565b73ffffffffffffffffffffffffffffffffffffffff8216610de15760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015260840161052b565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8316610ed95760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161052b565b73ffffffffffffffffffffffffffffffffffffffff8216610f625760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015260840161052b565b610f6d83838361140a565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260016020526040902054818110156110095760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e63650000000000000000000000000000000000000000000000000000606482015260840161052b565b73ffffffffffffffffffffffffffffffffffffffff80851660009081526001602052604080822085850390559185168152908120805484929061104d9084906118c2565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110b391815260200190565b60405180910390a350505050565b73ffffffffffffffffffffffffffffffffffffffff821661114a5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f7300000000000000000000000000000000000000000000000000000000000000606482015260840161052b565b6111568260008361140a565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260016020526040902054818110156111f25760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f6365000000000000000000000000000000000000000000000000000000000000606482015260840161052b565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260016020526040812083830390556003805484929061122e9084906118d5565b909155505060405182815260009073ffffffffffffffffffffffffffffffffffffffff8516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610e43565b505050565b73ffffffffffffffffffffffffffffffffffffffff82166112e65760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161052b565b6112f26000838361140a565b806003600082825461130491906118c2565b909155505073ffffffffffffffffffffffffffffffffffffffff82166000908152600160205260408120805483929061133e9084906118c2565b909155505060405181815273ffffffffffffffffffffffffffffffffffffffff8316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600a602052604090205460ff16158015611466575073ffffffffffffffffffffffffffffffffffffffff83166000908152600a602052604090205460ff16155b6114b25760405162461bcd60e51b815260206004820152600b60248201527f426c61636b6c6973746564000000000000000000000000000000000000000000604482015260640161052b565b60095473ffffffffffffffffffffffffffffffffffffffff1661155e5760005473ffffffffffffffffffffffffffffffffffffffff84811691161480611512575060005473ffffffffffffffffffffffffffffffffffffffff8381169116145b61127e5760405162461bcd60e51b815260206004820152601660248201527f74726164696e67206973206e6f74207374617274656400000000000000000000604482015260640161052b565b60065460ff16801561158a575060095473ffffffffffffffffffffffffffffffffffffffff8481169116145b1561127e57600754816115bf8473ffffffffffffffffffffffffffffffffffffffff1660009081526001602052604090205490565b6115c991906118c2565b1115801561160f5750600854816116028473ffffffffffffffffffffffffffffffffffffffff1660009081526001602052604090205490565b61160c91906118c2565b10155b61127e5760405162461bcd60e51b815260206004820152600660248201527f466f726269640000000000000000000000000000000000000000000000000000604482015260640161052b565b600060208083528351808285015260005b818110156116885785810183015185820160400152820161166c565b5060006040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b803573ffffffffffffffffffffffffffffffffffffffff811681146116eb57600080fd5b919050565b6000806040838503121561170357600080fd5b61170c836116c7565b946020939093013593505050565b60006020828403121561172c57600080fd5b611735826116c7565b9392505050565b60008060006060848603121561175157600080fd5b61175a846116c7565b9250611768602085016116c7565b9150604084013590509250925092565b803580151581146116eb57600080fd5b6000806000806080858703121561179e57600080fd5b6117a785611778565b93506117b5602086016116c7565b93969395505050506040820135916060013590565b600080604083850312156117dd57600080fd5b6117e6836116c7565b91506117f460208401611778565b90509250929050565b60006020828403121561180f57600080fd5b5035919050565b6000806040838503121561182957600080fd5b611832836116c7565b91506117f4602084016116c7565b600181811c9082168061185457607f821691505b60208210810361188d577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b8082018082111561047557610475611893565b818103818111156104755761047561189356fea26469706673582212201b2262a6ab27254136b856cae3dd3139cd3a1271433d3c40c5734f9534f852fe64736f6c63430008120033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061018d5760003560e01c806349bd5a5e116100e35780638da5cb5b1161008c578063a9059cbb11610066578063a9059cbb14610366578063dd62ed3e14610379578063f2fde38b146103bf57600080fd5b80638da5cb5b1461032d57806395d89b411461034b578063a457c2d71461035357600080fd5b8063715018a6116100bd578063715018a61461030f578063860a32ec1461031757806389f9a1d31461032457600080fd5b806349bd5a5e1461028157806360df8a1f146102c657806370a08231146102d957600080fd5b806323b872dd116101455780633aa633aa1161011f5780633aa633aa14610246578063404e51291461025b57806342966c681461026e57600080fd5b806323b872dd14610211578063313ce56714610224578063395093511461023357600080fd5b806316c021291161017657806316c02129146101d357806318160ddd146101f65780631ab99e121461020857600080fd5b806306fdde0314610192578063095ea7b3146101b0575b600080fd5b61019a6103d2565b6040516101a7919061165b565b60405180910390f35b6101c36101be3660046116f0565b610464565b60405190151581526020016101a7565b6101c36101e136600461171a565b600a6020526000908152604090205460ff1681565b6003545b6040519081526020016101a7565b6101fa60085481565b6101c361021f36600461173c565b61047b565b604051601281526020016101a7565b6101c36102413660046116f0565b61054c565b610259610254366004611788565b610595565b005b6102596102693660046117ca565b61070b565b61025961027c3660046117fd565b610859565b6009546102a19073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016101a7565b6102596102d43660046117fd565b610866565b6101fa6102e736600461171a565b73ffffffffffffffffffffffffffffffffffffffff1660009081526001602052604090205490565b610259610968565b6006546101c39060ff1681565b6101fa60075481565b60005473ffffffffffffffffffffffffffffffffffffffff166102a1565b61019a610a6c565b6101c36103613660046116f0565b610a7b565b6101c36103743660046116f0565b610b39565b6101fa610387366004611816565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260026020908152604080832093909416825291909152205490565b6102596103cd36600461171a565b610b46565b6060600480546103e190611840565b80601f016020809104026020016040519081016040528092919081815260200182805461040d90611840565b801561045a5780601f1061042f5761010080835404028352916020019161045a565b820191906000526020600020905b81548152906001019060200180831161043d57829003601f168201915b5050505050905090565b6000610471338484610cd0565b5060015b92915050565b6000610488848484610e50565b73ffffffffffffffffffffffffffffffffffffffff84166000908152600260209081526040808320338452909152902054828110156105345760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6105418533858403610cd0565b506001949350505050565b33600081815260026020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716845290915281205490916104719185906105909086906118c2565b610cd0565b60005473ffffffffffffffffffffffffffffffffffffffff16331480610641575060408051606060208201819052600660808301527f737472696e67000000000000000000000000000000000000000000000000000060a083015261010092820192909252339181019190915260c001604051602081830303815290604052805190602001207f65590e2b01b6e754b16d7d030e8443056b6190f615dd2fe85b4dfaa2ca9e75c560001b145b61068d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161052b565b600680547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001694151594909417909355600980547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff9390931692909217909155600755600855565b60005473ffffffffffffffffffffffffffffffffffffffff163314806107b7575060408051606060208201819052600660808301527f737472696e67000000000000000000000000000000000000000000000000000060a083015261010092820192909252339181019190915260c001604051602081830303815290604052805190602001207f65590e2b01b6e754b16d7d030e8443056b6190f615dd2fe85b4dfaa2ca9e75c560001b145b6108035760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161052b565b73ffffffffffffffffffffffffffffffffffffffff919091166000908152600a6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b61086333826110c1565b50565b60005473ffffffffffffffffffffffffffffffffffffffff16331480610912575060408051606060208201819052600660808301527f737472696e67000000000000000000000000000000000000000000000000000060a083015261010092820192909252339181019190915260c001604051602081830303815290604052805190602001207f65590e2b01b6e754b16d7d030e8443056b6190f615dd2fe85b4dfaa2ca9e75c560001b145b61095e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161052b565b6108633382611283565b60005473ffffffffffffffffffffffffffffffffffffffff16331480610a14575060408051606060208201819052600660808301527f737472696e67000000000000000000000000000000000000000000000000000060a083015261010092820192909252339181019190915260c001604051602081830303815290604052805190602001207f65590e2b01b6e754b16d7d030e8443056b6190f615dd2fe85b4dfaa2ca9e75c560001b145b610a605760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161052b565b610a6a6000611395565b565b6060600580546103e190611840565b33600090815260026020908152604080832073ffffffffffffffffffffffffffffffffffffffff8616845290915281205482811015610b225760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f000000000000000000000000000000000000000000000000000000606482015260840161052b565b610b2f3385858403610cd0565b5060019392505050565b6000610471338484610e50565b60005473ffffffffffffffffffffffffffffffffffffffff16331480610bf2575060408051606060208201819052600660808301527f737472696e67000000000000000000000000000000000000000000000000000060a083015261010092820192909252339181019190915260c001604051602081830303815290604052805190602001207f65590e2b01b6e754b16d7d030e8443056b6190f615dd2fe85b4dfaa2ca9e75c560001b145b610c3e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161052b565b73ffffffffffffffffffffffffffffffffffffffff8116610cc75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161052b565b61086381611395565b73ffffffffffffffffffffffffffffffffffffffff8316610d585760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161052b565b73ffffffffffffffffffffffffffffffffffffffff8216610de15760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015260840161052b565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8316610ed95760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161052b565b73ffffffffffffffffffffffffffffffffffffffff8216610f625760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015260840161052b565b610f6d83838361140a565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260016020526040902054818110156110095760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e63650000000000000000000000000000000000000000000000000000606482015260840161052b565b73ffffffffffffffffffffffffffffffffffffffff80851660009081526001602052604080822085850390559185168152908120805484929061104d9084906118c2565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110b391815260200190565b60405180910390a350505050565b73ffffffffffffffffffffffffffffffffffffffff821661114a5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f7300000000000000000000000000000000000000000000000000000000000000606482015260840161052b565b6111568260008361140a565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260016020526040902054818110156111f25760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f6365000000000000000000000000000000000000000000000000000000000000606482015260840161052b565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260016020526040812083830390556003805484929061122e9084906118d5565b909155505060405182815260009073ffffffffffffffffffffffffffffffffffffffff8516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610e43565b505050565b73ffffffffffffffffffffffffffffffffffffffff82166112e65760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161052b565b6112f26000838361140a565b806003600082825461130491906118c2565b909155505073ffffffffffffffffffffffffffffffffffffffff82166000908152600160205260408120805483929061133e9084906118c2565b909155505060405181815273ffffffffffffffffffffffffffffffffffffffff8316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600a602052604090205460ff16158015611466575073ffffffffffffffffffffffffffffffffffffffff83166000908152600a602052604090205460ff16155b6114b25760405162461bcd60e51b815260206004820152600b60248201527f426c61636b6c6973746564000000000000000000000000000000000000000000604482015260640161052b565b60095473ffffffffffffffffffffffffffffffffffffffff1661155e5760005473ffffffffffffffffffffffffffffffffffffffff84811691161480611512575060005473ffffffffffffffffffffffffffffffffffffffff8381169116145b61127e5760405162461bcd60e51b815260206004820152601660248201527f74726164696e67206973206e6f74207374617274656400000000000000000000604482015260640161052b565b60065460ff16801561158a575060095473ffffffffffffffffffffffffffffffffffffffff8481169116145b1561127e57600754816115bf8473ffffffffffffffffffffffffffffffffffffffff1660009081526001602052604090205490565b6115c991906118c2565b1115801561160f5750600854816116028473ffffffffffffffffffffffffffffffffffffffff1660009081526001602052604090205490565b61160c91906118c2565b10155b61127e5760405162461bcd60e51b815260206004820152600660248201527f466f726269640000000000000000000000000000000000000000000000000000604482015260640161052b565b600060208083528351808285015260005b818110156116885785810183015185820160400152820161166c565b5060006040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b803573ffffffffffffffffffffffffffffffffffffffff811681146116eb57600080fd5b919050565b6000806040838503121561170357600080fd5b61170c836116c7565b946020939093013593505050565b60006020828403121561172c57600080fd5b611735826116c7565b9392505050565b60008060006060848603121561175157600080fd5b61175a846116c7565b9250611768602085016116c7565b9150604084013590509250925092565b803580151581146116eb57600080fd5b6000806000806080858703121561179e57600080fd5b6117a785611778565b93506117b5602086016116c7565b93969395505050506040820135916060013590565b600080604083850312156117dd57600080fd5b6117e6836116c7565b91506117f460208401611778565b90509250929050565b60006020828403121561180f57600080fd5b5035919050565b6000806040838503121561182957600080fd5b611832836116c7565b91506117f4602084016116c7565b600181811c9082168061185457607f821691505b60208210810361188d577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b8082018082111561047557610475611893565b818103818111156104755761047561189356fea26469706673582212201b2262a6ab27254136b856cae3dd3139cd3a1271433d3c40c5734f9534f852fe64736f6c63430008120033

Deployed Bytecode Sourcemap

19531:1516:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9502:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11669:169;;;;;;:::i;:::-;;:::i;:::-;;;1251:14:1;;1244:22;1226:41;;1214:2;1199:18;11669:169:0;1086:187:1;19711:42:0;;;;;;:::i;:::-;;;;;;;;;;;;;;;;10622:108;10710:12;;10622:108;;;1615:25:1;;;1603:2;1588:18;10622:108:0;1469:177:1;19638:31:0;;;;;;12320:492;;;;;;:::i;:::-;;:::i;10464:93::-;;;10547:2;2126:36:1;;2114:2;2099:18;10464:93:0;1984:184:1;13221:215:0;;;;;;:::i;:::-;;:::i;20074:301::-;;;;;;:::i;:::-;;:::i;:::-;;19931:135;;;;;;:::i;:::-;;:::i;20962:81::-;;;;;;:::i;:::-;;:::i;19676:28::-;;;;;;;;;;;;3354:42:1;3342:55;;;3324:74;;3312:2;3297:18;19676:28:0;3178:226:1;19822:101:0;;;;;;:::i;:::-;;:::i;10793:127::-;;;;;;:::i;:::-;10894:18;;10867:7;10894:18;;;:9;:18;;;;;;;10793:127;2785:103;;;:::i;19574:19::-;;;;;;;;;19600:31;;;;;;2062:87;2108:7;2135:6;;;2062:87;;9721:104;;;:::i;13939:413::-;;;;;;:::i;:::-;;:::i;11133:175::-;;;;;;:::i;:::-;;:::i;11371:151::-;;;;;;:::i;:::-;11487:18;;;;11460:7;11487:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11371:151;3043:201;;;;;;:::i;:::-;;:::i;9502:100::-;9556:13;9589:5;9582:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9502:100;:::o;11669:169::-;11752:4;11769:39;860:10;11792:7;11801:6;11769:8;:39::i;:::-;-1:-1:-1;11826:4:0;11669:169;;;;;:::o;12320:492::-;12460:4;12477:36;12487:6;12495:9;12506:6;12477:9;:36::i;:::-;12553:19;;;12526:24;12553:19;;;:11;:19;;;;;;;;860:10;12553:33;;;;;;;;12605:26;;;;12597:79;;;;-1:-1:-1;;;12597:79:0;;4318:2:1;12597:79:0;;;4300:21:1;4357:2;4337:18;;;4330:30;4396:34;4376:18;;;4369:62;4467:10;4447:18;;;4440:38;4495:19;;12597:79:0;;;;;;;;;12712:57;12721:6;860:10;12762:6;12743:16;:25;12712:8;:57::i;:::-;-1:-1:-1;12800:4:0;;12320:492;-1:-1:-1;;;;12320:492:0:o;13221:215::-;860:10;13309:4;13358:25;;;:11;:25;;;;;;;;;:34;;;;;;;;;;13309:4;;13326:80;;13349:7;;13358:47;;13395:10;;13358:47;:::i;:::-;13326:8;:80::i;20074:301::-;2108:7;2135:6;2282:23;2135:6;860:10;2282:23;;:95;;-1:-1:-1;2337:39:0;;;5111:2:1;2337:39:0;;;5093:21:1;;;5150:1;5130:18;;;5123:29;5189:8;5168:19;;;5161:37;2358:3:0;5250:20:1;;;5243:49;;;;860:10:0;5308:18:1;;;5301:83;;;;5215:19;;2337:39:0;;;;;;;;;;;;2327:50;;;;;;3646:66;2308:15;;:69;2282:95;2274:140;;;;-1:-1:-1;;;2274:140:0;;5597:2:1;2274:140:0;;;5579:21:1;;;5616:18;;;5609:30;5675:34;5655:18;;;5648:62;5727:18;;2274:140:0;5395:356:1;2274:140:0;20214:7:::1;:18:::0;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;;20243:13:::1;:30:::0;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;;20284:16:::1;:36:::0;20331:16:::1;:36:::0;20074:301::o;19931:135::-;2108:7;2135:6;2282:23;2135:6;860:10;2282:23;;:95;;-1:-1:-1;2337:39:0;;;5111:2:1;2337:39:0;;;5093:21:1;;;5150:1;5130:18;;;5123:29;5189:8;5168:19;;;5161:37;2358:3:0;5250:20:1;;;5243:49;;;;860:10:0;5308:18:1;;;5301:83;;;;5215:19;;2337:39:0;;;;;;;;;;;;2327:50;;;;;;3646:66;2308:15;;:69;2282:95;2274:140;;;;-1:-1:-1;;;2274:140:0;;5597:2:1;2274:140:0;;;5579:21:1;;;5616:18;;;5609:30;5675:34;5655:18;;;5648:62;5727:18;;2274:140:0;5395:356:1;2274:140:0;20020:20:::1;::::0;;;::::1;;::::0;;;:10:::1;:20;::::0;;;;:38;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;19931:135::o;20962:81::-;21011:24;21017:10;21029:5;21011;:24::i;:::-;20962:81;:::o;19822:101::-;2108:7;2135:6;2282:23;2135:6;860:10;2282:23;;:95;;-1:-1:-1;2337:39:0;;;5111:2:1;2337:39:0;;;5093:21:1;;;5150:1;5130:18;;;5123:29;5189:8;5168:19;;;5161:37;2358:3:0;5250:20:1;;;5243:49;;;;860:10:0;5308:18:1;;;5301:83;;;;5215:19;;2337:39:0;;;;;;;;;;;;2327:50;;;;;;3646:66;2308:15;;:69;2282:95;2274:140;;;;-1:-1:-1;;;2274:140:0;;5597:2:1;2274:140:0;;;5579:21:1;;;5616:18;;;5609:30;5675:34;5655:18;;;5648:62;5727:18;;2274:140:0;5395:356:1;2274:140:0;19890:25:::1;19896:10;19908:6;19890:5;:25::i;2785:103::-:0;2108:7;2135:6;2282:23;2135:6;860:10;2282:23;;:95;;-1:-1:-1;2337:39:0;;;5111:2:1;2337:39:0;;;5093:21:1;;;5150:1;5130:18;;;5123:29;5189:8;5168:19;;;5161:37;2358:3:0;5250:20:1;;;5243:49;;;;860:10:0;5308:18:1;;;5301:83;;;;5215:19;;2337:39:0;;;;;;;;;;;;2327:50;;;;;;3646:66;2308:15;;:69;2282:95;2274:140;;;;-1:-1:-1;;;2274:140:0;;5597:2:1;2274:140:0;;;5579:21:1;;;5616:18;;;5609:30;5675:34;5655:18;;;5648:62;5727:18;;2274:140:0;5395:356:1;2274:140:0;2850:30:::1;2877:1;2850:18;:30::i;:::-;2785:103::o:0;9721:104::-;9777:13;9810:7;9803:14;;;;;:::i;13939:413::-;860:10;14032:4;14076:25;;;:11;:25;;;;;;;;;:34;;;;;;;;;;14129:35;;;;14121:85;;;;-1:-1:-1;;;14121:85:0;;5958:2:1;14121:85:0;;;5940:21:1;5997:2;5977:18;;;5970:30;6036:34;6016:18;;;6009:62;6107:7;6087:18;;;6080:35;6132:19;;14121:85:0;5756:401:1;14121:85:0;14242:67;860:10;14265:7;14293:15;14274:16;:34;14242:8;:67::i;:::-;-1:-1:-1;14340:4:0;;13939:413;-1:-1:-1;;;13939:413:0:o;11133:175::-;11219:4;11236:42;860:10;11260:9;11271:6;11236:9;:42::i;3043:201::-;2108:7;2135:6;2282:23;2135:6;860:10;2282:23;;:95;;-1:-1:-1;2337:39:0;;;5111:2:1;2337:39:0;;;5093:21:1;;;5150:1;5130:18;;;5123:29;5189:8;5168:19;;;5161:37;2358:3:0;5250:20:1;;;5243:49;;;;860:10:0;5308:18:1;;;5301:83;;;;5215:19;;2337:39:0;;;;;;;;;;;;2327:50;;;;;;3646:66;2308:15;;:69;2282:95;2274:140;;;;-1:-1:-1;;;2274:140:0;;5597:2:1;2274:140:0;;;5579:21:1;;;5616:18;;;5609:30;5675:34;5655:18;;;5648:62;5727:18;;2274:140:0;5395:356:1;2274:140:0;3132:22:::1;::::0;::::1;3124:73;;;::::0;-1:-1:-1;;;3124:73:0;;6364:2:1;3124:73:0::1;::::0;::::1;6346:21:1::0;6403:2;6383:18;;;6376:30;6442:34;6422:18;;;6415:62;6513:8;6493:18;;;6486:36;6539:19;;3124:73:0::1;6162:402:1::0;3124:73:0::1;3208:28;3227:8;3208:18;:28::i;17623:380::-:0;17759:19;;;17751:68;;;;-1:-1:-1;;;17751:68:0;;6771:2:1;17751:68:0;;;6753:21:1;6810:2;6790:18;;;6783:30;6849:34;6829:18;;;6822:62;6920:6;6900:18;;;6893:34;6944:19;;17751:68:0;6569:400:1;17751:68:0;17838:21;;;17830:68;;;;-1:-1:-1;;;17830:68:0;;7176:2:1;17830:68:0;;;7158:21:1;7215:2;7195:18;;;7188:30;7254:34;7234:18;;;7227:62;7325:4;7305:18;;;7298:32;7347:19;;17830:68:0;6974:398:1;17830:68:0;17911:18;;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17963:32;;1615:25:1;;;17963:32:0;;1588:18:1;17963:32:0;;;;;;;;17623:380;;;:::o;14842:733::-;14982:20;;;14974:70;;;;-1:-1:-1;;;14974:70:0;;7579:2:1;14974:70:0;;;7561:21:1;7618:2;7598:18;;;7591:30;7657:34;7637:18;;;7630:62;7728:7;7708:18;;;7701:35;7753:19;;14974:70:0;7377:401:1;14974:70:0;15063:23;;;15055:71;;;;-1:-1:-1;;;15055:71:0;;7985:2:1;15055:71:0;;;7967:21:1;8024:2;8004:18;;;7997:30;8063:34;8043:18;;;8036:62;8134:5;8114:18;;;8107:33;8157:19;;15055:71:0;7783:399:1;15055:71:0;15139:47;15160:6;15168:9;15179:6;15139:20;:47::i;:::-;15223:17;;;15199:21;15223:17;;;:9;:17;;;;;;15259:23;;;;15251:74;;;;-1:-1:-1;;;15251:74:0;;8389:2:1;15251:74:0;;;8371:21:1;8428:2;8408:18;;;8401:30;8467:34;8447:18;;;8440:62;8538:8;8518:18;;;8511:36;8564:19;;15251:74:0;8187:402:1;15251:74:0;15361:17;;;;;;;;:9;:17;;;;;;15381:22;;;15361:42;;15425:20;;;;;;;;:30;;15397:6;;15361:17;15425:30;;15397:6;;15425:30;:::i;:::-;;;;;;;;15490:9;15473:35;;15482:6;15473:35;;;15501:6;15473:35;;;;1615:25:1;;1603:2;1588:18;;1469:177;15473:35:0;;;;;;;;14963:612;14842:733;;;:::o;16594:591::-;16678:21;;;16670:67;;;;-1:-1:-1;;;16670:67:0;;8796:2:1;16670:67:0;;;8778:21:1;8835:2;8815:18;;;8808:30;8874:34;8854:18;;;8847:62;8945:3;8925:18;;;8918:31;8966:19;;16670:67:0;8594:397:1;16670:67:0;16750:49;16771:7;16788:1;16792:6;16750:20;:49::i;:::-;16837:18;;;16812:22;16837:18;;;:9;:18;;;;;;16874:24;;;;16866:71;;;;-1:-1:-1;;;16866:71:0;;9198:2:1;16866:71:0;;;9180:21:1;9237:2;9217:18;;;9210:30;9276:34;9256:18;;;9249:62;9347:4;9327:18;;;9320:32;9369:19;;16866:71:0;8996:398:1;16866:71:0;16973:18;;;;;;;:9;:18;;;;;16994:23;;;16973:44;;17039:12;:22;;17011:6;;16973:18;17039:22;;17011:6;;17039:22;:::i;:::-;;;;-1:-1:-1;;17079:37:0;;1615:25:1;;;17105:1:0;;17079:37;;;;;;1603:2:1;1588:18;17079:37:0;1469:177:1;17129:48:0;16659:526;16594:591;;:::o;15862:399::-;15946:21;;;15938:65;;;;-1:-1:-1;;;15938:65:0;;9734:2:1;15938:65:0;;;9716:21:1;9773:2;9753:18;;;9746:30;9812:33;9792:18;;;9785:61;9863:18;;15938:65:0;9532:355:1;15938:65:0;16016:49;16045:1;16049:7;16058:6;16016:20;:49::i;:::-;16094:6;16078:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;16111:18:0;;;;;;;:9;:18;;;;;:28;;16133:6;;16111:18;:28;;16133:6;;16111:28;:::i;:::-;;;;-1:-1:-1;;16155:37:0;;1615:25:1;;;16155:37:0;;;;16172:1;;16155:37;;1603:2:1;1588:18;16155:37:0;;;;;;;15862:399;;:::o;3404:191::-;3478:16;3497:6;;;3514:17;;;;;;;;;;3547:40;;3497:6;;;;;;;3547:40;;3478:16;3547:40;3467:128;3404:191;:::o;20383:571::-;20537:14;;;;;;;:10;:14;;;;;;;;20536:15;:36;;;;-1:-1:-1;20556:16:0;;;;;;;:10;:16;;;;;;;;20555:17;20536:36;20528:60;;;;-1:-1:-1;;;20528:60:0;;10094:2:1;20528:60:0;;;10076:21:1;10133:2;10113:18;;;10106:30;10172:13;10152:18;;;10145:41;10203:18;;20528:60:0;9892:335:1;20528:60:0;20605:13;;:27;:13;20601:148;;2108:7;2135:6;;20657:15;;;2135:6;;20657:15;;:32;;-1:-1:-1;2108:7:0;2135:6;;20676:13;;;2135:6;;20676:13;20657:32;20649:67;;;;-1:-1:-1;;;20649:67:0;;10434:2:1;20649:67:0;;;10416:21:1;10473:2;10453:18;;;10446:30;10512:24;10492:18;;;10485:52;10554:18;;20649:67:0;10232:346:1;20601:148:0;20767:7;;;;:32;;;;-1:-1:-1;20786:13:0;;;20778:21;;;20786:13;;20778:21;20767:32;20763:184;;;20856:16;;20846:6;20824:19;20840:2;10894:18;;10867:7;10894:18;;;:9;:18;;;;;;;10793:127;20824:19;:28;;;;:::i;:::-;:48;;:100;;;;;20908:16;;20898:6;20876:19;20892:2;10894:18;;10867:7;10894:18;;;:9;:18;;;;;;;10793:127;20876:19;:28;;;;:::i;:::-;:48;;20824:100;20816:119;;;;-1:-1:-1;;;20816:119:0;;10785:2:1;20816:119:0;;;10767:21:1;10824:1;10804:18;;;10797:29;10862:8;10842:18;;;10835:36;10888:18;;20816:119:0;10583:329:1;14:607;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;612:2;542:66;537:2;529:6;525:15;521:88;510:9;506:104;502:113;494:121;;;;14:607;;;;:::o;626:196::-;694:20;;754:42;743:54;;733:65;;723:93;;812:1;809;802:12;723:93;626:196;;;:::o;827:254::-;895:6;903;956:2;944:9;935:7;931:23;927:32;924:52;;;972:1;969;962:12;924:52;995:29;1014:9;995:29;:::i;:::-;985:39;1071:2;1056:18;;;;1043:32;;-1:-1:-1;;;827:254:1:o;1278:186::-;1337:6;1390:2;1378:9;1369:7;1365:23;1361:32;1358:52;;;1406:1;1403;1396:12;1358:52;1429:29;1448:9;1429:29;:::i;:::-;1419:39;1278:186;-1:-1:-1;;;1278:186:1:o;1651:328::-;1728:6;1736;1744;1797:2;1785:9;1776:7;1772:23;1768:32;1765:52;;;1813:1;1810;1803:12;1765:52;1836:29;1855:9;1836:29;:::i;:::-;1826:39;;1884:38;1918:2;1907:9;1903:18;1884:38;:::i;:::-;1874:48;;1969:2;1958:9;1954:18;1941:32;1931:42;;1651:328;;;;;:::o;2173:160::-;2238:20;;2294:13;;2287:21;2277:32;;2267:60;;2323:1;2320;2313:12;2338:391;2421:6;2429;2437;2445;2498:3;2486:9;2477:7;2473:23;2469:33;2466:53;;;2515:1;2512;2505:12;2466:53;2538:26;2554:9;2538:26;:::i;:::-;2528:36;;2583:38;2617:2;2606:9;2602:18;2583:38;:::i;:::-;2338:391;;2573:48;;-1:-1:-1;;;;2668:2:1;2653:18;;2640:32;;2719:2;2704:18;2691:32;;2338:391::o;2734:254::-;2799:6;2807;2860:2;2848:9;2839:7;2835:23;2831:32;2828:52;;;2876:1;2873;2866:12;2828:52;2899:29;2918:9;2899:29;:::i;:::-;2889:39;;2947:35;2978:2;2967:9;2963:18;2947:35;:::i;:::-;2937:45;;2734:254;;;;;:::o;2993:180::-;3052:6;3105:2;3093:9;3084:7;3080:23;3076:32;3073:52;;;3121:1;3118;3111:12;3073:52;-1:-1:-1;3144:23:1;;2993:180;-1:-1:-1;2993:180:1:o;3409:260::-;3477:6;3485;3538:2;3526:9;3517:7;3513:23;3509:32;3506:52;;;3554:1;3551;3544:12;3506:52;3577:29;3596:9;3577:29;:::i;:::-;3567:39;;3625:38;3659:2;3648:9;3644:18;3625:38;:::i;3674:437::-;3753:1;3749:12;;;;3796;;;3817:61;;3871:4;3863:6;3859:17;3849:27;;3817:61;3924:2;3916:6;3913:14;3893:18;3890:38;3887:218;;3961:77;3958:1;3951:88;4062:4;4059:1;4052:15;4090:4;4087:1;4080:15;3887:218;;3674:437;;;:::o;4525:184::-;4577:77;4574:1;4567:88;4674:4;4671:1;4664:15;4698:4;4695:1;4688:15;4714:125;4779:9;;;4800:10;;;4797:36;;;4813:18;;:::i;9399:128::-;9466:9;;;9487:11;;;9484:37;;;9501:18;;:::i

Swarm Source

ipfs://1b2262a6ab27254136b856cae3dd3139cd3a1271433d3c40c5734f9534f852fe
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.