ETH Price: $3,404.13 (-0.41%)
Gas: 17 Gwei

Token

HuaHueHuaHue (HUAHUE)
 

Overview

Max Total Supply

420,690,000,000,000 HUAHUE

Holders

263

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
319,351,443,258.89843891222804476 HUAHUE

Value
$0.00
0xd7831aff6f4b5f3cd10d972ff3a2b2583aa997c3
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:
HuaHua

Compiler Version
v0.8.0+commit.c7dfd78e

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-07
*/

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

// File @openzeppelin/contracts/utils/[email protected]
// SPDX-License-Identifier: MIT

// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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


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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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


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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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


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


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

pragma solidity ^0.8.0;

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

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

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


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


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

pragma solidity ^0.8.0;



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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}


// File contracts/HuaHua.sol



pragma solidity ^0.8.0;


contract HuaHua is Ownable, ERC20 {
    bool public limited;
    uint256 public maxHoldingAmount;
    address public uniswapV2Pair;

    constructor(uint256 _totalSupply) ERC20("HuaHueHuaHue", "HUAHUE") {
        _mint(msg.sender, _totalSupply);
    }

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

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) override internal virtual {
        if (uniswapV2Pair == address(0)) {
            require(from == owner() || to == owner(), "trading is not started");
            return;
        }

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

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

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":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limited","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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"}],"name":"setRule","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"}]

