ETH Price: $2,761.66 (+4.64%)

Token

PONZ (PONZ)
 

Overview

Max Total Supply

197,568,123 PONZ

Holders

83

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
koolob.eth
Balance
10,000 PONZ

Value
$0.00
0x19C43f8bFb4F13C217094aDf6Df1f9f51b677e61
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:
GameFi

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: @openzeppelin\contracts\token\ERC20\IERC20.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin\contracts\token\ERC20\extensions\IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (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\utils\Context.sol


// OpenZeppelin Contracts v4.4.1 (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\token\ERC20\ERC20.sol

// OpenZeppelin Contracts (last updated v4.8.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.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 {}
}

// File: @openzeppelin\contracts\access\IAccessControl.sol


// OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol)

pragma solidity ^0.8.0;

/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {AccessControl-_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) external view returns (bool);

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {AccessControl-_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) external view returns (bytes32);

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) external;
}

// File: @openzeppelin\contracts\utils\math\Math.sol


// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator
    ) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1);

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator,
        Rounding rounding
    ) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // 鈫?`sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // 鈫?`2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (Log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function Log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function Log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = Log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10**64) {
                value /= 10**64;
                result += 64;
            }
            if (value >= 10**32) {
                value /= 10**32;
                result += 32;
            }
            if (value >= 10**16) {
                value /= 10**16;
                result += 16;
            }
            if (value >= 10**8) {
                value /= 10**8;
                result += 8;
            }
            if (value >= 10**4) {
                value /= 10**4;
                result += 4;
            }
            if (value >= 10**2) {
                value /= 10**2;
                result += 2;
            }
            if (value >= 10**1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function Log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function Log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = Log256(value);
            return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0);
        }
    }
}

// File: @openzeppelin\contracts\utils\Strings.sol


// OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.Log256(value) + 1);
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

// File: @openzeppelin\contracts\utils\introspection\IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: @openzeppelin\contracts\utils\introspection\ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: @openzeppelin\contracts\access\AccessControl.sol


// OpenZeppelin Contracts (last updated v4.8.0) (access/AccessControl.sol)

pragma solidity ^0.8.0;




