ETH Price: $3,814.95 (-2.09%)
Gas: 10 Gwei

Token

BizCoin (biz)
 

Overview

Max Total Supply

420,420,420,420 biz

Holders

389

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
153,156,522.766465846850311258 biz

Value
$0.00
0x51ae7459deb148fc0174f5cd82739112c5952de2
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:
BizToken

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

pragma solidity ^0.8.0;


// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)
/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

    /**
     * @dev Returns the 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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from,
        address to,
        uint256 amount
    ) external returns (bool);
}


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)
/**
 * @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);
}


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
/**
 * @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;
    }
}


// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)
/**
 * @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.openzeppelin.com/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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, 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}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, 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}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, 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) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, 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) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * 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:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, 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;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _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;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _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 Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - 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 {}
}


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)
/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * 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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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);
    }
}


contract BizToken is Ownable, ERC20 {
    bool public limited;
    uint256 public maxWallet;
    address public uniswapV2Pair;

    constructor(uint256 _totalSupply) ERC20("BizCoin", "biz") {
        _mint(msg.sender, _totalSupply);
    }

    function setWalletRule(bool _limited, address _uniswapV2Pair, uint256 _maxWallet) external onlyOwner {
        limited = _limited;
        uniswapV2Pair = _uniswapV2Pair;
        maxWallet = _maxWallet;
    }

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

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

        if (limited && from == uniswapV2Pair) {
            require(balanceOf(to) + amount <= maxWallet, "max wallet breached");
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_totalSupply","type":"uint256"}],"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":[],"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":"maxWallet","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":"_maxWallet","type":"uint256"}],"name":"setWalletRule","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b50604051620025e8380380620025e88339818101604052810190620000379190620005f2565b6040518060400160405280600781526020017f42697a436f696e000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f62697a0000000000000000000000000000000000000000000000000000000000815250620000c3620000b76200010260201b60201c565b6200010a60201b60201c565b8160049081620000d4919062000894565b508060059081620000e6919062000894565b505050620000fb3382620001ce60201b60201c565b5062000b7a565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000240576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200023790620009dc565b60405180910390fd5b62000254600083836200033c60201b60201c565b806003600082825462000268919062000a2d565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200031c919062000a79565b60405180910390a362000338600083836200053b60201b60201c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036200045f57620003a36200054060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480620004175750620003e86200054060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b62000459576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004509062000ae6565b60405180910390fd5b62000536565b600660009054906101000a900460ff168015620004c95750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b15620005355760075481620004e4846200056960201b60201c565b620004f0919062000a2d565b111562000534576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200052b9062000b58565b60405180910390fd5b5b5b505050565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600080fd5b6000819050919050565b620005cc81620005b7565b8114620005d857600080fd5b50565b600081519050620005ec81620005c1565b92915050565b6000602082840312156200060b576200060a620005b2565b5b60006200061b84828501620005db565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620006a657607f821691505b602082108103620006bc57620006bb6200065e565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620007267fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620006e7565b620007328683620006e7565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620007756200076f6200076984620005b7565b6200074a565b620005b7565b9050919050565b6000819050919050565b620007918362000754565b620007a9620007a0826200077c565b848454620006f4565b825550505050565b600090565b620007c0620007b1565b620007cd81848462000786565b505050565b5b81811015620007f557620007e9600082620007b6565b600181019050620007d3565b5050565b601f82111562000844576200080e81620006c2565b6200081984620006d7565b8101602085101562000829578190505b620008416200083885620006d7565b830182620007d2565b50505b505050565b600082821c905092915050565b6000620008696000198460080262000849565b1980831691505092915050565b600062000884838362000856565b9150826002028217905092915050565b6200089f8262000624565b67ffffffffffffffff811115620008bb57620008ba6200062f565b5b620008c782546200068d565b620008d4828285620007f9565b600060209050601f8311600181146200090c5760008415620008f7578287015190505b62000903858262000876565b86555062000973565b601f1984166200091c86620006c2565b60005b8281101562000946578489015182556001820191506020850194506020810190506200091f565b8683101562000966578489015162000962601f89168262000856565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620009c4601f836200097b565b9150620009d1826200098c565b602082019050919050565b60006020820190508181036000830152620009f781620009b5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000a3a82620005b7565b915062000a4783620005b7565b925082820190508082111562000a625762000a61620009fe565b5b92915050565b62000a7381620005b7565b82525050565b600060208201905062000a90600083018462000a68565b92915050565b7f74726164696e67206e6f74206f70656e20796574000000000000000000000000600082015250565b600062000ace6014836200097b565b915062000adb8262000a96565b602082019050919050565b6000602082019050818103600083015262000b018162000abf565b9050919050565b7f6d61782077616c6c657420627265616368656400000000000000000000000000600082015250565b600062000b406013836200097b565b915062000b4d8262000b08565b602082019050919050565b6000602082019050818103600083015262000b738162000b31565b9050919050565b611a5e8062000b8a6000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c8063860a32ec116100a2578063a457c2d711610071578063a457c2d7146102d3578063a9059cbb14610303578063dd62ed3e14610333578063f2fde38b14610363578063f8b45b051461037f57610116565b8063860a32ec1461025d5780638d99ff211461027b5780638da5cb5b1461029757806395d89b41146102b557610116565b8063313ce567116100e9578063313ce567146101b757806339509351146101d557806349bd5a5e1461020557806370a0823114610223578063715018a61461025357610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461016957806323b872dd14610187575b600080fd5b61012361039d565b60405161013091906110bc565b60405180910390f35b610153600480360381019061014e9190611177565b61042f565b60405161016091906111d2565b60405180910390f35b610171610452565b60405161017e91906111fc565b60405180910390f35b6101a1600480360381019061019c9190611217565b61045c565b6040516101ae91906111d2565b60405180910390f35b6101bf61048b565b6040516101cc9190611286565b60405180910390f35b6101ef60048036038101906101ea9190611177565b610494565b6040516101fc91906111d2565b60405180910390f35b61020d6104cb565b60405161021a91906112b0565b60405180910390f35b61023d600480360381019061023891906112cb565b6104f1565b60405161024a91906111fc565b60405180910390f35b61025b61053a565b005b61026561054e565b60405161027291906111d2565b60405180910390f35b61029560048036038101906102909190611324565b610561565b005b61029f6105d0565b6040516102ac91906112b0565b60405180910390f35b6102bd6105f9565b6040516102ca91906110bc565b60405180910390f35b6102ed60048036038101906102e89190611177565b61068b565b6040516102fa91906111d2565b60405180910390f35b61031d60048036038101906103189190611177565b610702565b60405161032a91906111d2565b60405180910390f35b61034d60048036038101906103489190611377565b610725565b60405161035a91906111fc565b60405180910390f35b61037d600480360381019061037891906112cb565b6107ac565b005b61038761082f565b60405161039491906111fc565b60405180910390f35b6060600480546103ac906113e6565b80601f01602080910402602001604051908101604052809291908181526020018280546103d8906113e6565b80156104255780601f106103fa57610100808354040283529160200191610425565b820191906000526020600020905b81548152906001019060200180831161040857829003601f168201915b5050505050905090565b60008061043a610835565b905061044781858561083d565b600191505092915050565b6000600354905090565b600080610467610835565b9050610474858285610a06565b61047f858585610a92565b60019150509392505050565b60006012905090565b60008061049f610835565b90506104c08185856104b18589610725565b6104bb9190611446565b61083d565b600191505092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610542610d0b565b61054c6000610d89565b565b600660009054906101000a900460ff1681565b610569610d0b565b82600660006101000a81548160ff02191690831515021790555081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600781905550505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610608906113e6565b80601f0160208091040260200160405190810160405280929190818152602001828054610634906113e6565b80156106815780601f1061065657610100808354040283529160200191610681565b820191906000526020600020905b81548152906001019060200180831161066457829003601f168201915b5050505050905090565b600080610696610835565b905060006106a48286610725565b9050838110156106e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106e0906114ec565b60405180910390fd5b6106f6828686840361083d565b60019250505092915050565b60008061070d610835565b905061071a818585610a92565b600191505092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6107b4610d0b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610823576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081a9061157e565b60405180910390fd5b61082c81610d89565b50565b60075481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a390611610565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361091b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610912906116a2565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516109f991906111fc565b60405180910390a3505050565b6000610a128484610725565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610a8c5781811015610a7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a759061170e565b60405180910390fd5b610a8b848484840361083d565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af8906117a0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6790611832565b60405180910390fd5b610b7b838383610e4d565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610c02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf9906118c4565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610cf291906111fc565b60405180910390a3610d05848484611027565b50505050565b610d13610835565b73ffffffffffffffffffffffffffffffffffffffff16610d316105d0565b73ffffffffffffffffffffffffffffffffffffffff1614610d87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7e90611930565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610f5a57610eab6105d0565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610f165750610ee76105d0565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b610f55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4c9061199c565b60405180910390fd5b611022565b600660009054906101000a900460ff168015610fc35750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b156110215760075481610fd5846104f1565b610fdf9190611446565b1115611020576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101790611a08565b60405180910390fd5b5b5b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561106657808201518184015260208101905061104b565b60008484015250505050565b6000601f19601f8301169050919050565b600061108e8261102c565b6110988185611037565b93506110a8818560208601611048565b6110b181611072565b840191505092915050565b600060208201905081810360008301526110d68184611083565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061110e826110e3565b9050919050565b61111e81611103565b811461112957600080fd5b50565b60008135905061113b81611115565b92915050565b6000819050919050565b61115481611141565b811461115f57600080fd5b50565b6000813590506111718161114b565b92915050565b6000806040838503121561118e5761118d6110de565b5b600061119c8582860161112c565b92505060206111ad85828601611162565b9150509250929050565b60008115159050919050565b6111cc816111b7565b82525050565b60006020820190506111e760008301846111c3565b92915050565b6111f681611141565b82525050565b600060208201905061121160008301846111ed565b92915050565b6000806000606084860312156112305761122f6110de565b5b600061123e8682870161112c565b935050602061124f8682870161112c565b925050604061126086828701611162565b9150509250925092565b600060ff82169050919050565b6112808161126a565b82525050565b600060208201905061129b6000830184611277565b92915050565b6112aa81611103565b82525050565b60006020820190506112c560008301846112a1565b92915050565b6000602082840312156112e1576112e06110de565b5b60006112ef8482850161112c565b91505092915050565b611301816111b7565b811461130c57600080fd5b50565b60008135905061131e816112f8565b92915050565b60008060006060848603121561133d5761133c6110de565b5b600061134b8682870161130f565b935050602061135c8682870161112c565b925050604061136d86828701611162565b9150509250925092565b6000806040838503121561138e5761138d6110de565b5b600061139c8582860161112c565b92505060206113ad8582860161112c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806113fe57607f821691505b602082108103611411576114106113b7565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061145182611141565b915061145c83611141565b925082820190508082111561147457611473611417565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006114d6602583611037565b91506114e18261147a565b604082019050919050565b60006020820190508181036000830152611505816114c9565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611568602683611037565b91506115738261150c565b604082019050919050565b600060208201905081810360008301526115978161155b565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006115fa602483611037565b91506116058261159e565b604082019050919050565b60006020820190508181036000830152611629816115ed565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061168c602283611037565b915061169782611630565b604082019050919050565b600060208201905081810360008301526116bb8161167f565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006116f8601d83611037565b9150611703826116c2565b602082019050919050565b60006020820190508181036000830152611727816116eb565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061178a602583611037565b91506117958261172e565b604082019050919050565b600060208201905081810360008301526117b98161177d565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061181c602383611037565b9150611827826117c0565b604082019050919050565b6000602082019050818103600083015261184b8161180f565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006118ae602683611037565b91506118b982611852565b604082019050919050565b600060208201905081810360008301526118dd816118a1565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061191a602083611037565b9150611925826118e4565b602082019050919050565b600060208201905081810360008301526119498161190d565b9050919050565b7f74726164696e67206e6f74206f70656e20796574000000000000000000000000600082015250565b6000611986601483611037565b915061199182611950565b602082019050919050565b600060208201905081810360008301526119b581611979565b9050919050565b7f6d61782077616c6c657420627265616368656400000000000000000000000000600082015250565b60006119f2601383611037565b91506119fd826119bc565b602082019050919050565b60006020820190508181036000830152611a21816119e5565b905091905056fea26469706673582212209eedba07a06bdba1111e8fef8fd5f9146542b73ce00d75583b47dff08c86712c64736f6c6343000813003300000000000000000000000000000000000000054e739ef2d4e77128a2900000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101165760003560e01c8063860a32ec116100a2578063a457c2d711610071578063a457c2d7146102d3578063a9059cbb14610303578063dd62ed3e14610333578063f2fde38b14610363578063f8b45b051461037f57610116565b8063860a32ec1461025d5780638d99ff211461027b5780638da5cb5b1461029757806395d89b41146102b557610116565b8063313ce567116100e9578063313ce567146101b757806339509351146101d557806349bd5a5e1461020557806370a0823114610223578063715018a61461025357610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461016957806323b872dd14610187575b600080fd5b61012361039d565b60405161013091906110bc565b60405180910390f35b610153600480360381019061014e9190611177565b61042f565b60405161016091906111d2565b60405180910390f35b610171610452565b60405161017e91906111fc565b60405180910390f35b6101a1600480360381019061019c9190611217565b61045c565b6040516101ae91906111d2565b60405180910390f35b6101bf61048b565b6040516101cc9190611286565b60405180910390f35b6101ef60048036038101906101ea9190611177565b610494565b6040516101fc91906111d2565b60405180910390f35b61020d6104cb565b60405161021a91906112b0565b60405180910390f35b61023d600480360381019061023891906112cb565b6104f1565b60405161024a91906111fc565b60405180910390f35b61025b61053a565b005b61026561054e565b60405161027291906111d2565b60405180910390f35b61029560048036038101906102909190611324565b610561565b005b61029f6105d0565b6040516102ac91906112b0565b60405180910390f35b6102bd6105f9565b6040516102ca91906110bc565b60405180910390f35b6102ed60048036038101906102e89190611177565b61068b565b6040516102fa91906111d2565b60405180910390f35b61031d60048036038101906103189190611177565b610702565b60405161032a91906111d2565b60405180910390f35b61034d60048036038101906103489190611377565b610725565b60405161035a91906111fc565b60405180910390f35b61037d600480360381019061037891906112cb565b6107ac565b005b61038761082f565b60405161039491906111fc565b60405180910390f35b6060600480546103ac906113e6565b80601f01602080910402602001604051908101604052809291908181526020018280546103d8906113e6565b80156104255780601f106103fa57610100808354040283529160200191610425565b820191906000526020600020905b81548152906001019060200180831161040857829003601f168201915b5050505050905090565b60008061043a610835565b905061044781858561083d565b600191505092915050565b6000600354905090565b600080610467610835565b9050610474858285610a06565b61047f858585610a92565b60019150509392505050565b60006012905090565b60008061049f610835565b90506104c08185856104b18589610725565b6104bb9190611446565b61083d565b600191505092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610542610d0b565b61054c6000610d89565b565b600660009054906101000a900460ff1681565b610569610d0b565b82600660006101000a81548160ff02191690831515021790555081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600781905550505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610608906113e6565b80601f0160208091040260200160405190810160405280929190818152602001828054610634906113e6565b80156106815780601f1061065657610100808354040283529160200191610681565b820191906000526020600020905b81548152906001019060200180831161066457829003601f168201915b5050505050905090565b600080610696610835565b905060006106a48286610725565b9050838110156106e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106e0906114ec565b60405180910390fd5b6106f6828686840361083d565b60019250505092915050565b60008061070d610835565b905061071a818585610a92565b600191505092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6107b4610d0b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610823576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081a9061157e565b60405180910390fd5b61082c81610d89565b50565b60075481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a390611610565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361091b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610912906116a2565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516109f991906111fc565b60405180910390a3505050565b6000610a128484610725565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610a8c5781811015610a7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a759061170e565b60405180910390fd5b610a8b848484840361083d565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af8906117a0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6790611832565b60405180910390fd5b610b7b838383610e4d565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610c02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf9906118c4565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610cf291906111fc565b60405180910390a3610d05848484611027565b50505050565b610d13610835565b73ffffffffffffffffffffffffffffffffffffffff16610d316105d0565b73ffffffffffffffffffffffffffffffffffffffff1614610d87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7e90611930565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610f5a57610eab6105d0565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610f165750610ee76105d0565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b610f55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4c9061199c565b60405180910390fd5b611022565b600660009054906101000a900460ff168015610fc35750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b156110215760075481610fd5846104f1565b610fdf9190611446565b1115611020576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101790611a08565b60405180910390fd5b5b5b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561106657808201518184015260208101905061104b565b60008484015250505050565b6000601f19601f8301169050919050565b600061108e8261102c565b6110988185611037565b93506110a8818560208601611048565b6110b181611072565b840191505092915050565b600060208201905081810360008301526110d68184611083565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061110e826110e3565b9050919050565b61111e81611103565b811461112957600080fd5b50565b60008135905061113b81611115565b92915050565b6000819050919050565b61115481611141565b811461115f57600080fd5b50565b6000813590506111718161114b565b92915050565b6000806040838503121561118e5761118d6110de565b5b600061119c8582860161112c565b92505060206111ad85828601611162565b9150509250929050565b60008115159050919050565b6111cc816111b7565b82525050565b60006020820190506111e760008301846111c3565b92915050565b6111f681611141565b82525050565b600060208201905061121160008301846111ed565b92915050565b6000806000606084860312156112305761122f6110de565b5b600061123e8682870161112c565b935050602061124f8682870161112c565b925050604061126086828701611162565b9150509250925092565b600060ff82169050919050565b6112808161126a565b82525050565b600060208201905061129b6000830184611277565b92915050565b6112aa81611103565b82525050565b60006020820190506112c560008301846112a1565b92915050565b6000602082840312156112e1576112e06110de565b5b60006112ef8482850161112c565b91505092915050565b611301816111b7565b811461130c57600080fd5b50565b60008135905061131e816112f8565b92915050565b60008060006060848603121561133d5761133c6110de565b5b600061134b8682870161130f565b935050602061135c8682870161112c565b925050604061136d86828701611162565b9150509250925092565b6000806040838503121561138e5761138d6110de565b5b600061139c8582860161112c565b92505060206113ad8582860161112c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806113fe57607f821691505b602082108103611411576114106113b7565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061145182611141565b915061145c83611141565b925082820190508082111561147457611473611417565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006114d6602583611037565b91506114e18261147a565b604082019050919050565b60006020820190508181036000830152611505816114c9565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611568602683611037565b91506115738261150c565b604082019050919050565b600060208201905081810360008301526115978161155b565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006115fa602483611037565b91506116058261159e565b604082019050919050565b60006020820190508181036000830152611629816115ed565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061168c602283611037565b915061169782611630565b604082019050919050565b600060208201905081810360008301526116bb8161167f565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006116f8601d83611037565b9150611703826116c2565b602082019050919050565b60006020820190508181036000830152611727816116eb565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061178a602583611037565b91506117958261172e565b604082019050919050565b600060208201905081810360008301526117b98161177d565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061181c602383611037565b9150611827826117c0565b604082019050919050565b6000602082019050818103600083015261184b8161180f565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006118ae602683611037565b91506118b982611852565b604082019050919050565b600060208201905081810360008301526118dd816118a1565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061191a602083611037565b9150611925826118e4565b602082019050919050565b600060208201905081810360008301526119498161190d565b9050919050565b7f74726164696e67206e6f74206f70656e20796574000000000000000000000000600082015250565b6000611986601483611037565b915061199182611950565b602082019050919050565b600060208201905081810360008301526119b581611979565b9050919050565b7f6d61782077616c6c657420627265616368656400000000000000000000000000600082015250565b60006119f2601383611037565b91506119fd826119bc565b602082019050919050565b60006020820190508181036000830152611a21816119e5565b905091905056fea26469706673582212209eedba07a06bdba1111e8fef8fd5f9146542b73ce00d75583b47dff08c86712c64736f6c63430008130033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000000000000000000054e739ef2d4e77128a2900000

-----Decoded View---------------
Arg [0] : _totalSupply (uint256): 420420420420000000000000000000

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000054e739ef2d4e77128a2900000


Deployed Bytecode Sourcemap

20142:918:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6338:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8689:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7458:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9470:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7300:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10174:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20242:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7629:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19323:103;;;:::i;:::-;;20185:19;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20395:212;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18675:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6557:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10915:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7962:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8218:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19581:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20211:24;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6338:100;6392:13;6425:5;6418:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6338:100;:::o;8689:201::-;8772:4;8789:13;8805:12;:10;:12::i;:::-;8789:28;;8828:32;8837:5;8844:7;8853:6;8828:8;:32::i;:::-;8878:4;8871:11;;;8689:201;;;;:::o;7458:108::-;7519:7;7546:12;;7539:19;;7458:108;:::o;9470:295::-;9601:4;9618:15;9636:12;:10;:12::i;:::-;9618:30;;9659:38;9675:4;9681:7;9690:6;9659:15;:38::i;:::-;9708:27;9718:4;9724:2;9728:6;9708:9;:27::i;:::-;9753:4;9746:11;;;9470:295;;;;;:::o;7300:93::-;7358:5;7383:2;7376:9;;7300:93;:::o;10174:238::-;10262:4;10279:13;10295:12;:10;:12::i;:::-;10279:28;;10318:64;10327:5;10334:7;10371:10;10343:25;10353:5;10360:7;10343:9;:25::i;:::-;:38;;;;:::i;:::-;10318:8;:64::i;:::-;10400:4;10393:11;;;10174:238;;;;:::o;20242:28::-;;;;;;;;;;;;;:::o;7629:127::-;7703:7;7730:9;:18;7740:7;7730:18;;;;;;;;;;;;;;;;7723:25;;7629:127;;;:::o;19323:103::-;18561:13;:11;:13::i;:::-;19388:30:::1;19415:1;19388:18;:30::i;:::-;19323:103::o:0;20185:19::-;;;;;;;;;;;;;:::o;20395:212::-;18561:13;:11;:13::i;:::-;20517:8:::1;20507:7;;:18;;;;;;;;;;;;;;;;;;20552:14;20536:13;;:30;;;;;;;;;;;;;;;;;;20589:10;20577:9;:22;;;;20395:212:::0;;;:::o;18675:87::-;18721:7;18748:6;;;;;;;;;;;18741:13;;18675:87;:::o;6557:104::-;6613:13;6646:7;6639:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6557:104;:::o;10915:436::-;11008:4;11025:13;11041:12;:10;:12::i;:::-;11025:28;;11064:24;11091:25;11101:5;11108:7;11091:9;:25::i;:::-;11064:52;;11155:15;11135:16;:35;;11127:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;11248:60;11257:5;11264:7;11292:15;11273:16;:34;11248:8;:60::i;:::-;11339:4;11332:11;;;;10915:436;;;;:::o;7962:193::-;8041:4;8058:13;8074:12;:10;:12::i;:::-;8058:28;;8097;8107:5;8114:2;8118:6;8097:9;:28::i;:::-;8143:4;8136:11;;;7962:193;;;;:::o;8218:151::-;8307:7;8334:11;:18;8346:5;8334:18;;;;;;;;;;;;;;;:27;8353:7;8334:27;;;;;;;;;;;;;;;;8327:34;;8218:151;;;;:::o;19581:201::-;18561:13;:11;:13::i;:::-;19690:1:::1;19670:22;;:8;:22;;::::0;19662:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;19746:28;19765:8;19746:18;:28::i;:::-;19581:201:::0;:::o;20211:24::-;;;;:::o;4073:98::-;4126:7;4153:10;4146:17;;4073:98;:::o;14942:380::-;15095:1;15078:19;;:5;:19;;;15070:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15176:1;15157:21;;:7;:21;;;15149:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15260:6;15230:11;:18;15242:5;15230:18;;;;;;;;;;;;;;;:27;15249:7;15230:27;;;;;;;;;;;;;;;:36;;;;15298:7;15282:32;;15291:5;15282:32;;;15307:6;15282:32;;;;;;:::i;:::-;;;;;;;;14942:380;;;:::o;15613:453::-;15748:24;15775:25;15785:5;15792:7;15775:9;:25::i;:::-;15748:52;;15835:17;15815:16;:37;15811:248;;15897:6;15877:16;:26;;15869:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15981:51;15990:5;15997:7;16025:6;16006:16;:25;15981:8;:51::i;:::-;15811:248;15737:329;15613:453;;;:::o;11821:840::-;11968:1;11952:18;;:4;:18;;;11944:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12045:1;12031:16;;:2;:16;;;12023:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;12100:38;12121:4;12127:2;12131:6;12100:20;:38::i;:::-;12151:19;12173:9;:15;12183:4;12173:15;;;;;;;;;;;;;;;;12151:37;;12222:6;12207:11;:21;;12199:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;12339:6;12325:11;:20;12307:9;:15;12317:4;12307:15;;;;;;;;;;;;;;;:38;;;;12542:6;12525:9;:13;12535:2;12525:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;12592:2;12577:26;;12586:4;12577:26;;;12596:6;12577:26;;;;;;:::i;:::-;;;;;;;;12616:37;12636:4;12642:2;12646:6;12616:19;:37::i;:::-;11933:728;11821:840;;;:::o;18840:132::-;18915:12;:10;:12::i;:::-;18904:23;;:7;:5;:7::i;:::-;:23;;;18896:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18840:132::o;19942:191::-;20016:16;20035:6;;;;;;;;;;;20016:25;;20061:8;20052:6;;:17;;;;;;;;;;;;;;;;;;20116:8;20085:40;;20106:8;20085:40;;;;;;;;;;;;20005:128;19942:191;:::o;20615:442::-;20789:1;20764:27;;:13;;;;;;;;;;;:27;;;20760:146;;20824:7;:5;:7::i;:::-;20816:15;;:4;:15;;;:32;;;;20841:7;:5;:7::i;:::-;20835:13;;:2;:13;;;20816:32;20808:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;20888:7;;20760:146;20922:7;;;;;;;;;;;:32;;;;;20941:13;;;;;;;;;;;20933:21;;:4;:21;;;20922:32;20918:132;;;21005:9;;20995:6;20979:13;20989:2;20979:9;:13::i;:::-;:22;;;;:::i;:::-;:35;;20971:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;20918:132;20615:442;;;;:::o;17395:124::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:118::-;4940:24;4958:5;4940:24;:::i;:::-;4935:3;4928:37;4853:118;;:::o;4977:222::-;5070:4;5108:2;5097:9;5093:18;5085:26;;5121:71;5189:1;5178:9;5174:17;5165:6;5121:71;:::i;:::-;4977:222;;;;:::o;5205:329::-;5264:6;5313:2;5301:9;5292:7;5288:23;5284:32;5281:119;;;5319:79;;:::i;:::-;5281:119;5439:1;5464:53;5509:7;5500:6;5489:9;5485:22;5464:53;:::i;:::-;5454:63;;5410:117;5205:329;;;;:::o;5540:116::-;5610:21;5625:5;5610:21;:::i;:::-;5603:5;5600:32;5590:60;;5646:1;5643;5636:12;5590:60;5540:116;:::o;5662:133::-;5705:5;5743:6;5730:20;5721:29;;5759:30;5783:5;5759:30;:::i;:::-;5662:133;;;;:::o;5801:613::-;5875:6;5883;5891;5940:2;5928:9;5919:7;5915:23;5911:32;5908:119;;;5946:79;;:::i;:::-;5908:119;6066:1;6091:50;6133:7;6124:6;6113:9;6109:22;6091:50;:::i;:::-;6081:60;;6037:114;6190:2;6216:53;6261:7;6252:6;6241:9;6237:22;6216:53;:::i;:::-;6206:63;;6161:118;6318:2;6344:53;6389:7;6380:6;6369:9;6365:22;6344:53;:::i;:::-;6334:63;;6289:118;5801:613;;;;;:::o;6420:474::-;6488:6;6496;6545:2;6533:9;6524:7;6520:23;6516:32;6513:119;;;6551:79;;:::i;:::-;6513:119;6671:1;6696:53;6741:7;6732:6;6721:9;6717:22;6696:53;:::i;:::-;6686:63;;6642:117;6798:2;6824:53;6869:7;6860:6;6849:9;6845:22;6824:53;:::i;:::-;6814:63;;6769:118;6420:474;;;;;:::o;6900:180::-;6948:77;6945:1;6938:88;7045:4;7042:1;7035:15;7069:4;7066:1;7059:15;7086:320;7130:6;7167:1;7161:4;7157:12;7147:22;;7214:1;7208:4;7204:12;7235:18;7225:81;;7291:4;7283:6;7279:17;7269:27;;7225:81;7353:2;7345:6;7342:14;7322:18;7319:38;7316:84;;7372:18;;:::i;:::-;7316:84;7137:269;7086:320;;;:::o;7412:180::-;7460:77;7457:1;7450:88;7557:4;7554:1;7547:15;7581:4;7578:1;7571:15;7598:191;7638:3;7657:20;7675:1;7657:20;:::i;:::-;7652:25;;7691:20;7709:1;7691:20;:::i;:::-;7686:25;;7734:1;7731;7727:9;7720:16;;7755:3;7752:1;7749:10;7746:36;;;7762:18;;:::i;:::-;7746:36;7598:191;;;;:::o;7795:224::-;7935:34;7931:1;7923:6;7919:14;7912:58;8004:7;7999:2;7991:6;7987:15;7980:32;7795:224;:::o;8025:366::-;8167:3;8188:67;8252:2;8247:3;8188:67;:::i;:::-;8181:74;;8264:93;8353:3;8264:93;:::i;:::-;8382:2;8377:3;8373:12;8366:19;;8025:366;;;:::o;8397:419::-;8563:4;8601:2;8590:9;8586:18;8578:26;;8650:9;8644:4;8640:20;8636:1;8625:9;8621:17;8614:47;8678:131;8804:4;8678:131;:::i;:::-;8670:139;;8397:419;;;:::o;8822:225::-;8962:34;8958:1;8950:6;8946:14;8939:58;9031:8;9026:2;9018:6;9014:15;9007:33;8822:225;:::o;9053:366::-;9195:3;9216:67;9280:2;9275:3;9216:67;:::i;:::-;9209:74;;9292:93;9381:3;9292:93;:::i;:::-;9410:2;9405:3;9401:12;9394:19;;9053:366;;;:::o;9425:419::-;9591:4;9629:2;9618:9;9614:18;9606:26;;9678:9;9672:4;9668:20;9664:1;9653:9;9649:17;9642:47;9706:131;9832:4;9706:131;:::i;:::-;9698:139;;9425:419;;;:::o;9850:223::-;9990:34;9986:1;9978:6;9974:14;9967:58;10059:6;10054:2;10046:6;10042:15;10035:31;9850:223;:::o;10079:366::-;10221:3;10242:67;10306:2;10301:3;10242:67;:::i;:::-;10235:74;;10318:93;10407:3;10318:93;:::i;:::-;10436:2;10431:3;10427:12;10420:19;;10079:366;;;:::o;10451:419::-;10617:4;10655:2;10644:9;10640:18;10632:26;;10704:9;10698:4;10694:20;10690:1;10679:9;10675:17;10668:47;10732:131;10858:4;10732:131;:::i;:::-;10724:139;;10451:419;;;:::o;10876:221::-;11016:34;11012:1;11004:6;11000:14;10993:58;11085:4;11080:2;11072:6;11068:15;11061:29;10876:221;:::o;11103:366::-;11245:3;11266:67;11330:2;11325:3;11266:67;:::i;:::-;11259:74;;11342:93;11431:3;11342:93;:::i;:::-;11460:2;11455:3;11451:12;11444:19;;11103:366;;;:::o;11475:419::-;11641:4;11679:2;11668:9;11664:18;11656:26;;11728:9;11722:4;11718:20;11714:1;11703:9;11699:17;11692:47;11756:131;11882:4;11756:131;:::i;:::-;11748:139;;11475:419;;;:::o;11900:179::-;12040:31;12036:1;12028:6;12024:14;12017:55;11900:179;:::o;12085:366::-;12227:3;12248:67;12312:2;12307:3;12248:67;:::i;:::-;12241:74;;12324:93;12413:3;12324:93;:::i;:::-;12442:2;12437:3;12433:12;12426:19;;12085:366;;;:::o;12457:419::-;12623:4;12661:2;12650:9;12646:18;12638:26;;12710:9;12704:4;12700:20;12696:1;12685:9;12681:17;12674:47;12738:131;12864:4;12738:131;:::i;:::-;12730:139;;12457:419;;;:::o;12882:224::-;13022:34;13018:1;13010:6;13006:14;12999:58;13091:7;13086:2;13078:6;13074:15;13067:32;12882:224;:::o;13112:366::-;13254:3;13275:67;13339:2;13334:3;13275:67;:::i;:::-;13268:74;;13351:93;13440:3;13351:93;:::i;:::-;13469:2;13464:3;13460:12;13453:19;;13112:366;;;:::o;13484:419::-;13650:4;13688:2;13677:9;13673:18;13665:26;;13737:9;13731:4;13727:20;13723:1;13712:9;13708:17;13701:47;13765:131;13891:4;13765:131;:::i;:::-;13757:139;;13484:419;;;:::o;13909:222::-;14049:34;14045:1;14037:6;14033:14;14026:58;14118:5;14113:2;14105:6;14101:15;14094:30;13909:222;:::o;14137:366::-;14279:3;14300:67;14364:2;14359:3;14300:67;:::i;:::-;14293:74;;14376:93;14465:3;14376:93;:::i;:::-;14494:2;14489:3;14485:12;14478:19;;14137:366;;;:::o;14509:419::-;14675:4;14713:2;14702:9;14698:18;14690:26;;14762:9;14756:4;14752:20;14748:1;14737:9;14733:17;14726:47;14790:131;14916:4;14790:131;:::i;:::-;14782:139;;14509:419;;;:::o;14934:225::-;15074:34;15070:1;15062:6;15058:14;15051:58;15143:8;15138:2;15130:6;15126:15;15119:33;14934:225;:::o;15165:366::-;15307:3;15328:67;15392:2;15387:3;15328:67;:::i;:::-;15321:74;;15404:93;15493:3;15404:93;:::i;:::-;15522:2;15517:3;15513:12;15506:19;;15165:366;;;:::o;15537:419::-;15703:4;15741:2;15730:9;15726:18;15718:26;;15790:9;15784:4;15780:20;15776:1;15765:9;15761:17;15754:47;15818:131;15944:4;15818:131;:::i;:::-;15810:139;;15537:419;;;:::o;15962:182::-;16102:34;16098:1;16090:6;16086:14;16079:58;15962:182;:::o;16150:366::-;16292:3;16313:67;16377:2;16372:3;16313:67;:::i;:::-;16306:74;;16389:93;16478:3;16389:93;:::i;:::-;16507:2;16502:3;16498:12;16491:19;;16150:366;;;:::o;16522:419::-;16688:4;16726:2;16715:9;16711:18;16703:26;;16775:9;16769:4;16765:20;16761:1;16750:9;16746:17;16739:47;16803:131;16929:4;16803:131;:::i;:::-;16795:139;;16522:419;;;:::o;16947:170::-;17087:22;17083:1;17075:6;17071:14;17064:46;16947:170;:::o;17123:366::-;17265:3;17286:67;17350:2;17345:3;17286:67;:::i;:::-;17279:74;;17362:93;17451:3;17362:93;:::i;:::-;17480:2;17475:3;17471:12;17464:19;;17123:366;;;:::o;17495:419::-;17661:4;17699:2;17688:9;17684:18;17676:26;;17748:9;17742:4;17738:20;17734:1;17723:9;17719:17;17712:47;17776:131;17902:4;17776:131;:::i;:::-;17768:139;;17495:419;;;:::o;17920:169::-;18060:21;18056:1;18048:6;18044:14;18037:45;17920:169;:::o;18095:366::-;18237:3;18258:67;18322:2;18317:3;18258:67;:::i;:::-;18251:74;;18334:93;18423:3;18334:93;:::i;:::-;18452:2;18447:3;18443:12;18436:19;;18095:366;;;:::o;18467:419::-;18633:4;18671:2;18660:9;18656:18;18648:26;;18720:9;18714:4;18710:20;18706:1;18695:9;18691:17;18684:47;18748:131;18874:4;18748:131;:::i;:::-;18740:139;;18467:419;;;:::o

Swarm Source

ipfs://9eedba07a06bdba1111e8fef8fd5f9146542b73ce00d75583b47dff08c86712c
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.