60806040523480156200001157600080fd5b50604051620028e9380380620028e983398181016040528101906200003791906200069a565b6040518060400160405280600c81526020017f48756148756548756148756500000000000000000000000000000000000000008152506040518060400160405280600681526020017f4855414855450000000000000000000000000000000000000000000000000000815250620000c3620000b76200011060201b60201c565b6200011860201b60201c565b8160049080519060200190620000db929190620005d3565b508060059080519060200190620000f4929190620005d3565b505050620001093382620001dc60201b60201c565b5062000946565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200024f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200024690620007e1565b60405180910390fd5b62000263600083836200035660201b60201c565b806003600082825462000277919062000831565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620002cf919062000831565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000336919062000803565b60405180910390a362000352600083836200055c60201b60201c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156200047a57620003be6200056160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480620004325750620004036200056160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b62000474576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200046b90620007bf565b60405180910390fd5b62000557565b600660009054906101000a900460ff168015620004e55750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1562000556576007548162000505846200058a60201b6200065e1760201c565b62000511919062000831565b111562000555576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200054c906200079d565b60405180910390fd5b5b5b505050565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b828054620005e19062000898565b90600052602060002090601f01602090048101928262000605576000855562000651565b82601f106200062057805160ff191683800117855562000651565b8280016001018555821562000651579182015b828111156200065057825182559160200191906001019062000633565b5b50905062000660919062000664565b5090565b5b808211156200067f57600081600090555060010162000665565b5090565b60008151905062000694816200092c565b92915050565b600060208284031215620006ad57600080fd5b6000620006bd8482850162000683565b91505092915050565b6000620006d560068362000820565b91507f466f7262696400000000000000000000000000000000000000000000000000006000830152602082019050919050565b60006200071760168362000820565b91507f74726164696e67206973206e6f742073746172746564000000000000000000006000830152602082019050919050565b600062000759601f8362000820565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b62000797816200088e565b82525050565b60006020820190508181036000830152620007b881620006c6565b9050919050565b60006020820190508181036000830152620007da8162000708565b9050919050565b60006020820190508181036000830152620007fc816200074a565b9050919050565b60006020820190506200081a60008301846200078c565b92915050565b600082825260208201905092915050565b60006200083e826200088e565b91506200084b836200088e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620008835762000882620008ce565b5b828201905092915050565b6000819050919050565b60006002820490506001821680620008b157607f821691505b60208210811415620008c857620008c7620008fd565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b62000937816200088e565b81146200094357600080fd5b50565b611f9380620009566000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c8063715018a6116100ad57806395d89b411161007157806395d89b41146102fa578063a457c2d714610318578063a9059cbb14610348578063dd62ed3e14610378578063f2fde38b146103a857610121565b8063715018a61461027a5780637abf9d2614610284578063860a32ec146102a057806389f9a1d3146102be5780638da5cb5b146102dc57610121565b8063313ce567116100f4578063313ce567146101c257806339509351146101e057806342966c681461021057806349bd5a5e1461022c57806370a082311461024a57610121565b806306fdde0314610126578063095ea7b31461014457806318160ddd1461017457806323b872dd14610192575b600080fd5b61012e6103c4565b60405161013b9190611b51565b60405180910390f35b61015e60048036038101906101599190611536565b610456565b60405161016b9190611b36565b60405180910390f35b61017c610474565b6040516101899190611d13565b60405180910390f35b6101ac60048036038101906101a791906114e7565b61047e565b6040516101b99190611b36565b60405180910390f35b6101ca610576565b6040516101d79190611d2e565b60405180910390f35b6101fa60048036038101906101f59190611536565b61057f565b6040516102079190611b36565b60405180910390f35b61022a600480360381019061022591906115c1565b61062b565b005b610234610638565b6040516102419190611b1b565b60405180910390f35b610264600480360381019061025f9190611482565b61065e565b6040516102719190611d13565b60405180910390f35b6102826106a7565b005b61029e60048036038101906102999190611572565b61072f565b005b6102a8610812565b6040516102b59190611b36565b60405180910390f35b6102c6610825565b6040516102d39190611d13565b60405180910390f35b6102e461082b565b6040516102f19190611b1b565b60405180910390f35b610302610854565b60405161030f9190611b51565b60405180910390f35b610332600480360381019061032d9190611536565b6108e6565b60405161033f9190611b36565b60405180910390f35b610362600480360381019061035d9190611536565b6109d1565b60405161036f9190611b36565b60405180910390f35b610392600480360381019061038d91906114ab565b6109ef565b60405161039f9190611d13565b60405180910390f35b6103c260048036038101906103bd9190611482565b610a76565b005b6060600480546103d390611e77565b80601f01602080910402602001604051908101604052809291908181526020018280546103ff90611e77565b801561044c5780601f106104215761010080835404028352916020019161044c565b820191906000526020600020905b81548152906001019060200180831161042f57829003601f168201915b5050505050905090565b600061046a610463610b6e565b8484610b76565b6001905092915050565b6000600354905090565b600061048b848484610d41565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006104d6610b6e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610556576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161054d90611c33565b60405180910390fd5b61056a85610562610b6e565b858403610b76565b60019150509392505050565b60006012905090565b600061062161058c610b6e565b84846002600061059a610b6e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461061c9190611d65565b610b76565b6001905092915050565b6106353382610fc5565b50565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6106af610b6e565b73ffffffffffffffffffffffffffffffffffffffff166106cd61082b565b73ffffffffffffffffffffffffffffffffffffffff1614610723576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161071a90611c53565b60405180910390fd5b61072d600061119e565b565b610737610b6e565b73ffffffffffffffffffffffffffffffffffffffff1661075561082b565b73ffffffffffffffffffffffffffffffffffffffff16146107ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a290611c53565b60405180910390fd5b82600660006101000a81548160ff02191690831515021790555081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600781905550505050565b600660009054906101000a900460ff1681565b60075481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461086390611e77565b80601f016020809104026020016040519081016040528092919081815260200182805461088f90611e77565b80156108dc5780601f106108b1576101008083540402835291602001916108dc565b820191906000526020600020905b8154815290600101906020018083116108bf57829003601f168201915b5050505050905090565b600080600260006108f5610b6e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156109b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a990611cf3565b60405180910390fd5b6109c66109bd610b6e565b85858403610b76565b600191505092915050565b60006109e56109de610b6e565b8484610d41565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610a7e610b6e565b73ffffffffffffffffffffffffffffffffffffffff16610a9c61082b565b73ffffffffffffffffffffffffffffffffffffffff1614610af2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae990611c53565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5990611bb3565b60405180910390fd5b610b6b8161119e565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610be6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdd90611cd3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4d90611bd3565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d349190611d13565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610db1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da890611cb3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1890611b73565b60405180910390fd5b610e2c838383611262565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610eb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eaa90611bf3565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f489190611d65565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610fac9190611d13565b60405180910390a3610fbf84848461143e565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611035576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102c90611c73565b60405180910390fd5b61104182600083611262565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156110c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bf90611b93565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282546111209190611dbb565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111859190611d13565b60405180910390a36111998360008461143e565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611370576112c161082b565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061132c57506112fd61082b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b61136b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136290611c93565b60405180910390fd5b611439565b600660009054906101000a900460ff1680156113da5750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561143857600754816113ec8461065e565b6113f69190611d65565b1115611437576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142e90611c13565b60405180910390fd5b5b5b505050565b505050565b60008135905061145281611f18565b92915050565b60008135905061146781611f2f565b92915050565b60008135905061147c81611f46565b92915050565b60006020828403121561149457600080fd5b60006114a284828501611443565b91505092915050565b600080604083850312156114be57600080fd5b60006114cc85828601611443565b92505060206114dd85828601611443565b9150509250929050565b6000806000606084860312156114fc57600080fd5b600061150a86828701611443565b935050602061151b86828701611443565b925050604061152c8682870161146d565b9150509250925092565b6000806040838503121561154957600080fd5b600061155785828601611443565b92505060206115688582860161146d565b9150509250929050565b60008060006060848603121561158757600080fd5b600061159586828701611458565b93505060206115a686828701611443565b92505060406115b78682870161146d565b9150509250925092565b6000602082840312156115d357600080fd5b60006115e18482850161146d565b91505092915050565b6115f381611def565b82525050565b61160281611e01565b82525050565b600061161382611d49565b61161d8185611d54565b935061162d818560208601611e44565b61163681611f07565b840191505092915050565b600061164e602383611d54565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006116b4602283611d54565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061171a602683611d54565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611780602283611d54565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006117e6602683611d54565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061184c600683611d54565b91507f466f7262696400000000000000000000000000000000000000000000000000006000830152602082019050919050565b600061188c602883611d54565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b60006118f2602083611d54565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000611932602183611d54565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611998601683611d54565b91507f74726164696e67206973206e6f742073746172746564000000000000000000006000830152602082019050919050565b60006119d8602583611d54565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611a3e602483611d54565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611aa4602583611d54565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b611b0681611e2d565b82525050565b611b1581611e37565b82525050565b6000602082019050611b3060008301846115ea565b92915050565b6000602082019050611b4b60008301846115f9565b92915050565b60006020820190508181036000830152611b6b8184611608565b905092915050565b60006020820190508181036000830152611b8c81611641565b9050919050565b60006020820190508181036000830152611bac816116a7565b9050919050565b60006020820190508181036000830152611bcc8161170d565b9050919050565b60006020820190508181036000830152611bec81611773565b9050919050565b60006020820190508181036000830152611c0c816117d9565b9050919050565b60006020820190508181036000830152611c2c8161183f565b9050919050565b60006020820190508181036000830152611c4c8161187f565b9050919050565b60006020820190508181036000830152611c6c816118e5565b9050919050565b60006020820190508181036000830152611c8c81611925565b9050919050565b60006020820190508181036000830152611cac8161198b565b9050919050565b60006020820190508181036000830152611ccc816119cb565b9050919050565b60006020820190508181036000830152611cec81611a31565b9050919050565b60006020820190508181036000830152611d0c81611a97565b9050919050565b6000602082019050611d286000830184611afd565b92915050565b6000602082019050611d436000830184611b0c565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611d7082611e2d565b9150611d7b83611e2d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611db057611daf611ea9565b5b828201905092915050565b6000611dc682611e2d565b9150611dd183611e2d565b925082821015611de457611de3611ea9565b5b828203905092915050565b6000611dfa82611e0d565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611e62578082015181840152602081019050611e47565b83811115611e71576000848401525b50505050565b60006002820490506001821680611e8f57607f821691505b60208210811415611ea357611ea2611ed8565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b611f2181611def565b8114611f2c57600080fd5b50565b611f3881611e01565b8114611f4357600080fd5b50565b611f4f81611e2d565b8114611f5a57600080fd5b5056fea2646970667358221220ce23c25e881448e684eae05f4b8f988a79552f5c0f2e7eb52bc0a5bd625a1fc464736f6c6343000800003300000000000000000000000000000000000014bddab3e51a57cff87a50000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101215760003560e01c8063715018a6116100ad57806395d89b411161007157806395d89b41146102fa578063a457c2d714610318578063a9059cbb14610348578063dd62ed3e14610378578063f2fde38b146103a857610121565b8063715018a61461027a5780637abf9d2614610284578063860a32ec146102a057806389f9a1d3146102be5780638da5cb5b146102dc57610121565b8063313ce567116100f4578063313ce567146101c257806339509351146101e057806342966c681461021057806349bd5a5e1461022c57806370a082311461024a57610121565b806306fdde0314610126578063095ea7b31461014457806318160ddd1461017457806323b872dd14610192575b600080fd5b61012e6103c4565b60405161013b9190611b51565b60405180910390f35b61015e60048036038101906101599190611536565b610456565b60405161016b9190611b36565b60405180910390f35b61017c610474565b6040516101899190611d13565b60405180910390f35b6101ac60048036038101906101a791906114e7565b61047e565b6040516101b99190611b36565b60405180910390f35b6101ca610576565b6040516101d79190611d2e565b60405180910390f35b6101fa60048036038101906101f59190611536565b61057f565b6040516102079190611b36565b60405180910390f35b61022a600480360381019061022591906115c1565b61062b565b005b610234610638565b6040516102419190611b1b565b60405180910390f35b610264600480360381019061025f9190611482565b61065e565b6040516102719190611d13565b60405180910390f35b6102826106a7565b005b61029e60048036038101906102999190611572565b61072f565b005b6102a8610812565b6040516102b59190611b36565b60405180910390f35b6102c6610825565b6040516102d39190611d13565b60405180910390f35b6102e461082b565b6040516102f19190611b1b565b60405180910390f35b610302610854565b60405161030f9190611b51565b60405180910390f35b610332600480360381019061032d9190611536565b6108e6565b60405161033f9190611b36565b60405180910390f35b610362600480360381019061035d9190611536565b6109d1565b60405161036f9190611b36565b60405180910390f35b610392600480360381019061038d91906114ab565b6109ef565b60405161039f9190611d13565b60405180910390f35b6103c260048036038101906103bd9190611482565b610a76565b005b6060600480546103d390611e77565b80601f01602080910402602001604051908101604052809291908181526020018280546103ff90611e77565b801561044c5780601f106104215761010080835404028352916020019161044c565b820191906000526020600020905b81548152906001019060200180831161042f57829003601f168201915b5050505050905090565b600061046a610463610b6e565b8484610b76565b6001905092915050565b6000600354905090565b600061048b848484610d41565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006104d6610b6e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610556576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161054d90611c33565b60405180910390fd5b61056a85610562610b6e565b858403610b76565b60019150509392505050565b60006012905090565b600061062161058c610b6e565b84846002600061059a610b6e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461061c9190611d65565b610b76565b6001905092915050565b6106353382610fc5565b50565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6106af610b6e565b73ffffffffffffffffffffffffffffffffffffffff166106cd61082b565b73ffffffffffffffffffffffffffffffffffffffff1614610723576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161071a90611c53565b60405180910390fd5b61072d600061119e565b565b610737610b6e565b73ffffffffffffffffffffffffffffffffffffffff1661075561082b565b73ffffffffffffffffffffffffffffffffffffffff16146107ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a290611c53565b60405180910390fd5b82600660006101000a81548160ff02191690831515021790555081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600781905550505050565b600660009054906101000a900460ff1681565b60075481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461086390611e77565b80601f016020809104026020016040519081016040528092919081815260200182805461088f90611e77565b80156108dc5780601f106108b1576101008083540402835291602001916108dc565b820191906000526020600020905b8154815290600101906020018083116108bf57829003601f168201915b5050505050905090565b600080600260006108f5610b6e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156109b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a990611cf3565b60405180910390fd5b6109c66109bd610b6e565b85858403610b76565b600191505092915050565b60006109e56109de610b6e565b8484610d41565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610a7e610b6e565b73ffffffffffffffffffffffffffffffffffffffff16610a9c61082b565b73ffffffffffffffffffffffffffffffffffffffff1614610af2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae990611c53565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5990611bb3565b60405180910390fd5b610b6b8161119e565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610be6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdd90611cd3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4d90611bd3565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d349190611d13565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610db1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da890611cb3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1890611b73565b60405180910390fd5b610e2c838383611262565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610eb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eaa90611bf3565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f489190611d65565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610fac9190611d13565b60405180910390a3610fbf84848461143e565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611035576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102c90611c73565b60405180910390fd5b61104182600083611262565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156110c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bf90611b93565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282546111209190611dbb565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111859190611d13565b60405180910390a36111998360008461143e565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611370576112c161082b565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061132c57506112fd61082b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b61136b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136290611c93565b60405180910390fd5b611439565b600660009054906101000a900460ff1680156113da5750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561143857600754816113ec8461065e565b6113f69190611d65565b1115611437576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142e90611c13565b60405180910390fd5b5b5b505050565b505050565b60008135905061145281611f18565b92915050565b60008135905061146781611f2f565b92915050565b60008135905061147c81611f46565b92915050565b60006020828403121561149457600080fd5b60006114a284828501611443565b91505092915050565b600080604083850312156114be57600080fd5b60006114cc85828601611443565b92505060206114dd85828601611443565b9150509250929050565b6000806000606084860312156114fc57600080fd5b600061150a86828701611443565b935050602061151b86828701611443565b925050604061152c8682870161146d565b9150509250925092565b6000806040838503121561154957600080fd5b600061155785828601611443565b92505060206115688582860161146d565b9150509250929050565b60008060006060848603121561158757600080fd5b600061159586828701611458565b93505060206115a686828701611443565b92505060406115b78682870161146d565b9150509250925092565b6000602082840312156115d357600080fd5b60006115e18482850161146d565b91505092915050565b6115f381611def565b82525050565b61160281611e01565b82525050565b600061161382611d49565b61161d8185611d54565b935061162d818560208601611e44565b61163681611f07565b840191505092915050565b600061164e602383611d54565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006116b4602283611d54565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061171a602683611d54565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611780602283611d54565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006117e6602683611d54565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061184c600683611d54565b91507f466f7262696400000000000000000000000000000000000000000000000000006000830152602082019050919050565b600061188c602883611d54565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b60006118f2602083611d54565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000611932602183611d54565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611998601683611d54565b91507f74726164696e67206973206e6f742073746172746564000000000000000000006000830152602082019050919050565b60006119d8602583611d54565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611a3e602483611d54565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611aa4602583611d54565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b611b0681611e2d565b82525050565b611b1581611e37565b82525050565b6000602082019050611b3060008301846115ea565b92915050565b6000602082019050611b4b60008301846115f9565b92915050565b60006020820190508181036000830152611b6b8184611608565b905092915050565b60006020820190508181036000830152611b8c81611641565b9050919050565b60006020820190508181036000830152611bac816116a7565b9050919050565b60006020820190508181036000830152611bcc8161170d565b9050919050565b60006020820190508181036000830152611bec81611773565b9050919050565b60006020820190508181036000830152611c0c816117d9565b9050919050565b60006020820190508181036000830152611c2c8161183f565b9050919050565b60006020820190508181036000830152611c4c8161187f565b9050919050565b60006020820190508181036000830152611c6c816118e5565b9050919050565b60006020820190508181036000830152611c8c81611925565b9050919050565b60006020820190508181036000830152611cac8161198b565b9050919050565b60006020820190508181036000830152611ccc816119cb565b9050919050565b60006020820190508181036000830152611cec81611a31565b9050919050565b60006020820190508181036000830152611d0c81611a97565b9050919050565b6000602082019050611d286000830184611afd565b92915050565b6000602082019050611d436000830184611b0c565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611d7082611e2d565b9150611d7b83611e2d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611db057611daf611ea9565b5b828201905092915050565b6000611dc682611e2d565b9150611dd183611e2d565b925082821015611de457611de3611ea9565b5b828203905092915050565b6000611dfa82611e0d565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611e62578082015181840152602081019050611e47565b83811115611e71576000848401525b50505050565b60006002820490506001821680611e8f57607f821691505b60208210811415611ea357611ea2611ed8565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b611f2181611def565b8114611f2c57600080fd5b50565b611f3881611e01565b8114611f4357600080fd5b50565b611f4f81611e2d565b8114611f5a57600080fd5b5056fea2646970667358221220ce23c25e881448e684eae05f4b8f988a79552f5c0f2e7eb52bc0a5bd625a1fc464736f6c63430008000033

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

