ETH Price: $3,286.81 (+1.21%)
Gas: 1 Gwei

Token

L’Amour (L’Amour)
 

Overview

Max Total Supply

105 L’Amour

Holders

83

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 L’Amour
0x69223341E9e22a87B4a7158164Ee0853901B70f1
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:
NFT_Vtail

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

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Context.sol


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

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


// OpenZeppelin Contracts (last updated v4.6.0) (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 `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

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

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

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

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

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

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

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

// 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: @openzeppelin/contracts/token/ERC721/ERC721.sol


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

pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // 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;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @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 ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: address zero is not a valid owner");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: invalid token ID");
        return owner;
    }

    /**
     * @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) {
        _requireMinted(tokenId);

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

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

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

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

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_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 {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved");

        _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 virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved");
        _safeTransfer(from, to, tokenId, data);
    }

    /**
     * @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.
     *
     * `data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: 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`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);

        _afterTokenTransfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);

        _afterTokenTransfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * 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
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits an {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @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.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    /// @solidity memory-safe-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}

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

// 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/ERC721Enumerable.sol


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

pragma solidity ^0.8.0;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

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

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

// File: nft-vtail.sol


pragma solidity ^0.8.0;












pragma solidity >=0.7.0 <0.9.0;

contract NFT_Vtail is ERC721Enumerable, Ownable {
  using Strings for uint256;

  string baseURI;
  string public baseExtension = ".json";
  uint256 public maxSupply = 105;
  uint256 public maxMintAmount = 105;
  bool public paused = false;
  bool public revealed = true;
  string public notRevealedUri;

  constructor() ERC721(unicode"L’Amour", unicode"L’Amour") {
    
  }

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

  
  function mintForOwner(uint256 _mintAmount) public onlyOwner {
    uint256 supply = totalSupply();
    require(!paused);
    require(_mintAmount > 0);
    require(_mintAmount <= maxMintAmount);
    require(supply + _mintAmount <= maxSupply);

    for (uint256 i = 1; i <= _mintAmount; i++) {
      _safeMint(msg.sender, supply + i);
    }
  }

  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory tokenIds = new uint256[](ownerTokenCount);
    for (uint256 i; i < ownerTokenCount; i++) {
      tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
    }
    return tokenIds;
  }

  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
    
    if(revealed == false) {
        return notRevealedUri;
    }

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

  //only owner
  function reveal() public onlyOwner {
      revealed = true;
  }
  

  function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
    maxMintAmount = _newmaxMintAmount;
  }
  
  function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
    notRevealedUri = _notRevealedURI;
  }

  function setBaseURI(string memory _newBaseURI) public onlyOwner {
    baseURI = _newBaseURI;
  }

  function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
    baseExtension = _newBaseExtension;
  }

  function pause(bool _state) public onlyOwner {
    paused = _state;
  }
 
  function withdraw() public payable onlyOwner {
    (bool hs, ) = payable(owner()).call{value: address(this).balance * 50 / 100}("");
    require(hs);
    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","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":"_mintAmount","type":"uint256"}],"name":"mintForOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c90805190602001906200005192919062000234565b506069600d556069600e556000600f60006101000a81548160ff0219169083151502179055506001600f60016101000a81548160ff0219169083151502179055503480156200009f57600080fd5b506040518060400160405280600981526020017f4ce28099416d6f757200000000000000000000000000000000000000000000008152506040518060400160405280600981526020017f4ce28099416d6f7572000000000000000000000000000000000000000000000081525081600090805190602001906200012492919062000234565b5080600190805190602001906200013d92919062000234565b50505062000160620001546200016660201b60201c565b6200016e60201b60201c565b62000349565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200024290620002e4565b90600052602060002090601f016020900481019282620002665760008555620002b2565b82601f106200028157805160ff1916838001178555620002b2565b82800160010185558215620002b2579182015b82811115620002b157825182559160200191906001019062000294565b5b509050620002c19190620002c5565b5090565b5b80821115620002e0576000816000905550600101620002c6565b5090565b60006002820490506001821680620002fd57607f821691505b602082108114156200031457620003136200031a565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613e5c80620003596000396000f3fe6080604052600436106101f95760003560e01c80636352211e1161010d578063a475b5dd116100a0578063d5abeb011161006f578063d5abeb0114610712578063da3ef23f1461073d578063e985e9c514610766578063f2c4ce1e146107a3578063f2fde38b146107cc576101f9565b8063a475b5dd1461066a578063b88d4fde14610681578063c6682862146106aa578063c87b56dd146106d5576101f9565b80637f00c7a6116100dc5780637f00c7a6146105c25780638da5cb5b146105eb57806395d89b4114610616578063a22cb46514610641576101f9565b80636352211e1461050857806363bc312a1461054557806370a082311461056e578063715018a6146105ab576101f9565b806323b872dd11610190578063438b63001161015f578063438b63001461040f5780634f6ccce71461044c578063518302271461048957806355f804b3146104b45780635c975abb146104dd576101f9565b806323b872dd146103765780632f745c591461039f5780633ccfd60b146103dc57806342842e0e146103e6576101f9565b8063081c8c44116101cc578063081c8c44146102cc578063095ea7b3146102f757806318160ddd14610320578063239c70ae1461034b576101f9565b806301ffc9a7146101fe57806302329a291461023b57806306fdde0314610264578063081812fc1461028f575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190612c6d565b6107f5565b6040516102329190613233565b60405180910390f35b34801561024757600080fd5b50610262600480360381019061025d9190612c40565b61086f565b005b34801561027057600080fd5b50610279610894565b604051610286919061324e565b60405180910390f35b34801561029b57600080fd5b506102b660048036038101906102b19190612d10565b610926565b6040516102c391906131aa565b60405180910390f35b3480156102d857600080fd5b506102e161096c565b6040516102ee919061324e565b60405180910390f35b34801561030357600080fd5b5061031e60048036038101906103199190612c00565b6109fa565b005b34801561032c57600080fd5b50610335610b12565b6040516103429190613470565b60405180910390f35b34801561035757600080fd5b50610360610b1f565b60405161036d9190613470565b60405180910390f35b34801561038257600080fd5b5061039d60048036038101906103989190612aea565b610b25565b005b3480156103ab57600080fd5b506103c660048036038101906103c19190612c00565b610b85565b6040516103d39190613470565b60405180910390f35b6103e4610c2a565b005b3480156103f257600080fd5b5061040d60048036038101906104089190612aea565b610d48565b005b34801561041b57600080fd5b5061043660048036038101906104319190612a7d565b610d68565b6040516104439190613211565b60405180910390f35b34801561045857600080fd5b50610473600480360381019061046e9190612d10565b610e16565b6040516104809190613470565b60405180910390f35b34801561049557600080fd5b5061049e610e87565b6040516104ab9190613233565b60405180910390f35b3480156104c057600080fd5b506104db60048036038101906104d69190612cc7565b610e9a565b005b3480156104e957600080fd5b506104f2610ebc565b6040516104ff9190613233565b60405180910390f35b34801561051457600080fd5b5061052f600480360381019061052a9190612d10565b610ecf565b60405161053c91906131aa565b60405180910390f35b34801561055157600080fd5b5061056c60048036038101906105679190612d10565b610f81565b005b34801561057a57600080fd5b5061059560048036038101906105909190612a7d565b611020565b6040516105a29190613470565b60405180910390f35b3480156105b757600080fd5b506105c06110d8565b005b3480156105ce57600080fd5b506105e960048036038101906105e49190612d10565b6110ec565b005b3480156105f757600080fd5b506106006110fe565b60405161060d91906131aa565b60405180910390f35b34801561062257600080fd5b5061062b611128565b604051610638919061324e565b60405180910390f35b34801561064d57600080fd5b5061066860048036038101906106639190612bc0565b6111ba565b005b34801561067657600080fd5b5061067f6111d0565b005b34801561068d57600080fd5b506106a860048036038101906106a39190612b3d565b6111f5565b005b3480156106b657600080fd5b506106bf611257565b6040516106cc919061324e565b60405180910390f35b3480156106e157600080fd5b506106fc60048036038101906106f79190612d10565b6112e5565b604051610709919061324e565b60405180910390f35b34801561071e57600080fd5b5061072761143e565b6040516107349190613470565b60405180910390f35b34801561074957600080fd5b50610764600480360381019061075f9190612cc7565b611444565b005b34801561077257600080fd5b5061078d60048036038101906107889190612aaa565b611466565b60405161079a9190613233565b60405180910390f35b3480156107af57600080fd5b506107ca60048036038101906107c59190612cc7565b6114fa565b005b3480156107d857600080fd5b506107f360048036038101906107ee9190612a7d565b61151c565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108685750610867826115a0565b5b9050919050565b610877611682565b80600f60006101000a81548160ff02191690831515021790555050565b6060600080546108a390613779565b80601f01602080910402602001604051908101604052809291908181526020018280546108cf90613779565b801561091c5780601f106108f15761010080835404028352916020019161091c565b820191906000526020600020905b8154815290600101906020018083116108ff57829003601f168201915b5050505050905090565b600061093182611700565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6010805461097990613779565b80601f01602080910402602001604051908101604052809291908181526020018280546109a590613779565b80156109f25780601f106109c7576101008083540402835291602001916109f2565b820191906000526020600020905b8154815290600101906020018083116109d557829003601f168201915b505050505081565b6000610a0582610ecf565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6d90613410565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a9561174b565b73ffffffffffffffffffffffffffffffffffffffff161480610ac45750610ac381610abe61174b565b611466565b5b610b03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afa90613370565b60405180910390fd5b610b0d8383611753565b505050565b6000600880549050905090565b600e5481565b610b36610b3061174b565b8261180c565b610b75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6c90613450565b60405180910390fd5b610b808383836118a1565b505050565b6000610b9083611020565b8210610bd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc890613270565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610c32611682565b6000610c3c6110fe565b73ffffffffffffffffffffffffffffffffffffffff166064603247610c619190613635565b610c6b9190613604565b604051610c7790613195565b60006040518083038185875af1925050503d8060008114610cb4576040519150601f19603f3d011682016040523d82523d6000602084013e610cb9565b606091505b5050905080610cc757600080fd5b6000610cd16110fe565b73ffffffffffffffffffffffffffffffffffffffff1647604051610cf490613195565b60006040518083038185875af1925050503d8060008114610d31576040519150601f19603f3d011682016040523d82523d6000602084013e610d36565b606091505b5050905080610d4457600080fd5b5050565b610d63838383604051806020016040528060008152506111f5565b505050565b60606000610d7583611020565b905060008167ffffffffffffffff811115610d9357610d92613941565b5b604051908082528060200260200182016040528015610dc15781602001602082028036833780820191505090505b50905060005b82811015610e0b57610dd98582610b85565b828281518110610dec57610deb613912565b5b6020026020010181815250508080610e03906137dc565b915050610dc7565b508092505050919050565b6000610e20610b12565b8210610e61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5890613430565b60405180910390fd5b60088281548110610e7557610e74613912565b5b90600052602060002001549050919050565b600f60019054906101000a900460ff1681565b610ea2611682565b80600b9080519060200190610eb8929190612891565b5050565b600f60009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6f906133f0565b60405180910390fd5b80915050919050565b610f89611682565b6000610f93610b12565b9050600f60009054906101000a900460ff1615610faf57600080fd5b60008211610fbc57600080fd5b600e54821115610fcb57600080fd5b600d548282610fda91906135ae565b1115610fe557600080fd5b6000600190505b82811161101b5761100833828461100391906135ae565b611b08565b8080611013906137dc565b915050610fec565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611091576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108890613350565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110e0611682565b6110ea6000611b26565b565b6110f4611682565b80600e8190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461113790613779565b80601f016020809104026020016040519081016040528092919081815260200182805461116390613779565b80156111b05780601f10611185576101008083540402835291602001916111b0565b820191906000526020600020905b81548152906001019060200180831161119357829003601f168201915b5050505050905090565b6111cc6111c561174b565b8383611bec565b5050565b6111d8611682565b6001600f60016101000a81548160ff021916908315150217905550565b61120661120061174b565b8361180c565b611245576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123c90613450565b60405180910390fd5b61125184848484611d59565b50505050565b600c805461126490613779565b80601f016020809104026020016040519081016040528092919081815260200182805461129090613779565b80156112dd5780601f106112b2576101008083540402835291602001916112dd565b820191906000526020600020905b8154815290600101906020018083116112c057829003601f168201915b505050505081565b60606112f082611db5565b61132f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611326906133d0565b60405180910390fd5b60001515600f60019054906101000a900460ff16151514156113dd576010805461135890613779565b80601f016020809104026020016040519081016040528092919081815260200182805461138490613779565b80156113d15780601f106113a6576101008083540402835291602001916113d1565b820191906000526020600020905b8154815290600101906020018083116113b457829003601f168201915b50505050509050611439565b60006113e7611e21565b905060008151116114075760405180602001604052806000815250611435565b8061141184611eb3565b600c60405160200161142593929190613164565b6040516020818303038152906040525b9150505b919050565b600d5481565b61144c611682565b80600c9080519060200190611462929190612891565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611502611682565b8060109080519060200190611518929190612891565b5050565b611524611682565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611594576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158b906132b0565b60405180910390fd5b61159d81611b26565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061166b57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061167b575061167a82612014565b5b9050919050565b61168a61174b565b73ffffffffffffffffffffffffffffffffffffffff166116a86110fe565b73ffffffffffffffffffffffffffffffffffffffff16146116fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f5906133b0565b60405180910390fd5b565b61170981611db5565b611748576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173f906133f0565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166117c683610ecf565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061181883610ecf565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061185a57506118598185611466565b5b8061189857508373ffffffffffffffffffffffffffffffffffffffff1661188084610926565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166118c182610ecf565b73ffffffffffffffffffffffffffffffffffffffff1614611917576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190e906132d0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611987576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197e90613310565b60405180910390fd5b61199283838361207e565b61199d600082611753565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119ed919061368f565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a4491906135ae565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611b03838383612192565b505050565b611b22828260405180602001604052806000815250612197565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611c5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5290613330565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d4c9190613233565b60405180910390a3505050565b611d648484846118a1565b611d70848484846121f2565b611daf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da690613290565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6060600b8054611e3090613779565b80601f0160208091040260200160405190810160405280929190818152602001828054611e5c90613779565b8015611ea95780601f10611e7e57610100808354040283529160200191611ea9565b820191906000526020600020905b815481529060010190602001808311611e8c57829003601f168201915b5050505050905090565b60606000821415611efb576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061200f565b600082905060005b60008214611f2d578080611f16906137dc565b915050600a82611f269190613604565b9150611f03565b60008167ffffffffffffffff811115611f4957611f48613941565b5b6040519080825280601f01601f191660200182016040528015611f7b5781602001600182028036833780820191505090505b5090505b6000851461200857600182611f94919061368f565b9150600a85611fa39190613825565b6030611faf91906135ae565b60f81b818381518110611fc557611fc4613912565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856120019190613604565b9450611f7f565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612089838383612389565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156120cc576120c78161238e565b61210b565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461210a5761210983826123d7565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561214e5761214981612544565b61218d565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461218c5761218b8282612615565b5b5b505050565b505050565b6121a18383612694565b6121ae60008484846121f2565b6121ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e490613290565b60405180910390fd5b505050565b60006122138473ffffffffffffffffffffffffffffffffffffffff1661286e565b1561237c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261223c61174b565b8786866040518563ffffffff1660e01b815260040161225e94939291906131c5565b602060405180830381600087803b15801561227857600080fd5b505af19250505080156122a957506040513d601f19601f820116820180604052508101906122a69190612c9a565b60015b61232c573d80600081146122d9576040519150601f19603f3d011682016040523d82523d6000602084013e6122de565b606091505b50600081511415612324576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231b90613290565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612381565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016123e484611020565b6123ee919061368f565b90506000600760008481526020019081526020016000205490508181146124d3576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612558919061368f565b905060006009600084815260200190815260200160002054905060006008838154811061258857612587613912565b5b9060005260206000200154905080600883815481106125aa576125a9613912565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806125f9576125f86138e3565b5b6001900381819060005260206000200160009055905550505050565b600061262083611020565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612704576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126fb90613390565b60405180910390fd5b61270d81611db5565b1561274d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612744906132f0565b60405180910390fd5b6127596000838361207e565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127a991906135ae565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461286a60008383612192565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461289d90613779565b90600052602060002090601f0160209004810192826128bf5760008555612906565b82601f106128d857805160ff1916838001178555612906565b82800160010185558215612906579182015b828111156129055782518255916020019190600101906128ea565b5b5090506129139190612917565b5090565b5b80821115612930576000816000905550600101612918565b5090565b6000612947612942846134b0565b61348b565b90508281526020810184848401111561296357612962613975565b5b61296e848285613737565b509392505050565b6000612989612984846134e1565b61348b565b9050828152602081018484840111156129a5576129a4613975565b5b6129b0848285613737565b509392505050565b6000813590506129c781613dca565b92915050565b6000813590506129dc81613de1565b92915050565b6000813590506129f181613df8565b92915050565b600081519050612a0681613df8565b92915050565b600082601f830112612a2157612a20613970565b5b8135612a31848260208601612934565b91505092915050565b600082601f830112612a4f57612a4e613970565b5b8135612a5f848260208601612976565b91505092915050565b600081359050612a7781613e0f565b92915050565b600060208284031215612a9357612a9261397f565b5b6000612aa1848285016129b8565b91505092915050565b60008060408385031215612ac157612ac061397f565b5b6000612acf858286016129b8565b9250506020612ae0858286016129b8565b9150509250929050565b600080600060608486031215612b0357612b0261397f565b5b6000612b11868287016129b8565b9350506020612b22868287016129b8565b9250506040612b3386828701612a68565b9150509250925092565b60008060008060808587031215612b5757612b5661397f565b5b6000612b65878288016129b8565b9450506020612b76878288016129b8565b9350506040612b8787828801612a68565b925050606085013567ffffffffffffffff811115612ba857612ba761397a565b5b612bb487828801612a0c565b91505092959194509250565b60008060408385031215612bd757612bd661397f565b5b6000612be5858286016129b8565b9250506020612bf6858286016129cd565b9150509250929050565b60008060408385031215612c1757612c1661397f565b5b6000612c25858286016129b8565b9250506020612c3685828601612a68565b9150509250929050565b600060208284031215612c5657612c5561397f565b5b6000612c64848285016129cd565b91505092915050565b600060208284031215612c8357612c8261397f565b5b6000612c91848285016129e2565b91505092915050565b600060208284031215612cb057612caf61397f565b5b6000612cbe848285016129f7565b91505092915050565b600060208284031215612cdd57612cdc61397f565b5b600082013567ffffffffffffffff811115612cfb57612cfa61397a565b5b612d0784828501612a3a565b91505092915050565b600060208284031215612d2657612d2561397f565b5b6000612d3484828501612a68565b91505092915050565b6000612d498383613146565b60208301905092915050565b612d5e816136c3565b82525050565b6000612d6f82613537565b612d798185613565565b9350612d8483613512565b8060005b83811015612db5578151612d9c8882612d3d565b9750612da783613558565b925050600181019050612d88565b5085935050505092915050565b612dcb816136d5565b82525050565b6000612ddc82613542565b612de68185613576565b9350612df6818560208601613746565b612dff81613984565b840191505092915050565b6000612e158261354d565b612e1f8185613592565b9350612e2f818560208601613746565b612e3881613984565b840191505092915050565b6000612e4e8261354d565b612e5881856135a3565b9350612e68818560208601613746565b80840191505092915050565b60008154612e8181613779565b612e8b81866135a3565b94506001821660008114612ea65760018114612eb757612eea565b60ff19831686528186019350612eea565b612ec085613522565b60005b83811015612ee257815481890152600182019150602081019050612ec3565b838801955050505b50505092915050565b6000612f00602b83613592565b9150612f0b82613995565b604082019050919050565b6000612f23603283613592565b9150612f2e826139e4565b604082019050919050565b6000612f46602683613592565b9150612f5182613a33565b604082019050919050565b6000612f69602583613592565b9150612f7482613a82565b604082019050919050565b6000612f8c601c83613592565b9150612f9782613ad1565b602082019050919050565b6000612faf602483613592565b9150612fba82613afa565b604082019050919050565b6000612fd2601983613592565b9150612fdd82613b49565b602082019050919050565b6000612ff5602983613592565b915061300082613b72565b604082019050919050565b6000613018603e83613592565b915061302382613bc1565b604082019050919050565b600061303b602083613592565b915061304682613c10565b602082019050919050565b600061305e602083613592565b915061306982613c39565b602082019050919050565b6000613081602f83613592565b915061308c82613c62565b604082019050919050565b60006130a4601883613592565b91506130af82613cb1565b602082019050919050565b60006130c7602183613592565b91506130d282613cda565b604082019050919050565b60006130ea600083613587565b91506130f582613d29565b600082019050919050565b600061310d602c83613592565b915061311882613d2c565b604082019050919050565b6000613130602e83613592565b915061313b82613d7b565b604082019050919050565b61314f8161372d565b82525050565b61315e8161372d565b82525050565b60006131708286612e43565b915061317c8285612e43565b91506131888284612e74565b9150819050949350505050565b60006131a0826130dd565b9150819050919050565b60006020820190506131bf6000830184612d55565b92915050565b60006080820190506131da6000830187612d55565b6131e76020830186612d55565b6131f46040830185613155565b81810360608301526132068184612dd1565b905095945050505050565b6000602082019050818103600083015261322b8184612d64565b905092915050565b60006020820190506132486000830184612dc2565b92915050565b600060208201905081810360008301526132688184612e0a565b905092915050565b6000602082019050818103600083015261328981612ef3565b9050919050565b600060208201905081810360008301526132a981612f16565b9050919050565b600060208201905081810360008301526132c981612f39565b9050919050565b600060208201905081810360008301526132e981612f5c565b9050919050565b6000602082019050818103600083015261330981612f7f565b9050919050565b6000602082019050818103600083015261332981612fa2565b9050919050565b6000602082019050818103600083015261334981612fc5565b9050919050565b6000602082019050818103600083015261336981612fe8565b9050919050565b600060208201905081810360008301526133898161300b565b9050919050565b600060208201905081810360008301526133a98161302e565b9050919050565b600060208201905081810360008301526133c981613051565b9050919050565b600060208201905081810360008301526133e981613074565b9050919050565b6000602082019050818103600083015261340981613097565b9050919050565b60006020820190508181036000830152613429816130ba565b9050919050565b6000602082019050818103600083015261344981613100565b9050919050565b6000602082019050818103600083015261346981613123565b9050919050565b60006020820190506134856000830184613155565b92915050565b60006134956134a6565b90506134a182826137ab565b919050565b6000604051905090565b600067ffffffffffffffff8211156134cb576134ca613941565b5b6134d482613984565b9050602081019050919050565b600067ffffffffffffffff8211156134fc576134fb613941565b5b61350582613984565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006135b98261372d565b91506135c48361372d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156135f9576135f8613856565b5b828201905092915050565b600061360f8261372d565b915061361a8361372d565b92508261362a57613629613885565b5b828204905092915050565b60006136408261372d565b915061364b8361372d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561368457613683613856565b5b828202905092915050565b600061369a8261372d565b91506136a58361372d565b9250828210156136b8576136b7613856565b5b828203905092915050565b60006136ce8261370d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613764578082015181840152602081019050613749565b83811115613773576000848401525b50505050565b6000600282049050600182168061379157607f821691505b602082108114156137a5576137a46138b4565b5b50919050565b6137b482613984565b810181811067ffffffffffffffff821117156137d3576137d2613941565b5b80604052505050565b60006137e78261372d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561381a57613819613856565b5b600182019050919050565b60006138308261372d565b915061383b8361372d565b92508261384b5761384a613885565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b613dd3816136c3565b8114613dde57600080fd5b50565b613dea816136d5565b8114613df557600080fd5b50565b613e01816136e1565b8114613e0c57600080fd5b50565b613e188161372d565b8114613e2357600080fd5b5056fea2646970667358221220d4c525345ff3819eba9ee013df9d34d34cf02829e1b3e73c0b42e7e46c97880d64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101f95760003560e01c80636352211e1161010d578063a475b5dd116100a0578063d5abeb011161006f578063d5abeb0114610712578063da3ef23f1461073d578063e985e9c514610766578063f2c4ce1e146107a3578063f2fde38b146107cc576101f9565b8063a475b5dd1461066a578063b88d4fde14610681578063c6682862146106aa578063c87b56dd146106d5576101f9565b80637f00c7a6116100dc5780637f00c7a6146105c25780638da5cb5b146105eb57806395d89b4114610616578063a22cb46514610641576101f9565b80636352211e1461050857806363bc312a1461054557806370a082311461056e578063715018a6146105ab576101f9565b806323b872dd11610190578063438b63001161015f578063438b63001461040f5780634f6ccce71461044c578063518302271461048957806355f804b3146104b45780635c975abb146104dd576101f9565b806323b872dd146103765780632f745c591461039f5780633ccfd60b146103dc57806342842e0e146103e6576101f9565b8063081c8c44116101cc578063081c8c44146102cc578063095ea7b3146102f757806318160ddd14610320578063239c70ae1461034b576101f9565b806301ffc9a7146101fe57806302329a291461023b57806306fdde0314610264578063081812fc1461028f575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190612c6d565b6107f5565b6040516102329190613233565b60405180910390f35b34801561024757600080fd5b50610262600480360381019061025d9190612c40565b61086f565b005b34801561027057600080fd5b50610279610894565b604051610286919061324e565b60405180910390f35b34801561029b57600080fd5b506102b660048036038101906102b19190612d10565b610926565b6040516102c391906131aa565b60405180910390f35b3480156102d857600080fd5b506102e161096c565b6040516102ee919061324e565b60405180910390f35b34801561030357600080fd5b5061031e60048036038101906103199190612c00565b6109fa565b005b34801561032c57600080fd5b50610335610b12565b6040516103429190613470565b60405180910390f35b34801561035757600080fd5b50610360610b1f565b60405161036d9190613470565b60405180910390f35b34801561038257600080fd5b5061039d60048036038101906103989190612aea565b610b25565b005b3480156103ab57600080fd5b506103c660048036038101906103c19190612c00565b610b85565b6040516103d39190613470565b60405180910390f35b6103e4610c2a565b005b3480156103f257600080fd5b5061040d60048036038101906104089190612aea565b610d48565b005b34801561041b57600080fd5b5061043660048036038101906104319190612a7d565b610d68565b6040516104439190613211565b60405180910390f35b34801561045857600080fd5b50610473600480360381019061046e9190612d10565b610e16565b6040516104809190613470565b60405180910390f35b34801561049557600080fd5b5061049e610e87565b6040516104ab9190613233565b60405180910390f35b3480156104c057600080fd5b506104db60048036038101906104d69190612cc7565b610e9a565b005b3480156104e957600080fd5b506104f2610ebc565b6040516104ff9190613233565b60405180910390f35b34801561051457600080fd5b5061052f600480360381019061052a9190612d10565b610ecf565b60405161053c91906131aa565b60405180910390f35b34801561055157600080fd5b5061056c60048036038101906105679190612d10565b610f81565b005b34801561057a57600080fd5b5061059560048036038101906105909190612a7d565b611020565b6040516105a29190613470565b60405180910390f35b3480156105b757600080fd5b506105c06110d8565b005b3480156105ce57600080fd5b506105e960048036038101906105e49190612d10565b6110ec565b005b3480156105f757600080fd5b506106006110fe565b60405161060d91906131aa565b60405180910390f35b34801561062257600080fd5b5061062b611128565b604051610638919061324e565b60405180910390f35b34801561064d57600080fd5b5061066860048036038101906106639190612bc0565b6111ba565b005b34801561067657600080fd5b5061067f6111d0565b005b34801561068d57600080fd5b506106a860048036038101906106a39190612b3d565b6111f5565b005b3480156106b657600080fd5b506106bf611257565b6040516106cc919061324e565b60405180910390f35b3480156106e157600080fd5b506106fc60048036038101906106f79190612d10565b6112e5565b604051610709919061324e565b60405180910390f35b34801561071e57600080fd5b5061072761143e565b6040516107349190613470565b60405180910390f35b34801561074957600080fd5b50610764600480360381019061075f9190612cc7565b611444565b005b34801561077257600080fd5b5061078d60048036038101906107889190612aaa565b611466565b60405161079a9190613233565b60405180910390f35b3480156107af57600080fd5b506107ca60048036038101906107c59190612cc7565b6114fa565b005b3480156107d857600080fd5b506107f360048036038101906107ee9190612a7d565b61151c565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108685750610867826115a0565b5b9050919050565b610877611682565b80600f60006101000a81548160ff02191690831515021790555050565b6060600080546108a390613779565b80601f01602080910402602001604051908101604052809291908181526020018280546108cf90613779565b801561091c5780601f106108f15761010080835404028352916020019161091c565b820191906000526020600020905b8154815290600101906020018083116108ff57829003601f168201915b5050505050905090565b600061093182611700565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6010805461097990613779565b80601f01602080910402602001604051908101604052809291908181526020018280546109a590613779565b80156109f25780601f106109c7576101008083540402835291602001916109f2565b820191906000526020600020905b8154815290600101906020018083116109d557829003601f168201915b505050505081565b6000610a0582610ecf565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6d90613410565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a9561174b565b73ffffffffffffffffffffffffffffffffffffffff161480610ac45750610ac381610abe61174b565b611466565b5b610b03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afa90613370565b60405180910390fd5b610b0d8383611753565b505050565b6000600880549050905090565b600e5481565b610b36610b3061174b565b8261180c565b610b75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6c90613450565b60405180910390fd5b610b808383836118a1565b505050565b6000610b9083611020565b8210610bd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc890613270565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610c32611682565b6000610c3c6110fe565b73ffffffffffffffffffffffffffffffffffffffff166064603247610c619190613635565b610c6b9190613604565b604051610c7790613195565b60006040518083038185875af1925050503d8060008114610cb4576040519150601f19603f3d011682016040523d82523d6000602084013e610cb9565b606091505b5050905080610cc757600080fd5b6000610cd16110fe565b73ffffffffffffffffffffffffffffffffffffffff1647604051610cf490613195565b60006040518083038185875af1925050503d8060008114610d31576040519150601f19603f3d011682016040523d82523d6000602084013e610d36565b606091505b5050905080610d4457600080fd5b5050565b610d63838383604051806020016040528060008152506111f5565b505050565b60606000610d7583611020565b905060008167ffffffffffffffff811115610d9357610d92613941565b5b604051908082528060200260200182016040528015610dc15781602001602082028036833780820191505090505b50905060005b82811015610e0b57610dd98582610b85565b828281518110610dec57610deb613912565b5b6020026020010181815250508080610e03906137dc565b915050610dc7565b508092505050919050565b6000610e20610b12565b8210610e61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5890613430565b60405180910390fd5b60088281548110610e7557610e74613912565b5b90600052602060002001549050919050565b600f60019054906101000a900460ff1681565b610ea2611682565b80600b9080519060200190610eb8929190612891565b5050565b600f60009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6f906133f0565b60405180910390fd5b80915050919050565b610f89611682565b6000610f93610b12565b9050600f60009054906101000a900460ff1615610faf57600080fd5b60008211610fbc57600080fd5b600e54821115610fcb57600080fd5b600d548282610fda91906135ae565b1115610fe557600080fd5b6000600190505b82811161101b5761100833828461100391906135ae565b611b08565b8080611013906137dc565b915050610fec565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611091576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108890613350565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110e0611682565b6110ea6000611b26565b565b6110f4611682565b80600e8190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461113790613779565b80601f016020809104026020016040519081016040528092919081815260200182805461116390613779565b80156111b05780601f10611185576101008083540402835291602001916111b0565b820191906000526020600020905b81548152906001019060200180831161119357829003601f168201915b5050505050905090565b6111cc6111c561174b565b8383611bec565b5050565b6111d8611682565b6001600f60016101000a81548160ff021916908315150217905550565b61120661120061174b565b8361180c565b611245576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123c90613450565b60405180910390fd5b61125184848484611d59565b50505050565b600c805461126490613779565b80601f016020809104026020016040519081016040528092919081815260200182805461129090613779565b80156112dd5780601f106112b2576101008083540402835291602001916112dd565b820191906000526020600020905b8154815290600101906020018083116112c057829003601f168201915b505050505081565b60606112f082611db5565b61132f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611326906133d0565b60405180910390fd5b60001515600f60019054906101000a900460ff16151514156113dd576010805461135890613779565b80601f016020809104026020016040519081016040528092919081815260200182805461138490613779565b80156113d15780601f106113a6576101008083540402835291602001916113d1565b820191906000526020600020905b8154815290600101906020018083116113b457829003601f168201915b50505050509050611439565b60006113e7611e21565b905060008151116114075760405180602001604052806000815250611435565b8061141184611eb3565b600c60405160200161142593929190613164565b6040516020818303038152906040525b9150505b919050565b600d5481565b61144c611682565b80600c9080519060200190611462929190612891565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611502611682565b8060109080519060200190611518929190612891565b5050565b611524611682565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611594576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158b906132b0565b60405180910390fd5b61159d81611b26565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061166b57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061167b575061167a82612014565b5b9050919050565b61168a61174b565b73ffffffffffffffffffffffffffffffffffffffff166116a86110fe565b73ffffffffffffffffffffffffffffffffffffffff16146116fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f5906133b0565b60405180910390fd5b565b61170981611db5565b611748576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173f906133f0565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166117c683610ecf565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061181883610ecf565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061185a57506118598185611466565b5b8061189857508373ffffffffffffffffffffffffffffffffffffffff1661188084610926565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166118c182610ecf565b73ffffffffffffffffffffffffffffffffffffffff1614611917576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190e906132d0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611987576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197e90613310565b60405180910390fd5b61199283838361207e565b61199d600082611753565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119ed919061368f565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a4491906135ae565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611b03838383612192565b505050565b611b22828260405180602001604052806000815250612197565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611c5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5290613330565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d4c9190613233565b60405180910390a3505050565b611d648484846118a1565b611d70848484846121f2565b611daf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da690613290565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6060600b8054611e3090613779565b80601f0160208091040260200160405190810160405280929190818152602001828054611e5c90613779565b8015611ea95780601f10611e7e57610100808354040283529160200191611ea9565b820191906000526020600020905b815481529060010190602001808311611e8c57829003601f168201915b5050505050905090565b60606000821415611efb576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061200f565b600082905060005b60008214611f2d578080611f16906137dc565b915050600a82611f269190613604565b9150611f03565b60008167ffffffffffffffff811115611f4957611f48613941565b5b6040519080825280601f01601f191660200182016040528015611f7b5781602001600182028036833780820191505090505b5090505b6000851461200857600182611f94919061368f565b9150600a85611fa39190613825565b6030611faf91906135ae565b60f81b818381518110611fc557611fc4613912565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856120019190613604565b9450611f7f565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612089838383612389565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156120cc576120c78161238e565b61210b565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461210a5761210983826123d7565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561214e5761214981612544565b61218d565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461218c5761218b8282612615565b5b5b505050565b505050565b6121a18383612694565b6121ae60008484846121f2565b6121ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e490613290565b60405180910390fd5b505050565b60006122138473ffffffffffffffffffffffffffffffffffffffff1661286e565b1561237c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261223c61174b565b8786866040518563ffffffff1660e01b815260040161225e94939291906131c5565b602060405180830381600087803b15801561227857600080fd5b505af19250505080156122a957506040513d601f19601f820116820180604052508101906122a69190612c9a565b60015b61232c573d80600081146122d9576040519150601f19603f3d011682016040523d82523d6000602084013e6122de565b606091505b50600081511415612324576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231b90613290565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612381565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016123e484611020565b6123ee919061368f565b90506000600760008481526020019081526020016000205490508181146124d3576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612558919061368f565b905060006009600084815260200190815260200160002054905060006008838154811061258857612587613912565b5b9060005260206000200154905080600883815481106125aa576125a9613912565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806125f9576125f86138e3565b5b6001900381819060005260206000200160009055905550505050565b600061262083611020565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612704576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126fb90613390565b60405180910390fd5b61270d81611db5565b1561274d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612744906132f0565b60405180910390fd5b6127596000838361207e565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127a991906135ae565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461286a60008383612192565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461289d90613779565b90600052602060002090601f0160209004810192826128bf5760008555612906565b82601f106128d857805160ff1916838001178555612906565b82800160010185558215612906579182015b828111156129055782518255916020019190600101906128ea565b5b5090506129139190612917565b5090565b5b80821115612930576000816000905550600101612918565b5090565b6000612947612942846134b0565b61348b565b90508281526020810184848401111561296357612962613975565b5b61296e848285613737565b509392505050565b6000612989612984846134e1565b61348b565b9050828152602081018484840111156129a5576129a4613975565b5b6129b0848285613737565b509392505050565b6000813590506129c781613dca565b92915050565b6000813590506129dc81613de1565b92915050565b6000813590506129f181613df8565b92915050565b600081519050612a0681613df8565b92915050565b600082601f830112612a2157612a20613970565b5b8135612a31848260208601612934565b91505092915050565b600082601f830112612a4f57612a4e613970565b5b8135612a5f848260208601612976565b91505092915050565b600081359050612a7781613e0f565b92915050565b600060208284031215612a9357612a9261397f565b5b6000612aa1848285016129b8565b91505092915050565b60008060408385031215612ac157612ac061397f565b5b6000612acf858286016129b8565b9250506020612ae0858286016129b8565b9150509250929050565b600080600060608486031215612b0357612b0261397f565b5b6000612b11868287016129b8565b9350506020612b22868287016129b8565b9250506040612b3386828701612a68565b9150509250925092565b60008060008060808587031215612b5757612b5661397f565b5b6000612b65878288016129b8565b9450506020612b76878288016129b8565b9350506040612b8787828801612a68565b925050606085013567ffffffffffffffff811115612ba857612ba761397a565b5b612bb487828801612a0c565b91505092959194509250565b60008060408385031215612bd757612bd661397f565b5b6000612be5858286016129b8565b9250506020612bf6858286016129cd565b9150509250929050565b60008060408385031215612c1757612c1661397f565b5b6000612c25858286016129b8565b9250506020612c3685828601612a68565b9150509250929050565b600060208284031215612c5657612c5561397f565b5b6000612c64848285016129cd565b91505092915050565b600060208284031215612c8357612c8261397f565b5b6000612c91848285016129e2565b91505092915050565b600060208284031215612cb057612caf61397f565b5b6000612cbe848285016129f7565b91505092915050565b600060208284031215612cdd57612cdc61397f565b5b600082013567ffffffffffffffff811115612cfb57612cfa61397a565b5b612d0784828501612a3a565b91505092915050565b600060208284031215612d2657612d2561397f565b5b6000612d3484828501612a68565b91505092915050565b6000612d498383613146565b60208301905092915050565b612d5e816136c3565b82525050565b6000612d6f82613537565b612d798185613565565b9350612d8483613512565b8060005b83811015612db5578151612d9c8882612d3d565b9750612da783613558565b925050600181019050612d88565b5085935050505092915050565b612dcb816136d5565b82525050565b6000612ddc82613542565b612de68185613576565b9350612df6818560208601613746565b612dff81613984565b840191505092915050565b6000612e158261354d565b612e1f8185613592565b9350612e2f818560208601613746565b612e3881613984565b840191505092915050565b6000612e4e8261354d565b612e5881856135a3565b9350612e68818560208601613746565b80840191505092915050565b60008154612e8181613779565b612e8b81866135a3565b94506001821660008114612ea65760018114612eb757612eea565b60ff19831686528186019350612eea565b612ec085613522565b60005b83811015612ee257815481890152600182019150602081019050612ec3565b838801955050505b50505092915050565b6000612f00602b83613592565b9150612f0b82613995565b604082019050919050565b6000612f23603283613592565b9150612f2e826139e4565b604082019050919050565b6000612f46602683613592565b9150612f5182613a33565b604082019050919050565b6000612f69602583613592565b9150612f7482613a82565b604082019050919050565b6000612f8c601c83613592565b9150612f9782613ad1565b602082019050919050565b6000612faf602483613592565b9150612fba82613afa565b604082019050919050565b6000612fd2601983613592565b9150612fdd82613b49565b602082019050919050565b6000612ff5602983613592565b915061300082613b72565b604082019050919050565b6000613018603e83613592565b915061302382613bc1565b604082019050919050565b600061303b602083613592565b915061304682613c10565b602082019050919050565b600061305e602083613592565b915061306982613c39565b602082019050919050565b6000613081602f83613592565b915061308c82613c62565b604082019050919050565b60006130a4601883613592565b91506130af82613cb1565b602082019050919050565b60006130c7602183613592565b91506130d282613cda565b604082019050919050565b60006130ea600083613587565b91506130f582613d29565b600082019050919050565b600061310d602c83613592565b915061311882613d2c565b604082019050919050565b6000613130602e83613592565b915061313b82613d7b565b604082019050919050565b61314f8161372d565b82525050565b61315e8161372d565b82525050565b60006131708286612e43565b915061317c8285612e43565b91506131888284612e74565b9150819050949350505050565b60006131a0826130dd565b9150819050919050565b60006020820190506131bf6000830184612d55565b92915050565b60006080820190506131da6000830187612d55565b6131e76020830186612d55565b6131f46040830185613155565b81810360608301526132068184612dd1565b905095945050505050565b6000602082019050818103600083015261322b8184612d64565b905092915050565b60006020820190506132486000830184612dc2565b92915050565b600060208201905081810360008301526132688184612e0a565b905092915050565b6000602082019050818103600083015261328981612ef3565b9050919050565b600060208201905081810360008301526132a981612f16565b9050919050565b600060208201905081810360008301526132c981612f39565b9050919050565b600060208201905081810360008301526132e981612f5c565b9050919050565b6000602082019050818103600083015261330981612f7f565b9050919050565b6000602082019050818103600083015261332981612fa2565b9050919050565b6000602082019050818103600083015261334981612fc5565b9050919050565b6000602082019050818103600083015261336981612fe8565b9050919050565b600060208201905081810360008301526133898161300b565b9050919050565b600060208201905081810360008301526133a98161302e565b9050919050565b600060208201905081810360008301526133c981613051565b9050919050565b600060208201905081810360008301526133e981613074565b9050919050565b6000602082019050818103600083015261340981613097565b9050919050565b60006020820190508181036000830152613429816130ba565b9050919050565b6000602082019050818103600083015261344981613100565b9050919050565b6000602082019050818103600083015261346981613123565b9050919050565b60006020820190506134856000830184613155565b92915050565b60006134956134a6565b90506134a182826137ab565b919050565b6000604051905090565b600067ffffffffffffffff8211156134cb576134ca613941565b5b6134d482613984565b9050602081019050919050565b600067ffffffffffffffff8211156134fc576134fb613941565b5b61350582613984565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006135b98261372d565b91506135c48361372d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156135f9576135f8613856565b5b828201905092915050565b600061360f8261372d565b915061361a8361372d565b92508261362a57613629613885565b5b828204905092915050565b60006136408261372d565b915061364b8361372d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561368457613683613856565b5b828202905092915050565b600061369a8261372d565b91506136a58361372d565b9250828210156136b8576136b7613856565b5b828203905092915050565b60006136ce8261370d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613764578082015181840152602081019050613749565b83811115613773576000848401525b50505050565b6000600282049050600182168061379157607f821691505b602082108114156137a5576137a46138b4565b5b50919050565b6137b482613984565b810181811067ffffffffffffffff821117156137d3576137d2613941565b5b80604052505050565b60006137e78261372d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561381a57613819613856565b5b600182019050919050565b60006138308261372d565b915061383b8361372d565b92508261384b5761384a613885565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b613dd3816136c3565b8114613dde57600080fd5b50565b613dea816136d5565b8114613df557600080fd5b50565b613e01816136e1565b8114613e0c57600080fd5b50565b613e188161372d565b8114613e2357600080fd5b5056fea2646970667358221220d4c525345ff3819eba9ee013df9d34d34cf02829e1b3e73c0b42e7e46c97880d64736f6c63430008070033

Deployed Bytecode Sourcemap

45880:2644:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39620:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48191:73;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25274:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26787:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46163:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26304:417;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40260:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46061:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27487:336;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39928:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48271:250;;;:::i;:::-;;27894:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46761:348;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40450:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46131:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47959:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46100:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24985:222;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46404:351;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24716:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2809:103;;;;;;;;;;;;;:::i;:::-;;47709:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2161:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25443:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27030:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47634:65;;;;;;;;;;;;;:::i;:::-;;28150:323;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45984:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47115:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46026:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48063:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27256:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47833:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3067:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39620:224;39722:4;39761:35;39746:50;;;:11;:50;;;;:90;;;;39800:36;39824:11;39800:23;:36::i;:::-;39746:90;39739:97;;39620:224;;;:::o;48191:73::-;2047:13;:11;:13::i;:::-;48252:6:::1;48243;;:15;;;;;;;;;;;;;;;;;;48191:73:::0;:::o;25274:100::-;25328:13;25361:5;25354:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25274:100;:::o;26787:171::-;26863:7;26883:23;26898:7;26883:14;:23::i;:::-;26926:15;:24;26942:7;26926:24;;;;;;;;;;;;;;;;;;;;;26919:31;;26787:171;;;:::o;46163:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;26304:417::-;26385:13;26401:23;26416:7;26401:14;:23::i;:::-;26385:39;;26449:5;26443:11;;:2;:11;;;;26435:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;26543:5;26527:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;26552:37;26569:5;26576:12;:10;:12::i;:::-;26552:16;:37::i;:::-;26527:62;26505:174;;;;;;;;;;;;:::i;:::-;;;;;;;;;26692:21;26701:2;26705:7;26692:8;:21::i;:::-;26374:347;26304:417;;:::o;40260:113::-;40321:7;40348:10;:17;;;;40341:24;;40260:113;:::o;46061:34::-;;;;:::o;27487:336::-;27682:41;27701:12;:10;:12::i;:::-;27715:7;27682:18;:41::i;:::-;27674:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;27787:28;27797:4;27803:2;27807:7;27787:9;:28::i;:::-;27487:336;;;:::o;39928:256::-;40025:7;40061:23;40078:5;40061:16;:23::i;:::-;40053:5;:31;40045:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;40150:12;:19;40163:5;40150:19;;;;;;;;;;;;;;;:26;40170:5;40150:26;;;;;;;;;;;;40143:33;;39928:256;;;;:::o;48271:250::-;2047:13;:11;:13::i;:::-;48324:7:::1;48345;:5;:7::i;:::-;48337:21;;48395:3;48390:2;48366:21;:26;;;;:::i;:::-;:32;;;;:::i;:::-;48337:66;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48323:80;;;48418:2;48410:11;;;::::0;::::1;;48429:7;48450;:5;:7::i;:::-;48442:21;;48471;48442:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48428:69;;;48512:2;48504:11;;;::::0;::::1;;48316:205;;48271:250::o:0;27894:185::-;28032:39;28049:4;28055:2;28059:7;28032:39;;;;;;;;;;;;:16;:39::i;:::-;27894:185;;;:::o;46761:348::-;46836:16;46864:23;46890:17;46900:6;46890:9;:17::i;:::-;46864:43;;46914:25;46956:15;46942:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46914:58;;46984:9;46979:103;46999:15;46995:1;:19;46979:103;;;47044:30;47064:6;47072:1;47044:19;:30::i;:::-;47030:8;47039:1;47030:11;;;;;;;;:::i;:::-;;;;;;;:44;;;;;47016:3;;;;;:::i;:::-;;;;46979:103;;;;47095:8;47088:15;;;;46761:348;;;:::o;40450:233::-;40525:7;40561:30;:28;:30::i;:::-;40553:5;:38;40545:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;40658:10;40669:5;40658:17;;;;;;;;:::i;:::-;;;;;;;;;;40651:24;;40450:233;;;:::o;46131:27::-;;;;;;;;;;;;;:::o;47959:98::-;2047:13;:11;:13::i;:::-;48040:11:::1;48030:7;:21;;;;;;;;;;;;:::i;:::-;;47959:98:::0;:::o;46100:26::-;;;;;;;;;;;;;:::o;24985:222::-;25057:7;25077:13;25093:7;:16;25101:7;25093:16;;;;;;;;;;;;;;;;;;;;;25077:32;;25145:1;25128:19;;:5;:19;;;;25120:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;25194:5;25187:12;;;24985:222;;;:::o;46404:351::-;2047:13;:11;:13::i;:::-;46471:14:::1;46488:13;:11;:13::i;:::-;46471:30;;46517:6;;;;;;;;;;;46516:7;46508:16;;;::::0;::::1;;46553:1;46539:11;:15;46531:24;;;::::0;::::1;;46585:13;;46570:11;:28;;46562:37;;;::::0;::::1;;46638:9;;46623:11;46614:6;:20;;;;:::i;:::-;:33;;46606:42;;;::::0;::::1;;46662:9;46674:1;46662:13;;46657:93;46682:11;46677:1;:16;46657:93;;46709:33;46719:10;46740:1;46731:6;:10;;;;:::i;:::-;46709:9;:33::i;:::-;46695:3;;;;;:::i;:::-;;;;46657:93;;;;46464:291;46404:351:::0;:::o;24716:207::-;24788:7;24833:1;24816:19;;:5;:19;;;;24808:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;24899:9;:16;24909:5;24899:16;;;;;;;;;;;;;;;;24892:23;;24716:207;;;:::o;2809:103::-;2047:13;:11;:13::i;:::-;2874:30:::1;2901:1;2874:18;:30::i;:::-;2809:103::o:0;47709:116::-;2047:13;:11;:13::i;:::-;47802:17:::1;47786:13;:33;;;;47709:116:::0;:::o;2161:87::-;2207:7;2234:6;;;;;;;;;;;2227:13;;2161:87;:::o;25443:104::-;25499:13;25532:7;25525:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25443:104;:::o;27030:155::-;27125:52;27144:12;:10;:12::i;:::-;27158:8;27168;27125:18;:52::i;:::-;27030:155;;:::o;47634:65::-;2047:13;:11;:13::i;:::-;47689:4:::1;47678:8;;:15;;;;;;;;;;;;;;;;;;47634:65::o:0;28150:323::-;28324:41;28343:12;:10;:12::i;:::-;28357:7;28324:18;:41::i;:::-;28316:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;28427:38;28441:4;28447:2;28451:7;28460:4;28427:13;:38::i;:::-;28150:323;;;;:::o;45984:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;47115:497::-;47213:13;47254:16;47262:7;47254;:16::i;:::-;47238:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;47363:5;47351:17;;:8;;;;;;;;;;;:17;;;47348:62;;;47388:14;47381:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47348:62;47418:28;47449:10;:8;:10::i;:::-;47418:41;;47504:1;47479:14;47473:28;:32;:133;;;;;;;;;;;;;;;;;47541:14;47557:18;:7;:16;:18::i;:::-;47577:13;47524:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47473:133;47466:140;;;47115:497;;;;:::o;46026:30::-;;;;:::o;48063:122::-;2047:13;:11;:13::i;:::-;48162:17:::1;48146:13;:33;;;;;;;;;;;;:::i;:::-;;48063:122:::0;:::o;27256:164::-;27353:4;27377:18;:25;27396:5;27377:25;;;;;;;;;;;;;;;:35;27403:8;27377:35;;;;;;;;;;;;;;;;;;;;;;;;;27370:42;;27256:164;;;;:::o;47833:120::-;2047:13;:11;:13::i;:::-;47932:15:::1;47915:14;:32;;;;;;;;;;;;:::i;:::-;;47833:120:::0;:::o;3067:201::-;2047:13;:11;:13::i;:::-;3176:1:::1;3156:22;;:8;:22;;;;3148:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3232:28;3251:8;3232:18;:28::i;:::-;3067:201:::0;:::o;24347:305::-;24449:4;24501:25;24486:40;;;:11;:40;;;;:105;;;;24558:33;24543:48;;;:11;:48;;;;24486:105;:158;;;;24608:36;24632:11;24608:23;:36::i;:::-;24486:158;24466:178;;24347:305;;;:::o;2326:132::-;2401:12;:10;:12::i;:::-;2390:23;;:7;:5;:7::i;:::-;:23;;;2382:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2326:132::o;34762:135::-;34844:16;34852:7;34844;:16::i;:::-;34836:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;34762:135;:::o;712:98::-;765:7;792:10;785:17;;712:98;:::o;34041:174::-;34143:2;34116:15;:24;34132:7;34116:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;34199:7;34195:2;34161:46;;34170:23;34185:7;34170:14;:23::i;:::-;34161:46;;;;;;;;;;;;34041:174;;:::o;30274:264::-;30367:4;30384:13;30400:23;30415:7;30400:14;:23::i;:::-;30384:39;;30453:5;30442:16;;:7;:16;;;:52;;;;30462:32;30479:5;30486:7;30462:16;:32::i;:::-;30442:52;:87;;;;30522:7;30498:31;;:20;30510:7;30498:11;:20::i;:::-;:31;;;30442:87;30434:96;;;30274:264;;;;:::o;33297:625::-;33456:4;33429:31;;:23;33444:7;33429:14;:23::i;:::-;:31;;;33421:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;33535:1;33521:16;;:2;:16;;;;33513:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;33591:39;33612:4;33618:2;33622:7;33591:20;:39::i;:::-;33695:29;33712:1;33716:7;33695:8;:29::i;:::-;33756:1;33737:9;:15;33747:4;33737:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;33785:1;33768:9;:13;33778:2;33768:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;33816:2;33797:7;:16;33805:7;33797:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;33855:7;33851:2;33836:27;;33845:4;33836:27;;;;;;;;;;;;33876:38;33896:4;33902:2;33906:7;33876:19;:38::i;:::-;33297:625;;;:::o;30880:110::-;30956:26;30966:2;30970:7;30956:26;;;;;;;;;;;;:9;:26::i;:::-;30880:110;;:::o;3428:191::-;3502:16;3521:6;;;;;;;;;;;3502:25;;3547:8;3538:6;;:17;;;;;;;;;;;;;;;;;;3602:8;3571:40;;3592:8;3571:40;;;;;;;;;;;;3491:128;3428:191;:::o;34358:315::-;34513:8;34504:17;;:5;:17;;;;34496:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;34600:8;34562:18;:25;34581:5;34562:25;;;;;;;;;;;;;;;:35;34588:8;34562:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;34646:8;34624:41;;34639:5;34624:41;;;34656:8;34624:41;;;;;;:::i;:::-;;;;;;;;34358:315;;;:::o;29354:313::-;29510:28;29520:4;29526:2;29530:7;29510:9;:28::i;:::-;29557:47;29580:4;29586:2;29590:7;29599:4;29557:22;:47::i;:::-;29549:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;29354:313;;;;:::o;29980:127::-;30045:4;30097:1;30069:30;;:7;:16;30077:7;30069:16;;;;;;;;;;;;;;;;;;;;;:30;;;;30062:37;;29980:127;;;:::o;46292:102::-;46352:13;46381:7;46374:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46292:102;:::o;13548:723::-;13604:13;13834:1;13825:5;:10;13821:53;;;13852:10;;;;;;;;;;;;;;;;;;;;;13821:53;13884:12;13899:5;13884:20;;13915:14;13940:78;13955:1;13947:4;:9;13940:78;;13973:8;;;;;:::i;:::-;;;;14004:2;13996:10;;;;;:::i;:::-;;;13940:78;;;14028:19;14060:6;14050:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14028:39;;14078:154;14094:1;14085:5;:10;14078:154;;14122:1;14112:11;;;;;:::i;:::-;;;14189:2;14181:5;:10;;;;:::i;:::-;14168:2;:24;;;;:::i;:::-;14155:39;;14138:6;14145;14138:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;14218:2;14209:11;;;;;:::i;:::-;;;14078:154;;;14256:6;14242:21;;;;;13548:723;;;;:::o;17089:157::-;17174:4;17213:25;17198:40;;;:11;:40;;;;17191:47;;17089:157;;;:::o;41296:589::-;41440:45;41467:4;41473:2;41477:7;41440:26;:45::i;:::-;41518:1;41502:18;;:4;:18;;;41498:187;;;41537:40;41569:7;41537:31;:40::i;:::-;41498:187;;;41607:2;41599:10;;:4;:10;;;41595:90;;41626:47;41659:4;41665:7;41626:32;:47::i;:::-;41595:90;41498:187;41713:1;41699:16;;:2;:16;;;41695:183;;;41732:45;41769:7;41732:36;:45::i;:::-;41695:183;;;41805:4;41799:10;;:2;:10;;;41795:83;;41826:40;41854:2;41858:7;41826:27;:40::i;:::-;41795:83;41695:183;41296:589;;;:::o;37397:125::-;;;;:::o;31217:319::-;31346:18;31352:2;31356:7;31346:5;:18::i;:::-;31397:53;31428:1;31432:2;31436:7;31445:4;31397:22;:53::i;:::-;31375:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;31217:319;;;:::o;35461:853::-;35615:4;35636:15;:2;:13;;;:15::i;:::-;35632:675;;;35688:2;35672:36;;;35709:12;:10;:12::i;:::-;35723:4;35729:7;35738:4;35672:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35668:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35930:1;35913:6;:13;:18;35909:328;;;35956:60;;;;;;;;;;:::i;:::-;;;;;;;;35909:328;36187:6;36181:13;36172:6;36168:2;36164:15;36157:38;35668:584;35804:41;;;35794:51;;;:6;:51;;;;35787:58;;;;;35632:675;36291:4;36284:11;;35461:853;;;;;;;:::o;36886:126::-;;;;:::o;42608:164::-;42712:10;:17;;;;42685:15;:24;42701:7;42685:24;;;;;;;;;;;:44;;;;42740:10;42756:7;42740:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42608:164;:::o;43399:988::-;43665:22;43715:1;43690:22;43707:4;43690:16;:22::i;:::-;:26;;;;:::i;:::-;43665:51;;43727:18;43748:17;:26;43766:7;43748:26;;;;;;;;;;;;43727:47;;43895:14;43881:10;:28;43877:328;;43926:19;43948:12;:18;43961:4;43948:18;;;;;;;;;;;;;;;:34;43967:14;43948:34;;;;;;;;;;;;43926:56;;44032:11;43999:12;:18;44012:4;43999:18;;;;;;;;;;;;;;;:30;44018:10;43999:30;;;;;;;;;;;:44;;;;44149:10;44116:17;:30;44134:11;44116:30;;;;;;;;;;;:43;;;;43911:294;43877:328;44301:17;:26;44319:7;44301:26;;;;;;;;;;;44294:33;;;44345:12;:18;44358:4;44345:18;;;;;;;;;;;;;;;:34;44364:14;44345:34;;;;;;;;;;;44338:41;;;43480:907;;43399:988;;:::o;44682:1079::-;44935:22;44980:1;44960:10;:17;;;;:21;;;;:::i;:::-;44935:46;;44992:18;45013:15;:24;45029:7;45013:24;;;;;;;;;;;;44992:45;;45364:19;45386:10;45397:14;45386:26;;;;;;;;:::i;:::-;;;;;;;;;;45364:48;;45450:11;45425:10;45436;45425:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;45561:10;45530:15;:28;45546:11;45530:28;;;;;;;;;;;:41;;;;45702:15;:24;45718:7;45702:24;;;;;;;;;;;45695:31;;;45737:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;44753:1008;;;44682:1079;:::o;42186:221::-;42271:14;42288:20;42305:2;42288:16;:20::i;:::-;42271:37;;42346:7;42319:12;:16;42332:2;42319:16;;;;;;;;;;;;;;;:24;42336:6;42319:24;;;;;;;;;;;:34;;;;42393:6;42364:17;:26;42382:7;42364:26;;;;;;;;;;;:35;;;;42260:147;42186:221;;:::o;31872:439::-;31966:1;31952:16;;:2;:16;;;;31944:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;32025:16;32033:7;32025;:16::i;:::-;32024:17;32016:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;32087:45;32116:1;32120:2;32124:7;32087:20;:45::i;:::-;32162:1;32145:9;:13;32155:2;32145:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;32193:2;32174:7;:16;32182:7;32174:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;32238:7;32234:2;32213:33;;32230:1;32213:33;;;;;;;;;;;;32259:44;32287:1;32291:2;32295:7;32259:19;:44::i;:::-;31872:439;;:::o;5913:326::-;5973:4;6230:1;6208:7;:19;;;:23;6201:30;;5913:326;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::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:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:179::-;7556:10;7577:46;7619:3;7611:6;7577:46;:::i;:::-;7655:4;7650:3;7646:14;7632:28;;7487:179;;;;:::o;7672:118::-;7759:24;7777:5;7759:24;:::i;:::-;7754:3;7747:37;7672:118;;:::o;7826:732::-;7945:3;7974:54;8022:5;7974:54;:::i;:::-;8044:86;8123:6;8118:3;8044:86;:::i;:::-;8037:93;;8154:56;8204:5;8154:56;:::i;:::-;8233:7;8264:1;8249:284;8274:6;8271:1;8268:13;8249:284;;;8350:6;8344:13;8377:63;8436:3;8421:13;8377:63;:::i;:::-;8370:70;;8463:60;8516:6;8463:60;:::i;:::-;8453:70;;8309:224;8296:1;8293;8289:9;8284:14;;8249:284;;;8253:14;8549:3;8542:10;;7950:608;;;7826:732;;;;:::o;8564:109::-;8645:21;8660:5;8645:21;:::i;:::-;8640:3;8633:34;8564:109;;:::o;8679:360::-;8765:3;8793:38;8825:5;8793:38;:::i;:::-;8847:70;8910:6;8905:3;8847:70;:::i;:::-;8840:77;;8926:52;8971:6;8966:3;8959:4;8952:5;8948:16;8926:52;:::i;:::-;9003:29;9025:6;9003:29;:::i;:::-;8998:3;8994:39;8987:46;;8769:270;8679:360;;;;:::o;9045:364::-;9133:3;9161:39;9194:5;9161:39;:::i;:::-;9216:71;9280:6;9275:3;9216:71;:::i;:::-;9209:78;;9296:52;9341:6;9336:3;9329:4;9322:5;9318:16;9296:52;:::i;:::-;9373:29;9395:6;9373:29;:::i;:::-;9368:3;9364:39;9357:46;;9137:272;9045:364;;;;:::o;9415:377::-;9521:3;9549:39;9582:5;9549:39;:::i;:::-;9604:89;9686:6;9681:3;9604:89;:::i;:::-;9597:96;;9702:52;9747:6;9742:3;9735:4;9728:5;9724:16;9702:52;:::i;:::-;9779:6;9774:3;9770:16;9763:23;;9525:267;9415:377;;;;:::o;9822:845::-;9925:3;9962:5;9956:12;9991:36;10017:9;9991:36;:::i;:::-;10043:89;10125:6;10120:3;10043:89;:::i;:::-;10036:96;;10163:1;10152:9;10148:17;10179:1;10174:137;;;;10325:1;10320:341;;;;10141:520;;10174:137;10258:4;10254:9;10243;10239:25;10234:3;10227:38;10294:6;10289:3;10285:16;10278:23;;10174:137;;10320:341;10387:38;10419:5;10387:38;:::i;:::-;10447:1;10461:154;10475:6;10472:1;10469:13;10461:154;;;10549:7;10543:14;10539:1;10534:3;10530:11;10523:35;10599:1;10590:7;10586:15;10575:26;;10497:4;10494:1;10490:12;10485:17;;10461:154;;;10644:6;10639:3;10635:16;10628:23;;10327:334;;10141:520;;9929:738;;9822:845;;;;:::o;10673:366::-;10815:3;10836:67;10900:2;10895:3;10836:67;:::i;:::-;10829:74;;10912:93;11001:3;10912:93;:::i;:::-;11030:2;11025:3;11021:12;11014:19;;10673:366;;;:::o;11045:::-;11187:3;11208:67;11272:2;11267:3;11208:67;:::i;:::-;11201:74;;11284:93;11373:3;11284:93;:::i;:::-;11402:2;11397:3;11393:12;11386:19;;11045:366;;;:::o;11417:::-;11559:3;11580:67;11644:2;11639:3;11580:67;:::i;:::-;11573:74;;11656:93;11745:3;11656:93;:::i;:::-;11774:2;11769:3;11765:12;11758:19;;11417:366;;;:::o;11789:::-;11931:3;11952:67;12016:2;12011:3;11952:67;:::i;:::-;11945:74;;12028:93;12117:3;12028:93;:::i;:::-;12146:2;12141:3;12137:12;12130:19;;11789:366;;;:::o;12161:::-;12303:3;12324:67;12388:2;12383:3;12324:67;:::i;:::-;12317:74;;12400:93;12489:3;12400:93;:::i;:::-;12518:2;12513:3;12509:12;12502:19;;12161:366;;;:::o;12533:::-;12675:3;12696:67;12760:2;12755:3;12696:67;:::i;:::-;12689:74;;12772:93;12861:3;12772:93;:::i;:::-;12890:2;12885:3;12881:12;12874:19;;12533:366;;;:::o;12905:::-;13047:3;13068:67;13132:2;13127:3;13068:67;:::i;:::-;13061:74;;13144:93;13233:3;13144:93;:::i;:::-;13262:2;13257:3;13253:12;13246:19;;12905:366;;;:::o;13277:::-;13419:3;13440:67;13504:2;13499:3;13440:67;:::i;:::-;13433:74;;13516:93;13605:3;13516:93;:::i;:::-;13634:2;13629:3;13625:12;13618:19;;13277:366;;;:::o;13649:::-;13791:3;13812:67;13876:2;13871:3;13812:67;:::i;:::-;13805:74;;13888:93;13977:3;13888:93;:::i;:::-;14006:2;14001:3;13997:12;13990:19;;13649:366;;;:::o;14021:::-;14163:3;14184:67;14248:2;14243:3;14184:67;:::i;:::-;14177:74;;14260:93;14349:3;14260:93;:::i;:::-;14378:2;14373:3;14369:12;14362:19;;14021:366;;;:::o;14393:::-;14535:3;14556:67;14620:2;14615:3;14556:67;:::i;:::-;14549:74;;14632:93;14721:3;14632:93;:::i;:::-;14750:2;14745:3;14741:12;14734:19;;14393:366;;;:::o;14765:::-;14907:3;14928:67;14992:2;14987:3;14928:67;:::i;:::-;14921:74;;15004:93;15093:3;15004:93;:::i;:::-;15122:2;15117:3;15113:12;15106:19;;14765:366;;;:::o;15137:::-;15279:3;15300:67;15364:2;15359:3;15300:67;:::i;:::-;15293:74;;15376:93;15465:3;15376:93;:::i;:::-;15494:2;15489:3;15485:12;15478:19;;15137:366;;;:::o;15509:::-;15651:3;15672:67;15736:2;15731:3;15672:67;:::i;:::-;15665:74;;15748:93;15837:3;15748:93;:::i;:::-;15866:2;15861:3;15857:12;15850:19;;15509:366;;;:::o;15881:398::-;16040:3;16061:83;16142:1;16137:3;16061:83;:::i;:::-;16054:90;;16153:93;16242:3;16153:93;:::i;:::-;16271:1;16266:3;16262:11;16255:18;;15881:398;;;:::o;16285:366::-;16427:3;16448:67;16512:2;16507:3;16448:67;:::i;:::-;16441:74;;16524:93;16613:3;16524:93;:::i;:::-;16642:2;16637:3;16633:12;16626:19;;16285:366;;;:::o;16657:::-;16799:3;16820:67;16884:2;16879:3;16820:67;:::i;:::-;16813:74;;16896:93;16985:3;16896:93;:::i;:::-;17014:2;17009:3;17005:12;16998:19;;16657:366;;;:::o;17029:108::-;17106:24;17124:5;17106:24;:::i;:::-;17101:3;17094:37;17029:108;;:::o;17143:118::-;17230:24;17248:5;17230:24;:::i;:::-;17225:3;17218:37;17143:118;;:::o;17267:589::-;17492:3;17514:95;17605:3;17596:6;17514:95;:::i;:::-;17507:102;;17626:95;17717:3;17708:6;17626:95;:::i;:::-;17619:102;;17738:92;17826:3;17817:6;17738:92;:::i;:::-;17731:99;;17847:3;17840:10;;17267:589;;;;;;:::o;17862:379::-;18046:3;18068:147;18211:3;18068:147;:::i;:::-;18061:154;;18232:3;18225:10;;17862:379;;;:::o;18247:222::-;18340:4;18378:2;18367:9;18363:18;18355:26;;18391:71;18459:1;18448:9;18444:17;18435:6;18391:71;:::i;:::-;18247:222;;;;:::o;18475:640::-;18670:4;18708:3;18697:9;18693:19;18685:27;;18722:71;18790:1;18779:9;18775:17;18766:6;18722:71;:::i;:::-;18803:72;18871:2;18860:9;18856:18;18847:6;18803:72;:::i;:::-;18885;18953:2;18942:9;18938:18;18929:6;18885:72;:::i;:::-;19004:9;18998:4;18994:20;18989:2;18978:9;18974:18;18967:48;19032:76;19103:4;19094:6;19032:76;:::i;:::-;19024:84;;18475:640;;;;;;;:::o;19121:373::-;19264:4;19302:2;19291:9;19287:18;19279:26;;19351:9;19345:4;19341:20;19337:1;19326:9;19322:17;19315:47;19379:108;19482:4;19473:6;19379:108;:::i;:::-;19371:116;;19121:373;;;;:::o;19500:210::-;19587:4;19625:2;19614:9;19610:18;19602:26;;19638:65;19700:1;19689:9;19685:17;19676:6;19638:65;:::i;:::-;19500:210;;;;:::o;19716:313::-;19829:4;19867:2;19856:9;19852:18;19844:26;;19916:9;19910:4;19906:20;19902:1;19891:9;19887:17;19880:47;19944:78;20017:4;20008:6;19944:78;:::i;:::-;19936:86;;19716:313;;;;:::o;20035:419::-;20201:4;20239:2;20228:9;20224:18;20216:26;;20288:9;20282:4;20278:20;20274:1;20263:9;20259:17;20252:47;20316:131;20442:4;20316:131;:::i;:::-;20308:139;;20035:419;;;:::o;20460:::-;20626:4;20664:2;20653:9;20649:18;20641:26;;20713:9;20707:4;20703:20;20699:1;20688:9;20684:17;20677:47;20741:131;20867:4;20741:131;:::i;:::-;20733:139;;20460:419;;;:::o;20885:::-;21051:4;21089:2;21078:9;21074:18;21066:26;;21138:9;21132:4;21128:20;21124:1;21113:9;21109:17;21102:47;21166:131;21292:4;21166:131;:::i;:::-;21158:139;;20885:419;;;:::o;21310:::-;21476:4;21514:2;21503:9;21499:18;21491:26;;21563:9;21557:4;21553:20;21549:1;21538:9;21534:17;21527:47;21591:131;21717:4;21591:131;:::i;:::-;21583:139;;21310:419;;;:::o;21735:::-;21901:4;21939:2;21928:9;21924:18;21916:26;;21988:9;21982:4;21978:20;21974:1;21963:9;21959:17;21952:47;22016:131;22142:4;22016:131;:::i;:::-;22008:139;;21735:419;;;:::o;22160:::-;22326:4;22364:2;22353:9;22349:18;22341:26;;22413:9;22407:4;22403:20;22399:1;22388:9;22384:17;22377:47;22441:131;22567:4;22441:131;:::i;:::-;22433:139;;22160:419;;;:::o;22585:::-;22751:4;22789:2;22778:9;22774:18;22766:26;;22838:9;22832:4;22828:20;22824:1;22813:9;22809:17;22802:47;22866:131;22992:4;22866:131;:::i;:::-;22858:139;;22585:419;;;:::o;23010:::-;23176:4;23214:2;23203:9;23199:18;23191:26;;23263:9;23257:4;23253:20;23249:1;23238:9;23234:17;23227:47;23291:131;23417:4;23291:131;:::i;:::-;23283:139;;23010:419;;;:::o;23435:::-;23601:4;23639:2;23628:9;23624:18;23616:26;;23688:9;23682:4;23678:20;23674:1;23663:9;23659:17;23652:47;23716:131;23842:4;23716:131;:::i;:::-;23708:139;;23435:419;;;:::o;23860:::-;24026:4;24064:2;24053:9;24049:18;24041:26;;24113:9;24107:4;24103:20;24099:1;24088:9;24084:17;24077:47;24141:131;24267:4;24141:131;:::i;:::-;24133:139;;23860:419;;;:::o;24285:::-;24451:4;24489:2;24478:9;24474:18;24466:26;;24538:9;24532:4;24528:20;24524:1;24513:9;24509:17;24502:47;24566:131;24692:4;24566:131;:::i;:::-;24558:139;;24285:419;;;:::o;24710:::-;24876:4;24914:2;24903:9;24899:18;24891:26;;24963:9;24957:4;24953:20;24949:1;24938:9;24934:17;24927:47;24991:131;25117:4;24991:131;:::i;:::-;24983:139;;24710:419;;;:::o;25135:::-;25301:4;25339:2;25328:9;25324:18;25316:26;;25388:9;25382:4;25378:20;25374:1;25363:9;25359:17;25352:47;25416:131;25542:4;25416:131;:::i;:::-;25408:139;;25135:419;;;:::o;25560:::-;25726:4;25764:2;25753:9;25749:18;25741:26;;25813:9;25807:4;25803:20;25799:1;25788:9;25784:17;25777:47;25841:131;25967:4;25841:131;:::i;:::-;25833:139;;25560:419;;;:::o;25985:::-;26151:4;26189:2;26178:9;26174:18;26166:26;;26238:9;26232:4;26228:20;26224:1;26213:9;26209:17;26202:47;26266:131;26392:4;26266:131;:::i;:::-;26258:139;;25985:419;;;:::o;26410:::-;26576:4;26614:2;26603:9;26599:18;26591:26;;26663:9;26657:4;26653:20;26649:1;26638:9;26634:17;26627:47;26691:131;26817:4;26691:131;:::i;:::-;26683:139;;26410:419;;;:::o;26835:222::-;26928:4;26966:2;26955:9;26951:18;26943:26;;26979:71;27047:1;27036:9;27032:17;27023:6;26979:71;:::i;:::-;26835:222;;;;:::o;27063:129::-;27097:6;27124:20;;:::i;:::-;27114:30;;27153:33;27181:4;27173:6;27153:33;:::i;:::-;27063:129;;;:::o;27198:75::-;27231:6;27264:2;27258:9;27248:19;;27198:75;:::o;27279:307::-;27340:4;27430:18;27422:6;27419:30;27416:56;;;27452:18;;:::i;:::-;27416:56;27490:29;27512:6;27490:29;:::i;:::-;27482:37;;27574:4;27568;27564:15;27556:23;;27279:307;;;:::o;27592:308::-;27654:4;27744:18;27736:6;27733:30;27730:56;;;27766:18;;:::i;:::-;27730:56;27804:29;27826:6;27804:29;:::i;:::-;27796:37;;27888:4;27882;27878:15;27870:23;;27592:308;;;:::o;27906:132::-;27973:4;27996:3;27988:11;;28026:4;28021:3;28017:14;28009:22;;27906:132;;;:::o;28044:141::-;28093:4;28116:3;28108:11;;28139:3;28136:1;28129:14;28173:4;28170:1;28160:18;28152:26;;28044:141;;;:::o;28191:114::-;28258:6;28292:5;28286:12;28276:22;;28191:114;;;:::o;28311:98::-;28362:6;28396:5;28390:12;28380:22;;28311:98;;;:::o;28415:99::-;28467:6;28501:5;28495:12;28485:22;;28415:99;;;:::o;28520:113::-;28590:4;28622;28617:3;28613:14;28605:22;;28520:113;;;:::o;28639:184::-;28738:11;28772:6;28767:3;28760:19;28812:4;28807:3;28803:14;28788:29;;28639:184;;;;:::o;28829:168::-;28912:11;28946:6;28941:3;28934:19;28986:4;28981:3;28977:14;28962:29;;28829:168;;;;:::o;29003:147::-;29104:11;29141:3;29126:18;;29003:147;;;;:::o;29156:169::-;29240:11;29274:6;29269:3;29262:19;29314:4;29309:3;29305:14;29290:29;;29156:169;;;;:::o;29331:148::-;29433:11;29470:3;29455:18;;29331:148;;;;:::o;29485:305::-;29525:3;29544:20;29562:1;29544:20;:::i;:::-;29539:25;;29578:20;29596:1;29578:20;:::i;:::-;29573:25;;29732:1;29664:66;29660:74;29657:1;29654:81;29651:107;;;29738:18;;:::i;:::-;29651:107;29782:1;29779;29775:9;29768:16;;29485:305;;;;:::o;29796:185::-;29836:1;29853:20;29871:1;29853:20;:::i;:::-;29848:25;;29887:20;29905:1;29887:20;:::i;:::-;29882:25;;29926:1;29916:35;;29931:18;;:::i;:::-;29916:35;29973:1;29970;29966:9;29961:14;;29796:185;;;;:::o;29987:348::-;30027:7;30050:20;30068:1;30050:20;:::i;:::-;30045:25;;30084:20;30102:1;30084:20;:::i;:::-;30079:25;;30272:1;30204:66;30200:74;30197:1;30194:81;30189:1;30182:9;30175:17;30171:105;30168:131;;;30279:18;;:::i;:::-;30168:131;30327:1;30324;30320:9;30309:20;;29987:348;;;;:::o;30341:191::-;30381:4;30401:20;30419:1;30401:20;:::i;:::-;30396:25;;30435:20;30453:1;30435:20;:::i;:::-;30430:25;;30474:1;30471;30468:8;30465:34;;;30479:18;;:::i;:::-;30465:34;30524:1;30521;30517:9;30509:17;;30341:191;;;;:::o;30538:96::-;30575:7;30604:24;30622:5;30604:24;:::i;:::-;30593:35;;30538:96;;;:::o;30640:90::-;30674:7;30717:5;30710:13;30703:21;30692:32;;30640:90;;;:::o;30736:149::-;30772:7;30812:66;30805:5;30801:78;30790:89;;30736:149;;;:::o;30891:126::-;30928:7;30968:42;30961:5;30957:54;30946:65;;30891:126;;;:::o;31023:77::-;31060:7;31089:5;31078:16;;31023:77;;;:::o;31106:154::-;31190:6;31185:3;31180;31167:30;31252:1;31243:6;31238:3;31234:16;31227:27;31106:154;;;:::o;31266:307::-;31334:1;31344:113;31358:6;31355:1;31352:13;31344:113;;;31443:1;31438:3;31434:11;31428:18;31424:1;31419:3;31415:11;31408:39;31380:2;31377:1;31373:10;31368:15;;31344:113;;;31475:6;31472:1;31469:13;31466:101;;;31555:1;31546:6;31541:3;31537:16;31530:27;31466:101;31315:258;31266:307;;;:::o;31579:320::-;31623:6;31660:1;31654:4;31650:12;31640:22;;31707:1;31701:4;31697:12;31728:18;31718:81;;31784:4;31776:6;31772:17;31762:27;;31718:81;31846:2;31838:6;31835:14;31815:18;31812:38;31809:84;;;31865:18;;:::i;:::-;31809:84;31630:269;31579:320;;;:::o;31905:281::-;31988:27;32010:4;31988:27;:::i;:::-;31980:6;31976:40;32118:6;32106:10;32103:22;32082:18;32070:10;32067:34;32064:62;32061:88;;;32129:18;;:::i;:::-;32061:88;32169:10;32165:2;32158:22;31948:238;31905:281;;:::o;32192:233::-;32231:3;32254:24;32272:5;32254:24;:::i;:::-;32245:33;;32300:66;32293:5;32290:77;32287:103;;;32370:18;;:::i;:::-;32287:103;32417:1;32410:5;32406:13;32399:20;;32192:233;;;:::o;32431:176::-;32463:1;32480:20;32498:1;32480:20;:::i;:::-;32475:25;;32514:20;32532:1;32514:20;:::i;:::-;32509:25;;32553:1;32543:35;;32558:18;;:::i;:::-;32543:35;32599:1;32596;32592:9;32587:14;;32431:176;;;;:::o;32613:180::-;32661:77;32658:1;32651:88;32758:4;32755:1;32748:15;32782:4;32779:1;32772:15;32799:180;32847:77;32844:1;32837:88;32944:4;32941:1;32934:15;32968:4;32965:1;32958:15;32985:180;33033:77;33030:1;33023:88;33130:4;33127:1;33120:15;33154:4;33151:1;33144:15;33171:180;33219:77;33216:1;33209:88;33316:4;33313:1;33306:15;33340:4;33337:1;33330:15;33357:180;33405:77;33402:1;33395:88;33502:4;33499:1;33492:15;33526:4;33523:1;33516:15;33543:180;33591:77;33588:1;33581:88;33688:4;33685:1;33678:15;33712:4;33709:1;33702:15;33729:117;33838:1;33835;33828:12;33852:117;33961:1;33958;33951:12;33975:117;34084:1;34081;34074:12;34098:117;34207:1;34204;34197:12;34221:102;34262:6;34313:2;34309:7;34304:2;34297:5;34293:14;34289:28;34279:38;;34221:102;;;:::o;34329:230::-;34469:34;34465:1;34457:6;34453:14;34446:58;34538:13;34533:2;34525:6;34521:15;34514:38;34329:230;:::o;34565:237::-;34705:34;34701:1;34693:6;34689:14;34682:58;34774:20;34769:2;34761:6;34757:15;34750:45;34565:237;:::o;34808:225::-;34948:34;34944:1;34936:6;34932:14;34925:58;35017:8;35012:2;35004:6;35000:15;34993:33;34808:225;:::o;35039:224::-;35179:34;35175:1;35167:6;35163:14;35156:58;35248:7;35243:2;35235:6;35231:15;35224:32;35039:224;:::o;35269:178::-;35409:30;35405:1;35397:6;35393:14;35386:54;35269:178;:::o;35453:223::-;35593:34;35589:1;35581:6;35577:14;35570:58;35662:6;35657:2;35649:6;35645:15;35638:31;35453:223;:::o;35682:175::-;35822:27;35818:1;35810:6;35806:14;35799:51;35682:175;:::o;35863:228::-;36003:34;35999:1;35991:6;35987:14;35980:58;36072:11;36067:2;36059:6;36055:15;36048:36;35863:228;:::o;36097:249::-;36237:34;36233:1;36225:6;36221:14;36214:58;36306:32;36301:2;36293:6;36289:15;36282:57;36097:249;:::o;36352:182::-;36492:34;36488:1;36480:6;36476:14;36469:58;36352:182;:::o;36540:::-;36680:34;36676:1;36668:6;36664:14;36657:58;36540:182;:::o;36728:234::-;36868:34;36864:1;36856:6;36852:14;36845:58;36937:17;36932:2;36924:6;36920:15;36913:42;36728:234;:::o;36968:174::-;37108:26;37104:1;37096:6;37092:14;37085:50;36968:174;:::o;37148:220::-;37288:34;37284:1;37276:6;37272:14;37265:58;37357:3;37352:2;37344:6;37340:15;37333:28;37148:220;:::o;37374:114::-;;:::o;37494:231::-;37634:34;37630:1;37622:6;37618:14;37611:58;37703:14;37698:2;37690:6;37686:15;37679:39;37494:231;:::o;37731:233::-;37871:34;37867:1;37859:6;37855:14;37848:58;37940:16;37935:2;37927:6;37923:15;37916:41;37731:233;:::o;37970:122::-;38043:24;38061:5;38043:24;:::i;:::-;38036:5;38033:35;38023:63;;38082:1;38079;38072:12;38023:63;37970:122;:::o;38098:116::-;38168:21;38183:5;38168:21;:::i;:::-;38161:5;38158:32;38148:60;;38204:1;38201;38194:12;38148:60;38098:116;:::o;38220:120::-;38292:23;38309:5;38292:23;:::i;:::-;38285:5;38282:34;38272:62;;38330:1;38327;38320:12;38272:62;38220:120;:::o;38346:122::-;38419:24;38437:5;38419:24;:::i;:::-;38412:5;38409:35;38399:63;;38458:1;38455;38448:12;38399:63;38346:122;:::o

Swarm Source

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