ETH Price: $2,508.79 (+3.94%)

Token

The Turks (The Turks)
 

Overview

Max Total Supply

410 The Turks

Holders

209

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 The Turks
0x41ef5b71bf48919fe9062a67c55f4baf4a7755b3
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:
theTurks

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

// 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(), ".json")) : "";

    }

    /**
     * @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 theTurks is ERC721A, Ownable, ReentrancyGuard {

  string public baseURI = "";
  uint public price = 0.009 ether;
  uint public maxSupply = 1881;
  uint public freeSupply = 400;
  uint public maxPerWallet = 2;
  bool public activated = false;
  constructor() ERC721A("The Turks", "The Turks"){}

  function mint(uint256 amount) external payable
  {
    require(activated, "contract not activated yet");
    require(amount>0, "Amount has to be greater than 1");
    require(msg.sender == tx.origin, "Smart Contracts can't mint");
    require(totalSupply() + amount <= maxSupply,"Sold out");
    require(numberMinted(msg.sender) + amount <= maxPerWallet, "2 per wallet");
    uint cost = 0;
    if(totalSupply() + amount > freeSupply) cost = price*amount;
    require(msg.value >= cost, "free mint ended 1 Turk = 0.009eth");
    _safeMint(msg.sender, amount);
  }

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

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

  function activateMint() external onlyOwner {
    activated = true;
  }

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

  function withdraw() external onlyOwner nonReentrant {
    (bool wallet, ) = payable(msg.sender).call{value: address(this).balance}("");
    require(wallet, "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":[],"name":"activateMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"activated","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"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":[],"name":"freeSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"maxPerWallet","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":"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":"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":"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":[{"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":"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"}]

608060405260405180602001604052806000815250600990805190602001906200002b9291906200020d565b50661ff973cafa8000600a55610759600b55610190600c556002600d556000600e60006101000a81548160ff0219169083151502179055503480156200007057600080fd5b506040518060400160405280600981526020017f546865205475726b7300000000000000000000000000000000000000000000008152506040518060400160405280600981526020017f546865205475726b7300000000000000000000000000000000000000000000008152508160019080519060200190620000f59291906200020d565b5080600290805190602001906200010e9291906200020d565b50505062000131620001256200013f60201b60201c565b6200014760201b60201c565b600160088190555062000322565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200021b90620002bd565b90600052602060002090601f0160209004810192826200023f57600085556200028b565b82601f106200025a57805160ff19168380011785556200028b565b828001600101855582156200028b579182015b828111156200028a5782518255916020019190600101906200026d565b5b5090506200029a91906200029e565b5090565b5b80821115620002b95760008160009055506001016200029f565b5090565b60006002820490506001821680620002d657607f821691505b60208210811415620002ed57620002ec620002f3565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6144ba80620003326000396000f3fe6080604052600436106101cd5760003560e01c80636c0360eb116100f7578063a22cb46511610095578063d5abeb0111610064578063d5abeb0114610657578063dc33e68114610682578063e985e9c5146106bf578063f2fde38b146106fc576101cd565b8063a22cb465146105b1578063b88d4fde146105da578063c87b56dd14610603578063c91c046214610640576101cd565b80638da5cb5b116100d15780638da5cb5b1461051457806395d89b411461053f578063a035b1fe1461056a578063a0712d6814610595576101cd565b80636c0360eb1461049557806370a08231146104c0578063715018a6146104fd576101cd565b806324a6ab0c1161016f578063453c23101161013e578063453c2310146103c75780634f6ccce7146103f257806355f804b31461042f5780636352211e14610458576101cd565b806324a6ab0c1461031f5780632f745c591461034a5780633ccfd60b1461038757806342842e0e1461039e576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806318160ddd146102a0578063186601ca146102cb57806323b872dd146102f6576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612e07565b610725565b6040516102069190613470565b60405180910390f35b34801561021b57600080fd5b5061022461086f565b604051610231919061348b565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190612eae565b610901565b60405161026e9190613409565b60405180910390f35b34801561028357600080fd5b5061029e60048036038101906102999190612dc7565b610986565b005b3480156102ac57600080fd5b506102b5610a9f565b6040516102c2919061382d565b60405180910390f35b3480156102d757600080fd5b506102e0610aa8565b6040516102ed9190613470565b60405180910390f35b34801561030257600080fd5b5061031d60048036038101906103189190612cb1565b610abb565b005b34801561032b57600080fd5b50610334610acb565b604051610341919061382d565b60405180910390f35b34801561035657600080fd5b50610371600480360381019061036c9190612dc7565b610ad1565b60405161037e919061382d565b60405180910390f35b34801561039357600080fd5b5061039c610cc3565b005b3480156103aa57600080fd5b506103c560048036038101906103c09190612cb1565b610e44565b005b3480156103d357600080fd5b506103dc610e64565b6040516103e9919061382d565b60405180910390f35b3480156103fe57600080fd5b5061041960048036038101906104149190612eae565b610e6a565b604051610426919061382d565b60405180910390f35b34801561043b57600080fd5b5061045660048036038101906104519190612e61565b610ebd565b005b34801561046457600080fd5b5061047f600480360381019061047a9190612eae565b610f4f565b60405161048c9190613409565b60405180910390f35b3480156104a157600080fd5b506104aa610f65565b6040516104b7919061348b565b60405180910390f35b3480156104cc57600080fd5b506104e760048036038101906104e29190612c44565b610ff3565b6040516104f4919061382d565b60405180910390f35b34801561050957600080fd5b506105126110dc565b005b34801561052057600080fd5b50610529611164565b6040516105369190613409565b60405180910390f35b34801561054b57600080fd5b5061055461118e565b604051610561919061348b565b60405180910390f35b34801561057657600080fd5b5061057f611220565b60405161058c919061382d565b60405180910390f35b6105af60048036038101906105aa9190612eae565b611226565b005b3480156105bd57600080fd5b506105d860048036038101906105d39190612d87565b611455565b005b3480156105e657600080fd5b5061060160048036038101906105fc9190612d04565b6115d6565b005b34801561060f57600080fd5b5061062a60048036038101906106259190612eae565b611632565b604051610637919061348b565b60405180910390f35b34801561064c57600080fd5b506106556116da565b005b34801561066357600080fd5b5061066c611773565b604051610679919061382d565b60405180910390f35b34801561068e57600080fd5b506106a960048036038101906106a49190612c44565b611779565b6040516106b6919061382d565b60405180910390f35b3480156106cb57600080fd5b506106e660048036038101906106e19190612c71565b61178b565b6040516106f39190613470565b60405180910390f35b34801561070857600080fd5b50610723600480360381019061071e9190612c44565b61181f565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107f057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061085857507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610868575061086782611917565b5b9050919050565b60606001805461087e90613ab7565b80601f01602080910402602001604051908101604052809291908181526020018280546108aa90613ab7565b80156108f75780601f106108cc576101008083540402835291602001916108f7565b820191906000526020600020905b8154815290600101906020018083116108da57829003601f168201915b5050505050905090565b600061090c82611981565b61094b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610942906137ed565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061099182610f4f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a02576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f9906136cd565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a2161198e565b73ffffffffffffffffffffffffffffffffffffffff161480610a505750610a4f81610a4a61198e565b61178b565b5b610a8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a86906135ad565b60405180910390fd5b610a9a838383611996565b505050565b60008054905090565b600e60009054906101000a900460ff1681565b610ac6838383611a48565b505050565b600c5481565b6000610adc83610ff3565b8210610b1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b14906134ad565b60405180910390fd5b6000610b27610a9f565b905060008060005b83811015610c81576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610c2157806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c735786841415610c6a578195505050505050610cbd565b83806001019450505b508080600101915050610b2f565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb49061376d565b60405180910390fd5b92915050565b610ccb61198e565b73ffffffffffffffffffffffffffffffffffffffff16610ce9611164565b73ffffffffffffffffffffffffffffffffffffffff1614610d3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d369061364d565b60405180910390fd5b60026008541415610d85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7c9061378d565b60405180910390fd5b600260088190555060003373ffffffffffffffffffffffffffffffffffffffff1647604051610db3906133f4565b60006040518083038185875af1925050503d8060008114610df0576040519150601f19603f3d011682016040523d82523d6000602084013e610df5565b606091505b5050905080610e39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e309061350d565b60405180910390fd5b506001600881905550565b610e5f838383604051806020016040528060008152506115d6565b505050565b600d5481565b6000610e74610a9f565b8210610eb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eac9061352d565b60405180910390fd5b819050919050565b610ec561198e565b73ffffffffffffffffffffffffffffffffffffffff16610ee3611164565b73ffffffffffffffffffffffffffffffffffffffff1614610f39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f309061364d565b60405180910390fd5b818160099190610f4a929190612a38565b505050565b6000610f5a82611f88565b600001519050919050565b60098054610f7290613ab7565b80601f0160208091040260200160405190810160405280929190818152602001828054610f9e90613ab7565b8015610feb5780601f10610fc057610100808354040283529160200191610feb565b820191906000526020600020905b815481529060010190602001808311610fce57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611064576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105b906135ed565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6110e461198e565b73ffffffffffffffffffffffffffffffffffffffff16611102611164565b73ffffffffffffffffffffffffffffffffffffffff1614611158576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114f9061364d565b60405180910390fd5b6111626000612122565b565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461119d90613ab7565b80601f01602080910402602001604051908101604052809291908181526020018280546111c990613ab7565b80156112165780601f106111eb57610100808354040283529160200191611216565b820191906000526020600020905b8154815290600101906020018083116111f957829003601f168201915b5050505050905090565b600a5481565b600e60009054906101000a900460ff16611275576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126c906137cd565b60405180910390fd5b600081116112b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112af906135cd565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611326576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131d9061380d565b60405180910390fd5b600b5481611332610a9f565b61133c91906138ec565b111561137d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611374906136ed565b60405180910390fd5b600d548161138a33611779565b61139491906138ec565b11156113d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cc9061360d565b60405180910390fd5b6000600c54826113e3610a9f565b6113ed91906138ec565b11156114045781600a546114019190613973565b90505b80341015611447576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143e9061354d565b60405180910390fd5b61145133836121e8565b5050565b61145d61198e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c29061368d565b60405180910390fd5b80600660006114d861198e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661158561198e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115ca9190613470565b60405180910390a35050565b6115e1848484611a48565b6115ed84848484612206565b61162c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116239061370d565b60405180910390fd5b50505050565b606061163d82611981565b61167c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116739061366d565b60405180910390fd5b600061168661239d565b90506000815114156116a757604051806020016040528060008152506116d2565b806116b18461242f565b6040516020016116c29291906133c5565b6040516020818303038152906040525b915050919050565b6116e261198e565b73ffffffffffffffffffffffffffffffffffffffff16611700611164565b73ffffffffffffffffffffffffffffffffffffffff1614611756576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174d9061364d565b60405180910390fd5b6001600e60006101000a81548160ff021916908315150217905550565b600b5481565b600061178482612590565b9050919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61182761198e565b73ffffffffffffffffffffffffffffffffffffffff16611845611164565b73ffffffffffffffffffffffffffffffffffffffff161461189b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118929061364d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561190b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611902906134cd565b60405180910390fd5b61191481612122565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611a5382611f88565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611a7a61198e565b73ffffffffffffffffffffffffffffffffffffffff161480611ad65750611a9f61198e565b73ffffffffffffffffffffffffffffffffffffffff16611abe84610901565b73ffffffffffffffffffffffffffffffffffffffff16145b80611af25750611af18260000151611aec61198e565b61178b565b5b905080611b34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2b906136ad565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611ba6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9d9061362d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611c16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0d9061356d565b60405180910390fd5b611c238585856001612679565b611c336000848460000151611996565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611f1857611e7781611981565b15611f175782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f81858585600161267f565b5050505050565b611f90612abe565b611f9982611981565b611fd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fcf906134ed565b60405180910390fd5b60008290505b600081106120e1576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146120d257809250505061211d565b50808060019003915050611fde565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612114906137ad565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612202828260405180602001604052806000815250612685565b5050565b60006122278473ffffffffffffffffffffffffffffffffffffffff16612697565b15612390578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261225061198e565b8786866040518563ffffffff1660e01b81526004016122729493929190613424565b602060405180830381600087803b15801561228c57600080fd5b505af19250505080156122bd57506040513d601f19601f820116820180604052508101906122ba9190612e34565b60015b612340573d80600081146122ed576040519150601f19603f3d011682016040523d82523d6000602084013e6122f2565b606091505b50600081511415612338576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232f9061370d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612395565b600190505b949350505050565b6060600980546123ac90613ab7565b80601f01602080910402602001604051908101604052809291908181526020018280546123d890613ab7565b80156124255780601f106123fa57610100808354040283529160200191612425565b820191906000526020600020905b81548152906001019060200180831161240857829003601f168201915b5050505050905090565b60606000821415612477576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061258b565b600082905060005b600082146124a957808061249290613b1a565b915050600a826124a29190613942565b915061247f565b60008167ffffffffffffffff8111156124c5576124c4613c50565b5b6040519080825280601f01601f1916602001820160405280156124f75781602001600182028036833780820191505090505b5090505b600085146125845760018261251091906139cd565b9150600a8561251f9190613b63565b603061252b91906138ec565b60f81b81838151811061254157612540613c21565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561257d9190613942565b94506124fb565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612601576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f89061358d565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b61269283838360016126ba565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612730576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127279061372d565b60405180910390fd5b6000841415612774576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276b9061374d565b60405180910390fd5b6127816000868387612679565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612a1b57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315612a06576129c66000888488612206565b612a05576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129fc9061370d565b60405180910390fd5b5b8180600101925050808060010191505061294f565b508060008190555050612a31600086838761267f565b5050505050565b828054612a4490613ab7565b90600052602060002090601f016020900481019282612a665760008555612aad565b82601f10612a7f57803560ff1916838001178555612aad565b82800160010185558215612aad579182015b82811115612aac578235825591602001919060010190612a91565b5b509050612aba9190612af8565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612b11576000816000905550600101612af9565b5090565b6000612b28612b238461386d565b613848565b905082815260208101848484011115612b4457612b43613c8e565b5b612b4f848285613a75565b509392505050565b600081359050612b6681614428565b92915050565b600081359050612b7b8161443f565b92915050565b600081359050612b9081614456565b92915050565b600081519050612ba581614456565b92915050565b600082601f830112612bc057612bbf613c84565b5b8135612bd0848260208601612b15565b91505092915050565b60008083601f840112612bef57612bee613c84565b5b8235905067ffffffffffffffff811115612c0c57612c0b613c7f565b5b602083019150836001820283011115612c2857612c27613c89565b5b9250929050565b600081359050612c3e8161446d565b92915050565b600060208284031215612c5a57612c59613c98565b5b6000612c6884828501612b57565b91505092915050565b60008060408385031215612c8857612c87613c98565b5b6000612c9685828601612b57565b9250506020612ca785828601612b57565b9150509250929050565b600080600060608486031215612cca57612cc9613c98565b5b6000612cd886828701612b57565b9350506020612ce986828701612b57565b9250506040612cfa86828701612c2f565b9150509250925092565b60008060008060808587031215612d1e57612d1d613c98565b5b6000612d2c87828801612b57565b9450506020612d3d87828801612b57565b9350506040612d4e87828801612c2f565b925050606085013567ffffffffffffffff811115612d6f57612d6e613c93565b5b612d7b87828801612bab565b91505092959194509250565b60008060408385031215612d9e57612d9d613c98565b5b6000612dac85828601612b57565b9250506020612dbd85828601612b6c565b9150509250929050565b60008060408385031215612dde57612ddd613c98565b5b6000612dec85828601612b57565b9250506020612dfd85828601612c2f565b9150509250929050565b600060208284031215612e1d57612e1c613c98565b5b6000612e2b84828501612b81565b91505092915050565b600060208284031215612e4a57612e49613c98565b5b6000612e5884828501612b96565b91505092915050565b60008060208385031215612e7857612e77613c98565b5b600083013567ffffffffffffffff811115612e9657612e95613c93565b5b612ea285828601612bd9565b92509250509250929050565b600060208284031215612ec457612ec3613c98565b5b6000612ed284828501612c2f565b91505092915050565b612ee481613a01565b82525050565b612ef381613a13565b82525050565b6000612f048261389e565b612f0e81856138b4565b9350612f1e818560208601613a84565b612f2781613c9d565b840191505092915050565b6000612f3d826138a9565b612f4781856138d0565b9350612f57818560208601613a84565b612f6081613c9d565b840191505092915050565b6000612f76826138a9565b612f8081856138e1565b9350612f90818560208601613a84565b80840191505092915050565b6000612fa96022836138d0565b9150612fb482613cae565b604082019050919050565b6000612fcc6026836138d0565b9150612fd782613cfd565b604082019050919050565b6000612fef602a836138d0565b9150612ffa82613d4c565b604082019050919050565b60006130126006836138d0565b915061301d82613d9b565b602082019050919050565b60006130356023836138d0565b915061304082613dc4565b604082019050919050565b60006130586021836138d0565b915061306382613e13565b604082019050919050565b600061307b6025836138d0565b915061308682613e62565b604082019050919050565b600061309e6031836138d0565b91506130a982613eb1565b604082019050919050565b60006130c16039836138d0565b91506130cc82613f00565b604082019050919050565b60006130e4601f836138d0565b91506130ef82613f4f565b602082019050919050565b6000613107602b836138d0565b915061311282613f78565b604082019050919050565b600061312a600c836138d0565b915061313582613fc7565b602082019050919050565b600061314d6026836138d0565b915061315882613ff0565b604082019050919050565b60006131706005836138e1565b915061317b8261403f565b600582019050919050565b60006131936020836138d0565b915061319e82614068565b602082019050919050565b60006131b6602f836138d0565b91506131c182614091565b604082019050919050565b60006131d9601a836138d0565b91506131e4826140e0565b602082019050919050565b60006131fc6032836138d0565b915061320782614109565b604082019050919050565b600061321f6022836138d0565b915061322a82614158565b604082019050919050565b60006132426000836138c5565b915061324d826141a7565b600082019050919050565b60006132656008836138d0565b9150613270826141aa565b602082019050919050565b60006132886033836138d0565b9150613293826141d3565b604082019050919050565b60006132ab6021836138d0565b91506132b682614222565b604082019050919050565b60006132ce6028836138d0565b91506132d982614271565b604082019050919050565b60006132f1602e836138d0565b91506132fc826142c0565b604082019050919050565b6000613314601f836138d0565b915061331f8261430f565b602082019050919050565b6000613337602f836138d0565b915061334282614338565b604082019050919050565b600061335a601a836138d0565b915061336582614387565b602082019050919050565b600061337d602d836138d0565b9150613388826143b0565b604082019050919050565b60006133a0601a836138d0565b91506133ab826143ff565b602082019050919050565b6133bf81613a6b565b82525050565b60006133d18285612f6b565b91506133dd8284612f6b565b91506133e882613163565b91508190509392505050565b60006133ff82613235565b9150819050919050565b600060208201905061341e6000830184612edb565b92915050565b60006080820190506134396000830187612edb565b6134466020830186612edb565b61345360408301856133b6565b81810360608301526134658184612ef9565b905095945050505050565b60006020820190506134856000830184612eea565b92915050565b600060208201905081810360008301526134a58184612f32565b905092915050565b600060208201905081810360008301526134c681612f9c565b9050919050565b600060208201905081810360008301526134e681612fbf565b9050919050565b6000602082019050818103600083015261350681612fe2565b9050919050565b6000602082019050818103600083015261352681613005565b9050919050565b6000602082019050818103600083015261354681613028565b9050919050565b600060208201905081810360008301526135668161304b565b9050919050565b600060208201905081810360008301526135868161306e565b9050919050565b600060208201905081810360008301526135a681613091565b9050919050565b600060208201905081810360008301526135c6816130b4565b9050919050565b600060208201905081810360008301526135e6816130d7565b9050919050565b60006020820190508181036000830152613606816130fa565b9050919050565b600060208201905081810360008301526136268161311d565b9050919050565b6000602082019050818103600083015261364681613140565b9050919050565b6000602082019050818103600083015261366681613186565b9050919050565b60006020820190508181036000830152613686816131a9565b9050919050565b600060208201905081810360008301526136a6816131cc565b9050919050565b600060208201905081810360008301526136c6816131ef565b9050919050565b600060208201905081810360008301526136e681613212565b9050919050565b6000602082019050818103600083015261370681613258565b9050919050565b600060208201905081810360008301526137268161327b565b9050919050565b600060208201905081810360008301526137468161329e565b9050919050565b60006020820190508181036000830152613766816132c1565b9050919050565b60006020820190508181036000830152613786816132e4565b9050919050565b600060208201905081810360008301526137a681613307565b9050919050565b600060208201905081810360008301526137c68161332a565b9050919050565b600060208201905081810360008301526137e68161334d565b9050919050565b6000602082019050818103600083015261380681613370565b9050919050565b6000602082019050818103600083015261382681613393565b9050919050565b600060208201905061384260008301846133b6565b92915050565b6000613852613863565b905061385e8282613ae9565b919050565b6000604051905090565b600067ffffffffffffffff82111561388857613887613c50565b5b61389182613c9d565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006138f782613a6b565b915061390283613a6b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561393757613936613b94565b5b828201905092915050565b600061394d82613a6b565b915061395883613a6b565b92508261396857613967613bc3565b5b828204905092915050565b600061397e82613a6b565b915061398983613a6b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156139c2576139c1613b94565b5b828202905092915050565b60006139d882613a6b565b91506139e383613a6b565b9250828210156139f6576139f5613b94565b5b828203905092915050565b6000613a0c82613a4b565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613aa2578082015181840152602081019050613a87565b83811115613ab1576000848401525b50505050565b60006002820490506001821680613acf57607f821691505b60208210811415613ae357613ae2613bf2565b5b50919050565b613af282613c9d565b810181811067ffffffffffffffff82111715613b1157613b10613c50565b5b80604052505050565b6000613b2582613a6b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613b5857613b57613b94565b5b600182019050919050565b6000613b6e82613a6b565b9150613b7983613a6b565b925082613b8957613b88613bc3565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f4661696c65640000000000000000000000000000000000000000000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f66726565206d696e7420656e6465642031205475726b203d20302e303039657460008201527f6800000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f416d6f756e742068617320746f2062652067726561746572207468616e203100600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f32207065722077616c6c65740000000000000000000000000000000000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f536f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f636f6e7472616374206e6f742061637469766174656420796574000000000000600082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f536d61727420436f6e7472616374732063616e2774206d696e74000000000000600082015250565b61443181613a01565b811461443c57600080fd5b50565b61444881613a13565b811461445357600080fd5b50565b61445f81613a1f565b811461446a57600080fd5b50565b61447681613a6b565b811461448157600080fd5b5056fea2646970667358221220ee688c5e25a9fb2ad9f148e277567bc66d5bd84cd5a0bd51c27007191f37bff764736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c80636c0360eb116100f7578063a22cb46511610095578063d5abeb0111610064578063d5abeb0114610657578063dc33e68114610682578063e985e9c5146106bf578063f2fde38b146106fc576101cd565b8063a22cb465146105b1578063b88d4fde146105da578063c87b56dd14610603578063c91c046214610640576101cd565b80638da5cb5b116100d15780638da5cb5b1461051457806395d89b411461053f578063a035b1fe1461056a578063a0712d6814610595576101cd565b80636c0360eb1461049557806370a08231146104c0578063715018a6146104fd576101cd565b806324a6ab0c1161016f578063453c23101161013e578063453c2310146103c75780634f6ccce7146103f257806355f804b31461042f5780636352211e14610458576101cd565b806324a6ab0c1461031f5780632f745c591461034a5780633ccfd60b1461038757806342842e0e1461039e576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806318160ddd146102a0578063186601ca146102cb57806323b872dd146102f6576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612e07565b610725565b6040516102069190613470565b60405180910390f35b34801561021b57600080fd5b5061022461086f565b604051610231919061348b565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190612eae565b610901565b60405161026e9190613409565b60405180910390f35b34801561028357600080fd5b5061029e60048036038101906102999190612dc7565b610986565b005b3480156102ac57600080fd5b506102b5610a9f565b6040516102c2919061382d565b60405180910390f35b3480156102d757600080fd5b506102e0610aa8565b6040516102ed9190613470565b60405180910390f35b34801561030257600080fd5b5061031d60048036038101906103189190612cb1565b610abb565b005b34801561032b57600080fd5b50610334610acb565b604051610341919061382d565b60405180910390f35b34801561035657600080fd5b50610371600480360381019061036c9190612dc7565b610ad1565b60405161037e919061382d565b60405180910390f35b34801561039357600080fd5b5061039c610cc3565b005b3480156103aa57600080fd5b506103c560048036038101906103c09190612cb1565b610e44565b005b3480156103d357600080fd5b506103dc610e64565b6040516103e9919061382d565b60405180910390f35b3480156103fe57600080fd5b5061041960048036038101906104149190612eae565b610e6a565b604051610426919061382d565b60405180910390f35b34801561043b57600080fd5b5061045660048036038101906104519190612e61565b610ebd565b005b34801561046457600080fd5b5061047f600480360381019061047a9190612eae565b610f4f565b60405161048c9190613409565b60405180910390f35b3480156104a157600080fd5b506104aa610f65565b6040516104b7919061348b565b60405180910390f35b3480156104cc57600080fd5b506104e760048036038101906104e29190612c44565b610ff3565b6040516104f4919061382d565b60405180910390f35b34801561050957600080fd5b506105126110dc565b005b34801561052057600080fd5b50610529611164565b6040516105369190613409565b60405180910390f35b34801561054b57600080fd5b5061055461118e565b604051610561919061348b565b60405180910390f35b34801561057657600080fd5b5061057f611220565b60405161058c919061382d565b60405180910390f35b6105af60048036038101906105aa9190612eae565b611226565b005b3480156105bd57600080fd5b506105d860048036038101906105d39190612d87565b611455565b005b3480156105e657600080fd5b5061060160048036038101906105fc9190612d04565b6115d6565b005b34801561060f57600080fd5b5061062a60048036038101906106259190612eae565b611632565b604051610637919061348b565b60405180910390f35b34801561064c57600080fd5b506106556116da565b005b34801561066357600080fd5b5061066c611773565b604051610679919061382d565b60405180910390f35b34801561068e57600080fd5b506106a960048036038101906106a49190612c44565b611779565b6040516106b6919061382d565b60405180910390f35b3480156106cb57600080fd5b506106e660048036038101906106e19190612c71565b61178b565b6040516106f39190613470565b60405180910390f35b34801561070857600080fd5b50610723600480360381019061071e9190612c44565b61181f565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107f057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061085857507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610868575061086782611917565b5b9050919050565b60606001805461087e90613ab7565b80601f01602080910402602001604051908101604052809291908181526020018280546108aa90613ab7565b80156108f75780601f106108cc576101008083540402835291602001916108f7565b820191906000526020600020905b8154815290600101906020018083116108da57829003601f168201915b5050505050905090565b600061090c82611981565b61094b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610942906137ed565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061099182610f4f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a02576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f9906136cd565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a2161198e565b73ffffffffffffffffffffffffffffffffffffffff161480610a505750610a4f81610a4a61198e565b61178b565b5b610a8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a86906135ad565b60405180910390fd5b610a9a838383611996565b505050565b60008054905090565b600e60009054906101000a900460ff1681565b610ac6838383611a48565b505050565b600c5481565b6000610adc83610ff3565b8210610b1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b14906134ad565b60405180910390fd5b6000610b27610a9f565b905060008060005b83811015610c81576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610c2157806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c735786841415610c6a578195505050505050610cbd565b83806001019450505b508080600101915050610b2f565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb49061376d565b60405180910390fd5b92915050565b610ccb61198e565b73ffffffffffffffffffffffffffffffffffffffff16610ce9611164565b73ffffffffffffffffffffffffffffffffffffffff1614610d3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d369061364d565b60405180910390fd5b60026008541415610d85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7c9061378d565b60405180910390fd5b600260088190555060003373ffffffffffffffffffffffffffffffffffffffff1647604051610db3906133f4565b60006040518083038185875af1925050503d8060008114610df0576040519150601f19603f3d011682016040523d82523d6000602084013e610df5565b606091505b5050905080610e39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e309061350d565b60405180910390fd5b506001600881905550565b610e5f838383604051806020016040528060008152506115d6565b505050565b600d5481565b6000610e74610a9f565b8210610eb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eac9061352d565b60405180910390fd5b819050919050565b610ec561198e565b73ffffffffffffffffffffffffffffffffffffffff16610ee3611164565b73ffffffffffffffffffffffffffffffffffffffff1614610f39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f309061364d565b60405180910390fd5b818160099190610f4a929190612a38565b505050565b6000610f5a82611f88565b600001519050919050565b60098054610f7290613ab7565b80601f0160208091040260200160405190810160405280929190818152602001828054610f9e90613ab7565b8015610feb5780601f10610fc057610100808354040283529160200191610feb565b820191906000526020600020905b815481529060010190602001808311610fce57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611064576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105b906135ed565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6110e461198e565b73ffffffffffffffffffffffffffffffffffffffff16611102611164565b73ffffffffffffffffffffffffffffffffffffffff1614611158576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114f9061364d565b60405180910390fd5b6111626000612122565b565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461119d90613ab7565b80601f01602080910402602001604051908101604052809291908181526020018280546111c990613ab7565b80156112165780601f106111eb57610100808354040283529160200191611216565b820191906000526020600020905b8154815290600101906020018083116111f957829003601f168201915b5050505050905090565b600a5481565b600e60009054906101000a900460ff16611275576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126c906137cd565b60405180910390fd5b600081116112b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112af906135cd565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611326576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131d9061380d565b60405180910390fd5b600b5481611332610a9f565b61133c91906138ec565b111561137d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611374906136ed565b60405180910390fd5b600d548161138a33611779565b61139491906138ec565b11156113d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cc9061360d565b60405180910390fd5b6000600c54826113e3610a9f565b6113ed91906138ec565b11156114045781600a546114019190613973565b90505b80341015611447576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143e9061354d565b60405180910390fd5b61145133836121e8565b5050565b61145d61198e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c29061368d565b60405180910390fd5b80600660006114d861198e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661158561198e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115ca9190613470565b60405180910390a35050565b6115e1848484611a48565b6115ed84848484612206565b61162c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116239061370d565b60405180910390fd5b50505050565b606061163d82611981565b61167c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116739061366d565b60405180910390fd5b600061168661239d565b90506000815114156116a757604051806020016040528060008152506116d2565b806116b18461242f565b6040516020016116c29291906133c5565b6040516020818303038152906040525b915050919050565b6116e261198e565b73ffffffffffffffffffffffffffffffffffffffff16611700611164565b73ffffffffffffffffffffffffffffffffffffffff1614611756576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174d9061364d565b60405180910390fd5b6001600e60006101000a81548160ff021916908315150217905550565b600b5481565b600061178482612590565b9050919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61182761198e565b73ffffffffffffffffffffffffffffffffffffffff16611845611164565b73ffffffffffffffffffffffffffffffffffffffff161461189b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118929061364d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561190b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611902906134cd565b60405180910390fd5b61191481612122565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611a5382611f88565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611a7a61198e565b73ffffffffffffffffffffffffffffffffffffffff161480611ad65750611a9f61198e565b73ffffffffffffffffffffffffffffffffffffffff16611abe84610901565b73ffffffffffffffffffffffffffffffffffffffff16145b80611af25750611af18260000151611aec61198e565b61178b565b5b905080611b34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2b906136ad565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611ba6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9d9061362d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611c16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0d9061356d565b60405180910390fd5b611c238585856001612679565b611c336000848460000151611996565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611f1857611e7781611981565b15611f175782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f81858585600161267f565b5050505050565b611f90612abe565b611f9982611981565b611fd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fcf906134ed565b60405180910390fd5b60008290505b600081106120e1576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146120d257809250505061211d565b50808060019003915050611fde565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612114906137ad565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612202828260405180602001604052806000815250612685565b5050565b60006122278473ffffffffffffffffffffffffffffffffffffffff16612697565b15612390578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261225061198e565b8786866040518563ffffffff1660e01b81526004016122729493929190613424565b602060405180830381600087803b15801561228c57600080fd5b505af19250505080156122bd57506040513d601f19601f820116820180604052508101906122ba9190612e34565b60015b612340573d80600081146122ed576040519150601f19603f3d011682016040523d82523d6000602084013e6122f2565b606091505b50600081511415612338576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232f9061370d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612395565b600190505b949350505050565b6060600980546123ac90613ab7565b80601f01602080910402602001604051908101604052809291908181526020018280546123d890613ab7565b80156124255780601f106123fa57610100808354040283529160200191612425565b820191906000526020600020905b81548152906001019060200180831161240857829003601f168201915b5050505050905090565b60606000821415612477576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061258b565b600082905060005b600082146124a957808061249290613b1a565b915050600a826124a29190613942565b915061247f565b60008167ffffffffffffffff8111156124c5576124c4613c50565b5b6040519080825280601f01601f1916602001820160405280156124f75781602001600182028036833780820191505090505b5090505b600085146125845760018261251091906139cd565b9150600a8561251f9190613b63565b603061252b91906138ec565b60f81b81838151811061254157612540613c21565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561257d9190613942565b94506124fb565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612601576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f89061358d565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b61269283838360016126ba565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612730576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127279061372d565b60405180910390fd5b6000841415612774576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276b9061374d565b60405180910390fd5b6127816000868387612679565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612a1b57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315612a06576129c66000888488612206565b612a05576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129fc9061370d565b60405180910390fd5b5b8180600101925050808060010191505061294f565b508060008190555050612a31600086838761267f565b5050505050565b828054612a4490613ab7565b90600052602060002090601f016020900481019282612a665760008555612aad565b82601f10612a7f57803560ff1916838001178555612aad565b82800160010185558215612aad579182015b82811115612aac578235825591602001919060010190612a91565b5b509050612aba9190612af8565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612b11576000816000905550600101612af9565b5090565b6000612b28612b238461386d565b613848565b905082815260208101848484011115612b4457612b43613c8e565b5b612b4f848285613a75565b509392505050565b600081359050612b6681614428565b92915050565b600081359050612b7b8161443f565b92915050565b600081359050612b9081614456565b92915050565b600081519050612ba581614456565b92915050565b600082601f830112612bc057612bbf613c84565b5b8135612bd0848260208601612b15565b91505092915050565b60008083601f840112612bef57612bee613c84565b5b8235905067ffffffffffffffff811115612c0c57612c0b613c7f565b5b602083019150836001820283011115612c2857612c27613c89565b5b9250929050565b600081359050612c3e8161446d565b92915050565b600060208284031215612c5a57612c59613c98565b5b6000612c6884828501612b57565b91505092915050565b60008060408385031215612c8857612c87613c98565b5b6000612c9685828601612b57565b9250506020612ca785828601612b57565b9150509250929050565b600080600060608486031215612cca57612cc9613c98565b5b6000612cd886828701612b57565b9350506020612ce986828701612b57565b9250506040612cfa86828701612c2f565b9150509250925092565b60008060008060808587031215612d1e57612d1d613c98565b5b6000612d2c87828801612b57565b9450506020612d3d87828801612b57565b9350506040612d4e87828801612c2f565b925050606085013567ffffffffffffffff811115612d6f57612d6e613c93565b5b612d7b87828801612bab565b91505092959194509250565b60008060408385031215612d9e57612d9d613c98565b5b6000612dac85828601612b57565b9250506020612dbd85828601612b6c565b9150509250929050565b60008060408385031215612dde57612ddd613c98565b5b6000612dec85828601612b57565b9250506020612dfd85828601612c2f565b9150509250929050565b600060208284031215612e1d57612e1c613c98565b5b6000612e2b84828501612b81565b91505092915050565b600060208284031215612e4a57612e49613c98565b5b6000612e5884828501612b96565b91505092915050565b60008060208385031215612e7857612e77613c98565b5b600083013567ffffffffffffffff811115612e9657612e95613c93565b5b612ea285828601612bd9565b92509250509250929050565b600060208284031215612ec457612ec3613c98565b5b6000612ed284828501612c2f565b91505092915050565b612ee481613a01565b82525050565b612ef381613a13565b82525050565b6000612f048261389e565b612f0e81856138b4565b9350612f1e818560208601613a84565b612f2781613c9d565b840191505092915050565b6000612f3d826138a9565b612f4781856138d0565b9350612f57818560208601613a84565b612f6081613c9d565b840191505092915050565b6000612f76826138a9565b612f8081856138e1565b9350612f90818560208601613a84565b80840191505092915050565b6000612fa96022836138d0565b9150612fb482613cae565b604082019050919050565b6000612fcc6026836138d0565b9150612fd782613cfd565b604082019050919050565b6000612fef602a836138d0565b9150612ffa82613d4c565b604082019050919050565b60006130126006836138d0565b915061301d82613d9b565b602082019050919050565b60006130356023836138d0565b915061304082613dc4565b604082019050919050565b60006130586021836138d0565b915061306382613e13565b604082019050919050565b600061307b6025836138d0565b915061308682613e62565b604082019050919050565b600061309e6031836138d0565b91506130a982613eb1565b604082019050919050565b60006130c16039836138d0565b91506130cc82613f00565b604082019050919050565b60006130e4601f836138d0565b91506130ef82613f4f565b602082019050919050565b6000613107602b836138d0565b915061311282613f78565b604082019050919050565b600061312a600c836138d0565b915061313582613fc7565b602082019050919050565b600061314d6026836138d0565b915061315882613ff0565b604082019050919050565b60006131706005836138e1565b915061317b8261403f565b600582019050919050565b60006131936020836138d0565b915061319e82614068565b602082019050919050565b60006131b6602f836138d0565b91506131c182614091565b604082019050919050565b60006131d9601a836138d0565b91506131e4826140e0565b602082019050919050565b60006131fc6032836138d0565b915061320782614109565b604082019050919050565b600061321f6022836138d0565b915061322a82614158565b604082019050919050565b60006132426000836138c5565b915061324d826141a7565b600082019050919050565b60006132656008836138d0565b9150613270826141aa565b602082019050919050565b60006132886033836138d0565b9150613293826141d3565b604082019050919050565b60006132ab6021836138d0565b91506132b682614222565b604082019050919050565b60006132ce6028836138d0565b91506132d982614271565b604082019050919050565b60006132f1602e836138d0565b91506132fc826142c0565b604082019050919050565b6000613314601f836138d0565b915061331f8261430f565b602082019050919050565b6000613337602f836138d0565b915061334282614338565b604082019050919050565b600061335a601a836138d0565b915061336582614387565b602082019050919050565b600061337d602d836138d0565b9150613388826143b0565b604082019050919050565b60006133a0601a836138d0565b91506133ab826143ff565b602082019050919050565b6133bf81613a6b565b82525050565b60006133d18285612f6b565b91506133dd8284612f6b565b91506133e882613163565b91508190509392505050565b60006133ff82613235565b9150819050919050565b600060208201905061341e6000830184612edb565b92915050565b60006080820190506134396000830187612edb565b6134466020830186612edb565b61345360408301856133b6565b81810360608301526134658184612ef9565b905095945050505050565b60006020820190506134856000830184612eea565b92915050565b600060208201905081810360008301526134a58184612f32565b905092915050565b600060208201905081810360008301526134c681612f9c565b9050919050565b600060208201905081810360008301526134e681612fbf565b9050919050565b6000602082019050818103600083015261350681612fe2565b9050919050565b6000602082019050818103600083015261352681613005565b9050919050565b6000602082019050818103600083015261354681613028565b9050919050565b600060208201905081810360008301526135668161304b565b9050919050565b600060208201905081810360008301526135868161306e565b9050919050565b600060208201905081810360008301526135a681613091565b9050919050565b600060208201905081810360008301526135c6816130b4565b9050919050565b600060208201905081810360008301526135e6816130d7565b9050919050565b60006020820190508181036000830152613606816130fa565b9050919050565b600060208201905081810360008301526136268161311d565b9050919050565b6000602082019050818103600083015261364681613140565b9050919050565b6000602082019050818103600083015261366681613186565b9050919050565b60006020820190508181036000830152613686816131a9565b9050919050565b600060208201905081810360008301526136a6816131cc565b9050919050565b600060208201905081810360008301526136c6816131ef565b9050919050565b600060208201905081810360008301526136e681613212565b9050919050565b6000602082019050818103600083015261370681613258565b9050919050565b600060208201905081810360008301526137268161327b565b9050919050565b600060208201905081810360008301526137468161329e565b9050919050565b60006020820190508181036000830152613766816132c1565b9050919050565b60006020820190508181036000830152613786816132e4565b9050919050565b600060208201905081810360008301526137a681613307565b9050919050565b600060208201905081810360008301526137c68161332a565b9050919050565b600060208201905081810360008301526137e68161334d565b9050919050565b6000602082019050818103600083015261380681613370565b9050919050565b6000602082019050818103600083015261382681613393565b9050919050565b600060208201905061384260008301846133b6565b92915050565b6000613852613863565b905061385e8282613ae9565b919050565b6000604051905090565b600067ffffffffffffffff82111561388857613887613c50565b5b61389182613c9d565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006138f782613a6b565b915061390283613a6b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561393757613936613b94565b5b828201905092915050565b600061394d82613a6b565b915061395883613a6b565b92508261396857613967613bc3565b5b828204905092915050565b600061397e82613a6b565b915061398983613a6b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156139c2576139c1613b94565b5b828202905092915050565b60006139d882613a6b565b91506139e383613a6b565b9250828210156139f6576139f5613b94565b5b828203905092915050565b6000613a0c82613a4b565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613aa2578082015181840152602081019050613a87565b83811115613ab1576000848401525b50505050565b60006002820490506001821680613acf57607f821691505b60208210811415613ae357613ae2613bf2565b5b50919050565b613af282613c9d565b810181811067ffffffffffffffff82111715613b1157613b10613c50565b5b80604052505050565b6000613b2582613a6b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613b5857613b57613b94565b5b600182019050919050565b6000613b6e82613a6b565b9150613b7983613a6b565b925082613b8957613b88613bc3565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f4661696c65640000000000000000000000000000000000000000000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f66726565206d696e7420656e6465642031205475726b203d20302e303039657460008201527f6800000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f416d6f756e742068617320746f2062652067726561746572207468616e203100600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f32207065722077616c6c65740000000000000000000000000000000000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f536f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f636f6e7472616374206e6f742061637469766174656420796574000000000000600082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f536d61727420436f6e7472616374732063616e2774206d696e74000000000000600082015250565b61443181613a01565b811461443c57600080fd5b50565b61444881613a13565b811461445357600080fd5b50565b61445f81613a1f565b811461446a57600080fd5b50565b61447681613a6b565b811461448157600080fd5b5056fea2646970667358221220ee688c5e25a9fb2ad9f148e277567bc66d5bd84cd5a0bd51c27007191f37bff764736f6c63430008070033

Deployed Bytecode Sourcemap

50162:1478:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37011:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38897:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40470:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39991:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35268:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50390:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41346:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50324:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35932:1007;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51460:175;;;;;;;;;;;;;:::i;:::-;;41587:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50357:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35445:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51172:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38706:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50224:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37447:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10403:103;;;;;;;;;;;;;:::i;:::-;;9752:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39066:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50255:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50479:574;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40756:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41843:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39241:346;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51274:72;;;;;;;;;;;;;:::i;:::-;;50291:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51059:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41115:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10661:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37011:372;37113:4;37165:25;37150:40;;;:11;:40;;;;:105;;;;37222:33;37207:48;;;:11;:48;;;;37150:105;:172;;;;37287:35;37272:50;;;:11;:50;;;;37150:172;:225;;;;37339:36;37363:11;37339:23;:36::i;:::-;37150:225;37130:245;;37011:372;;;:::o;38897:100::-;38951:13;38984:5;38977:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38897:100;:::o;40470:214::-;40538:7;40566:16;40574:7;40566;:16::i;:::-;40558:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;40652:15;:24;40668:7;40652:24;;;;;;;;;;;;;;;;;;;;;40645:31;;40470:214;;;:::o;39991:413::-;40064:13;40080:24;40096:7;40080:15;:24::i;:::-;40064:40;;40129:5;40123:11;;:2;:11;;;;40115:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;40224:5;40208:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;40233:37;40250:5;40257:12;:10;:12::i;:::-;40233:16;:37::i;:::-;40208:62;40186:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;40368:28;40377:2;40381:7;40390:5;40368:8;:28::i;:::-;40053:351;39991:413;;:::o;35268:100::-;35321:7;35348:12;;35341:19;;35268:100;:::o;50390:29::-;;;;;;;;;;;;;:::o;41346:170::-;41480:28;41490:4;41496:2;41500:7;41480:9;:28::i;:::-;41346:170;;;:::o;50324:28::-;;;;:::o;35932:1007::-;36021:7;36057:16;36067:5;36057:9;:16::i;:::-;36049:5;:24;36041:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;36123:22;36148:13;:11;:13::i;:::-;36123:38;;36172:19;36202:25;36391:9;36386:466;36406:14;36402:1;:18;36386:466;;;36446:31;36480:11;:14;36492:1;36480:14;;;;;;;;;;;36446:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36543:1;36517:28;;:9;:14;;;:28;;;36513:111;;36590:9;:14;;;36570:34;;36513:111;36667:5;36646:26;;:17;:26;;;36642:195;;;36716:5;36701:11;:20;36697:85;;;36757:1;36750:8;;;;;;;;;36697:85;36804:13;;;;;;;36642:195;36427:425;36422:3;;;;;;;36386:466;;;;36875:56;;;;;;;;;;:::i;:::-;;;;;;;;35932:1007;;;;;:::o;51460:175::-;9983:12;:10;:12::i;:::-;9972:23;;:7;:5;:7::i;:::-;:23;;;9964:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4726:1:::1;5324:7;;:19;;5316:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;4726:1;5457:7;:18;;;;51520:11:::2;51545:10;51537:24;;51569:21;51537:58;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51519:76;;;51610:6;51602:25;;;;;;;;;;;;:::i;:::-;;;;;;;;;51512:123;4682:1:::1;5636:7;:22;;;;51460:175::o:0;41587:185::-;41725:39;41742:4;41748:2;41752:7;41725:39;;;;;;;;;;;;:16;:39::i;:::-;41587:185;;;:::o;50357:28::-;;;;:::o;35445:187::-;35512:7;35548:13;:11;:13::i;:::-;35540:5;:21;35532:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;35619:5;35612:12;;35445:187;;;:::o;51172:96::-;9983:12;:10;:12::i;:::-;9972:23;;:7;:5;:7::i;:::-;:23;;;9964:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51254:8:::1;;51244:7;:18;;;;;;;:::i;:::-;;51172:96:::0;;:::o;38706:124::-;38770:7;38797:20;38809:7;38797:11;:20::i;:::-;:25;;;38790:32;;38706:124;;;:::o;50224:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;37447:221::-;37511:7;37556:1;37539:19;;:5;:19;;;;37531:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;37632:12;:19;37645:5;37632:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;37624:36;;37617:43;;37447:221;;;:::o;10403:103::-;9983:12;:10;:12::i;:::-;9972:23;;:7;:5;:7::i;:::-;:23;;;9964:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10468:30:::1;10495:1;10468:18;:30::i;:::-;10403:103::o:0;9752:87::-;9798:7;9825:6;;;;;;;;;;;9818:13;;9752:87;:::o;39066:104::-;39122:13;39155:7;39148:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39066:104;:::o;50255:31::-;;;;:::o;50479:574::-;50544:9;;;;;;;;;;;50536:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;50606:1;50599:6;:8;50591:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;50672:9;50658:23;;:10;:23;;;50650:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;50753:9;;50743:6;50727:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;50719:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;50826:12;;50816:6;50789:24;50802:10;50789:12;:24::i;:::-;:33;;;;:::i;:::-;:49;;50781:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;50862:9;50910:10;;50901:6;50885:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;50882:59;;;50935:6;50929:5;;:12;;;;:::i;:::-;50922:19;;50882:59;50969:4;50956:9;:17;;50948:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;51018:29;51028:10;51040:6;51018:9;:29::i;:::-;50529:524;50479:574;:::o;40756:288::-;40863:12;:10;:12::i;:::-;40851:24;;:8;:24;;;;40843:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;40964:8;40919:18;:32;40938:12;:10;:12::i;:::-;40919:32;;;;;;;;;;;;;;;:42;40952:8;40919:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;41017:8;40988:48;;41003:12;:10;:12::i;:::-;40988:48;;;41027:8;40988:48;;;;;;:::i;:::-;;;;;;;;40756:288;;:::o;41843:355::-;42002:28;42012:4;42018:2;42022:7;42002:9;:28::i;:::-;42063:48;42086:4;42092:2;42096:7;42105:5;42063:22;:48::i;:::-;42041:149;;;;;;;;;;;;:::i;:::-;;;;;;;;;41843:355;;;;:::o;39241:346::-;39314:13;39348:16;39356:7;39348;:16::i;:::-;39340:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;39429:21;39453:10;:8;:10::i;:::-;39429:34;;39506:1;39487:7;39481:21;:26;;:96;;;;;;;;;;;;;;;;;39534:7;39543:18;:7;:16;:18::i;:::-;39517:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;39481:96;39474:103;;;39241:346;;;:::o;51274:72::-;9983:12;:10;:12::i;:::-;9972:23;;:7;:5;:7::i;:::-;:23;;;9964:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51336:4:::1;51324:9;;:16;;;;;;;;;;;;;;;;;;51274:72::o:0;50291:28::-;;;;:::o;51059:107::-;51117:7;51140:20;51154:5;51140:13;:20::i;:::-;51133:27;;51059:107;;;:::o;41115:164::-;41212:4;41236:18;:25;41255:5;41236:25;;;;;;;;;;;;;;;:35;41262:8;41236:35;;;;;;;;;;;;;;;;;;;;;;;;;41229:42;;41115:164;;;;:::o;10661:201::-;9983:12;:10;:12::i;:::-;9972:23;;:7;:5;:7::i;:::-;:23;;;9964:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10770:1:::1;10750:22;;:8;:22;;;;10742:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;10826:28;10845:8;10826:18;:28::i;:::-;10661:201:::0;:::o;26531:157::-;26616:4;26655:25;26640:40;;;:11;:40;;;;26633:47;;26531:157;;;:::o;42453:111::-;42510:4;42544:12;;42534:7;:22;42527:29;;42453:111;;;:::o;8476:98::-;8529:7;8556:10;8549:17;;8476:98;:::o;47373:196::-;47515:2;47488:15;:24;47504:7;47488:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;47553:7;47549:2;47533:28;;47542:5;47533:28;;;;;;;;;;;;47373:196;;;:::o;45253:2002::-;45368:35;45406:20;45418:7;45406:11;:20::i;:::-;45368:58;;45439:22;45481:13;:18;;;45465:34;;:12;:10;:12::i;:::-;:34;;;:87;;;;45540:12;:10;:12::i;:::-;45516:36;;:20;45528:7;45516:11;:20::i;:::-;:36;;;45465:87;:154;;;;45569:50;45586:13;:18;;;45606:12;:10;:12::i;:::-;45569:16;:50::i;:::-;45465:154;45439:181;;45641:17;45633:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;45756:4;45734:26;;:13;:18;;;:26;;;45726:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;45836:1;45822:16;;:2;:16;;;;45814:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;45893:43;45915:4;45921:2;45925:7;45934:1;45893:21;:43::i;:::-;46001:49;46018:1;46022:7;46031:13;:18;;;46001:8;:49::i;:::-;46376:1;46346:12;:18;46359:4;46346:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46420:1;46392:12;:16;46405:2;46392:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46466:2;46438:11;:20;46450:7;46438:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;46528:15;46483:11;:20;46495:7;46483:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;46796:19;46828:1;46818:7;:11;46796:33;;46889:1;46848:43;;:11;:24;46860:11;46848:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;46844:295;;;46916:20;46924:11;46916:7;:20::i;:::-;46912:212;;;46993:13;:18;;;46961:11;:24;46973:11;46961:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;47076:13;:28;;;47034:11;:24;47046:11;47034:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;46912:212;46844:295;46321:829;47186:7;47182:2;47167:27;;47176:4;47167:27;;;;;;;;;;;;47205:42;47226:4;47232:2;47236:7;47245:1;47205:20;:42::i;:::-;45357:1898;;45253:2002;;;:::o;38107:537::-;38168:21;;:::i;:::-;38210:16;38218:7;38210;:16::i;:::-;38202:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;38316:12;38331:7;38316:22;;38311:245;38348:1;38340:4;:9;38311:245;;38378:31;38412:11;:17;38424:4;38412:17;;;;;;;;;;;38378:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38478:1;38452:28;;:9;:14;;;:28;;;38448:93;;38512:9;38505:16;;;;;;38448:93;38359:197;38351:6;;;;;;;;38311:245;;;;38579:57;;;;;;;;;;:::i;:::-;;;;;;;;38107:537;;;;:::o;11022:191::-;11096:16;11115:6;;;;;;;;;;;11096:25;;11141:8;11132:6;;:17;;;;;;;;;;;;;;;;;;11196:8;11165:40;;11186:8;11165:40;;;;;;;;;;;;11085:128;11022:191;:::o;42572:104::-;42641:27;42651:2;42655:8;42641:27;;;;;;;;;;;;:9;:27::i;:::-;42572:104;;:::o;48134:804::-;48289:4;48310:15;:2;:13;;;:15::i;:::-;48306:625;;;48362:2;48346:36;;;48383:12;:10;:12::i;:::-;48397:4;48403:7;48412:5;48346:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;48342:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48609:1;48592:6;:13;:18;48588:273;;;48635:61;;;;;;;;;;:::i;:::-;;;;;;;;48588:273;48811:6;48805:13;48796:6;48792:2;48788:15;48781:38;48342:534;48479:45;;;48469:55;;;:6;:55;;;;48462:62;;;;;48306:625;48915:4;48908:11;;48134:804;;;;;;;:::o;51352:102::-;51412:13;51441:7;51434:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51352:102;:::o;6038:723::-;6094:13;6324:1;6315:5;:10;6311:53;;;6342:10;;;;;;;;;;;;;;;;;;;;;6311:53;6374:12;6389:5;6374:20;;6405:14;6430:78;6445:1;6437:4;:9;6430:78;;6463:8;;;;;:::i;:::-;;;;6494:2;6486:10;;;;;:::i;:::-;;;6430:78;;;6518:19;6550:6;6540:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6518:39;;6568:154;6584:1;6575:5;:10;6568:154;;6612:1;6602:11;;;;;:::i;:::-;;;6679:2;6671:5;:10;;;;:::i;:::-;6658:2;:24;;;;:::i;:::-;6645:39;;6628:6;6635;6628:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;6708:2;6699:11;;;;;:::i;:::-;;;6568:154;;;6746:6;6732:21;;;;;6038:723;;;;:::o;37676:229::-;37737:7;37782:1;37765:19;;:5;:19;;;;37757:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;37864:12;:19;37877:5;37864:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;37856:41;;37849:48;;37676:229;;;:::o;49426:159::-;;;;;:::o;49997:158::-;;;;;:::o;43039:163::-;43162:32;43168:2;43172:8;43182:5;43189:4;43162:5;:32::i;:::-;43039:163;;;:::o;12453:326::-;12513:4;12770:1;12748:7;:19;;;:23;12741:30;;12453:326;;;:::o;43461:1538::-;43600:20;43623:12;;43600:35;;43668:1;43654:16;;:2;:16;;;;43646:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;43739:1;43727:8;:13;;43719:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;43798:61;43828:1;43832:2;43836:12;43850:8;43798:21;:61::i;:::-;44173:8;44137:12;:16;44150:2;44137:16;;;;;;;;;;;;;;;:24;;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44238:8;44197:12;:16;44210:2;44197:16;;;;;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44297:2;44264:11;:25;44276:12;44264:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;44364:15;44314:11;:25;44326:12;44314:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;44397:20;44420:12;44397:35;;44454:9;44449:415;44469:8;44465:1;:12;44449:415;;;44533:12;44529:2;44508:38;;44525:1;44508:38;;;;;;;;;;;;44569:4;44565:249;;;44632:59;44663:1;44667:2;44671:12;44685:5;44632:22;:59::i;:::-;44598:196;;;;;;;;;;;;:::i;:::-;;;;;;;;;44565:249;44834:14;;;;;;;44479:3;;;;;;;44449:415;;;;44895:12;44880;:27;;;;44112:807;44931:60;44960:1;44964:2;44968:12;44982:8;44931:20;:60::i;:::-;43589:1410;43461: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:::-;8845:3;8866:67;8930:2;8925:3;8866:67;:::i;:::-;8859:74;;8942:93;9031:3;8942:93;:::i;:::-;9060:2;9055:3;9051:12;9044:19;;8703:366;;;:::o;9075:::-;9217:3;9238:67;9302:2;9297:3;9238:67;:::i;:::-;9231:74;;9314:93;9403:3;9314:93;:::i;:::-;9432:2;9427:3;9423:12;9416:19;;9075:366;;;:::o;9447:365::-;9589:3;9610:66;9674:1;9669:3;9610:66;:::i;:::-;9603:73;;9685:93;9774:3;9685:93;:::i;:::-;9803:2;9798:3;9794:12;9787:19;;9447:365;;;:::o;9818:366::-;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:::-;11448:3;11469:67;11533:2;11528:3;11469:67;:::i;:::-;11462:74;;11545:93;11634:3;11545:93;:::i;:::-;11663:2;11658:3;11654:12;11647:19;;11306:366;;;:::o;11678:::-;11820:3;11841:67;11905:2;11900:3;11841:67;:::i;:::-;11834:74;;11917:93;12006:3;11917:93;:::i;:::-;12035:2;12030:3;12026:12;12019:19;;11678:366;;;:::o;12050:::-;12192:3;12213:67;12277:2;12272:3;12213:67;:::i;:::-;12206:74;;12289:93;12378:3;12289:93;:::i;:::-;12407:2;12402:3;12398:12;12391:19;;12050:366;;;:::o;12422:::-;12564:3;12585:67;12649:2;12644:3;12585:67;:::i;:::-;12578:74;;12661:93;12750:3;12661:93;:::i;:::-;12779:2;12774:3;12770:12;12763:19;;12422:366;;;:::o;12794:::-;12936:3;12957:67;13021:2;13016:3;12957:67;:::i;:::-;12950:74;;13033:93;13122:3;13033:93;:::i;:::-;13151:2;13146:3;13142:12;13135:19;;12794:366;;;:::o;13166:400::-;13326:3;13347:84;13429:1;13424:3;13347:84;:::i;:::-;13340:91;;13440:93;13529:3;13440:93;:::i;:::-;13558:1;13553:3;13549:11;13542:18;;13166:400;;;:::o;13572:366::-;13714:3;13735:67;13799:2;13794:3;13735:67;:::i;:::-;13728:74;;13811:93;13900:3;13811:93;:::i;:::-;13929:2;13924:3;13920:12;13913:19;;13572:366;;;:::o;13944:::-;14086:3;14107:67;14171:2;14166:3;14107:67;:::i;:::-;14100:74;;14183:93;14272:3;14183:93;:::i;:::-;14301:2;14296:3;14292:12;14285:19;;13944:366;;;:::o;14316:::-;14458:3;14479:67;14543:2;14538:3;14479:67;:::i;:::-;14472:74;;14555:93;14644:3;14555:93;:::i;:::-;14673:2;14668:3;14664:12;14657:19;;14316:366;;;:::o;14688:::-;14830:3;14851:67;14915:2;14910:3;14851:67;:::i;:::-;14844:74;;14927:93;15016:3;14927:93;:::i;:::-;15045:2;15040:3;15036:12;15029:19;;14688:366;;;:::o;15060:::-;15202:3;15223:67;15287:2;15282:3;15223:67;:::i;:::-;15216:74;;15299:93;15388:3;15299:93;:::i;:::-;15417:2;15412:3;15408:12;15401:19;;15060:366;;;:::o;15432:398::-;15591:3;15612:83;15693:1;15688:3;15612:83;:::i;:::-;15605:90;;15704:93;15793:3;15704:93;:::i;:::-;15822:1;15817:3;15813:11;15806:18;;15432:398;;;:::o;15836:365::-;15978:3;15999:66;16063:1;16058:3;15999:66;:::i;:::-;15992:73;;16074:93;16163:3;16074:93;:::i;:::-;16192:2;16187:3;16183:12;16176:19;;15836:365;;;:::o;16207:366::-;16349:3;16370:67;16434:2;16429:3;16370:67;:::i;:::-;16363:74;;16446:93;16535:3;16446:93;:::i;:::-;16564:2;16559:3;16555:12;16548:19;;16207:366;;;:::o;16579:::-;16721:3;16742:67;16806:2;16801:3;16742:67;:::i;:::-;16735:74;;16818:93;16907:3;16818:93;:::i;:::-;16936:2;16931:3;16927:12;16920:19;;16579:366;;;:::o;16951:::-;17093:3;17114:67;17178:2;17173:3;17114:67;:::i;:::-;17107:74;;17190:93;17279:3;17190:93;:::i;:::-;17308:2;17303:3;17299:12;17292:19;;16951:366;;;:::o;17323:::-;17465:3;17486:67;17550:2;17545:3;17486:67;:::i;:::-;17479:74;;17562:93;17651:3;17562:93;:::i;:::-;17680:2;17675:3;17671:12;17664:19;;17323:366;;;:::o;17695:::-;17837:3;17858:67;17922:2;17917:3;17858:67;:::i;:::-;17851:74;;17934:93;18023:3;17934:93;:::i;:::-;18052:2;18047:3;18043:12;18036:19;;17695:366;;;:::o;18067:::-;18209:3;18230:67;18294:2;18289:3;18230:67;:::i;:::-;18223:74;;18306:93;18395:3;18306:93;:::i;:::-;18424:2;18419:3;18415:12;18408:19;;18067:366;;;:::o;18439:::-;18581:3;18602:67;18666:2;18661:3;18602:67;:::i;:::-;18595:74;;18678:93;18767:3;18678:93;:::i;:::-;18796:2;18791:3;18787:12;18780:19;;18439:366;;;:::o;18811:::-;18953:3;18974:67;19038:2;19033:3;18974:67;:::i;:::-;18967:74;;19050:93;19139:3;19050:93;:::i;:::-;19168:2;19163:3;19159:12;19152:19;;18811:366;;;:::o;19183:::-;19325:3;19346:67;19410:2;19405:3;19346:67;:::i;:::-;19339:74;;19422:93;19511:3;19422:93;:::i;:::-;19540:2;19535:3;19531:12;19524:19;;19183:366;;;:::o;19555:118::-;19642:24;19660:5;19642:24;:::i;:::-;19637:3;19630:37;19555:118;;:::o;19679:701::-;19960:3;19982:95;20073:3;20064:6;19982:95;:::i;:::-;19975:102;;20094:95;20185:3;20176:6;20094:95;:::i;:::-;20087:102;;20206:148;20350:3;20206:148;:::i;:::-;20199:155;;20371:3;20364:10;;19679:701;;;;;:::o;20386:379::-;20570:3;20592:147;20735:3;20592:147;:::i;:::-;20585:154;;20756:3;20749:10;;20386:379;;;:::o;20771:222::-;20864:4;20902:2;20891:9;20887:18;20879:26;;20915:71;20983:1;20972:9;20968:17;20959:6;20915:71;:::i;:::-;20771:222;;;;:::o;20999:640::-;21194:4;21232:3;21221:9;21217:19;21209:27;;21246:71;21314:1;21303:9;21299:17;21290:6;21246:71;:::i;:::-;21327:72;21395:2;21384:9;21380:18;21371:6;21327:72;:::i;:::-;21409;21477:2;21466:9;21462:18;21453:6;21409:72;:::i;:::-;21528:9;21522:4;21518:20;21513:2;21502:9;21498:18;21491:48;21556:76;21627:4;21618:6;21556:76;:::i;:::-;21548:84;;20999:640;;;;;;;:::o;21645:210::-;21732:4;21770:2;21759:9;21755:18;21747:26;;21783:65;21845:1;21834:9;21830:17;21821:6;21783:65;:::i;:::-;21645:210;;;;:::o;21861:313::-;21974:4;22012:2;22001:9;21997:18;21989:26;;22061:9;22055:4;22051:20;22047:1;22036:9;22032:17;22025:47;22089:78;22162:4;22153:6;22089:78;:::i;:::-;22081:86;;21861:313;;;;:::o;22180:419::-;22346:4;22384:2;22373:9;22369:18;22361:26;;22433:9;22427:4;22423:20;22419:1;22408:9;22404:17;22397:47;22461:131;22587:4;22461:131;:::i;:::-;22453:139;;22180:419;;;:::o;22605:::-;22771:4;22809:2;22798:9;22794:18;22786:26;;22858:9;22852:4;22848:20;22844:1;22833:9;22829:17;22822:47;22886:131;23012:4;22886:131;:::i;:::-;22878:139;;22605:419;;;:::o;23030:::-;23196:4;23234:2;23223:9;23219:18;23211:26;;23283:9;23277:4;23273:20;23269:1;23258:9;23254:17;23247:47;23311:131;23437:4;23311:131;:::i;:::-;23303:139;;23030:419;;;:::o;23455:::-;23621:4;23659:2;23648:9;23644:18;23636:26;;23708:9;23702:4;23698:20;23694:1;23683:9;23679:17;23672:47;23736:131;23862:4;23736:131;:::i;:::-;23728:139;;23455:419;;;:::o;23880:::-;24046:4;24084:2;24073:9;24069:18;24061:26;;24133:9;24127:4;24123:20;24119:1;24108:9;24104:17;24097:47;24161:131;24287:4;24161:131;:::i;:::-;24153:139;;23880:419;;;:::o;24305:::-;24471:4;24509:2;24498:9;24494:18;24486:26;;24558:9;24552:4;24548:20;24544:1;24533:9;24529:17;24522:47;24586:131;24712:4;24586:131;:::i;:::-;24578:139;;24305:419;;;:::o;24730:::-;24896:4;24934:2;24923:9;24919:18;24911:26;;24983:9;24977:4;24973:20;24969:1;24958:9;24954:17;24947:47;25011:131;25137:4;25011:131;:::i;:::-;25003:139;;24730:419;;;:::o;25155:::-;25321:4;25359:2;25348:9;25344:18;25336:26;;25408:9;25402:4;25398:20;25394:1;25383:9;25379:17;25372:47;25436:131;25562:4;25436:131;:::i;:::-;25428:139;;25155:419;;;:::o;25580:::-;25746:4;25784:2;25773:9;25769:18;25761:26;;25833:9;25827:4;25823:20;25819:1;25808:9;25804:17;25797:47;25861:131;25987:4;25861:131;:::i;:::-;25853:139;;25580:419;;;:::o;26005:::-;26171:4;26209:2;26198:9;26194:18;26186:26;;26258:9;26252:4;26248:20;26244:1;26233:9;26229:17;26222:47;26286:131;26412:4;26286:131;:::i;:::-;26278:139;;26005:419;;;:::o;26430:::-;26596:4;26634:2;26623:9;26619:18;26611:26;;26683:9;26677:4;26673:20;26669:1;26658:9;26654:17;26647:47;26711:131;26837:4;26711:131;:::i;:::-;26703:139;;26430:419;;;:::o;26855:::-;27021:4;27059:2;27048:9;27044:18;27036:26;;27108:9;27102:4;27098:20;27094:1;27083:9;27079:17;27072:47;27136:131;27262:4;27136:131;:::i;:::-;27128:139;;26855:419;;;:::o;27280:::-;27446:4;27484:2;27473:9;27469:18;27461:26;;27533:9;27527:4;27523:20;27519:1;27508:9;27504:17;27497:47;27561:131;27687:4;27561:131;:::i;:::-;27553:139;;27280:419;;;:::o;27705:::-;27871:4;27909:2;27898:9;27894:18;27886:26;;27958:9;27952:4;27948:20;27944:1;27933:9;27929:17;27922:47;27986:131;28112:4;27986:131;:::i;:::-;27978:139;;27705:419;;;:::o;28130:::-;28296:4;28334:2;28323:9;28319:18;28311:26;;28383:9;28377:4;28373:20;28369:1;28358:9;28354:17;28347:47;28411:131;28537:4;28411:131;:::i;:::-;28403:139;;28130:419;;;:::o;28555:::-;28721:4;28759:2;28748:9;28744:18;28736:26;;28808:9;28802:4;28798:20;28794:1;28783:9;28779:17;28772:47;28836:131;28962:4;28836:131;:::i;:::-;28828:139;;28555:419;;;:::o;28980:::-;29146:4;29184:2;29173:9;29169:18;29161:26;;29233:9;29227:4;29223:20;29219:1;29208:9;29204:17;29197:47;29261:131;29387:4;29261:131;:::i;:::-;29253:139;;28980:419;;;:::o;29405:::-;29571:4;29609:2;29598:9;29594:18;29586:26;;29658:9;29652:4;29648:20;29644:1;29633:9;29629:17;29622:47;29686:131;29812:4;29686:131;:::i;:::-;29678:139;;29405:419;;;:::o;29830:::-;29996:4;30034:2;30023:9;30019:18;30011:26;;30083:9;30077:4;30073:20;30069:1;30058:9;30054:17;30047:47;30111:131;30237:4;30111:131;:::i;:::-;30103:139;;29830:419;;;:::o;30255:::-;30421:4;30459:2;30448:9;30444:18;30436:26;;30508:9;30502:4;30498:20;30494:1;30483:9;30479:17;30472:47;30536:131;30662:4;30536:131;:::i;:::-;30528:139;;30255:419;;;:::o;30680:::-;30846:4;30884:2;30873:9;30869:18;30861:26;;30933:9;30927:4;30923:20;30919:1;30908:9;30904:17;30897:47;30961:131;31087:4;30961:131;:::i;:::-;30953:139;;30680:419;;;:::o;31105:::-;31271:4;31309:2;31298:9;31294:18;31286:26;;31358:9;31352:4;31348:20;31344:1;31333:9;31329:17;31322:47;31386:131;31512:4;31386:131;:::i;:::-;31378:139;;31105:419;;;:::o;31530:::-;31696:4;31734:2;31723:9;31719:18;31711:26;;31783:9;31777:4;31773:20;31769:1;31758:9;31754:17;31747:47;31811:131;31937:4;31811:131;:::i;:::-;31803:139;;31530:419;;;:::o;31955:::-;32121:4;32159:2;32148:9;32144:18;32136:26;;32208:9;32202:4;32198:20;32194:1;32183:9;32179:17;32172:47;32236:131;32362:4;32236:131;:::i;:::-;32228:139;;31955:419;;;:::o;32380:::-;32546:4;32584:2;32573:9;32569:18;32561:26;;32633:9;32627:4;32623:20;32619:1;32608:9;32604:17;32597:47;32661:131;32787:4;32661:131;:::i;:::-;32653:139;;32380:419;;;:::o;32805:::-;32971:4;33009:2;32998:9;32994:18;32986:26;;33058:9;33052:4;33048:20;33044:1;33033:9;33029:17;33022:47;33086:131;33212:4;33086:131;:::i;:::-;33078:139;;32805:419;;;:::o;33230:::-;33396:4;33434:2;33423:9;33419:18;33411:26;;33483:9;33477:4;33473:20;33469:1;33458:9;33454:17;33447:47;33511:131;33637:4;33511:131;:::i;:::-;33503:139;;33230:419;;;:::o;33655:::-;33821:4;33859:2;33848:9;33844:18;33836:26;;33908:9;33902:4;33898:20;33894:1;33883:9;33879:17;33872:47;33936:131;34062:4;33936:131;:::i;:::-;33928:139;;33655:419;;;:::o;34080:222::-;34173:4;34211:2;34200:9;34196:18;34188:26;;34224:71;34292:1;34281:9;34277:17;34268:6;34224:71;:::i;:::-;34080:222;;;;:::o;34308:129::-;34342:6;34369:20;;:::i;:::-;34359:30;;34398:33;34426:4;34418:6;34398:33;:::i;:::-;34308:129;;;:::o;34443:75::-;34476:6;34509:2;34503:9;34493:19;;34443:75;:::o;34524:307::-;34585:4;34675:18;34667:6;34664:30;34661:56;;;34697:18;;:::i;:::-;34661:56;34735:29;34757:6;34735:29;:::i;:::-;34727:37;;34819:4;34813;34809:15;34801:23;;34524:307;;;:::o;34837:98::-;34888:6;34922:5;34916:12;34906:22;;34837:98;;;:::o;34941:99::-;34993:6;35027:5;35021:12;35011:22;;34941:99;;;:::o;35046:168::-;35129:11;35163:6;35158:3;35151:19;35203:4;35198:3;35194:14;35179:29;;35046:168;;;;:::o;35220:147::-;35321:11;35358:3;35343:18;;35220:147;;;;:::o;35373:169::-;35457:11;35491:6;35486:3;35479:19;35531:4;35526:3;35522:14;35507:29;;35373:169;;;;:::o;35548:148::-;35650:11;35687:3;35672:18;;35548:148;;;;:::o;35702:305::-;35742:3;35761:20;35779:1;35761:20;:::i;:::-;35756:25;;35795:20;35813:1;35795:20;:::i;:::-;35790:25;;35949:1;35881:66;35877:74;35874:1;35871:81;35868:107;;;35955:18;;:::i;:::-;35868:107;35999:1;35996;35992:9;35985:16;;35702:305;;;;:::o;36013:185::-;36053:1;36070:20;36088:1;36070:20;:::i;:::-;36065:25;;36104:20;36122:1;36104:20;:::i;:::-;36099:25;;36143:1;36133:35;;36148:18;;:::i;:::-;36133:35;36190:1;36187;36183:9;36178:14;;36013:185;;;;:::o;36204:348::-;36244:7;36267:20;36285:1;36267:20;:::i;:::-;36262:25;;36301:20;36319:1;36301:20;:::i;:::-;36296:25;;36489:1;36421:66;36417:74;36414:1;36411:81;36406:1;36399:9;36392:17;36388:105;36385:131;;;36496:18;;:::i;:::-;36385:131;36544:1;36541;36537:9;36526:20;;36204:348;;;;:::o;36558:191::-;36598:4;36618:20;36636:1;36618:20;:::i;:::-;36613:25;;36652:20;36670:1;36652:20;:::i;:::-;36647:25;;36691:1;36688;36685:8;36682:34;;;36696:18;;:::i;:::-;36682:34;36741:1;36738;36734:9;36726:17;;36558:191;;;;:::o;36755:96::-;36792:7;36821:24;36839:5;36821:24;:::i;:::-;36810:35;;36755:96;;;:::o;36857:90::-;36891:7;36934:5;36927:13;36920:21;36909:32;;36857:90;;;:::o;36953:149::-;36989:7;37029:66;37022:5;37018:78;37007:89;;36953:149;;;:::o;37108:126::-;37145:7;37185:42;37178:5;37174:54;37163:65;;37108:126;;;:::o;37240:77::-;37277:7;37306:5;37295:16;;37240:77;;;:::o;37323:154::-;37407:6;37402:3;37397;37384:30;37469:1;37460:6;37455:3;37451:16;37444:27;37323:154;;;:::o;37483:307::-;37551:1;37561:113;37575:6;37572:1;37569:13;37561:113;;;37660:1;37655:3;37651:11;37645:18;37641:1;37636:3;37632:11;37625:39;37597:2;37594:1;37590:10;37585:15;;37561:113;;;37692:6;37689:1;37686:13;37683:101;;;37772:1;37763:6;37758:3;37754:16;37747:27;37683:101;37532:258;37483:307;;;:::o;37796:320::-;37840:6;37877:1;37871:4;37867:12;37857:22;;37924:1;37918:4;37914:12;37945:18;37935:81;;38001:4;37993:6;37989:17;37979:27;;37935:81;38063:2;38055:6;38052:14;38032:18;38029:38;38026:84;;;38082:18;;:::i;:::-;38026:84;37847:269;37796:320;;;:::o;38122:281::-;38205:27;38227:4;38205:27;:::i;:::-;38197:6;38193:40;38335:6;38323:10;38320:22;38299:18;38287:10;38284:34;38281:62;38278:88;;;38346:18;;:::i;:::-;38278:88;38386:10;38382:2;38375:22;38165:238;38122:281;;:::o;38409:233::-;38448:3;38471:24;38489:5;38471:24;:::i;:::-;38462:33;;38517:66;38510:5;38507:77;38504:103;;;38587:18;;:::i;:::-;38504:103;38634:1;38627:5;38623:13;38616:20;;38409:233;;;:::o;38648:176::-;38680:1;38697:20;38715:1;38697:20;:::i;:::-;38692:25;;38731:20;38749:1;38731:20;:::i;:::-;38726:25;;38770:1;38760:35;;38775:18;;:::i;:::-;38760:35;38816:1;38813;38809:9;38804:14;;38648:176;;;;:::o;38830:180::-;38878:77;38875:1;38868:88;38975:4;38972:1;38965:15;38999:4;38996:1;38989:15;39016:180;39064:77;39061:1;39054:88;39161:4;39158:1;39151:15;39185:4;39182:1;39175:15;39202:180;39250:77;39247:1;39240:88;39347:4;39344:1;39337:15;39371:4;39368:1;39361:15;39388:180;39436:77;39433:1;39426:88;39533:4;39530:1;39523:15;39557:4;39554:1;39547:15;39574:180;39622:77;39619:1;39612:88;39719:4;39716:1;39709:15;39743:4;39740:1;39733:15;39760:117;39869:1;39866;39859:12;39883:117;39992:1;39989;39982:12;40006:117;40115:1;40112;40105:12;40129:117;40238:1;40235;40228:12;40252:117;40361:1;40358;40351:12;40375:117;40484:1;40481;40474:12;40498:102;40539:6;40590:2;40586:7;40581:2;40574:5;40570:14;40566:28;40556:38;;40498:102;;;:::o;40606:221::-;40746:34;40742:1;40734:6;40730:14;40723:58;40815:4;40810:2;40802:6;40798:15;40791:29;40606:221;:::o;40833:225::-;40973:34;40969:1;40961:6;40957:14;40950:58;41042:8;41037:2;41029:6;41025:15;41018:33;40833:225;:::o;41064:229::-;41204:34;41200:1;41192:6;41188:14;41181:58;41273:12;41268:2;41260:6;41256:15;41249:37;41064:229;:::o;41299:156::-;41439:8;41435:1;41427:6;41423:14;41416:32;41299:156;:::o;41461:222::-;41601:34;41597:1;41589:6;41585:14;41578:58;41670:5;41665:2;41657:6;41653:15;41646:30;41461:222;:::o;41689:220::-;41829:34;41825:1;41817:6;41813:14;41806:58;41898:3;41893:2;41885:6;41881:15;41874:28;41689:220;:::o;41915:224::-;42055:34;42051:1;42043:6;42039:14;42032:58;42124:7;42119:2;42111:6;42107:15;42100:32;41915:224;:::o;42145:236::-;42285:34;42281:1;42273:6;42269:14;42262:58;42354:19;42349:2;42341:6;42337:15;42330:44;42145:236;:::o;42387:244::-;42527:34;42523:1;42515:6;42511:14;42504:58;42596:27;42591:2;42583:6;42579:15;42572:52;42387:244;:::o;42637:181::-;42777:33;42773:1;42765:6;42761:14;42754:57;42637:181;:::o;42824:230::-;42964:34;42960:1;42952:6;42948:14;42941:58;43033:13;43028:2;43020:6;43016:15;43009:38;42824:230;:::o;43060:162::-;43200:14;43196:1;43188:6;43184:14;43177:38;43060:162;:::o;43228:225::-;43368:34;43364:1;43356:6;43352:14;43345:58;43437:8;43432:2;43424:6;43420:15;43413:33;43228:225;:::o;43459:155::-;43599:7;43595:1;43587:6;43583:14;43576:31;43459:155;:::o;43620:182::-;43760:34;43756:1;43748:6;43744:14;43737:58;43620:182;:::o;43808:234::-;43948:34;43944:1;43936:6;43932:14;43925:58;44017:17;44012:2;44004:6;44000:15;43993:42;43808:234;:::o;44048:176::-;44188:28;44184:1;44176:6;44172:14;44165:52;44048:176;:::o;44230:237::-;44370:34;44366:1;44358:6;44354:14;44347:58;44439:20;44434:2;44426:6;44422:15;44415:45;44230:237;:::o;44473:221::-;44613:34;44609:1;44601:6;44597:14;44590:58;44682:4;44677:2;44669:6;44665:15;44658:29;44473:221;:::o;44700:114::-;;:::o;44820:158::-;44960:10;44956:1;44948:6;44944:14;44937:34;44820:158;:::o;44984:238::-;45124:34;45120:1;45112:6;45108:14;45101:58;45193:21;45188:2;45180:6;45176:15;45169:46;44984:238;:::o;45228:220::-;45368:34;45364:1;45356:6;45352:14;45345:58;45437:3;45432:2;45424:6;45420:15;45413:28;45228:220;:::o;45454:227::-;45594:34;45590:1;45582:6;45578:14;45571:58;45663:10;45658:2;45650:6;45646:15;45639:35;45454:227;:::o;45687:233::-;45827:34;45823:1;45815:6;45811:14;45804:58;45896:16;45891:2;45883:6;45879:15;45872:41;45687:233;:::o;45926:181::-;46066:33;46062:1;46054:6;46050:14;46043:57;45926:181;:::o;46113:234::-;46253:34;46249:1;46241:6;46237:14;46230:58;46322:17;46317:2;46309:6;46305:15;46298:42;46113:234;:::o;46353:176::-;46493:28;46489:1;46481:6;46477:14;46470:52;46353:176;:::o;46535:232::-;46675:34;46671:1;46663:6;46659:14;46652:58;46744:15;46739:2;46731:6;46727:15;46720:40;46535:232;:::o;46773:176::-;46913:28;46909:1;46901:6;46897:14;46890:52;46773:176;:::o;46955:122::-;47028:24;47046:5;47028:24;:::i;:::-;47021:5;47018:35;47008:63;;47067:1;47064;47057:12;47008:63;46955:122;:::o;47083:116::-;47153:21;47168:5;47153:21;:::i;:::-;47146:5;47143:32;47133:60;;47189:1;47186;47179:12;47133:60;47083:116;:::o;47205:120::-;47277:23;47294:5;47277:23;:::i;:::-;47270:5;47267:34;47257:62;;47315:1;47312;47305:12;47257:62;47205:120;:::o;47331:122::-;47404:24;47422:5;47404:24;:::i;:::-;47397:5;47394:35;47384:63;;47443:1;47440;47433:12;47384:63;47331:122;:::o

Swarm Source

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