ETH Price: $2,456.96 (+0.76%)

Token

Stickaverse NFTs (SNFT)
 

Overview

Max Total Supply

2,816 SNFT

Holders

22

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
vols52bama49.eth
Balance
1 SNFT
0x55fc3E5EB344968BFb5A079628EdDE58b9e6eF71
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:
StickVerseNFT_Minter

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, Apache-2.0 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-09-12
*/

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


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

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/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.5.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: balance query for the zero address");
        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: owner query for nonexistent token");
        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) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public 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 owner nor approved for all"
        );

        _approve(to, tokenId);
    }

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

        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: transfer caller is not 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: transfer caller is not 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) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, 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 a {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 a {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 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 {
                    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/ERC721URIStorage.sol


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

pragma solidity ^0.8.0;


/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

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

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }

        return super.tokenURI(tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @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 override {
        super._burn(tokenId);

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}

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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

// File: contracts/StickNftMinter.sol



pragma solidity ^0.8.0;






/**
 * @title Stick Verse NFT Minter Contract
 */
contract StickVerseNFT_Minter is ERC721, Ownable, ReentrancyGuard{

    string public baseURI;
    
    struct Tokens{
        address _address;
        uint256 token_id;
    }

    mapping (uint => Tokens) public TokenIds;
    mapping(address => bool ) public wallet;
    using Counters for Counters.Counter;
    Counters.Counter private _tokenSupply;
    address public mintAuthority_address;
    uint256 mintAuthority_value = 0.01 ether;
      // Mappings Declaration
    mapping(uint256 => string) internal tokenUris;

    constructor(string memory _baseURI,address _to) ERC721("Stickaverse NFTs", "SNFT") {
        baseURI = _baseURI;
        mintAuthority_address = _to;
    }

    function totalSupply() public view returns (uint256) {
        return _tokenSupply.current();
    }

    bool check;


    // ============ MINTING FUNCTIONS ============
    /* 
        @dev MintNFTs mint only one NFT
    */
    function MintNFT() public payable {
        require(check,"Mint is not Open");
        require(_tokenSupply.current() < 10000,"9999 Token Already Minted");
        require(!wallet[msg.sender],"You Already Mint Token");
        _tokenSupply.increment();
        _mint(msg.sender, _tokenSupply.current());
        payable(mintAuthority_address).transfer(mintAuthority_value);
        wallet[msg.sender]=true;
        TokenIds[_tokenSupply.current()]= Tokens(msg.sender,_tokenSupply.current());
    }
    // ============ MINTING FUNCTIONS ============
    /* 
        @dev BulkMintNFTs mint only one NFT
    */
    function BulkMintNFT(uint256 mintamount) public onlyOwner{
        require(mintamount > 0 ,"Minting amount greater than 0");
        require(_tokenSupply.current() < 10000,"9999 Token Already Minted");
        for(uint16 i=0 ;i< mintamount ;i++)
        {
            _tokenSupply.increment();
            _mint(msg.sender, _tokenSupply.current());
            TokenIds[_tokenSupply.current()]= Tokens(msg.sender,_tokenSupply.current());
        }  
    }
    /* 
        @param _tokenID is the User input id that give the address
        @dev GetAddress get address that mint this _tokenID
        @returns _address Id that are minted by this address 
    */
    function GetAddress(uint _tokenId) public view returns(address _address)
    {
        return TokenIds[_tokenId]._address;    
    }

    function GetTokenId(address _to) public view returns(uint256 tokenID)
    {
        for(uint i = 0; i < _tokenSupply.current(); i++) {
            if(TokenIds[i]._address == _to){
                return TokenIds[i].token_id;
            }     
        }
    }

    function setBaseURI(string memory _baseURI) external onlyOwner {
        baseURI = _baseURI;
    }

     function setAuthorityAddr(address _to) external onlyOwner {
        mintAuthority_address = _to;
    }

    function tokenURI(uint256 tokenId)
      public
      view
      virtual
      override
      returns (string memory)
    {
      require(_exists(tokenId), "ERC721Metadata: query for nonexistent token");
      
      // Custom tokenURI exists
      if (bytes(tokenUris[tokenId]).length != 0) {
        return tokenUris[tokenId];
      }

      else {
        return string(abi.encodePacked(baseURI, Strings.toString(tokenId), ".json"));
      }
      
    }
    function setTokenURI(uint256 _tokenId, string memory _uri) external onlyOwner {
        tokenUris[_tokenId] = _uri;
    }
    function isSet() public onlyOwner{
        check = !check;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"},{"internalType":"address","name":"_to","type":"address"}],"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":"uint256","name":"mintamount","type":"uint256"}],"name":"BulkMintNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"GetAddress","outputs":[{"internalType":"address","name":"_address","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"GetTokenId","outputs":[{"internalType":"uint256","name":"tokenID","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MintNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"TokenIds","outputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"token_id","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"isSet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintAuthority_address","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"setAuthorityAddr","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"string","name":"_uri","type":"string"}],"name":"setTokenURI","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":"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":"","type":"address"}],"name":"wallet","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

6080604052662386f26fc10000600d553480156200001c57600080fd5b50604051620043173803806200431783398181016040528101906200004291906200037f565b6040518060400160405280601081526020017f537469636b617665727365204e465473000000000000000000000000000000008152506040518060400160405280600481526020017f534e4654000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000c69291906200023a565b508060019080519060200190620000df9291906200023a565b50505062000102620000f66200016c60201b60201c565b6200017460201b60201c565b60016007819055508160089080519060200190620001229291906200023a565b5080600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050620005b7565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200024890620004ae565b90600052602060002090601f0160209004810192826200026c5760008555620002b8565b82601f106200028757805160ff1916838001178555620002b8565b82800160010185558215620002b8579182015b82811115620002b75782518255916020019190600101906200029a565b5b509050620002c79190620002cb565b5090565b5b80821115620002e6576000816000905550600101620002cc565b5090565b600062000301620002fb846200040e565b620003e5565b90508281526020810184848401111562000320576200031f6200057d565b5b6200032d84828562000478565b509392505050565b60008151905062000346816200059d565b92915050565b600082601f83011262000364576200036362000578565b5b815162000376848260208601620002ea565b91505092915050565b6000806040838503121562000399576200039862000587565b5b600083015167ffffffffffffffff811115620003ba57620003b962000582565b5b620003c8858286016200034c565b9250506020620003db8582860162000335565b9150509250929050565b6000620003f162000404565b9050620003ff8282620004e4565b919050565b6000604051905090565b600067ffffffffffffffff8211156200042c576200042b62000549565b5b62000437826200058c565b9050602081019050919050565b6000620004518262000458565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60005b83811015620004985780820151818401526020810190506200047b565b83811115620004a8576000848401525b50505050565b60006002820490506001821680620004c757607f821691505b60208210811415620004de57620004dd6200051a565b5b50919050565b620004ef826200058c565b810181811067ffffffffffffffff8211171562000511576200051062000549565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b620005a88162000444565b8114620005b457600080fd5b50565b613d5080620005c76000396000f3fe6080604052600436106101c25760003560e01c80636c0360eb116100f7578063a33470fe11610095578063c65fb38011610064578063c65fb38014610644578063c87b56dd1461065b578063e985e9c514610698578063f2fde38b146106d5576101c2565b8063a33470fe14610575578063a56cc439146105a0578063b88d4fde146105dd578063c5eddc1e14610606576101c2565b8063715018a6116100d1578063715018a6146104df5780638da5cb5b146104f657806395d89b4114610521578063a22cb4651461054c576101c2565b80636c0360eb1461046d5780636d3643921461049857806370a08231146104a2576101c2565b806320bc5b46116101645780634787f1a71161013e5780634787f1a71461038d57806355f804b3146103ca5780635c76ead1146103f35780636352211e14610430576101c2565b806320bc5b461461031257806323b872dd1461033b57806342842e0e14610364576101c2565b8063095ea7b3116101a0578063095ea7b31461026c578063162094c41461029557806318160ddd146102be578063182cbded146102e9576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e99190612a32565b6106fe565b6040516101fb919061304b565b60405180910390f35b34801561021057600080fd5b506102196107e0565b6040516102269190613066565b60405180910390f35b34801561023b57600080fd5b5061025660048036038101906102519190612ad5565b610872565b6040516102639190612fbb565b60405180910390f35b34801561027857600080fd5b50610293600480360381019061028e91906129f2565b6108f7565b005b3480156102a157600080fd5b506102bc60048036038101906102b79190612b02565b610a0f565b005b3480156102ca57600080fd5b506102d3610ab7565b6040516102e09190613308565b60405180910390f35b3480156102f557600080fd5b50610310600480360381019061030b9190612ad5565b610ac8565b005b34801561031e57600080fd5b506103396004803603810190610334919061286f565b610cbb565b005b34801561034757600080fd5b50610362600480360381019061035d91906128dc565b610d7b565b005b34801561037057600080fd5b5061038b600480360381019061038691906128dc565b610ddb565b005b34801561039957600080fd5b506103b460048036038101906103af9190612ad5565b610dfb565b6040516103c19190612fbb565b60405180910390f35b3480156103d657600080fd5b506103f160048036038101906103ec9190612a8c565b610e3b565b005b3480156103ff57600080fd5b5061041a6004803603810190610415919061286f565b610ed1565b6040516104279190613308565b60405180910390f35b34801561043c57600080fd5b5061045760048036038101906104529190612ad5565b610f8d565b6040516104649190612fbb565b60405180910390f35b34801561047957600080fd5b5061048261103f565b60405161048f9190613066565b60405180910390f35b6104a06110cd565b005b3480156104ae57600080fd5b506104c960048036038101906104c4919061286f565b61137c565b6040516104d69190613308565b60405180910390f35b3480156104eb57600080fd5b506104f4611434565b005b34801561050257600080fd5b5061050b6114bc565b6040516105189190612fbb565b60405180910390f35b34801561052d57600080fd5b506105366114e6565b6040516105439190613066565b60405180910390f35b34801561055857600080fd5b50610573600480360381019061056e91906129b2565b611578565b005b34801561058157600080fd5b5061058a61158e565b6040516105979190612fbb565b60405180910390f35b3480156105ac57600080fd5b506105c760048036038101906105c2919061286f565b6115b4565b6040516105d4919061304b565b60405180910390f35b3480156105e957600080fd5b5061060460048036038101906105ff919061292f565b6115d4565b005b34801561061257600080fd5b5061062d60048036038101906106289190612ad5565b611636565b60405161063b929190613022565b60405180910390f35b34801561065057600080fd5b5061065961167a565b005b34801561066757600080fd5b50610682600480360381019061067d9190612ad5565b611722565b60405161068f9190613066565b60405180910390f35b3480156106a457600080fd5b506106bf60048036038101906106ba919061289c565b611869565b6040516106cc919061304b565b60405180910390f35b3480156106e157600080fd5b506106fc60048036038101906106f7919061286f565b6118fd565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107c957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107d957506107d8826119f5565b5b9050919050565b6060600080546107ef90613581565b80601f016020809104026020016040519081016040528092919081815260200182805461081b90613581565b80156108685780601f1061083d57610100808354040283529160200191610868565b820191906000526020600020905b81548152906001019060200180831161084b57829003601f168201915b5050505050905090565b600061087d82611a5f565b6108bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b390613268565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061090282610f8d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610973576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096a906132a8565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610992611acb565b73ffffffffffffffffffffffffffffffffffffffff1614806109c157506109c0816109bb611acb565b611869565b5b610a00576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f790613188565b60405180910390fd5b610a0a8383611ad3565b505050565b610a17611acb565b73ffffffffffffffffffffffffffffffffffffffff16610a356114bc565b73ffffffffffffffffffffffffffffffffffffffff1614610a8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8290613288565b60405180910390fd5b80600e60008481526020019081526020016000209080519060200190610ab2929190612683565b505050565b6000610ac3600b611b8c565b905090565b610ad0611acb565b73ffffffffffffffffffffffffffffffffffffffff16610aee6114bc565b73ffffffffffffffffffffffffffffffffffffffff1614610b44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3b90613288565b60405180910390fd5b60008111610b87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7e90613208565b60405180910390fd5b612710610b94600b611b8c565b10610bd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcb906131a8565b60405180910390fd5b60005b818161ffff161015610cb757610bed600b611b9a565b610c0033610bfb600b611b8c565b611bb0565b60405180604001604052803373ffffffffffffffffffffffffffffffffffffffff168152602001610c31600b611b8c565b81525060096000610c42600b611b8c565b815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550602082015181600101559050508080610caf906135e4565b915050610bd7565b5050565b610cc3611acb565b73ffffffffffffffffffffffffffffffffffffffff16610ce16114bc565b73ffffffffffffffffffffffffffffffffffffffff1614610d37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2e90613288565b60405180910390fd5b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610d8c610d86611acb565b82611d8a565b610dcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc2906132c8565b60405180910390fd5b610dd6838383611e68565b505050565b610df6838383604051806020016040528060008152506115d4565b505050565b60006009600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610e43611acb565b73ffffffffffffffffffffffffffffffffffffffff16610e616114bc565b73ffffffffffffffffffffffffffffffffffffffff1614610eb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eae90613288565b60405180910390fd5b8060089080519060200190610ecd929190612683565b5050565b600080600090505b610ee3600b611b8c565b811015610f86578273ffffffffffffffffffffffffffffffffffffffff166009600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610f73576009600082815260200190815260200160002060010154915050610f88565b8080610f7e9061360f565b915050610ed9565b505b919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611036576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102d906131e8565b60405180910390fd5b80915050919050565b6008805461104c90613581565b80601f016020809104026020016040519081016040528092919081815260200182805461107890613581565b80156110c55780601f1061109a576101008083540402835291602001916110c5565b820191906000526020600020905b8154815290600101906020018083116110a857829003601f168201915b505050505081565b600f60009054906101000a900460ff1661111c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111390613168565b60405180910390fd5b612710611129600b611b8c565b10611169576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611160906131a8565b60405180910390fd5b600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156111f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ed906132e8565b60405180910390fd5b611200600b611b9a565b6112133361120e600b611b8c565b611bb0565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc600d549081150290604051600060405180830381858888f1935050505015801561127d573d6000803e3d6000fd5b506001600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060405180604001604052803373ffffffffffffffffffffffffffffffffffffffff168152602001611307600b611b8c565b81525060096000611318600b611b8c565b815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160010155905050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e4906131c8565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61143c611acb565b73ffffffffffffffffffffffffffffffffffffffff1661145a6114bc565b73ffffffffffffffffffffffffffffffffffffffff16146114b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a790613288565b60405180910390fd5b6114ba60006120cf565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546114f590613581565b80601f016020809104026020016040519081016040528092919081815260200182805461152190613581565b801561156e5780601f106115435761010080835404028352916020019161156e565b820191906000526020600020905b81548152906001019060200180831161155157829003601f168201915b5050505050905090565b61158a611583611acb565b8383612195565b5050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a6020528060005260406000206000915054906101000a900460ff1681565b6115e56115df611acb565b83611d8a565b611624576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161b906132c8565b60405180910390fd5b61163084848484612302565b50505050565b60096020528060005260406000206000915090508060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060010154905082565b611682611acb565b73ffffffffffffffffffffffffffffffffffffffff166116a06114bc565b73ffffffffffffffffffffffffffffffffffffffff16146116f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ed90613288565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b606061172d82611a5f565b61176c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176390613248565b60405180910390fd5b6000600e6000848152602001908152602001600020805461178c90613581565b90501461183657600e600083815260200190815260200160002080546117b190613581565b80601f01602080910402602001604051908101604052809291908181526020018280546117dd90613581565b801561182a5780601f106117ff5761010080835404028352916020019161182a565b820191906000526020600020905b81548152906001019060200180831161180d57829003601f168201915b50505050509050611864565b60086118418361235e565b604051602001611852929190612f8c565b60405160208183030381529060405290505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611905611acb565b73ffffffffffffffffffffffffffffffffffffffff166119236114bc565b73ffffffffffffffffffffffffffffffffffffffff1614611979576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197090613288565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156119e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e0906130a8565b60405180910390fd5b6119f2816120cf565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611b4683610f8d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6001816000016000828254019250508190555050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1790613228565b60405180910390fd5b611c2981611a5f565b15611c69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c60906130e8565b60405180910390fd5b611c75600083836124bf565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611cc59190613402565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611d86600083836124c4565b5050565b6000611d9582611a5f565b611dd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcb90613148565b60405180910390fd5b6000611ddf83610f8d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611e4e57508373ffffffffffffffffffffffffffffffffffffffff16611e3684610872565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e5f5750611e5e8185611869565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611e8882610f8d565b73ffffffffffffffffffffffffffffffffffffffff1614611ede576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed5906130c8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4590613108565b60405180910390fd5b611f598383836124bf565b611f64600082611ad3565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fb49190613489565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461200b9190613402565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120ca8383836124c4565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612204576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121fb90613128565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516122f5919061304b565b60405180910390a3505050565b61230d848484611e68565b612319848484846124c9565b612358576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234f90613088565b60405180910390fd5b50505050565b606060008214156123a6576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506124ba565b600082905060005b600082146123d85780806123c19061360f565b915050600a826123d19190613458565b91506123ae565b60008167ffffffffffffffff8111156123f4576123f3613745565b5b6040519080825280601f01601f1916602001820160405280156124265781602001600182028036833780820191505090505b5090505b600085146124b35760018261243f9190613489565b9150600a8561244e9190613658565b603061245a9190613402565b60f81b8183815181106124705761246f613716565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856124ac9190613458565b945061242a565b8093505050505b919050565b505050565b505050565b60006124ea8473ffffffffffffffffffffffffffffffffffffffff16612660565b15612653578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612513611acb565b8786866040518563ffffffff1660e01b81526004016125359493929190612fd6565b602060405180830381600087803b15801561254f57600080fd5b505af192505050801561258057506040513d601f19601f8201168201806040525081019061257d9190612a5f565b60015b612603573d80600081146125b0576040519150601f19603f3d011682016040523d82523d6000602084013e6125b5565b606091505b506000815114156125fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f290613088565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612658565b600190505b949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461268f90613581565b90600052602060002090601f0160209004810192826126b157600085556126f8565b82601f106126ca57805160ff19168380011785556126f8565b828001600101855582156126f8579182015b828111156126f75782518255916020019190600101906126dc565b5b5090506127059190612709565b5090565b5b8082111561272257600081600090555060010161270a565b5090565b600061273961273484613348565b613323565b90508281526020810184848401111561275557612754613779565b5b61276084828561353f565b509392505050565b600061277b61277684613379565b613323565b90508281526020810184848401111561279757612796613779565b5b6127a284828561353f565b509392505050565b6000813590506127b981613cbe565b92915050565b6000813590506127ce81613cd5565b92915050565b6000813590506127e381613cec565b92915050565b6000815190506127f881613cec565b92915050565b600082601f83011261281357612812613774565b5b8135612823848260208601612726565b91505092915050565b600082601f83011261284157612840613774565b5b8135612851848260208601612768565b91505092915050565b60008135905061286981613d03565b92915050565b60006020828403121561288557612884613783565b5b6000612893848285016127aa565b91505092915050565b600080604083850312156128b3576128b2613783565b5b60006128c1858286016127aa565b92505060206128d2858286016127aa565b9150509250929050565b6000806000606084860312156128f5576128f4613783565b5b6000612903868287016127aa565b9350506020612914868287016127aa565b92505060406129258682870161285a565b9150509250925092565b6000806000806080858703121561294957612948613783565b5b6000612957878288016127aa565b9450506020612968878288016127aa565b93505060406129798782880161285a565b925050606085013567ffffffffffffffff81111561299a5761299961377e565b5b6129a6878288016127fe565b91505092959194509250565b600080604083850312156129c9576129c8613783565b5b60006129d7858286016127aa565b92505060206129e8858286016127bf565b9150509250929050565b60008060408385031215612a0957612a08613783565b5b6000612a17858286016127aa565b9250506020612a288582860161285a565b9150509250929050565b600060208284031215612a4857612a47613783565b5b6000612a56848285016127d4565b91505092915050565b600060208284031215612a7557612a74613783565b5b6000612a83848285016127e9565b91505092915050565b600060208284031215612aa257612aa1613783565b5b600082013567ffffffffffffffff811115612ac057612abf61377e565b5b612acc8482850161282c565b91505092915050565b600060208284031215612aeb57612aea613783565b5b6000612af98482850161285a565b91505092915050565b60008060408385031215612b1957612b18613783565b5b6000612b278582860161285a565b925050602083013567ffffffffffffffff811115612b4857612b4761377e565b5b612b548582860161282c565b9150509250929050565b612b67816134bd565b82525050565b612b76816134cf565b82525050565b6000612b87826133bf565b612b9181856133d5565b9350612ba181856020860161354e565b612baa81613788565b840191505092915050565b6000612bc0826133ca565b612bca81856133e6565b9350612bda81856020860161354e565b612be381613788565b840191505092915050565b6000612bf9826133ca565b612c0381856133f7565b9350612c1381856020860161354e565b80840191505092915050565b60008154612c2c81613581565b612c3681866133f7565b94506001821660008114612c515760018114612c6257612c95565b60ff19831686528186019350612c95565b612c6b856133aa565b60005b83811015612c8d57815481890152600182019150602081019050612c6e565b838801955050505b50505092915050565b6000612cab6032836133e6565b9150612cb682613799565b604082019050919050565b6000612cce6026836133e6565b9150612cd9826137e8565b604082019050919050565b6000612cf16025836133e6565b9150612cfc82613837565b604082019050919050565b6000612d14601c836133e6565b9150612d1f82613886565b602082019050919050565b6000612d376024836133e6565b9150612d42826138af565b604082019050919050565b6000612d5a6019836133e6565b9150612d65826138fe565b602082019050919050565b6000612d7d602c836133e6565b9150612d8882613927565b604082019050919050565b6000612da06010836133e6565b9150612dab82613976565b602082019050919050565b6000612dc36038836133e6565b9150612dce8261399f565b604082019050919050565b6000612de66019836133e6565b9150612df1826139ee565b602082019050919050565b6000612e09602a836133e6565b9150612e1482613a17565b604082019050919050565b6000612e2c6029836133e6565b9150612e3782613a66565b604082019050919050565b6000612e4f601d836133e6565b9150612e5a82613ab5565b602082019050919050565b6000612e726020836133e6565b9150612e7d82613ade565b602082019050919050565b6000612e95602b836133e6565b9150612ea082613b07565b604082019050919050565b6000612eb8602c836133e6565b9150612ec382613b56565b604082019050919050565b6000612edb6005836133f7565b9150612ee682613ba5565b600582019050919050565b6000612efe6020836133e6565b9150612f0982613bce565b602082019050919050565b6000612f216021836133e6565b9150612f2c82613bf7565b604082019050919050565b6000612f446031836133e6565b9150612f4f82613c46565b604082019050919050565b6000612f676016836133e6565b9150612f7282613c95565b602082019050919050565b612f8681613535565b82525050565b6000612f988285612c1f565b9150612fa48284612bee565b9150612faf82612ece565b91508190509392505050565b6000602082019050612fd06000830184612b5e565b92915050565b6000608082019050612feb6000830187612b5e565b612ff86020830186612b5e565b6130056040830185612f7d565b81810360608301526130178184612b7c565b905095945050505050565b60006040820190506130376000830185612b5e565b6130446020830184612f7d565b9392505050565b60006020820190506130606000830184612b6d565b92915050565b600060208201905081810360008301526130808184612bb5565b905092915050565b600060208201905081810360008301526130a181612c9e565b9050919050565b600060208201905081810360008301526130c181612cc1565b9050919050565b600060208201905081810360008301526130e181612ce4565b9050919050565b6000602082019050818103600083015261310181612d07565b9050919050565b6000602082019050818103600083015261312181612d2a565b9050919050565b6000602082019050818103600083015261314181612d4d565b9050919050565b6000602082019050818103600083015261316181612d70565b9050919050565b6000602082019050818103600083015261318181612d93565b9050919050565b600060208201905081810360008301526131a181612db6565b9050919050565b600060208201905081810360008301526131c181612dd9565b9050919050565b600060208201905081810360008301526131e181612dfc565b9050919050565b6000602082019050818103600083015261320181612e1f565b9050919050565b6000602082019050818103600083015261322181612e42565b9050919050565b6000602082019050818103600083015261324181612e65565b9050919050565b6000602082019050818103600083015261326181612e88565b9050919050565b6000602082019050818103600083015261328181612eab565b9050919050565b600060208201905081810360008301526132a181612ef1565b9050919050565b600060208201905081810360008301526132c181612f14565b9050919050565b600060208201905081810360008301526132e181612f37565b9050919050565b6000602082019050818103600083015261330181612f5a565b9050919050565b600060208201905061331d6000830184612f7d565b92915050565b600061332d61333e565b905061333982826135b3565b919050565b6000604051905090565b600067ffffffffffffffff82111561336357613362613745565b5b61336c82613788565b9050602081019050919050565b600067ffffffffffffffff82111561339457613393613745565b5b61339d82613788565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061340d82613535565b915061341883613535565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561344d5761344c613689565b5b828201905092915050565b600061346382613535565b915061346e83613535565b92508261347e5761347d6136b8565b5b828204905092915050565b600061349482613535565b915061349f83613535565b9250828210156134b2576134b1613689565b5b828203905092915050565b60006134c882613515565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561356c578082015181840152602081019050613551565b8381111561357b576000848401525b50505050565b6000600282049050600182168061359957607f821691505b602082108114156135ad576135ac6136e7565b5b50919050565b6135bc82613788565b810181811067ffffffffffffffff821117156135db576135da613745565b5b80604052505050565b60006135ef82613507565b915061ffff82141561360457613603613689565b5b600182019050919050565b600061361a82613535565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561364d5761364c613689565b5b600182019050919050565b600061366382613535565b915061366e83613535565b92508261367e5761367d6136b8565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4d696e74206973206e6f74204f70656e00000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f3939393920546f6b656e20416c7265616479204d696e74656400000000000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4d696e74696e6720616d6f756e742067726561746572207468616e2030000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732314d657461646174613a20717565727920666f72206e6f6e65786960008201527f7374656e7420746f6b656e000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f596f7520416c7265616479204d696e7420546f6b656e00000000000000000000600082015250565b613cc7816134bd565b8114613cd257600080fd5b50565b613cde816134cf565b8114613ce957600080fd5b50565b613cf5816134db565b8114613d0057600080fd5b50565b613d0c81613535565b8114613d1757600080fd5b5056fea2646970667358221220440e1dd6f6bcba9d5fd6f2431741b4fab4339db02e231a11fba7d186d35d757664736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000003d7d8f94c889685d612756ff6b3cedd616c4ee65000000000000000000000000000000000000000000000000000000000000005668747470733a2f2f737469636b76657273652e6d7970696e6174612e636c6f75642f697066732f516d64366a685a6876314b6b455a5861527a564a5161764e325938624c65765054336d353677547462445234474a2f00000000000000000000

Deployed Bytecode

0x6080604052600436106101c25760003560e01c80636c0360eb116100f7578063a33470fe11610095578063c65fb38011610064578063c65fb38014610644578063c87b56dd1461065b578063e985e9c514610698578063f2fde38b146106d5576101c2565b8063a33470fe14610575578063a56cc439146105a0578063b88d4fde146105dd578063c5eddc1e14610606576101c2565b8063715018a6116100d1578063715018a6146104df5780638da5cb5b146104f657806395d89b4114610521578063a22cb4651461054c576101c2565b80636c0360eb1461046d5780636d3643921461049857806370a08231146104a2576101c2565b806320bc5b46116101645780634787f1a71161013e5780634787f1a71461038d57806355f804b3146103ca5780635c76ead1146103f35780636352211e14610430576101c2565b806320bc5b461461031257806323b872dd1461033b57806342842e0e14610364576101c2565b8063095ea7b3116101a0578063095ea7b31461026c578063162094c41461029557806318160ddd146102be578063182cbded146102e9576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e99190612a32565b6106fe565b6040516101fb919061304b565b60405180910390f35b34801561021057600080fd5b506102196107e0565b6040516102269190613066565b60405180910390f35b34801561023b57600080fd5b5061025660048036038101906102519190612ad5565b610872565b6040516102639190612fbb565b60405180910390f35b34801561027857600080fd5b50610293600480360381019061028e91906129f2565b6108f7565b005b3480156102a157600080fd5b506102bc60048036038101906102b79190612b02565b610a0f565b005b3480156102ca57600080fd5b506102d3610ab7565b6040516102e09190613308565b60405180910390f35b3480156102f557600080fd5b50610310600480360381019061030b9190612ad5565b610ac8565b005b34801561031e57600080fd5b506103396004803603810190610334919061286f565b610cbb565b005b34801561034757600080fd5b50610362600480360381019061035d91906128dc565b610d7b565b005b34801561037057600080fd5b5061038b600480360381019061038691906128dc565b610ddb565b005b34801561039957600080fd5b506103b460048036038101906103af9190612ad5565b610dfb565b6040516103c19190612fbb565b60405180910390f35b3480156103d657600080fd5b506103f160048036038101906103ec9190612a8c565b610e3b565b005b3480156103ff57600080fd5b5061041a6004803603810190610415919061286f565b610ed1565b6040516104279190613308565b60405180910390f35b34801561043c57600080fd5b5061045760048036038101906104529190612ad5565b610f8d565b6040516104649190612fbb565b60405180910390f35b34801561047957600080fd5b5061048261103f565b60405161048f9190613066565b60405180910390f35b6104a06110cd565b005b3480156104ae57600080fd5b506104c960048036038101906104c4919061286f565b61137c565b6040516104d69190613308565b60405180910390f35b3480156104eb57600080fd5b506104f4611434565b005b34801561050257600080fd5b5061050b6114bc565b6040516105189190612fbb565b60405180910390f35b34801561052d57600080fd5b506105366114e6565b6040516105439190613066565b60405180910390f35b34801561055857600080fd5b50610573600480360381019061056e91906129b2565b611578565b005b34801561058157600080fd5b5061058a61158e565b6040516105979190612fbb565b60405180910390f35b3480156105ac57600080fd5b506105c760048036038101906105c2919061286f565b6115b4565b6040516105d4919061304b565b60405180910390f35b3480156105e957600080fd5b5061060460048036038101906105ff919061292f565b6115d4565b005b34801561061257600080fd5b5061062d60048036038101906106289190612ad5565b611636565b60405161063b929190613022565b60405180910390f35b34801561065057600080fd5b5061065961167a565b005b34801561066757600080fd5b50610682600480360381019061067d9190612ad5565b611722565b60405161068f9190613066565b60405180910390f35b3480156106a457600080fd5b506106bf60048036038101906106ba919061289c565b611869565b6040516106cc919061304b565b60405180910390f35b3480156106e157600080fd5b506106fc60048036038101906106f7919061286f565b6118fd565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107c957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107d957506107d8826119f5565b5b9050919050565b6060600080546107ef90613581565b80601f016020809104026020016040519081016040528092919081815260200182805461081b90613581565b80156108685780601f1061083d57610100808354040283529160200191610868565b820191906000526020600020905b81548152906001019060200180831161084b57829003601f168201915b5050505050905090565b600061087d82611a5f565b6108bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b390613268565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061090282610f8d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610973576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096a906132a8565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610992611acb565b73ffffffffffffffffffffffffffffffffffffffff1614806109c157506109c0816109bb611acb565b611869565b5b610a00576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f790613188565b60405180910390fd5b610a0a8383611ad3565b505050565b610a17611acb565b73ffffffffffffffffffffffffffffffffffffffff16610a356114bc565b73ffffffffffffffffffffffffffffffffffffffff1614610a8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8290613288565b60405180910390fd5b80600e60008481526020019081526020016000209080519060200190610ab2929190612683565b505050565b6000610ac3600b611b8c565b905090565b610ad0611acb565b73ffffffffffffffffffffffffffffffffffffffff16610aee6114bc565b73ffffffffffffffffffffffffffffffffffffffff1614610b44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3b90613288565b60405180910390fd5b60008111610b87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7e90613208565b60405180910390fd5b612710610b94600b611b8c565b10610bd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcb906131a8565b60405180910390fd5b60005b818161ffff161015610cb757610bed600b611b9a565b610c0033610bfb600b611b8c565b611bb0565b60405180604001604052803373ffffffffffffffffffffffffffffffffffffffff168152602001610c31600b611b8c565b81525060096000610c42600b611b8c565b815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550602082015181600101559050508080610caf906135e4565b915050610bd7565b5050565b610cc3611acb565b73ffffffffffffffffffffffffffffffffffffffff16610ce16114bc565b73ffffffffffffffffffffffffffffffffffffffff1614610d37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2e90613288565b60405180910390fd5b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610d8c610d86611acb565b82611d8a565b610dcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc2906132c8565b60405180910390fd5b610dd6838383611e68565b505050565b610df6838383604051806020016040528060008152506115d4565b505050565b60006009600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610e43611acb565b73ffffffffffffffffffffffffffffffffffffffff16610e616114bc565b73ffffffffffffffffffffffffffffffffffffffff1614610eb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eae90613288565b60405180910390fd5b8060089080519060200190610ecd929190612683565b5050565b600080600090505b610ee3600b611b8c565b811015610f86578273ffffffffffffffffffffffffffffffffffffffff166009600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610f73576009600082815260200190815260200160002060010154915050610f88565b8080610f7e9061360f565b915050610ed9565b505b919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611036576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102d906131e8565b60405180910390fd5b80915050919050565b6008805461104c90613581565b80601f016020809104026020016040519081016040528092919081815260200182805461107890613581565b80156110c55780601f1061109a576101008083540402835291602001916110c5565b820191906000526020600020905b8154815290600101906020018083116110a857829003601f168201915b505050505081565b600f60009054906101000a900460ff1661111c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111390613168565b60405180910390fd5b612710611129600b611b8c565b10611169576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611160906131a8565b60405180910390fd5b600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156111f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ed906132e8565b60405180910390fd5b611200600b611b9a565b6112133361120e600b611b8c565b611bb0565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc600d549081150290604051600060405180830381858888f1935050505015801561127d573d6000803e3d6000fd5b506001600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060405180604001604052803373ffffffffffffffffffffffffffffffffffffffff168152602001611307600b611b8c565b81525060096000611318600b611b8c565b815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160010155905050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e4906131c8565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61143c611acb565b73ffffffffffffffffffffffffffffffffffffffff1661145a6114bc565b73ffffffffffffffffffffffffffffffffffffffff16146114b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a790613288565b60405180910390fd5b6114ba60006120cf565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546114f590613581565b80601f016020809104026020016040519081016040528092919081815260200182805461152190613581565b801561156e5780601f106115435761010080835404028352916020019161156e565b820191906000526020600020905b81548152906001019060200180831161155157829003601f168201915b5050505050905090565b61158a611583611acb565b8383612195565b5050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a6020528060005260406000206000915054906101000a900460ff1681565b6115e56115df611acb565b83611d8a565b611624576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161b906132c8565b60405180910390fd5b61163084848484612302565b50505050565b60096020528060005260406000206000915090508060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060010154905082565b611682611acb565b73ffffffffffffffffffffffffffffffffffffffff166116a06114bc565b73ffffffffffffffffffffffffffffffffffffffff16146116f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ed90613288565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b606061172d82611a5f565b61176c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176390613248565b60405180910390fd5b6000600e6000848152602001908152602001600020805461178c90613581565b90501461183657600e600083815260200190815260200160002080546117b190613581565b80601f01602080910402602001604051908101604052809291908181526020018280546117dd90613581565b801561182a5780601f106117ff5761010080835404028352916020019161182a565b820191906000526020600020905b81548152906001019060200180831161180d57829003601f168201915b50505050509050611864565b60086118418361235e565b604051602001611852929190612f8c565b60405160208183030381529060405290505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611905611acb565b73ffffffffffffffffffffffffffffffffffffffff166119236114bc565b73ffffffffffffffffffffffffffffffffffffffff1614611979576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197090613288565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156119e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e0906130a8565b60405180910390fd5b6119f2816120cf565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611b4683610f8d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6001816000016000828254019250508190555050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1790613228565b60405180910390fd5b611c2981611a5f565b15611c69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c60906130e8565b60405180910390fd5b611c75600083836124bf565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611cc59190613402565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611d86600083836124c4565b5050565b6000611d9582611a5f565b611dd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcb90613148565b60405180910390fd5b6000611ddf83610f8d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611e4e57508373ffffffffffffffffffffffffffffffffffffffff16611e3684610872565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e5f5750611e5e8185611869565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611e8882610f8d565b73ffffffffffffffffffffffffffffffffffffffff1614611ede576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed5906130c8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4590613108565b60405180910390fd5b611f598383836124bf565b611f64600082611ad3565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fb49190613489565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461200b9190613402565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120ca8383836124c4565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612204576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121fb90613128565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516122f5919061304b565b60405180910390a3505050565b61230d848484611e68565b612319848484846124c9565b612358576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234f90613088565b60405180910390fd5b50505050565b606060008214156123a6576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506124ba565b600082905060005b600082146123d85780806123c19061360f565b915050600a826123d19190613458565b91506123ae565b60008167ffffffffffffffff8111156123f4576123f3613745565b5b6040519080825280601f01601f1916602001820160405280156124265781602001600182028036833780820191505090505b5090505b600085146124b35760018261243f9190613489565b9150600a8561244e9190613658565b603061245a9190613402565b60f81b8183815181106124705761246f613716565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856124ac9190613458565b945061242a565b8093505050505b919050565b505050565b505050565b60006124ea8473ffffffffffffffffffffffffffffffffffffffff16612660565b15612653578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612513611acb565b8786866040518563ffffffff1660e01b81526004016125359493929190612fd6565b602060405180830381600087803b15801561254f57600080fd5b505af192505050801561258057506040513d601f19601f8201168201806040525081019061257d9190612a5f565b60015b612603573d80600081146125b0576040519150601f19603f3d011682016040523d82523d6000602084013e6125b5565b606091505b506000815114156125fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f290613088565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612658565b600190505b949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461268f90613581565b90600052602060002090601f0160209004810192826126b157600085556126f8565b82601f106126ca57805160ff19168380011785556126f8565b828001600101855582156126f8579182015b828111156126f75782518255916020019190600101906126dc565b5b5090506127059190612709565b5090565b5b8082111561272257600081600090555060010161270a565b5090565b600061273961273484613348565b613323565b90508281526020810184848401111561275557612754613779565b5b61276084828561353f565b509392505050565b600061277b61277684613379565b613323565b90508281526020810184848401111561279757612796613779565b5b6127a284828561353f565b509392505050565b6000813590506127b981613cbe565b92915050565b6000813590506127ce81613cd5565b92915050565b6000813590506127e381613cec565b92915050565b6000815190506127f881613cec565b92915050565b600082601f83011261281357612812613774565b5b8135612823848260208601612726565b91505092915050565b600082601f83011261284157612840613774565b5b8135612851848260208601612768565b91505092915050565b60008135905061286981613d03565b92915050565b60006020828403121561288557612884613783565b5b6000612893848285016127aa565b91505092915050565b600080604083850312156128b3576128b2613783565b5b60006128c1858286016127aa565b92505060206128d2858286016127aa565b9150509250929050565b6000806000606084860312156128f5576128f4613783565b5b6000612903868287016127aa565b9350506020612914868287016127aa565b92505060406129258682870161285a565b9150509250925092565b6000806000806080858703121561294957612948613783565b5b6000612957878288016127aa565b9450506020612968878288016127aa565b93505060406129798782880161285a565b925050606085013567ffffffffffffffff81111561299a5761299961377e565b5b6129a6878288016127fe565b91505092959194509250565b600080604083850312156129c9576129c8613783565b5b60006129d7858286016127aa565b92505060206129e8858286016127bf565b9150509250929050565b60008060408385031215612a0957612a08613783565b5b6000612a17858286016127aa565b9250506020612a288582860161285a565b9150509250929050565b600060208284031215612a4857612a47613783565b5b6000612a56848285016127d4565b91505092915050565b600060208284031215612a7557612a74613783565b5b6000612a83848285016127e9565b91505092915050565b600060208284031215612aa257612aa1613783565b5b600082013567ffffffffffffffff811115612ac057612abf61377e565b5b612acc8482850161282c565b91505092915050565b600060208284031215612aeb57612aea613783565b5b6000612af98482850161285a565b91505092915050565b60008060408385031215612b1957612b18613783565b5b6000612b278582860161285a565b925050602083013567ffffffffffffffff811115612b4857612b4761377e565b5b612b548582860161282c565b9150509250929050565b612b67816134bd565b82525050565b612b76816134cf565b82525050565b6000612b87826133bf565b612b9181856133d5565b9350612ba181856020860161354e565b612baa81613788565b840191505092915050565b6000612bc0826133ca565b612bca81856133e6565b9350612bda81856020860161354e565b612be381613788565b840191505092915050565b6000612bf9826133ca565b612c0381856133f7565b9350612c1381856020860161354e565b80840191505092915050565b60008154612c2c81613581565b612c3681866133f7565b94506001821660008114612c515760018114612c6257612c95565b60ff19831686528186019350612c95565b612c6b856133aa565b60005b83811015612c8d57815481890152600182019150602081019050612c6e565b838801955050505b50505092915050565b6000612cab6032836133e6565b9150612cb682613799565b604082019050919050565b6000612cce6026836133e6565b9150612cd9826137e8565b604082019050919050565b6000612cf16025836133e6565b9150612cfc82613837565b604082019050919050565b6000612d14601c836133e6565b9150612d1f82613886565b602082019050919050565b6000612d376024836133e6565b9150612d42826138af565b604082019050919050565b6000612d5a6019836133e6565b9150612d65826138fe565b602082019050919050565b6000612d7d602c836133e6565b9150612d8882613927565b604082019050919050565b6000612da06010836133e6565b9150612dab82613976565b602082019050919050565b6000612dc36038836133e6565b9150612dce8261399f565b604082019050919050565b6000612de66019836133e6565b9150612df1826139ee565b602082019050919050565b6000612e09602a836133e6565b9150612e1482613a17565b604082019050919050565b6000612e2c6029836133e6565b9150612e3782613a66565b604082019050919050565b6000612e4f601d836133e6565b9150612e5a82613ab5565b602082019050919050565b6000612e726020836133e6565b9150612e7d82613ade565b602082019050919050565b6000612e95602b836133e6565b9150612ea082613b07565b604082019050919050565b6000612eb8602c836133e6565b9150612ec382613b56565b604082019050919050565b6000612edb6005836133f7565b9150612ee682613ba5565b600582019050919050565b6000612efe6020836133e6565b9150612f0982613bce565b602082019050919050565b6000612f216021836133e6565b9150612f2c82613bf7565b604082019050919050565b6000612f446031836133e6565b9150612f4f82613c46565b604082019050919050565b6000612f676016836133e6565b9150612f7282613c95565b602082019050919050565b612f8681613535565b82525050565b6000612f988285612c1f565b9150612fa48284612bee565b9150612faf82612ece565b91508190509392505050565b6000602082019050612fd06000830184612b5e565b92915050565b6000608082019050612feb6000830187612b5e565b612ff86020830186612b5e565b6130056040830185612f7d565b81810360608301526130178184612b7c565b905095945050505050565b60006040820190506130376000830185612b5e565b6130446020830184612f7d565b9392505050565b60006020820190506130606000830184612b6d565b92915050565b600060208201905081810360008301526130808184612bb5565b905092915050565b600060208201905081810360008301526130a181612c9e565b9050919050565b600060208201905081810360008301526130c181612cc1565b9050919050565b600060208201905081810360008301526130e181612ce4565b9050919050565b6000602082019050818103600083015261310181612d07565b9050919050565b6000602082019050818103600083015261312181612d2a565b9050919050565b6000602082019050818103600083015261314181612d4d565b9050919050565b6000602082019050818103600083015261316181612d70565b9050919050565b6000602082019050818103600083015261318181612d93565b9050919050565b600060208201905081810360008301526131a181612db6565b9050919050565b600060208201905081810360008301526131c181612dd9565b9050919050565b600060208201905081810360008301526131e181612dfc565b9050919050565b6000602082019050818103600083015261320181612e1f565b9050919050565b6000602082019050818103600083015261322181612e42565b9050919050565b6000602082019050818103600083015261324181612e65565b9050919050565b6000602082019050818103600083015261326181612e88565b9050919050565b6000602082019050818103600083015261328181612eab565b9050919050565b600060208201905081810360008301526132a181612ef1565b9050919050565b600060208201905081810360008301526132c181612f14565b9050919050565b600060208201905081810360008301526132e181612f37565b9050919050565b6000602082019050818103600083015261330181612f5a565b9050919050565b600060208201905061331d6000830184612f7d565b92915050565b600061332d61333e565b905061333982826135b3565b919050565b6000604051905090565b600067ffffffffffffffff82111561336357613362613745565b5b61336c82613788565b9050602081019050919050565b600067ffffffffffffffff82111561339457613393613745565b5b61339d82613788565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061340d82613535565b915061341883613535565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561344d5761344c613689565b5b828201905092915050565b600061346382613535565b915061346e83613535565b92508261347e5761347d6136b8565b5b828204905092915050565b600061349482613535565b915061349f83613535565b9250828210156134b2576134b1613689565b5b828203905092915050565b60006134c882613515565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561356c578082015181840152602081019050613551565b8381111561357b576000848401525b50505050565b6000600282049050600182168061359957607f821691505b602082108114156135ad576135ac6136e7565b5b50919050565b6135bc82613788565b810181811067ffffffffffffffff821117156135db576135da613745565b5b80604052505050565b60006135ef82613507565b915061ffff82141561360457613603613689565b5b600182019050919050565b600061361a82613535565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561364d5761364c613689565b5b600182019050919050565b600061366382613535565b915061366e83613535565b92508261367e5761367d6136b8565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4d696e74206973206e6f74204f70656e00000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f3939393920546f6b656e20416c7265616479204d696e74656400000000000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4d696e74696e6720616d6f756e742067726561746572207468616e2030000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732314d657461646174613a20717565727920666f72206e6f6e65786960008201527f7374656e7420746f6b656e000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f596f7520416c7265616479204d696e7420546f6b656e00000000000000000000600082015250565b613cc7816134bd565b8114613cd257600080fd5b50565b613cde816134cf565b8114613ce957600080fd5b50565b613cf5816134db565b8114613d0057600080fd5b50565b613d0c81613535565b8114613d1757600080fd5b5056fea2646970667358221220440e1dd6f6bcba9d5fd6f2431741b4fab4339db02e231a11fba7d186d35d757664736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000003d7d8f94c889685d612756ff6b3cedd616c4ee65000000000000000000000000000000000000000000000000000000000000005668747470733a2f2f737469636b76657273652e6d7970696e6174612e636c6f75642f697066732f516d64366a685a6876314b6b455a5861527a564a5161764e325938624c65765054336d353677547462445234474a2f00000000000000000000

-----Decoded View---------------
Arg [0] : _baseURI (string): https://stickverse.mypinata.cloud/ipfs/Qmd6jhZhv1KkEZXaRzVJQavN2Y8bLevPT3m56wTtbDR4GJ/
Arg [1] : _to (address): 0x3d7D8f94c889685D612756Ff6b3CeDd616c4EE65

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000003d7d8f94c889685d612756ff6b3cedd616c4ee65
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000056
Arg [3] : 68747470733a2f2f737469636b76657273652e6d7970696e6174612e636c6f75
Arg [4] : 642f697066732f516d64366a685a6876314b6b455a5861527a564a5161764e32
Arg [5] : 5938624c65765054336d353677547462445234474a2f00000000000000000000


Deployed Bytecode Sourcemap

43587:3573:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25574:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26519:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28078:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27601:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46962:123;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44298:101;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45164:464;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46369:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28828:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29238:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45843:135;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46260:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45986:266;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26213:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43661:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44538:506;;;:::i;:::-;;25943:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6195:103;;;;;;;;;;;;;:::i;:::-;;5544:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26688:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28371:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43957:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43825:39;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29494:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43778:40;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;47091:66;;;;;;;;;;;;;:::i;:::-;;46481:475;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28597:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6453:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25574:305;25676:4;25728:25;25713:40;;;:11;:40;;;;:105;;;;25785:33;25770:48;;;:11;:48;;;;25713:105;:158;;;;25835:36;25859:11;25835:23;:36::i;:::-;25713:158;25693:178;;25574:305;;;:::o;26519:100::-;26573:13;26606:5;26599:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26519:100;:::o;28078:221::-;28154:7;28182:16;28190:7;28182;:16::i;:::-;28174:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;28267:15;:24;28283:7;28267:24;;;;;;;;;;;;;;;;;;;;;28260:31;;28078:221;;;:::o;27601:411::-;27682:13;27698:23;27713:7;27698:14;:23::i;:::-;27682:39;;27746:5;27740:11;;:2;:11;;;;27732:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;27840:5;27824:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;27849:37;27866:5;27873:12;:10;:12::i;:::-;27849:16;:37::i;:::-;27824:62;27802:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;27983:21;27992:2;27996:7;27983:8;:21::i;:::-;27671:341;27601:411;;:::o;46962:123::-;5775:12;:10;:12::i;:::-;5764:23;;:7;:5;:7::i;:::-;:23;;;5756:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47073:4:::1;47051:9;:19;47061:8;47051:19;;;;;;;;;;;:26;;;;;;;;;;;;:::i;:::-;;46962:123:::0;;:::o;44298:101::-;44342:7;44369:22;:12;:20;:22::i;:::-;44362:29;;44298:101;:::o;45164:464::-;5775:12;:10;:12::i;:::-;5764:23;;:7;:5;:7::i;:::-;:23;;;5756:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45253:1:::1;45240:10;:14;45232:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;45332:5;45307:22;:12;:20;:22::i;:::-;:30;45299:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;45381:8;45377:242;45396:10;45393:1;:13;;;45377:242;;;45437:24;:12;:22;:24::i;:::-;45476:41;45482:10;45494:22;:12;:20;:22::i;:::-;45476:5;:41::i;:::-;45566;;;;;;;;45573:10;45566:41;;;;;;45584:22;:12;:20;:22::i;:::-;45566:41;;::::0;45532:8:::1;:32;45541:22;:12;:20;:22::i;:::-;45532:32;;;;;;;;;;;:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45408:3;;;;;:::i;:::-;;;;45377:242;;;;45164:464:::0;:::o;46369:104::-;5775:12;:10;:12::i;:::-;5764:23;;:7;:5;:7::i;:::-;:23;;;5756:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46462:3:::1;46438:21;;:27;;;;;;;;;;;;;;;;;;46369:104:::0;:::o;28828:339::-;29023:41;29042:12;:10;:12::i;:::-;29056:7;29023:18;:41::i;:::-;29015:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;29131:28;29141:4;29147:2;29151:7;29131:9;:28::i;:::-;28828:339;;;:::o;29238:185::-;29376:39;29393:4;29399:2;29403:7;29376:39;;;;;;;;;;;;:16;:39::i;:::-;29238:185;;;:::o;45843:135::-;45898:16;45939:8;:18;45948:8;45939:18;;;;;;;;;;;:27;;;;;;;;;;;;45932:34;;45843:135;;;:::o;46260:100::-;5775:12;:10;:12::i;:::-;5764:23;;:7;:5;:7::i;:::-;:23;;;5756:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46344:8:::1;46334:7;:18;;;;;;;;;;;;:::i;:::-;;46260:100:::0;:::o;45986:266::-;46039:15;46076:6;46085:1;46076:10;;46072:173;46092:22;:12;:20;:22::i;:::-;46088:1;:26;46072:173;;;46163:3;46139:27;;:8;:11;46148:1;46139:11;;;;;;;;;;;:20;;;;;;;;;;;;:27;;;46136:93;;;46193:8;:11;46202:1;46193:11;;;;;;;;;;;:20;;;46186:27;;;;;46136:93;46116:3;;;;;:::i;:::-;;;;46072:173;;;;45986:266;;;;:::o;26213:239::-;26285:7;26305:13;26321:7;:16;26329:7;26321:16;;;;;;;;;;;;;;;;;;;;;26305:32;;26373:1;26356:19;;:5;:19;;;;26348:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26439:5;26432:12;;;26213:239;;;:::o;43661:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;44538:506::-;44591:5;;;;;;;;;;;44583:33;;;;;;;;;;;;:::i;:::-;;;;;;;;;44660:5;44635:22;:12;:20;:22::i;:::-;:30;44627:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;44714:6;:18;44721:10;44714:18;;;;;;;;;;;;;;;;;;;;;;;;;44713:19;44705:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;44769:24;:12;:22;:24::i;:::-;44804:41;44810:10;44822:22;:12;:20;:22::i;:::-;44804:5;:41::i;:::-;44864:21;;;;;;;;;;;44856:39;;:60;44896:19;;44856:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44946:4;44927:6;:18;44934:10;44927:18;;;;;;;;;;;;;;;;:23;;;;;;;;;;;;;;;;;;44995:41;;;;;;;;45002:10;44995:41;;;;;;45013:22;:12;:20;:22::i;:::-;44995:41;;;44961:8;:32;44970:22;:12;:20;:22::i;:::-;44961:32;;;;;;;;;;;:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44538:506::o;25943:208::-;26015:7;26060:1;26043:19;;:5;:19;;;;26035:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;26127:9;:16;26137:5;26127:16;;;;;;;;;;;;;;;;26120:23;;25943:208;;;:::o;6195:103::-;5775:12;:10;:12::i;:::-;5764:23;;:7;:5;:7::i;:::-;:23;;;5756:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6260:30:::1;6287:1;6260:18;:30::i;:::-;6195:103::o:0;5544:87::-;5590:7;5617:6;;;;;;;;;;;5610:13;;5544:87;:::o;26688:104::-;26744:13;26777:7;26770:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26688:104;:::o;28371:155::-;28466:52;28485:12;:10;:12::i;:::-;28499:8;28509;28466:18;:52::i;:::-;28371:155;;:::o;43957:36::-;;;;;;;;;;;;;:::o;43825:39::-;;;;;;;;;;;;;;;;;;;;;;:::o;29494:328::-;29669:41;29688:12;:10;:12::i;:::-;29702:7;29669:18;:41::i;:::-;29661:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;29775:39;29789:4;29795:2;29799:7;29808:5;29775:13;:39::i;:::-;29494:328;;;;:::o;43778:40::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;47091:66::-;5775:12;:10;:12::i;:::-;5764:23;;:7;:5;:7::i;:::-;:23;;;5756:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47144:5:::1;;;;;;;;;;;47143:6;47135:5;;:14;;;;;;;;;;;;;;;;;;47091:66::o:0;46481:475::-;46589:13;46626:16;46634:7;46626;:16::i;:::-;46618:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;46780:1;46750:9;:18;46760:7;46750:18;;;;;;;;;;;46744:32;;;;;:::i;:::-;;;:37;46740:201;;46801:9;:18;46811:7;46801:18;;;;;;;;;;;46794:25;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46740:201;46886:7;46895:25;46912:7;46895:16;:25::i;:::-;46869:61;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46855:76;;46481:475;;;;:::o;28597:164::-;28694:4;28718:18;:25;28737:5;28718:25;;;;;;;;;;;;;;;:35;28744:8;28718:35;;;;;;;;;;;;;;;;;;;;;;;;;28711:42;;28597:164;;;;:::o;6453:201::-;5775:12;:10;:12::i;:::-;5764:23;;:7;:5;:7::i;:::-;:23;;;5756:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6562:1:::1;6542:22;;:8;:22;;;;6534:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;6618:28;6637:8;6618:18;:28::i;:::-;6453:201:::0;:::o;18328:157::-;18413:4;18452:25;18437:40;;;:11;:40;;;;18430:47;;18328:157;;;:::o;31332:127::-;31397:4;31449:1;31421:30;;:7;:16;31429:7;31421:16;;;;;;;;;;;;;;;;;;;;;:30;;;;31414:37;;31332:127;;;:::o;4268:98::-;4321:7;4348:10;4341:17;;4268:98;:::o;35478:174::-;35580:2;35553:15;:24;35569:7;35553:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;35636:7;35632:2;35598:46;;35607:23;35622:7;35607:14;:23::i;:::-;35598:46;;;;;;;;;;;;35478:174;;:::o;872:114::-;937:7;964;:14;;;957:21;;872:114;;;:::o;994:127::-;1101:1;1083:7;:14;;;:19;;;;;;;;;;;994:127;:::o;33310:439::-;33404:1;33390:16;;:2;:16;;;;33382:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;33463:16;33471:7;33463;:16::i;:::-;33462:17;33454:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;33525:45;33554:1;33558:2;33562:7;33525:20;:45::i;:::-;33600:1;33583:9;:13;33593:2;33583:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;33631:2;33612:7;:16;33620:7;33612:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;33676:7;33672:2;33651:33;;33668:1;33651:33;;;;;;;;;;;;33697:44;33725:1;33729:2;33733:7;33697:19;:44::i;:::-;33310:439;;:::o;31626:348::-;31719:4;31744:16;31752:7;31744;:16::i;:::-;31736:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31820:13;31836:23;31851:7;31836:14;:23::i;:::-;31820:39;;31889:5;31878:16;;:7;:16;;;:51;;;;31922:7;31898:31;;:20;31910:7;31898:11;:20::i;:::-;:31;;;31878:51;:87;;;;31933:32;31950:5;31957:7;31933:16;:32::i;:::-;31878:87;31870:96;;;31626:348;;;;:::o;34735:625::-;34894:4;34867:31;;:23;34882:7;34867:14;:23::i;:::-;:31;;;34859:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;34973:1;34959:16;;:2;:16;;;;34951:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;35029:39;35050:4;35056:2;35060:7;35029:20;:39::i;:::-;35133:29;35150:1;35154:7;35133:8;:29::i;:::-;35194:1;35175:9;:15;35185:4;35175:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;35223:1;35206:9;:13;35216:2;35206:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;35254:2;35235:7;:16;35243:7;35235:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;35293:7;35289:2;35274:27;;35283:4;35274:27;;;;;;;;;;;;35314:38;35334:4;35340:2;35344:7;35314:19;:38::i;:::-;34735:625;;;:::o;6814:191::-;6888:16;6907:6;;;;;;;;;;;6888:25;;6933:8;6924:6;;:17;;;;;;;;;;;;;;;;;;6988:8;6957:40;;6978:8;6957:40;;;;;;;;;;;;6877:128;6814:191;:::o;35794:315::-;35949:8;35940:17;;:5;:17;;;;35932:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;36036:8;35998:18;:25;36017:5;35998:25;;;;;;;;;;;;;;;:35;36024:8;35998:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;36082:8;36060:41;;36075:5;36060:41;;;36092:8;36060:41;;;;;;:::i;:::-;;;;;;;;35794:315;;;:::o;30704:::-;30861:28;30871:4;30877:2;30881:7;30861:9;:28::i;:::-;30908:48;30931:4;30937:2;30941:7;30950:5;30908:22;:48::i;:::-;30900:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;30704:315;;;;:::o;1830:723::-;1886:13;2116:1;2107:5;:10;2103:53;;;2134:10;;;;;;;;;;;;;;;;;;;;;2103:53;2166:12;2181:5;2166:20;;2197:14;2222:78;2237:1;2229:4;:9;2222:78;;2255:8;;;;;:::i;:::-;;;;2286:2;2278:10;;;;;:::i;:::-;;;2222:78;;;2310:19;2342:6;2332:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2310:39;;2360:154;2376:1;2367:5;:10;2360:154;;2404:1;2394:11;;;;;:::i;:::-;;;2471:2;2463:5;:10;;;;:::i;:::-;2450:2;:24;;;;:::i;:::-;2437:39;;2420:6;2427;2420:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;2500:2;2491:11;;;;;:::i;:::-;;;2360:154;;;2538:6;2524:21;;;;;1830:723;;;;:::o;38045:126::-;;;;:::o;38556:125::-;;;;:::o;36674:799::-;36829:4;36850:15;:2;:13;;;:15::i;:::-;36846:620;;;36902:2;36886:36;;;36923:12;:10;:12::i;:::-;36937:4;36943:7;36952:5;36886:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36882:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37145:1;37128:6;:13;:18;37124:272;;;37171:60;;;;;;;;;;:::i;:::-;;;;;;;;37124:272;37346:6;37340:13;37331:6;37327:2;37323:15;37316:38;36882:529;37019:41;;;37009:51;;;:6;:51;;;;37002:58;;;;;36846:620;37450:4;37443:11;;36674:799;;;;;;;:::o;8245:326::-;8305:4;8562:1;8540:7;:19;;;:23;8533:30;;8245: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:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:654::-;7236:6;7244;7293:2;7281:9;7272:7;7268:23;7264:32;7261:119;;;7299:79;;:::i;:::-;7261:119;7419:1;7444:53;7489:7;7480:6;7469:9;7465:22;7444:53;:::i;:::-;7434:63;;7390:117;7574:2;7563:9;7559:18;7546:32;7605:18;7597:6;7594:30;7591:117;;;7627:79;;:::i;:::-;7591:117;7732:63;7787:7;7778:6;7767:9;7763:22;7732:63;:::i;:::-;7722:73;;7517:288;7158:654;;;;;:::o;7818:118::-;7905:24;7923:5;7905:24;:::i;:::-;7900:3;7893:37;7818:118;;:::o;7942:109::-;8023:21;8038:5;8023:21;:::i;:::-;8018:3;8011:34;7942:109;;:::o;8057:360::-;8143:3;8171:38;8203:5;8171:38;:::i;:::-;8225:70;8288:6;8283:3;8225:70;:::i;:::-;8218:77;;8304:52;8349:6;8344:3;8337:4;8330:5;8326:16;8304:52;:::i;:::-;8381:29;8403:6;8381:29;:::i;:::-;8376:3;8372:39;8365:46;;8147:270;8057:360;;;;:::o;8423:364::-;8511:3;8539:39;8572:5;8539:39;:::i;:::-;8594:71;8658:6;8653:3;8594:71;:::i;:::-;8587:78;;8674:52;8719:6;8714:3;8707:4;8700:5;8696:16;8674:52;:::i;:::-;8751:29;8773:6;8751:29;:::i;:::-;8746:3;8742:39;8735:46;;8515:272;8423:364;;;;:::o;8793:377::-;8899:3;8927:39;8960:5;8927:39;:::i;:::-;8982:89;9064:6;9059:3;8982:89;:::i;:::-;8975:96;;9080:52;9125:6;9120:3;9113:4;9106:5;9102:16;9080:52;:::i;:::-;9157:6;9152:3;9148:16;9141:23;;8903:267;8793:377;;;;:::o;9200:845::-;9303:3;9340:5;9334:12;9369:36;9395:9;9369:36;:::i;:::-;9421:89;9503:6;9498:3;9421:89;:::i;:::-;9414:96;;9541:1;9530:9;9526:17;9557:1;9552:137;;;;9703:1;9698:341;;;;9519:520;;9552:137;9636:4;9632:9;9621;9617:25;9612:3;9605:38;9672:6;9667:3;9663:16;9656:23;;9552:137;;9698:341;9765:38;9797:5;9765:38;:::i;:::-;9825:1;9839:154;9853:6;9850:1;9847:13;9839:154;;;9927:7;9921:14;9917:1;9912:3;9908:11;9901:35;9977:1;9968:7;9964:15;9953:26;;9875:4;9872:1;9868:12;9863:17;;9839:154;;;10022:6;10017:3;10013:16;10006:23;;9705:334;;9519:520;;9307:738;;9200:845;;;;:::o;10051:366::-;10193:3;10214:67;10278:2;10273:3;10214:67;:::i;:::-;10207:74;;10290:93;10379:3;10290:93;:::i;:::-;10408:2;10403:3;10399:12;10392:19;;10051:366;;;:::o;10423:::-;10565:3;10586:67;10650:2;10645:3;10586:67;:::i;:::-;10579:74;;10662:93;10751:3;10662:93;:::i;:::-;10780:2;10775:3;10771:12;10764:19;;10423:366;;;:::o;10795:::-;10937:3;10958:67;11022:2;11017:3;10958:67;:::i;:::-;10951:74;;11034:93;11123:3;11034:93;:::i;:::-;11152:2;11147:3;11143:12;11136:19;;10795:366;;;:::o;11167:::-;11309:3;11330:67;11394:2;11389:3;11330:67;:::i;:::-;11323:74;;11406:93;11495:3;11406:93;:::i;:::-;11524:2;11519:3;11515:12;11508:19;;11167:366;;;:::o;11539:::-;11681:3;11702:67;11766:2;11761:3;11702:67;:::i;:::-;11695:74;;11778:93;11867:3;11778:93;:::i;:::-;11896:2;11891:3;11887:12;11880:19;;11539:366;;;:::o;11911:::-;12053:3;12074:67;12138:2;12133:3;12074:67;:::i;:::-;12067:74;;12150:93;12239:3;12150:93;:::i;:::-;12268:2;12263:3;12259:12;12252:19;;11911:366;;;:::o;12283:::-;12425:3;12446:67;12510:2;12505:3;12446:67;:::i;:::-;12439:74;;12522:93;12611:3;12522:93;:::i;:::-;12640:2;12635:3;12631:12;12624:19;;12283:366;;;:::o;12655:::-;12797:3;12818:67;12882:2;12877:3;12818:67;:::i;:::-;12811:74;;12894:93;12983:3;12894:93;:::i;:::-;13012:2;13007:3;13003:12;12996:19;;12655:366;;;:::o;13027:::-;13169:3;13190:67;13254:2;13249:3;13190:67;:::i;:::-;13183:74;;13266:93;13355:3;13266:93;:::i;:::-;13384:2;13379:3;13375:12;13368:19;;13027:366;;;:::o;13399:::-;13541:3;13562:67;13626:2;13621:3;13562:67;:::i;:::-;13555:74;;13638:93;13727:3;13638:93;:::i;:::-;13756:2;13751:3;13747:12;13740:19;;13399:366;;;:::o;13771:::-;13913:3;13934:67;13998:2;13993:3;13934:67;:::i;:::-;13927:74;;14010:93;14099:3;14010:93;:::i;:::-;14128:2;14123:3;14119:12;14112:19;;13771:366;;;:::o;14143:::-;14285:3;14306:67;14370:2;14365:3;14306:67;:::i;:::-;14299:74;;14382:93;14471:3;14382:93;:::i;:::-;14500:2;14495:3;14491:12;14484:19;;14143:366;;;:::o;14515:::-;14657:3;14678:67;14742:2;14737:3;14678:67;:::i;:::-;14671:74;;14754:93;14843:3;14754:93;:::i;:::-;14872:2;14867:3;14863:12;14856:19;;14515:366;;;:::o;14887:::-;15029:3;15050:67;15114:2;15109:3;15050:67;:::i;:::-;15043:74;;15126:93;15215:3;15126:93;:::i;:::-;15244:2;15239:3;15235:12;15228:19;;14887:366;;;:::o;15259:::-;15401:3;15422:67;15486:2;15481:3;15422:67;:::i;:::-;15415:74;;15498:93;15587:3;15498:93;:::i;:::-;15616:2;15611:3;15607:12;15600:19;;15259:366;;;:::o;15631:::-;15773:3;15794:67;15858:2;15853:3;15794:67;:::i;:::-;15787:74;;15870:93;15959:3;15870:93;:::i;:::-;15988:2;15983:3;15979:12;15972:19;;15631:366;;;:::o;16003:400::-;16163:3;16184:84;16266:1;16261:3;16184:84;:::i;:::-;16177:91;;16277:93;16366:3;16277:93;:::i;:::-;16395:1;16390:3;16386:11;16379:18;;16003:400;;;:::o;16409:366::-;16551:3;16572:67;16636:2;16631:3;16572:67;:::i;:::-;16565:74;;16648:93;16737:3;16648:93;:::i;:::-;16766:2;16761:3;16757:12;16750:19;;16409:366;;;:::o;16781:::-;16923:3;16944:67;17008:2;17003:3;16944:67;:::i;:::-;16937:74;;17020:93;17109:3;17020:93;:::i;:::-;17138:2;17133:3;17129:12;17122:19;;16781:366;;;:::o;17153:::-;17295:3;17316:67;17380:2;17375:3;17316:67;:::i;:::-;17309:74;;17392:93;17481:3;17392:93;:::i;:::-;17510:2;17505:3;17501:12;17494:19;;17153:366;;;:::o;17525:::-;17667:3;17688:67;17752:2;17747:3;17688:67;:::i;:::-;17681:74;;17764:93;17853:3;17764:93;:::i;:::-;17882:2;17877:3;17873:12;17866:19;;17525:366;;;:::o;17897:118::-;17984:24;18002:5;17984:24;:::i;:::-;17979:3;17972:37;17897:118;;:::o;18021:695::-;18299:3;18321:92;18409:3;18400:6;18321:92;:::i;:::-;18314:99;;18430:95;18521:3;18512:6;18430:95;:::i;:::-;18423:102;;18542:148;18686:3;18542:148;:::i;:::-;18535:155;;18707:3;18700:10;;18021:695;;;;;:::o;18722:222::-;18815:4;18853:2;18842:9;18838:18;18830:26;;18866:71;18934:1;18923:9;18919:17;18910:6;18866:71;:::i;:::-;18722:222;;;;:::o;18950:640::-;19145:4;19183:3;19172:9;19168:19;19160:27;;19197:71;19265:1;19254:9;19250:17;19241:6;19197:71;:::i;:::-;19278:72;19346:2;19335:9;19331:18;19322:6;19278:72;:::i;:::-;19360;19428:2;19417:9;19413:18;19404:6;19360:72;:::i;:::-;19479:9;19473:4;19469:20;19464:2;19453:9;19449:18;19442:48;19507:76;19578:4;19569:6;19507:76;:::i;:::-;19499:84;;18950:640;;;;;;;:::o;19596:332::-;19717:4;19755:2;19744:9;19740:18;19732:26;;19768:71;19836:1;19825:9;19821:17;19812:6;19768:71;:::i;:::-;19849:72;19917:2;19906:9;19902:18;19893:6;19849:72;:::i;:::-;19596:332;;;;;:::o;19934:210::-;20021:4;20059:2;20048:9;20044:18;20036:26;;20072:65;20134:1;20123:9;20119:17;20110:6;20072:65;:::i;:::-;19934:210;;;;:::o;20150:313::-;20263:4;20301:2;20290:9;20286:18;20278:26;;20350:9;20344:4;20340:20;20336:1;20325:9;20321:17;20314:47;20378:78;20451:4;20442:6;20378:78;:::i;:::-;20370:86;;20150:313;;;;:::o;20469:419::-;20635:4;20673:2;20662:9;20658:18;20650:26;;20722:9;20716:4;20712:20;20708:1;20697:9;20693:17;20686:47;20750:131;20876:4;20750:131;:::i;:::-;20742:139;;20469:419;;;:::o;20894:::-;21060:4;21098:2;21087:9;21083:18;21075:26;;21147:9;21141:4;21137:20;21133:1;21122:9;21118:17;21111:47;21175:131;21301:4;21175:131;:::i;:::-;21167:139;;20894:419;;;:::o;21319:::-;21485:4;21523:2;21512:9;21508:18;21500:26;;21572:9;21566:4;21562:20;21558:1;21547:9;21543:17;21536:47;21600:131;21726:4;21600:131;:::i;:::-;21592:139;;21319:419;;;:::o;21744:::-;21910:4;21948:2;21937:9;21933:18;21925:26;;21997:9;21991:4;21987:20;21983:1;21972:9;21968:17;21961:47;22025:131;22151:4;22025:131;:::i;:::-;22017:139;;21744:419;;;:::o;22169:::-;22335:4;22373:2;22362:9;22358:18;22350:26;;22422:9;22416:4;22412:20;22408:1;22397:9;22393:17;22386:47;22450:131;22576:4;22450:131;:::i;:::-;22442:139;;22169:419;;;:::o;22594:::-;22760:4;22798:2;22787:9;22783:18;22775:26;;22847:9;22841:4;22837:20;22833:1;22822:9;22818:17;22811:47;22875:131;23001:4;22875:131;:::i;:::-;22867:139;;22594:419;;;:::o;23019:::-;23185:4;23223:2;23212:9;23208:18;23200:26;;23272:9;23266:4;23262:20;23258:1;23247:9;23243:17;23236:47;23300:131;23426:4;23300:131;:::i;:::-;23292:139;;23019:419;;;:::o;23444:::-;23610:4;23648:2;23637:9;23633:18;23625:26;;23697:9;23691:4;23687:20;23683:1;23672:9;23668:17;23661:47;23725:131;23851:4;23725:131;:::i;:::-;23717:139;;23444:419;;;:::o;23869:::-;24035:4;24073:2;24062:9;24058:18;24050:26;;24122:9;24116:4;24112:20;24108:1;24097:9;24093:17;24086:47;24150:131;24276:4;24150:131;:::i;:::-;24142:139;;23869:419;;;:::o;24294:::-;24460:4;24498:2;24487:9;24483:18;24475:26;;24547:9;24541:4;24537:20;24533:1;24522:9;24518:17;24511:47;24575:131;24701:4;24575:131;:::i;:::-;24567:139;;24294:419;;;:::o;24719:::-;24885:4;24923:2;24912:9;24908:18;24900:26;;24972:9;24966:4;24962:20;24958:1;24947:9;24943:17;24936:47;25000:131;25126:4;25000:131;:::i;:::-;24992:139;;24719:419;;;:::o;25144:::-;25310:4;25348:2;25337:9;25333:18;25325:26;;25397:9;25391:4;25387:20;25383:1;25372:9;25368:17;25361:47;25425:131;25551:4;25425:131;:::i;:::-;25417:139;;25144:419;;;:::o;25569:::-;25735:4;25773:2;25762:9;25758:18;25750:26;;25822:9;25816:4;25812:20;25808:1;25797:9;25793:17;25786:47;25850:131;25976:4;25850:131;:::i;:::-;25842:139;;25569:419;;;:::o;25994:::-;26160:4;26198:2;26187:9;26183:18;26175:26;;26247:9;26241:4;26237:20;26233:1;26222:9;26218:17;26211:47;26275:131;26401:4;26275:131;:::i;:::-;26267:139;;25994:419;;;:::o;26419:::-;26585:4;26623:2;26612:9;26608:18;26600:26;;26672:9;26666:4;26662:20;26658:1;26647:9;26643:17;26636:47;26700:131;26826:4;26700:131;:::i;:::-;26692:139;;26419:419;;;:::o;26844:::-;27010:4;27048:2;27037:9;27033:18;27025:26;;27097:9;27091:4;27087:20;27083:1;27072:9;27068:17;27061:47;27125:131;27251:4;27125:131;:::i;:::-;27117:139;;26844:419;;;:::o;27269:::-;27435:4;27473:2;27462:9;27458:18;27450:26;;27522:9;27516:4;27512:20;27508:1;27497:9;27493:17;27486:47;27550:131;27676:4;27550:131;:::i;:::-;27542:139;;27269:419;;;:::o;27694:::-;27860:4;27898:2;27887:9;27883:18;27875:26;;27947:9;27941:4;27937:20;27933:1;27922:9;27918:17;27911:47;27975:131;28101:4;27975:131;:::i;:::-;27967:139;;27694:419;;;:::o;28119:::-;28285:4;28323:2;28312:9;28308:18;28300:26;;28372:9;28366:4;28362:20;28358:1;28347:9;28343:17;28336:47;28400:131;28526:4;28400:131;:::i;:::-;28392:139;;28119:419;;;:::o;28544:::-;28710:4;28748:2;28737:9;28733:18;28725:26;;28797:9;28791:4;28787:20;28783:1;28772:9;28768:17;28761:47;28825:131;28951:4;28825:131;:::i;:::-;28817:139;;28544:419;;;:::o;28969:222::-;29062:4;29100:2;29089:9;29085:18;29077:26;;29113:71;29181:1;29170:9;29166:17;29157:6;29113:71;:::i;:::-;28969:222;;;;:::o;29197:129::-;29231:6;29258:20;;:::i;:::-;29248:30;;29287:33;29315:4;29307:6;29287:33;:::i;:::-;29197:129;;;:::o;29332:75::-;29365:6;29398:2;29392:9;29382:19;;29332:75;:::o;29413:307::-;29474:4;29564:18;29556:6;29553:30;29550:56;;;29586:18;;:::i;:::-;29550:56;29624:29;29646:6;29624:29;:::i;:::-;29616:37;;29708:4;29702;29698:15;29690:23;;29413:307;;;:::o;29726:308::-;29788:4;29878:18;29870:6;29867:30;29864:56;;;29900:18;;:::i;:::-;29864:56;29938:29;29960:6;29938:29;:::i;:::-;29930:37;;30022:4;30016;30012:15;30004:23;;29726:308;;;:::o;30040:141::-;30089:4;30112:3;30104:11;;30135:3;30132:1;30125:14;30169:4;30166:1;30156:18;30148:26;;30040:141;;;:::o;30187:98::-;30238:6;30272:5;30266:12;30256:22;;30187:98;;;:::o;30291:99::-;30343:6;30377:5;30371:12;30361:22;;30291:99;;;:::o;30396:168::-;30479:11;30513:6;30508:3;30501:19;30553:4;30548:3;30544:14;30529:29;;30396:168;;;;:::o;30570:169::-;30654:11;30688:6;30683:3;30676:19;30728:4;30723:3;30719:14;30704:29;;30570:169;;;;:::o;30745:148::-;30847:11;30884:3;30869:18;;30745:148;;;;:::o;30899:305::-;30939:3;30958:20;30976:1;30958:20;:::i;:::-;30953:25;;30992:20;31010:1;30992:20;:::i;:::-;30987:25;;31146:1;31078:66;31074:74;31071:1;31068:81;31065:107;;;31152:18;;:::i;:::-;31065:107;31196:1;31193;31189:9;31182:16;;30899:305;;;;:::o;31210:185::-;31250:1;31267:20;31285:1;31267:20;:::i;:::-;31262:25;;31301:20;31319:1;31301:20;:::i;:::-;31296:25;;31340:1;31330:35;;31345:18;;:::i;:::-;31330:35;31387:1;31384;31380:9;31375:14;;31210:185;;;;:::o;31401:191::-;31441:4;31461:20;31479:1;31461:20;:::i;:::-;31456:25;;31495:20;31513:1;31495:20;:::i;:::-;31490:25;;31534:1;31531;31528:8;31525:34;;;31539:18;;:::i;:::-;31525:34;31584:1;31581;31577:9;31569:17;;31401:191;;;;:::o;31598:96::-;31635:7;31664:24;31682:5;31664:24;:::i;:::-;31653:35;;31598:96;;;:::o;31700:90::-;31734:7;31777:5;31770:13;31763:21;31752:32;;31700:90;;;:::o;31796:149::-;31832:7;31872:66;31865:5;31861:78;31850:89;;31796:149;;;:::o;31951:89::-;31987:7;32027:6;32020:5;32016:18;32005:29;;31951:89;;;:::o;32046:126::-;32083:7;32123:42;32116:5;32112:54;32101:65;;32046:126;;;:::o;32178:77::-;32215:7;32244:5;32233:16;;32178:77;;;:::o;32261:154::-;32345:6;32340:3;32335;32322:30;32407:1;32398:6;32393:3;32389:16;32382:27;32261:154;;;:::o;32421:307::-;32489:1;32499:113;32513:6;32510:1;32507:13;32499:113;;;32598:1;32593:3;32589:11;32583:18;32579:1;32574:3;32570:11;32563:39;32535:2;32532:1;32528:10;32523:15;;32499:113;;;32630:6;32627:1;32624:13;32621:101;;;32710:1;32701:6;32696:3;32692:16;32685:27;32621:101;32470:258;32421:307;;;:::o;32734:320::-;32778:6;32815:1;32809:4;32805:12;32795:22;;32862:1;32856:4;32852:12;32883:18;32873:81;;32939:4;32931:6;32927:17;32917:27;;32873:81;33001:2;32993:6;32990:14;32970:18;32967:38;32964:84;;;33020:18;;:::i;:::-;32964:84;32785:269;32734:320;;;:::o;33060:281::-;33143:27;33165:4;33143:27;:::i;:::-;33135:6;33131:40;33273:6;33261:10;33258:22;33237:18;33225:10;33222:34;33219:62;33216:88;;;33284:18;;:::i;:::-;33216:88;33324:10;33320:2;33313:22;33103:238;33060:281;;:::o;33347:171::-;33385:3;33408:23;33425:5;33408:23;:::i;:::-;33399:32;;33453:6;33446:5;33443:17;33440:43;;;33463:18;;:::i;:::-;33440:43;33510:1;33503:5;33499:13;33492:20;;33347:171;;;:::o;33524:233::-;33563:3;33586:24;33604:5;33586:24;:::i;:::-;33577:33;;33632:66;33625:5;33622:77;33619:103;;;33702:18;;:::i;:::-;33619:103;33749:1;33742:5;33738:13;33731:20;;33524:233;;;:::o;33763:176::-;33795:1;33812:20;33830:1;33812:20;:::i;:::-;33807:25;;33846:20;33864:1;33846:20;:::i;:::-;33841:25;;33885:1;33875:35;;33890:18;;:::i;:::-;33875:35;33931:1;33928;33924:9;33919:14;;33763:176;;;;:::o;33945:180::-;33993:77;33990:1;33983:88;34090:4;34087:1;34080:15;34114:4;34111:1;34104:15;34131:180;34179:77;34176:1;34169:88;34276:4;34273:1;34266:15;34300:4;34297:1;34290:15;34317:180;34365:77;34362:1;34355:88;34462:4;34459:1;34452:15;34486:4;34483:1;34476:15;34503:180;34551:77;34548:1;34541:88;34648:4;34645:1;34638:15;34672:4;34669:1;34662:15;34689:180;34737:77;34734:1;34727:88;34834:4;34831:1;34824:15;34858:4;34855:1;34848:15;34875:117;34984:1;34981;34974:12;34998:117;35107:1;35104;35097:12;35121:117;35230:1;35227;35220:12;35244:117;35353:1;35350;35343:12;35367:102;35408:6;35459:2;35455:7;35450:2;35443:5;35439:14;35435:28;35425:38;;35367:102;;;:::o;35475:237::-;35615:34;35611:1;35603:6;35599:14;35592:58;35684:20;35679:2;35671:6;35667:15;35660:45;35475:237;:::o;35718:225::-;35858:34;35854:1;35846:6;35842:14;35835:58;35927:8;35922:2;35914:6;35910:15;35903:33;35718:225;:::o;35949:224::-;36089:34;36085:1;36077:6;36073:14;36066:58;36158:7;36153:2;36145:6;36141:15;36134:32;35949:224;:::o;36179:178::-;36319:30;36315:1;36307:6;36303:14;36296:54;36179:178;:::o;36363:223::-;36503:34;36499:1;36491:6;36487:14;36480:58;36572:6;36567:2;36559:6;36555:15;36548:31;36363:223;:::o;36592:175::-;36732:27;36728:1;36720:6;36716:14;36709:51;36592:175;:::o;36773:231::-;36913:34;36909:1;36901:6;36897:14;36890:58;36982:14;36977:2;36969:6;36965:15;36958:39;36773:231;:::o;37010:166::-;37150:18;37146:1;37138:6;37134:14;37127:42;37010:166;:::o;37182:243::-;37322:34;37318:1;37310:6;37306:14;37299:58;37391:26;37386:2;37378:6;37374:15;37367:51;37182:243;:::o;37431:175::-;37571:27;37567:1;37559:6;37555:14;37548:51;37431:175;:::o;37612:229::-;37752:34;37748:1;37740:6;37736:14;37729:58;37821:12;37816:2;37808:6;37804:15;37797:37;37612:229;:::o;37847:228::-;37987:34;37983:1;37975:6;37971:14;37964:58;38056:11;38051:2;38043:6;38039:15;38032:36;37847:228;:::o;38081:179::-;38221:31;38217:1;38209:6;38205:14;38198:55;38081:179;:::o;38266:182::-;38406:34;38402:1;38394:6;38390:14;38383:58;38266:182;:::o;38454:230::-;38594:34;38590:1;38582:6;38578:14;38571:58;38663:13;38658:2;38650:6;38646:15;38639:38;38454:230;:::o;38690:231::-;38830:34;38826:1;38818:6;38814:14;38807:58;38899:14;38894:2;38886:6;38882:15;38875:39;38690:231;:::o;38927:155::-;39067:7;39063:1;39055:6;39051:14;39044:31;38927:155;:::o;39088:182::-;39228:34;39224:1;39216:6;39212:14;39205:58;39088:182;:::o;39276:220::-;39416:34;39412:1;39404:6;39400:14;39393:58;39485:3;39480:2;39472:6;39468:15;39461:28;39276:220;:::o;39502:236::-;39642:34;39638:1;39630:6;39626:14;39619:58;39711:19;39706:2;39698:6;39694:15;39687:44;39502:236;:::o;39744:172::-;39884:24;39880:1;39872:6;39868:14;39861:48;39744:172;:::o;39922:122::-;39995:24;40013:5;39995:24;:::i;:::-;39988:5;39985:35;39975:63;;40034:1;40031;40024:12;39975:63;39922:122;:::o;40050:116::-;40120:21;40135:5;40120:21;:::i;:::-;40113:5;40110:32;40100:60;;40156:1;40153;40146:12;40100:60;40050:116;:::o;40172:120::-;40244:23;40261:5;40244:23;:::i;:::-;40237:5;40234:34;40224:62;;40282:1;40279;40272:12;40224:62;40172:120;:::o;40298:122::-;40371:24;40389:5;40371:24;:::i;:::-;40364:5;40361:35;40351:63;;40410:1;40407;40400:12;40351:63;40298:122;:::o

Swarm Source

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