00000000000000000000000000000000000014bddab3e51a57cff87a50000000

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

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000014bddab3e51a57cff87a50000000


Deployed Bytecode Sourcemap

19340:1033:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9312:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11479:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10432:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12130:492;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10274:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13031:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20289:81;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19445:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10603:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2713:103;;;:::i;:::-;;19606:227;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19381:19;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19407:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2062:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9531:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13749:413;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10943:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11181:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2971:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9312:100;9366:13;9399:5;9392:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9312:100;:::o;11479:169::-;11562:4;11579:39;11588:12;:10;:12::i;:::-;11602:7;11611:6;11579:8;:39::i;:::-;11636:4;11629:11;;11479:169;;;;:::o;10432:108::-;10493:7;10520:12;;10513:19;;10432:108;:::o;12130:492::-;12270:4;12287:36;12297:6;12305:9;12316:6;12287:9;:36::i;:::-;12336:24;12363:11;:19;12375:6;12363:19;;;;;;;;;;;;;;;:33;12383:12;:10;:12::i;:::-;12363:33;;;;;;;;;;;;;;;;12336:60;;12435:6;12415:16;:26;;12407:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12522:57;12531:6;12539:12;:10;:12::i;:::-;12572:6;12553:16;:25;12522:8;:57::i;:::-;12610:4;12603:11;;;12130:492;;;;;:::o;10274:93::-;10332:5;10357:2;10350:9;;10274:93;:::o;13031:215::-;13119:4;13136:80;13145:12;:10;:12::i;:::-;13159:7;13205:10;13168:11;:25;13180:12;:10;:12::i;:::-;13168:25;;;;;;;;;;;;;;;:34;13194:7;13168:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13136:8;:80::i;:::-;13234:4;13227:11;;13031:215;;;;:::o;20289:81::-;20338:24;20344:10;20356:5;20338;:24::i;:::-;20289:81;:::o;19445:28::-;;;;;;;;;;;;;:::o;10603:127::-;10677:7;10704:9;:18;10714:7;10704:18;;;;;;;;;;;;;;;;10697:25;;10603:127;;;:::o;2713:103::-;2293:12;:10;:12::i;:::-;2282:23;;:7;:5;:7::i;:::-;:23;;;2274:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2778:30:::1;2805:1;2778:18;:30::i;:::-;2713:103::o:0;19606:227::-;2293:12;:10;:12::i;:::-;2282:23;;:7;:5;:7::i;:::-;:23;;;2274:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19729:8:::1;19719:7;;:18;;;;;;;;;;;;;;;;;;19764:14;19748:13;;:30;;;;;;;;;;;;;;;;;;19808:17;19789:16;:36;;;;19606:227:::0;;;:::o;19381:19::-;;;;;;;;;;;;;:::o;19407:31::-;;;;:::o;2062:87::-;2108:7;2135:6;;;;;;;;;;;2128:13;;2062:87;:::o;9531:104::-;9587:13;9620:7;9613:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9531:104;:::o;13749:413::-;13842:4;13859:24;13886:11;:25;13898:12;:10;:12::i;:::-;13886:25;;;;;;;;;;;;;;;:34;13912:7;13886:34;;;;;;;;;;;;;;;;13859:61;;13959:15;13939:16;:35;;13931:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14052:67;14061:12;:10;:12::i;:::-;14075:7;14103:15;14084:16;:34;14052:8;:67::i;:::-;14150:4;14143:11;;;13749:413;;;;:::o;10943:175::-;11029:4;11046:42;11056:12;:10;:12::i;:::-;11070:9;11081:6;11046:9;:42::i;:::-;11106:4;11099:11;;10943:175;;;;:::o;11181:151::-;11270:7;11297:11;:18;11309:5;11297:18;;;;;;;;;;;;;;;:27;11316:7;11297:27;;;;;;;;;;;;;;;;11290:34;;11181:151;;;;:::o;2971:201::-;2293:12;:10;:12::i;:::-;2282:23;;:7;:5;:7::i;:::-;:23;;;2274:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3080:1:::1;3060:22;;:8;:22;;;;3052:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3136:28;3155:8;3136:18;:28::i;:::-;2971:201:::0;:::o;780:98::-;833:7;860:10;853:17;;780:98;:::o;17433:380::-;17586:1;17569:19;;:5;:19;;;;17561:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17667:1;17648:21;;:7;:21;;;;17640:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17751:6;17721:11;:18;17733:5;17721:18;;;;;;;;;;;;;;;:27;17740:7;17721:27;;;;;;;;;;;;;;;:36;;;;17789:7;17773:32;;17782:5;17773:32;;;17798:6;17773:32;;;;;;:::i;:::-;;;;;;;;17433:380;;;:::o;14652:733::-;14810:1;14792:20;;:6;:20;;;;14784:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;14894:1;14873:23;;:9;:23;;;;14865:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14949:47;14970:6;14978:9;14989:6;14949:20;:47::i;:::-;15009:21;15033:9;:17;15043:6;15033:17;;;;;;;;;;;;;;;;15009:41;;15086:6;15069:13;:23;;15061:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15207:6;15191:13;:22;15171:9;:17;15181:6;15171:17;;;;;;;;;;;;;;;:42;;;;15259:6;15235:9;:20;15245:9;15235:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15300:9;15283:35;;15292:6;15283:35;;;15311:6;15283:35;;;;;;:::i;:::-;;;;;;;;15331:46;15351:6;15359:9;15370:6;15331:19;:46::i;:::-;14652:733;;;;:::o;16404:591::-;16507:1;16488:21;;:7;:21;;;;16480:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;16560:49;16581:7;16598:1;16602:6;16560:20;:49::i;:::-;16622:22;16647:9;:18;16657:7;16647:18;;;;;;;;;;;;;;;;16622:43;;16702:6;16684:14;:24;;16676:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;16821:6;16804:14;:23;16783:9;:18;16793:7;16783:18;;;;;;;;;;;;;;;:44;;;;16865:6;16849:12;;:22;;;;;;;:::i;:::-;;;;;;;;16915:1;16889:37;;16898:7;16889:37;;;16919:6;16889:37;;;;;;:::i;:::-;;;;;;;;16939:48;16959:7;16976:1;16980:6;16939:19;:48::i;:::-;16404:591;;;:::o;3332:191::-;3406:16;3425:6;;;;;;;;;;;3406:25;;3451:8;3442:6;;:17;;;;;;;;;;;;;;;;;;3506:8;3475:40;;3496:8;3475:40;;;;;;;;;;;;3332:191;;:::o;19841:440::-;20013:1;19988:27;;:13;;;;;;;;;;;:27;;;19984:148;;;20048:7;:5;:7::i;:::-;20040:15;;:4;:15;;;:32;;;;20065:7;:5;:7::i;:::-;20059:13;;:2;:13;;;20040:32;20032:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;20114:7;;19984:148;20148:7;;;;;;;;;;;:30;;;;;20165:13;;;;;;;;;;;20159:19;;:2;:19;;;;20148:30;20144:130;;;20235:16;;20225:6;20203:19;20219:2;20203:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;20195:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;20144:130;19841:440;;;;:::o;19142:124::-;;;;:::o;7:139:1:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:133::-;;233:6;220:20;211:29;;249:30;273:5;249:30;:::i;:::-;201:84;;;;:::o;291:139::-;;375:6;362:20;353:29;;391:33;418:5;391:33;:::i;:::-;343:87;;;;:::o;436:262::-;;544:2;532:9;523:7;519:23;515:32;512:2;;;560:1;557;550:12;512:2;603:1;628:53;673:7;664:6;653:9;649:22;628:53;:::i;:::-;618:63;;574:117;502:196;;;;:::o;704:407::-;;;829:2;817:9;808:7;804:23;800:32;797:2;;;845:1;842;835:12;797:2;888:1;913:53;958:7;949:6;938:9;934:22;913:53;:::i;:::-;903:63;;859:117;1015:2;1041:53;1086:7;1077:6;1066:9;1062:22;1041:53;:::i;:::-;1031:63;;986:118;787:324;;;;;:::o;1117:552::-;;;;1259:2;1247:9;1238:7;1234:23;1230:32;1227:2;;;1275:1;1272;1265:12;1227:2;1318:1;1343:53;1388:7;1379:6;1368:9;1364:22;1343:53;:::i;:::-;1333:63;;1289:117;1445:2;1471:53;1516:7;1507:6;1496:9;1492:22;1471:53;:::i;:::-;1461:63;;1416:118;1573:2;1599:53;1644:7;1635:6;1624:9;1620:22;1599:53;:::i;:::-;1589:63;;1544:118;1217:452;;;;;:::o;1675:407::-;;;1800:2;1788:9;1779:7;1775:23;1771:32;1768:2;;;1816:1;1813;1806:12;1768:2;1859:1;1884:53;1929:7;1920:6;1909:9;1905:22;1884:53;:::i;:::-;1874:63;;1830:117;1986:2;2012:53;2057:7;2048:6;2037:9;2033:22;2012:53;:::i;:::-;2002:63;;1957:118;1758:324;;;;;:::o;2088:546::-;;;;2227:2;2215:9;2206:7;2202:23;2198:32;2195:2;;;2243:1;2240;2233:12;2195:2;2286:1;2311:50;2353:7;2344:6;2333:9;2329:22;2311:50;:::i;:::-;2301:60;;2257:114;2410:2;2436:53;2481:7;2472:6;2461:9;2457:22;2436:53;:::i;:::-;2426:63;;2381:118;2538:2;2564:53;2609:7;2600:6;2589:9;2585:22;2564:53;:::i;:::-;2554:63;;2509:118;2185:449;;;;;:::o;2640:262::-;;2748:2;2736:9;2727:7;2723:23;2719:32;2716:2;;;2764:1;2761;2754:12;2716:2;2807:1;2832:53;2877:7;2868:6;2857:9;2853:22;2832:53;:::i;:::-;2822:63;;2778:117;2706:196;;;;:::o;2908:118::-;2995:24;3013:5;2995:24;:::i;:::-;2990:3;2983:37;2973:53;;:::o;3032:109::-;3113:21;3128:5;3113:21;:::i;:::-;3108:3;3101:34;3091:50;;:::o;3147:364::-;;3263:39;3296:5;3263:39;:::i;:::-;3318:71;3382:6;3377:3;3318:71;:::i;:::-;3311:78;;3398:52;3443:6;3438:3;3431:4;3424:5;3420:16;3398:52;:::i;:::-;3475:29;3497:6;3475:29;:::i;:::-;3470:3;3466:39;3459:46;;3239:272;;;;;:::o;3517:367::-;;3680:67;3744:2;3739:3;3680:67;:::i;:::-;3673:74;;3777:34;3773:1;3768:3;3764:11;3757:55;3843:5;3838:2;3833:3;3829:12;3822:27;3875:2;3870:3;3866:12;3859:19;;3663:221;;;:::o;3890:366::-;;4053:67;4117:2;4112:3;4053:67;:::i;:::-;4046:74;;4150:34;4146:1;4141:3;4137:11;4130:55;4216:4;4211:2;4206:3;4202:12;4195:26;4247:2;4242:3;4238:12;4231:19;;4036:220;;;:::o;4262:370::-;;4425:67;4489:2;4484:3;4425:67;:::i;:::-;4418:74;;4522:34;4518:1;4513:3;4509:11;4502:55;4588:8;4583:2;4578:3;4574:12;4567:30;4623:2;4618:3;4614:12;4607:19;;4408:224;;;:::o;4638:366::-;;4801:67;4865:2;4860:3;4801:67;:::i;:::-;4794:74;;4898:34;4894:1;4889:3;4885:11;4878:55;4964:4;4959:2;4954:3;4950:12;4943:26;4995:2;4990:3;4986:12;4979:19;;4784:220;;;:::o;5010:370::-;;5173:67;5237:2;5232:3;5173:67;:::i;:::-;5166:74;;5270:34;5266:1;5261:3;5257:11;5250:55;5336:8;5331:2;5326:3;5322:12;5315:30;5371:2;5366:3;5362:12;5355:19;;5156:224;;;:::o;5386:303::-;;5549:66;5613:1;5608:3;5549:66;:::i;:::-;5542:73;;5645:8;5641:1;5636:3;5632:11;5625:29;5680:2;5675:3;5671:12;5664:19;;5532:157;;;:::o;5695:372::-;;5858:67;5922:2;5917:3;5858:67;:::i;:::-;5851:74;;5955:34;5951:1;5946:3;5942:11;5935:55;6021:10;6016:2;6011:3;6007:12;6000:32;6058:2;6053:3;6049:12;6042:19;;5841:226;;;:::o;6073:330::-;;6236:67;6300:2;6295:3;6236:67;:::i;:::-;6229:74;;6333:34;6329:1;6324:3;6320:11;6313:55;6394:2;6389:3;6385:12;6378:19;;6219:184;;;:::o;6409:365::-;;6572:67;6636:2;6631:3;6572:67;:::i;:::-;6565:74;;6669:34;6665:1;6660:3;6656:11;6649:55;6735:3;6730:2;6725:3;6721:12;6714:25;6765:2;6760:3;6756:12;6749:19;;6555:219;;;:::o;6780:320::-;;6943:67;7007:2;7002:3;6943:67;:::i;:::-;6936:74;;7040:24;7036:1;7031:3;7027:11;7020:45;7091:2;7086:3;7082:12;7075:19;;6926:174;;;:::o;7106:369::-;;7269:67;7333:2;7328:3;7269:67;:::i;:::-;7262:74;;7366:34;7362:1;7357:3;7353:11;7346:55;7432:7;7427:2;7422:3;7418:12;7411:29;7466:2;7461:3;7457:12;7450:19;;7252:223;;;:::o;7481:368::-;;7644:67;7708:2;7703:3;7644:67;:::i;:::-;7637:74;;7741:34;7737:1;7732:3;7728:11;7721:55;7807:6;7802:2;7797:3;7793:12;7786:28;7840:2;7835:3;7831:12;7824:19;;7627:222;;;:::o;7855:369::-;;8018:67;8082:2;8077:3;8018:67;:::i;:::-;8011:74;;8115:34;8111:1;8106:3;8102:11;8095:55;8181:7;8176:2;8171:3;8167:12;8160:29;8215:2;8210:3;8206:12;8199:19;;8001:223;;;:::o;8230:118::-;8317:24;8335:5;8317:24;:::i;:::-;8312:3;8305:37;8295:53;;:::o;8354:112::-;8437:22;8453:5;8437:22;:::i;:::-;8432:3;8425:35;8415:51;;:::o;8472:222::-;;8603:2;8592:9;8588:18;8580:26;;8616:71;8684:1;8673:9;8669:17;8660:6;8616:71;:::i;:::-;8570:124;;;;:::o;8700:210::-;;8825:2;8814:9;8810:18;8802:26;;8838:65;8900:1;8889:9;8885:17;8876:6;8838:65;:::i;:::-;8792:118;;;;:::o;8916:313::-;;9067:2;9056:9;9052:18;9044:26;;9116:9;9110:4;9106:20;9102:1;9091:9;9087:17;9080:47;9144:78;9217:4;9208:6;9144:78;:::i;:::-;9136:86;;9034:195;;;;:::o;9235:419::-;;9439:2;9428:9;9424:18;9416:26;;9488:9;9482:4;9478:20;9474:1;9463:9;9459:17;9452:47;9516:131;9642:4;9516:131;:::i;:::-;9508:139;;9406:248;;;:::o;9660:419::-;;9864:2;9853:9;9849:18;9841:26;;9913:9;9907:4;9903:20;9899:1;9888:9;9884:17;9877:47;9941:131;10067:4;9941:131;:::i;:::-;9933:139;;9831:248;;;:::o;10085:419::-;;10289:2;10278:9;10274:18;10266:26;;10338:9;10332:4;10328:20;10324:1;10313:9;10309:17;10302:47;10366:131;10492:4;10366:131;:::i;:::-;10358:139;;10256:248;;;:::o;10510:419::-;;10714:2;10703:9;10699:18;10691:26;;10763:9;10757:4;10753:20;10749:1;10738:9;10734:17;10727:47;10791:131;10917:4;10791:131;:::i;:::-;10783:139;;10681:248;;;:::o;10935:419::-;;11139:2;11128:9;11124:18;11116:26;;11188:9;11182:4;11178:20;11174:1;11163:9;11159:17;11152:47;11216:131;11342:4;11216:131;:::i;:::-;11208:139;;11106:248;;;:::o;11360:419::-;;11564:2;11553:9;11549:18;11541:26;;11613:9;11607:4;11603:20;11599:1;11588:9;11584:17;11577:47;11641:131;11767:4;11641:131;:::i;:::-;11633:139;;11531:248;;;:::o;11785:419::-;;11989:2;11978:9;11974:18;11966:26;;12038:9;12032:4;12028:20;12024:1;12013:9;12009:17;12002:47;12066:131;12192:4;12066:131;:::i;:::-;12058:139;;11956:248;;;:::o;12210:419::-;;12414:2;12403:9;12399:18;12391:26;;12463:9;12457:4;12453:20;12449:1;12438:9;12434:17;12427:47;12491:131;12617:4;12491:131;:::i;:::-;12483:139;;12381:248;;;:::o;12635:419::-;;12839:2;12828:9;12824:18;12816:26;;12888:9;12882:4;12878:20;12874:1;12863:9;12859:17;12852:47;12916:131;13042:4;12916:131;:::i;:::-;12908:139;;12806:248;;;:::o;13060:419::-;;13264:2;13253:9;13249:18;13241:26;;13313:9;13307:4;13303:20;13299:1;13288:9;13284:17;13277:47;13341:131;13467:4;13341:131;:::i;:::-;13333:139;;13231:248;;;:::o;13485:419::-;;13689:2;13678:9;13674:18;13666:26;;13738:9;13732:4;13728:20;13724:1;13713:9;13709:17;13702:47;13766:131;13892:4;13766:131;:::i;:::-;13758:139;;13656:248;;;:::o;13910:419::-;;14114:2;14103:9;14099:18;14091:26;;14163:9;14157:4;14153:20;14149:1;14138:9;14134:17;14127:47;14191:131;14317:4;14191:131;:::i;:::-;14183:139;;14081:248;;;:::o;14335:419::-;;14539:2;14528:9;14524:18;14516:26;;14588:9;14582:4;14578:20;14574:1;14563:9;14559:17;14552:47;14616:131;14742:4;14616:131;:::i;:::-;14608:139;;14506:248;;;:::o;14760:222::-;;14891:2;14880:9;14876:18;14868:26;;14904:71;14972:1;14961:9;14957:17;14948:6;14904:71;:::i;:::-;14858:124;;;;:::o;14988:214::-;;15115:2;15104:9;15100:18;15092:26;;15128:67;15192:1;15181:9;15177:17;15168:6;15128:67;:::i;:::-;15082:120;;;;:::o;15208:99::-;;15294:5;15288:12;15278:22;;15267:40;;;:::o;15313:169::-;;15431:6;15426:3;15419:19;15471:4;15466:3;15462:14;15447:29;;15409:73;;;;:::o;15488:305::-;;15547:20;15565:1;15547:20;:::i;:::-;15542:25;;15581:20;15599:1;15581:20;:::i;:::-;15576:25;;15735:1;15667:66;15663:74;15660:1;15657:81;15654:2;;;15741:18;;:::i;:::-;15654:2;15785:1;15782;15778:9;15771:16;;15532:261;;;;:::o;15799:191::-;;15859:20;15877:1;15859:20;:::i;:::-;15854:25;;15893:20;15911:1;15893:20;:::i;:::-;15888:25;;15932:1;15929;15926:8;15923:2;;;15937:18;;:::i;:::-;15923:2;15982:1;15979;15975:9;15967:17;;15844:146;;;;:::o;15996:96::-;;16062:24;16080:5;16062:24;:::i;:::-;16051:35;;16041:51;;;:::o;16098:90::-;;16175:5;16168:13;16161:21;16150:32;;16140:48;;;:::o;16194:126::-;;16271:42;16264:5;16260:54;16249:65;;16239:81;;;:::o;16326:77::-;;16392:5;16381:16;;16371:32;;;:::o;16409:86::-;;16484:4;16477:5;16473:16;16462:27;;16452:43;;;:::o;16501:307::-;16569:1;16579:113;16593:6;16590:1;16587:13;16579:113;;;16678:1;16673:3;16669:11;16663:18;16659:1;16654:3;16650:11;16643:39;16615:2;16612:1;16608:10;16603:15;;16579:113;;;16710:6;16707:1;16704:13;16701:2;;;16790:1;16781:6;16776:3;16772:16;16765:27;16701:2;16550:258;;;;:::o;16814:320::-;;16895:1;16889:4;16885:12;16875:22;;16942:1;16936:4;16932:12;16963:18;16953:2;;17019:4;17011:6;17007:17;16997:27;;16953:2;17081;17073:6;17070:14;17050:18;17047:38;17044:2;;;17100:18;;:::i;:::-;17044:2;16865:269;;;;:::o;17140:180::-;17188:77;17185:1;17178:88;17285:4;17282:1;17275:15;17309:4;17306:1;17299:15;17326:180;17374:77;17371:1;17364:88;17471:4;17468:1;17461:15;17495:4;17492:1;17485:15;17512:102;;17604:2;17600:7;17595:2;17588:5;17584:14;17580:28;17570:38;;17560:54;;;:::o;17620:122::-;17693:24;17711:5;17693:24;:::i;:::-;17686:5;17683:35;17673:2;;17732:1;17729;17722:12;17673:2;17663:79;:::o;17748:116::-;17818:21;17833:5;17818:21;:::i;:::-;17811:5;17808:32;17798:2;;17854:1;17851;17844:12;17798:2;17788:76;:::o;17870:122::-;17943:24;17961:5;17943:24;:::i;:::-;17936:5;17933:35;17923:2;;17982:1;17979;17972:12;17923:2;17913:79;:::o

Swarm Source

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

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