ETH Price: $3,416.38 (-0.65%)
Gas: 2 Gwei

Token

OWNYUSD (USD)
 

Overview

Max Total Supply

102.81 USD

Holders

8

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 6 Decimals)

Filtered by Token Holder
Michael Egorov 2
Balance
5 USD

Value
$0.00
0x425d16B0e08a28A3Ff9e4404AE99D78C0a076C5A
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:
OWNYUSD

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-10-23
*/

// SPDX-License-Identifier: GPL
// 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/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/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: @openzeppelin/contracts/security/Pausable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

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


// 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/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `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;
        }
        _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;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

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

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

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

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

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

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

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

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

    /**
     * @dev 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/token/ERC20/extensions/ERC20Burnable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;



/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}

// File: contracts/OWNYUSD.sol


pragma solidity ^0.8.4;








/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    function getIdentityStatus(address addr) external view returns (bool);
    function getAmlStatus (address addr) external view returns (bool);
}

contract OWNYUSD is ERC20, ERC20Burnable, Pausable, Ownable {
    address[] public kycContracts;

    uint8 _decimals = 6;

    mapping(address => uint256) mintRequests;
    mapping(address => uint256) _withdrawHold;

    mapping(address => bool) _freezed;
    event Freezed(address indexed _account);
    event unFreezed (address indexed _account);

    constructor() ERC20("OWNYUSD", "USD") {
    }

    function decimals() override public view returns (uint8){
        return _decimals;
    }

    function pause() public onlyOwner {
        _pause();
    }

    function unpause() public onlyOwner {
        _unpause();
    }

    function mint(address to, uint256 amount) public onlyOwner {
        require(checkEligibility(to), "Destination address needs additional verification");
        _mint(to, amount);
    }

    function addKycContract(address addr) external onlyOwner {
        kycContracts.push(addr);
    }

    function removeKycContract(uint256 contractIndex) external onlyOwner {
        require(contractIndex < kycContracts.length, "Invalid contract index");
        kycContracts[contractIndex] = kycContracts[kycContracts.length -1];
        kycContracts.pop();
    }

    function getKycContracts() public virtual view returns (address[] memory) {
        return kycContracts;
    } 

    function requestWithdraw(uint256 amount) external {
        require(amount>0, "You need to withdraw at least some tokens");
        uint256 tokenBalance = balanceOf(msg.sender);
        require(amount <= tokenBalance, "Withdraw amount cannot exceed balance");
        uint256 existingHold = _withdrawHold[msg.sender];
        transfer(address(this), amount);
        _withdrawHold[msg.sender] = existingHold + amount;
    }

    function confirmLumpWithdraw(uint256 amount) external onlyOwner {
        require(amount > 0, "Burn amount has to be greater than 0");
        _burn(address(this), amount);
    }

    function confirmUserWithdraw(address addr, uint256 amount) external onlyOwner {
        require(amount > 0, 'Withdraw amount has to be greater than 0');
        uint256 holdAmount = _withdrawHold[addr];
        require(amount <= holdAmount, "Withdraw amount cannot exceed hold amount");
        _burn(address(this), amount);
        _withdrawHold[addr] = holdAmount - amount;
    }

    function cancelUserWithdraw(address addr, uint256 amount) public onlyOwner {
        transferFrom(address(this), addr, amount);
    }

    function getWithdrawHold(address addr) public view returns (uint256){
        return _withdrawHold[addr];
    } 

    function checkEligibility(address to) public view returns (bool isEligible){
        require(to != address(0), 'Cannot be zero address');
        for (uint i = 0; i < kycContracts.length; i++){
            IERC721 nft = IERC721(kycContracts[i]);
            uint nftBalance = nft.balanceOf(to);
            if (nftBalance > 0) {
                bool identity = nft.getIdentityStatus(to);
                bool aml = nft.getAmlStatus(to);
                if (identity && aml){
                    isEligible = true;
                    break;
                }
            }

        }
        return isEligible;
    }

    function freeze (address _account) external onlyOwner {
        require(_account != address(0), "invalid address");
        _freezed[_account] = true;
        emit Freezed(_account);
    }

    function unFreeze (address _account) external onlyOwner {
        require(_account != address(0), "invalid address");
        _freezed[_account] = false;
        emit unFreezed(_account);
    }

    function isFreezed(address _account) public view returns (bool){
        return _freezed[_account];
    }

    function _beforeTokenTransfer(address from, address to, uint256 amount)
        internal
        whenNotPaused
        override
    {
        super._beforeTokenTransfer(from, to, amount);

        require(!isFreezed(from), "ERC20WithSafeTransfer: account not authorized for this transaction");
        // require(!isFreezed(to), "ERC20WithSafeTransfer: invalid recipient");

    }

    function withdrawContract() public onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }

    function withdrawTokensContract(IERC20 token) public onlyOwner {
        uint256 balance = token.balanceOf(address(this));
        token.transfer(msg.sender, balance);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_account","type":"address"}],"name":"Freezed","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_account","type":"address"}],"name":"unFreezed","type":"event"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"addKycContract","outputs":[],"stateMutability":"nonpayable","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"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"cancelUserWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"checkEligibility","outputs":[{"internalType":"bool","name":"isEligible","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"confirmLumpWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"confirmUserWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"freeze","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getKycContracts","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"getWithdrawHold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address","name":"_account","type":"address"}],"name":"isFreezed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"kycContracts","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"contractIndex","type":"uint256"}],"name":"removeKycContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"requestWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"unFreeze","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"withdrawTokensContract","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526006600760006101000a81548160ff021916908360ff1602179055503480156200002d57600080fd5b506040518060400160405280600781526020017f4f574e59555344000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f55534400000000000000000000000000000000000000000000000000000000008152508160039080519060200190620000b2929190620001dd565b508060049080519060200190620000cb929190620001dd565b5050506000600560006101000a81548160ff02191690831515021790555062000109620000fd6200010f60201b60201c565b6200011760201b60201c565b620002f2565b600033905090565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001eb906200028d565b90600052602060002090601f0160209004810192826200020f57600085556200025b565b82601f106200022a57805160ff19168380011785556200025b565b828001600101855582156200025b579182015b828111156200025a5782518255916020019190600101906200023d565b5b5090506200026a91906200026e565b5090565b5b80821115620002895760008160009055506001016200026f565b5090565b60006002820490506001821680620002a657607f821691505b60208210811415620002bd57620002bc620002c3565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6136c180620003026000396000f3fe608060405234801561001057600080fd5b50600436106102115760003560e01c8063745400c9116101255780639da9df3e116100ad578063bb40f5d71161007c578063bb40f5d7146105ec578063c126840114610608578063c166800614610624578063dd62ed3e14610640578063f2fde38b1461067057610211565b80639da9df3e14610552578063a457c2d71461055c578063a9059cbb1461058c578063b79351c0146105bc57610211565b806383cfab42116100f457806383cfab42146104d45780638456cb59146104f05780638d1fdf2f146104fa5780638da5cb5b1461051657806395d89b411461053457610211565b8063745400c91461043c5780637723bafb1461045857806379cc6790146104885780638111f24e146104a457610211565b806340c10f19116101a85780635c975abb116101775780635c975abb146103ac5780635ea6e6e2146103ca5780636234b7e9146103e657806370a0823114610402578063715018a61461043257610211565b806340c10f191461033a57806342966c6814610356578063460403961461037257806347d70e751461038e57610211565b806327466bc9116101e457806327466bc9146102b2578063313ce567146102e257806339509351146103005780633f4ba83a1461033057610211565b806306fdde0314610216578063095ea7b31461023457806318160ddd1461026457806323b872dd14610282575b600080fd5b61021e61068c565b60405161022b9190612a16565b60405180910390f35b61024e60048036038101906102499190612473565b61071e565b60405161025b91906129fb565b60405180910390f35b61026c610741565b6040516102799190612d38565b60405180910390f35b61029c60048036038101906102979190612424565b61074b565b6040516102a991906129fb565b60405180910390f35b6102cc60048036038101906102c791906123bf565b61077a565b6040516102d99190612d38565b60405180910390f35b6102ea6107c3565b6040516102f79190612d53565b60405180910390f35b61031a60048036038101906103159190612473565b6107da565b60405161032791906129fb565b60405180910390f35b610338610811565b005b610354600480360381019061034f9190612473565b610823565b005b610370600480360381019061036b9190612501565b610881565b005b61038c60048036038101906103879190612501565b610895565b005b6103966108ed565b6040516103a391906129d9565b60405180910390f35b6103b461097b565b6040516103c191906129fb565b60405180910390f35b6103e460048036038101906103df91906123bf565b610992565b005b61040060048036038101906103fb9190612501565b610a00565b005b61041c600480360381019061041791906123bf565b610bb7565b6040516104299190612d38565b60405180910390f35b61043a610bff565b005b61045660048036038101906104519190612501565b610c13565b005b610472600480360381019061046d91906123bf565b610d49565b60405161047f91906129fb565b60405180910390f35b6104a2600480360381019061049d9190612473565b61101d565b005b6104be60048036038101906104b991906123bf565b61103d565b6040516104cb91906129fb565b60405180910390f35b6104ee60048036038101906104e991906123bf565b611093565b005b6104f86111a9565b005b610514600480360381019061050f91906123bf565b6111bb565b005b61051e6112d1565b60405161052b9190612995565b60405180910390f35b61053c6112fb565b6040516105499190612a16565b60405180910390f35b61055a61138d565b005b61057660048036038101906105719190612473565b6113e4565b60405161058391906129fb565b60405180910390f35b6105a660048036038101906105a19190612473565b61145b565b6040516105b391906129fb565b60405180910390f35b6105d660048036038101906105d19190612501565b61147e565b6040516105e39190612995565b60405180910390f35b610606600480360381019061060191906124d8565b6114bd565b005b610622600480360381019061061d9190612473565b6115e4565b005b61063e60048036038101906106399190612473565b6115fc565b005b61065a600480360381019061065591906123e8565b61172c565b6040516106679190612d38565b60405180910390f35b61068a600480360381019061068591906123bf565b6117b3565b005b60606003805461069b90612ee7565b80601f01602080910402602001604051908101604052809291908181526020018280546106c790612ee7565b80156107145780601f106106e957610100808354040283529160200191610714565b820191906000526020600020905b8154815290600101906020018083116106f757829003601f168201915b5050505050905090565b600080610729611837565b905061073681858561183f565b600191505092915050565b6000600254905090565b600080610756611837565b9050610763858285611a0a565b61076e858585611a96565b60019150509392505050565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600760009054906101000a900460ff16905090565b6000806107e5611837565b90506108068185856107f7858961172c565b6108019190612dc3565b61183f565b600191505092915050565b610819611d17565b610821611d95565b565b61082b611d17565b61083482610d49565b610873576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086a90612c38565b60405180910390fd5b61087d8282611df8565b5050565b61089261088c611837565b82611f58565b50565b61089d611d17565b600081116108e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d790612b58565b60405180910390fd5b6108ea3082611f58565b50565b6060600680548060200260200160405190810160405280929190818152602001828054801561097157602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019060010190808311610927575b5050505050905090565b6000600560009054906101000a900460ff16905090565b61099a611d17565b6006819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610a08611d17565b6006805490508110610a4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4690612a78565b60405180910390fd5b60066001600680549050610a639190612e19565b81548110610a9a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660068281548110610aff577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506006805480610b7f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055905550565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c07611d17565b610c11600061212f565b565b60008111610c56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4d90612cf8565b60405180910390fd5b6000610c6133610bb7565b905080821115610ca6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9d90612c18565b60405180910390fd5b6000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050610cf4308461145b565b508281610d019190612dc3565b600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610dba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db190612bb8565b60405180910390fd5b60005b60068054905081101561101757600060068281548110610e06577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231866040518263ffffffff1660e01b8152600401610e6e9190612995565b60206040518083038186803b158015610e8657600080fd5b505afa158015610e9a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ebe919061252a565b905060008111156110025760008273ffffffffffffffffffffffffffffffffffffffff166327b4c627876040518263ffffffff1660e01b8152600401610f049190612995565b60206040518083038186803b158015610f1c57600080fd5b505afa158015610f30573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f5491906124af565b905060008373ffffffffffffffffffffffffffffffffffffffff16638d5f2fbe886040518263ffffffff1660e01b8152600401610f919190612995565b60206040518083038186803b158015610fa957600080fd5b505afa158015610fbd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fe191906124af565b9050818015610fed5750805b15610fff576001955050505050611017565b50505b5050808061100f90612f19565b915050610dbd565b50919050565b61102f82611029611837565b83611a0a565b6110398282611f58565b5050565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b61109b611d17565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561110b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110290612bd8565b60405180910390fd5b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f883e2eef767b8b7082345624bb0c5589d0f6ca3e5e3c6c489d89c333b733c04a60405160405180910390a250565b6111b1611d17565b6111b96121f5565b565b6111c3611d17565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611233576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122a90612bd8565b60405180910390fd5b6001600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f0de8364a528e5ca2869160b20c375fe85b4e98d24a9cb48b4dc49c5f76d05b2460405160405180910390a250565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461130a90612ee7565b80601f016020809104026020016040519081016040528092919081815260200182805461133690612ee7565b80156113835780601f1061135857610100808354040283529160200191611383565b820191906000526020600020905b81548152906001019060200180831161136657829003601f168201915b5050505050905090565b611395611d17565b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156113e0573d6000803e3d6000fd5b5050565b6000806113ef611837565b905060006113fd828661172c565b905083811015611442576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143990612cd8565b60405180910390fd5b61144f828686840361183f565b60019250505092915050565b600080611466611837565b9050611473818585611a96565b600191505092915050565b6006818154811061148e57600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6114c5611d17565b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016115009190612995565b60206040518083038186803b15801561151857600080fd5b505afa15801561152c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611550919061252a565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b815260040161158d9291906129b0565b602060405180830381600087803b1580156115a757600080fd5b505af11580156115bb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115df91906124af565b505050565b6115ec611d17565b6115f730838361074b565b505050565b611604611d17565b60008111611647576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163e90612cb8565b60405180910390fd5b6000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050808211156116ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c590612a58565b60405180910390fd5b6116d83083611f58565b81816116e49190612e19565b600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6117bb611d17565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561182b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182290612ad8565b60405180910390fd5b6118348161212f565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156118af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a690612c98565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561191f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191690612af8565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516119fd9190612d38565b60405180910390a3505050565b6000611a16848461172c565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611a905781811015611a82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7990612b38565b60405180910390fd5b611a8f848484840361183f565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611b06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afd90612c78565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6d90612a38565b60405180910390fd5b611b81838383612258565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611c07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bfe90612b78565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c9a9190612dc3565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611cfe9190612d38565b60405180910390a3611d118484846122b9565b50505050565b611d1f611837565b73ffffffffffffffffffffffffffffffffffffffff16611d3d6112d1565b73ffffffffffffffffffffffffffffffffffffffff1614611d93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8a90612bf8565b60405180910390fd5b565b611d9d6122be565b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611de1611837565b604051611dee9190612995565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5f90612d18565b60405180910390fd5b611e7460008383612258565b8060026000828254611e869190612dc3565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611edb9190612dc3565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611f409190612d38565b60405180910390a3611f54600083836122b9565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbf90612c58565b60405180910390fd5b611fd482600083612258565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561205a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205190612ab8565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546120b19190612e19565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516121169190612d38565b60405180910390a361212a836000846122b9565b505050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6121fd612307565b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612241611837565b60405161224e9190612995565b60405180910390a1565b612260612307565b61226b838383612351565b6122748361103d565b156122b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ab90612b18565b60405180910390fd5b505050565b505050565b6122c661097b565b612305576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122fc90612a98565b60405180910390fd5b565b61230f61097b565b1561234f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234690612b98565b60405180910390fd5b565b505050565b6000813590506123658161362f565b92915050565b60008151905061237a81613646565b92915050565b60008135905061238f8161365d565b92915050565b6000813590506123a481613674565b92915050565b6000815190506123b981613674565b92915050565b6000602082840312156123d157600080fd5b60006123df84828501612356565b91505092915050565b600080604083850312156123fb57600080fd5b600061240985828601612356565b925050602061241a85828601612356565b9150509250929050565b60008060006060848603121561243957600080fd5b600061244786828701612356565b935050602061245886828701612356565b925050604061246986828701612395565b9150509250925092565b6000806040838503121561248657600080fd5b600061249485828601612356565b92505060206124a585828601612395565b9150509250929050565b6000602082840312156124c157600080fd5b60006124cf8482850161236b565b91505092915050565b6000602082840312156124ea57600080fd5b60006124f884828501612380565b91505092915050565b60006020828403121561251357600080fd5b600061252184828501612395565b91505092915050565b60006020828403121561253c57600080fd5b600061254a848285016123aa565b91505092915050565b600061255f838361256b565b60208301905092915050565b61257481612e4d565b82525050565b61258381612e4d565b82525050565b600061259482612d7e565b61259e8185612da1565b93506125a983612d6e565b8060005b838110156125da5781516125c18882612553565b97506125cc83612d94565b9250506001810190506125ad565b5085935050505092915050565b6125f081612e5f565b82525050565b600061260182612d89565b61260b8185612db2565b935061261b818560208601612eb4565b61262481612fc0565b840191505092915050565b600061263c602383612db2565b915061264782612fd1565b604082019050919050565b600061265f602983612db2565b915061266a82613020565b604082019050919050565b6000612682601683612db2565b915061268d8261306f565b602082019050919050565b60006126a5601483612db2565b91506126b082613098565b602082019050919050565b60006126c8602283612db2565b91506126d3826130c1565b604082019050919050565b60006126eb602683612db2565b91506126f682613110565b604082019050919050565b600061270e602283612db2565b91506127198261315f565b604082019050919050565b6000612731604283612db2565b915061273c826131ae565b606082019050919050565b6000612754601d83612db2565b915061275f82613223565b602082019050919050565b6000612777602483612db2565b91506127828261324c565b604082019050919050565b600061279a602683612db2565b91506127a58261329b565b604082019050919050565b60006127bd601083612db2565b91506127c8826132ea565b602082019050919050565b60006127e0601683612db2565b91506127eb82613313565b602082019050919050565b6000612803600f83612db2565b915061280e8261333c565b602082019050919050565b6000612826602083612db2565b915061283182613365565b602082019050919050565b6000612849602583612db2565b91506128548261338e565b604082019050919050565b600061286c603183612db2565b9150612877826133dd565b604082019050919050565b600061288f602183612db2565b915061289a8261342c565b604082019050919050565b60006128b2602583612db2565b91506128bd8261347b565b604082019050919050565b60006128d5602483612db2565b91506128e0826134ca565b604082019050919050565b60006128f8602883612db2565b915061290382613519565b604082019050919050565b600061291b602583612db2565b915061292682613568565b604082019050919050565b600061293e602983612db2565b9150612949826135b7565b604082019050919050565b6000612961601f83612db2565b915061296c82613606565b602082019050919050565b61298081612e9d565b82525050565b61298f81612ea7565b82525050565b60006020820190506129aa600083018461257a565b92915050565b60006040820190506129c5600083018561257a565b6129d26020830184612977565b9392505050565b600060208201905081810360008301526129f38184612589565b905092915050565b6000602082019050612a1060008301846125e7565b92915050565b60006020820190508181036000830152612a3081846125f6565b905092915050565b60006020820190508181036000830152612a518161262f565b9050919050565b60006020820190508181036000830152612a7181612652565b9050919050565b60006020820190508181036000830152612a9181612675565b9050919050565b60006020820190508181036000830152612ab181612698565b9050919050565b60006020820190508181036000830152612ad1816126bb565b9050919050565b60006020820190508181036000830152612af1816126de565b9050919050565b60006020820190508181036000830152612b1181612701565b9050919050565b60006020820190508181036000830152612b3181612724565b9050919050565b60006020820190508181036000830152612b5181612747565b9050919050565b60006020820190508181036000830152612b718161276a565b9050919050565b60006020820190508181036000830152612b918161278d565b9050919050565b60006020820190508181036000830152612bb1816127b0565b9050919050565b60006020820190508181036000830152612bd1816127d3565b9050919050565b60006020820190508181036000830152612bf1816127f6565b9050919050565b60006020820190508181036000830152612c1181612819565b9050919050565b60006020820190508181036000830152612c318161283c565b9050919050565b60006020820190508181036000830152612c518161285f565b9050919050565b60006020820190508181036000830152612c7181612882565b9050919050565b60006020820190508181036000830152612c91816128a5565b9050919050565b60006020820190508181036000830152612cb1816128c8565b9050919050565b60006020820190508181036000830152612cd1816128eb565b9050919050565b60006020820190508181036000830152612cf18161290e565b9050919050565b60006020820190508181036000830152612d1181612931565b9050919050565b60006020820190508181036000830152612d3181612954565b9050919050565b6000602082019050612d4d6000830184612977565b92915050565b6000602082019050612d686000830184612986565b92915050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b6000612dce82612e9d565b9150612dd983612e9d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612e0e57612e0d612f62565b5b828201905092915050565b6000612e2482612e9d565b9150612e2f83612e9d565b925082821015612e4257612e41612f62565b5b828203905092915050565b6000612e5882612e7d565b9050919050565b60008115159050919050565b6000612e7682612e4d565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015612ed2578082015181840152602081019050612eb7565b83811115612ee1576000848401525b50505050565b60006002820490506001821680612eff57607f821691505b60208210811415612f1357612f12612f91565b5b50919050565b6000612f2482612e9d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612f5757612f56612f62565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f576974686472617720616d6f756e742063616e6e6f742065786365656420686f60008201527f6c6420616d6f756e740000000000000000000000000000000000000000000000602082015250565b7f496e76616c696420636f6e747261637420696e64657800000000000000000000600082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243323057697468536166655472616e736665723a206163636f756e74206e60008201527f6f7420617574686f72697a656420666f722074686973207472616e736163746960208201527f6f6e000000000000000000000000000000000000000000000000000000000000604082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f4275726e20616d6f756e742068617320746f206265206772656174657220746860008201527f616e203000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f43616e6e6f74206265207a65726f206164647265737300000000000000000000600082015250565b7f696e76616c696420616464726573730000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f576974686472617720616d6f756e742063616e6e6f742065786365656420626160008201527f6c616e6365000000000000000000000000000000000000000000000000000000602082015250565b7f44657374696e6174696f6e2061646472657373206e656564732061646469746960008201527f6f6e616c20766572696669636174696f6e000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f576974686472617720616d6f756e742068617320746f2062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f596f75206e65656420746f207769746864726177206174206c6561737420736f60008201527f6d6520746f6b656e730000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b61363881612e4d565b811461364357600080fd5b50565b61364f81612e5f565b811461365a57600080fd5b50565b61366681612e6b565b811461367157600080fd5b50565b61367d81612e9d565b811461368857600080fd5b5056fea26469706673582212204baa1970910282fa1de5ac6ba039ec69192896e4d538a712543ac6c5766970c764736f6c63430008040033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102115760003560e01c8063745400c9116101255780639da9df3e116100ad578063bb40f5d71161007c578063bb40f5d7146105ec578063c126840114610608578063c166800614610624578063dd62ed3e14610640578063f2fde38b1461067057610211565b80639da9df3e14610552578063a457c2d71461055c578063a9059cbb1461058c578063b79351c0146105bc57610211565b806383cfab42116100f457806383cfab42146104d45780638456cb59146104f05780638d1fdf2f146104fa5780638da5cb5b1461051657806395d89b411461053457610211565b8063745400c91461043c5780637723bafb1461045857806379cc6790146104885780638111f24e146104a457610211565b806340c10f19116101a85780635c975abb116101775780635c975abb146103ac5780635ea6e6e2146103ca5780636234b7e9146103e657806370a0823114610402578063715018a61461043257610211565b806340c10f191461033a57806342966c6814610356578063460403961461037257806347d70e751461038e57610211565b806327466bc9116101e457806327466bc9146102b2578063313ce567146102e257806339509351146103005780633f4ba83a1461033057610211565b806306fdde0314610216578063095ea7b31461023457806318160ddd1461026457806323b872dd14610282575b600080fd5b61021e61068c565b60405161022b9190612a16565b60405180910390f35b61024e60048036038101906102499190612473565b61071e565b60405161025b91906129fb565b60405180910390f35b61026c610741565b6040516102799190612d38565b60405180910390f35b61029c60048036038101906102979190612424565b61074b565b6040516102a991906129fb565b60405180910390f35b6102cc60048036038101906102c791906123bf565b61077a565b6040516102d99190612d38565b60405180910390f35b6102ea6107c3565b6040516102f79190612d53565b60405180910390f35b61031a60048036038101906103159190612473565b6107da565b60405161032791906129fb565b60405180910390f35b610338610811565b005b610354600480360381019061034f9190612473565b610823565b005b610370600480360381019061036b9190612501565b610881565b005b61038c60048036038101906103879190612501565b610895565b005b6103966108ed565b6040516103a391906129d9565b60405180910390f35b6103b461097b565b6040516103c191906129fb565b60405180910390f35b6103e460048036038101906103df91906123bf565b610992565b005b61040060048036038101906103fb9190612501565b610a00565b005b61041c600480360381019061041791906123bf565b610bb7565b6040516104299190612d38565b60405180910390f35b61043a610bff565b005b61045660048036038101906104519190612501565b610c13565b005b610472600480360381019061046d91906123bf565b610d49565b60405161047f91906129fb565b60405180910390f35b6104a2600480360381019061049d9190612473565b61101d565b005b6104be60048036038101906104b991906123bf565b61103d565b6040516104cb91906129fb565b60405180910390f35b6104ee60048036038101906104e991906123bf565b611093565b005b6104f86111a9565b005b610514600480360381019061050f91906123bf565b6111bb565b005b61051e6112d1565b60405161052b9190612995565b60405180910390f35b61053c6112fb565b6040516105499190612a16565b60405180910390f35b61055a61138d565b005b61057660048036038101906105719190612473565b6113e4565b60405161058391906129fb565b60405180910390f35b6105a660048036038101906105a19190612473565b61145b565b6040516105b391906129fb565b60405180910390f35b6105d660048036038101906105d19190612501565b61147e565b6040516105e39190612995565b60405180910390f35b610606600480360381019061060191906124d8565b6114bd565b005b610622600480360381019061061d9190612473565b6115e4565b005b61063e60048036038101906106399190612473565b6115fc565b005b61065a600480360381019061065591906123e8565b61172c565b6040516106679190612d38565b60405180910390f35b61068a600480360381019061068591906123bf565b6117b3565b005b60606003805461069b90612ee7565b80601f01602080910402602001604051908101604052809291908181526020018280546106c790612ee7565b80156107145780601f106106e957610100808354040283529160200191610714565b820191906000526020600020905b8154815290600101906020018083116106f757829003601f168201915b5050505050905090565b600080610729611837565b905061073681858561183f565b600191505092915050565b6000600254905090565b600080610756611837565b9050610763858285611a0a565b61076e858585611a96565b60019150509392505050565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600760009054906101000a900460ff16905090565b6000806107e5611837565b90506108068185856107f7858961172c565b6108019190612dc3565b61183f565b600191505092915050565b610819611d17565b610821611d95565b565b61082b611d17565b61083482610d49565b610873576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086a90612c38565b60405180910390fd5b61087d8282611df8565b5050565b61089261088c611837565b82611f58565b50565b61089d611d17565b600081116108e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d790612b58565b60405180910390fd5b6108ea3082611f58565b50565b6060600680548060200260200160405190810160405280929190818152602001828054801561097157602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019060010190808311610927575b5050505050905090565b6000600560009054906101000a900460ff16905090565b61099a611d17565b6006819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610a08611d17565b6006805490508110610a4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4690612a78565b60405180910390fd5b60066001600680549050610a639190612e19565b81548110610a9a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660068281548110610aff577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506006805480610b7f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055905550565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c07611d17565b610c11600061212f565b565b60008111610c56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4d90612cf8565b60405180910390fd5b6000610c6133610bb7565b905080821115610ca6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9d90612c18565b60405180910390fd5b6000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050610cf4308461145b565b508281610d019190612dc3565b600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610dba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db190612bb8565b60405180910390fd5b60005b60068054905081101561101757600060068281548110610e06577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231866040518263ffffffff1660e01b8152600401610e6e9190612995565b60206040518083038186803b158015610e8657600080fd5b505afa158015610e9a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ebe919061252a565b905060008111156110025760008273ffffffffffffffffffffffffffffffffffffffff166327b4c627876040518263ffffffff1660e01b8152600401610f049190612995565b60206040518083038186803b158015610f1c57600080fd5b505afa158015610f30573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f5491906124af565b905060008373ffffffffffffffffffffffffffffffffffffffff16638d5f2fbe886040518263ffffffff1660e01b8152600401610f919190612995565b60206040518083038186803b158015610fa957600080fd5b505afa158015610fbd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fe191906124af565b9050818015610fed5750805b15610fff576001955050505050611017565b50505b5050808061100f90612f19565b915050610dbd565b50919050565b61102f82611029611837565b83611a0a565b6110398282611f58565b5050565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b61109b611d17565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561110b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110290612bd8565b60405180910390fd5b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f883e2eef767b8b7082345624bb0c5589d0f6ca3e5e3c6c489d89c333b733c04a60405160405180910390a250565b6111b1611d17565b6111b96121f5565b565b6111c3611d17565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611233576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122a90612bd8565b60405180910390fd5b6001600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f0de8364a528e5ca2869160b20c375fe85b4e98d24a9cb48b4dc49c5f76d05b2460405160405180910390a250565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461130a90612ee7565b80601f016020809104026020016040519081016040528092919081815260200182805461133690612ee7565b80156113835780601f1061135857610100808354040283529160200191611383565b820191906000526020600020905b81548152906001019060200180831161136657829003601f168201915b5050505050905090565b611395611d17565b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156113e0573d6000803e3d6000fd5b5050565b6000806113ef611837565b905060006113fd828661172c565b905083811015611442576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143990612cd8565b60405180910390fd5b61144f828686840361183f565b60019250505092915050565b600080611466611837565b9050611473818585611a96565b600191505092915050565b6006818154811061148e57600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6114c5611d17565b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016115009190612995565b60206040518083038186803b15801561151857600080fd5b505afa15801561152c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611550919061252a565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b815260040161158d9291906129b0565b602060405180830381600087803b1580156115a757600080fd5b505af11580156115bb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115df91906124af565b505050565b6115ec611d17565b6115f730838361074b565b505050565b611604611d17565b60008111611647576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163e90612cb8565b60405180910390fd5b6000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050808211156116ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c590612a58565b60405180910390fd5b6116d83083611f58565b81816116e49190612e19565b600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6117bb611d17565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561182b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182290612ad8565b60405180910390fd5b6118348161212f565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156118af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a690612c98565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561191f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191690612af8565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516119fd9190612d38565b60405180910390a3505050565b6000611a16848461172c565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611a905781811015611a82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7990612b38565b60405180910390fd5b611a8f848484840361183f565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611b06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afd90612c78565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6d90612a38565b60405180910390fd5b611b81838383612258565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611c07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bfe90612b78565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c9a9190612dc3565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611cfe9190612d38565b60405180910390a3611d118484846122b9565b50505050565b611d1f611837565b73ffffffffffffffffffffffffffffffffffffffff16611d3d6112d1565b73ffffffffffffffffffffffffffffffffffffffff1614611d93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8a90612bf8565b60405180910390fd5b565b611d9d6122be565b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611de1611837565b604051611dee9190612995565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5f90612d18565b60405180910390fd5b611e7460008383612258565b8060026000828254611e869190612dc3565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611edb9190612dc3565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611f409190612d38565b60405180910390a3611f54600083836122b9565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbf90612c58565b60405180910390fd5b611fd482600083612258565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561205a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205190612ab8565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546120b19190612e19565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516121169190612d38565b60405180910390a361212a836000846122b9565b505050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6121fd612307565b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612241611837565b60405161224e9190612995565b60405180910390a1565b612260612307565b61226b838383612351565b6122748361103d565b156122b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ab90612b18565b60405180910390fd5b505050565b505050565b6122c661097b565b612305576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122fc90612a98565b60405180910390fd5b565b61230f61097b565b1561234f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234690612b98565b60405180910390fd5b565b505050565b6000813590506123658161362f565b92915050565b60008151905061237a81613646565b92915050565b60008135905061238f8161365d565b92915050565b6000813590506123a481613674565b92915050565b6000815190506123b981613674565b92915050565b6000602082840312156123d157600080fd5b60006123df84828501612356565b91505092915050565b600080604083850312156123fb57600080fd5b600061240985828601612356565b925050602061241a85828601612356565b9150509250929050565b60008060006060848603121561243957600080fd5b600061244786828701612356565b935050602061245886828701612356565b925050604061246986828701612395565b9150509250925092565b6000806040838503121561248657600080fd5b600061249485828601612356565b92505060206124a585828601612395565b9150509250929050565b6000602082840312156124c157600080fd5b60006124cf8482850161236b565b91505092915050565b6000602082840312156124ea57600080fd5b60006124f884828501612380565b91505092915050565b60006020828403121561251357600080fd5b600061252184828501612395565b91505092915050565b60006020828403121561253c57600080fd5b600061254a848285016123aa565b91505092915050565b600061255f838361256b565b60208301905092915050565b61257481612e4d565b82525050565b61258381612e4d565b82525050565b600061259482612d7e565b61259e8185612da1565b93506125a983612d6e565b8060005b838110156125da5781516125c18882612553565b97506125cc83612d94565b9250506001810190506125ad565b5085935050505092915050565b6125f081612e5f565b82525050565b600061260182612d89565b61260b8185612db2565b935061261b818560208601612eb4565b61262481612fc0565b840191505092915050565b600061263c602383612db2565b915061264782612fd1565b604082019050919050565b600061265f602983612db2565b915061266a82613020565b604082019050919050565b6000612682601683612db2565b915061268d8261306f565b602082019050919050565b60006126a5601483612db2565b91506126b082613098565b602082019050919050565b60006126c8602283612db2565b91506126d3826130c1565b604082019050919050565b60006126eb602683612db2565b91506126f682613110565b604082019050919050565b600061270e602283612db2565b91506127198261315f565b604082019050919050565b6000612731604283612db2565b915061273c826131ae565b606082019050919050565b6000612754601d83612db2565b915061275f82613223565b602082019050919050565b6000612777602483612db2565b91506127828261324c565b604082019050919050565b600061279a602683612db2565b91506127a58261329b565b604082019050919050565b60006127bd601083612db2565b91506127c8826132ea565b602082019050919050565b60006127e0601683612db2565b91506127eb82613313565b602082019050919050565b6000612803600f83612db2565b915061280e8261333c565b602082019050919050565b6000612826602083612db2565b915061283182613365565b602082019050919050565b6000612849602583612db2565b91506128548261338e565b604082019050919050565b600061286c603183612db2565b9150612877826133dd565b604082019050919050565b600061288f602183612db2565b915061289a8261342c565b604082019050919050565b60006128b2602583612db2565b91506128bd8261347b565b604082019050919050565b60006128d5602483612db2565b91506128e0826134ca565b604082019050919050565b60006128f8602883612db2565b915061290382613519565b604082019050919050565b600061291b602583612db2565b915061292682613568565b604082019050919050565b600061293e602983612db2565b9150612949826135b7565b604082019050919050565b6000612961601f83612db2565b915061296c82613606565b602082019050919050565b61298081612e9d565b82525050565b61298f81612ea7565b82525050565b60006020820190506129aa600083018461257a565b92915050565b60006040820190506129c5600083018561257a565b6129d26020830184612977565b9392505050565b600060208201905081810360008301526129f38184612589565b905092915050565b6000602082019050612a1060008301846125e7565b92915050565b60006020820190508181036000830152612a3081846125f6565b905092915050565b60006020820190508181036000830152612a518161262f565b9050919050565b60006020820190508181036000830152612a7181612652565b9050919050565b60006020820190508181036000830152612a9181612675565b9050919050565b60006020820190508181036000830152612ab181612698565b9050919050565b60006020820190508181036000830152612ad1816126bb565b9050919050565b60006020820190508181036000830152612af1816126de565b9050919050565b60006020820190508181036000830152612b1181612701565b9050919050565b60006020820190508181036000830152612b3181612724565b9050919050565b60006020820190508181036000830152612b5181612747565b9050919050565b60006020820190508181036000830152612b718161276a565b9050919050565b60006020820190508181036000830152612b918161278d565b9050919050565b60006020820190508181036000830152612bb1816127b0565b9050919050565b60006020820190508181036000830152612bd1816127d3565b9050919050565b60006020820190508181036000830152612bf1816127f6565b9050919050565b60006020820190508181036000830152612c1181612819565b9050919050565b60006020820190508181036000830152612c318161283c565b9050919050565b60006020820190508181036000830152612c518161285f565b9050919050565b60006020820190508181036000830152612c7181612882565b9050919050565b60006020820190508181036000830152612c91816128a5565b9050919050565b60006020820190508181036000830152612cb1816128c8565b9050919050565b60006020820190508181036000830152612cd1816128eb565b9050919050565b60006020820190508181036000830152612cf18161290e565b9050919050565b60006020820190508181036000830152612d1181612931565b9050919050565b60006020820190508181036000830152612d3181612954565b9050919050565b6000602082019050612d4d6000830184612977565b92915050565b6000602082019050612d686000830184612986565b92915050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b6000612dce82612e9d565b9150612dd983612e9d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612e0e57612e0d612f62565b5b828201905092915050565b6000612e2482612e9d565b9150612e2f83612e9d565b925082821015612e4257612e41612f62565b5b828203905092915050565b6000612e5882612e7d565b9050919050565b60008115159050919050565b6000612e7682612e4d565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015612ed2578082015181840152602081019050612eb7565b83811115612ee1576000848401525b50505050565b60006002820490506001821680612eff57607f821691505b60208210811415612f1357612f12612f91565b5b50919050565b6000612f2482612e9d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612f5757612f56612f62565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f576974686472617720616d6f756e742063616e6e6f742065786365656420686f60008201527f6c6420616d6f756e740000000000000000000000000000000000000000000000602082015250565b7f496e76616c696420636f6e747261637420696e64657800000000000000000000600082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243323057697468536166655472616e736665723a206163636f756e74206e60008201527f6f7420617574686f72697a656420666f722074686973207472616e736163746960208201527f6f6e000000000000000000000000000000000000000000000000000000000000604082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f4275726e20616d6f756e742068617320746f206265206772656174657220746860008201527f616e203000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f43616e6e6f74206265207a65726f206164647265737300000000000000000000600082015250565b7f696e76616c696420616464726573730000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f576974686472617720616d6f756e742063616e6e6f742065786365656420626160008201527f6c616e6365000000000000000000000000000000000000000000000000000000602082015250565b7f44657374696e6174696f6e2061646472657373206e656564732061646469746960008201527f6f6e616c20766572696669636174696f6e000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f576974686472617720616d6f756e742068617320746f2062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f596f75206e65656420746f207769746864726177206174206c6561737420736f60008201527f6d6520746f6b656e730000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b61363881612e4d565b811461364357600080fd5b50565b61364f81612e5f565b811461365a57600080fd5b50565b61366681612e6b565b811461367157600080fd5b50565b61367d81612e9d565b811461368857600080fd5b5056fea26469706673582212204baa1970910282fa1de5ac6ba039ec69192896e4d538a712543ac6c5766970c764736f6c63430008040033

Deployed Bytecode Sourcemap

29839:4543:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12958:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15309:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14078:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16090:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32362:113;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30260:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16794:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30428:65;;;:::i;:::-;;30501:188;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24327:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31635:181;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31076:112;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6216:86;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30697:99;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30804:264;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14249:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3726:103;;;:::i;:::-;;31197:430;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32484:632;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24737:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33529:107;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33324:197;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30359:61;;;:::i;:::-;;33124:192;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3078:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13177:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34042:151;;;:::i;:::-;;17535:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14582:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29906:29;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34201:176;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32219:135;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31824:387;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14838:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3984:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12958:100;13012:13;13045:5;13038:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12958:100;:::o;15309:201::-;15392:4;15409:13;15425:12;:10;:12::i;:::-;15409:28;;15448:32;15457:5;15464:7;15473:6;15448:8;:32::i;:::-;15498:4;15491:11;;;15309:201;;;;:::o;14078:108::-;14139:7;14166:12;;14159:19;;14078:108;:::o;16090:295::-;16221:4;16238:15;16256:12;:10;:12::i;:::-;16238:30;;16279:38;16295:4;16301:7;16310:6;16279:15;:38::i;:::-;16328:27;16338:4;16344:2;16348:6;16328:9;:27::i;:::-;16373:4;16366:11;;;16090:295;;;;;:::o;32362:113::-;32422:7;32448:13;:19;32462:4;32448:19;;;;;;;;;;;;;;;;32441:26;;32362:113;;;:::o;30260:91::-;30310:5;30334:9;;;;;;;;;;;30327:16;;30260:91;:::o;16794:238::-;16882:4;16899:13;16915:12;:10;:12::i;:::-;16899:28;;16938:64;16947:5;16954:7;16991:10;16963:25;16973:5;16980:7;16963:9;:25::i;:::-;:38;;;;:::i;:::-;16938:8;:64::i;:::-;17020:4;17013:11;;;16794:238;;;;:::o;30428:65::-;2964:13;:11;:13::i;:::-;30475:10:::1;:8;:10::i;:::-;30428:65::o:0;30501:188::-;2964:13;:11;:13::i;:::-;30579:20:::1;30596:2;30579:16;:20::i;:::-;30571:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;30664:17;30670:2;30674:6;30664:5;:17::i;:::-;30501:188:::0;;:::o;24327:91::-;24383:27;24389:12;:10;:12::i;:::-;24403:6;24383:5;:27::i;:::-;24327:91;:::o;31635:181::-;2964:13;:11;:13::i;:::-;31727:1:::1;31718:6;:10;31710:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;31780:28;31794:4;31801:6;31780:5;:28::i;:::-;31635:181:::0;:::o;31076:112::-;31132:16;31168:12;31161:19;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31076:112;:::o;6216:86::-;6263:4;6287:7;;;;;;;;;;;6280:14;;6216:86;:::o;30697:99::-;2964:13;:11;:13::i;:::-;30765:12:::1;30783:4;30765:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30697:99:::0;:::o;30804:264::-;2964:13;:11;:13::i;:::-;30908:12:::1;:19;;;;30892:13;:35;30884:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;30995:12;31029:1;31008:12;:19;;;;:22;;;;:::i;:::-;30995:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30965:12;30978:13;30965:27;;;;;;;;;;;;;;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;31042:12;:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30804:264:::0;:::o;14249:127::-;14323:7;14350:9;:18;14360:7;14350:18;;;;;;;;;;;;;;;;14343:25;;14249:127;;;:::o;3726:103::-;2964:13;:11;:13::i;:::-;3791:30:::1;3818:1;3791:18;:30::i;:::-;3726:103::o:0;31197:430::-;31273:1;31266:6;:8;31258:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;31331:20;31354:21;31364:10;31354:9;:21::i;:::-;31331:44;;31404:12;31394:6;:22;;31386:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;31469:20;31492:13;:25;31506:10;31492:25;;;;;;;;;;;;;;;;31469:48;;31528:31;31545:4;31552:6;31528:8;:31::i;:::-;;31613:6;31598:12;:21;;;;:::i;:::-;31570:13;:25;31584:10;31570:25;;;;;;;;;;;;;;;:49;;;;31197:430;;;:::o;32484:632::-;32543:15;32592:1;32578:16;;:2;:16;;;;32570:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;32637:6;32632:449;32653:12;:19;;;;32649:1;:23;32632:449;;;32693:11;32715:12;32728:1;32715:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32693:38;;32746:15;32764:3;:13;;;32778:2;32764:17;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;32746:35;;32813:1;32800:10;:14;32796:272;;;32835:13;32851:3;:21;;;32873:2;32851:25;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;32835:41;;32895:8;32906:3;:16;;;32923:2;32906:20;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;32895:31;;32949:8;:15;;;;;32961:3;32949:15;32945:108;;;33001:4;32988:17;;33028:5;;;;;;32945:108;32796:272;;;32632:449;;32674:3;;;;;:::i;:::-;;;;32632:449;;;;32484:632;;;:::o;24737:164::-;24814:46;24830:7;24839:12;:10;:12::i;:::-;24853:6;24814:15;:46::i;:::-;24871:22;24877:7;24886:6;24871:5;:22::i;:::-;24737:164;;:::o;33529:107::-;33587:4;33610:8;:18;33619:8;33610:18;;;;;;;;;;;;;;;;;;;;;;;;;33603:25;;33529:107;;;:::o;33324:197::-;2964:13;:11;:13::i;:::-;33419:1:::1;33399:22;;:8;:22;;;;33391:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;33473:5;33452:8;:18;33461:8;33452:18;;;;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;33504:8;33494:19;;;;;;;;;;;;33324:197:::0;:::o;30359:61::-;2964:13;:11;:13::i;:::-;30404:8:::1;:6;:8::i;:::-;30359:61::o:0;33124:192::-;2964:13;:11;:13::i;:::-;33217:1:::1;33197:22;;:8;:22;;;;33189:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;33271:4;33250:8;:18;33259:8;33250:18;;;;;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;33299:8;33291:17;;;;;;;;;;;;33124:192:::0;:::o;3078:87::-;3124:7;3151:6;;;;;;;;;;;3144:13;;3078:87;:::o;13177:104::-;13233:13;13266:7;13259:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13177:104;:::o;34042:151::-;2964:13;:11;:13::i;:::-;34098:15:::1;34116:21;34098:39;;34156:10;34148:28;;:37;34177:7;34148:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;2988:1;34042:151::o:0;17535:436::-;17628:4;17645:13;17661:12;:10;:12::i;:::-;17645:28;;17684:24;17711:25;17721:5;17728:7;17711:9;:25::i;:::-;17684:52;;17775:15;17755:16;:35;;17747:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;17868:60;17877:5;17884:7;17912:15;17893:16;:34;17868:8;:60::i;:::-;17959:4;17952:11;;;;17535:436;;;;:::o;14582:193::-;14661:4;14678:13;14694:12;:10;:12::i;:::-;14678:28;;14717;14727:5;14734:2;14738:6;14717:9;:28::i;:::-;14763:4;14756:11;;;14582:193;;;;:::o;29906:29::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;34201:176::-;2964:13;:11;:13::i;:::-;34275:15:::1;34293:5;:15;;;34317:4;34293:30;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34275:48;;34334:5;:14;;;34349:10;34361:7;34334:35;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;2988:1;34201:176:::0;:::o;32219:135::-;2964:13;:11;:13::i;:::-;32305:41:::1;32326:4;32333;32339:6;32305:12;:41::i;:::-;;32219:135:::0;;:::o;31824:387::-;2964:13;:11;:13::i;:::-;31930:1:::1;31921:6;:10;31913:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;31987:18;32008:13;:19;32022:4;32008:19;;;;;;;;;;;;;;;;31987:40;;32056:10;32046:6;:20;;32038:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;32123:28;32137:4;32144:6;32123:5;:28::i;:::-;32197:6;32184:10;:19;;;;:::i;:::-;32162:13;:19;32176:4;32162:19;;;;;;;;;;;;;;;:41;;;;2988:1;31824:387:::0;;:::o;14838:151::-;14927:7;14954:11;:18;14966:5;14954:18;;;;;;;;;;;;;;;:27;14973:7;14954:27;;;;;;;;;;;;;;;;14947:34;;14838:151;;;;:::o;3984:201::-;2964:13;:11;:13::i;:::-;4093:1:::1;4073:22;;:8;:22;;;;4065:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;4149:28;4168:8;4149:18;:28::i;:::-;3984:201:::0;:::o;1629:98::-;1682:7;1709:10;1702:17;;1629:98;:::o;21160:380::-;21313:1;21296:19;;:5;:19;;;;21288:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21394:1;21375:21;;:7;:21;;;;21367:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21478:6;21448:11;:18;21460:5;21448:18;;;;;;;;;;;;;;;:27;21467:7;21448:27;;;;;;;;;;;;;;;:36;;;;21516:7;21500:32;;21509:5;21500:32;;;21525:6;21500:32;;;;;;:::i;:::-;;;;;;;;21160:380;;;:::o;21831:453::-;21966:24;21993:25;22003:5;22010:7;21993:9;:25::i;:::-;21966:52;;22053:17;22033:16;:37;22029:248;;22115:6;22095:16;:26;;22087:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22199:51;22208:5;22215:7;22243:6;22224:16;:25;22199:8;:51::i;:::-;22029:248;21831:453;;;;:::o;18441:671::-;18588:1;18572:18;;:4;:18;;;;18564:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18665:1;18651:16;;:2;:16;;;;18643:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;18720:38;18741:4;18747:2;18751:6;18720:20;:38::i;:::-;18771:19;18793:9;:15;18803:4;18793:15;;;;;;;;;;;;;;;;18771:37;;18842:6;18827:11;:21;;18819:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;18959:6;18945:11;:20;18927:9;:15;18937:4;18927:15;;;;;;;;;;;;;;;:38;;;;19004:6;18987:9;:13;18997:2;18987:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;19043:2;19028:26;;19037:4;19028:26;;;19047:6;19028:26;;;;;;:::i;:::-;;;;;;;;19067:37;19087:4;19093:2;19097:6;19067:19;:37::i;:::-;18441:671;;;;:::o;3243:132::-;3318:12;:10;:12::i;:::-;3307:23;;:7;:5;:7::i;:::-;:23;;;3299:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3243:132::o;7071:120::-;6080:16;:14;:16::i;:::-;7140:5:::1;7130:7;;:15;;;;;;;;;;;;;;;;;;7161:22;7170:12;:10;:12::i;:::-;7161:22;;;;;;:::i;:::-;;;;;;;;7071:120::o:0;19399:399::-;19502:1;19483:21;;:7;:21;;;;19475:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;19553:49;19582:1;19586:7;19595:6;19553:20;:49::i;:::-;19631:6;19615:12;;:22;;;;;;;:::i;:::-;;;;;;;;19670:6;19648:9;:18;19658:7;19648:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;19713:7;19692:37;;19709:1;19692:37;;;19722:6;19692:37;;;;;;:::i;:::-;;;;;;;;19742:48;19770:1;19774:7;19783:6;19742:19;:48::i;:::-;19399:399;;:::o;20131:591::-;20234:1;20215:21;;:7;:21;;;;20207:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;20287:49;20308:7;20325:1;20329:6;20287:20;:49::i;:::-;20349:22;20374:9;:18;20384:7;20374:18;;;;;;;;;;;;;;;;20349:43;;20429:6;20411:14;:24;;20403:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;20548:6;20531:14;:23;20510:9;:18;20520:7;20510:18;;;;;;;;;;;;;;;:44;;;;20592:6;20576:12;;:22;;;;;;;:::i;:::-;;;;;;;;20642:1;20616:37;;20625:7;20616:37;;;20646:6;20616:37;;;;;;:::i;:::-;;;;;;;;20666:48;20686:7;20703:1;20707:6;20666:19;:48::i;:::-;20131:591;;;:::o;4345:191::-;4419:16;4438:6;;;;;;;;;;;4419:25;;4464:8;4455:6;;:17;;;;;;;;;;;;;;;;;;4519:8;4488:40;;4509:8;4488:40;;;;;;;;;;;;4345:191;;:::o;6812:118::-;5821:19;:17;:19::i;:::-;6882:4:::1;6872:7;;:14;;;;;;;;;;;;;;;;;;6902:20;6909:12;:10;:12::i;:::-;6902:20;;;;;;:::i;:::-;;;;;;;;6812:118::o:0;33644:390::-;5821:19;:17;:19::i;:::-;33791:44:::1;33818:4;33824:2;33828:6;33791:26;:44::i;:::-;33857:15;33867:4;33857:9;:15::i;:::-;33856:16;33848:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;33644:390:::0;;;:::o;23613:124::-;;;;:::o;6560:108::-;6627:8;:6;:8::i;:::-;6619:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;6560:108::o;6375:::-;6446:8;:6;:8::i;:::-;6445:9;6437:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;6375:108::o;22884:125::-;;;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:137::-;206:5;237:6;231:13;222:22;;253:30;277:5;253:30;:::i;:::-;212:77;;;;:::o;295:167::-;355:5;393:6;380:20;371:29;;409:47;450:5;409:47;:::i;:::-;361:101;;;;:::o;468:139::-;514:5;552:6;539:20;530:29;;568:33;595:5;568:33;:::i;:::-;520:87;;;;:::o;613:143::-;670:5;701:6;695:13;686:22;;717:33;744:5;717:33;:::i;:::-;676:80;;;;:::o;762:262::-;821:6;870:2;858:9;849:7;845:23;841:32;838:2;;;886:1;883;876:12;838:2;929:1;954:53;999:7;990:6;979:9;975:22;954:53;:::i;:::-;944:63;;900:117;828:196;;;;:::o;1030:407::-;1098:6;1106;1155:2;1143:9;1134:7;1130:23;1126:32;1123:2;;;1171:1;1168;1161:12;1123:2;1214:1;1239:53;1284:7;1275:6;1264:9;1260:22;1239:53;:::i;:::-;1229:63;;1185:117;1341:2;1367:53;1412:7;1403:6;1392:9;1388:22;1367:53;:::i;:::-;1357:63;;1312:118;1113:324;;;;;:::o;1443:552::-;1520:6;1528;1536;1585:2;1573:9;1564:7;1560:23;1556:32;1553:2;;;1601:1;1598;1591:12;1553:2;1644:1;1669:53;1714:7;1705:6;1694:9;1690:22;1669:53;:::i;:::-;1659:63;;1615:117;1771:2;1797:53;1842:7;1833:6;1822:9;1818:22;1797:53;:::i;:::-;1787:63;;1742:118;1899:2;1925:53;1970:7;1961:6;1950:9;1946:22;1925:53;:::i;:::-;1915:63;;1870:118;1543:452;;;;;:::o;2001:407::-;2069:6;2077;2126:2;2114:9;2105:7;2101:23;2097:32;2094:2;;;2142:1;2139;2132:12;2094:2;2185:1;2210:53;2255:7;2246:6;2235:9;2231:22;2210:53;:::i;:::-;2200:63;;2156:117;2312:2;2338:53;2383:7;2374:6;2363:9;2359:22;2338:53;:::i;:::-;2328:63;;2283:118;2084:324;;;;;:::o;2414:278::-;2481:6;2530:2;2518:9;2509:7;2505:23;2501:32;2498:2;;;2546:1;2543;2536:12;2498:2;2589:1;2614:61;2667:7;2658:6;2647:9;2643:22;2614:61;:::i;:::-;2604:71;;2560:125;2488:204;;;;:::o;2698:290::-;2771:6;2820:2;2808:9;2799:7;2795:23;2791:32;2788:2;;;2836:1;2833;2826:12;2788:2;2879:1;2904:67;2963:7;2954:6;2943:9;2939:22;2904:67;:::i;:::-;2894:77;;2850:131;2778:210;;;;:::o;2994:262::-;3053:6;3102:2;3090:9;3081:7;3077:23;3073:32;3070:2;;;3118:1;3115;3108:12;3070:2;3161:1;3186:53;3231:7;3222:6;3211:9;3207:22;3186:53;:::i;:::-;3176:63;;3132:117;3060:196;;;;:::o;3262:284::-;3332:6;3381:2;3369:9;3360:7;3356:23;3352:32;3349:2;;;3397:1;3394;3387:12;3349:2;3440:1;3465:64;3521:7;3512:6;3501:9;3497:22;3465:64;:::i;:::-;3455:74;;3411:128;3339:207;;;;:::o;3552:179::-;3621:10;3642:46;3684:3;3676:6;3642:46;:::i;:::-;3720:4;3715:3;3711:14;3697:28;;3632:99;;;;:::o;3737:108::-;3814:24;3832:5;3814:24;:::i;:::-;3809:3;3802:37;3792:53;;:::o;3851:118::-;3938:24;3956:5;3938:24;:::i;:::-;3933:3;3926:37;3916:53;;:::o;4005:732::-;4124:3;4153:54;4201:5;4153:54;:::i;:::-;4223:86;4302:6;4297:3;4223:86;:::i;:::-;4216:93;;4333:56;4383:5;4333:56;:::i;:::-;4412:7;4443:1;4428:284;4453:6;4450:1;4447:13;4428:284;;;4529:6;4523:13;4556:63;4615:3;4600:13;4556:63;:::i;:::-;4549:70;;4642:60;4695:6;4642:60;:::i;:::-;4632:70;;4488:224;4475:1;4472;4468:9;4463:14;;4428:284;;;4432:14;4728:3;4721:10;;4129:608;;;;;;;:::o;4743:109::-;4824:21;4839:5;4824:21;:::i;:::-;4819:3;4812:34;4802:50;;:::o;4858:364::-;4946:3;4974:39;5007:5;4974:39;:::i;:::-;5029:71;5093:6;5088:3;5029:71;:::i;:::-;5022:78;;5109:52;5154:6;5149:3;5142:4;5135:5;5131:16;5109:52;:::i;:::-;5186:29;5208:6;5186:29;:::i;:::-;5181:3;5177:39;5170:46;;4950:272;;;;;:::o;5228:366::-;5370:3;5391:67;5455:2;5450:3;5391:67;:::i;:::-;5384:74;;5467:93;5556:3;5467:93;:::i;:::-;5585:2;5580:3;5576:12;5569:19;;5374:220;;;:::o;5600:366::-;5742:3;5763:67;5827:2;5822:3;5763:67;:::i;:::-;5756:74;;5839:93;5928:3;5839:93;:::i;:::-;5957:2;5952:3;5948:12;5941:19;;5746:220;;;:::o;5972:366::-;6114:3;6135:67;6199:2;6194:3;6135:67;:::i;:::-;6128:74;;6211:93;6300:3;6211:93;:::i;:::-;6329:2;6324:3;6320:12;6313:19;;6118:220;;;:::o;6344:366::-;6486:3;6507:67;6571:2;6566:3;6507:67;:::i;:::-;6500:74;;6583:93;6672:3;6583:93;:::i;:::-;6701:2;6696:3;6692:12;6685:19;;6490:220;;;:::o;6716:366::-;6858:3;6879:67;6943:2;6938:3;6879:67;:::i;:::-;6872:74;;6955:93;7044:3;6955:93;:::i;:::-;7073:2;7068:3;7064:12;7057:19;;6862:220;;;:::o;7088:366::-;7230:3;7251:67;7315:2;7310:3;7251:67;:::i;:::-;7244:74;;7327:93;7416:3;7327:93;:::i;:::-;7445:2;7440:3;7436:12;7429:19;;7234:220;;;:::o;7460:366::-;7602:3;7623:67;7687:2;7682:3;7623:67;:::i;:::-;7616:74;;7699:93;7788:3;7699:93;:::i;:::-;7817:2;7812:3;7808:12;7801:19;;7606:220;;;:::o;7832:366::-;7974:3;7995:67;8059:2;8054:3;7995:67;:::i;:::-;7988:74;;8071:93;8160:3;8071:93;:::i;:::-;8189:2;8184:3;8180:12;8173:19;;7978:220;;;:::o;8204:366::-;8346:3;8367:67;8431:2;8426:3;8367:67;:::i;:::-;8360:74;;8443:93;8532:3;8443:93;:::i;:::-;8561:2;8556:3;8552:12;8545:19;;8350:220;;;:::o;8576:366::-;8718:3;8739:67;8803:2;8798:3;8739:67;:::i;:::-;8732:74;;8815:93;8904:3;8815:93;:::i;:::-;8933:2;8928:3;8924:12;8917:19;;8722:220;;;:::o;8948:366::-;9090:3;9111:67;9175:2;9170:3;9111:67;:::i;:::-;9104:74;;9187:93;9276:3;9187:93;:::i;:::-;9305:2;9300:3;9296:12;9289:19;;9094:220;;;:::o;9320:366::-;9462:3;9483:67;9547:2;9542:3;9483:67;:::i;:::-;9476:74;;9559:93;9648:3;9559:93;:::i;:::-;9677:2;9672:3;9668:12;9661:19;;9466:220;;;:::o;9692:366::-;9834:3;9855:67;9919:2;9914:3;9855:67;:::i;:::-;9848:74;;9931:93;10020:3;9931:93;:::i;:::-;10049:2;10044:3;10040:12;10033:19;;9838:220;;;:::o;10064:366::-;10206:3;10227:67;10291:2;10286:3;10227:67;:::i;:::-;10220:74;;10303:93;10392:3;10303:93;:::i;:::-;10421:2;10416:3;10412:12;10405:19;;10210:220;;;:::o;10436:366::-;10578:3;10599:67;10663:2;10658:3;10599:67;:::i;:::-;10592:74;;10675:93;10764:3;10675:93;:::i;:::-;10793:2;10788:3;10784:12;10777:19;;10582:220;;;:::o;10808:366::-;10950:3;10971:67;11035:2;11030:3;10971:67;:::i;:::-;10964:74;;11047:93;11136:3;11047:93;:::i;:::-;11165:2;11160:3;11156:12;11149:19;;10954:220;;;:::o;11180:366::-;11322:3;11343:67;11407:2;11402:3;11343:67;:::i;:::-;11336:74;;11419:93;11508:3;11419:93;:::i;:::-;11537:2;11532:3;11528:12;11521:19;;11326:220;;;:::o;11552:366::-;11694:3;11715:67;11779:2;11774:3;11715:67;:::i;:::-;11708:74;;11791:93;11880:3;11791:93;:::i;:::-;11909:2;11904:3;11900:12;11893:19;;11698:220;;;:::o;11924:366::-;12066:3;12087:67;12151:2;12146:3;12087:67;:::i;:::-;12080:74;;12163:93;12252:3;12163:93;:::i;:::-;12281:2;12276:3;12272:12;12265:19;;12070:220;;;:::o;12296:366::-;12438:3;12459:67;12523:2;12518:3;12459:67;:::i;:::-;12452:74;;12535:93;12624:3;12535:93;:::i;:::-;12653:2;12648:3;12644:12;12637:19;;12442:220;;;:::o;12668:366::-;12810:3;12831:67;12895:2;12890:3;12831:67;:::i;:::-;12824:74;;12907:93;12996:3;12907:93;:::i;:::-;13025:2;13020:3;13016:12;13009:19;;12814:220;;;:::o;13040:366::-;13182:3;13203:67;13267:2;13262:3;13203:67;:::i;:::-;13196:74;;13279:93;13368:3;13279:93;:::i;:::-;13397:2;13392:3;13388:12;13381:19;;13186:220;;;:::o;13412:366::-;13554:3;13575:67;13639:2;13634:3;13575:67;:::i;:::-;13568:74;;13651:93;13740:3;13651:93;:::i;:::-;13769:2;13764:3;13760:12;13753:19;;13558:220;;;:::o;13784:366::-;13926:3;13947:67;14011:2;14006:3;13947:67;:::i;:::-;13940:74;;14023:93;14112:3;14023:93;:::i;:::-;14141:2;14136:3;14132:12;14125:19;;13930:220;;;:::o;14156:118::-;14243:24;14261:5;14243:24;:::i;:::-;14238:3;14231:37;14221:53;;:::o;14280:112::-;14363:22;14379:5;14363:22;:::i;:::-;14358:3;14351:35;14341:51;;:::o;14398:222::-;14491:4;14529:2;14518:9;14514:18;14506:26;;14542:71;14610:1;14599:9;14595:17;14586:6;14542:71;:::i;:::-;14496:124;;;;:::o;14626:332::-;14747:4;14785:2;14774:9;14770:18;14762:26;;14798:71;14866:1;14855:9;14851:17;14842:6;14798:71;:::i;:::-;14879:72;14947:2;14936:9;14932:18;14923:6;14879:72;:::i;:::-;14752:206;;;;;:::o;14964:373::-;15107:4;15145:2;15134:9;15130:18;15122:26;;15194:9;15188:4;15184:20;15180:1;15169:9;15165:17;15158:47;15222:108;15325:4;15316:6;15222:108;:::i;:::-;15214:116;;15112:225;;;;:::o;15343:210::-;15430:4;15468:2;15457:9;15453:18;15445:26;;15481:65;15543:1;15532:9;15528:17;15519:6;15481:65;:::i;:::-;15435:118;;;;:::o;15559:313::-;15672:4;15710:2;15699:9;15695:18;15687:26;;15759:9;15753:4;15749:20;15745:1;15734:9;15730:17;15723:47;15787:78;15860:4;15851:6;15787:78;:::i;:::-;15779:86;;15677:195;;;;:::o;15878:419::-;16044:4;16082:2;16071:9;16067:18;16059:26;;16131:9;16125:4;16121:20;16117:1;16106:9;16102:17;16095:47;16159:131;16285:4;16159:131;:::i;:::-;16151:139;;16049:248;;;:::o;16303:419::-;16469:4;16507:2;16496:9;16492:18;16484:26;;16556:9;16550:4;16546:20;16542:1;16531:9;16527:17;16520:47;16584:131;16710:4;16584:131;:::i;:::-;16576:139;;16474:248;;;:::o;16728:419::-;16894:4;16932:2;16921:9;16917:18;16909:26;;16981:9;16975:4;16971:20;16967:1;16956:9;16952:17;16945:47;17009:131;17135:4;17009:131;:::i;:::-;17001:139;;16899:248;;;:::o;17153:419::-;17319:4;17357:2;17346:9;17342:18;17334:26;;17406:9;17400:4;17396:20;17392:1;17381:9;17377:17;17370:47;17434:131;17560:4;17434:131;:::i;:::-;17426:139;;17324:248;;;:::o;17578:419::-;17744:4;17782:2;17771:9;17767:18;17759:26;;17831:9;17825:4;17821:20;17817:1;17806:9;17802:17;17795:47;17859:131;17985:4;17859:131;:::i;:::-;17851:139;;17749:248;;;:::o;18003:419::-;18169:4;18207:2;18196:9;18192:18;18184:26;;18256:9;18250:4;18246:20;18242:1;18231:9;18227:17;18220:47;18284:131;18410:4;18284:131;:::i;:::-;18276:139;;18174:248;;;:::o;18428:419::-;18594:4;18632:2;18621:9;18617:18;18609:26;;18681:9;18675:4;18671:20;18667:1;18656:9;18652:17;18645:47;18709:131;18835:4;18709:131;:::i;:::-;18701:139;;18599:248;;;:::o;18853:419::-;19019:4;19057:2;19046:9;19042:18;19034:26;;19106:9;19100:4;19096:20;19092:1;19081:9;19077:17;19070:47;19134:131;19260:4;19134:131;:::i;:::-;19126:139;;19024:248;;;:::o;19278:419::-;19444:4;19482:2;19471:9;19467:18;19459:26;;19531:9;19525:4;19521:20;19517:1;19506:9;19502:17;19495:47;19559:131;19685:4;19559:131;:::i;:::-;19551:139;;19449:248;;;:::o;19703:419::-;19869:4;19907:2;19896:9;19892:18;19884:26;;19956:9;19950:4;19946:20;19942:1;19931:9;19927:17;19920:47;19984:131;20110:4;19984:131;:::i;:::-;19976:139;;19874:248;;;:::o;20128:419::-;20294:4;20332:2;20321:9;20317:18;20309:26;;20381:9;20375:4;20371:20;20367:1;20356:9;20352:17;20345:47;20409:131;20535:4;20409:131;:::i;:::-;20401:139;;20299:248;;;:::o;20553:419::-;20719:4;20757:2;20746:9;20742:18;20734:26;;20806:9;20800:4;20796:20;20792:1;20781:9;20777:17;20770:47;20834:131;20960:4;20834:131;:::i;:::-;20826:139;;20724:248;;;:::o;20978:419::-;21144:4;21182:2;21171:9;21167:18;21159:26;;21231:9;21225:4;21221:20;21217:1;21206:9;21202:17;21195:47;21259:131;21385:4;21259:131;:::i;:::-;21251:139;;21149:248;;;:::o;21403:419::-;21569:4;21607:2;21596:9;21592:18;21584:26;;21656:9;21650:4;21646:20;21642:1;21631:9;21627:17;21620:47;21684:131;21810:4;21684:131;:::i;:::-;21676:139;;21574:248;;;:::o;21828:419::-;21994:4;22032:2;22021:9;22017:18;22009:26;;22081:9;22075:4;22071:20;22067:1;22056:9;22052:17;22045:47;22109:131;22235:4;22109:131;:::i;:::-;22101:139;;21999:248;;;:::o;22253:419::-;22419:4;22457:2;22446:9;22442:18;22434:26;;22506:9;22500:4;22496:20;22492:1;22481:9;22477:17;22470:47;22534:131;22660:4;22534:131;:::i;:::-;22526:139;;22424:248;;;:::o;22678:419::-;22844:4;22882:2;22871:9;22867:18;22859:26;;22931:9;22925:4;22921:20;22917:1;22906:9;22902:17;22895:47;22959:131;23085:4;22959:131;:::i;:::-;22951:139;;22849:248;;;:::o;23103:419::-;23269:4;23307:2;23296:9;23292:18;23284:26;;23356:9;23350:4;23346:20;23342:1;23331:9;23327:17;23320:47;23384:131;23510:4;23384:131;:::i;:::-;23376:139;;23274:248;;;:::o;23528:419::-;23694:4;23732:2;23721:9;23717:18;23709:26;;23781:9;23775:4;23771:20;23767:1;23756:9;23752:17;23745:47;23809:131;23935:4;23809:131;:::i;:::-;23801:139;;23699:248;;;:::o;23953:419::-;24119:4;24157:2;24146:9;24142:18;24134:26;;24206:9;24200:4;24196:20;24192:1;24181:9;24177:17;24170:47;24234:131;24360:4;24234:131;:::i;:::-;24226:139;;24124:248;;;:::o;24378:419::-;24544:4;24582:2;24571:9;24567:18;24559:26;;24631:9;24625:4;24621:20;24617:1;24606:9;24602:17;24595:47;24659:131;24785:4;24659:131;:::i;:::-;24651:139;;24549:248;;;:::o;24803:419::-;24969:4;25007:2;24996:9;24992:18;24984:26;;25056:9;25050:4;25046:20;25042:1;25031:9;25027:17;25020:47;25084:131;25210:4;25084:131;:::i;:::-;25076:139;;24974:248;;;:::o;25228:419::-;25394:4;25432:2;25421:9;25417:18;25409:26;;25481:9;25475:4;25471:20;25467:1;25456:9;25452:17;25445:47;25509:131;25635:4;25509:131;:::i;:::-;25501:139;;25399:248;;;:::o;25653:419::-;25819:4;25857:2;25846:9;25842:18;25834:26;;25906:9;25900:4;25896:20;25892:1;25881:9;25877:17;25870:47;25934:131;26060:4;25934:131;:::i;:::-;25926:139;;25824:248;;;:::o;26078:222::-;26171:4;26209:2;26198:9;26194:18;26186:26;;26222:71;26290:1;26279:9;26275:17;26266:6;26222:71;:::i;:::-;26176:124;;;;:::o;26306:214::-;26395:4;26433:2;26422:9;26418:18;26410:26;;26446:67;26510:1;26499:9;26495:17;26486:6;26446:67;:::i;:::-;26400:120;;;;:::o;26526:132::-;26593:4;26616:3;26608:11;;26646:4;26641:3;26637:14;26629:22;;26598:60;;;:::o;26664:114::-;26731:6;26765:5;26759:12;26749:22;;26738:40;;;:::o;26784:99::-;26836:6;26870:5;26864:12;26854:22;;26843:40;;;:::o;26889:113::-;26959:4;26991;26986:3;26982:14;26974:22;;26964:38;;;:::o;27008:184::-;27107:11;27141:6;27136:3;27129:19;27181:4;27176:3;27172:14;27157:29;;27119:73;;;;:::o;27198:169::-;27282:11;27316:6;27311:3;27304:19;27356:4;27351:3;27347:14;27332:29;;27294:73;;;;:::o;27373:305::-;27413:3;27432:20;27450:1;27432:20;:::i;:::-;27427:25;;27466:20;27484:1;27466:20;:::i;:::-;27461:25;;27620:1;27552:66;27548:74;27545:1;27542:81;27539:2;;;27626:18;;:::i;:::-;27539:2;27670:1;27667;27663:9;27656:16;;27417:261;;;;:::o;27684:191::-;27724:4;27744:20;27762:1;27744:20;:::i;:::-;27739:25;;27778:20;27796:1;27778:20;:::i;:::-;27773:25;;27817:1;27814;27811:8;27808:2;;;27822:18;;:::i;:::-;27808:2;27867:1;27864;27860:9;27852:17;;27729:146;;;;:::o;27881:96::-;27918:7;27947:24;27965:5;27947:24;:::i;:::-;27936:35;;27926:51;;;:::o;27983:90::-;28017:7;28060:5;28053:13;28046:21;28035:32;;28025:48;;;:::o;28079:110::-;28130:7;28159:24;28177:5;28159:24;:::i;:::-;28148:35;;28138:51;;;:::o;28195:126::-;28232:7;28272:42;28265:5;28261:54;28250:65;;28240:81;;;:::o;28327:77::-;28364:7;28393:5;28382:16;;28372:32;;;:::o;28410:86::-;28445:7;28485:4;28478:5;28474:16;28463:27;;28453:43;;;:::o;28502:307::-;28570:1;28580:113;28594:6;28591:1;28588:13;28580:113;;;28679:1;28674:3;28670:11;28664:18;28660:1;28655:3;28651:11;28644:39;28616:2;28613:1;28609:10;28604:15;;28580:113;;;28711:6;28708:1;28705:13;28702:2;;;28791:1;28782:6;28777:3;28773:16;28766:27;28702:2;28551:258;;;;:::o;28815:320::-;28859:6;28896:1;28890:4;28886:12;28876:22;;28943:1;28937:4;28933:12;28964:18;28954:2;;29020:4;29012:6;29008:17;28998:27;;28954:2;29082;29074:6;29071:14;29051:18;29048:38;29045:2;;;29101:18;;:::i;:::-;29045:2;28866:269;;;;:::o;29141:233::-;29180:3;29203:24;29221:5;29203:24;:::i;:::-;29194:33;;29249:66;29242:5;29239:77;29236:2;;;29319:18;;:::i;:::-;29236:2;29366:1;29359:5;29355:13;29348:20;;29184:190;;;:::o;29380:180::-;29428:77;29425:1;29418:88;29525:4;29522:1;29515:15;29549:4;29546:1;29539:15;29566:180;29614:77;29611:1;29604:88;29711:4;29708:1;29701:15;29735:4;29732:1;29725:15;29752:102;29793:6;29844:2;29840:7;29835:2;29828:5;29824:14;29820:28;29810:38;;29800:54;;;:::o;29860:222::-;30000:34;29996:1;29988:6;29984:14;29977:58;30069:5;30064:2;30056:6;30052:15;30045:30;29966:116;:::o;30088:228::-;30228:34;30224:1;30216:6;30212:14;30205:58;30297:11;30292:2;30284:6;30280:15;30273:36;30194:122;:::o;30322:172::-;30462:24;30458:1;30450:6;30446:14;30439:48;30428:66;:::o;30500:170::-;30640:22;30636:1;30628:6;30624:14;30617:46;30606:64;:::o;30676:221::-;30816:34;30812:1;30804:6;30800:14;30793:58;30885:4;30880:2;30872:6;30868:15;30861:29;30782:115;:::o;30903:225::-;31043:34;31039:1;31031:6;31027:14;31020:58;31112:8;31107:2;31099:6;31095:15;31088:33;31009:119;:::o;31134:221::-;31274:34;31270:1;31262:6;31258:14;31251:58;31343:4;31338:2;31330:6;31326:15;31319:29;31240:115;:::o;31361:290::-;31501:34;31497:1;31489:6;31485:14;31478:58;31570:34;31565:2;31557:6;31553:15;31546:59;31639:4;31634:2;31626:6;31622:15;31615:29;31467:184;:::o;31657:179::-;31797:31;31793:1;31785:6;31781:14;31774:55;31763:73;:::o;31842:223::-;31982:34;31978:1;31970:6;31966:14;31959:58;32051:6;32046:2;32038:6;32034:15;32027:31;31948:117;:::o;32071:225::-;32211:34;32207:1;32199:6;32195:14;32188:58;32280:8;32275:2;32267:6;32263:15;32256:33;32177:119;:::o;32302:166::-;32442:18;32438:1;32430:6;32426:14;32419:42;32408:60;:::o;32474:172::-;32614:24;32610:1;32602:6;32598:14;32591:48;32580:66;:::o;32652:165::-;32792:17;32788:1;32780:6;32776:14;32769:41;32758:59;:::o;32823:182::-;32963:34;32959:1;32951:6;32947:14;32940:58;32929:76;:::o;33011:224::-;33151:34;33147:1;33139:6;33135:14;33128:58;33220:7;33215:2;33207:6;33203:15;33196:32;33117:118;:::o;33241:236::-;33381:34;33377:1;33369:6;33365:14;33358:58;33450:19;33445:2;33437:6;33433:15;33426:44;33347:130;:::o;33483:220::-;33623:34;33619:1;33611:6;33607:14;33600:58;33692:3;33687:2;33679:6;33675:15;33668:28;33589:114;:::o;33709:224::-;33849:34;33845:1;33837:6;33833:14;33826:58;33918:7;33913:2;33905:6;33901:15;33894:32;33815:118;:::o;33939:223::-;34079:34;34075:1;34067:6;34063:14;34056:58;34148:6;34143:2;34135:6;34131:15;34124:31;34045:117;:::o;34168:227::-;34308:34;34304:1;34296:6;34292:14;34285:58;34377:10;34372:2;34364:6;34360:15;34353:35;34274:121;:::o;34401:224::-;34541:34;34537:1;34529:6;34525:14;34518:58;34610:7;34605:2;34597:6;34593:15;34586:32;34507:118;:::o;34631:228::-;34771:34;34767:1;34759:6;34755:14;34748:58;34840:11;34835:2;34827:6;34823:15;34816:36;34737:122;:::o;34865:181::-;35005:33;35001:1;34993:6;34989:14;34982:57;34971:75;:::o;35052:122::-;35125:24;35143:5;35125:24;:::i;:::-;35118:5;35115:35;35105:2;;35164:1;35161;35154:12;35105:2;35095:79;:::o;35180:116::-;35250:21;35265:5;35250:21;:::i;:::-;35243:5;35240:32;35230:2;;35286:1;35283;35276:12;35230:2;35220:76;:::o;35302:150::-;35389:38;35421:5;35389:38;:::i;:::-;35382:5;35379:49;35369:2;;35442:1;35439;35432:12;35369:2;35359:93;:::o;35458:122::-;35531:24;35549:5;35531:24;:::i;:::-;35524:5;35521:35;35511:2;;35570:1;35567;35560:12;35511:2;35501:79;:::o

Swarm Source

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