/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms. This is a lightweight version that doesn't allow enumerating role
 * members except through off-chain means by accessing the contract event logs. Some
 * applications may benefit from on-chain enumerability, for those cases see
 * {AccessControlEnumerable}.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context, IAccessControl, ERC165 {
    struct RoleData {
        mapping(address => bool) members;
        bytes32 adminRole;
    }

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Modifier that checks that an account has a specific role. Reverts
     * with a standardized message including the required role.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     *
     * _Available since v4.1._
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role);
        _;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view virtual override returns (bool) {
        return _roles[role].members[account];
    }

    /**
     * @dev Revert with a standard message if `_msgSender()` is missing `role`.
     * Overriding this function changes the behavior of the {onlyRole} modifier.
     *
     * Format of the revert message is described in {_checkRole}.
     *
     * _Available since v4.6._
     */
    function _checkRole(bytes32 role) internal view virtual {
        _checkRole(role, _msgSender());
    }

    /**
     * @dev Revert with a standard message if `account` is missing `role`.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     */
    function _checkRole(bytes32 role, address account) internal view virtual {
        if (!hasRole(role, account)) {
            revert(
                string(
                    abi.encodePacked(
                        "AccessControl: account ",
                        Strings.toHexString(account),
                        " is missing role ",
                        Strings.toHexString(uint256(role), 32)
                    )
                )
            );
        }
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     *
     * May emit a {RoleGranted} event.
     */
    function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     *
     * May emit a {RoleRevoked} event.
     */
    function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been revoked `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     *
     * May emit a {RoleRevoked} event.
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * May emit a {RoleGranted} event.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     *
     * NOTE: This function is deprecated in favor of {_grantRole}.
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        bytes32 previousAdminRole = getRoleAdmin(role);
        _roles[role].adminRole = adminRole;
        emit RoleAdminChanged(role, previousAdminRole, adminRole);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * Internal function without access restriction.
     *
     * May emit a {RoleGranted} event.
     */
    function _grantRole(bytes32 role, address account) internal virtual {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * Internal function without access restriction.
     *
     * May emit a {RoleRevoked} event.
     */
    function _revokeRole(bytes32 role, address account) internal virtual {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

// File: @openzeppelin\contracts\access\Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.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 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);
    }
}

// File: contracts\GameFi.sol


pragma solidity >=0.8.0;
// import "./GAccessControl.sol";
contract GameFi is ERC20, Ownable, AccessControl {
    string public PROVENANCE="Ethereum";
    address public MASTER;
    bytes32 public constant MASTER_ROLE = keccak256('MASTER_ROLE');
    bytes32 public constant ADMIN_ROLE = keccak256('ADMIN_ROLE');
    uint256 public constant UNIT_PRICE = 2500000000000;
    uint256 private SALE_END_TIME = 1681995600;

    constructor(string memory name_, string memory symbol_, uint256 supply_, address masterAddress, address[] memory admins)
        ERC20(name_, symbol_)
    {
        MASTER = masterAddress;
        _setupRole(MASTER_ROLE, MASTER);
        _setupRole(MASTER_ROLE, admins[0]);
        _setupRole(ADMIN_ROLE, MASTER);
        _setRoleAdmin(ADMIN_ROLE, MASTER_ROLE);
        
        for(uint i = 0; i < admins.length; i ++){
            grantRole(ADMIN_ROLE, admins[i]);
        }
        _mint(masterAddress, supply_);

    }

    function delSupply(uint val) public onlyRole(MASTER_ROLE) {
        require(val > 0, "Only Support Increase");
        _burn(MASTER, val);
    }

    function withdraw() public onlyRole(ADMIN_ROLE) {
        uint balance = address(this).balance;
        payable(MASTER).transfer(balance);
    }

    function saletime(uint256 _saleendtime) public onlyRole(MASTER_ROLE) {
        SALE_END_TIME = _saleendtime;
    }
    
    function buy(uint256 amount, uint256 totalprice, uint256 deadline, bytes memory _signature) public payable{
        require(verify(_msgSender(), amount, totalprice, deadline, _signature,MASTER), "invalid signature ");
        require(deadline >= (balanceOf(_msgSender()) / 10**18 + amount), "Upper limit");
        require(msg.value >= totalprice, "Insufficient price");
        _approve(MASTER, _msgSender(), amount * 10 ** 18);
        transferFrom(MASTER, _msgSender(), amount * 10 ** 18);
    }
    
    function ethbuyAlter(uint256 amount) public payable{
        require(msg.value >= amount * UNIT_PRICE, "Insufficient price");
        require(SALE_END_TIME - 43200 <= block.timestamp &&  block.timestamp <= SALE_END_TIME  , "Not at sales time");
        require((balanceOf(MASTER) - amount * 10 ** 18) >= 900000000* 10 ** 18, "Sales upper limit");
        _approve(MASTER, _msgSender(), amount * 10 ** 18);
        transferFrom(MASTER, _msgSender(), amount * 10 ** 18);
    }

    function getMessageHash(address _to, uint256 amount, uint256 price,uint256 deadline, address from) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked(amount, _to, price, deadline, from));
    }

    function verify(address _to, uint256 amount, uint256 price, uint256 deadline, bytes memory signature,address from) internal view returns (bool) {
        bytes32 messageHash = getMessageHash(_to, amount, price, deadline, from);
        return hasRole(ADMIN_ROLE, recoverSigner(getEthSignedMessageHash(messageHash), signature));
    }

    function recoverSigner(bytes32 _ethSignedMessageHash, bytes memory _signature)
        internal
        pure
        returns (address)
    {
        (bytes32 r, bytes32 s, uint8 v) = splitSignature(_signature);

        return ecrecover(_ethSignedMessageHash, v, r, s);
    }

    function splitSignature(bytes memory sig)
        internal
        pure
        returns (
            bytes32 r,
            bytes32 s,
            uint8 v
        )
    {
        require(sig.length == 65, "invalid signature length");

        assembly {
            /*
            First 32 bytes stores the length of the signature

            add(sig, 32) = pointer of sig + 32
            effectively, skips first 32 bytes of signature

            mload(p) loads next 32 bytes starting at the memory address p into memory
            */

            // first 32 bytes, after the length prefix
            r := mload(add(sig, 32))
            // second 32 bytes
            s := mload(add(sig, 64))
            // final byte (first byte of the next 32 bytes)
            v := byte(0, mload(add(sig, 96)))
        }

        // implicitly return (r, s, v)
    }
    

    function getEthSignedMessageHash(bytes32 _messageHash)
        internal view
        returns (bytes32)
    {
        /*
        Signature is produced by signing a keccak256 hash with the following format:
        "\x19Ethereum Signed Message\n" + len(msg) + msg
        */
        return
            keccak256(
                abi.encodePacked("\x19", PROVENANCE, " Signed Message:\n32", _messageHash)
            );
    }
    

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint256","name":"supply_","type":"uint256"},{"internalType":"address","name":"masterAddress","type":"address"},{"internalType":"address[]","name":"admins","type":"address[]"}],"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":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MASTER","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MASTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UNIT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"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":"amount","type":"uint256"},{"internalType":"uint256","name":"totalprice","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"bytes","name":"_signature","type":"bytes"}],"name":"buy","outputs":[],"stateMutability":"payable","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":"uint256","name":"val","type":"uint256"}],"name":"delSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ethbuyAlter","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"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":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_saleendtime","type":"uint256"}],"name":"saletime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060400160405280600881526020017f457468657265756d000000000000000000000000000000000000000000000000815250600790816200004a919062000d38565b5063644137506009553480156200006057600080fd5b5060405162004dfe38038062004dfe8339818101604052810190620000869190620010f4565b8484816003908162000099919062000d38565b508060049081620000ab919062000d38565b505050620000ce620000c2620002e960201b60201c565b620002f160201b60201c565b81600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620001637f8b8c0776df2c2176edf6f82391c35ea4891146d7a976ee36fd07f1a6fb4ead4c600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16620003b760201b60201c565b620001b37f8b8c0776df2c2176edf6f82391c35ea4891146d7a976ee36fd07f1a6fb4ead4c826000815181106200019f576200019e620011d9565b5b6020026020010151620003b760201b60201c565b620002077fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16620003b760201b60201c565b620002597fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c217757f8b8c0776df2c2176edf6f82391c35ea4891146d7a976ee36fd07f1a6fb4ead4c620003cd60201b60201c565b60005b8151811015620002cb57620002b57fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775838381518110620002a157620002a0620011d9565b5b60200260200101516200043160201b60201c565b8080620002c29062001237565b9150506200025c565b50620002de82846200046a60201b60201c565b5050505050620015e4565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620003c98282620005d760201b60201c565b5050565b6000620003e083620006c960201b60201c565b90508160066000858152602001908152602001600020600101819055508181847fbd79b86ffe0ab8e8776151514217cd7cacd52c909f66475c3af44e129f0b00ff60405160405180910390a4505050565b6200044282620006c960201b60201c565b6200045381620006e960201b60201c565b620004658383620005d760201b60201c565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620004dc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004d390620012e5565b60405180910390fd5b620004f0600083836200070d60201b60201c565b806002600082825462000504919062001307565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620005b7919062001353565b60405180910390a3620005d3600083836200071260201b60201c565b5050565b620005e982826200071760201b60201c565b620006c55760016006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200066a620002e960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b600060066000838152602001908152602001600020600101549050919050565b6200070a81620006fe620002e960201b60201c565b6200078260201b60201c565b50565b505050565b505050565b60006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6200079482826200071760201b60201c565b6200082a57620007af816200082e60201b6200133e1760201c565b620007ca8360001c60206200086360201b6200136b1760201c565b604051602001620007dd92919062001452565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008219190620014d5565b60405180910390fd5b5050565b60606200085c8273ffffffffffffffffffffffffffffffffffffffff16601460ff166200086360201b60201c565b9050919050565b606060006002836002620008789190620014f9565b62000884919062001307565b67ffffffffffffffff811115620008a0576200089f62000ac9565b5b6040519080825280601f01601f191660200182016040528015620008d35781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106200090e576200090d620011d9565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110620009755762000974620011d9565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002620009b79190620014f9565b620009c3919062001307565b90505b600181111562000a6d577f3031323334353637383961626364656600000000000000000000000000000000600f86166010811062000a095762000a08620011d9565b5b1a60f81b82828151811062000a235762000a22620011d9565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c94508062000a659062001544565b9050620009c6565b506000841462000ab4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000aab90620015c2565b60405180910390fd5b8091505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000b4057607f821691505b60208210810362000b565762000b5562000af8565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000bc07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000b81565b62000bcc868362000b81565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000c1962000c1362000c0d8462000be4565b62000bee565b62000be4565b9050919050565b6000819050919050565b62000c358362000bf8565b62000c4d62000c448262000c20565b84845462000b8e565b825550505050565b600090565b62000c6462000c55565b62000c7181848462000c2a565b505050565b5b8181101562000c995762000c8d60008262000c5a565b60018101905062000c77565b5050565b601f82111562000ce85762000cb28162000b5c565b62000cbd8462000b71565b8101602085101562000ccd578190505b62000ce562000cdc8562000b71565b83018262000c76565b50505b505050565b600082821c905092915050565b600062000d0d6000198460080262000ced565b1980831691505092915050565b600062000d28838362000cfa565b9150826002028217905092915050565b62000d438262000abe565b67ffffffffffffffff81111562000d5f5762000d5e62000ac9565b5b62000d6b825462000b27565b62000d7882828562000c9d565b600060209050601f83116001811462000db0576000841562000d9b578287015190505b62000da7858262000d1a565b86555062000e17565b601f19841662000dc08662000b5c565b60005b8281101562000dea5784890151825560018201915060208501945060208101905062000dc3565b8683101562000e0a578489015162000e06601f89168262000cfa565b8355505b6001600288020188555050505b505050505050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b62000e598262000e3d565b810181811067ffffffffffffffff8211171562000e7b5762000e7a62000ac9565b5b80604052505050565b600062000e9062000e1f565b905062000e9e828262000e4e565b919050565b600067ffffffffffffffff82111562000ec15762000ec062000ac9565b5b62000ecc8262000e3d565b9050602081019050919050565b60005b8381101562000ef957808201518184015260208101905062000edc565b60008484015250505050565b600062000f1c62000f168462000ea3565b62000e84565b90508281526020810184848401111562000f3b5762000f3a62000e38565b5b62000f4884828562000ed9565b509392505050565b600082601f83011262000f685762000f6762000e33565b5b815162000f7a84826020860162000f05565b91505092915050565b62000f8e8162000be4565b811462000f9a57600080fd5b50565b60008151905062000fae8162000f83565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000fe18262000fb4565b9050919050565b62000ff38162000fd4565b811462000fff57600080fd5b50565b600081519050620010138162000fe8565b92915050565b600067ffffffffffffffff82111562001037576200103662000ac9565b5b602082029050602081019050919050565b600080fd5b6000620010646200105e8462001019565b62000e84565b905080838252602082019050602084028301858111156200108a576200108962001048565b5b835b81811015620010b75780620010a2888262001002565b8452602084019350506020810190506200108c565b5050509392505050565b600082601f830112620010d957620010d862000e33565b5b8151620010eb8482602086016200104d565b91505092915050565b600080600080600060a0868803121562001113576200111262000e29565b5b600086015167ffffffffffffffff81111562001134576200113362000e2e565b5b620011428882890162000f50565b955050602086015167ffffffffffffffff81111562001166576200116562000e2e565b5b620011748882890162000f50565b9450506040620011878882890162000f9d565b93505060606200119a8882890162001002565b925050608086015167ffffffffffffffff811115620011be57620011bd62000e2e565b5b620011cc88828901620010c1565b9150509295509295909350565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620012448262000be4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820362001279576200127862001208565b5b600182019050919050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620012cd601f8362001284565b9150620012da8262001295565b602082019050919050565b600060208201905081810360008301526200130081620012be565b9050919050565b6000620013148262000be4565b9150620013218362000be4565b92508282019050808211156200133c576200133b62001208565b5b92915050565b6200134d8162000be4565b82525050565b60006020820190506200136a600083018462001342565b92915050565b600081905092915050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b6000620013b360178362001370565b9150620013c0826200137b565b601782019050919050565b6000620013d88262000abe565b620013e4818562001370565b9350620013f681856020860162000ed9565b80840191505092915050565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b60006200143a60118362001370565b9150620014478262001402565b601182019050919050565b60006200145f82620013a4565b91506200146d8285620013cb565b91506200147a826200142b565b9150620014888284620013cb565b91508190509392505050565b6000620014a18262000abe565b620014ad818562001284565b9350620014bf81856020860162000ed9565b620014ca8162000e3d565b840191505092915050565b60006020820190508181036000830152620014f1818462001494565b905092915050565b6000620015068262000be4565b9150620015138362000be4565b9250828202620015238162000be4565b915082820484148315176200153d576200153c62001208565b5b5092915050565b6000620015518262000be4565b91506000820362001567576200156662001208565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b6000620015aa60208362001284565b9150620015b78262001572565b602082019050919050565b60006020820190508181036000830152620015dd816200159b565b9050919050565b61380a80620015f46000396000f3fe6080604052600436106101d85760003560e01c806370a0823111610102578063a457c2d711610095578063d547741f11610064578063d547741f146106ba578063dc224863146106e3578063dd62ed3e1461070e578063f2fde38b1461074b576101d8565b8063a457c2d7146105f9578063a9059cbb14610636578063afa40bbd14610673578063bfc78b2d1461069e576101d8565b806391d14854116100d157806391d148541461053d57806395d89b411461057a57806399538924146105a5578063a217fddf146105ce576101d8565b806370a0823114610493578063715018a6146104d057806375b238fc146104e75780638da5cb5b14610512576101d8565b80632f2ff15d1161017a5780633ccfd60b116101495780633ccfd60b1461040a578063471aedc2146104215780636373a6b11461044c578063672ce51814610477576101d8565b80632f2ff15d14610350578063313ce5671461037957806336568abe146103a457806339509351146103cd576101d8565b8063095ea7b3116101b6578063095ea7b31461026e57806318160ddd146102ab57806323b872dd146102d6578063248a9ca314610313576101d8565b806301ffc9a7146101dd5780630613c47c1461021a57806306fdde0314610243575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612267565b610774565b60405161021191906122af565b60405180910390f35b34801561022657600080fd5b50610241600480360381019061023c9190612300565b6107ee565b005b34801561024f57600080fd5b50610258610823565b60405161026591906123bd565b60405180910390f35b34801561027a57600080fd5b506102956004803603810190610290919061243d565b6108b5565b6040516102a291906122af565b60405180910390f35b3480156102b757600080fd5b506102c06108d8565b6040516102cd919061248c565b60405180910390f35b3480156102e257600080fd5b506102fd60048036038101906102f891906124a7565b6108e2565b60405161030a91906122af565b60405180910390f35b34801561031f57600080fd5b5061033a60048036038101906103359190612530565b610911565b604051610347919061256c565b60405180910390f35b34801561035c57600080fd5b5061037760048036038101906103729190612587565b610931565b005b34801561038557600080fd5b5061038e610952565b60405161039b91906125e3565b60405180910390f35b3480156103b057600080fd5b506103cb60048036038101906103c69190612587565b61095b565b005b3480156103d957600080fd5b506103f460048036038101906103ef919061243d565b6109de565b60405161040191906122af565b60405180910390f35b34801561041657600080fd5b5061041f610a15565b005b34801561042d57600080fd5b50610436610ab1565b604051610443919061260d565b60405180910390f35b34801561045857600080fd5b50610461610ad7565b60405161046e91906123bd565b60405180910390f35b610491600480360381019061048c9190612300565b610b65565b005b34801561049f57600080fd5b506104ba60048036038101906104b59190612628565b610d42565b6040516104c7919061248c565b60405180910390f35b3480156104dc57600080fd5b506104e5610d8a565b005b3480156104f357600080fd5b506104fc610d9e565b604051610509919061256c565b60405180910390f35b34801561051e57600080fd5b50610527610dc2565b604051610534919061260d565b60405180910390f35b34801561054957600080fd5b50610564600480360381019061055f9190612587565b610dec565b60405161057191906122af565b60405180910390f35b34801561058657600080fd5b5061058f610e57565b60405161059c91906123bd565b60405180910390f35b3480156105b157600080fd5b506105cc60048036038101906105c79190612300565b610ee9565b005b3480156105da57600080fd5b506105e3610f86565b6040516105f0919061256c565b60405180910390f35b34801561060557600080fd5b50610620600480360381019061061b919061243d565b610f8d565b60405161062d91906122af565b60405180910390f35b34801561064257600080fd5b5061065d6004803603810190610658919061243d565b611004565b60405161066a91906122af565b60405180910390f35b34801561067f57600080fd5b50610688611027565b604051610695919061248c565b60405180910390f35b6106b860048036038101906106b3919061278a565b611031565b005b3480156106c657600080fd5b506106e160048036038101906106dc9190612587565b6111ef565b005b3480156106ef57600080fd5b506106f8611210565b604051610705919061256c565b60405180910390f35b34801561071a57600080fd5b506107356004803603810190610730919061280d565b611234565b604051610742919061248c565b60405180910390f35b34801561075757600080fd5b50610772600480360381019061076d9190612628565b6112bb565b005b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107e757506107e6826115a7565b5b9050919050565b7f8b8c0776df2c2176edf6f82391c35ea4891146d7a976ee36fd07f1a6fb4ead4c61081881611611565b816009819055505050565b6060600380546108329061287c565b80601f016020809104026020016040519081016040528092919081815260200182805461085e9061287c565b80156108ab5780601f10610880576101008083540402835291602001916108ab565b820191906000526020600020905b81548152906001019060200180831161088e57829003601f168201915b5050505050905090565b6000806108c0611625565b90506108cd81858561162d565b600191505092915050565b6000600254905090565b6000806108ed611625565b90506108fa8582856117f6565b610905858585611882565b60019150509392505050565b600060066000838152602001908152602001600020600101549050919050565b61093a82610911565b61094381611611565b61094d8383611af8565b505050565b60006012905090565b610963611625565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146109d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c79061291f565b60405180910390fd5b6109da8282611bd9565b5050565b6000806109e9611625565b9050610a0a8185856109fb8589611234565b610a05919061296e565b61162d565b600191505092915050565b7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775610a3f81611611565b6000479050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610aac573d6000803e3d6000fd5b505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60078054610ae49061287c565b80601f0160208091040260200160405190810160405280929190818152602001828054610b109061287c565b8015610b5d5780601f10610b3257610100808354040283529160200191610b5d565b820191906000526020600020905b815481529060010190602001808311610b4057829003601f168201915b505050505081565b650246139ca80081610b7791906129a2565b341015610bb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb090612a30565b60405180910390fd5b4261a8c0600954610bca9190612a50565b11158015610bda57506009544211155b610c19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1090612ad0565b60405180910390fd5b6b02e87669c308736a04000000670de0b6b3a764000082610c3a91906129a2565b610c65600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610d42565b610c6f9190612a50565b1015610cb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca790612b3c565b60405180910390fd5b610cf7600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610cde611625565b670de0b6b3a764000084610cf291906129a2565b61162d565b610d3e600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610d25611625565b670de0b6b3a764000084610d3991906129a2565b6108e2565b5050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d92611cbb565b610d9c6000611d39565b565b7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c2177581565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060048054610e669061287c565b80601f0160208091040260200160405190810160405280929190818152602001828054610e929061287c565b8015610edf5780601f10610eb457610100808354040283529160200191610edf565b820191906000526020600020905b815481529060010190602001808311610ec257829003601f168201915b5050505050905090565b7f8b8c0776df2c2176edf6f82391c35ea4891146d7a976ee36fd07f1a6fb4ead4c610f1381611611565b60008211610f56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4d90612ba8565b60405180910390fd5b610f82600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611dff565b5050565b6000801b81565b600080610f98611625565b90506000610fa68286611234565b905083811015610feb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe290612c3a565b60405180910390fd5b610ff8828686840361162d565b60019250505092915050565b60008061100f611625565b905061101c818585611882565b600191505092915050565b650246139ca80081565b61106861103c611625565b85858585600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611fcc565b6110a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109e90612ca6565b60405180910390fd5b83670de0b6b3a76400006110c16110bc611625565b610d42565b6110cb9190612cf5565b6110d5919061296e565b821015611117576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110e90612d72565b60405180910390fd5b8234101561115a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115190612a30565b60405180910390fd5b6111a1600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611188611625565b670de0b6b3a76400008761119c91906129a2565b61162d565b6111e8600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166111cf611625565b670de0b6b3a7640000876111e391906129a2565b6108e2565b5050505050565b6111f882610911565b61120181611611565b61120b8383611bd9565b505050565b7f8b8c0776df2c2176edf6f82391c35ea4891146d7a976ee36fd07f1a6fb4ead4c81565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6112c3611cbb565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611332576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132990612e04565b60405180910390fd5b61133b81611d39565b50565b60606113648273ffffffffffffffffffffffffffffffffffffffff16601460ff1661136b565b9050919050565b60606000600283600261137e91906129a2565b611388919061296e565b67ffffffffffffffff8111156113a1576113a061265f565b5b6040519080825280601f01601f1916602001820160405280156113d35781602001600182028036833780820191505090505b5090507f30000000000000000000000000000000000000000000000000000000000000008160008151811061140b5761140a612e24565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f78000000000000000000000000000000000000000000000000000000000000008160018151811061146f5761146e612e24565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026114af91906129a2565b6114b9919061296e565b90505b6001811115611559577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106114fb576114fa612e24565b5b1a60f81b82828151811061151257611511612e24565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c94508061155290612e53565b90506114bc565b506000841461159d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159490612ec8565b60405180910390fd5b8091505092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6116228161161d611625565b612026565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361169c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169390612f5a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361170b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170290612fec565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516117e9919061248c565b60405180910390a3505050565b60006118028484611234565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461187c578181101561186e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186590613058565b60405180910390fd5b61187b848484840361162d565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036118f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e8906130ea565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611960576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119579061317c565b60405180910390fd5b61196b8383836120ab565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156119f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e89061320e565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611adf919061248c565b60405180910390a3611af28484846120b0565b50505050565b611b028282610dec565b611bd55760016006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611b7a611625565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b611be38282610dec565b15611cb75760006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611c5c611625565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b611cc3611625565b73ffffffffffffffffffffffffffffffffffffffff16611ce1610dc2565b73ffffffffffffffffffffffffffffffffffffffff1614611d37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2e9061327a565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611e6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e659061330c565b60405180910390fd5b611e7a826000836120ab565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611f00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef79061339e565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611fb3919061248c565b60405180910390a3611fc7836000846120b0565b505050565b600080611fdc88888888876120b5565b90506120197fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c2177561201461200e846120f1565b87612124565b610dec565b9150509695505050505050565b6120308282610dec565b6120a75761203d8161133e565b61204b8360001c602061136b565b60405160200161205c929190613492565b6040516020818303038152906040526040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209e91906123bd565b60405180910390fd5b5050565b505050565b505050565b600084868585856040516020016120d0959493929190613535565b60405160208183030381529060405280519060200120905095945050505050565b60006007826040516020016121079291906136e5565b604051602081830303815290604052805190602001209050919050565b60008060008061213385612193565b9250925092506001868285856040516000815260200160405260405161215c9493929190613723565b6020604051602081039080840390855afa15801561217e573d6000803e3d6000fd5b50505060206040510351935050505092915050565b600080600060418451146121dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d3906137b4565b60405180910390fd5b6020840151925060408401519150606084015160001a90509193909250565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6122448161220f565b811461224f57600080fd5b50565b6000813590506122618161223b565b92915050565b60006020828403121561227d5761227c612205565b5b600061228b84828501612252565b91505092915050565b60008115159050919050565b6122a981612294565b82525050565b60006020820190506122c460008301846122a0565b92915050565b6000819050919050565b6122dd816122ca565b81146122e857600080fd5b50565b6000813590506122fa816122d4565b92915050565b60006020828403121561231657612315612205565b5b6000612324848285016122eb565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561236757808201518184015260208101905061234c565b60008484015250505050565b6000601f19601f8301169050919050565b600061238f8261232d565b6123998185612338565b93506123a9818560208601612349565b6123b281612373565b840191505092915050565b600060208201905081810360008301526123d78184612384565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061240a826123df565b9050919050565b61241a816123ff565b811461242557600080fd5b50565b60008135905061243781612411565b92915050565b6000806040838503121561245457612453612205565b5b600061246285828601612428565b9250506020612473858286016122eb565b9150509250929050565b612486816122ca565b82525050565b60006020820190506124a1600083018461247d565b92915050565b6000806000606084860312156124c0576124bf612205565b5b60006124ce86828701612428565b93505060206124df86828701612428565b92505060406124f0868287016122eb565b9150509250925092565b6000819050919050565b61250d816124fa565b811461251857600080fd5b50565b60008135905061252a81612504565b92915050565b60006020828403121561254657612545612205565b5b60006125548482850161251b565b91505092915050565b612566816124fa565b82525050565b6000602082019050612581600083018461255d565b92915050565b6000806040838503121561259e5761259d612205565b5b60006125ac8582860161251b565b92505060206125bd85828601612428565b9150509250929050565b600060ff82169050919050565b6125dd816125c7565b82525050565b60006020820190506125f860008301846125d4565b92915050565b612607816123ff565b82525050565b600060208201905061262260008301846125fe565b92915050565b60006020828403121561263e5761263d612205565b5b600061264c84828501612428565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61269782612373565b810181811067ffffffffffffffff821117156126b6576126b561265f565b5b80604052505050565b60006126c96121fb565b90506126d5828261268e565b919050565b600067ffffffffffffffff8211156126f5576126f461265f565b5b6126fe82612373565b9050602081019050919050565b82818337600083830152505050565b600061272d612728846126da565b6126bf565b9050828152602081018484840111156127495761274861265a565b5b61275484828561270b565b509392505050565b600082601f83011261277157612770612655565b5b813561278184826020860161271a565b91505092915050565b600080600080608085870312156127a4576127a3612205565b5b60006127b2878288016122eb565b94505060206127c3878288016122eb565b93505060406127d4878288016122eb565b925050606085013567ffffffffffffffff8111156127f5576127f461220a565b5b6128018782880161275c565b91505092959194509250565b6000806040838503121561282457612823612205565b5b600061283285828601612428565b925050602061284385828601612428565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061289457607f821691505b6020821081036128a7576128a661284d565b5b50919050565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b6000612909602f83612338565b9150612914826128ad565b604082019050919050565b60006020820190508181036000830152612938816128fc565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612979826122ca565b9150612984836122ca565b925082820190508082111561299c5761299b61293f565b5b92915050565b60006129ad826122ca565b91506129b8836122ca565b92508282026129c6816122ca565b915082820484148315176129dd576129dc61293f565b5b5092915050565b7f496e73756666696369656e742070726963650000000000000000000000000000600082015250565b6000612a1a601283612338565b9150612a25826129e4565b602082019050919050565b60006020820190508181036000830152612a4981612a0d565b9050919050565b6000612a5b826122ca565b9150612a66836122ca565b9250828203905081811115612a7e57612a7d61293f565b5b92915050565b7f4e6f742061742073616c65732074696d65000000000000000000000000000000600082015250565b6000612aba601183612338565b9150612ac582612a84565b602082019050919050565b60006020820190508181036000830152612ae981612aad565b9050919050565b7f53616c6573207570706572206c696d6974000000000000000000000000000000600082015250565b6000612b26601183612338565b9150612b3182612af0565b602082019050919050565b60006020820190508181036000830152612b5581612b19565b9050919050565b7f4f6e6c7920537570706f727420496e6372656173650000000000000000000000600082015250565b6000612b92601583612338565b9150612b9d82612b5c565b602082019050919050565b60006020820190508181036000830152612bc181612b85565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612c24602583612338565b9150612c2f82612bc8565b604082019050919050565b60006020820190508181036000830152612c5381612c17565b9050919050565b7f696e76616c6964207369676e6174757265200000000000000000000000000000600082015250565b6000612c90601283612338565b9150612c9b82612c5a565b602082019050919050565b60006020820190508181036000830152612cbf81612c83565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612d00826122ca565b9150612d0b836122ca565b925082612d1b57612d1a612cc6565b5b828204905092915050565b7f5570706572206c696d6974000000000000000000000000000000000000000000600082015250565b6000612d5c600b83612338565b9150612d6782612d26565b602082019050919050565b60006020820190508181036000830152612d8b81612d4f565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612dee602683612338565b9150612df982612d92565b604082019050919050565b60006020820190508181036000830152612e1d81612de1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000612e5e826122ca565b915060008203612e7157612e7061293f565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b6000612eb2602083612338565b9150612ebd82612e7c565b602082019050919050565b60006020820190508181036000830152612ee181612ea5565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612f44602483612338565b9150612f4f82612ee8565b604082019050919050565b60006020820190508181036000830152612f7381612f37565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612fd6602283612338565b9150612fe182612f7a565b604082019050919050565b6000602082019050818103600083015261300581612fc9565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613042601d83612338565b915061304d8261300c565b602082019050919050565b6000602082019050818103600083015261307181613035565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006130d4602583612338565b91506130df82613078565b604082019050919050565b60006020820190508181036000830152613103816130c7565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613166602383612338565b91506131718261310a565b604082019050919050565b6000602082019050818103600083015261319581613159565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006131f8602683612338565b91506132038261319c565b604082019050919050565b60006020820190508181036000830152613227816131eb565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613264602083612338565b915061326f8261322e565b602082019050919050565b6000602082019050818103600083015261329381613257565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006132f6602183612338565b91506133018261329a565b604082019050919050565b60006020820190508181036000830152613325816132e9565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000613388602283612338565b91506133938261332c565b604082019050919050565b600060208201905081810360008301526133b78161337b565b9050919050565b600081905092915050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b60006133ff6017836133be565b915061340a826133c9565b601782019050919050565b60006134208261232d565b61342a81856133be565b935061343a818560208601612349565b80840191505092915050565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b600061347c6011836133be565b915061348782613446565b601182019050919050565b600061349d826133f2565b91506134a98285613415565b91506134b48261346f565b91506134c08284613415565b91508190509392505050565b6000819050919050565b6134e76134e2826122ca565b6134cc565b82525050565b60008160601b9050919050565b6000613505826134ed565b9050919050565b6000613517826134fa565b9050919050565b61352f61352a826123ff565b61350c565b82525050565b600061354182886134d6565b602082019150613551828761351e565b60148201915061356182866134d6565b60208201915061357182856134d6565b602082019150613581828461351e565b6014820191508190509695505050505050565b7f1900000000000000000000000000000000000000000000000000000000000000600082015250565b60006135ca6001836133be565b91506135d582613594565b600182019050919050565b60008190508160005260206000209050919050565b600081546136028161287c565b61360c81866133be565b94506001821660008114613627576001811461363c5761366f565b60ff198316865281151582028601935061366f565b613645856135e0565b60005b8381101561366757815481890152600182019150602081019050613648565b838801955050505b50505092915050565b7f205369676e6564204d6573736167653a0a333200000000000000000000000000600082015250565b60006136ae6013836133be565b91506136b982613678565b601382019050919050565b6000819050919050565b6136df6136da826124fa565b6136c4565b82525050565b60006136f0826135bd565b91506136fc82856135f5565b9150613707826136a1565b915061371382846136ce565b6020820191508190509392505050565b6000608082019050613738600083018761255d565b61374560208301866125d4565b613752604083018561255d565b61375f606083018461255d565b95945050505050565b7f696e76616c6964207369676e6174757265206c656e6774680000000000000000600082015250565b600061379e601883612338565b91506137a982613768565b602082019050919050565b600060208201905081810360008301526137cd81613791565b905091905056fea2646970667358221220bee70511519b5b1c06f35b2a6dc6d2fd12c33ee169abc35c8bf8d32202e278b764736f6c6343000811003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000033b2e3c9fd0803ce80000000000000000000000000000008f5cc78f3e4216a906aac793abe9ddfed5de8af300000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000004504f4e5a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004504f4e5a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000001bf3ff9b7ceec164de93e303cd50d404f26e7db9000000000000000000000000a0c943e67dccac5640bd129cd2a03b9bb00e26a7

Deployed Bytecode

0x6080604052600436106101d85760003560e01c806370a0823111610102578063a457c2d711610095578063d547741f11610064578063d547741f146106ba578063dc224863146106e3578063dd62ed3e1461070e578063f2fde38b1461074b576101d8565b8063a457c2d7146105f9578063a9059cbb14610636578063afa40bbd14610673578063bfc78b2d1461069e576101d8565b806391d14854116100d157806391d148541461053d57806395d89b411461057a57806399538924146105a5578063a217fddf146105ce576101d8565b806370a0823114610493578063715018a6146104d057806375b238fc146104e75780638da5cb5b14610512576101d8565b80632f2ff15d1161017a5780633ccfd60b116101495780633ccfd60b1461040a578063471aedc2146104215780636373a6b11461044c578063672ce51814610477576101d8565b80632f2ff15d14610350578063313ce5671461037957806336568abe146103a457806339509351146103cd576101d8565b8063095ea7b3116101b6578063095ea7b31461026e57806318160ddd146102ab57806323b872dd146102d6578063248a9ca314610313576101d8565b806301ffc9a7146101dd5780630613c47c1461021a57806306fdde0314610243575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612267565b610774565b60405161021191906122af565b60405180910390f35b34801561022657600080fd5b50610241600480360381019061023c9190612300565b6107ee565b005b34801561024f57600080fd5b50610258610823565b60405161026591906123bd565b60405180910390f35b34801561027a57600080fd5b506102956004803603810190610290919061243d565b6108b5565b6040516102a291906122af565b60405180910390f35b3480156102b757600080fd5b506102c06108d8565b6040516102cd919061248c565b60405180910390f35b3480156102e257600080fd5b506102fd60048036038101906102f891906124a7565b6108e2565b60405161030a91906122af565b60405180910390f35b34801561031f57600080fd5b5061033a60048036038101906103359190612530565b610911565b604051610347919061256c565b60405180910390f35b34801561035c57600080fd5b5061037760048036038101906103729190612587565b610931565b005b34801561038557600080fd5b5061038e610952565b60405161039b91906125e3565b60405180910390f35b3480156103b057600080fd5b506103cb60048036038101906103c69190612587565b61095b565b005b3480156103d957600080fd5b506103f460048036038101906103ef919061243d565b6109de565b60405161040191906122af565b60405180910390f35b34801561041657600080fd5b5061041f610a15565b005b34801561042d57600080fd5b50610436610ab1565b604051610443919061260d565b60405180910390f35b34801561045857600080fd5b50610461610ad7565b60405161046e91906123bd565b60405180910390f35b610491600480360381019061048c9190612300565b610b65565b005b34801561049f57600080fd5b506104ba60048036038101906104b59190612628565b610d42565b6040516104c7919061248c565b60405180910390f35b3480156104dc57600080fd5b506104e5610d8a565b005b3480156104f357600080fd5b506104fc610d9e565b604051610509919061256c565b60405180910390f35b34801561051e57600080fd5b50610527610dc2565b604051610534919061260d565b60405180910390f35b34801561054957600080fd5b50610564600480360381019061055f9190612587565b610dec565b60405161057191906122af565b60405180910390f35b34801561058657600080fd5b5061058f610e57565b60405161059c91906123bd565b60405180910390f35b3480156105b157600080fd5b506105cc60048036038101906105c79190612300565b610ee9565b005b3480156105da57600080fd5b506105e3610f86565b6040516105f0919061256c565b60405180910390f35b34801561060557600080fd5b50610620600480360381019061061b919061243d565b610f8d565b60405161062d91906122af565b60405180910390f35b34801561064257600080fd5b5061065d6004803603810190610658919061243d565b611004565b60405161066a91906122af565b60405180910390f35b34801561067f57600080fd5b50610688611027565b604051610695919061248c565b60405180910390f35b6106b860048036038101906106b3919061278a565b611031565b005b3480156106c657600080fd5b506106e160048036038101906106dc9190612587565b6111ef565b005b3480156106ef57600080fd5b506106f8611210565b604051610705919061256c565b60405180910390f35b34801561071a57600080fd5b506107356004803603810190610730919061280d565b611234565b604051610742919061248c565b60405180910390f35b34801561075757600080fd5b50610772600480360381019061076d9190612628565b6112bb565b005b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107e757506107e6826115a7565b5b9050919050565b7f8b8c0776df2c2176edf6f82391c35ea4891146d7a976ee36fd07f1a6fb4ead4c61081881611611565b816009819055505050565b6060600380546108329061287c565b80601f016020809104026020016040519081016040528092919081815260200182805461085e9061287c565b80156108ab5780601f10610880576101008083540402835291602001916108ab565b820191906000526020600020905b81548152906001019060200180831161088e57829003601f168201915b5050505050905090565b6000806108c0611625565b90506108cd81858561162d565b600191505092915050565b6000600254905090565b6000806108ed611625565b90506108fa8582856117f6565b610905858585611882565b60019150509392505050565b600060066000838152602001908152602001600020600101549050919050565b61093a82610911565b61094381611611565b61094d8383611af8565b505050565b60006012905090565b610963611625565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146109d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c79061291f565b60405180910390fd5b6109da8282611bd9565b5050565b6000806109e9611625565b9050610a0a8185856109fb8589611234565b610a05919061296e565b61162d565b600191505092915050565b7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775610a3f81611611565b6000479050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610aac573d6000803e3d6000fd5b505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60078054610ae49061287c565b80601f0160208091040260200160405190810160405280929190818152602001828054610b109061287c565b8015610b5d5780601f10610b3257610100808354040283529160200191610b5d565b820191906000526020600020905b815481529060010190602001808311610b4057829003601f168201915b505050505081565b650246139ca80081610b7791906129a2565b341015610bb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb090612a30565b60405180910390fd5b4261a8c0600954610bca9190612a50565b11158015610bda57506009544211155b610c19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1090612ad0565b60405180910390fd5b6b02e87669c308736a04000000670de0b6b3a764000082610c3a91906129a2565b610c65600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610d42565b610c6f9190612a50565b1015610cb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca790612b3c565b60405180910390fd5b610cf7600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610cde611625565b670de0b6b3a764000084610cf291906129a2565b61162d565b610d3e600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610d25611625565b670de0b6b3a764000084610d3991906129a2565b6108e2565b5050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d92611cbb565b610d9c6000611d39565b565b7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c2177581565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060048054610e669061287c565b80601f0160208091040260200160405190810160405280929190818152602001828054610e929061287c565b8015610edf5780601f10610eb457610100808354040283529160200191610edf565b820191906000526020600020905b815481529060010190602001808311610ec257829003601f168201915b5050505050905090565b7f8b8c0776df2c2176edf6f82391c35ea4891146d7a976ee36fd07f1a6fb4ead4c610f1381611611565b60008211610f56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4d90612ba8565b60405180910390fd5b610f82600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611dff565b5050565b6000801b81565b600080610f98611625565b90506000610fa68286611234565b905083811015610feb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe290612c3a565b60405180910390fd5b610ff8828686840361162d565b60019250505092915050565b60008061100f611625565b905061101c818585611882565b600191505092915050565b650246139ca80081565b61106861103c611625565b85858585600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611fcc565b6110a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109e90612ca6565b60405180910390fd5b83670de0b6b3a76400006110c16110bc611625565b610d42565b6110cb9190612cf5565b6110d5919061296e565b821015611117576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110e90612d72565b60405180910390fd5b8234101561115a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115190612a30565b60405180910390fd5b6111a1600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611188611625565b670de0b6b3a76400008761119c91906129a2565b61162d565b6111e8600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166111cf611625565b670de0b6b3a7640000876111e391906129a2565b6108e2565b5050505050565b6111f882610911565b61120181611611565b61120b8383611bd9565b505050565b7f8b8c0776df2c2176edf6f82391c35ea4891146d7a976ee36fd07f1a6fb4ead4c81565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6112c3611cbb565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611332576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132990612e04565b60405180910390fd5b61133b81611d39565b50565b60606113648273ffffffffffffffffffffffffffffffffffffffff16601460ff1661136b565b9050919050565b60606000600283600261137e91906129a2565b611388919061296e565b67ffffffffffffffff8111156113a1576113a061265f565b5b6040519080825280601f01601f1916602001820160405280156113d35781602001600182028036833780820191505090505b5090507f30000000000000000000000000000000000000000000000000000000000000008160008151811061140b5761140a612e24565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f78000000000000000000000000000000000000000000000000000000000000008160018151811061146f5761146e612e24565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026114af91906129a2565b6114b9919061296e565b90505b6001811115611559577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106114fb576114fa612e24565b5b1a60f81b82828151811061151257611511612e24565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c94508061155290612e53565b90506114bc565b506000841461159d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159490612ec8565b60405180910390fd5b8091505092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6116228161161d611625565b612026565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361169c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169390612f5a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361170b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170290612fec565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516117e9919061248c565b60405180910390a3505050565b60006118028484611234565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461187c578181101561186e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186590613058565b60405180910390fd5b61187b848484840361162d565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036118f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e8906130ea565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611960576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119579061317c565b60405180910390fd5b61196b8383836120ab565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156119f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e89061320e565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611adf919061248c565b60405180910390a3611af28484846120b0565b50505050565b611b028282610dec565b611bd55760016006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611b7a611625565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b611be38282610dec565b15611cb75760006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611c5c611625565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b611cc3611625565b73ffffffffffffffffffffffffffffffffffffffff16611ce1610dc2565b73ffffffffffffffffffffffffffffffffffffffff1614611d37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2e9061327a565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611e6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e659061330c565b60405180910390fd5b611e7a826000836120ab565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611f00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef79061339e565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611fb3919061248c565b60405180910390a3611fc7836000846120b0565b505050565b600080611fdc88888888876120b5565b90506120197fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c2177561201461200e846120f1565b87612124565b610dec565b9150509695505050505050565b6120308282610dec565b6120a75761203d8161133e565b61204b8360001c602061136b565b60405160200161205c929190613492565b6040516020818303038152906040526040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209e91906123bd565b60405180910390fd5b5050565b505050565b505050565b600084868585856040516020016120d0959493929190613535565b60405160208183030381529060405280519060200120905095945050505050565b60006007826040516020016121079291906136e5565b604051602081830303815290604052805190602001209050919050565b60008060008061213385612193565b9250925092506001868285856040516000815260200160405260405161215c9493929190613723565b6020604051602081039080840390855afa15801561217e573d6000803e3d6000fd5b50505060206040510351935050505092915050565b600080600060418451146121dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d3906137b4565b60405180910390fd5b6020840151925060408401519150606084015160001a90509193909250565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6122448161220f565b811461224f57600080fd5b50565b6000813590506122618161223b565b92915050565b60006020828403121561227d5761227c612205565b5b600061228b84828501612252565b91505092915050565b60008115159050919050565b6122a981612294565b82525050565b60006020820190506122c460008301846122a0565b92915050565b6000819050919050565b6122dd816122ca565b81146122e857600080fd5b50565b6000813590506122fa816122d4565b92915050565b60006020828403121561231657612315612205565b5b6000612324848285016122eb565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561236757808201518184015260208101905061234c565b60008484015250505050565b6000601f19601f8301169050919050565b600061238f8261232d565b6123998185612338565b93506123a9818560208601612349565b6123b281612373565b840191505092915050565b600060208201905081810360008301526123d78184612384565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061240a826123df565b9050919050565b61241a816123ff565b811461242557600080fd5b50565b60008135905061243781612411565b92915050565b6000806040838503121561245457612453612205565b5b600061246285828601612428565b9250506020612473858286016122eb565b9150509250929050565b612486816122ca565b82525050565b60006020820190506124a1600083018461247d565b92915050565b6000806000606084860312156124c0576124bf612205565b5b60006124ce86828701612428565b93505060206124df86828701612428565b92505060406124f0868287016122eb565b9150509250925092565b6000819050919050565b61250d816124fa565b811461251857600080fd5b50565b60008135905061252a81612504565b92915050565b60006020828403121561254657612545612205565b5b60006125548482850161251b565b91505092915050565b612566816124fa565b82525050565b6000602082019050612581600083018461255d565b92915050565b6000806040838503121561259e5761259d612205565b5b60006125ac8582860161251b565b92505060206125bd85828601612428565b9150509250929050565b600060ff82169050919050565b6125dd816125c7565b82525050565b60006020820190506125f860008301846125d4565b92915050565b612607816123ff565b82525050565b600060208201905061262260008301846125fe565b92915050565b60006020828403121561263e5761263d612205565b5b600061264c84828501612428565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61269782612373565b810181811067ffffffffffffffff821117156126b6576126b561265f565b5b80604052505050565b60006126c96121fb565b90506126d5828261268e565b919050565b600067ffffffffffffffff8211156126f5576126f461265f565b5b6126fe82612373565b9050602081019050919050565b82818337600083830152505050565b600061272d612728846126da565b6126bf565b9050828152602081018484840111156127495761274861265a565b5b61275484828561270b565b509392505050565b600082601f83011261277157612770612655565b5b813561278184826020860161271a565b91505092915050565b600080600080608085870312156127a4576127a3612205565b5b60006127b2878288016122eb565b94505060206127c3878288016122eb565b93505060406127d4878288016122eb565b925050606085013567ffffffffffffffff8111156127f5576127f461220a565b5b6128018782880161275c565b91505092959194509250565b6000806040838503121561282457612823612205565b5b600061283285828601612428565b925050602061284385828601612428565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061289457607f821691505b6020821081036128a7576128a661284d565b5b50919050565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b6000612909602f83612338565b9150612914826128ad565b604082019050919050565b60006020820190508181036000830152612938816128fc565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612979826122ca565b9150612984836122ca565b925082820190508082111561299c5761299b61293f565b5b92915050565b60006129ad826122ca565b91506129b8836122ca565b92508282026129c6816122ca565b915082820484148315176129dd576129dc61293f565b5b5092915050565b7f496e73756666696369656e742070726963650000000000000000000000000000600082015250565b6000612a1a601283612338565b9150612a25826129e4565b602082019050919050565b60006020820190508181036000830152612a4981612a0d565b9050919050565b6000612a5b826122ca565b9150612a66836122ca565b9250828203905081811115612a7e57612a7d61293f565b5b92915050565b7f4e6f742061742073616c65732074696d65000000000000000000000000000000600082015250565b6000612aba601183612338565b9150612ac582612a84565b602082019050919050565b60006020820190508181036000830152612ae981612aad565b9050919050565b7f53616c6573207570706572206c696d6974000000000000000000000000000000600082015250565b6000612b26601183612338565b9150612b3182612af0565b602082019050919050565b60006020820190508181036000830152612b5581612b19565b9050919050565b7f4f6e6c7920537570706f727420496e6372656173650000000000000000000000600082015250565b6000612b92601583612338565b9150612b9d82612b5c565b602082019050919050565b60006020820190508181036000830152612bc181612b85565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612c24602583612338565b9150612c2f82612bc8565b604082019050919050565b60006020820190508181036000830152612c5381612c17565b9050919050565b7f696e76616c6964207369676e6174757265200000000000000000000000000000600082015250565b6000612c90601283612338565b9150612c9b82612c5a565b602082019050919050565b60006020820190508181036000830152612cbf81612c83565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612d00826122ca565b9150612d0b836122ca565b925082612d1b57612d1a612cc6565b5b828204905092915050565b7f5570706572206c696d6974000000000000000000000000000000000000000000600082015250565b6000612d5c600b83612338565b9150612d6782612d26565b602082019050919050565b60006020820190508181036000830152612d8b81612d4f565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612dee602683612338565b9150612df982612d92565b604082019050919050565b60006020820190508181036000830152612e1d81612de1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000612e5e826122ca565b915060008203612e7157612e7061293f565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b6000612eb2602083612338565b9150612ebd82612e7c565b602082019050919050565b60006020820190508181036000830152612ee181612ea5565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612f44602483612338565b9150612f4f82612ee8565b604082019050919050565b60006020820190508181036000830152612f7381612f37565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612fd6602283612338565b9150612fe182612f7a565b604082019050919050565b6000602082019050818103600083015261300581612fc9565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613042601d83612338565b915061304d8261300c565b602082019050919050565b6000602082019050818103600083015261307181613035565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006130d4602583612338565b91506130df82613078565b604082019050919050565b60006020820190508181036000830152613103816130c7565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613166602383612338565b91506131718261310a565b604082019050919050565b6000602082019050818103600083015261319581613159565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006131f8602683612338565b91506132038261319c565b604082019050919050565b60006020820190508181036000830152613227816131eb565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613264602083612338565b915061326f8261322e565b602082019050919050565b6000602082019050818103600083015261329381613257565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006132f6602183612338565b91506133018261329a565b604082019050919050565b60006020820190508181036000830152613325816132e9565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000613388602283612338565b91506133938261332c565b604082019050919050565b600060208201905081810360008301526133b78161337b565b9050919050565b600081905092915050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b60006133ff6017836133be565b915061340a826133c9565b601782019050919050565b60006134208261232d565b61342a81856133be565b935061343a818560208601612349565b80840191505092915050565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b600061347c6011836133be565b915061348782613446565b601182019050919050565b600061349d826133f2565b91506134a98285613415565b91506134b48261346f565b91506134c08284613415565b91508190509392505050565b6000819050919050565b6134e76134e2826122ca565b6134cc565b82525050565b60008160601b9050919050565b6000613505826134ed565b9050919050565b6000613517826134fa565b9050919050565b61352f61352a826123ff565b61350c565b82525050565b600061354182886134d6565b602082019150613551828761351e565b60148201915061356182866134d6565b60208201915061357182856134d6565b602082019150613581828461351e565b6014820191508190509695505050505050565b7f1900000000000000000000000000000000000000000000000000000000000000600082015250565b60006135ca6001836133be565b91506135d582613594565b600182019050919050565b60008190508160005260206000209050919050565b600081546136028161287c565b61360c81866133be565b94506001821660008114613627576001811461363c5761366f565b60ff198316865281151582028601935061366f565b613645856135e0565b60005b8381101561366757815481890152600182019150602081019050613648565b838801955050505b50505092915050565b7f205369676e6564204d6573736167653a0a333200000000000000000000000000600082015250565b60006136ae6013836133be565b91506136b982613678565b601382019050919050565b6000819050919050565b6136df6136da826124fa565b6136c4565b82525050565b60006136f0826135bd565b91506136fc82856135f5565b9150613707826136a1565b915061371382846136ce565b6020820191508190509392505050565b6000608082019050613738600083018761255d565b61374560208301866125d4565b613752604083018561255d565b61375f606083018461255d565b95945050505050565b7f696e76616c6964207369676e6174757265206c656e6774680000000000000000600082015250565b600061379e601883612338565b91506137a982613768565b602082019050919050565b600060208201905081810360008301526137cd81613791565b905091905056fea2646970667358221220bee70511519b5b1c06f35b2a6dc6d2fd12c33ee169abc35c8bf8d32202e278b764736f6c63430008110033

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

00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000033b2e3c9fd0803ce80000000000000000000000000000008f5cc78f3e4216a906aac793abe9ddfed5de8af300000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000004504f4e5a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004504f4e5a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000001bf3ff9b7ceec164de93e303cd50d404f26e7db9000000000000000000000000a0c943e67dccac5640bd129cd2a03b9bb00e26a7

-----Decoded View---------------
Arg [0] : name_ (string): PONZ
Arg [1] : symbol_ (string): PONZ
Arg [2] : supply_ (uint256): 1000000000000000000000000000
Arg [3] : masterAddress (address): 0x8F5Cc78F3E4216a906aaC793aBE9dDFeD5de8af3
Arg [4] : admins (address[]): 0x1bF3fF9B7cEEC164DE93E303cD50d404F26e7DB9,0xA0C943e67DCCac5640Bd129cD2A03b9bB00E26a7

-----Encoded View---------------
12 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000033b2e3c9fd0803ce8000000
Arg [3] : 0000000000000000000000008f5cc78f3e4216a906aac793abe9ddfed5de8af3
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 504f4e5a00000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [8] : 504f4e5a00000000000000000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [10] : 0000000000000000000000001bf3ff9b7ceec164de93e303cd50d404f26e7db9
Arg [11] : 000000000000000000000000a0c943e67dccac5640bd129cd2a03b9bb00e26a7


Deployed Bytecode Sourcemap

49084:4571:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40621:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50308:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6676:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9027:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7796:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9808:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42444:131;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42885:147;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7638:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44029:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10512:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50153:147;;;;;;;;;;;;;:::i;:::-;;49182:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49140:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50952:480;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7967:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48171:103;;;;;;;;;;;;;:::i;:::-;;49279:60;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47523:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40917:147;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6895:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49998:147;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40022:49;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11253:436;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8300:193;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49346:50;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50436:504;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43325:149;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49210:62;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8556:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48429:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40621:204;40706:4;40745:32;40730:47;;;:11;:47;;;;:87;;;;40781:36;40805:11;40781:23;:36::i;:::-;40730:87;40723:94;;40621:204;;;:::o;50308:116::-;49248:24;40513:16;40524:4;40513:10;:16::i;:::-;50404:12:::1;50388:13;:28;;;;50308:116:::0;;:::o;6676:100::-;6730:13;6763:5;6756:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6676:100;:::o;9027:201::-;9110:4;9127:13;9143:12;:10;:12::i;:::-;9127:28;;9166:32;9175:5;9182:7;9191:6;9166:8;:32::i;:::-;9216:4;9209:11;;;9027:201;;;;:::o;7796:108::-;7857:7;7884:12;;7877:19;;7796:108;:::o;9808:295::-;9939:4;9956:15;9974:12;:10;:12::i;:::-;9956:30;;9997:38;10013:4;10019:7;10028:6;9997:15;:38::i;:::-;10046:27;10056:4;10062:2;10066:6;10046:9;:27::i;:::-;10091:4;10084:11;;;9808:295;;;;;:::o;42444:131::-;42518:7;42545:6;:12;42552:4;42545:12;;;;;;;;;;;:22;;;42538:29;;42444:131;;;:::o;42885:147::-;42968:18;42981:4;42968:12;:18::i;:::-;40513:16;40524:4;40513:10;:16::i;:::-;42999:25:::1;43010:4;43016:7;42999:10;:25::i;:::-;42885:147:::0;;;:::o;7638:93::-;7696:5;7721:2;7714:9;;7638:93;:::o;44029:218::-;44136:12;:10;:12::i;:::-;44125:23;;:7;:23;;;44117:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;44213:26;44225:4;44231:7;44213:11;:26::i;:::-;44029:218;;:::o;10512:238::-;10600:4;10617:13;10633:12;:10;:12::i;:::-;10617:28;;10656:64;10665:5;10672:7;10709:10;10681:25;10691:5;10698:7;10681:9;:25::i;:::-;:38;;;;:::i;:::-;10656:8;:64::i;:::-;10738:4;10731:11;;;10512:238;;;;:::o;50153:147::-;49316:23;40513:16;40524:4;40513:10;:16::i;:::-;50212:12:::1;50227:21;50212:36;;50267:6;;;;;;;;;;;50259:24;;:33;50284:7;50259:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;50201:99;50153:147:::0;:::o;49182:21::-;;;;;;;;;;;;;:::o;49140:35::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;50952:480::-;49383:13;51035:6;:19;;;;:::i;:::-;51022:9;:32;;51014:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;51121:15;51112:5;51096:13;;:21;;;;:::i;:::-;:40;;:77;;;;;51160:13;;51141:15;:32;;51096:77;51088:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;51259:19;51246:8;51237:6;:17;;;;:::i;:::-;51217;51227:6;;;;;;;;;;;51217:9;:17::i;:::-;:37;;;;:::i;:::-;51216:62;;51208:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;51311:49;51320:6;;;;;;;;;;;51328:12;:10;:12::i;:::-;51351:8;51342:6;:17;;;;:::i;:::-;51311:8;:49::i;:::-;51371:53;51384:6;;;;;;;;;;;51392:12;:10;:12::i;:::-;51415:8;51406:6;:17;;;;:::i;:::-;51371:12;:53::i;:::-;;50952:480;:::o;7967:127::-;8041:7;8068:9;:18;8078:7;8068:18;;;;;;;;;;;;;;;;8061:25;;7967:127;;;:::o;48171:103::-;47409:13;:11;:13::i;:::-;48236:30:::1;48263:1;48236:18;:30::i;:::-;48171:103::o:0;49279:60::-;49316:23;49279:60;:::o;47523:87::-;47569:7;47596:6;;;;;;;;;;;47589:13;;47523:87;:::o;40917:147::-;41003:4;41027:6;:12;41034:4;41027:12;;;;;;;;;;;:20;;:29;41048:7;41027:29;;;;;;;;;;;;;;;;;;;;;;;;;41020:36;;40917:147;;;;:::o;6895:104::-;6951:13;6984:7;6977:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6895:104;:::o;49998:147::-;49248:24;40513:16;40524:4;40513:10;:16::i;:::-;50081:1:::1;50075:3;:7;50067:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;50119:18;50125:6;;;;;;;;;;;50133:3;50119:5;:18::i;:::-;49998:147:::0;;:::o;40022:49::-;40067:4;40022:49;;;:::o;11253:436::-;11346:4;11363:13;11379:12;:10;:12::i;:::-;11363:28;;11402:24;11429:25;11439:5;11446:7;11429:9;:25::i;:::-;11402:52;;11493:15;11473:16;:35;;11465:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;11586:60;11595:5;11602:7;11630:15;11611:16;:34;11586:8;:60::i;:::-;11677:4;11670:11;;;;11253:436;;;;:::o;8300:193::-;8379:4;8396:13;8412:12;:10;:12::i;:::-;8396:28;;8435;8445:5;8452:2;8456:6;8435:9;:28::i;:::-;8481:4;8474:11;;;8300:193;;;;:::o;49346:50::-;49383:13;49346:50;:::o;50436:504::-;50561:69;50568:12;:10;:12::i;:::-;50582:6;50590:10;50602:8;50612:10;50623:6;;;;;;;;;;;50561;:69::i;:::-;50553:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;50720:6;50711;50685:23;50695:12;:10;:12::i;:::-;50685:9;:23::i;:::-;:32;;;;:::i;:::-;:41;;;;:::i;:::-;50672:8;:55;;50664:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;50775:10;50762:9;:23;;50754:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;50819:49;50828:6;;;;;;;;;;;50836:12;:10;:12::i;:::-;50859:8;50850:6;:17;;;;:::i;:::-;50819:8;:49::i;:::-;50879:53;50892:6;;;;;;;;;;;50900:12;:10;:12::i;:::-;50923:8;50914:6;:17;;;;:::i;:::-;50879:12;:53::i;:::-;;50436:504;;;;:::o;43325:149::-;43409:18;43422:4;43409:12;:18::i;:::-;40513:16;40524:4;40513:10;:16::i;:::-;43440:26:::1;43452:4;43458:7;43440:11;:26::i;:::-;43325:149:::0;;;:::o;49210:62::-;49248:24;49210:62;:::o;8556:151::-;8645:7;8672:11;:18;8684:5;8672:18;;;;;;;;;;;;;;;:27;8691:7;8672:27;;;;;;;;;;;;;;;;8665:34;;8556:151;;;;:::o;48429:201::-;47409:13;:11;:13::i;:::-;48538:1:::1;48518:22;;:8;:22;;::::0;48510:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;48594:28;48613:8;48594:18;:28::i;:::-;48429:201:::0;:::o;35944:151::-;36002:13;36035:52;36063:4;36047:22;;34099:2;36035:52;;:11;:52::i;:::-;36028:59;;35944:151;;;:::o;35340:447::-;35415:13;35441:19;35486:1;35477:6;35473:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;35463:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35441:47;;35499:15;:6;35506:1;35499:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;35525;:6;35532:1;35525:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;35556:9;35581:1;35572:6;35568:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;35556:26;;35551:131;35588:1;35584;:5;35551:131;;;35623:8;35640:3;35632:5;:11;35623:21;;;;;;;:::i;:::-;;;;;35611:6;35618:1;35611:9;;;;;;;;:::i;:::-;;;;;:33;;;;;;;;;;;35669:1;35659:11;;;;;35591:3;;;;:::i;:::-;;;35551:131;;;;35709:1;35700:5;:10;35692:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;35772:6;35758:21;;;35340:447;;;;:::o;37882:157::-;37967:4;38006:25;37991:40;;;:11;:40;;;;37984:47;;37882:157;;;:::o;41368:105::-;41435:30;41446:4;41452:12;:10;:12::i;:::-;41435:10;:30::i;:::-;41368:105;:::o;4322:98::-;4375:7;4402:10;4395:17;;4322:98;:::o;15280:380::-;15433:1;15416:19;;:5;:19;;;15408:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15514:1;15495:21;;:7;:21;;;15487:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15598:6;15568:11;:18;15580:5;15568:18;;;;;;;;;;;;;;;:27;15587:7;15568:27;;;;;;;;;;;;;;;:36;;;;15636:7;15620:32;;15629:5;15620:32;;;15645:6;15620:32;;;;;;:::i;:::-;;;;;;;;15280:380;;;:::o;15951:453::-;16086:24;16113:25;16123:5;16130:7;16113:9;:25::i;:::-;16086:52;;16173:17;16153:16;:37;16149:248;;16235:6;16215:16;:26;;16207:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16319:51;16328:5;16335:7;16363:6;16344:16;:25;16319:8;:51::i;:::-;16149:248;16075:329;15951:453;;;:::o;12159:840::-;12306:1;12290:18;;:4;:18;;;12282:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12383:1;12369:16;;:2;:16;;;12361:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;12438:38;12459:4;12465:2;12469:6;12438:20;:38::i;:::-;12489:19;12511:9;:15;12521:4;12511:15;;;;;;;;;;;;;;;;12489:37;;12560:6;12545:11;:21;;12537:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;12677:6;12663:11;:20;12645:9;:15;12655:4;12645:15;;;;;;;;;;;;;;;:38;;;;12880:6;12863:9;:13;12873:2;12863:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;12930:2;12915:26;;12924:4;12915:26;;;12934:6;12915:26;;;;;;:::i;:::-;;;;;;;;12954:37;12974:4;12980:2;12984:6;12954:19;:37::i;:::-;12271:728;12159:840;;;:::o;45626:238::-;45710:22;45718:4;45724:7;45710;:22::i;:::-;45705:152;;45781:4;45749:6;:12;45756:4;45749:12;;;;;;;;;;;:20;;:29;45770:7;45749:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;45832:12;:10;:12::i;:::-;45805:40;;45823:7;45805:40;;45817:4;45805:40;;;;;;;;;;45705:152;45626:238;;:::o;46044:239::-;46128:22;46136:4;46142:7;46128;:22::i;:::-;46124:152;;;46199:5;46167:6;:12;46174:4;46167:12;;;;;;;;;;;:20;;:29;46188:7;46167:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;46251:12;:10;:12::i;:::-;46224:40;;46242:7;46224:40;;46236:4;46224:40;;;;;;;;;;46124:152;46044:239;;:::o;47688:132::-;47763:12;:10;:12::i;:::-;47752:23;;:7;:5;:7::i;:::-;:23;;;47744:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47688:132::o;48790:191::-;48864:16;48883:6;;;;;;;;;;;48864:25;;48909:8;48900:6;;:17;;;;;;;;;;;;;;;;;;48964:8;48933:40;;48954:8;48933:40;;;;;;;;;;;;48853:128;48790:191;:::o;14167:675::-;14270:1;14251:21;;:7;:21;;;14243:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;14323:49;14344:7;14361:1;14365:6;14323:20;:49::i;:::-;14385:22;14410:9;:18;14420:7;14410:18;;;;;;;;;;;;;;;;14385:43;;14465:6;14447:14;:24;;14439:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14584:6;14567:14;:23;14546:9;:18;14556:7;14546:18;;;;;;;;;;;;;;;:44;;;;14701:6;14685:12;;:22;;;;;;;;;;;14762:1;14736:37;;14745:7;14736:37;;;14766:6;14736:37;;;;;;:::i;:::-;;;;;;;;14786:48;14806:7;14823:1;14827:6;14786:19;:48::i;:::-;14232:610;14167:675;;:::o;51668:336::-;51806:4;51823:19;51845:50;51860:3;51865:6;51873:5;51880:8;51890:4;51845:14;:50::i;:::-;51823:72;;51913:83;49316:23;51933:62;51947:36;51971:11;51947:23;:36::i;:::-;51985:9;51933:13;:62::i;:::-;51913:7;:83::i;:::-;51906:90;;;51668:336;;;;;;;;:::o;41763:492::-;41852:22;41860:4;41866:7;41852;:22::i;:::-;41847:401;;42040:28;42060:7;42040:19;:28::i;:::-;42141:38;42169:4;42161:13;;42176:2;42141:19;:38::i;:::-;41945:257;;;;;;;;;:::i;:::-;;;;;;;;;;;;;41891:345;;;;;;;;;;;:::i;:::-;;;;;;;;41847:401;41763:492;;:::o;17004:125::-;;;;:::o;17733:124::-;;;;:::o;51440:220::-;51562:7;51616:6;51624:3;51629:5;51636:8;51646:4;51599:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51589:63;;;;;;51582:70;;51440:220;;;;;;;:::o;53210:434::-;53306:7;53572:10;53608:12;53547:74;;;;;;;;;:::i;:::-;;;;;;;;;;;;;53519:117;;;;;;53499:137;;53210:434;;;:::o;52012:283::-;52141:7;52167:9;52178;52189:7;52200:26;52215:10;52200:14;:26::i;:::-;52166:60;;;;;;52246:41;52256:21;52279:1;52282;52285;52246:41;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52239:48;;;;;52012:283;;;;:::o;52303:893::-;52409:9;52433;52457:7;52514:2;52500:3;:10;:16;52492:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;52954:2;52949:3;52945:12;52939:19;52934:24;;53024:2;53019:3;53015:12;53009:19;53004:24;;53131:2;53126:3;53122:12;53116:19;53113:1;53108:28;53103:33;;52303:893;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:77::-;1555:7;1584:5;1573:16;;1518:77;;;:::o;1601:122::-;1674:24;1692:5;1674:24;:::i;:::-;1667:5;1664:35;1654:63;;1713:1;1710;1703:12;1654:63;1601:122;:::o;1729:139::-;1775:5;1813:6;1800:20;1791:29;;1829:33;1856:5;1829:33;:::i;:::-;1729:139;;;;:::o;1874:329::-;1933:6;1982:2;1970:9;1961:7;1957:23;1953:32;1950:119;;;1988:79;;:::i;:::-;1950:119;2108:1;2133:53;2178:7;2169:6;2158:9;2154:22;2133:53;:::i;:::-;2123:63;;2079:117;1874:329;;;;:::o;2209:99::-;2261:6;2295:5;2289:12;2279:22;;2209:99;;;:::o;2314:169::-;2398:11;2432:6;2427:3;2420:19;2472:4;2467:3;2463:14;2448:29;;2314:169;;;;:::o;2489:246::-;2570:1;2580:113;2594:6;2591:1;2588:13;2580:113;;;2679:1;2674:3;2670:11;2664:18;2660:1;2655:3;2651:11;2644:39;2616:2;2613:1;2609:10;2604:15;;2580:113;;;2727:1;2718:6;2713:3;2709:16;2702:27;2551:184;2489:246;;;:::o;2741:102::-;2782:6;2833:2;2829:7;2824:2;2817:5;2813:14;2809:28;2799:38;;2741:102;;;:::o;2849:377::-;2937:3;2965:39;2998:5;2965:39;:::i;:::-;3020:71;3084:6;3079:3;3020:71;:::i;:::-;3013:78;;3100:65;3158:6;3153:3;3146:4;3139:5;3135:16;3100:65;:::i;:::-;3190:29;3212:6;3190:29;:::i;:::-;3185:3;3181:39;3174:46;;2941:285;2849:377;;;;:::o;3232:313::-;3345:4;3383:2;3372:9;3368:18;3360:26;;3432:9;3426:4;3422:20;3418:1;3407:9;3403:17;3396:47;3460:78;3533:4;3524:6;3460:78;:::i;:::-;3452:86;;3232:313;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:122::-;3858:24;3876:5;3858:24;:::i;:::-;3851:5;3848:35;3838:63;;3897:1;3894;3887:12;3838:63;3785:122;:::o;3913:139::-;3959:5;3997:6;3984:20;3975:29;;4013:33;4040:5;4013:33;:::i;:::-;3913:139;;;;:::o;4058:474::-;4126:6;4134;4183:2;4171:9;4162:7;4158:23;4154:32;4151:119;;;4189:79;;:::i;:::-;4151:119;4309:1;4334:53;4379:7;4370:6;4359:9;4355:22;4334:53;:::i;:::-;4324:63;;4280:117;4436:2;4462:53;4507:7;4498:6;4487:9;4483:22;4462:53;:::i;:::-;4452:63;;4407:118;4058:474;;;;;:::o;4538:118::-;4625:24;4643:5;4625:24;:::i;:::-;4620:3;4613:37;4538:118;;:::o;4662:222::-;4755:4;4793:2;4782:9;4778:18;4770:26;;4806:71;4874:1;4863:9;4859:17;4850:6;4806:71;:::i;:::-;4662:222;;;;:::o;4890:619::-;4967:6;4975;4983;5032:2;5020:9;5011:7;5007:23;5003:32;5000:119;;;5038:79;;:::i;:::-;5000:119;5158:1;5183:53;5228:7;5219:6;5208:9;5204:22;5183:53;:::i;:::-;5173:63;;5129:117;5285:2;5311:53;5356:7;5347:6;5336:9;5332:22;5311:53;:::i;:::-;5301:63;;5256:118;5413:2;5439:53;5484:7;5475:6;5464:9;5460:22;5439:53;:::i;:::-;5429:63;;5384:118;4890:619;;;;;:::o;5515:77::-;5552:7;5581:5;5570:16;;5515:77;;;:::o;5598:122::-;5671:24;5689:5;5671:24;:::i;:::-;5664:5;5661:35;5651:63;;5710:1;5707;5700:12;5651:63;5598:122;:::o;5726:139::-;5772:5;5810:6;5797:20;5788:29;;5826:33;5853:5;5826:33;:::i;:::-;5726:139;;;;:::o;5871:329::-;5930:6;5979:2;5967:9;5958:7;5954:23;5950:32;5947:119;;;5985:79;;:::i;:::-;5947:119;6105:1;6130:53;6175:7;6166:6;6155:9;6151:22;6130:53;:::i;:::-;6120:63;;6076:117;5871:329;;;;:::o;6206:118::-;6293:24;6311:5;6293:24;:::i;:::-;6288:3;6281:37;6206:118;;:::o;6330:222::-;6423:4;6461:2;6450:9;6446:18;6438:26;;6474:71;6542:1;6531:9;6527:17;6518:6;6474:71;:::i;:::-;6330:222;;;;:::o;6558:474::-;6626:6;6634;6683:2;6671:9;6662:7;6658:23;6654:32;6651:119;;;6689:79;;:::i;:::-;6651:119;6809:1;6834:53;6879:7;6870:6;6859:9;6855:22;6834:53;:::i;:::-;6824:63;;6780:117;6936:2;6962:53;7007:7;6998:6;6987:9;6983:22;6962:53;:::i;:::-;6952:63;;6907:118;6558:474;;;;;:::o;7038:86::-;7073:7;7113:4;7106:5;7102:16;7091:27;;7038:86;;;:::o;7130:112::-;7213:22;7229:5;7213:22;:::i;:::-;7208:3;7201:35;7130:112;;:::o;7248:214::-;7337:4;7375:2;7364:9;7360:18;7352:26;;7388:67;7452:1;7441:9;7437:17;7428:6;7388:67;:::i;:::-;7248:214;;;;:::o;7468:118::-;7555:24;7573:5;7555:24;:::i;:::-;7550:3;7543:37;7468:118;;:::o;7592:222::-;7685:4;7723:2;7712:9;7708:18;7700:26;;7736:71;7804:1;7793:9;7789:17;7780:6;7736:71;:::i;:::-;7592:222;;;;:::o;7820:329::-;7879:6;7928:2;7916:9;7907:7;7903:23;7899:32;7896:119;;;7934:79;;:::i;:::-;7896:119;8054:1;8079:53;8124:7;8115:6;8104:9;8100:22;8079:53;:::i;:::-;8069:63;;8025:117;7820:329;;;;:::o;8155:117::-;8264:1;8261;8254:12;8278:117;8387:1;8384;8377:12;8401:180;8449:77;8446:1;8439:88;8546:4;8543:1;8536:15;8570:4;8567:1;8560:15;8587:281;8670:27;8692:4;8670:27;:::i;:::-;8662:6;8658:40;8800:6;8788:10;8785:22;8764:18;8752:10;8749:34;8746:62;8743:88;;;8811:18;;:::i;:::-;8743:88;8851:10;8847:2;8840:22;8630:238;8587:281;;:::o;8874:129::-;8908:6;8935:20;;:::i;:::-;8925:30;;8964:33;8992:4;8984:6;8964:33;:::i;:::-;8874:129;;;:::o;9009:307::-;9070:4;9160:18;9152:6;9149:30;9146:56;;;9182:18;;:::i;:::-;9146:56;9220:29;9242:6;9220:29;:::i;:::-;9212:37;;9304:4;9298;9294:15;9286:23;;9009:307;;;:::o;9322:146::-;9419:6;9414:3;9409;9396:30;9460:1;9451:6;9446:3;9442:16;9435:27;9322:146;;;:::o;9474:423::-;9551:5;9576:65;9592:48;9633:6;9592:48;:::i;:::-;9576:65;:::i;:::-;9567:74;;9664:6;9657:5;9650:21;9702:4;9695:5;9691:16;9740:3;9731:6;9726:3;9722:16;9719:25;9716:112;;;9747:79;;:::i;:::-;9716:112;9837:54;9884:6;9879:3;9874;9837:54;:::i;:::-;9557:340;9474:423;;;;;:::o;9916:338::-;9971:5;10020:3;10013:4;10005:6;10001:17;9997:27;9987:122;;10028:79;;:::i;:::-;9987:122;10145:6;10132:20;10170:78;10244:3;10236:6;10229:4;10221:6;10217:17;10170:78;:::i;:::-;10161:87;;9977:277;9916:338;;;;:::o;10260:943::-;10355:6;10363;10371;10379;10428:3;10416:9;10407:7;10403:23;10399:33;10396:120;;;10435:79;;:::i;:::-;10396:120;10555:1;10580:53;10625:7;10616:6;10605:9;10601:22;10580:53;:::i;:::-;10570:63;;10526:117;10682:2;10708:53;10753:7;10744:6;10733:9;10729:22;10708:53;:::i;:::-;10698:63;;10653:118;10810:2;10836:53;10881:7;10872:6;10861:9;10857:22;10836:53;:::i;:::-;10826:63;;10781:118;10966:2;10955:9;10951:18;10938:32;10997:18;10989:6;10986:30;10983:117;;;11019:79;;:::i;:::-;10983:117;11124:62;11178:7;11169:6;11158:9;11154:22;11124:62;:::i;:::-;11114:72;;10909:287;10260:943;;;;;;;:::o;11209:474::-;11277:6;11285;11334:2;11322:9;11313:7;11309:23;11305:32;11302:119;;;11340:79;;:::i;:::-;11302:119;11460:1;11485:53;11530:7;11521:6;11510:9;11506:22;11485:53;:::i;:::-;11475:63;;11431:117;11587:2;11613:53;11658:7;11649:6;11638:9;11634:22;11613:53;:::i;:::-;11603:63;;11558:118;11209:474;;;;;:::o;11689:180::-;11737:77;11734:1;11727:88;11834:4;11831:1;11824:15;11858:4;11855:1;11848:15;11875:320;11919:6;11956:1;11950:4;11946:12;11936:22;;12003:1;11997:4;11993:12;12024:18;12014:81;;12080:4;12072:6;12068:17;12058:27;;12014:81;12142:2;12134:6;12131:14;12111:18;12108:38;12105:84;;12161:18;;:::i;:::-;12105:84;11926:269;11875:320;;;:::o;12201:234::-;12341:34;12337:1;12329:6;12325:14;12318:58;12410:17;12405:2;12397:6;12393:15;12386:42;12201:234;:::o;12441:366::-;12583:3;12604:67;12668:2;12663:3;12604:67;:::i;:::-;12597:74;;12680:93;12769:3;12680:93;:::i;:::-;12798:2;12793:3;12789:12;12782:19;;12441:366;;;:::o;12813:419::-;12979:4;13017:2;13006:9;13002:18;12994:26;;13066:9;13060:4;13056:20;13052:1;13041:9;13037:17;13030:47;13094:131;13220:4;13094:131;:::i;:::-;13086:139;;12813:419;;;:::o;13238:180::-;13286:77;13283:1;13276:88;13383:4;13380:1;13373:15;13407:4;13404:1;13397:15;13424:191;13464:3;13483:20;13501:1;13483:20;:::i;:::-;13478:25;;13517:20;13535:1;13517:20;:::i;:::-;13512:25;;13560:1;13557;13553:9;13546:16;;13581:3;13578:1;13575:10;13572:36;;;13588:18;;:::i;:::-;13572:36;13424:191;;;;:::o;13621:410::-;13661:7;13684:20;13702:1;13684:20;:::i;:::-;13679:25;;13718:20;13736:1;13718:20;:::i;:::-;13713:25;;13773:1;13770;13766:9;13795:30;13813:11;13795:30;:::i;:::-;13784:41;;13974:1;13965:7;13961:15;13958:1;13955:22;13935:1;13928:9;13908:83;13885:139;;14004:18;;:::i;:::-;13885:139;13669:362;13621:410;;;;:::o;14037:168::-;14177:20;14173:1;14165:6;14161:14;14154:44;14037:168;:::o;14211:366::-;14353:3;14374:67;14438:2;14433:3;14374:67;:::i;:::-;14367:74;;14450:93;14539:3;14450:93;:::i;:::-;14568:2;14563:3;14559:12;14552:19;;14211:366;;;:::o;14583:419::-;14749:4;14787:2;14776:9;14772:18;14764:26;;14836:9;14830:4;14826:20;14822:1;14811:9;14807:17;14800:47;14864:131;14990:4;14864:131;:::i;:::-;14856:139;;14583:419;;;:::o;15008:194::-;15048:4;15068:20;15086:1;15068:20;:::i;:::-;15063:25;;15102:20;15120:1;15102:20;:::i;:::-;15097:25;;15146:1;15143;15139:9;15131:17;;15170:1;15164:4;15161:11;15158:37;;;15175:18;;:::i;:::-;15158:37;15008:194;;;;:::o;15208:167::-;15348:19;15344:1;15336:6;15332:14;15325:43;15208:167;:::o;15381:366::-;15523:3;15544:67;15608:2;15603:3;15544:67;:::i;:::-;15537:74;;15620:93;15709:3;15620:93;:::i;:::-;15738:2;15733:3;15729:12;15722:19;;15381:366;;;:::o;15753:419::-;15919:4;15957:2;15946:9;15942:18;15934:26;;16006:9;16000:4;15996:20;15992:1;15981:9;15977:17;15970:47;16034:131;16160:4;16034:131;:::i;:::-;16026:139;;15753:419;;;:::o;16178:167::-;16318:19;16314:1;16306:6;16302:14;16295:43;16178:167;:::o;16351:366::-;16493:3;16514:67;16578:2;16573:3;16514:67;:::i;:::-;16507:74;;16590:93;16679:3;16590:93;:::i;:::-;16708:2;16703:3;16699:12;16692:19;;16351:366;;;:::o;16723:419::-;16889:4;16927:2;16916:9;16912:18;16904:26;;16976:9;16970:4;16966:20;16962:1;16951:9;16947:17;16940:47;17004:131;17130:4;17004:131;:::i;:::-;16996:139;;16723:419;;;:::o;17148:171::-;17288:23;17284:1;17276:6;17272:14;17265:47;17148:171;:::o;17325:366::-;17467:3;17488:67;17552:2;17547:3;17488:67;:::i;:::-;17481:74;;17564:93;17653:3;17564:93;:::i;:::-;17682:2;17677:3;17673:12;17666:19;;17325:366;;;:::o;17697:419::-;17863:4;17901:2;17890:9;17886:18;17878:26;;17950:9;17944:4;17940:20;17936:1;17925:9;17921:17;17914:47;17978:131;18104:4;17978:131;:::i;:::-;17970:139;;17697:419;;;:::o;18122:224::-;18262:34;18258:1;18250:6;18246:14;18239:58;18331:7;18326:2;18318:6;18314:15;18307:32;18122:224;:::o;18352:366::-;18494:3;18515:67;18579:2;18574:3;18515:67;:::i;:::-;18508:74;;18591:93;18680:3;18591:93;:::i;:::-;18709:2;18704:3;18700:12;18693:19;;18352:366;;;:::o;18724:419::-;18890:4;18928:2;18917:9;18913:18;18905:26;;18977:9;18971:4;18967:20;18963:1;18952:9;18948:17;18941:47;19005:131;19131:4;19005:131;:::i;:::-;18997:139;;18724:419;;;:::o;19149:168::-;19289:20;19285:1;19277:6;19273:14;19266:44;19149:168;:::o;19323:366::-;19465:3;19486:67;19550:2;19545:3;19486:67;:::i;:::-;19479:74;;19562:93;19651:3;19562:93;:::i;:::-;19680:2;19675:3;19671:12;19664:19;;19323:366;;;:::o;19695:419::-;19861:4;19899:2;19888:9;19884:18;19876:26;;19948:9;19942:4;19938:20;19934:1;19923:9;19919:17;19912:47;19976:131;20102:4;19976:131;:::i;:::-;19968:139;;19695:419;;;:::o;20120:180::-;20168:77;20165:1;20158:88;20265:4;20262:1;20255:15;20289:4;20286:1;20279:15;20306:185;20346:1;20363:20;20381:1;20363:20;:::i;:::-;20358:25;;20397:20;20415:1;20397:20;:::i;:::-;20392:25;;20436:1;20426:35;;20441:18;;:::i;:::-;20426:35;20483:1;20480;20476:9;20471:14;;20306:185;;;;:::o;20497:161::-;20637:13;20633:1;20625:6;20621:14;20614:37;20497:161;:::o;20664:366::-;20806:3;20827:67;20891:2;20886:3;20827:67;:::i;:::-;20820:74;;20903:93;20992:3;20903:93;:::i;:::-;21021:2;21016:3;21012:12;21005:19;;20664:366;;;:::o;21036:419::-;21202:4;21240:2;21229:9;21225:18;21217:26;;21289:9;21283:4;21279:20;21275:1;21264:9;21260:17;21253:47;21317:131;21443:4;21317:131;:::i;:::-;21309:139;;21036:419;;;:::o;21461:225::-;21601:34;21597:1;21589:6;21585:14;21578:58;21670:8;21665:2;21657:6;21653:15;21646:33;21461:225;:::o;21692:366::-;21834:3;21855:67;21919:2;21914:3;21855:67;:::i;:::-;21848:74;;21931:93;22020:3;21931:93;:::i;:::-;22049:2;22044:3;22040:12;22033:19;;21692:366;;;:::o;22064:419::-;22230:4;22268:2;22257:9;22253:18;22245:26;;22317:9;22311:4;22307:20;22303:1;22292:9;22288:17;22281:47;22345:131;22471:4;22345:131;:::i;:::-;22337:139;;22064:419;;;:::o;22489:180::-;22537:77;22534:1;22527:88;22634:4;22631:1;22624:15;22658:4;22655:1;22648:15;22675:171;22714:3;22737:24;22755:5;22737:24;:::i;:::-;22728:33;;22783:4;22776:5;22773:15;22770:41;;22791:18;;:::i;:::-;22770:41;22838:1;22831:5;22827:13;22820:20;;22675:171;;;:::o;22852:182::-;22992:34;22988:1;22980:6;22976:14;22969:58;22852:182;:::o;23040:366::-;23182:3;23203:67;23267:2;23262:3;23203:67;:::i;:::-;23196:74;;23279:93;23368:3;23279:93;:::i;:::-;23397:2;23392:3;23388:12;23381:19;;23040:366;;;:::o;23412:419::-;23578:4;23616:2;23605:9;23601:18;23593:26;;23665:9;23659:4;23655:20;23651:1;23640:9;23636:17;23629:47;23693:131;23819:4;23693:131;:::i;:::-;23685:139;;23412:419;;;:::o;23837:223::-;23977:34;23973:1;23965:6;23961:14;23954:58;24046:6;24041:2;24033:6;24029:15;24022:31;23837:223;:::o;24066:366::-;24208:3;24229:67;24293:2;24288:3;24229:67;:::i;:::-;24222:74;;24305:93;24394:3;24305:93;:::i;:::-;24423:2;24418:3;24414:12;24407:19;;24066:366;;;:::o;24438:419::-;24604:4;24642:2;24631:9;24627:18;24619:26;;24691:9;24685:4;24681:20;24677:1;24666:9;24662:17;24655:47;24719:131;24845:4;24719:131;:::i;:::-;24711:139;;24438:419;;;:::o;24863:221::-;25003:34;24999:1;24991:6;24987:14;24980:58;25072:4;25067:2;25059:6;25055:15;25048:29;24863:221;:::o;25090:366::-;25232:3;25253:67;25317:2;25312:3;25253:67;:::i;:::-;25246:74;;25329:93;25418:3;25329:93;:::i;:::-;25447:2;25442:3;25438:12;25431:19;;25090:366;;;:::o;25462:419::-;25628:4;25666:2;25655:9;25651:18;25643:26;;25715:9;25709:4;25705:20;25701:1;25690:9;25686:17;25679:47;25743:131;25869:4;25743:131;:::i;:::-;25735:139;;25462:419;;;:::o;25887:179::-;26027:31;26023:1;26015:6;26011:14;26004:55;25887:179;:::o;26072:366::-;26214:3;26235:67;26299:2;26294:3;26235:67;:::i;:::-;26228:74;;26311:93;26400:3;26311:93;:::i;:::-;26429:2;26424:3;26420:12;26413:19;;26072:366;;;:::o;26444:419::-;26610:4;26648:2;26637:9;26633:18;26625:26;;26697:9;26691:4;26687:20;26683:1;26672:9;26668:17;26661:47;26725:131;26851:4;26725:131;:::i;:::-;26717:139;;26444:419;;;:::o;26869:224::-;27009:34;27005:1;26997:6;26993:14;26986:58;27078:7;27073:2;27065:6;27061:15;27054:32;26869:224;:::o;27099:366::-;27241:3;27262:67;27326:2;27321:3;27262:67;:::i;:::-;27255:74;;27338:93;27427:3;27338:93;:::i;:::-;27456:2;27451:3;27447:12;27440:19;;27099:366;;;:::o;27471:419::-;27637:4;27675:2;27664:9;27660:18;27652:26;;27724:9;27718:4;27714:20;27710:1;27699:9;27695:17;27688:47;27752:131;27878:4;27752:131;:::i;:::-;27744:139;;27471:419;;;:::o;27896:222::-;28036:34;28032:1;28024:6;28020:14;28013:58;28105:5;28100:2;28092:6;28088:15;28081:30;27896:222;:::o;28124:366::-;28266:3;28287:67;28351:2;28346:3;28287:67;:::i;:::-;28280:74;;28363:93;28452:3;28363:93;:::i;:::-;28481:2;28476:3;28472:12;28465:19;;28124:366;;;:::o;28496:419::-;28662:4;28700:2;28689:9;28685:18;28677:26;;28749:9;28743:4;28739:20;28735:1;28724:9;28720:17;28713:47;28777:131;28903:4;28777:131;:::i;:::-;28769:139;;28496:419;;;:::o;28921:225::-;29061:34;29057:1;29049:6;29045:14;29038:58;29130:8;29125:2;29117:6;29113:15;29106:33;28921:225;:::o;29152:366::-;29294:3;29315:67;29379:2;29374:3;29315:67;:::i;:::-;29308:74;;29391:93;29480:3;29391:93;:::i;:::-;29509:2;29504:3;29500:12;29493:19;;29152:366;;;:::o;29524:419::-;29690:4;29728:2;29717:9;29713:18;29705:26;;29777:9;29771:4;29767:20;29763:1;29752:9;29748:17;29741:47;29805:131;29931:4;29805:131;:::i;:::-;29797:139;;29524:419;;;:::o;29949:182::-;30089:34;30085:1;30077:6;30073:14;30066:58;29949:182;:::o;30137:366::-;30279:3;30300:67;30364:2;30359:3;30300:67;:::i;:::-;30293:74;;30376:93;30465:3;30376:93;:::i;:::-;30494:2;30489:3;30485:12;30478:19;;30137:366;;;:::o;30509:419::-;30675:4;30713:2;30702:9;30698:18;30690:26;;30762:9;30756:4;30752:20;30748:1;30737:9;30733:17;30726:47;30790:131;30916:4;30790:131;:::i;:::-;30782:139;;30509:419;;;:::o;30934:220::-;31074:34;31070:1;31062:6;31058:14;31051:58;31143:3;31138:2;31130:6;31126:15;31119:28;30934:220;:::o;31160:366::-;31302:3;31323:67;31387:2;31382:3;31323:67;:::i;:::-;31316:74;;31399:93;31488:3;31399:93;:::i;:::-;31517:2;31512:3;31508:12;31501:19;;31160:366;;;:::o;31532:419::-;31698:4;31736:2;31725:9;31721:18;31713:26;;31785:9;31779:4;31775:20;31771:1;31760:9;31756:17;31749:47;31813:131;31939:4;31813:131;:::i;:::-;31805:139;;31532:419;;;:::o;31957:221::-;32097:34;32093:1;32085:6;32081:14;32074:58;32166:4;32161:2;32153:6;32149:15;32142:29;31957:221;:::o;32184:366::-;32326:3;32347:67;32411:2;32406:3;32347:67;:::i;:::-;32340:74;;32423:93;32512:3;32423:93;:::i;:::-;32541:2;32536:3;32532:12;32525:19;;32184:366;;;:::o;32556:419::-;32722:4;32760:2;32749:9;32745:18;32737:26;;32809:9;32803:4;32799:20;32795:1;32784:9;32780:17;32773:47;32837:131;32963:4;32837:131;:::i;:::-;32829:139;;32556:419;;;:::o;32981:148::-;33083:11;33120:3;33105:18;;32981:148;;;;:::o;33135:173::-;33275:25;33271:1;33263:6;33259:14;33252:49;33135:173;:::o;33314:402::-;33474:3;33495:85;33577:2;33572:3;33495:85;:::i;:::-;33488:92;;33589:93;33678:3;33589:93;:::i;:::-;33707:2;33702:3;33698:12;33691:19;;33314:402;;;:::o;33722:390::-;33828:3;33856:39;33889:5;33856:39;:::i;:::-;33911:89;33993:6;33988:3;33911:89;:::i;:::-;33904:96;;34009:65;34067:6;34062:3;34055:4;34048:5;34044:16;34009:65;:::i;:::-;34099:6;34094:3;34090:16;34083:23;;33832:280;33722:390;;;;:::o;34118:167::-;34258:19;34254:1;34246:6;34242:14;34235:43;34118:167;:::o;34291:402::-;34451:3;34472:85;34554:2;34549:3;34472:85;:::i;:::-;34465:92;;34566:93;34655:3;34566:93;:::i;:::-;34684:2;34679:3;34675:12;34668:19;;34291:402;;;:::o;34699:967::-;35081:3;35103:148;35247:3;35103:148;:::i;:::-;35096:155;;35268:95;35359:3;35350:6;35268:95;:::i;:::-;35261:102;;35380:148;35524:3;35380:148;:::i;:::-;35373:155;;35545:95;35636:3;35627:6;35545:95;:::i;:::-;35538:102;;35657:3;35650:10;;34699:967;;;;;:::o;35672:79::-;35711:7;35740:5;35729:16;;35672:79;;;:::o;35757:157::-;35862:45;35882:24;35900:5;35882:24;:::i;:::-;35862:45;:::i;:::-;35857:3;35850:58;35757:157;;:::o;35920:94::-;35953:8;36001:5;35997:2;35993:14;35972:35;;35920:94;;;:::o;36020:::-;36059:7;36088:20;36102:5;36088:20;:::i;:::-;36077:31;;36020:94;;;:::o;36120:100::-;36159:7;36188:26;36208:5;36188:26;:::i;:::-;36177:37;;36120:100;;;:::o;36226:157::-;36331:45;36351:24;36369:5;36351:24;:::i;:::-;36331:45;:::i;:::-;36326:3;36319:58;36226:157;;:::o;36389:820::-;36613:3;36628:75;36699:3;36690:6;36628:75;:::i;:::-;36728:2;36723:3;36719:12;36712:19;;36741:75;36812:3;36803:6;36741:75;:::i;:::-;36841:2;36836:3;36832:12;36825:19;;36854:75;36925:3;36916:6;36854:75;:::i;:::-;36954:2;36949:3;36945:12;36938:19;;36967:75;37038:3;37029:6;36967:75;:::i;:::-;37067:2;37062:3;37058:12;37051:19;;37080:75;37151:3;37142:6;37080:75;:::i;:::-;37180:2;37175:3;37171:12;37164:19;;37200:3;37193:10;;36389:820;;;;;;;;:::o;37215:214::-;37355:66;37351:1;37343:6;37339:14;37332:90;37215:214;:::o;37435:400::-;37595:3;37616:84;37698:1;37693:3;37616:84;:::i;:::-;37609:91;;37709:93;37798:3;37709:93;:::i;:::-;37827:1;37822:3;37818:11;37811:18;;37435:400;;;:::o;37841:141::-;37890:4;37913:3;37905:11;;37936:3;37933:1;37926:14;37970:4;37967:1;37957:18;37949:26;;37841:141;;;:::o;38012:874::-;38115:3;38152:5;38146:12;38181:36;38207:9;38181:36;:::i;:::-;38233:89;38315:6;38310:3;38233:89;:::i;:::-;38226:96;;38353:1;38342:9;38338:17;38369:1;38364:166;;;;38544:1;38539:341;;;;38331:549;;38364:166;38448:4;38444:9;38433;38429:25;38424:3;38417:38;38510:6;38503:14;38496:22;38488:6;38484:35;38479:3;38475:45;38468:52;;38364:166;;38539:341;38606:38;38638:5;38606:38;:::i;:::-;38666:1;38680:154;38694:6;38691:1;38688:13;38680:154;;;38768:7;38762:14;38758:1;38753:3;38749:11;38742:35;38818:1;38809:7;38805:15;38794:26;;38716:4;38713:1;38709:12;38704:17;;38680:154;;;38863:6;38858:3;38854:16;38847:23;;38546:334;;38331:549;;38119:767;;38012:874;;;;:::o;38892:214::-;39032:66;39028:1;39020:6;39016:14;39009:90;38892:214;:::o;39112:402::-;39272:3;39293:85;39375:2;39370:3;39293:85;:::i;:::-;39286:92;;39387:93;39476:3;39387:93;:::i;:::-;39505:2;39500:3;39496:12;39489:19;;39112:402;;;:::o;39520:79::-;39559:7;39588:5;39577:16;;39520:79;;;:::o;39605:157::-;39710:45;39730:24;39748:5;39730:24;:::i;:::-;39710:45;:::i;:::-;39705:3;39698:58;39605:157;;:::o;39768:942::-;40127:3;40149:148;40293:3;40149:148;:::i;:::-;40142:155;;40314:92;40402:3;40393:6;40314:92;:::i;:::-;40307:99;;40423:148;40567:3;40423:148;:::i;:::-;40416:155;;40581:75;40652:3;40643:6;40581:75;:::i;:::-;40681:2;40676:3;40672:12;40665:19;;40701:3;40694:10;;39768:942;;;;;:::o;40716:545::-;40889:4;40927:3;40916:9;40912:19;40904:27;;40941:71;41009:1;40998:9;40994:17;40985:6;40941:71;:::i;:::-;41022:68;41086:2;41075:9;41071:18;41062:6;41022:68;:::i;:::-;41100:72;41168:2;41157:9;41153:18;41144:6;41100:72;:::i;:::-;41182;41250:2;41239:9;41235:18;41226:6;41182:72;:::i;:::-;40716:545;;;;;;;:::o;41267:174::-;41407:26;41403:1;41395:6;41391:14;41384:50;41267:174;:::o;41447:366::-;41589:3;41610:67;41674:2;41669:3;41610:67;:::i;:::-;41603:74;;41686:93;41775:3;41686:93;:::i;:::-;41804:2;41799:3;41795:12;41788:19;;41447:366;;;:::o;41819:419::-;41985:4;42023:2;42012:9;42008:18;42000:26;;42072:9;42066:4;42062:20;42058:1;42047:9;42043:17;42036:47;42100:131;42226:4;42100:131;:::i;:::-;42092:139;;41819:419;;;:::o

Swarm Source

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