ETH Price: $3,783.48 (+1.20%)
Gas: 4 Gwei

Token

888 Hunters Of Evil (EVIL)
 

Overview

Max Total Supply

419 EVIL

Holders

216

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 EVIL
0x058FD36A48e1C9980B34b41eaC8a46C3EAF19A41
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:
HuntersOfEvil

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-22
*/

/**
 *Submitted for verification at Etherscan.io on 2022-06-22
*/

// SPDX-License-Identifier: MIT

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

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

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Moves `amount` tokens from the caller's account to `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);

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

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

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

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


// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

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

// 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 v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Address.sol


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: @openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;



/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    function safeTransfer(
        IERC20 token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
        }
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) {
            // Return data is optional
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}


// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


/**
 * @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`, 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 be 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 Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

// File: contracts/TwistedToonz.sol


// Creator: Chiru Labs

pragma solidity ^0.8.0;









/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Does not support burning tokens to address(0).
 *
 * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        require(index < totalSupply(), "ERC721A: global index out of bounds");
        return index;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        revert("ERC721A: unable to get token of owner by index");
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        require(owner != address(0), "ERC721A: balance query for the zero address");
        return uint256(_addressData[owner].balance);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        require(owner != address(0), "ERC721A: number minted query for the zero address");
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

        unchecked {
            for (uint256 curr = tokenId; curr >= 0; curr--) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (ownership.addr != address(0)) {
                    return ownership;
                }
            }
        }

        revert("ERC721A: unable to determine the owner of token");
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        require(to != owner, "ERC721A: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721A: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        require(_exists(tokenId), "ERC721A: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        require(operator != _msgSender(), "ERC721A: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            "ERC721A: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, "");
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), "ERC721A: mint to the zero address");
        require(quantity != 0, "ERC721A: quantity must be greater than 0");

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint128(quantity);
            _addressData[to].numberMinted += uint128(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe) {
                    require(
                        _checkOnERC721Received(address(0), to, updatedIndex, _data),
                        "ERC721A: transfer to non ERC721Receiver implementer"
                    );
                }

                updatedIndex++;
            }

            currentIndex = updatedIndex;
        }

        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            getApproved(tokenId) == _msgSender() ||
            isApprovedForAll(prevOwnership.addr, _msgSender()));

        require(isApprovedOrOwner, "ERC721A: transfer caller is not owner nor approved");

        require(prevOwnership.addr == from, "ERC721A: transfer from incorrect owner");
        require(to != address(0), "ERC721A: transfer to the zero address");

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, prevOwnership.addr);

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                if (_exists(nextTokenId)) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        address owner
    ) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721A: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

contract HuntersOfEvil is ERC721A, Ownable, ReentrancyGuard {

  string public        baseURI;
  uint public          price             = 0.005 ether;
  uint public          maxPerTx          = 20;
  uint public          totalFree         = 400;
  uint public          maxSupply         = 888;
  uint256 public        maxFreePerWallet = 2;
  bool public          mintEnabled;
  mapping(address => uint256) private _mintedFreeAmount;

  constructor() ERC721A("888 Hunters Of Evil", "EVIL"){
  }

  function mint(uint256 amount) external payable
  {
    uint cost = price;
    
    bool isFree = ((totalSupply() + amount < totalFree + 1) &&
            (_mintedFreeAmount[msg.sender] + amount <= maxFreePerWallet));

    if(isFree) {
      cost = 0;
    }
    require(mintEnabled, "Minting is not live yet, hold on");
    require(totalSupply() + amount < maxSupply + 1,"No more");
    require(msg.value == amount * cost,"Please send the exact amount");
    require(amount < maxPerTx + 1, "Max per TX reached");
    
    if (isFree) {
            _mintedFreeAmount[msg.sender] += amount;
        }

    _safeMint(msg.sender, amount);
  }

  function ownerBatchMint(uint256 amount) external onlyOwner
  {
    require(totalSupply() + amount < maxSupply + 1,"too many!");

    _safeMint(msg.sender, amount);
  }

  function toggleMinting() external onlyOwner {
      mintEnabled = !mintEnabled;
  }

  function numberMinted(address owner) public view returns (uint256) {
    return _numberMinted(owner);
  }

  function setBaseURI(string calldata baseURI_) external onlyOwner {
    baseURI = baseURI_;
  }

  function setPrice(uint256 price_) external onlyOwner {
      price = price_;
  }

  function setTotalFree(uint256 totalFree_) external onlyOwner {
      totalFree = totalFree_;
  }

  function setMaxPerTx(uint256 maxPerTx_) external onlyOwner {
      maxPerTx = maxPerTx_;
  }

  function _baseURI() internal view virtual override returns (string memory) {
    return baseURI;
  }

  function withdraw() external onlyOwner nonReentrant {
    (bool success, ) = msg.sender.call{value: address(this).balance}("");
    require(success, "Transfer failed.");
  }

}

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":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreePerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ownerBatchMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxPerTx_","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price_","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"totalFree_","type":"uint256"}],"name":"setTotalFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526611c37937e08000600a556014600b55610190600c55610378600d556002600e553480156200003257600080fd5b506040518060400160405280601381526020017f3838382048756e74657273204f66204576696c000000000000000000000000008152506040518060400160405280600481526020017f4556494c000000000000000000000000000000000000000000000000000000008152508160019080519060200190620000b7929190620001cf565b508060029080519060200190620000d0929190620001cf565b505050620000f3620000e76200010160201b60201c565b6200010960201b60201c565b6001600881905550620002e4565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001dd906200027f565b90600052602060002090601f0160209004810192826200020157600085556200024d565b82601f106200021c57805160ff19168380011785556200024d565b828001600101855582156200024d579182015b828111156200024c5782518255916020019190600101906200022f565b5b5090506200025c919062000260565b5090565b5b808211156200027b57600081600090555060010162000261565b5090565b600060028204905060018216806200029857607f821691505b60208210811415620002af57620002ae620002b5565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61478580620002f46000396000f3fe6080604052600436106102045760003560e01c80637d55094d11610118578063b88d4fde116100a0578063d5abeb011161006f578063d5abeb0114610732578063dc33e6811461075d578063e985e9c51461079a578063f2fde38b146107d7578063f968adbe1461080057610204565b8063b88d4fde14610678578063c6f6f216146106a1578063c87b56dd146106ca578063d12397301461070757610204565b806395d89b41116100e757806395d89b41146105b2578063a035b1fe146105dd578063a0712d6814610608578063a22cb46514610624578063a70273571461064d57610204565b80637d55094d1461051e5780638da5cb5b146105355780638db89f071461056057806391b7f5ed1461058957610204565b80633ccfd60b1161019b578063563aaf111161016a578063563aaf11146104395780636352211e146104625780636c0360eb1461049f57806370a08231146104ca578063715018a61461050757610204565b80633ccfd60b1461039357806342842e0e146103aa5780634f6ccce7146103d357806355f804b31461041057610204565b806318160ddd116101d757806318160ddd146102d757806323b872dd146103025780632f745c591461032b578063333e44e61461036857610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b91906131bb565b61082b565b60405161023d91906137d3565b60405180910390f35b34801561025257600080fd5b5061025b610975565b60405161026891906137ee565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190613262565b610a07565b6040516102a5919061376c565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d0919061317b565b610a8c565b005b3480156102e357600080fd5b506102ec610ba5565b6040516102f99190613b70565b60405180910390f35b34801561030e57600080fd5b5061032960048036038101906103249190613065565b610bae565b005b34801561033757600080fd5b50610352600480360381019061034d919061317b565b610bbe565b60405161035f9190613b70565b60405180910390f35b34801561037457600080fd5b5061037d610db0565b60405161038a9190613b70565b60405180910390f35b34801561039f57600080fd5b506103a8610db6565b005b3480156103b657600080fd5b506103d160048036038101906103cc9190613065565b610f37565b005b3480156103df57600080fd5b506103fa60048036038101906103f59190613262565b610f57565b6040516104079190613b70565b60405180910390f35b34801561041c57600080fd5b5061043760048036038101906104329190613215565b610faa565b005b34801561044557600080fd5b50610460600480360381019061045b9190613262565b61103c565b005b34801561046e57600080fd5b5061048960048036038101906104849190613262565b6110c2565b604051610496919061376c565b60405180910390f35b3480156104ab57600080fd5b506104b46110d8565b6040516104c191906137ee565b60405180910390f35b3480156104d657600080fd5b506104f160048036038101906104ec9190612ff8565b611166565b6040516104fe9190613b70565b60405180910390f35b34801561051357600080fd5b5061051c61124f565b005b34801561052a57600080fd5b506105336112d7565b005b34801561054157600080fd5b5061054a61137f565b604051610557919061376c565b60405180910390f35b34801561056c57600080fd5b5061058760048036038101906105829190613262565b6113a9565b005b34801561059557600080fd5b506105b060048036038101906105ab9190613262565b611494565b005b3480156105be57600080fd5b506105c761151a565b6040516105d491906137ee565b60405180910390f35b3480156105e957600080fd5b506105f26115ac565b6040516105ff9190613b70565b60405180910390f35b610622600480360381019061061d9190613262565b6115b2565b005b34801561063057600080fd5b5061064b6004803603810190610646919061313b565b6117fd565b005b34801561065957600080fd5b5061066261197e565b60405161066f9190613b70565b60405180910390f35b34801561068457600080fd5b5061069f600480360381019061069a91906130b8565b611984565b005b3480156106ad57600080fd5b506106c860048036038101906106c39190613262565b6119e0565b005b3480156106d657600080fd5b506106f160048036038101906106ec9190613262565b611a66565b6040516106fe91906137ee565b60405180910390f35b34801561071357600080fd5b5061071c611b0e565b60405161072991906137d3565b60405180910390f35b34801561073e57600080fd5b50610747611b21565b6040516107549190613b70565b60405180910390f35b34801561076957600080fd5b50610784600480360381019061077f9190612ff8565b611b27565b6040516107919190613b70565b60405180910390f35b3480156107a657600080fd5b506107c160048036038101906107bc9190613025565b611b39565b6040516107ce91906137d3565b60405180910390f35b3480156107e357600080fd5b506107fe60048036038101906107f99190612ff8565b611bcd565b005b34801561080c57600080fd5b50610815611cc5565b6040516108229190613b70565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108f657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061095e57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061096e575061096d82611ccb565b5b9050919050565b60606001805461098490613dfa565b80601f01602080910402602001604051908101604052809291908181526020018280546109b090613dfa565b80156109fd5780601f106109d2576101008083540402835291602001916109fd565b820191906000526020600020905b8154815290600101906020018083116109e057829003601f168201915b5050505050905090565b6000610a1282611d35565b610a51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4890613b50565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a97826110c2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aff90613a30565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b27611d42565b73ffffffffffffffffffffffffffffffffffffffff161480610b565750610b5581610b50611d42565b611b39565b5b610b95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8c90613930565b60405180910390fd5b610ba0838383611d4a565b505050565b60008054905090565b610bb9838383611dfc565b505050565b6000610bc983611166565b8210610c0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0190613810565b60405180910390fd5b6000610c14610ba5565b905060008060005b83811015610d6e576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610d0e57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d605786841415610d57578195505050505050610daa565b83806001019450505b508080600101915050610c1c565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da190613af0565b60405180910390fd5b92915050565b600c5481565b610dbe611d42565b73ffffffffffffffffffffffffffffffffffffffff16610ddc61137f565b73ffffffffffffffffffffffffffffffffffffffff1614610e32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2990613990565b60405180910390fd5b60026008541415610e78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6f90613b10565b60405180910390fd5b600260088190555060003373ffffffffffffffffffffffffffffffffffffffff1647604051610ea690613757565b60006040518083038185875af1925050503d8060008114610ee3576040519150601f19603f3d011682016040523d82523d6000602084013e610ee8565b606091505b5050905080610f2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2390613a50565b60405180910390fd5b506001600881905550565b610f5283838360405180602001604052806000815250611984565b505050565b6000610f61610ba5565b8210610fa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f99906138b0565b60405180910390fd5b819050919050565b610fb2611d42565b73ffffffffffffffffffffffffffffffffffffffff16610fd061137f565b73ffffffffffffffffffffffffffffffffffffffff1614611026576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101d90613990565b60405180910390fd5b818160099190611037929190612dec565b505050565b611044611d42565b73ffffffffffffffffffffffffffffffffffffffff1661106261137f565b73ffffffffffffffffffffffffffffffffffffffff16146110b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110af90613990565b60405180910390fd5b80600c8190555050565b60006110cd8261233c565b600001519050919050565b600980546110e590613dfa565b80601f016020809104026020016040519081016040528092919081815260200182805461111190613dfa565b801561115e5780601f106111335761010080835404028352916020019161115e565b820191906000526020600020905b81548152906001019060200180831161114157829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ce90613950565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611257611d42565b73ffffffffffffffffffffffffffffffffffffffff1661127561137f565b73ffffffffffffffffffffffffffffffffffffffff16146112cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c290613990565b60405180910390fd5b6112d560006124d6565b565b6112df611d42565b73ffffffffffffffffffffffffffffffffffffffff166112fd61137f565b73ffffffffffffffffffffffffffffffffffffffff1614611353576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134a90613990565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6113b1611d42565b73ffffffffffffffffffffffffffffffffffffffff166113cf61137f565b73ffffffffffffffffffffffffffffffffffffffff1614611425576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141c90613990565b60405180910390fd5b6001600d546114349190613c2f565b8161143d610ba5565b6114479190613c2f565b10611487576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147e90613910565b60405180910390fd5b611491338261259c565b50565b61149c611d42565b73ffffffffffffffffffffffffffffffffffffffff166114ba61137f565b73ffffffffffffffffffffffffffffffffffffffff1614611510576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150790613990565b60405180910390fd5b80600a8190555050565b60606002805461152990613dfa565b80601f016020809104026020016040519081016040528092919081815260200182805461155590613dfa565b80156115a25780601f10611577576101008083540402835291602001916115a2565b820191906000526020600020905b81548152906001019060200180831161158557829003601f168201915b5050505050905090565b600a5481565b6000600a54905060006001600c546115ca9190613c2f565b836115d3610ba5565b6115dd9190613c2f565b1080156116365750600e5483601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116339190613c2f565b11155b9050801561164357600091505b600f60009054906101000a900460ff16611692576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168990613890565b60405180910390fd5b6001600d546116a19190613c2f565b836116aa610ba5565b6116b49190613c2f565b106116f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116eb90613830565b60405180910390fd5b81836117009190613cb6565b3414611741576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173890613a10565b60405180910390fd5b6001600b546117509190613c2f565b8310611791576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178890613a90565b60405180910390fd5b80156117ee5782601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117e69190613c2f565b925050819055505b6117f8338461259c565b505050565b611805611d42565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611873576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186a906139d0565b60405180910390fd5b8060066000611880611d42565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661192d611d42565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161197291906137d3565b60405180910390a35050565b600e5481565b61198f848484611dfc565b61199b848484846125ba565b6119da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d190613a70565b60405180910390fd5b50505050565b6119e8611d42565b73ffffffffffffffffffffffffffffffffffffffff16611a0661137f565b73ffffffffffffffffffffffffffffffffffffffff1614611a5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5390613990565b60405180910390fd5b80600b8190555050565b6060611a7182611d35565b611ab0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa7906139b0565b60405180910390fd5b6000611aba612751565b9050600081511415611adb5760405180602001604052806000815250611b06565b80611ae5846127e3565b604051602001611af6929190613733565b6040516020818303038152906040525b915050919050565b600f60009054906101000a900460ff1681565b600d5481565b6000611b3282612944565b9050919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611bd5611d42565b73ffffffffffffffffffffffffffffffffffffffff16611bf361137f565b73ffffffffffffffffffffffffffffffffffffffff1614611c49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4090613990565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611cb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb090613850565b60405180910390fd5b611cc2816124d6565b50565b600b5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611e078261233c565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611e2e611d42565b73ffffffffffffffffffffffffffffffffffffffff161480611e8a5750611e53611d42565b73ffffffffffffffffffffffffffffffffffffffff16611e7284610a07565b73ffffffffffffffffffffffffffffffffffffffff16145b80611ea65750611ea58260000151611ea0611d42565b611b39565b5b905080611ee8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611edf906139f0565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611f5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5190613970565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611fca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc1906138d0565b60405180910390fd5b611fd78585856001612a2d565b611fe76000848460000151611d4a565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156122cc5761222b81611d35565b156122cb5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123358585856001612a33565b5050505050565b612344612e72565b61234d82611d35565b61238c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238390613870565b60405180910390fd5b60008290505b60008110612495576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146124865780925050506124d1565b50808060019003915050612392565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c890613b30565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6125b6828260405180602001604052806000815250612a39565b5050565b60006125db8473ffffffffffffffffffffffffffffffffffffffff16612a4b565b15612744578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612604611d42565b8786866040518563ffffffff1660e01b81526004016126269493929190613787565b602060405180830381600087803b15801561264057600080fd5b505af192505050801561267157506040513d601f19601f8201168201806040525081019061266e91906131e8565b60015b6126f4573d80600081146126a1576040519150601f19603f3d011682016040523d82523d6000602084013e6126a6565b606091505b506000815114156126ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e390613a70565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612749565b600190505b949350505050565b60606009805461276090613dfa565b80601f016020809104026020016040519081016040528092919081815260200182805461278c90613dfa565b80156127d95780601f106127ae576101008083540402835291602001916127d9565b820191906000526020600020905b8154815290600101906020018083116127bc57829003601f168201915b5050505050905090565b6060600082141561282b576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061293f565b600082905060005b6000821461285d57808061284690613e5d565b915050600a826128569190613c85565b9150612833565b60008167ffffffffffffffff81111561287957612878613f93565b5b6040519080825280601f01601f1916602001820160405280156128ab5781602001600182028036833780820191505090505b5090505b60008514612938576001826128c49190613d10565b9150600a856128d39190613ea6565b60306128df9190613c2f565b60f81b8183815181106128f5576128f4613f64565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129319190613c85565b94506128af565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129ac906138f0565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b612a468383836001612a6e565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612ae4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612adb90613ab0565b60405180910390fd5b6000841415612b28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1f90613ad0565b60405180910390fd5b612b356000868387612a2d565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612dcf57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315612dba57612d7a60008884886125ba565b612db9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612db090613a70565b60405180910390fd5b5b81806001019250508080600101915050612d03565b508060008190555050612de56000868387612a33565b5050505050565b828054612df890613dfa565b90600052602060002090601f016020900481019282612e1a5760008555612e61565b82601f10612e3357803560ff1916838001178555612e61565b82800160010185558215612e61579182015b82811115612e60578235825591602001919060010190612e45565b5b509050612e6e9190612eac565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612ec5576000816000905550600101612ead565b5090565b6000612edc612ed784613bb0565b613b8b565b905082815260208101848484011115612ef857612ef7613fd1565b5b612f03848285613db8565b509392505050565b600081359050612f1a816146f3565b92915050565b600081359050612f2f8161470a565b92915050565b600081359050612f4481614721565b92915050565b600081519050612f5981614721565b92915050565b600082601f830112612f7457612f73613fc7565b5b8135612f84848260208601612ec9565b91505092915050565b60008083601f840112612fa357612fa2613fc7565b5b8235905067ffffffffffffffff811115612fc057612fbf613fc2565b5b602083019150836001820283011115612fdc57612fdb613fcc565b5b9250929050565b600081359050612ff281614738565b92915050565b60006020828403121561300e5761300d613fdb565b5b600061301c84828501612f0b565b91505092915050565b6000806040838503121561303c5761303b613fdb565b5b600061304a85828601612f0b565b925050602061305b85828601612f0b565b9150509250929050565b60008060006060848603121561307e5761307d613fdb565b5b600061308c86828701612f0b565b935050602061309d86828701612f0b565b92505060406130ae86828701612fe3565b9150509250925092565b600080600080608085870312156130d2576130d1613fdb565b5b60006130e087828801612f0b565b94505060206130f187828801612f0b565b935050604061310287828801612fe3565b925050606085013567ffffffffffffffff81111561312357613122613fd6565b5b61312f87828801612f5f565b91505092959194509250565b6000806040838503121561315257613151613fdb565b5b600061316085828601612f0b565b925050602061317185828601612f20565b9150509250929050565b6000806040838503121561319257613191613fdb565b5b60006131a085828601612f0b565b92505060206131b185828601612fe3565b9150509250929050565b6000602082840312156131d1576131d0613fdb565b5b60006131df84828501612f35565b91505092915050565b6000602082840312156131fe576131fd613fdb565b5b600061320c84828501612f4a565b91505092915050565b6000806020838503121561322c5761322b613fdb565b5b600083013567ffffffffffffffff81111561324a57613249613fd6565b5b61325685828601612f8d565b92509250509250929050565b60006020828403121561327857613277613fdb565b5b600061328684828501612fe3565b91505092915050565b61329881613d44565b82525050565b6132a781613d56565b82525050565b60006132b882613be1565b6132c28185613bf7565b93506132d2818560208601613dc7565b6132db81613fe0565b840191505092915050565b60006132f182613bec565b6132fb8185613c13565b935061330b818560208601613dc7565b61331481613fe0565b840191505092915050565b600061332a82613bec565b6133348185613c24565b9350613344818560208601613dc7565b80840191505092915050565b600061335d602283613c13565b915061336882613ff1565b604082019050919050565b6000613380600783613c13565b915061338b82614040565b602082019050919050565b60006133a3602683613c13565b91506133ae82614069565b604082019050919050565b60006133c6602a83613c13565b91506133d1826140b8565b604082019050919050565b60006133e9602083613c13565b91506133f482614107565b602082019050919050565b600061340c602383613c13565b915061341782614130565b604082019050919050565b600061342f602583613c13565b915061343a8261417f565b604082019050919050565b6000613452603183613c13565b915061345d826141ce565b604082019050919050565b6000613475600983613c13565b91506134808261421d565b602082019050919050565b6000613498603983613c13565b91506134a382614246565b604082019050919050565b60006134bb602b83613c13565b91506134c682614295565b604082019050919050565b60006134de602683613c13565b91506134e9826142e4565b604082019050919050565b6000613501602083613c13565b915061350c82614333565b602082019050919050565b6000613524602f83613c13565b915061352f8261435c565b604082019050919050565b6000613547601a83613c13565b9150613552826143ab565b602082019050919050565b600061356a603283613c13565b9150613575826143d4565b604082019050919050565b600061358d601c83613c13565b915061359882614423565b602082019050919050565b60006135b0602283613c13565b91506135bb8261444c565b604082019050919050565b60006135d3600083613c08565b91506135de8261449b565b600082019050919050565b60006135f6601083613c13565b91506136018261449e565b602082019050919050565b6000613619603383613c13565b9150613624826144c7565b604082019050919050565b600061363c601283613c13565b915061364782614516565b602082019050919050565b600061365f602183613c13565b915061366a8261453f565b604082019050919050565b6000613682602883613c13565b915061368d8261458e565b604082019050919050565b60006136a5602e83613c13565b91506136b0826145dd565b604082019050919050565b60006136c8601f83613c13565b91506136d38261462c565b602082019050919050565b60006136eb602f83613c13565b91506136f682614655565b604082019050919050565b600061370e602d83613c13565b9150613719826146a4565b604082019050919050565b61372d81613dae565b82525050565b600061373f828561331f565b915061374b828461331f565b91508190509392505050565b6000613762826135c6565b9150819050919050565b6000602082019050613781600083018461328f565b92915050565b600060808201905061379c600083018761328f565b6137a9602083018661328f565b6137b66040830185613724565b81810360608301526137c881846132ad565b905095945050505050565b60006020820190506137e8600083018461329e565b92915050565b6000602082019050818103600083015261380881846132e6565b905092915050565b6000602082019050818103600083015261382981613350565b9050919050565b6000602082019050818103600083015261384981613373565b9050919050565b6000602082019050818103600083015261386981613396565b9050919050565b60006020820190508181036000830152613889816133b9565b9050919050565b600060208201905081810360008301526138a9816133dc565b9050919050565b600060208201905081810360008301526138c9816133ff565b9050919050565b600060208201905081810360008301526138e981613422565b9050919050565b6000602082019050818103600083015261390981613445565b9050919050565b6000602082019050818103600083015261392981613468565b9050919050565b600060208201905081810360008301526139498161348b565b9050919050565b60006020820190508181036000830152613969816134ae565b9050919050565b60006020820190508181036000830152613989816134d1565b9050919050565b600060208201905081810360008301526139a9816134f4565b9050919050565b600060208201905081810360008301526139c981613517565b9050919050565b600060208201905081810360008301526139e98161353a565b9050919050565b60006020820190508181036000830152613a098161355d565b9050919050565b60006020820190508181036000830152613a2981613580565b9050919050565b60006020820190508181036000830152613a49816135a3565b9050919050565b60006020820190508181036000830152613a69816135e9565b9050919050565b60006020820190508181036000830152613a898161360c565b9050919050565b60006020820190508181036000830152613aa98161362f565b9050919050565b60006020820190508181036000830152613ac981613652565b9050919050565b60006020820190508181036000830152613ae981613675565b9050919050565b60006020820190508181036000830152613b0981613698565b9050919050565b60006020820190508181036000830152613b29816136bb565b9050919050565b60006020820190508181036000830152613b49816136de565b9050919050565b60006020820190508181036000830152613b6981613701565b9050919050565b6000602082019050613b856000830184613724565b92915050565b6000613b95613ba6565b9050613ba18282613e2c565b919050565b6000604051905090565b600067ffffffffffffffff821115613bcb57613bca613f93565b5b613bd482613fe0565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613c3a82613dae565b9150613c4583613dae565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c7a57613c79613ed7565b5b828201905092915050565b6000613c9082613dae565b9150613c9b83613dae565b925082613cab57613caa613f06565b5b828204905092915050565b6000613cc182613dae565b9150613ccc83613dae565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613d0557613d04613ed7565b5b828202905092915050565b6000613d1b82613dae565b9150613d2683613dae565b925082821015613d3957613d38613ed7565b5b828203905092915050565b6000613d4f82613d8e565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613de5578082015181840152602081019050613dca565b83811115613df4576000848401525b50505050565b60006002820490506001821680613e1257607f821691505b60208210811415613e2657613e25613f35565b5b50919050565b613e3582613fe0565b810181811067ffffffffffffffff82111715613e5457613e53613f93565b5b80604052505050565b6000613e6882613dae565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613e9b57613e9a613ed7565b5b600182019050919050565b6000613eb182613dae565b9150613ebc83613dae565b925082613ecc57613ecb613f06565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f4d696e74696e67206973206e6f74206c697665207965742c20686f6c64206f6e600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f746f6f206d616e79210000000000000000000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f506c656173652073656e642074686520657861637420616d6f756e7400000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f4d61782070657220545820726561636865640000000000000000000000000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6146fc81613d44565b811461470757600080fd5b50565b61471381613d56565b811461471e57600080fd5b50565b61472a81613d62565b811461473557600080fd5b50565b61474181613dae565b811461474c57600080fd5b5056fea2646970667358221220a43dbf320caefd4f09387b7a02fadf4f67abdd3ad693b678cf653fb30cd08e1664736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102045760003560e01c80637d55094d11610118578063b88d4fde116100a0578063d5abeb011161006f578063d5abeb0114610732578063dc33e6811461075d578063e985e9c51461079a578063f2fde38b146107d7578063f968adbe1461080057610204565b8063b88d4fde14610678578063c6f6f216146106a1578063c87b56dd146106ca578063d12397301461070757610204565b806395d89b41116100e757806395d89b41146105b2578063a035b1fe146105dd578063a0712d6814610608578063a22cb46514610624578063a70273571461064d57610204565b80637d55094d1461051e5780638da5cb5b146105355780638db89f071461056057806391b7f5ed1461058957610204565b80633ccfd60b1161019b578063563aaf111161016a578063563aaf11146104395780636352211e146104625780636c0360eb1461049f57806370a08231146104ca578063715018a61461050757610204565b80633ccfd60b1461039357806342842e0e146103aa5780634f6ccce7146103d357806355f804b31461041057610204565b806318160ddd116101d757806318160ddd146102d757806323b872dd146103025780632f745c591461032b578063333e44e61461036857610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b91906131bb565b61082b565b60405161023d91906137d3565b60405180910390f35b34801561025257600080fd5b5061025b610975565b60405161026891906137ee565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190613262565b610a07565b6040516102a5919061376c565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d0919061317b565b610a8c565b005b3480156102e357600080fd5b506102ec610ba5565b6040516102f99190613b70565b60405180910390f35b34801561030e57600080fd5b5061032960048036038101906103249190613065565b610bae565b005b34801561033757600080fd5b50610352600480360381019061034d919061317b565b610bbe565b60405161035f9190613b70565b60405180910390f35b34801561037457600080fd5b5061037d610db0565b60405161038a9190613b70565b60405180910390f35b34801561039f57600080fd5b506103a8610db6565b005b3480156103b657600080fd5b506103d160048036038101906103cc9190613065565b610f37565b005b3480156103df57600080fd5b506103fa60048036038101906103f59190613262565b610f57565b6040516104079190613b70565b60405180910390f35b34801561041c57600080fd5b5061043760048036038101906104329190613215565b610faa565b005b34801561044557600080fd5b50610460600480360381019061045b9190613262565b61103c565b005b34801561046e57600080fd5b5061048960048036038101906104849190613262565b6110c2565b604051610496919061376c565b60405180910390f35b3480156104ab57600080fd5b506104b46110d8565b6040516104c191906137ee565b60405180910390f35b3480156104d657600080fd5b506104f160048036038101906104ec9190612ff8565b611166565b6040516104fe9190613b70565b60405180910390f35b34801561051357600080fd5b5061051c61124f565b005b34801561052a57600080fd5b506105336112d7565b005b34801561054157600080fd5b5061054a61137f565b604051610557919061376c565b60405180910390f35b34801561056c57600080fd5b5061058760048036038101906105829190613262565b6113a9565b005b34801561059557600080fd5b506105b060048036038101906105ab9190613262565b611494565b005b3480156105be57600080fd5b506105c761151a565b6040516105d491906137ee565b60405180910390f35b3480156105e957600080fd5b506105f26115ac565b6040516105ff9190613b70565b60405180910390f35b610622600480360381019061061d9190613262565b6115b2565b005b34801561063057600080fd5b5061064b6004803603810190610646919061313b565b6117fd565b005b34801561065957600080fd5b5061066261197e565b60405161066f9190613b70565b60405180910390f35b34801561068457600080fd5b5061069f600480360381019061069a91906130b8565b611984565b005b3480156106ad57600080fd5b506106c860048036038101906106c39190613262565b6119e0565b005b3480156106d657600080fd5b506106f160048036038101906106ec9190613262565b611a66565b6040516106fe91906137ee565b60405180910390f35b34801561071357600080fd5b5061071c611b0e565b60405161072991906137d3565b60405180910390f35b34801561073e57600080fd5b50610747611b21565b6040516107549190613b70565b60405180910390f35b34801561076957600080fd5b50610784600480360381019061077f9190612ff8565b611b27565b6040516107919190613b70565b60405180910390f35b3480156107a657600080fd5b506107c160048036038101906107bc9190613025565b611b39565b6040516107ce91906137d3565b60405180910390f35b3480156107e357600080fd5b506107fe60048036038101906107f99190612ff8565b611bcd565b005b34801561080c57600080fd5b50610815611cc5565b6040516108229190613b70565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108f657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061095e57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061096e575061096d82611ccb565b5b9050919050565b60606001805461098490613dfa565b80601f01602080910402602001604051908101604052809291908181526020018280546109b090613dfa565b80156109fd5780601f106109d2576101008083540402835291602001916109fd565b820191906000526020600020905b8154815290600101906020018083116109e057829003601f168201915b5050505050905090565b6000610a1282611d35565b610a51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4890613b50565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a97826110c2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aff90613a30565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b27611d42565b73ffffffffffffffffffffffffffffffffffffffff161480610b565750610b5581610b50611d42565b611b39565b5b610b95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8c90613930565b60405180910390fd5b610ba0838383611d4a565b505050565b60008054905090565b610bb9838383611dfc565b505050565b6000610bc983611166565b8210610c0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0190613810565b60405180910390fd5b6000610c14610ba5565b905060008060005b83811015610d6e576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610d0e57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d605786841415610d57578195505050505050610daa565b83806001019450505b508080600101915050610c1c565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da190613af0565b60405180910390fd5b92915050565b600c5481565b610dbe611d42565b73ffffffffffffffffffffffffffffffffffffffff16610ddc61137f565b73ffffffffffffffffffffffffffffffffffffffff1614610e32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2990613990565b60405180910390fd5b60026008541415610e78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6f90613b10565b60405180910390fd5b600260088190555060003373ffffffffffffffffffffffffffffffffffffffff1647604051610ea690613757565b60006040518083038185875af1925050503d8060008114610ee3576040519150601f19603f3d011682016040523d82523d6000602084013e610ee8565b606091505b5050905080610f2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2390613a50565b60405180910390fd5b506001600881905550565b610f5283838360405180602001604052806000815250611984565b505050565b6000610f61610ba5565b8210610fa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f99906138b0565b60405180910390fd5b819050919050565b610fb2611d42565b73ffffffffffffffffffffffffffffffffffffffff16610fd061137f565b73ffffffffffffffffffffffffffffffffffffffff1614611026576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101d90613990565b60405180910390fd5b818160099190611037929190612dec565b505050565b611044611d42565b73ffffffffffffffffffffffffffffffffffffffff1661106261137f565b73ffffffffffffffffffffffffffffffffffffffff16146110b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110af90613990565b60405180910390fd5b80600c8190555050565b60006110cd8261233c565b600001519050919050565b600980546110e590613dfa565b80601f016020809104026020016040519081016040528092919081815260200182805461111190613dfa565b801561115e5780601f106111335761010080835404028352916020019161115e565b820191906000526020600020905b81548152906001019060200180831161114157829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ce90613950565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611257611d42565b73ffffffffffffffffffffffffffffffffffffffff1661127561137f565b73ffffffffffffffffffffffffffffffffffffffff16146112cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c290613990565b60405180910390fd5b6112d560006124d6565b565b6112df611d42565b73ffffffffffffffffffffffffffffffffffffffff166112fd61137f565b73ffffffffffffffffffffffffffffffffffffffff1614611353576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134a90613990565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6113b1611d42565b73ffffffffffffffffffffffffffffffffffffffff166113cf61137f565b73ffffffffffffffffffffffffffffffffffffffff1614611425576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141c90613990565b60405180910390fd5b6001600d546114349190613c2f565b8161143d610ba5565b6114479190613c2f565b10611487576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147e90613910565b60405180910390fd5b611491338261259c565b50565b61149c611d42565b73ffffffffffffffffffffffffffffffffffffffff166114ba61137f565b73ffffffffffffffffffffffffffffffffffffffff1614611510576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150790613990565b60405180910390fd5b80600a8190555050565b60606002805461152990613dfa565b80601f016020809104026020016040519081016040528092919081815260200182805461155590613dfa565b80156115a25780601f10611577576101008083540402835291602001916115a2565b820191906000526020600020905b81548152906001019060200180831161158557829003601f168201915b5050505050905090565b600a5481565b6000600a54905060006001600c546115ca9190613c2f565b836115d3610ba5565b6115dd9190613c2f565b1080156116365750600e5483601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116339190613c2f565b11155b9050801561164357600091505b600f60009054906101000a900460ff16611692576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168990613890565b60405180910390fd5b6001600d546116a19190613c2f565b836116aa610ba5565b6116b49190613c2f565b106116f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116eb90613830565b60405180910390fd5b81836117009190613cb6565b3414611741576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173890613a10565b60405180910390fd5b6001600b546117509190613c2f565b8310611791576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178890613a90565b60405180910390fd5b80156117ee5782601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117e69190613c2f565b925050819055505b6117f8338461259c565b505050565b611805611d42565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611873576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186a906139d0565b60405180910390fd5b8060066000611880611d42565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661192d611d42565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161197291906137d3565b60405180910390a35050565b600e5481565b61198f848484611dfc565b61199b848484846125ba565b6119da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d190613a70565b60405180910390fd5b50505050565b6119e8611d42565b73ffffffffffffffffffffffffffffffffffffffff16611a0661137f565b73ffffffffffffffffffffffffffffffffffffffff1614611a5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5390613990565b60405180910390fd5b80600b8190555050565b6060611a7182611d35565b611ab0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa7906139b0565b60405180910390fd5b6000611aba612751565b9050600081511415611adb5760405180602001604052806000815250611b06565b80611ae5846127e3565b604051602001611af6929190613733565b6040516020818303038152906040525b915050919050565b600f60009054906101000a900460ff1681565b600d5481565b6000611b3282612944565b9050919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611bd5611d42565b73ffffffffffffffffffffffffffffffffffffffff16611bf361137f565b73ffffffffffffffffffffffffffffffffffffffff1614611c49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4090613990565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611cb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb090613850565b60405180910390fd5b611cc2816124d6565b50565b600b5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611e078261233c565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611e2e611d42565b73ffffffffffffffffffffffffffffffffffffffff161480611e8a5750611e53611d42565b73ffffffffffffffffffffffffffffffffffffffff16611e7284610a07565b73ffffffffffffffffffffffffffffffffffffffff16145b80611ea65750611ea58260000151611ea0611d42565b611b39565b5b905080611ee8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611edf906139f0565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611f5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5190613970565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611fca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc1906138d0565b60405180910390fd5b611fd78585856001612a2d565b611fe76000848460000151611d4a565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156122cc5761222b81611d35565b156122cb5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123358585856001612a33565b5050505050565b612344612e72565b61234d82611d35565b61238c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238390613870565b60405180910390fd5b60008290505b60008110612495576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146124865780925050506124d1565b50808060019003915050612392565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c890613b30565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6125b6828260405180602001604052806000815250612a39565b5050565b60006125db8473ffffffffffffffffffffffffffffffffffffffff16612a4b565b15612744578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612604611d42565b8786866040518563ffffffff1660e01b81526004016126269493929190613787565b602060405180830381600087803b15801561264057600080fd5b505af192505050801561267157506040513d601f19601f8201168201806040525081019061266e91906131e8565b60015b6126f4573d80600081146126a1576040519150601f19603f3d011682016040523d82523d6000602084013e6126a6565b606091505b506000815114156126ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e390613a70565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612749565b600190505b949350505050565b60606009805461276090613dfa565b80601f016020809104026020016040519081016040528092919081815260200182805461278c90613dfa565b80156127d95780601f106127ae576101008083540402835291602001916127d9565b820191906000526020600020905b8154815290600101906020018083116127bc57829003601f168201915b5050505050905090565b6060600082141561282b576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061293f565b600082905060005b6000821461285d57808061284690613e5d565b915050600a826128569190613c85565b9150612833565b60008167ffffffffffffffff81111561287957612878613f93565b5b6040519080825280601f01601f1916602001820160405280156128ab5781602001600182028036833780820191505090505b5090505b60008514612938576001826128c49190613d10565b9150600a856128d39190613ea6565b60306128df9190613c2f565b60f81b8183815181106128f5576128f4613f64565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129319190613c85565b94506128af565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129ac906138f0565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b612a468383836001612a6e565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612ae4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612adb90613ab0565b60405180910390fd5b6000841415612b28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1f90613ad0565b60405180910390fd5b612b356000868387612a2d565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612dcf57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315612dba57612d7a60008884886125ba565b612db9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612db090613a70565b60405180910390fd5b5b81806001019250508080600101915050612d03565b508060008190555050612de56000868387612a33565b5050505050565b828054612df890613dfa565b90600052602060002090601f016020900481019282612e1a5760008555612e61565b82601f10612e3357803560ff1916838001178555612e61565b82800160010185558215612e61579182015b82811115612e60578235825591602001919060010190612e45565b5b509050612e6e9190612eac565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612ec5576000816000905550600101612ead565b5090565b6000612edc612ed784613bb0565b613b8b565b905082815260208101848484011115612ef857612ef7613fd1565b5b612f03848285613db8565b509392505050565b600081359050612f1a816146f3565b92915050565b600081359050612f2f8161470a565b92915050565b600081359050612f4481614721565b92915050565b600081519050612f5981614721565b92915050565b600082601f830112612f7457612f73613fc7565b5b8135612f84848260208601612ec9565b91505092915050565b60008083601f840112612fa357612fa2613fc7565b5b8235905067ffffffffffffffff811115612fc057612fbf613fc2565b5b602083019150836001820283011115612fdc57612fdb613fcc565b5b9250929050565b600081359050612ff281614738565b92915050565b60006020828403121561300e5761300d613fdb565b5b600061301c84828501612f0b565b91505092915050565b6000806040838503121561303c5761303b613fdb565b5b600061304a85828601612f0b565b925050602061305b85828601612f0b565b9150509250929050565b60008060006060848603121561307e5761307d613fdb565b5b600061308c86828701612f0b565b935050602061309d86828701612f0b565b92505060406130ae86828701612fe3565b9150509250925092565b600080600080608085870312156130d2576130d1613fdb565b5b60006130e087828801612f0b565b94505060206130f187828801612f0b565b935050604061310287828801612fe3565b925050606085013567ffffffffffffffff81111561312357613122613fd6565b5b61312f87828801612f5f565b91505092959194509250565b6000806040838503121561315257613151613fdb565b5b600061316085828601612f0b565b925050602061317185828601612f20565b9150509250929050565b6000806040838503121561319257613191613fdb565b5b60006131a085828601612f0b565b92505060206131b185828601612fe3565b9150509250929050565b6000602082840312156131d1576131d0613fdb565b5b60006131df84828501612f35565b91505092915050565b6000602082840312156131fe576131fd613fdb565b5b600061320c84828501612f4a565b91505092915050565b6000806020838503121561322c5761322b613fdb565b5b600083013567ffffffffffffffff81111561324a57613249613fd6565b5b61325685828601612f8d565b92509250509250929050565b60006020828403121561327857613277613fdb565b5b600061328684828501612fe3565b91505092915050565b61329881613d44565b82525050565b6132a781613d56565b82525050565b60006132b882613be1565b6132c28185613bf7565b93506132d2818560208601613dc7565b6132db81613fe0565b840191505092915050565b60006132f182613bec565b6132fb8185613c13565b935061330b818560208601613dc7565b61331481613fe0565b840191505092915050565b600061332a82613bec565b6133348185613c24565b9350613344818560208601613dc7565b80840191505092915050565b600061335d602283613c13565b915061336882613ff1565b604082019050919050565b6000613380600783613c13565b915061338b82614040565b602082019050919050565b60006133a3602683613c13565b91506133ae82614069565b604082019050919050565b60006133c6602a83613c13565b91506133d1826140b8565b604082019050919050565b60006133e9602083613c13565b91506133f482614107565b602082019050919050565b600061340c602383613c13565b915061341782614130565b604082019050919050565b600061342f602583613c13565b915061343a8261417f565b604082019050919050565b6000613452603183613c13565b915061345d826141ce565b604082019050919050565b6000613475600983613c13565b91506134808261421d565b602082019050919050565b6000613498603983613c13565b91506134a382614246565b604082019050919050565b60006134bb602b83613c13565b91506134c682614295565b604082019050919050565b60006134de602683613c13565b91506134e9826142e4565b604082019050919050565b6000613501602083613c13565b915061350c82614333565b602082019050919050565b6000613524602f83613c13565b915061352f8261435c565b604082019050919050565b6000613547601a83613c13565b9150613552826143ab565b602082019050919050565b600061356a603283613c13565b9150613575826143d4565b604082019050919050565b600061358d601c83613c13565b915061359882614423565b602082019050919050565b60006135b0602283613c13565b91506135bb8261444c565b604082019050919050565b60006135d3600083613c08565b91506135de8261449b565b600082019050919050565b60006135f6601083613c13565b91506136018261449e565b602082019050919050565b6000613619603383613c13565b9150613624826144c7565b604082019050919050565b600061363c601283613c13565b915061364782614516565b602082019050919050565b600061365f602183613c13565b915061366a8261453f565b604082019050919050565b6000613682602883613c13565b915061368d8261458e565b604082019050919050565b60006136a5602e83613c13565b91506136b0826145dd565b604082019050919050565b60006136c8601f83613c13565b91506136d38261462c565b602082019050919050565b60006136eb602f83613c13565b91506136f682614655565b604082019050919050565b600061370e602d83613c13565b9150613719826146a4565b604082019050919050565b61372d81613dae565b82525050565b600061373f828561331f565b915061374b828461331f565b91508190509392505050565b6000613762826135c6565b9150819050919050565b6000602082019050613781600083018461328f565b92915050565b600060808201905061379c600083018761328f565b6137a9602083018661328f565b6137b66040830185613724565b81810360608301526137c881846132ad565b905095945050505050565b60006020820190506137e8600083018461329e565b92915050565b6000602082019050818103600083015261380881846132e6565b905092915050565b6000602082019050818103600083015261382981613350565b9050919050565b6000602082019050818103600083015261384981613373565b9050919050565b6000602082019050818103600083015261386981613396565b9050919050565b60006020820190508181036000830152613889816133b9565b9050919050565b600060208201905081810360008301526138a9816133dc565b9050919050565b600060208201905081810360008301526138c9816133ff565b9050919050565b600060208201905081810360008301526138e981613422565b9050919050565b6000602082019050818103600083015261390981613445565b9050919050565b6000602082019050818103600083015261392981613468565b9050919050565b600060208201905081810360008301526139498161348b565b9050919050565b60006020820190508181036000830152613969816134ae565b9050919050565b60006020820190508181036000830152613989816134d1565b9050919050565b600060208201905081810360008301526139a9816134f4565b9050919050565b600060208201905081810360008301526139c981613517565b9050919050565b600060208201905081810360008301526139e98161353a565b9050919050565b60006020820190508181036000830152613a098161355d565b9050919050565b60006020820190508181036000830152613a2981613580565b9050919050565b60006020820190508181036000830152613a49816135a3565b9050919050565b60006020820190508181036000830152613a69816135e9565b9050919050565b60006020820190508181036000830152613a898161360c565b9050919050565b60006020820190508181036000830152613aa98161362f565b9050919050565b60006020820190508181036000830152613ac981613652565b9050919050565b60006020820190508181036000830152613ae981613675565b9050919050565b60006020820190508181036000830152613b0981613698565b9050919050565b60006020820190508181036000830152613b29816136bb565b9050919050565b60006020820190508181036000830152613b49816136de565b9050919050565b60006020820190508181036000830152613b6981613701565b9050919050565b6000602082019050613b856000830184613724565b92915050565b6000613b95613ba6565b9050613ba18282613e2c565b919050565b6000604051905090565b600067ffffffffffffffff821115613bcb57613bca613f93565b5b613bd482613fe0565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613c3a82613dae565b9150613c4583613dae565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c7a57613c79613ed7565b5b828201905092915050565b6000613c9082613dae565b9150613c9b83613dae565b925082613cab57613caa613f06565b5b828204905092915050565b6000613cc182613dae565b9150613ccc83613dae565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613d0557613d04613ed7565b5b828202905092915050565b6000613d1b82613dae565b9150613d2683613dae565b925082821015613d3957613d38613ed7565b5b828203905092915050565b6000613d4f82613d8e565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613de5578082015181840152602081019050613dca565b83811115613df4576000848401525b50505050565b60006002820490506001821680613e1257607f821691505b60208210811415613e2657613e25613f35565b5b50919050565b613e3582613fe0565b810181811067ffffffffffffffff82111715613e5457613e53613f93565b5b80604052505050565b6000613e6882613dae565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613e9b57613e9a613ed7565b5b600182019050919050565b6000613eb182613dae565b9150613ebc83613dae565b925082613ecc57613ecb613f06565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f4d696e74696e67206973206e6f74206c697665207965742c20686f6c64206f6e600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f746f6f206d616e79210000000000000000000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f506c656173652073656e642074686520657861637420616d6f756e7400000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f4d61782070657220545820726561636865640000000000000000000000000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6146fc81613d44565b811461470757600080fd5b50565b61471381613d56565b811461471e57600080fd5b50565b61472a81613d62565b811461473557600080fd5b50565b61474181613dae565b811461474c57600080fd5b5056fea2646970667358221220a43dbf320caefd4f09387b7a02fadf4f67abdd3ad693b678cf653fb30cd08e1664736f6c63430008070033

Deployed Bytecode Sourcemap

50220:2239:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37080:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38966:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40528:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40049:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35337:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41404:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36001:1007;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50425:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52278:176;;;;;;;;;;;;;:::i;:::-;;41645:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35514:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51776:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51966:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38775:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50287:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37516:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10472:103;;;;;;;;;;;;;:::i;:::-;;51572:85;;;;;;;;;;;;;:::i;:::-;;9821:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51394:172;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51878:82;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39135:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50320:52;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50731:657;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40814:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50523:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41901:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52070:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39310:335;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50570:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50474:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51663:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41173:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10730:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50377:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37080:372;37182:4;37234:25;37219:40;;;:11;:40;;;;:105;;;;37291:33;37276:48;;;:11;:48;;;;37219:105;:172;;;;37356:35;37341:50;;;:11;:50;;;;37219:172;:225;;;;37408:36;37432:11;37408:23;:36::i;:::-;37219:225;37199:245;;37080:372;;;:::o;38966:100::-;39020:13;39053:5;39046:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38966:100;:::o;40528:214::-;40596:7;40624:16;40632:7;40624;:16::i;:::-;40616:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;40710:15;:24;40726:7;40710:24;;;;;;;;;;;;;;;;;;;;;40703:31;;40528:214;;;:::o;40049:413::-;40122:13;40138:24;40154:7;40138:15;:24::i;:::-;40122:40;;40187:5;40181:11;;:2;:11;;;;40173:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;40282:5;40266:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;40291:37;40308:5;40315:12;:10;:12::i;:::-;40291:16;:37::i;:::-;40266:62;40244:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;40426:28;40435:2;40439:7;40448:5;40426:8;:28::i;:::-;40111:351;40049:413;;:::o;35337:100::-;35390:7;35417:12;;35410:19;;35337:100;:::o;41404:170::-;41538:28;41548:4;41554:2;41558:7;41538:9;:28::i;:::-;41404:170;;;:::o;36001:1007::-;36090:7;36126:16;36136:5;36126:9;:16::i;:::-;36118:5;:24;36110:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;36192:22;36217:13;:11;:13::i;:::-;36192:38;;36241:19;36271:25;36460:9;36455:466;36475:14;36471:1;:18;36455:466;;;36515:31;36549:11;:14;36561:1;36549:14;;;;;;;;;;;36515:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36612:1;36586:28;;:9;:14;;;:28;;;36582:111;;36659:9;:14;;;36639:34;;36582:111;36736:5;36715:26;;:17;:26;;;36711:195;;;36785:5;36770:11;:20;36766:85;;;36826:1;36819:8;;;;;;;;;36766:85;36873:13;;;;;;;36711:195;36496:425;36491:3;;;;;;;36455:466;;;;36944:56;;;;;;;;;;:::i;:::-;;;;;;;;36001:1007;;;;;:::o;50425:44::-;;;;:::o;52278:176::-;10052:12;:10;:12::i;:::-;10041:23;;:7;:5;:7::i;:::-;:23;;;10033:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4795:1:::1;5393:7;;:19;;5385:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;4795:1;5526:7;:18;;;;52338:12:::2;52356:10;:15;;52379:21;52356:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52337:68;;;52420:7;52412:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;52330:124;4751:1:::1;5705:7;:22;;;;52278:176::o:0;41645:185::-;41783:39;41800:4;41806:2;41810:7;41783:39;;;;;;;;;;;;:16;:39::i;:::-;41645:185;;;:::o;35514:187::-;35581:7;35617:13;:11;:13::i;:::-;35609:5;:21;35601:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;35688:5;35681:12;;35514:187;;;:::o;51776:96::-;10052:12;:10;:12::i;:::-;10041:23;;:7;:5;:7::i;:::-;:23;;;10033:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51858:8:::1;;51848:7;:18;;;;;;;:::i;:::-;;51776:96:::0;;:::o;51966:98::-;10052:12;:10;:12::i;:::-;10041:23;;:7;:5;:7::i;:::-;:23;;;10033:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52048:10:::1;52036:9;:22;;;;51966:98:::0;:::o;38775:124::-;38839:7;38866:20;38878:7;38866:11;:20::i;:::-;:25;;;38859:32;;38775:124;;;:::o;50287:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;37516:221::-;37580:7;37625:1;37608:19;;:5;:19;;;;37600:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;37701:12;:19;37714:5;37701:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;37693:36;;37686:43;;37516:221;;;:::o;10472:103::-;10052:12;:10;:12::i;:::-;10041:23;;:7;:5;:7::i;:::-;:23;;;10033:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10537:30:::1;10564:1;10537:18;:30::i;:::-;10472:103::o:0;51572:85::-;10052:12;:10;:12::i;:::-;10041:23;;:7;:5;:7::i;:::-;:23;;;10033:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51640:11:::1;;;;;;;;;;;51639:12;51625:11;;:26;;;;;;;;;;;;;;;;;;51572:85::o:0;9821:87::-;9867:7;9894:6;;;;;;;;;;;9887:13;;9821:87;:::o;51394:172::-;10052:12;:10;:12::i;:::-;10041:23;;:7;:5;:7::i;:::-;:23;;;10033:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51508:1:::1;51496:9;;:13;;;;:::i;:::-;51487:6;51471:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:38;51463:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;51531:29;51541:10;51553:6;51531:9;:29::i;:::-;51394:172:::0;:::o;51878:82::-;10052:12;:10;:12::i;:::-;10041:23;;:7;:5;:7::i;:::-;:23;;;10033:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51948:6:::1;51940:5;:14;;;;51878:82:::0;:::o;39135:104::-;39191:13;39224:7;39217:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39135:104;:::o;50320:52::-;;;;:::o;50731:657::-;50788:9;50800:5;;50788:17;;50818:11;50871:1;50859:9;;:13;;;;:::i;:::-;50850:6;50834:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:38;50833:117;;;;;50933:16;;50923:6;50891:17;:29;50909:10;50891:29;;;;;;;;;;;;;;;;:38;;;;:::i;:::-;:58;;50833:117;50818:133;;50963:6;50960:36;;;50987:1;50980:8;;50960:36;51010:11;;;;;;;;;;;51002:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;51110:1;51098:9;;:13;;;;:::i;:::-;51089:6;51073:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:38;51065:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;51159:4;51150:6;:13;;;;:::i;:::-;51137:9;:26;51129:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;51230:1;51219:8;;:12;;;;:::i;:::-;51210:6;:21;51202:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;51271:6;51267:78;;;51327:6;51294:17;:29;51312:10;51294:29;;;;;;;;;;;;;;;;:39;;;;;;;:::i;:::-;;;;;;;;51267:78;51353:29;51363:10;51375:6;51353:9;:29::i;:::-;50781:607;;50731:657;:::o;40814:288::-;40921:12;:10;:12::i;:::-;40909:24;;:8;:24;;;;40901:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;41022:8;40977:18;:32;40996:12;:10;:12::i;:::-;40977:32;;;;;;;;;;;;;;;:42;41010:8;40977:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;41075:8;41046:48;;41061:12;:10;:12::i;:::-;41046:48;;;41085:8;41046:48;;;;;;:::i;:::-;;;;;;;;40814:288;;:::o;50523:42::-;;;;:::o;41901:355::-;42060:28;42070:4;42076:2;42080:7;42060:9;:28::i;:::-;42121:48;42144:4;42150:2;42154:7;42163:5;42121:22;:48::i;:::-;42099:149;;;;;;;;;;;;:::i;:::-;;;;;;;;;41901:355;;;;:::o;52070:94::-;10052:12;:10;:12::i;:::-;10041:23;;:7;:5;:7::i;:::-;:23;;;10033:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52149:9:::1;52138:8;:20;;;;52070:94:::0;:::o;39310:335::-;39383:13;39417:16;39425:7;39417;:16::i;:::-;39409:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;39498:21;39522:10;:8;:10::i;:::-;39498:34;;39575:1;39556:7;39550:21;:26;;:87;;;;;;;;;;;;;;;;;39603:7;39612:18;:7;:16;:18::i;:::-;39586:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;39550:87;39543:94;;;39310:335;;;:::o;50570:32::-;;;;;;;;;;;;;:::o;50474:44::-;;;;:::o;51663:107::-;51721:7;51744:20;51758:5;51744:13;:20::i;:::-;51737:27;;51663:107;;;:::o;41173:164::-;41270:4;41294:18;:25;41313:5;41294:25;;;;;;;;;;;;;;;:35;41320:8;41294:35;;;;;;;;;;;;;;;;;;;;;;;;;41287:42;;41173:164;;;;:::o;10730:201::-;10052:12;:10;:12::i;:::-;10041:23;;:7;:5;:7::i;:::-;:23;;;10033:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10839:1:::1;10819:22;;:8;:22;;;;10811:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;10895:28;10914:8;10895:18;:28::i;:::-;10730:201:::0;:::o;50377:43::-;;;;:::o;26600:157::-;26685:4;26724:25;26709:40;;;:11;:40;;;;26702:47;;26600:157;;;:::o;42511:111::-;42568:4;42602:12;;42592:7;:22;42585:29;;42511:111;;;:::o;8545:98::-;8598:7;8625:10;8618:17;;8545:98;:::o;47431:196::-;47573:2;47546:15;:24;47562:7;47546:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;47611:7;47607:2;47591:28;;47600:5;47591:28;;;;;;;;;;;;47431:196;;;:::o;45311:2002::-;45426:35;45464:20;45476:7;45464:11;:20::i;:::-;45426:58;;45497:22;45539:13;:18;;;45523:34;;:12;:10;:12::i;:::-;:34;;;:87;;;;45598:12;:10;:12::i;:::-;45574:36;;:20;45586:7;45574:11;:20::i;:::-;:36;;;45523:87;:154;;;;45627:50;45644:13;:18;;;45664:12;:10;:12::i;:::-;45627:16;:50::i;:::-;45523:154;45497:181;;45699:17;45691:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;45814:4;45792:26;;:13;:18;;;:26;;;45784:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;45894:1;45880:16;;:2;:16;;;;45872:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;45951:43;45973:4;45979:2;45983:7;45992:1;45951:21;:43::i;:::-;46059:49;46076:1;46080:7;46089:13;:18;;;46059:8;:49::i;:::-;46434:1;46404:12;:18;46417:4;46404:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46478:1;46450:12;:16;46463:2;46450:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46524:2;46496:11;:20;46508:7;46496:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;46586:15;46541:11;:20;46553:7;46541:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;46854:19;46886:1;46876:7;:11;46854:33;;46947:1;46906:43;;:11;:24;46918:11;46906:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;46902:295;;;46974:20;46982:11;46974:7;:20::i;:::-;46970:212;;;47051:13;:18;;;47019:11;:24;47031:11;47019:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;47134:13;:28;;;47092:11;:24;47104:11;47092:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;46970:212;46902:295;46379:829;47244:7;47240:2;47225:27;;47234:4;47225:27;;;;;;;;;;;;47263:42;47284:4;47290:2;47294:7;47303:1;47263:20;:42::i;:::-;45415:1898;;45311:2002;;;:::o;38176:537::-;38237:21;;:::i;:::-;38279:16;38287:7;38279;:16::i;:::-;38271:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;38385:12;38400:7;38385:22;;38380:245;38417:1;38409:4;:9;38380:245;;38447:31;38481:11;:17;38493:4;38481:17;;;;;;;;;;;38447:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38547:1;38521:28;;:9;:14;;;:28;;;38517:93;;38581:9;38574:16;;;;;;38517:93;38428:197;38420:6;;;;;;;;38380:245;;;;38648:57;;;;;;;;;;:::i;:::-;;;;;;;;38176:537;;;;:::o;11091:191::-;11165:16;11184:6;;;;;;;;;;;11165:25;;11210:8;11201:6;;:17;;;;;;;;;;;;;;;;;;11265:8;11234:40;;11255:8;11234:40;;;;;;;;;;;;11154:128;11091:191;:::o;42630:104::-;42699:27;42709:2;42713:8;42699:27;;;;;;;;;;;;:9;:27::i;:::-;42630:104;;:::o;48192:804::-;48347:4;48368:15;:2;:13;;;:15::i;:::-;48364:625;;;48420:2;48404:36;;;48441:12;:10;:12::i;:::-;48455:4;48461:7;48470:5;48404:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;48400:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48667:1;48650:6;:13;:18;48646:273;;;48693:61;;;;;;;;;;:::i;:::-;;;;;;;;48646:273;48869:6;48863:13;48854:6;48850:2;48846:15;48839:38;48400:534;48537:45;;;48527:55;;;:6;:55;;;;48520:62;;;;;48364:625;48973:4;48966:11;;48192:804;;;;;;;:::o;52170:102::-;52230:13;52259:7;52252:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52170:102;:::o;6107:723::-;6163:13;6393:1;6384:5;:10;6380:53;;;6411:10;;;;;;;;;;;;;;;;;;;;;6380:53;6443:12;6458:5;6443:20;;6474:14;6499:78;6514:1;6506:4;:9;6499:78;;6532:8;;;;;:::i;:::-;;;;6563:2;6555:10;;;;;:::i;:::-;;;6499:78;;;6587:19;6619:6;6609:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6587:39;;6637:154;6653:1;6644:5;:10;6637:154;;6681:1;6671:11;;;;;:::i;:::-;;;6748:2;6740:5;:10;;;;:::i;:::-;6727:2;:24;;;;:::i;:::-;6714:39;;6697:6;6704;6697:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;6777:2;6768:11;;;;;:::i;:::-;;;6637:154;;;6815:6;6801:21;;;;;6107:723;;;;:::o;37745:229::-;37806:7;37851:1;37834:19;;:5;:19;;;;37826:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;37933:12;:19;37946:5;37933:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;37925:41;;37918:48;;37745:229;;;:::o;49484:159::-;;;;;:::o;50055:158::-;;;;;:::o;43097:163::-;43220:32;43226:2;43230:8;43240:5;43247:4;43220:5;:32::i;:::-;43097:163;;;:::o;12522:326::-;12582:4;12839:1;12817:7;:19;;;:23;12810:30;;12522:326;;;:::o;43519:1538::-;43658:20;43681:12;;43658:35;;43726:1;43712:16;;:2;:16;;;;43704:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;43797:1;43785:8;:13;;43777:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;43856:61;43886:1;43890:2;43894:12;43908:8;43856:21;:61::i;:::-;44231:8;44195:12;:16;44208:2;44195:16;;;;;;;;;;;;;;;:24;;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44296:8;44255:12;:16;44268:2;44255:16;;;;;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44355:2;44322:11;:25;44334:12;44322:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;44422:15;44372:11;:25;44384:12;44372:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;44455:20;44478:12;44455:35;;44512:9;44507:415;44527:8;44523:1;:12;44507:415;;;44591:12;44587:2;44566:38;;44583:1;44566:38;;;;;;;;;;;;44627:4;44623:249;;;44690:59;44721:1;44725:2;44729:12;44743:5;44690:22;:59::i;:::-;44656:196;;;;;;;;;;;;:::i;:::-;;;;;;;;;44623:249;44892:14;;;;;;;44537:3;;;;;;;44507:415;;;;44953:12;44938;:27;;;;44170:807;44989:60;45018:1;45022:2;45026:12;45040:8;44989:20;:60::i;:::-;43647:1410;43519:1538;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;568:133::-;611:5;649:6;636:20;627:29;;665:30;689:5;665:30;:::i;:::-;568:133;;;;:::o;707:137::-;752:5;790:6;777:20;768:29;;806:32;832:5;806:32;:::i;:::-;707:137;;;;:::o;850:141::-;906:5;937:6;931:13;922:22;;953:32;979:5;953:32;:::i;:::-;850:141;;;;:::o;1010:338::-;1065:5;1114:3;1107:4;1099:6;1095:17;1091:27;1081:122;;1122:79;;:::i;:::-;1081:122;1239:6;1226:20;1264:78;1338:3;1330:6;1323:4;1315:6;1311:17;1264:78;:::i;:::-;1255:87;;1071:277;1010:338;;;;:::o;1368:553::-;1426:8;1436:6;1486:3;1479:4;1471:6;1467:17;1463:27;1453:122;;1494:79;;:::i;:::-;1453:122;1607:6;1594:20;1584:30;;1637:18;1629:6;1626:30;1623:117;;;1659:79;;:::i;:::-;1623:117;1773:4;1765:6;1761:17;1749:29;;1827:3;1819:4;1811:6;1807:17;1797:8;1793:32;1790:41;1787:128;;;1834:79;;:::i;:::-;1787:128;1368:553;;;;;:::o;1927:139::-;1973:5;2011:6;1998:20;1989:29;;2027:33;2054:5;2027:33;:::i;:::-;1927:139;;;;:::o;2072:329::-;2131:6;2180:2;2168:9;2159:7;2155:23;2151:32;2148:119;;;2186:79;;:::i;:::-;2148:119;2306:1;2331:53;2376:7;2367:6;2356:9;2352:22;2331:53;:::i;:::-;2321:63;;2277:117;2072:329;;;;:::o;2407:474::-;2475:6;2483;2532:2;2520:9;2511:7;2507:23;2503:32;2500:119;;;2538:79;;:::i;:::-;2500:119;2658:1;2683:53;2728:7;2719:6;2708:9;2704:22;2683:53;:::i;:::-;2673:63;;2629:117;2785:2;2811:53;2856:7;2847:6;2836:9;2832:22;2811:53;:::i;:::-;2801:63;;2756:118;2407:474;;;;;:::o;2887:619::-;2964:6;2972;2980;3029:2;3017:9;3008:7;3004:23;3000:32;2997:119;;;3035:79;;:::i;:::-;2997:119;3155:1;3180:53;3225:7;3216:6;3205:9;3201:22;3180:53;:::i;:::-;3170:63;;3126:117;3282:2;3308:53;3353:7;3344:6;3333:9;3329:22;3308:53;:::i;:::-;3298:63;;3253:118;3410:2;3436:53;3481:7;3472:6;3461:9;3457:22;3436:53;:::i;:::-;3426:63;;3381:118;2887:619;;;;;:::o;3512:943::-;3607:6;3615;3623;3631;3680:3;3668:9;3659:7;3655:23;3651:33;3648:120;;;3687:79;;:::i;:::-;3648:120;3807:1;3832:53;3877:7;3868:6;3857:9;3853:22;3832:53;:::i;:::-;3822:63;;3778:117;3934:2;3960:53;4005:7;3996:6;3985:9;3981:22;3960:53;:::i;:::-;3950:63;;3905:118;4062:2;4088:53;4133:7;4124:6;4113:9;4109:22;4088:53;:::i;:::-;4078:63;;4033:118;4218:2;4207:9;4203:18;4190:32;4249:18;4241:6;4238:30;4235:117;;;4271:79;;:::i;:::-;4235:117;4376:62;4430:7;4421:6;4410:9;4406:22;4376:62;:::i;:::-;4366:72;;4161:287;3512:943;;;;;;;:::o;4461:468::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:50;4904:7;4895:6;4884:9;4880:22;4862:50;:::i;:::-;4852:60;;4807:115;4461:468;;;;;:::o;4935:474::-;5003:6;5011;5060:2;5048:9;5039:7;5035:23;5031:32;5028:119;;;5066:79;;:::i;:::-;5028:119;5186:1;5211:53;5256:7;5247:6;5236:9;5232:22;5211:53;:::i;:::-;5201:63;;5157:117;5313:2;5339:53;5384:7;5375:6;5364:9;5360:22;5339:53;:::i;:::-;5329:63;;5284:118;4935:474;;;;;:::o;5415:327::-;5473:6;5522:2;5510:9;5501:7;5497:23;5493:32;5490:119;;;5528:79;;:::i;:::-;5490:119;5648:1;5673:52;5717:7;5708:6;5697:9;5693:22;5673:52;:::i;:::-;5663:62;;5619:116;5415:327;;;;:::o;5748:349::-;5817:6;5866:2;5854:9;5845:7;5841:23;5837:32;5834:119;;;5872:79;;:::i;:::-;5834:119;5992:1;6017:63;6072:7;6063:6;6052:9;6048:22;6017:63;:::i;:::-;6007:73;;5963:127;5748:349;;;;:::o;6103:529::-;6174:6;6182;6231:2;6219:9;6210:7;6206:23;6202:32;6199:119;;;6237:79;;:::i;:::-;6199:119;6385:1;6374:9;6370:17;6357:31;6415:18;6407:6;6404:30;6401:117;;;6437:79;;:::i;:::-;6401:117;6550:65;6607:7;6598:6;6587:9;6583:22;6550:65;:::i;:::-;6532:83;;;;6328:297;6103:529;;;;;:::o;6638:329::-;6697:6;6746:2;6734:9;6725:7;6721:23;6717:32;6714:119;;;6752:79;;:::i;:::-;6714:119;6872:1;6897:53;6942:7;6933:6;6922:9;6918:22;6897:53;:::i;:::-;6887:63;;6843:117;6638:329;;;;:::o;6973:118::-;7060:24;7078:5;7060:24;:::i;:::-;7055:3;7048:37;6973:118;;:::o;7097:109::-;7178:21;7193:5;7178:21;:::i;:::-;7173:3;7166:34;7097:109;;:::o;7212:360::-;7298:3;7326:38;7358:5;7326:38;:::i;:::-;7380:70;7443:6;7438:3;7380:70;:::i;:::-;7373:77;;7459:52;7504:6;7499:3;7492:4;7485:5;7481:16;7459:52;:::i;:::-;7536:29;7558:6;7536:29;:::i;:::-;7531:3;7527:39;7520:46;;7302:270;7212:360;;;;:::o;7578:364::-;7666:3;7694:39;7727:5;7694:39;:::i;:::-;7749:71;7813:6;7808:3;7749:71;:::i;:::-;7742:78;;7829:52;7874:6;7869:3;7862:4;7855:5;7851:16;7829:52;:::i;:::-;7906:29;7928:6;7906:29;:::i;:::-;7901:3;7897:39;7890:46;;7670:272;7578:364;;;;:::o;7948:377::-;8054:3;8082:39;8115:5;8082:39;:::i;:::-;8137:89;8219:6;8214:3;8137:89;:::i;:::-;8130:96;;8235:52;8280:6;8275:3;8268:4;8261:5;8257:16;8235:52;:::i;:::-;8312:6;8307:3;8303:16;8296:23;;8058:267;7948:377;;;;:::o;8331:366::-;8473:3;8494:67;8558:2;8553:3;8494:67;:::i;:::-;8487:74;;8570:93;8659:3;8570:93;:::i;:::-;8688:2;8683:3;8679:12;8672:19;;8331:366;;;:::o;8703:365::-;8845:3;8866:66;8930:1;8925:3;8866:66;:::i;:::-;8859:73;;8941:93;9030:3;8941:93;:::i;:::-;9059:2;9054:3;9050:12;9043:19;;8703:365;;;:::o;9074:366::-;9216:3;9237:67;9301:2;9296:3;9237:67;:::i;:::-;9230:74;;9313:93;9402:3;9313:93;:::i;:::-;9431:2;9426:3;9422:12;9415:19;;9074:366;;;:::o;9446:::-;9588:3;9609:67;9673:2;9668:3;9609:67;:::i;:::-;9602:74;;9685:93;9774:3;9685:93;:::i;:::-;9803:2;9798:3;9794:12;9787:19;;9446:366;;;:::o;9818:::-;9960:3;9981:67;10045:2;10040:3;9981:67;:::i;:::-;9974:74;;10057:93;10146:3;10057:93;:::i;:::-;10175:2;10170:3;10166:12;10159:19;;9818:366;;;:::o;10190:::-;10332:3;10353:67;10417:2;10412:3;10353:67;:::i;:::-;10346:74;;10429:93;10518:3;10429:93;:::i;:::-;10547:2;10542:3;10538:12;10531:19;;10190:366;;;:::o;10562:::-;10704:3;10725:67;10789:2;10784:3;10725:67;:::i;:::-;10718:74;;10801:93;10890:3;10801:93;:::i;:::-;10919:2;10914:3;10910:12;10903:19;;10562:366;;;:::o;10934:::-;11076:3;11097:67;11161:2;11156:3;11097:67;:::i;:::-;11090:74;;11173:93;11262:3;11173:93;:::i;:::-;11291:2;11286:3;11282:12;11275:19;;10934:366;;;:::o;11306:365::-;11448:3;11469:66;11533:1;11528:3;11469:66;:::i;:::-;11462:73;;11544:93;11633:3;11544:93;:::i;:::-;11662:2;11657:3;11653:12;11646:19;;11306:365;;;:::o;11677:366::-;11819:3;11840:67;11904:2;11899:3;11840:67;:::i;:::-;11833:74;;11916:93;12005:3;11916:93;:::i;:::-;12034:2;12029:3;12025:12;12018:19;;11677:366;;;:::o;12049:::-;12191:3;12212:67;12276:2;12271:3;12212:67;:::i;:::-;12205:74;;12288:93;12377:3;12288:93;:::i;:::-;12406:2;12401:3;12397:12;12390:19;;12049:366;;;:::o;12421:::-;12563:3;12584:67;12648:2;12643:3;12584:67;:::i;:::-;12577:74;;12660:93;12749:3;12660:93;:::i;:::-;12778:2;12773:3;12769:12;12762:19;;12421:366;;;:::o;12793:::-;12935:3;12956:67;13020:2;13015:3;12956:67;:::i;:::-;12949:74;;13032:93;13121:3;13032:93;:::i;:::-;13150:2;13145:3;13141:12;13134:19;;12793:366;;;:::o;13165:::-;13307:3;13328:67;13392:2;13387:3;13328:67;:::i;:::-;13321:74;;13404:93;13493:3;13404:93;:::i;:::-;13522:2;13517:3;13513:12;13506:19;;13165:366;;;:::o;13537:::-;13679:3;13700:67;13764:2;13759:3;13700:67;:::i;:::-;13693:74;;13776:93;13865:3;13776:93;:::i;:::-;13894:2;13889:3;13885:12;13878:19;;13537:366;;;:::o;13909:::-;14051:3;14072:67;14136:2;14131:3;14072:67;:::i;:::-;14065:74;;14148:93;14237:3;14148:93;:::i;:::-;14266:2;14261:3;14257:12;14250:19;;13909:366;;;:::o;14281:::-;14423:3;14444:67;14508:2;14503:3;14444:67;:::i;:::-;14437:74;;14520:93;14609:3;14520:93;:::i;:::-;14638:2;14633:3;14629:12;14622:19;;14281:366;;;:::o;14653:::-;14795:3;14816:67;14880:2;14875:3;14816:67;:::i;:::-;14809:74;;14892:93;14981:3;14892:93;:::i;:::-;15010:2;15005:3;15001:12;14994:19;;14653:366;;;:::o;15025:398::-;15184:3;15205:83;15286:1;15281:3;15205:83;:::i;:::-;15198:90;;15297:93;15386:3;15297:93;:::i;:::-;15415:1;15410:3;15406:11;15399:18;;15025:398;;;:::o;15429:366::-;15571:3;15592:67;15656:2;15651:3;15592:67;:::i;:::-;15585:74;;15668:93;15757:3;15668:93;:::i;:::-;15786:2;15781:3;15777:12;15770:19;;15429:366;;;:::o;15801:::-;15943:3;15964:67;16028:2;16023:3;15964:67;:::i;:::-;15957:74;;16040:93;16129:3;16040:93;:::i;:::-;16158:2;16153:3;16149:12;16142:19;;15801:366;;;:::o;16173:::-;16315:3;16336:67;16400:2;16395:3;16336:67;:::i;:::-;16329:74;;16412:93;16501:3;16412:93;:::i;:::-;16530:2;16525:3;16521:12;16514:19;;16173:366;;;:::o;16545:::-;16687:3;16708:67;16772:2;16767:3;16708:67;:::i;:::-;16701:74;;16784:93;16873:3;16784:93;:::i;:::-;16902:2;16897:3;16893:12;16886:19;;16545:366;;;:::o;16917:::-;17059:3;17080:67;17144:2;17139:3;17080:67;:::i;:::-;17073:74;;17156:93;17245:3;17156:93;:::i;:::-;17274:2;17269:3;17265:12;17258:19;;16917:366;;;:::o;17289:::-;17431:3;17452:67;17516:2;17511:3;17452:67;:::i;:::-;17445:74;;17528:93;17617:3;17528:93;:::i;:::-;17646:2;17641:3;17637:12;17630:19;;17289:366;;;:::o;17661:::-;17803:3;17824:67;17888:2;17883:3;17824:67;:::i;:::-;17817:74;;17900:93;17989:3;17900:93;:::i;:::-;18018:2;18013:3;18009:12;18002:19;;17661:366;;;:::o;18033:::-;18175:3;18196:67;18260:2;18255:3;18196:67;:::i;:::-;18189:74;;18272:93;18361:3;18272:93;:::i;:::-;18390:2;18385:3;18381:12;18374:19;;18033:366;;;:::o;18405:::-;18547:3;18568:67;18632:2;18627:3;18568:67;:::i;:::-;18561:74;;18644:93;18733:3;18644:93;:::i;:::-;18762:2;18757:3;18753:12;18746:19;;18405:366;;;:::o;18777:118::-;18864:24;18882:5;18864:24;:::i;:::-;18859:3;18852:37;18777:118;;:::o;18901:435::-;19081:3;19103:95;19194:3;19185:6;19103:95;:::i;:::-;19096:102;;19215:95;19306:3;19297:6;19215:95;:::i;:::-;19208:102;;19327:3;19320:10;;18901:435;;;;;:::o;19342:379::-;19526:3;19548:147;19691:3;19548:147;:::i;:::-;19541:154;;19712:3;19705:10;;19342:379;;;:::o;19727:222::-;19820:4;19858:2;19847:9;19843:18;19835:26;;19871:71;19939:1;19928:9;19924:17;19915:6;19871:71;:::i;:::-;19727:222;;;;:::o;19955:640::-;20150:4;20188:3;20177:9;20173:19;20165:27;;20202:71;20270:1;20259:9;20255:17;20246:6;20202:71;:::i;:::-;20283:72;20351:2;20340:9;20336:18;20327:6;20283:72;:::i;:::-;20365;20433:2;20422:9;20418:18;20409:6;20365:72;:::i;:::-;20484:9;20478:4;20474:20;20469:2;20458:9;20454:18;20447:48;20512:76;20583:4;20574:6;20512:76;:::i;:::-;20504:84;;19955:640;;;;;;;:::o;20601:210::-;20688:4;20726:2;20715:9;20711:18;20703:26;;20739:65;20801:1;20790:9;20786:17;20777:6;20739:65;:::i;:::-;20601:210;;;;:::o;20817:313::-;20930:4;20968:2;20957:9;20953:18;20945:26;;21017:9;21011:4;21007:20;21003:1;20992:9;20988:17;20981:47;21045:78;21118:4;21109:6;21045:78;:::i;:::-;21037:86;;20817:313;;;;:::o;21136:419::-;21302:4;21340:2;21329:9;21325:18;21317:26;;21389:9;21383:4;21379:20;21375:1;21364:9;21360:17;21353:47;21417:131;21543:4;21417:131;:::i;:::-;21409:139;;21136:419;;;:::o;21561:::-;21727:4;21765:2;21754:9;21750:18;21742:26;;21814:9;21808:4;21804:20;21800:1;21789:9;21785:17;21778:47;21842:131;21968:4;21842:131;:::i;:::-;21834:139;;21561:419;;;:::o;21986:::-;22152:4;22190:2;22179:9;22175:18;22167:26;;22239:9;22233:4;22229:20;22225:1;22214:9;22210:17;22203:47;22267:131;22393:4;22267:131;:::i;:::-;22259:139;;21986:419;;;:::o;22411:::-;22577:4;22615:2;22604:9;22600:18;22592:26;;22664:9;22658:4;22654:20;22650:1;22639:9;22635:17;22628:47;22692:131;22818:4;22692:131;:::i;:::-;22684:139;;22411:419;;;:::o;22836:::-;23002:4;23040:2;23029:9;23025:18;23017:26;;23089:9;23083:4;23079:20;23075:1;23064:9;23060:17;23053:47;23117:131;23243:4;23117:131;:::i;:::-;23109:139;;22836:419;;;:::o;23261:::-;23427:4;23465:2;23454:9;23450:18;23442:26;;23514:9;23508:4;23504:20;23500:1;23489:9;23485:17;23478:47;23542:131;23668:4;23542:131;:::i;:::-;23534:139;;23261:419;;;:::o;23686:::-;23852:4;23890:2;23879:9;23875:18;23867:26;;23939:9;23933:4;23929:20;23925:1;23914:9;23910:17;23903:47;23967:131;24093:4;23967:131;:::i;:::-;23959:139;;23686:419;;;:::o;24111:::-;24277:4;24315:2;24304:9;24300:18;24292:26;;24364:9;24358:4;24354:20;24350:1;24339:9;24335:17;24328:47;24392:131;24518:4;24392:131;:::i;:::-;24384:139;;24111:419;;;:::o;24536:::-;24702:4;24740:2;24729:9;24725:18;24717:26;;24789:9;24783:4;24779:20;24775:1;24764:9;24760:17;24753:47;24817:131;24943:4;24817:131;:::i;:::-;24809:139;;24536:419;;;:::o;24961:::-;25127:4;25165:2;25154:9;25150:18;25142:26;;25214:9;25208:4;25204:20;25200:1;25189:9;25185:17;25178:47;25242:131;25368:4;25242:131;:::i;:::-;25234:139;;24961:419;;;:::o;25386:::-;25552:4;25590:2;25579:9;25575:18;25567:26;;25639:9;25633:4;25629:20;25625:1;25614:9;25610:17;25603:47;25667:131;25793:4;25667:131;:::i;:::-;25659:139;;25386:419;;;:::o;25811:::-;25977:4;26015:2;26004:9;26000:18;25992:26;;26064:9;26058:4;26054:20;26050:1;26039:9;26035:17;26028:47;26092:131;26218:4;26092:131;:::i;:::-;26084:139;;25811:419;;;:::o;26236:::-;26402:4;26440:2;26429:9;26425:18;26417:26;;26489:9;26483:4;26479:20;26475:1;26464:9;26460:17;26453:47;26517:131;26643:4;26517:131;:::i;:::-;26509:139;;26236:419;;;:::o;26661:::-;26827:4;26865:2;26854:9;26850:18;26842:26;;26914:9;26908:4;26904:20;26900:1;26889:9;26885:17;26878:47;26942:131;27068:4;26942:131;:::i;:::-;26934:139;;26661:419;;;:::o;27086:::-;27252:4;27290:2;27279:9;27275:18;27267:26;;27339:9;27333:4;27329:20;27325:1;27314:9;27310:17;27303:47;27367:131;27493:4;27367:131;:::i;:::-;27359:139;;27086:419;;;:::o;27511:::-;27677:4;27715:2;27704:9;27700:18;27692:26;;27764:9;27758:4;27754:20;27750:1;27739:9;27735:17;27728:47;27792:131;27918:4;27792:131;:::i;:::-;27784:139;;27511:419;;;:::o;27936:::-;28102:4;28140:2;28129:9;28125:18;28117:26;;28189:9;28183:4;28179:20;28175:1;28164:9;28160:17;28153:47;28217:131;28343:4;28217:131;:::i;:::-;28209:139;;27936:419;;;:::o;28361:::-;28527:4;28565:2;28554:9;28550:18;28542:26;;28614:9;28608:4;28604:20;28600:1;28589:9;28585:17;28578:47;28642:131;28768:4;28642:131;:::i;:::-;28634:139;;28361:419;;;:::o;28786:::-;28952:4;28990:2;28979:9;28975:18;28967:26;;29039:9;29033:4;29029:20;29025:1;29014:9;29010:17;29003:47;29067:131;29193:4;29067:131;:::i;:::-;29059:139;;28786:419;;;:::o;29211:::-;29377:4;29415:2;29404:9;29400:18;29392:26;;29464:9;29458:4;29454:20;29450:1;29439:9;29435:17;29428:47;29492:131;29618:4;29492:131;:::i;:::-;29484:139;;29211:419;;;:::o;29636:::-;29802:4;29840:2;29829:9;29825:18;29817:26;;29889:9;29883:4;29879:20;29875:1;29864:9;29860:17;29853:47;29917:131;30043:4;29917:131;:::i;:::-;29909:139;;29636:419;;;:::o;30061:::-;30227:4;30265:2;30254:9;30250:18;30242:26;;30314:9;30308:4;30304:20;30300:1;30289:9;30285:17;30278:47;30342:131;30468:4;30342:131;:::i;:::-;30334:139;;30061:419;;;:::o;30486:::-;30652:4;30690:2;30679:9;30675:18;30667:26;;30739:9;30733:4;30729:20;30725:1;30714:9;30710:17;30703:47;30767:131;30893:4;30767:131;:::i;:::-;30759:139;;30486:419;;;:::o;30911:::-;31077:4;31115:2;31104:9;31100:18;31092:26;;31164:9;31158:4;31154:20;31150:1;31139:9;31135:17;31128:47;31192:131;31318:4;31192:131;:::i;:::-;31184:139;;30911:419;;;:::o;31336:::-;31502:4;31540:2;31529:9;31525:18;31517:26;;31589:9;31583:4;31579:20;31575:1;31564:9;31560:17;31553:47;31617:131;31743:4;31617:131;:::i;:::-;31609:139;;31336:419;;;:::o;31761:::-;31927:4;31965:2;31954:9;31950:18;31942:26;;32014:9;32008:4;32004:20;32000:1;31989:9;31985:17;31978:47;32042:131;32168:4;32042:131;:::i;:::-;32034:139;;31761:419;;;:::o;32186:::-;32352:4;32390:2;32379:9;32375:18;32367:26;;32439:9;32433:4;32429:20;32425:1;32414:9;32410:17;32403:47;32467:131;32593:4;32467:131;:::i;:::-;32459:139;;32186:419;;;:::o;32611:222::-;32704:4;32742:2;32731:9;32727:18;32719:26;;32755:71;32823:1;32812:9;32808:17;32799:6;32755:71;:::i;:::-;32611:222;;;;:::o;32839:129::-;32873:6;32900:20;;:::i;:::-;32890:30;;32929:33;32957:4;32949:6;32929:33;:::i;:::-;32839:129;;;:::o;32974:75::-;33007:6;33040:2;33034:9;33024:19;;32974:75;:::o;33055:307::-;33116:4;33206:18;33198:6;33195:30;33192:56;;;33228:18;;:::i;:::-;33192:56;33266:29;33288:6;33266:29;:::i;:::-;33258:37;;33350:4;33344;33340:15;33332:23;;33055:307;;;:::o;33368:98::-;33419:6;33453:5;33447:12;33437:22;;33368:98;;;:::o;33472:99::-;33524:6;33558:5;33552:12;33542:22;;33472:99;;;:::o;33577:168::-;33660:11;33694:6;33689:3;33682:19;33734:4;33729:3;33725:14;33710:29;;33577:168;;;;:::o;33751:147::-;33852:11;33889:3;33874:18;;33751:147;;;;:::o;33904:169::-;33988:11;34022:6;34017:3;34010:19;34062:4;34057:3;34053:14;34038:29;;33904:169;;;;:::o;34079:148::-;34181:11;34218:3;34203:18;;34079:148;;;;:::o;34233:305::-;34273:3;34292:20;34310:1;34292:20;:::i;:::-;34287:25;;34326:20;34344:1;34326:20;:::i;:::-;34321:25;;34480:1;34412:66;34408:74;34405:1;34402:81;34399:107;;;34486:18;;:::i;:::-;34399:107;34530:1;34527;34523:9;34516:16;;34233:305;;;;:::o;34544:185::-;34584:1;34601:20;34619:1;34601:20;:::i;:::-;34596:25;;34635:20;34653:1;34635:20;:::i;:::-;34630:25;;34674:1;34664:35;;34679:18;;:::i;:::-;34664:35;34721:1;34718;34714:9;34709:14;;34544:185;;;;:::o;34735:348::-;34775:7;34798:20;34816:1;34798:20;:::i;:::-;34793:25;;34832:20;34850:1;34832:20;:::i;:::-;34827:25;;35020:1;34952:66;34948:74;34945:1;34942:81;34937:1;34930:9;34923:17;34919:105;34916:131;;;35027:18;;:::i;:::-;34916:131;35075:1;35072;35068:9;35057:20;;34735:348;;;;:::o;35089:191::-;35129:4;35149:20;35167:1;35149:20;:::i;:::-;35144:25;;35183:20;35201:1;35183:20;:::i;:::-;35178:25;;35222:1;35219;35216:8;35213:34;;;35227:18;;:::i;:::-;35213:34;35272:1;35269;35265:9;35257:17;;35089:191;;;;:::o;35286:96::-;35323:7;35352:24;35370:5;35352:24;:::i;:::-;35341:35;;35286:96;;;:::o;35388:90::-;35422:7;35465:5;35458:13;35451:21;35440:32;;35388:90;;;:::o;35484:149::-;35520:7;35560:66;35553:5;35549:78;35538:89;;35484:149;;;:::o;35639:126::-;35676:7;35716:42;35709:5;35705:54;35694:65;;35639:126;;;:::o;35771:77::-;35808:7;35837:5;35826:16;;35771:77;;;:::o;35854:154::-;35938:6;35933:3;35928;35915:30;36000:1;35991:6;35986:3;35982:16;35975:27;35854:154;;;:::o;36014:307::-;36082:1;36092:113;36106:6;36103:1;36100:13;36092:113;;;36191:1;36186:3;36182:11;36176:18;36172:1;36167:3;36163:11;36156:39;36128:2;36125:1;36121:10;36116:15;;36092:113;;;36223:6;36220:1;36217:13;36214:101;;;36303:1;36294:6;36289:3;36285:16;36278:27;36214:101;36063:258;36014:307;;;:::o;36327:320::-;36371:6;36408:1;36402:4;36398:12;36388:22;;36455:1;36449:4;36445:12;36476:18;36466:81;;36532:4;36524:6;36520:17;36510:27;;36466:81;36594:2;36586:6;36583:14;36563:18;36560:38;36557:84;;;36613:18;;:::i;:::-;36557:84;36378:269;36327:320;;;:::o;36653:281::-;36736:27;36758:4;36736:27;:::i;:::-;36728:6;36724:40;36866:6;36854:10;36851:22;36830:18;36818:10;36815:34;36812:62;36809:88;;;36877:18;;:::i;:::-;36809:88;36917:10;36913:2;36906:22;36696:238;36653:281;;:::o;36940:233::-;36979:3;37002:24;37020:5;37002:24;:::i;:::-;36993:33;;37048:66;37041:5;37038:77;37035:103;;;37118:18;;:::i;:::-;37035:103;37165:1;37158:5;37154:13;37147:20;;36940:233;;;:::o;37179:176::-;37211:1;37228:20;37246:1;37228:20;:::i;:::-;37223:25;;37262:20;37280:1;37262:20;:::i;:::-;37257:25;;37301:1;37291:35;;37306:18;;:::i;:::-;37291:35;37347:1;37344;37340:9;37335:14;;37179:176;;;;:::o;37361:180::-;37409:77;37406:1;37399:88;37506:4;37503:1;37496:15;37530:4;37527:1;37520:15;37547:180;37595:77;37592:1;37585:88;37692:4;37689:1;37682:15;37716:4;37713:1;37706:15;37733:180;37781:77;37778:1;37771:88;37878:4;37875:1;37868:15;37902:4;37899:1;37892:15;37919:180;37967:77;37964:1;37957:88;38064:4;38061:1;38054:15;38088:4;38085:1;38078:15;38105:180;38153:77;38150:1;38143:88;38250:4;38247:1;38240:15;38274:4;38271:1;38264:15;38291:117;38400:1;38397;38390:12;38414:117;38523:1;38520;38513:12;38537:117;38646:1;38643;38636:12;38660:117;38769:1;38766;38759:12;38783:117;38892:1;38889;38882:12;38906:117;39015:1;39012;39005:12;39029:102;39070:6;39121:2;39117:7;39112:2;39105:5;39101:14;39097:28;39087:38;;39029:102;;;:::o;39137:221::-;39277:34;39273:1;39265:6;39261:14;39254:58;39346:4;39341:2;39333:6;39329:15;39322:29;39137:221;:::o;39364:157::-;39504:9;39500:1;39492:6;39488:14;39481:33;39364:157;:::o;39527:225::-;39667:34;39663:1;39655:6;39651:14;39644:58;39736:8;39731:2;39723:6;39719:15;39712:33;39527:225;:::o;39758:229::-;39898:34;39894:1;39886:6;39882:14;39875:58;39967:12;39962:2;39954:6;39950:15;39943:37;39758:229;:::o;39993:182::-;40133:34;40129:1;40121:6;40117:14;40110:58;39993:182;:::o;40181:222::-;40321:34;40317:1;40309:6;40305:14;40298:58;40390:5;40385:2;40377:6;40373:15;40366:30;40181:222;:::o;40409:224::-;40549:34;40545:1;40537:6;40533:14;40526:58;40618:7;40613:2;40605:6;40601:15;40594:32;40409:224;:::o;40639:236::-;40779:34;40775:1;40767:6;40763:14;40756:58;40848:19;40843:2;40835:6;40831:15;40824:44;40639:236;:::o;40881:159::-;41021:11;41017:1;41009:6;41005:14;40998:35;40881:159;:::o;41046:244::-;41186:34;41182:1;41174:6;41170:14;41163:58;41255:27;41250:2;41242:6;41238:15;41231:52;41046:244;:::o;41296:230::-;41436:34;41432:1;41424:6;41420:14;41413:58;41505:13;41500:2;41492:6;41488:15;41481:38;41296:230;:::o;41532:225::-;41672:34;41668:1;41660:6;41656:14;41649:58;41741:8;41736:2;41728:6;41724:15;41717:33;41532:225;:::o;41763:182::-;41903:34;41899:1;41891:6;41887:14;41880:58;41763:182;:::o;41951:234::-;42091:34;42087:1;42079:6;42075:14;42068:58;42160:17;42155:2;42147:6;42143:15;42136:42;41951:234;:::o;42191:176::-;42331:28;42327:1;42319:6;42315:14;42308:52;42191:176;:::o;42373:237::-;42513:34;42509:1;42501:6;42497:14;42490:58;42582:20;42577:2;42569:6;42565:15;42558:45;42373:237;:::o;42616:178::-;42756:30;42752:1;42744:6;42740:14;42733:54;42616:178;:::o;42800:221::-;42940:34;42936:1;42928:6;42924:14;42917:58;43009:4;43004:2;42996:6;42992:15;42985:29;42800:221;:::o;43027:114::-;;:::o;43147:166::-;43287:18;43283:1;43275:6;43271:14;43264:42;43147:166;:::o;43319:238::-;43459:34;43455:1;43447:6;43443:14;43436:58;43528:21;43523:2;43515:6;43511:15;43504:46;43319:238;:::o;43563:168::-;43703:20;43699:1;43691:6;43687:14;43680:44;43563:168;:::o;43737:220::-;43877:34;43873:1;43865:6;43861:14;43854:58;43946:3;43941:2;43933:6;43929:15;43922:28;43737:220;:::o;43963:227::-;44103:34;44099:1;44091:6;44087:14;44080:58;44172:10;44167:2;44159:6;44155:15;44148:35;43963:227;:::o;44196:233::-;44336:34;44332:1;44324:6;44320:14;44313:58;44405:16;44400:2;44392:6;44388:15;44381:41;44196:233;:::o;44435:181::-;44575:33;44571:1;44563:6;44559:14;44552:57;44435:181;:::o;44622:234::-;44762:34;44758:1;44750:6;44746:14;44739:58;44831:17;44826:2;44818:6;44814:15;44807:42;44622:234;:::o;44862:232::-;45002:34;44998:1;44990:6;44986:14;44979:58;45071:15;45066:2;45058:6;45054:15;45047:40;44862:232;:::o;45100:122::-;45173:24;45191:5;45173:24;:::i;:::-;45166:5;45163:35;45153:63;;45212:1;45209;45202:12;45153:63;45100:122;:::o;45228:116::-;45298:21;45313:5;45298:21;:::i;:::-;45291:5;45288:32;45278:60;;45334:1;45331;45324:12;45278:60;45228:116;:::o;45350:120::-;45422:23;45439:5;45422:23;:::i;:::-;45415:5;45412:34;45402:62;;45460:1;45457;45450:12;45402:62;45350:120;:::o;45476:122::-;45549:24;45567:5;45549:24;:::i;:::-;45542:5;45539:35;45529:63;;45588:1;45585;45578:12;45529:63;45476:122;:::o

Swarm Source

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