ETH Price: $3,355.60 (-1.79%)
Gas: 6 Gwei

Token

meeverse.io (meeverse.io)
 

Overview

Max Total Supply

1,002 meeverse.io

Holders

1,002

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 meeverse.io
0x29D0C1AFC2C00443410af0A1428186BC3c7c6146
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:
meeverseio

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-08-18
*/

// SPDX-License-Identifier: MIT

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


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

pragma solidity >=0.7.0 <0.9.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/[email protected]/utils/Strings.sol


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)
pragma solidity >=0.7.0 <0.9.0;

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

// File: @openzeppelin/[email protected]/utils/Context.sol


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

pragma solidity >=0.7.0 <0.9.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/[email protected]/access/Ownable.sol


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

pragma solidity >=0.7.0 <0.9.0;


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

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

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

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

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

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

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

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

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

// File: @openzeppelin/[email protected]/utils/Address.sol


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

pragma solidity >=0.7.0 <0.9.0;

/**
 * @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
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: @openzeppelin/[email protected]/token/ERC721/IERC721Receiver.sol


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

pragma solidity >=0.7.0 <0.9.0;

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

// File: @openzeppelin/[email protected]/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)
pragma solidity >=0.7.0 <0.9.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/[email protected]/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)
pragma solidity >=0.7.0 <0.9.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/[email protected]/token/ERC721/IERC721.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/[email protected]/token/ERC721/extensions/IERC721Metadata.sol


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

pragma solidity >=0.7.0 <0.9.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/[email protected]/token/ERC721/ERC721.sol


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

pragma solidity >=0.7.0 <0.9.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
    // Note: changed from private to internal
    mapping(uint256 => address) internal _owners;

    // Mapping owner address to token count
    // Note: changed from private to internal
    mapping(address => uint256) internal _balances;

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        _requireMinted(tokenId);

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved");

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved");
        _safeTransfer(from, to, tokenId, data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

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

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

// File: @openzeppelin/[email protected]/token/ERC721/extensions/ERC721URIStorage.sol


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

pragma solidity >=0.7.0 <0.9.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) {
        _requireMinted(tokenId);

        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 See {ERC721-_burn}. This override additionally checks to see if a
     * token-specific URI was set for the token, and if so, it deletes the token URI from
     * the storage mapping.
     */
    function _burn(uint256 tokenId) internal virtual override {
        super._burn(tokenId);

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

// File: contract-dc9223ff49.sol


pragma solidity >=0.7.0 <0.9.0;



 contract meeverseio is ERC721, ERC721URIStorage, Ownable{
    address _owner;

    using Strings for uint256;
    using Counters for Counters.Counter;

    Counters.Counter private supply;
    string public uriPrefix = "";
    string public uriSuffix = ".json";
    string public hiddenMetadataUri;
    
    uint256 public cost = 0.0 ether;
    uint256 public maxSupply = 10000;
    uint256 public maxMintAmountPerTx = 5;

    bool public paused = true;
    bool public revealed = false;

    string private _baseURIextended;
    mapping (uint256 => string) private _tokenURIs;
    mapping(address => bool) private _burners;

    constructor() ERC721("meeverse.io", "meeverse.io") {
         _owner = msg.sender;
    }


    modifier mintCompliance(uint256 _mintAmount) {
        require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!");
        require(supply.current() + _mintAmount <= maxSupply, "Max supply exceeded!");
        _;
    }
     
  
    function setPaused(bool _state) public onlyOwner {
        paused = _state;
    }

    function setRevealed(bool _state) public onlyOwner {
        revealed = _state;
    }


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

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

    function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) {
        require(!paused, "The contract is paused!");
        require(msg.value >= cost * _mintAmount, "Insufficient funds!");

        _mintLoop(msg.sender, _mintAmount);
    }
  

    function safeMint(address to, uint256 tokenId, string memory uri)
        public
        onlyOwner
    {
        _safeMint(to, tokenId);
        _setTokenURI(tokenId, uri);
    }

    function addBurner(address a) public onlyOwner {
        _burners[a] = true;
    }

    function removeBurner(address a) public onlyOwner {
        _burners[a] = false;
    }

    modifier onlyBurners() {
        require(_burners[_msgSender()], "Not a Burner");
        _;
    }

    function burnTokenOwner(uint256 tokenId) public onlyOwner {
        _burnToken(tokenId);
    }

    function burnTokenBurners(uint256 tokenId) public onlyBurners {
        _burnToken(tokenId);
    }

    function _burnToken(uint256 tokenId) internal {
        require(_exists(tokenId), "Token does not exist or is burnt");
        _burn(tokenId);
    }

    function setCost(uint256 _cost) public onlyOwner {
        cost = _cost;
    }

    function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
        maxMintAmountPerTx = _maxMintAmountPerTx;
    }

   

    // The following functions are overrides required by Solidity.

   

    function _burn(uint256 tokenId) internal override  (ERC721, ERC721URIStorage) {
        super._burn(tokenId);
    }

    function tokenURI(uint256 tokenId)
        public
        view
        override(ERC721, ERC721URIStorage)
        returns (string memory)
    {
        return super.tokenURI(tokenId);
    }

    function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner {
        _mintLoop(_receiver, _mintAmount);
    }


    function _mintLoop(address _receiver, uint256 _mintAmount) internal {
        for (uint256 i = 0; i < _mintAmount; i++) {
            supply.increment();
            _safeMint(_receiver, supply.current());
        }
    }

    function massMint(address[] calldata recipients) external onlyOwner {
        require(supply.current() + recipients.length <= maxSupply, "Max supply exceeded");

        // Note: Every address gets one token.
        for (uint256 i = 0; i < recipients.length; i++) {
            supply.increment();
            _safeMint(recipients[i], supply.current());
        }
    }

    function massEmit(address from, address[] calldata recipients) external onlyOwner { 
       require(supply.current() + recipients.length <= maxSupply, "Max supply exceeded");
       
       // Note: Every address gets one token
        for(uint256 i = 0; i < recipients.length; i++) { 
            supply.increment();
            _balances[recipients[i]] += 1;
            _owners[supply.current()] = recipients[i];
            emit Transfer(from, recipients[i], supply.current());
        }
    }

    function walletOfOwner(address owner)
        public
        view
        returns (uint256[] memory)
    {
        uint256 ownerTokenCount = balanceOf(owner);
        uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
        uint256 currentTokenId = 1;
        uint256 ownedTokenIndex = 0;

        while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) {
        address currentTokenOwner = ownerOf(currentTokenId);

        if (currentTokenOwner == _owner) {
            ownedTokenIds[ownedTokenIndex] = currentTokenId;

            ownedTokenIndex++;
        }

        currentTokenId++;
        }

        return ownedTokenIds;
    }

    function withdraw() public onlyOwner {
        // This will transfer the remaining contract balance to the owner.
        // Do not remove this otherwise you will not be able to withdraw the funds.
        // =============================================================================
        (bool os, ) = payable(owner()).call{value: address(this).balance}("");
        require(os);
        // =============================================================================
    }

    function setUriPrefix(string memory _uriPrefix) public onlyOwner {
        uriPrefix = _uriPrefix;
    }

    function setUriSuffix(string memory _uriSuffix) public onlyOwner {
        uriSuffix = _uriSuffix;
    }


    function setBaseURI(string memory baseURI_) external onlyOwner() {
        _baseURIextended = baseURI_;
    }
    
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) override internal virtual onlyOwner {
        require(_exists(tokenId), "ERC721Metadata: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"a","type":"address"}],"name":"addBurner","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burnTokenBurners","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burnTokenOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address[]","name":"recipients","type":"address[]"}],"name":"massEmit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"recipients","type":"address[]"}],"name":"massMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"a","type":"address"}],"name":"removeBurner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"uri","type":"string"}],"name":"safeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","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":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600a90805190602001906200002b929190620002a3565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600b908051906020019062000079929190620002a3565b506000600d55612710600e556005600f556001601060006101000a81548160ff0219169083151502179055506000601060016101000a81548160ff021916908315150217905550348015620000cd57600080fd5b506040518060400160405280600b81526020017f6d656576657273652e696f0000000000000000000000000000000000000000008152506040518060400160405280600b81526020017f6d656576657273652e696f000000000000000000000000000000000000000000815250816000908051906020019062000152929190620002a3565b5080600190805190602001906200016b929190620002a3565b5050506200018e62000182620001d560201b60201c565b620001dd60201b60201c565b33600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620003b8565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002b19062000353565b90600052602060002090601f016020900481019282620002d5576000855562000321565b82601f10620002f057805160ff191683800117855562000321565b8280016001018555821562000321579182015b828111156200032057825182559160200191906001019062000303565b5b50905062000330919062000334565b5090565b5b808211156200034f57600081600090555060010162000335565b5090565b600060028204905060018216806200036c57607f821691505b6020821081141562000383576200038262000389565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6146eb80620003c86000396000f3fe60806040526004361061025c5760003560e01c806370a0823111610144578063b88d4fde116100b6578063e0a808531161007a578063e0a80853146108ad578063e3d8bbe5146108d6578063e985e9c5146108ff578063efbd73f41461093c578063f2fde38b14610965578063f44637ba1461098e5761025c565b8063b88d4fde146107ca578063bb4fc100146107f3578063c87b56dd1461081c578063cd279c7c14610859578063d5abeb01146108825761025c565b806394354fd01161010857806394354fd0146106db57806395d89b4114610706578063a0712d6814610731578063a22cb4651461074d578063a45ba8e714610776578063b071401b146107a15761025c565b806370a082311461060a578063715018a6146106475780637ec4a6591461065e57806388451674146106875780638da5cb5b146106b05761025c565b806323b872dd116101dd57806351830227116101a157806351830227146104f85780635503a0e81461052357806355f804b31461054e5780635c975abb1461057757806362b99ad4146105a25780636352211e146105cd5761025c565b806323b872dd146104295780633ccfd60b1461045257806342842e0e14610469578063438b63001461049257806344a0d68a146104cf5761025c565b8063095ea7b311610224578063095ea7b31461035857806313faede61461038157806316ba10e0146103ac57806316c38b3c146103d557806318160ddd146103fe5761025c565b806301ffc9a714610261578063028468581461029e57806306fdde03146102c757806307e85cd3146102f2578063081812fc1461031b575b600080fd5b34801561026d57600080fd5b50610288600480360381019061028391906133b2565b6109b7565b60405161029591906139db565b60405180910390f35b3480156102aa57600080fd5b506102c560048036038101906102c091906130a6565b610a99565b005b3480156102d357600080fd5b506102dc610afc565b6040516102e991906139f6565b60405180910390f35b3480156102fe57600080fd5b50610319600480360381019061031491906131e9565b610b8e565b005b34801561032757600080fd5b50610342600480360381019061033d9190613455565b610dae565b60405161034f9190613952565b60405180910390f35b34801561036457600080fd5b5061037f600480360381019061037a9190613289565b610df4565b005b34801561038d57600080fd5b50610396610f0c565b6040516103a39190613cb8565b60405180910390f35b3480156103b857600080fd5b506103d360048036038101906103ce919061340c565b610f12565b005b3480156103e157600080fd5b506103fc60048036038101906103f79190613385565b610f34565b005b34801561040a57600080fd5b50610413610f59565b6040516104209190613cb8565b60405180910390f35b34801561043557600080fd5b50610450600480360381019061044b9190613113565b610f6a565b005b34801561045e57600080fd5b50610467610fca565b005b34801561047557600080fd5b50610490600480360381019061048b9190613113565b611052565b005b34801561049e57600080fd5b506104b960048036038101906104b491906130a6565b611072565b6040516104c691906139b9565b60405180910390f35b3480156104db57600080fd5b506104f660048036038101906104f19190613455565b61119f565b005b34801561050457600080fd5b5061050d6111b1565b60405161051a91906139db565b60405180910390f35b34801561052f57600080fd5b506105386111c4565b60405161054591906139f6565b60405180910390f35b34801561055a57600080fd5b506105756004803603810190610570919061340c565b611252565b005b34801561058357600080fd5b5061058c611274565b60405161059991906139db565b60405180910390f35b3480156105ae57600080fd5b506105b7611287565b6040516105c491906139f6565b60405180910390f35b3480156105d957600080fd5b506105f460048036038101906105ef9190613455565b611315565b6040516106019190613952565b60405180910390f35b34801561061657600080fd5b50610631600480360381019061062c91906130a6565b6113c7565b60405161063e9190613cb8565b60405180910390f35b34801561065357600080fd5b5061065c61147f565b005b34801561066a57600080fd5b506106856004803603810190610680919061340c565b611493565b005b34801561069357600080fd5b506106ae60048036038101906106a99190613455565b6114b5565b005b3480156106bc57600080fd5b506106c56114c9565b6040516106d29190613952565b60405180910390f35b3480156106e757600080fd5b506106f06114f3565b6040516106fd9190613cb8565b60405180910390f35b34801561071257600080fd5b5061071b6114f9565b60405161072891906139f6565b60405180910390f35b61074b60048036038101906107469190613455565b61158b565b005b34801561075957600080fd5b50610774600480360381019061076f9190613249565b6116e4565b005b34801561078257600080fd5b5061078b6116fa565b60405161079891906139f6565b60405180910390f35b3480156107ad57600080fd5b506107c860048036038101906107c39190613455565b611788565b005b3480156107d657600080fd5b506107f160048036038101906107ec9190613166565b61179a565b005b3480156107ff57600080fd5b5061081a60048036038101906108159190613455565b6117fc565b005b34801561082857600080fd5b50610843600480360381019061083e9190613455565b61189b565b60405161085091906139f6565b60405180910390f35b34801561086557600080fd5b50610880600480360381019061087b91906132c9565b6118ad565b005b34801561088e57600080fd5b506108976118ce565b6040516108a49190613cb8565b60405180910390f35b3480156108b957600080fd5b506108d460048036038101906108cf9190613385565b6118d4565b005b3480156108e257600080fd5b506108fd60048036038101906108f89190613338565b6118f9565b005b34801561090b57600080fd5b50610926600480360381019061092191906130d3565b6119c7565b60405161093391906139db565b60405180910390f35b34801561094857600080fd5b50610963600480360381019061095e9190613482565b611a5b565b005b34801561097157600080fd5b5061098c600480360381019061098791906130a6565b611b1d565b005b34801561099a57600080fd5b506109b560048036038101906109b091906130a6565b611ba1565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a8257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a925750610a9182611c04565b5b9050919050565b610aa1611c6e565b6000601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b606060008054610b0b90613fac565b80601f0160208091040260200160405190810160405280929190818152602001828054610b3790613fac565b8015610b845780601f10610b5957610100808354040283529160200191610b84565b820191906000526020600020905b815481529060010190602001808311610b6757829003601f168201915b5050505050905090565b610b96611c6e565b600e5482829050610ba76009611cec565b610bb19190613de1565b1115610bf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be990613a38565b60405180910390fd5b60005b82829050811015610da857610c0a6009611cfa565b600160036000858585818110610c2357610c22614116565b5b9050602002016020810190610c3891906130a6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610c819190613de1565b92505081905550828282818110610c9b57610c9a614116565b5b9050602002016020810190610cb091906130a6565b60026000610cbe6009611cec565b815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610d146009611cec565b838383818110610d2757610d26614116565b5b9050602002016020810190610d3c91906130a6565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48080610da09061400f565b915050610bf5565b50505050565b6000610db982611d10565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610dff82611315565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6790613c38565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e8f611d5b565b73ffffffffffffffffffffffffffffffffffffffff161480610ebe5750610ebd81610eb8611d5b565b6119c7565b5b610efd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef490613b78565b60405180910390fd5b610f078383611d63565b505050565b600d5481565b610f1a611c6e565b80600b9080519060200190610f30929190612e24565b5050565b610f3c611c6e565b80601060006101000a81548160ff02191690831515021790555050565b6000610f656009611cec565b905090565b610f7b610f75611d5b565b82611e1c565b610fba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb190613c78565b60405180910390fd5b610fc5838383611eb1565b505050565b610fd2611c6e565b6000610fdc6114c9565b73ffffffffffffffffffffffffffffffffffffffff1647604051610fff9061393d565b60006040518083038185875af1925050503d806000811461103c576040519150601f19603f3d011682016040523d82523d6000602084013e611041565b606091505b505090508061104f57600080fd5b50565b61106d8383836040518060200160405280600081525061179a565b505050565b6060600061107f836113c7565b905060008167ffffffffffffffff81111561109d5761109c614145565b5b6040519080825280602002602001820160405280156110cb5781602001602082028036833780820191505090505b50905060006001905060005b83811080156110e85750600e548211155b156111935760006110f883611315565b9050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561117f578284838151811061116457611163614116565b5b602002602001018181525050818061117b9061400f565b9250505b828061118a9061400f565b935050506110d7565b82945050505050919050565b6111a7611c6e565b80600d8190555050565b601060019054906101000a900460ff1681565b600b80546111d190613fac565b80601f01602080910402602001604051908101604052809291908181526020018280546111fd90613fac565b801561124a5780601f1061121f5761010080835404028352916020019161124a565b820191906000526020600020905b81548152906001019060200180831161122d57829003601f168201915b505050505081565b61125a611c6e565b8060119080519060200190611270929190612e24565b5050565b601060009054906101000a900460ff1681565b600a805461129490613fac565b80601f01602080910402602001604051908101604052809291908181526020018280546112c090613fac565b801561130d5780601f106112e25761010080835404028352916020019161130d565b820191906000526020600020905b8154815290600101906020018083116112f057829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156113be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b590613c18565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611438576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142f90613b58565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611487611c6e565b6114916000612118565b565b61149b611c6e565b80600a90805190602001906114b1929190612e24565b5050565b6114bd611c6e565b6114c6816121de565b50565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600f5481565b60606001805461150890613fac565b80601f016020809104026020016040519081016040528092919081815260200182805461153490613fac565b80156115815780601f1061155657610100808354040283529160200191611581565b820191906000526020600020905b81548152906001019060200180831161156457829003601f168201915b5050505050905090565b8060008111801561159e5750600f548111155b6115dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d490613ad8565b60405180910390fd5b600e54816115eb6009611cec565b6115f59190613de1565b1115611636576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162d90613c58565b60405180910390fd5b601060009054906101000a900460ff1615611686576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167d90613bf8565b60405180910390fd5b81600d546116949190613e68565b3410156116d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cd90613c98565b60405180910390fd5b6116e03383612232565b5050565b6116f66116ef611d5b565b8383612272565b5050565b600c805461170790613fac565b80601f016020809104026020016040519081016040528092919081815260200182805461173390613fac565b80156117805780601f1061175557610100808354040283529160200191611780565b820191906000526020600020905b81548152906001019060200180831161176357829003601f168201915b505050505081565b611790611c6e565b80600f8190555050565b6117ab6117a5611d5b565b83611e1c565b6117ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e190613c78565b60405180910390fd5b6117f6848484846123df565b50505050565b60136000611808611d5b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661188f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188690613a18565b60405180910390fd5b611898816121de565b50565b60606118a68261243b565b9050919050565b6118b5611c6e565b6118bf838361254e565b6118c9828261256c565b505050565b600e5481565b6118dc611c6e565b80601060016101000a81548160ff02191690831515021790555050565b611901611c6e565b600e54828290506119126009611cec565b61191c9190613de1565b111561195d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195490613a38565b60405180910390fd5b60005b828290508110156119c2576119756009611cfa565b6119af83838381811061198b5761198a614116565b5b90506020020160208101906119a091906130a6565b6119aa6009611cec565b61254e565b80806119ba9061400f565b915050611960565b505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b81600081118015611a6e5750600f548111155b611aad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa490613ad8565b60405180910390fd5b600e5481611abb6009611cec565b611ac59190613de1565b1115611b06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afd90613c58565b60405180910390fd5b611b0e611c6e565b611b188284612232565b505050565b611b25611c6e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8c90613a78565b60405180910390fd5b611b9e81612118565b50565b611ba9611c6e565b6001601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611c76611d5b565b73ffffffffffffffffffffffffffffffffffffffff16611c946114c9565b73ffffffffffffffffffffffffffffffffffffffff1614611cea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce190613bd8565b60405180910390fd5b565b600081600001549050919050565b6001816000016000828254019250508190555050565b611d19816125e8565b611d58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4f90613c18565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611dd683611315565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080611e2883611315565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611e6a5750611e6981856119c7565b5b80611ea857508373ffffffffffffffffffffffffffffffffffffffff16611e9084610dae565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611ed182611315565b73ffffffffffffffffffffffffffffffffffffffff1614611f27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1e90613a98565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8e90613b18565b60405180910390fd5b611fa2838383612654565b611fad600082611d63565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ffd9190613ec2565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120549190613de1565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612113838383612659565b505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6121e7816125e8565b612226576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221d90613af8565b60405180910390fd5b61222f8161265e565b50565b60005b8181101561226d576122476009611cfa565b61225a836122556009611cec565b61254e565b80806122659061400f565b915050612235565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156122e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d890613b38565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516123d291906139db565b60405180910390a3505050565b6123ea848484611eb1565b6123f68484848461266a565b612435576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242c90613a58565b60405180910390fd5b50505050565b606061244682611d10565b600060066000848152602001908152602001600020805461246690613fac565b80601f016020809104026020016040519081016040528092919081815260200182805461249290613fac565b80156124df5780601f106124b4576101008083540402835291602001916124df565b820191906000526020600020905b8154815290600101906020018083116124c257829003601f168201915b5050505050905060006124f0612801565b9050600081511415612506578192505050612549565b60008251111561253b578082604051602001612523929190613919565b60405160208183030381529060405292505050612549565b61254484612893565b925050505b919050565b6125688282604051806020016040528060008152506128fb565b5050565b612574611c6e565b61257d826125e8565b6125bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b390613bb8565b60405180910390fd5b806012600084815260200190815260200160002090805190602001906125e3929190612e24565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b505050565b505050565b61266781612956565b50565b600061268b8473ffffffffffffffffffffffffffffffffffffffff166129a9565b156127f4578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026126b4611d5b565b8786866040518563ffffffff1660e01b81526004016126d6949392919061396d565b602060405180830381600087803b1580156126f057600080fd5b505af192505050801561272157506040513d601f19601f8201168201806040525081019061271e91906133df565b60015b6127a4573d8060008114612751576040519150601f19603f3d011682016040523d82523d6000602084013e612756565b606091505b5060008151141561279c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279390613a58565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506127f9565b600190505b949350505050565b60606011805461281090613fac565b80601f016020809104026020016040519081016040528092919081815260200182805461283c90613fac565b80156128895780601f1061285e57610100808354040283529160200191612889565b820191906000526020600020905b81548152906001019060200180831161286c57829003601f168201915b5050505050905090565b606061289e82611d10565b60006128a8612801565b905060008151116128c857604051806020016040528060008152506128f3565b806128d2846129cc565b6040516020016128e3929190613919565b6040516020818303038152906040525b915050919050565b6129058383612b2d565b612912600084848461266a565b612951576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294890613a58565b60405180910390fd5b505050565b61295f81612d07565b600060066000838152602001908152602001600020805461297f90613fac565b9050146129a6576006600082815260200190815260200160002060006129a59190612eaa565b5b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60606000821415612a14576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b28565b600082905060005b60008214612a46578080612a2f9061400f565b915050600a82612a3f9190613e37565b9150612a1c565b60008167ffffffffffffffff811115612a6257612a61614145565b5b6040519080825280601f01601f191660200182016040528015612a945781602001600182028036833780820191505090505b5090505b60008514612b2157600182612aad9190613ec2565b9150600a85612abc9190614058565b6030612ac89190613de1565b60f81b818381518110612ade57612add614116565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612b1a9190613e37565b9450612a98565b8093505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9490613b98565b60405180910390fd5b612ba6816125e8565b15612be6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bdd90613ab8565b60405180910390fd5b612bf260008383612654565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c429190613de1565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d0360008383612659565b5050565b6000612d1282611315565b9050612d2081600084612654565b612d2b600083611d63565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d7b9190613ec2565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612e2081600084612659565b5050565b828054612e3090613fac565b90600052602060002090601f016020900481019282612e525760008555612e99565b82601f10612e6b57805160ff1916838001178555612e99565b82800160010185558215612e99579182015b82811115612e98578251825591602001919060010190612e7d565b5b509050612ea69190612eea565b5090565b508054612eb690613fac565b6000825580601f10612ec85750612ee7565b601f016020900490600052602060002090810190612ee69190612eea565b5b50565b5b80821115612f03576000816000905550600101612eeb565b5090565b6000612f1a612f1584613cf8565b613cd3565b905082815260208101848484011115612f3657612f35614183565b5b612f41848285613f6a565b509392505050565b6000612f5c612f5784613d29565b613cd3565b905082815260208101848484011115612f7857612f77614183565b5b612f83848285613f6a565b509392505050565b600081359050612f9a81614659565b92915050565b60008083601f840112612fb657612fb5614179565b5b8235905067ffffffffffffffff811115612fd357612fd2614174565b5b602083019150836020820283011115612fef57612fee61417e565b5b9250929050565b60008135905061300581614670565b92915050565b60008135905061301a81614687565b92915050565b60008151905061302f81614687565b92915050565b600082601f83011261304a57613049614179565b5b813561305a848260208601612f07565b91505092915050565b600082601f83011261307857613077614179565b5b8135613088848260208601612f49565b91505092915050565b6000813590506130a08161469e565b92915050565b6000602082840312156130bc576130bb61418d565b5b60006130ca84828501612f8b565b91505092915050565b600080604083850312156130ea576130e961418d565b5b60006130f885828601612f8b565b925050602061310985828601612f8b565b9150509250929050565b60008060006060848603121561312c5761312b61418d565b5b600061313a86828701612f8b565b935050602061314b86828701612f8b565b925050604061315c86828701613091565b9150509250925092565b600080600080608085870312156131805761317f61418d565b5b600061318e87828801612f8b565b945050602061319f87828801612f8b565b93505060406131b087828801613091565b925050606085013567ffffffffffffffff8111156131d1576131d0614188565b5b6131dd87828801613035565b91505092959194509250565b6000806000604084860312156132025761320161418d565b5b600061321086828701612f8b565b935050602084013567ffffffffffffffff81111561323157613230614188565b5b61323d86828701612fa0565b92509250509250925092565b600080604083850312156132605761325f61418d565b5b600061326e85828601612f8b565b925050602061327f85828601612ff6565b9150509250929050565b600080604083850312156132a05761329f61418d565b5b60006132ae85828601612f8b565b92505060206132bf85828601613091565b9150509250929050565b6000806000606084860312156132e2576132e161418d565b5b60006132f086828701612f8b565b935050602061330186828701613091565b925050604084013567ffffffffffffffff81111561332257613321614188565b5b61332e86828701613063565b9150509250925092565b6000806020838503121561334f5761334e61418d565b5b600083013567ffffffffffffffff81111561336d5761336c614188565b5b61337985828601612fa0565b92509250509250929050565b60006020828403121561339b5761339a61418d565b5b60006133a984828501612ff6565b91505092915050565b6000602082840312156133c8576133c761418d565b5b60006133d68482850161300b565b91505092915050565b6000602082840312156133f5576133f461418d565b5b600061340384828501613020565b91505092915050565b6000602082840312156134225761342161418d565b5b600082013567ffffffffffffffff8111156134405761343f614188565b5b61344c84828501613063565b91505092915050565b60006020828403121561346b5761346a61418d565b5b600061347984828501613091565b91505092915050565b600080604083850312156134995761349861418d565b5b60006134a785828601613091565b92505060206134b885828601612f8b565b9150509250929050565b60006134ce83836138fb565b60208301905092915050565b6134e381613ef6565b82525050565b60006134f482613d6a565b6134fe8185613d98565b935061350983613d5a565b8060005b8381101561353a57815161352188826134c2565b975061352c83613d8b565b92505060018101905061350d565b5085935050505092915050565b61355081613f08565b82525050565b600061356182613d75565b61356b8185613da9565b935061357b818560208601613f79565b61358481614192565b840191505092915050565b600061359a82613d80565b6135a48185613dc5565b93506135b4818560208601613f79565b6135bd81614192565b840191505092915050565b60006135d382613d80565b6135dd8185613dd6565b93506135ed818560208601613f79565b80840191505092915050565b6000613606600c83613dc5565b9150613611826141a3565b602082019050919050565b6000613629601383613dc5565b9150613634826141cc565b602082019050919050565b600061364c603283613dc5565b9150613657826141f5565b604082019050919050565b600061366f602683613dc5565b915061367a82614244565b604082019050919050565b6000613692602583613dc5565b915061369d82614293565b604082019050919050565b60006136b5601c83613dc5565b91506136c0826142e2565b602082019050919050565b60006136d8601483613dc5565b91506136e38261430b565b602082019050919050565b60006136fb602083613dc5565b915061370682614334565b602082019050919050565b600061371e602483613dc5565b91506137298261435d565b604082019050919050565b6000613741601983613dc5565b915061374c826143ac565b602082019050919050565b6000613764602983613dc5565b915061376f826143d5565b604082019050919050565b6000613787603e83613dc5565b915061379282614424565b604082019050919050565b60006137aa602083613dc5565b91506137b582614473565b602082019050919050565b60006137cd602c83613dc5565b91506137d88261449c565b604082019050919050565b60006137f0602083613dc5565b91506137fb826144eb565b602082019050919050565b6000613813601783613dc5565b915061381e82614514565b602082019050919050565b6000613836601883613dc5565b91506138418261453d565b602082019050919050565b6000613859602183613dc5565b915061386482614566565b604082019050919050565b600061387c600083613dba565b9150613887826145b5565b600082019050919050565b600061389f601483613dc5565b91506138aa826145b8565b602082019050919050565b60006138c2602e83613dc5565b91506138cd826145e1565b604082019050919050565b60006138e5601383613dc5565b91506138f082614630565b602082019050919050565b61390481613f60565b82525050565b61391381613f60565b82525050565b600061392582856135c8565b915061393182846135c8565b91508190509392505050565b60006139488261386f565b9150819050919050565b600060208201905061396760008301846134da565b92915050565b600060808201905061398260008301876134da565b61398f60208301866134da565b61399c604083018561390a565b81810360608301526139ae8184613556565b905095945050505050565b600060208201905081810360008301526139d381846134e9565b905092915050565b60006020820190506139f06000830184613547565b92915050565b60006020820190508181036000830152613a10818461358f565b905092915050565b60006020820190508181036000830152613a31816135f9565b9050919050565b60006020820190508181036000830152613a518161361c565b9050919050565b60006020820190508181036000830152613a718161363f565b9050919050565b60006020820190508181036000830152613a9181613662565b9050919050565b60006020820190508181036000830152613ab181613685565b9050919050565b60006020820190508181036000830152613ad1816136a8565b9050919050565b60006020820190508181036000830152613af1816136cb565b9050919050565b60006020820190508181036000830152613b11816136ee565b9050919050565b60006020820190508181036000830152613b3181613711565b9050919050565b60006020820190508181036000830152613b5181613734565b9050919050565b60006020820190508181036000830152613b7181613757565b9050919050565b60006020820190508181036000830152613b918161377a565b9050919050565b60006020820190508181036000830152613bb18161379d565b9050919050565b60006020820190508181036000830152613bd1816137c0565b9050919050565b60006020820190508181036000830152613bf1816137e3565b9050919050565b60006020820190508181036000830152613c1181613806565b9050919050565b60006020820190508181036000830152613c3181613829565b9050919050565b60006020820190508181036000830152613c518161384c565b9050919050565b60006020820190508181036000830152613c7181613892565b9050919050565b60006020820190508181036000830152613c91816138b5565b9050919050565b60006020820190508181036000830152613cb1816138d8565b9050919050565b6000602082019050613ccd600083018461390a565b92915050565b6000613cdd613cee565b9050613ce98282613fde565b919050565b6000604051905090565b600067ffffffffffffffff821115613d1357613d12614145565b5b613d1c82614192565b9050602081019050919050565b600067ffffffffffffffff821115613d4457613d43614145565b5b613d4d82614192565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613dec82613f60565b9150613df783613f60565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613e2c57613e2b614089565b5b828201905092915050565b6000613e4282613f60565b9150613e4d83613f60565b925082613e5d57613e5c6140b8565b5b828204905092915050565b6000613e7382613f60565b9150613e7e83613f60565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613eb757613eb6614089565b5b828202905092915050565b6000613ecd82613f60565b9150613ed883613f60565b925082821015613eeb57613eea614089565b5b828203905092915050565b6000613f0182613f40565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613f97578082015181840152602081019050613f7c565b83811115613fa6576000848401525b50505050565b60006002820490506001821680613fc457607f821691505b60208210811415613fd857613fd76140e7565b5b50919050565b613fe782614192565b810181811067ffffffffffffffff8211171561400657614005614145565b5b80604052505050565b600061401a82613f60565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561404d5761404c614089565b5b600182019050919050565b600061406382613f60565b915061406e83613f60565b92508261407e5761407d6140b8565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e6f742061204275726e65720000000000000000000000000000000000000000600082015250565b7f4d617820737570706c7920657863656564656400000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f546f6b656e20646f6573206e6f74206578697374206f72206973206275726e74600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732314d657461646174613a2055524920736574206f66206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b61466281613ef6565b811461466d57600080fd5b50565b61467981613f08565b811461468457600080fd5b50565b61469081613f14565b811461469b57600080fd5b50565b6146a781613f60565b81146146b257600080fd5b5056fea2646970667358221220449ec9d5a2ddeae3108d24aa0ab0f36e178fddb8e641c4f6f1a587ce697a311a64736f6c63430008070033

Deployed Bytecode

0x60806040526004361061025c5760003560e01c806370a0823111610144578063b88d4fde116100b6578063e0a808531161007a578063e0a80853146108ad578063e3d8bbe5146108d6578063e985e9c5146108ff578063efbd73f41461093c578063f2fde38b14610965578063f44637ba1461098e5761025c565b8063b88d4fde146107ca578063bb4fc100146107f3578063c87b56dd1461081c578063cd279c7c14610859578063d5abeb01146108825761025c565b806394354fd01161010857806394354fd0146106db57806395d89b4114610706578063a0712d6814610731578063a22cb4651461074d578063a45ba8e714610776578063b071401b146107a15761025c565b806370a082311461060a578063715018a6146106475780637ec4a6591461065e57806388451674146106875780638da5cb5b146106b05761025c565b806323b872dd116101dd57806351830227116101a157806351830227146104f85780635503a0e81461052357806355f804b31461054e5780635c975abb1461057757806362b99ad4146105a25780636352211e146105cd5761025c565b806323b872dd146104295780633ccfd60b1461045257806342842e0e14610469578063438b63001461049257806344a0d68a146104cf5761025c565b8063095ea7b311610224578063095ea7b31461035857806313faede61461038157806316ba10e0146103ac57806316c38b3c146103d557806318160ddd146103fe5761025c565b806301ffc9a714610261578063028468581461029e57806306fdde03146102c757806307e85cd3146102f2578063081812fc1461031b575b600080fd5b34801561026d57600080fd5b50610288600480360381019061028391906133b2565b6109b7565b60405161029591906139db565b60405180910390f35b3480156102aa57600080fd5b506102c560048036038101906102c091906130a6565b610a99565b005b3480156102d357600080fd5b506102dc610afc565b6040516102e991906139f6565b60405180910390f35b3480156102fe57600080fd5b50610319600480360381019061031491906131e9565b610b8e565b005b34801561032757600080fd5b50610342600480360381019061033d9190613455565b610dae565b60405161034f9190613952565b60405180910390f35b34801561036457600080fd5b5061037f600480360381019061037a9190613289565b610df4565b005b34801561038d57600080fd5b50610396610f0c565b6040516103a39190613cb8565b60405180910390f35b3480156103b857600080fd5b506103d360048036038101906103ce919061340c565b610f12565b005b3480156103e157600080fd5b506103fc60048036038101906103f79190613385565b610f34565b005b34801561040a57600080fd5b50610413610f59565b6040516104209190613cb8565b60405180910390f35b34801561043557600080fd5b50610450600480360381019061044b9190613113565b610f6a565b005b34801561045e57600080fd5b50610467610fca565b005b34801561047557600080fd5b50610490600480360381019061048b9190613113565b611052565b005b34801561049e57600080fd5b506104b960048036038101906104b491906130a6565b611072565b6040516104c691906139b9565b60405180910390f35b3480156104db57600080fd5b506104f660048036038101906104f19190613455565b61119f565b005b34801561050457600080fd5b5061050d6111b1565b60405161051a91906139db565b60405180910390f35b34801561052f57600080fd5b506105386111c4565b60405161054591906139f6565b60405180910390f35b34801561055a57600080fd5b506105756004803603810190610570919061340c565b611252565b005b34801561058357600080fd5b5061058c611274565b60405161059991906139db565b60405180910390f35b3480156105ae57600080fd5b506105b7611287565b6040516105c491906139f6565b60405180910390f35b3480156105d957600080fd5b506105f460048036038101906105ef9190613455565b611315565b6040516106019190613952565b60405180910390f35b34801561061657600080fd5b50610631600480360381019061062c91906130a6565b6113c7565b60405161063e9190613cb8565b60405180910390f35b34801561065357600080fd5b5061065c61147f565b005b34801561066a57600080fd5b506106856004803603810190610680919061340c565b611493565b005b34801561069357600080fd5b506106ae60048036038101906106a99190613455565b6114b5565b005b3480156106bc57600080fd5b506106c56114c9565b6040516106d29190613952565b60405180910390f35b3480156106e757600080fd5b506106f06114f3565b6040516106fd9190613cb8565b60405180910390f35b34801561071257600080fd5b5061071b6114f9565b60405161072891906139f6565b60405180910390f35b61074b60048036038101906107469190613455565b61158b565b005b34801561075957600080fd5b50610774600480360381019061076f9190613249565b6116e4565b005b34801561078257600080fd5b5061078b6116fa565b60405161079891906139f6565b60405180910390f35b3480156107ad57600080fd5b506107c860048036038101906107c39190613455565b611788565b005b3480156107d657600080fd5b506107f160048036038101906107ec9190613166565b61179a565b005b3480156107ff57600080fd5b5061081a60048036038101906108159190613455565b6117fc565b005b34801561082857600080fd5b50610843600480360381019061083e9190613455565b61189b565b60405161085091906139f6565b60405180910390f35b34801561086557600080fd5b50610880600480360381019061087b91906132c9565b6118ad565b005b34801561088e57600080fd5b506108976118ce565b6040516108a49190613cb8565b60405180910390f35b3480156108b957600080fd5b506108d460048036038101906108cf9190613385565b6118d4565b005b3480156108e257600080fd5b506108fd60048036038101906108f89190613338565b6118f9565b005b34801561090b57600080fd5b50610926600480360381019061092191906130d3565b6119c7565b60405161093391906139db565b60405180910390f35b34801561094857600080fd5b50610963600480360381019061095e9190613482565b611a5b565b005b34801561097157600080fd5b5061098c600480360381019061098791906130a6565b611b1d565b005b34801561099a57600080fd5b506109b560048036038101906109b091906130a6565b611ba1565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a8257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a925750610a9182611c04565b5b9050919050565b610aa1611c6e565b6000601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b606060008054610b0b90613fac565b80601f0160208091040260200160405190810160405280929190818152602001828054610b3790613fac565b8015610b845780601f10610b5957610100808354040283529160200191610b84565b820191906000526020600020905b815481529060010190602001808311610b6757829003601f168201915b5050505050905090565b610b96611c6e565b600e5482829050610ba76009611cec565b610bb19190613de1565b1115610bf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be990613a38565b60405180910390fd5b60005b82829050811015610da857610c0a6009611cfa565b600160036000858585818110610c2357610c22614116565b5b9050602002016020810190610c3891906130a6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610c819190613de1565b92505081905550828282818110610c9b57610c9a614116565b5b9050602002016020810190610cb091906130a6565b60026000610cbe6009611cec565b815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610d146009611cec565b838383818110610d2757610d26614116565b5b9050602002016020810190610d3c91906130a6565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48080610da09061400f565b915050610bf5565b50505050565b6000610db982611d10565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610dff82611315565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6790613c38565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e8f611d5b565b73ffffffffffffffffffffffffffffffffffffffff161480610ebe5750610ebd81610eb8611d5b565b6119c7565b5b610efd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef490613b78565b60405180910390fd5b610f078383611d63565b505050565b600d5481565b610f1a611c6e565b80600b9080519060200190610f30929190612e24565b5050565b610f3c611c6e565b80601060006101000a81548160ff02191690831515021790555050565b6000610f656009611cec565b905090565b610f7b610f75611d5b565b82611e1c565b610fba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb190613c78565b60405180910390fd5b610fc5838383611eb1565b505050565b610fd2611c6e565b6000610fdc6114c9565b73ffffffffffffffffffffffffffffffffffffffff1647604051610fff9061393d565b60006040518083038185875af1925050503d806000811461103c576040519150601f19603f3d011682016040523d82523d6000602084013e611041565b606091505b505090508061104f57600080fd5b50565b61106d8383836040518060200160405280600081525061179a565b505050565b6060600061107f836113c7565b905060008167ffffffffffffffff81111561109d5761109c614145565b5b6040519080825280602002602001820160405280156110cb5781602001602082028036833780820191505090505b50905060006001905060005b83811080156110e85750600e548211155b156111935760006110f883611315565b9050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561117f578284838151811061116457611163614116565b5b602002602001018181525050818061117b9061400f565b9250505b828061118a9061400f565b935050506110d7565b82945050505050919050565b6111a7611c6e565b80600d8190555050565b601060019054906101000a900460ff1681565b600b80546111d190613fac565b80601f01602080910402602001604051908101604052809291908181526020018280546111fd90613fac565b801561124a5780601f1061121f5761010080835404028352916020019161124a565b820191906000526020600020905b81548152906001019060200180831161122d57829003601f168201915b505050505081565b61125a611c6e565b8060119080519060200190611270929190612e24565b5050565b601060009054906101000a900460ff1681565b600a805461129490613fac565b80601f01602080910402602001604051908101604052809291908181526020018280546112c090613fac565b801561130d5780601f106112e25761010080835404028352916020019161130d565b820191906000526020600020905b8154815290600101906020018083116112f057829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156113be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b590613c18565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611438576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142f90613b58565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611487611c6e565b6114916000612118565b565b61149b611c6e565b80600a90805190602001906114b1929190612e24565b5050565b6114bd611c6e565b6114c6816121de565b50565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600f5481565b60606001805461150890613fac565b80601f016020809104026020016040519081016040528092919081815260200182805461153490613fac565b80156115815780601f1061155657610100808354040283529160200191611581565b820191906000526020600020905b81548152906001019060200180831161156457829003601f168201915b5050505050905090565b8060008111801561159e5750600f548111155b6115dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d490613ad8565b60405180910390fd5b600e54816115eb6009611cec565b6115f59190613de1565b1115611636576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162d90613c58565b60405180910390fd5b601060009054906101000a900460ff1615611686576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167d90613bf8565b60405180910390fd5b81600d546116949190613e68565b3410156116d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cd90613c98565b60405180910390fd5b6116e03383612232565b5050565b6116f66116ef611d5b565b8383612272565b5050565b600c805461170790613fac565b80601f016020809104026020016040519081016040528092919081815260200182805461173390613fac565b80156117805780601f1061175557610100808354040283529160200191611780565b820191906000526020600020905b81548152906001019060200180831161176357829003601f168201915b505050505081565b611790611c6e565b80600f8190555050565b6117ab6117a5611d5b565b83611e1c565b6117ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e190613c78565b60405180910390fd5b6117f6848484846123df565b50505050565b60136000611808611d5b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661188f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188690613a18565b60405180910390fd5b611898816121de565b50565b60606118a68261243b565b9050919050565b6118b5611c6e565b6118bf838361254e565b6118c9828261256c565b505050565b600e5481565b6118dc611c6e565b80601060016101000a81548160ff02191690831515021790555050565b611901611c6e565b600e54828290506119126009611cec565b61191c9190613de1565b111561195d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195490613a38565b60405180910390fd5b60005b828290508110156119c2576119756009611cfa565b6119af83838381811061198b5761198a614116565b5b90506020020160208101906119a091906130a6565b6119aa6009611cec565b61254e565b80806119ba9061400f565b915050611960565b505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b81600081118015611a6e5750600f548111155b611aad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa490613ad8565b60405180910390fd5b600e5481611abb6009611cec565b611ac59190613de1565b1115611b06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afd90613c58565b60405180910390fd5b611b0e611c6e565b611b188284612232565b505050565b611b25611c6e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8c90613a78565b60405180910390fd5b611b9e81612118565b50565b611ba9611c6e565b6001601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611c76611d5b565b73ffffffffffffffffffffffffffffffffffffffff16611c946114c9565b73ffffffffffffffffffffffffffffffffffffffff1614611cea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce190613bd8565b60405180910390fd5b565b600081600001549050919050565b6001816000016000828254019250508190555050565b611d19816125e8565b611d58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4f90613c18565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611dd683611315565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080611e2883611315565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611e6a5750611e6981856119c7565b5b80611ea857508373ffffffffffffffffffffffffffffffffffffffff16611e9084610dae565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611ed182611315565b73ffffffffffffffffffffffffffffffffffffffff1614611f27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1e90613a98565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8e90613b18565b60405180910390fd5b611fa2838383612654565b611fad600082611d63565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ffd9190613ec2565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120549190613de1565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612113838383612659565b505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6121e7816125e8565b612226576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221d90613af8565b60405180910390fd5b61222f8161265e565b50565b60005b8181101561226d576122476009611cfa565b61225a836122556009611cec565b61254e565b80806122659061400f565b915050612235565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156122e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d890613b38565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516123d291906139db565b60405180910390a3505050565b6123ea848484611eb1565b6123f68484848461266a565b612435576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242c90613a58565b60405180910390fd5b50505050565b606061244682611d10565b600060066000848152602001908152602001600020805461246690613fac565b80601f016020809104026020016040519081016040528092919081815260200182805461249290613fac565b80156124df5780601f106124b4576101008083540402835291602001916124df565b820191906000526020600020905b8154815290600101906020018083116124c257829003601f168201915b5050505050905060006124f0612801565b9050600081511415612506578192505050612549565b60008251111561253b578082604051602001612523929190613919565b60405160208183030381529060405292505050612549565b61254484612893565b925050505b919050565b6125688282604051806020016040528060008152506128fb565b5050565b612574611c6e565b61257d826125e8565b6125bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b390613bb8565b60405180910390fd5b806012600084815260200190815260200160002090805190602001906125e3929190612e24565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b505050565b505050565b61266781612956565b50565b600061268b8473ffffffffffffffffffffffffffffffffffffffff166129a9565b156127f4578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026126b4611d5b565b8786866040518563ffffffff1660e01b81526004016126d6949392919061396d565b602060405180830381600087803b1580156126f057600080fd5b505af192505050801561272157506040513d601f19601f8201168201806040525081019061271e91906133df565b60015b6127a4573d8060008114612751576040519150601f19603f3d011682016040523d82523d6000602084013e612756565b606091505b5060008151141561279c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279390613a58565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506127f9565b600190505b949350505050565b60606011805461281090613fac565b80601f016020809104026020016040519081016040528092919081815260200182805461283c90613fac565b80156128895780601f1061285e57610100808354040283529160200191612889565b820191906000526020600020905b81548152906001019060200180831161286c57829003601f168201915b5050505050905090565b606061289e82611d10565b60006128a8612801565b905060008151116128c857604051806020016040528060008152506128f3565b806128d2846129cc565b6040516020016128e3929190613919565b6040516020818303038152906040525b915050919050565b6129058383612b2d565b612912600084848461266a565b612951576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294890613a58565b60405180910390fd5b505050565b61295f81612d07565b600060066000838152602001908152602001600020805461297f90613fac565b9050146129a6576006600082815260200190815260200160002060006129a59190612eaa565b5b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60606000821415612a14576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b28565b600082905060005b60008214612a46578080612a2f9061400f565b915050600a82612a3f9190613e37565b9150612a1c565b60008167ffffffffffffffff811115612a6257612a61614145565b5b6040519080825280601f01601f191660200182016040528015612a945781602001600182028036833780820191505090505b5090505b60008514612b2157600182612aad9190613ec2565b9150600a85612abc9190614058565b6030612ac89190613de1565b60f81b818381518110612ade57612add614116565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612b1a9190613e37565b9450612a98565b8093505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9490613b98565b60405180910390fd5b612ba6816125e8565b15612be6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bdd90613ab8565b60405180910390fd5b612bf260008383612654565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c429190613de1565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d0360008383612659565b5050565b6000612d1282611315565b9050612d2081600084612654565b612d2b600083611d63565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d7b9190613ec2565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612e2081600084612659565b5050565b828054612e3090613fac565b90600052602060002090601f016020900481019282612e525760008555612e99565b82601f10612e6b57805160ff1916838001178555612e99565b82800160010185558215612e99579182015b82811115612e98578251825591602001919060010190612e7d565b5b509050612ea69190612eea565b5090565b508054612eb690613fac565b6000825580601f10612ec85750612ee7565b601f016020900490600052602060002090810190612ee69190612eea565b5b50565b5b80821115612f03576000816000905550600101612eeb565b5090565b6000612f1a612f1584613cf8565b613cd3565b905082815260208101848484011115612f3657612f35614183565b5b612f41848285613f6a565b509392505050565b6000612f5c612f5784613d29565b613cd3565b905082815260208101848484011115612f7857612f77614183565b5b612f83848285613f6a565b509392505050565b600081359050612f9a81614659565b92915050565b60008083601f840112612fb657612fb5614179565b5b8235905067ffffffffffffffff811115612fd357612fd2614174565b5b602083019150836020820283011115612fef57612fee61417e565b5b9250929050565b60008135905061300581614670565b92915050565b60008135905061301a81614687565b92915050565b60008151905061302f81614687565b92915050565b600082601f83011261304a57613049614179565b5b813561305a848260208601612f07565b91505092915050565b600082601f83011261307857613077614179565b5b8135613088848260208601612f49565b91505092915050565b6000813590506130a08161469e565b92915050565b6000602082840312156130bc576130bb61418d565b5b60006130ca84828501612f8b565b91505092915050565b600080604083850312156130ea576130e961418d565b5b60006130f885828601612f8b565b925050602061310985828601612f8b565b9150509250929050565b60008060006060848603121561312c5761312b61418d565b5b600061313a86828701612f8b565b935050602061314b86828701612f8b565b925050604061315c86828701613091565b9150509250925092565b600080600080608085870312156131805761317f61418d565b5b600061318e87828801612f8b565b945050602061319f87828801612f8b565b93505060406131b087828801613091565b925050606085013567ffffffffffffffff8111156131d1576131d0614188565b5b6131dd87828801613035565b91505092959194509250565b6000806000604084860312156132025761320161418d565b5b600061321086828701612f8b565b935050602084013567ffffffffffffffff81111561323157613230614188565b5b61323d86828701612fa0565b92509250509250925092565b600080604083850312156132605761325f61418d565b5b600061326e85828601612f8b565b925050602061327f85828601612ff6565b9150509250929050565b600080604083850312156132a05761329f61418d565b5b60006132ae85828601612f8b565b92505060206132bf85828601613091565b9150509250929050565b6000806000606084860312156132e2576132e161418d565b5b60006132f086828701612f8b565b935050602061330186828701613091565b925050604084013567ffffffffffffffff81111561332257613321614188565b5b61332e86828701613063565b9150509250925092565b6000806020838503121561334f5761334e61418d565b5b600083013567ffffffffffffffff81111561336d5761336c614188565b5b61337985828601612fa0565b92509250509250929050565b60006020828403121561339b5761339a61418d565b5b60006133a984828501612ff6565b91505092915050565b6000602082840312156133c8576133c761418d565b5b60006133d68482850161300b565b91505092915050565b6000602082840312156133f5576133f461418d565b5b600061340384828501613020565b91505092915050565b6000602082840312156134225761342161418d565b5b600082013567ffffffffffffffff8111156134405761343f614188565b5b61344c84828501613063565b91505092915050565b60006020828403121561346b5761346a61418d565b5b600061347984828501613091565b91505092915050565b600080604083850312156134995761349861418d565b5b60006134a785828601613091565b92505060206134b885828601612f8b565b9150509250929050565b60006134ce83836138fb565b60208301905092915050565b6134e381613ef6565b82525050565b60006134f482613d6a565b6134fe8185613d98565b935061350983613d5a565b8060005b8381101561353a57815161352188826134c2565b975061352c83613d8b565b92505060018101905061350d565b5085935050505092915050565b61355081613f08565b82525050565b600061356182613d75565b61356b8185613da9565b935061357b818560208601613f79565b61358481614192565b840191505092915050565b600061359a82613d80565b6135a48185613dc5565b93506135b4818560208601613f79565b6135bd81614192565b840191505092915050565b60006135d382613d80565b6135dd8185613dd6565b93506135ed818560208601613f79565b80840191505092915050565b6000613606600c83613dc5565b9150613611826141a3565b602082019050919050565b6000613629601383613dc5565b9150613634826141cc565b602082019050919050565b600061364c603283613dc5565b9150613657826141f5565b604082019050919050565b600061366f602683613dc5565b915061367a82614244565b604082019050919050565b6000613692602583613dc5565b915061369d82614293565b604082019050919050565b60006136b5601c83613dc5565b91506136c0826142e2565b602082019050919050565b60006136d8601483613dc5565b91506136e38261430b565b602082019050919050565b60006136fb602083613dc5565b915061370682614334565b602082019050919050565b600061371e602483613dc5565b91506137298261435d565b604082019050919050565b6000613741601983613dc5565b915061374c826143ac565b602082019050919050565b6000613764602983613dc5565b915061376f826143d5565b604082019050919050565b6000613787603e83613dc5565b915061379282614424565b604082019050919050565b60006137aa602083613dc5565b91506137b582614473565b602082019050919050565b60006137cd602c83613dc5565b91506137d88261449c565b604082019050919050565b60006137f0602083613dc5565b91506137fb826144eb565b602082019050919050565b6000613813601783613dc5565b915061381e82614514565b602082019050919050565b6000613836601883613dc5565b91506138418261453d565b602082019050919050565b6000613859602183613dc5565b915061386482614566565b604082019050919050565b600061387c600083613dba565b9150613887826145b5565b600082019050919050565b600061389f601483613dc5565b91506138aa826145b8565b602082019050919050565b60006138c2602e83613dc5565b91506138cd826145e1565b604082019050919050565b60006138e5601383613dc5565b91506138f082614630565b602082019050919050565b61390481613f60565b82525050565b61391381613f60565b82525050565b600061392582856135c8565b915061393182846135c8565b91508190509392505050565b60006139488261386f565b9150819050919050565b600060208201905061396760008301846134da565b92915050565b600060808201905061398260008301876134da565b61398f60208301866134da565b61399c604083018561390a565b81810360608301526139ae8184613556565b905095945050505050565b600060208201905081810360008301526139d381846134e9565b905092915050565b60006020820190506139f06000830184613547565b92915050565b60006020820190508181036000830152613a10818461358f565b905092915050565b60006020820190508181036000830152613a31816135f9565b9050919050565b60006020820190508181036000830152613a518161361c565b9050919050565b60006020820190508181036000830152613a718161363f565b9050919050565b60006020820190508181036000830152613a9181613662565b9050919050565b60006020820190508181036000830152613ab181613685565b9050919050565b60006020820190508181036000830152613ad1816136a8565b9050919050565b60006020820190508181036000830152613af1816136cb565b9050919050565b60006020820190508181036000830152613b11816136ee565b9050919050565b60006020820190508181036000830152613b3181613711565b9050919050565b60006020820190508181036000830152613b5181613734565b9050919050565b60006020820190508181036000830152613b7181613757565b9050919050565b60006020820190508181036000830152613b918161377a565b9050919050565b60006020820190508181036000830152613bb18161379d565b9050919050565b60006020820190508181036000830152613bd1816137c0565b9050919050565b60006020820190508181036000830152613bf1816137e3565b9050919050565b60006020820190508181036000830152613c1181613806565b9050919050565b60006020820190508181036000830152613c3181613829565b9050919050565b60006020820190508181036000830152613c518161384c565b9050919050565b60006020820190508181036000830152613c7181613892565b9050919050565b60006020820190508181036000830152613c91816138b5565b9050919050565b60006020820190508181036000830152613cb1816138d8565b9050919050565b6000602082019050613ccd600083018461390a565b92915050565b6000613cdd613cee565b9050613ce98282613fde565b919050565b6000604051905090565b600067ffffffffffffffff821115613d1357613d12614145565b5b613d1c82614192565b9050602081019050919050565b600067ffffffffffffffff821115613d4457613d43614145565b5b613d4d82614192565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613dec82613f60565b9150613df783613f60565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613e2c57613e2b614089565b5b828201905092915050565b6000613e4282613f60565b9150613e4d83613f60565b925082613e5d57613e5c6140b8565b5b828204905092915050565b6000613e7382613f60565b9150613e7e83613f60565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613eb757613eb6614089565b5b828202905092915050565b6000613ecd82613f60565b9150613ed883613f60565b925082821015613eeb57613eea614089565b5b828203905092915050565b6000613f0182613f40565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613f97578082015181840152602081019050613f7c565b83811115613fa6576000848401525b50505050565b60006002820490506001821680613fc457607f821691505b60208210811415613fd857613fd76140e7565b5b50919050565b613fe782614192565b810181811067ffffffffffffffff8211171561400657614005614145565b5b80604052505050565b600061401a82613f60565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561404d5761404c614089565b5b600182019050919050565b600061406382613f60565b915061406e83613f60565b92508261407e5761407d6140b8565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e6f742061204275726e65720000000000000000000000000000000000000000600082015250565b7f4d617820737570706c7920657863656564656400000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f546f6b656e20646f6573206e6f74206578697374206f72206973206275726e74600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732314d657461646174613a2055524920736574206f66206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b61466281613ef6565b811461466d57600080fd5b50565b61467981613f08565b811461468457600080fd5b50565b61469081613f14565b811461469b57600080fd5b50565b6146a781613f60565b81146146b257600080fd5b5056fea2646970667358221220449ec9d5a2ddeae3108d24aa0ab0f36e178fddb8e641c4f6f1a587ce697a311a64736f6c63430008070033

Deployed Bytecode Sourcemap

41702:6297:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26467:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43685:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27394:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45697:507;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28907:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28424:417;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42021:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47523:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42719:83;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42908:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29607:336;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46913:488;;;;;;;;;;;;;:::i;:::-;;30014:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46212:693;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44261:80;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42176:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41937:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47639:111;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42144:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41902:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27105:222;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26836:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6821:103;;;;;;;;;;;;;:::i;:::-;;47409:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43890:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6173:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42098:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27563:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43128:261;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29150:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41977:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44349:136;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30270:323;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43994:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44702:196;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43401:184;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42059:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42810:87;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45311:378;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29376:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44906:161;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7079:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43593:84;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26467:305;26569:4;26621:25;26606:40;;;:11;:40;;;;:105;;;;26678:33;26663:48;;;:11;:48;;;;26606:105;:158;;;;26728:36;26752:11;26728:23;:36::i;:::-;26606:158;26586:178;;26467:305;;;:::o;43685:88::-;6059:13;:11;:13::i;:::-;43760:5:::1;43746:8;:11;43755:1;43746:11;;;;;;;;;;;;;;;;:19;;;;;;;;;;;;;;;;;;43685:88:::0;:::o;27394:100::-;27448:13;27481:5;27474:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27394:100;:::o;45697:507::-;6059:13;:11;:13::i;:::-;45838:9:::1;;45817:10;;:17;;45798:16;:6;:14;:16::i;:::-;:36;;;;:::i;:::-;:49;;45790:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;45941:9;45937:260;45960:10;;:17;;45956:1;:21;45937:260;;;46000:18;:6;:16;:18::i;:::-;46061:1;46033:9;:24;46043:10;;46054:1;46043:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;46033:24;;;;;;;;;;;;;;;;:29;;;;;;;:::i;:::-;;;;;;;;46105:10;;46116:1;46105:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;46077:7;:25;46085:16;:6;:14;:16::i;:::-;46077:25;;;;;;;;;;;;:41;;;;;;;;;;;;;;;;;;46168:16;:6;:14;:16::i;:::-;46153:10;;46164:1;46153:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;46138:47;;46147:4;46138:47;;;;;;;;;;;;45979:3;;;;;:::i;:::-;;;;45937:260;;;;45697:507:::0;;;:::o;28907:171::-;28983:7;29003:23;29018:7;29003:14;:23::i;:::-;29046:15;:24;29062:7;29046:24;;;;;;;;;;;;;;;;;;;;;29039:31;;28907:171;;;:::o;28424:417::-;28505:13;28521:23;28536:7;28521:14;:23::i;:::-;28505:39;;28569:5;28563:11;;:2;:11;;;;28555:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;28663:5;28647:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;28672:37;28689:5;28696:12;:10;:12::i;:::-;28672:16;:37::i;:::-;28647:62;28625:174;;;;;;;;;;;;:::i;:::-;;;;;;;;;28812:21;28821:2;28825:7;28812:8;:21::i;:::-;28494:347;28424:417;;:::o;42021:31::-;;;;:::o;47523:106::-;6059:13;:11;:13::i;:::-;47611:10:::1;47599:9;:22;;;;;;;;;;;;:::i;:::-;;47523:106:::0;:::o;42719:83::-;6059:13;:11;:13::i;:::-;42788:6:::1;42779;;:15;;;;;;;;;;;;;;;;;;42719:83:::0;:::o;42908:95::-;42952:7;42979:16;:6;:14;:16::i;:::-;42972:23;;42908:95;:::o;29607:336::-;29802:41;29821:12;:10;:12::i;:::-;29835:7;29802:18;:41::i;:::-;29794:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;29907:28;29917:4;29923:2;29927:7;29907:9;:28::i;:::-;29607:336;;;:::o;46913:488::-;6059:13;:11;:13::i;:::-;47213:7:::1;47234;:5;:7::i;:::-;47226:21;;47255;47226:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47212:69;;;47300:2;47292:11;;;::::0;::::1;;46950:451;46913:488::o:0;30014:185::-;30152:39;30169:4;30175:2;30179:7;30152:39;;;;;;;;;;;;:16;:39::i;:::-;30014:185;;;:::o;46212:693::-;46298:16;46332:23;46358:16;46368:5;46358:9;:16::i;:::-;46332:42;;46385:30;46432:15;46418:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46385:63;;46459:22;46484:1;46459:26;;46496:23;46536:329;46561:15;46543;:33;:64;;;;;46598:9;;46580:14;:27;;46543:64;46536:329;;;46620:25;46648:23;46656:14;46648:7;:23::i;:::-;46620:51;;46709:6;;;;;;;;;;;46688:27;;:17;:27;;;46684:141;;;46765:14;46732:13;46746:15;46732:30;;;;;;;;:::i;:::-;;;;;;;:47;;;;;46796:17;;;;;:::i;:::-;;;;46684:141;46837:16;;;;;:::i;:::-;;;;46609:256;46536:329;;;46884:13;46877:20;;;;;;46212:693;;;:::o;44261:80::-;6059:13;:11;:13::i;:::-;44328:5:::1;44321:4;:12;;;;44261:80:::0;:::o;42176:28::-;;;;;;;;;;;;;:::o;41937:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;47639:111::-;6059:13;:11;:13::i;:::-;47734:8:::1;47715:16;:27;;;;;;;;;;;;:::i;:::-;;47639:111:::0;:::o;42144:25::-;;;;;;;;;;;;;:::o;41902:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27105:222::-;27177:7;27197:13;27213:7;:16;27221:7;27213:16;;;;;;;;;;;;;;;;;;;;;27197:32;;27265:1;27248:19;;:5;:19;;;;27240:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;27314:5;27307:12;;;27105:222;;;:::o;26836:207::-;26908:7;26953:1;26936:19;;:5;:19;;;;26928:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27019:9;:16;27029:5;27019:16;;;;;;;;;;;;;;;;27012:23;;26836:207;;;:::o;6821:103::-;6059:13;:11;:13::i;:::-;6886:30:::1;6913:1;6886:18;:30::i;:::-;6821:103::o:0;47409:106::-;6059:13;:11;:13::i;:::-;47497:10:::1;47485:9;:22;;;;;;;;;;;;:::i;:::-;;47409:106:::0;:::o;43890:96::-;6059:13;:11;:13::i;:::-;43959:19:::1;43970:7;43959:10;:19::i;:::-;43890:96:::0;:::o;6173:87::-;6219:7;6246:6;;;;;;;;;;;6239:13;;6173:87;:::o;42098:37::-;;;;:::o;27563:104::-;27619:13;27652:7;27645:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27563:104;:::o;43128:261::-;43193:11;42532:1;42518:11;:15;:52;;;;;42552:18;;42537:11;:33;;42518:52;42510:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;42648:9;;42633:11;42614:16;:6;:14;:16::i;:::-;:30;;;;:::i;:::-;:43;;42606:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;43226:6:::1;;;;;;;;;;;43225:7;43217:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;43299:11;43292:4;;:18;;;;:::i;:::-;43279:9;:31;;43271:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;43347:34;43357:10;43369:11;43347:9;:34::i;:::-;43128:261:::0;;:::o;29150:155::-;29245:52;29264:12;:10;:12::i;:::-;29278:8;29288;29245:18;:52::i;:::-;29150:155;;:::o;41977:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;44349:136::-;6059:13;:11;:13::i;:::-;44458:19:::1;44437:18;:40;;;;44349:136:::0;:::o;30270:323::-;30444:41;30463:12;:10;:12::i;:::-;30477:7;30444:18;:41::i;:::-;30436:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;30547:38;30561:4;30567:2;30571:7;30580:4;30547:13;:38::i;:::-;30270:323;;;;:::o;43994:100::-;43823:8;:22;43832:12;:10;:12::i;:::-;43823:22;;;;;;;;;;;;;;;;;;;;;;;;;43815:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;44067:19:::1;44078:7;44067:10;:19::i;:::-;43994:100:::0;:::o;44702:196::-;44829:13;44867:23;44882:7;44867:14;:23::i;:::-;44860:30;;44702:196;;;:::o;43401:184::-;6059:13;:11;:13::i;:::-;43518:22:::1;43528:2;43532:7;43518:9;:22::i;:::-;43551:26;43564:7;43573:3;43551:12;:26::i;:::-;43401:184:::0;;;:::o;42059:32::-;;;;:::o;42810:87::-;6059:13;:11;:13::i;:::-;42883:6:::1;42872:8;;:17;;;;;;;;;;;;;;;;;;42810:87:::0;:::o;45311:378::-;6059:13;:11;:13::i;:::-;45438:9:::1;;45417:10;;:17;;45398:16;:6;:14;:16::i;:::-;:36;;;;:::i;:::-;:49;;45390:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;45537:9;45532:150;45556:10;;:17;;45552:1;:21;45532:150;;;45595:18;:6;:16;:18::i;:::-;45628:42;45638:10;;45649:1;45638:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;45653:16;:6;:14;:16::i;:::-;45628:9;:42::i;:::-;45575:3;;;;;:::i;:::-;;;;45532:150;;;;45311:378:::0;;:::o;29376:164::-;29473:4;29497:18;:25;29516:5;29497:25;;;;;;;;;;;;;;;:35;29523:8;29497:35;;;;;;;;;;;;;;;;;;;;;;;;;29490:42;;29376:164;;;;:::o;44906:161::-;44992:11;42532:1;42518:11;:15;:52;;;;;42552:18;;42537:11;:33;;42518:52;42510:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;42648:9;;42633:11;42614:16;:6;:14;:16::i;:::-;:30;;;;:::i;:::-;:43;;42606:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;6059:13:::1;:11;:13::i;:::-;45026:33:::2;45036:9;45047:11;45026:9;:33::i;:::-;44906:161:::0;;;:::o;7079:201::-;6059:13;:11;:13::i;:::-;7188:1:::1;7168:22;;:8;:22;;;;7160:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7244:28;7263:8;7244:18;:28::i;:::-;7079:201:::0;:::o;43593:84::-;6059:13;:11;:13::i;:::-;43665:4:::1;43651:8;:11;43660:1;43651:11;;;;;;;;;;;;;;;;:18;;;;;;;;;;;;;;;;;;43593:84:::0;:::o;19079:157::-;19164:4;19203:25;19188:40;;;:11;:40;;;;19181:47;;19079:157;;;:::o;6338:132::-;6413:12;:10;:12::i;:::-;6402:23;;:7;:5;:7::i;:::-;:23;;;6394:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6338:132::o;915:114::-;980:7;1007;:14;;;1000:21;;915:114;;;:::o;1037:127::-;1144:1;1126:7;:14;;;:19;;;;;;;;;;;1037:127;:::o;36882:135::-;36964:16;36972:7;36964;:16::i;:::-;36956:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;36882:135;:::o;4710:98::-;4763:7;4790:10;4783:17;;4710:98;:::o;36161:174::-;36263:2;36236:15;:24;36252:7;36236:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;36319:7;36315:2;36281:46;;36290:23;36305:7;36290:14;:23::i;:::-;36281:46;;;;;;;;;;;;36161:174;;:::o;32394:264::-;32487:4;32504:13;32520:23;32535:7;32520:14;:23::i;:::-;32504:39;;32573:5;32562:16;;:7;:16;;;:52;;;;32582:32;32599:5;32606:7;32582:16;:32::i;:::-;32562:52;:87;;;;32642:7;32618:31;;:20;32630:7;32618:11;:20::i;:::-;:31;;;32562:87;32554:96;;;32394:264;;;;:::o;35417:625::-;35576:4;35549:31;;:23;35564:7;35549:14;:23::i;:::-;:31;;;35541:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;35655:1;35641:16;;:2;:16;;;;35633:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;35711:39;35732:4;35738:2;35742:7;35711:20;:39::i;:::-;35815:29;35832:1;35836:7;35815:8;:29::i;:::-;35876:1;35857:9;:15;35867:4;35857:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;35905:1;35888:9;:13;35898:2;35888:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;35936:2;35917:7;:16;35925:7;35917:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;35975:7;35971:2;35956:27;;35965:4;35956:27;;;;;;;;;;;;35996:38;36016:4;36022:2;36026:7;35996:19;:38::i;:::-;35417:625;;;:::o;7440:191::-;7514:16;7533:6;;;;;;;;;;;7514:25;;7559:8;7550:6;;:17;;;;;;;;;;;;;;;;;;7614:8;7583:40;;7604:8;7583:40;;;;;;;;;;;;7503:128;7440:191;:::o;44102:151::-;44167:16;44175:7;44167;:16::i;:::-;44159:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;44231:14;44237:7;44231:5;:14::i;:::-;44102:151;:::o;45077:226::-;45161:9;45156:140;45180:11;45176:1;:15;45156:140;;;45213:18;:6;:16;:18::i;:::-;45246:38;45256:9;45267:16;:6;:14;:16::i;:::-;45246:9;:38::i;:::-;45193:3;;;;;:::i;:::-;;;;45156:140;;;;45077:226;;:::o;36478:315::-;36633:8;36624:17;;:5;:17;;;;36616:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;36720:8;36682:18;:25;36701:5;36682:25;;;;;;;;;;;;;;;:35;36708:8;36682:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;36766:8;36744:41;;36759:5;36744:41;;;36776:8;36744:41;;;;;;:::i;:::-;;;;;;;;36478:315;;;:::o;31474:313::-;31630:28;31640:4;31646:2;31650:7;31630:9;:28::i;:::-;31677:47;31700:4;31706:2;31710:7;31719:4;31677:22;:47::i;:::-;31669:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;31474:313;;;;:::o;40189:624::-;40262:13;40288:23;40303:7;40288:14;:23::i;:::-;40324;40350:10;:19;40361:7;40350:19;;;;;;;;;;;40324:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40380:18;40401:10;:8;:10::i;:::-;40380:31;;40509:1;40493:4;40487:18;:23;40483:72;;;40534:9;40527:16;;;;;;40483:72;40685:1;40665:9;40659:23;:27;40655:108;;;40734:4;40740:9;40717:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;40703:48;;;;;;40655:108;40782:23;40797:7;40782:14;:23::i;:::-;40775:30;;;;40189:624;;;;:::o;33000:110::-;33076:26;33086:2;33090:7;33076:26;;;;;;;;;;;;:9;:26::i;:::-;33000:110;;:::o;47762:234::-;6059:13;:11;:13::i;:::-;47881:16:::1;47889:7;47881;:16::i;:::-;47873:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;47979:9;47957:10;:19;47968:7;47957:19;;;;;;;;;;;:31;;;;;;;;;;;;:::i;:::-;;47762:234:::0;;:::o;32100:127::-;32165:4;32217:1;32189:30;;:7;:16;32197:7;32189:16;;;;;;;;;;;;;;;;;;;;;:30;;;;32182:37;;32100:127;;;:::o;39006:126::-;;;;:::o;39517:125::-;;;;:::o;44577:117::-;44666:20;44678:7;44666:11;:20::i;:::-;44577:117;:::o;37581:853::-;37735:4;37756:15;:2;:13;;;:15::i;:::-;37752:675;;;37808:2;37792:36;;;37829:12;:10;:12::i;:::-;37843:4;37849:7;37858:4;37792:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;37788:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38050:1;38033:6;:13;:18;38029:328;;;38076:60;;;;;;;;;;:::i;:::-;;;;;;;;38029:328;38307:6;38301:13;38292:6;38288:2;38284:15;38277:38;37788:584;37924:41;;;37914:51;;;:6;:51;;;;37907:58;;;;;37752:675;38411:4;38404:11;;37581:853;;;;;;;:::o;43011:109::-;43063:13;43096:16;43089:23;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43011:109;:::o;27738:281::-;27811:13;27837:23;27852:7;27837:14;:23::i;:::-;27873:21;27897:10;:8;:10::i;:::-;27873:34;;27949:1;27931:7;27925:21;:25;:86;;;;;;;;;;;;;;;;;27977:7;27986:18;:7;:16;:18::i;:::-;27960:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;27925:86;27918:93;;;27738:281;;;:::o;33337:319::-;33466:18;33472:2;33476:7;33466:5;:18::i;:::-;33517:53;33548:1;33552:2;33556:7;33565:4;33517:22;:53::i;:::-;33495:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;33337:319;;;:::o;41411:206::-;41480:20;41492:7;41480:11;:20::i;:::-;41554:1;41523:10;:19;41534:7;41523:19;;;;;;;;;;;41517:33;;;;;:::i;:::-;;;:38;41513:97;;41579:10;:19;41590:7;41579:19;;;;;;;;;;;;41572:26;;;;:::i;:::-;41513:97;41411:206;:::o;8885:326::-;8945:4;9202:1;9180:7;:19;;;:23;9173:30;;8885:326;;;:::o;1950:723::-;2006:13;2236:1;2227:5;:10;2223:53;;;2254:10;;;;;;;;;;;;;;;;;;;;;2223:53;2286:12;2301:5;2286:20;;2317:14;2342:78;2357:1;2349:4;:9;2342:78;;2375:8;;;;;:::i;:::-;;;;2406:2;2398:10;;;;;:::i;:::-;;;2342:78;;;2430:19;2462:6;2452:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2430:39;;2480:154;2496:1;2487:5;:10;2480:154;;2524:1;2514:11;;;;;:::i;:::-;;;2591:2;2583:5;:10;;;;:::i;:::-;2570:2;:24;;;;:::i;:::-;2557:39;;2540:6;2547;2540:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;2620:2;2611:11;;;;;:::i;:::-;;;2480:154;;;2658:6;2644:21;;;;;1950:723;;;;:::o;33992:439::-;34086:1;34072:16;;:2;:16;;;;34064:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;34145:16;34153:7;34145;:16::i;:::-;34144:17;34136:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;34207:45;34236:1;34240:2;34244:7;34207:20;:45::i;:::-;34282:1;34265:9;:13;34275:2;34265:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;34313:2;34294:7;:16;34302:7;34294:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;34358:7;34354:2;34333:33;;34350:1;34333:33;;;;;;;;;;;;34379:44;34407:1;34411:2;34415:7;34379:19;:44::i;:::-;33992:439;;:::o;34660:420::-;34720:13;34736:23;34751:7;34736:14;:23::i;:::-;34720:39;;34772:48;34793:5;34808:1;34812:7;34772:20;:48::i;:::-;34861:29;34878:1;34882:7;34861:8;:29::i;:::-;34923:1;34903:9;:16;34913:5;34903:16;;;;;;;;;;;;;;;;:21;;;;;;;:::i;:::-;;;;;;;;34942:7;:16;34950:7;34942:16;;;;;;;;;;;;34935:23;;;;;;;;;;;35004:7;35000:1;34976:36;;34985:5;34976:36;;;;;;;;;;;;35025:47;35045:5;35060:1;35064:7;35025:19;:47::i;:::-;34709:371;34660:420;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::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;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:122;;1144:79;;:::i;:::-;1103:122;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:117;;;1309:79;;:::i;:::-;1273:117;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:128;;;1484:79;;:::i;:::-;1437:128;1003:568;;;;;:::o;1577:133::-;1620:5;1658:6;1645:20;1636:29;;1674:30;1698:5;1674:30;:::i;:::-;1577:133;;;;:::o;1716:137::-;1761:5;1799:6;1786:20;1777:29;;1815:32;1841:5;1815:32;:::i;:::-;1716:137;;;;:::o;1859:141::-;1915:5;1946:6;1940:13;1931:22;;1962:32;1988:5;1962:32;:::i;:::-;1859:141;;;;:::o;2019:338::-;2074:5;2123:3;2116:4;2108:6;2104:17;2100:27;2090:122;;2131:79;;:::i;:::-;2090:122;2248:6;2235:20;2273:78;2347:3;2339:6;2332:4;2324:6;2320:17;2273:78;:::i;:::-;2264:87;;2080:277;2019:338;;;;:::o;2377:340::-;2433:5;2482:3;2475:4;2467:6;2463:17;2459:27;2449:122;;2490:79;;:::i;:::-;2449:122;2607:6;2594:20;2632:79;2707:3;2699:6;2692:4;2684:6;2680:17;2632:79;:::i;:::-;2623:88;;2439:278;2377:340;;;;:::o;2723:139::-;2769:5;2807:6;2794:20;2785:29;;2823:33;2850:5;2823:33;:::i;:::-;2723:139;;;;:::o;2868:329::-;2927:6;2976:2;2964:9;2955:7;2951:23;2947:32;2944:119;;;2982:79;;:::i;:::-;2944:119;3102:1;3127:53;3172:7;3163:6;3152:9;3148:22;3127:53;:::i;:::-;3117:63;;3073:117;2868:329;;;;:::o;3203:474::-;3271:6;3279;3328:2;3316:9;3307:7;3303:23;3299:32;3296:119;;;3334:79;;:::i;:::-;3296:119;3454:1;3479:53;3524:7;3515:6;3504:9;3500:22;3479:53;:::i;:::-;3469:63;;3425:117;3581:2;3607:53;3652:7;3643:6;3632:9;3628:22;3607:53;:::i;:::-;3597:63;;3552:118;3203:474;;;;;:::o;3683:619::-;3760:6;3768;3776;3825:2;3813:9;3804:7;3800:23;3796:32;3793:119;;;3831:79;;:::i;:::-;3793:119;3951:1;3976:53;4021:7;4012:6;4001:9;3997:22;3976:53;:::i;:::-;3966:63;;3922:117;4078:2;4104:53;4149:7;4140:6;4129:9;4125:22;4104:53;:::i;:::-;4094:63;;4049:118;4206:2;4232:53;4277:7;4268:6;4257:9;4253:22;4232:53;:::i;:::-;4222:63;;4177:118;3683:619;;;;;:::o;4308:943::-;4403:6;4411;4419;4427;4476:3;4464:9;4455:7;4451:23;4447:33;4444:120;;;4483:79;;:::i;:::-;4444:120;4603:1;4628:53;4673:7;4664:6;4653:9;4649:22;4628:53;:::i;:::-;4618:63;;4574:117;4730:2;4756:53;4801:7;4792:6;4781:9;4777:22;4756:53;:::i;:::-;4746:63;;4701:118;4858:2;4884:53;4929:7;4920:6;4909:9;4905:22;4884:53;:::i;:::-;4874:63;;4829:118;5014:2;5003:9;4999:18;4986:32;5045:18;5037:6;5034:30;5031:117;;;5067:79;;:::i;:::-;5031:117;5172:62;5226:7;5217:6;5206:9;5202:22;5172:62;:::i;:::-;5162:72;;4957:287;4308:943;;;;;;;:::o;5257:704::-;5352:6;5360;5368;5417:2;5405:9;5396:7;5392:23;5388:32;5385:119;;;5423:79;;:::i;:::-;5385:119;5543:1;5568:53;5613:7;5604:6;5593:9;5589:22;5568:53;:::i;:::-;5558:63;;5514:117;5698:2;5687:9;5683:18;5670:32;5729:18;5721:6;5718:30;5715:117;;;5751:79;;:::i;:::-;5715:117;5864:80;5936:7;5927:6;5916:9;5912:22;5864:80;:::i;:::-;5846:98;;;;5641:313;5257:704;;;;;:::o;5967:468::-;6032:6;6040;6089:2;6077:9;6068:7;6064:23;6060:32;6057:119;;;6095:79;;:::i;:::-;6057:119;6215:1;6240:53;6285:7;6276:6;6265:9;6261:22;6240:53;:::i;:::-;6230:63;;6186:117;6342:2;6368:50;6410:7;6401:6;6390:9;6386:22;6368:50;:::i;:::-;6358:60;;6313:115;5967:468;;;;;:::o;6441:474::-;6509:6;6517;6566:2;6554:9;6545:7;6541:23;6537:32;6534:119;;;6572:79;;:::i;:::-;6534:119;6692:1;6717:53;6762:7;6753:6;6742:9;6738:22;6717:53;:::i;:::-;6707:63;;6663:117;6819:2;6845:53;6890:7;6881:6;6870:9;6866:22;6845:53;:::i;:::-;6835:63;;6790:118;6441:474;;;;;:::o;6921:799::-;7008:6;7016;7024;7073:2;7061:9;7052:7;7048:23;7044:32;7041:119;;;7079:79;;:::i;:::-;7041:119;7199:1;7224:53;7269:7;7260:6;7249:9;7245:22;7224:53;:::i;:::-;7214:63;;7170:117;7326:2;7352:53;7397:7;7388:6;7377:9;7373:22;7352:53;:::i;:::-;7342:63;;7297:118;7482:2;7471:9;7467:18;7454:32;7513:18;7505:6;7502:30;7499:117;;;7535:79;;:::i;:::-;7499:117;7640:63;7695:7;7686:6;7675:9;7671:22;7640:63;:::i;:::-;7630:73;;7425:288;6921:799;;;;;:::o;7726:559::-;7812:6;7820;7869:2;7857:9;7848:7;7844:23;7840:32;7837:119;;;7875:79;;:::i;:::-;7837:119;8023:1;8012:9;8008:17;7995:31;8053:18;8045:6;8042:30;8039:117;;;8075:79;;:::i;:::-;8039:117;8188:80;8260:7;8251:6;8240:9;8236:22;8188:80;:::i;:::-;8170:98;;;;7966:312;7726:559;;;;;:::o;8291:323::-;8347:6;8396:2;8384:9;8375:7;8371:23;8367:32;8364:119;;;8402:79;;:::i;:::-;8364:119;8522:1;8547:50;8589:7;8580:6;8569:9;8565:22;8547:50;:::i;:::-;8537:60;;8493:114;8291:323;;;;:::o;8620:327::-;8678:6;8727:2;8715:9;8706:7;8702:23;8698:32;8695:119;;;8733:79;;:::i;:::-;8695:119;8853:1;8878:52;8922:7;8913:6;8902:9;8898:22;8878:52;:::i;:::-;8868:62;;8824:116;8620:327;;;;:::o;8953:349::-;9022:6;9071:2;9059:9;9050:7;9046:23;9042:32;9039:119;;;9077:79;;:::i;:::-;9039:119;9197:1;9222:63;9277:7;9268:6;9257:9;9253:22;9222:63;:::i;:::-;9212:73;;9168:127;8953:349;;;;:::o;9308:509::-;9377:6;9426:2;9414:9;9405:7;9401:23;9397:32;9394:119;;;9432:79;;:::i;:::-;9394:119;9580:1;9569:9;9565:17;9552:31;9610:18;9602:6;9599:30;9596:117;;;9632:79;;:::i;:::-;9596:117;9737:63;9792:7;9783:6;9772:9;9768:22;9737:63;:::i;:::-;9727:73;;9523:287;9308:509;;;;:::o;9823:329::-;9882:6;9931:2;9919:9;9910:7;9906:23;9902:32;9899:119;;;9937:79;;:::i;:::-;9899:119;10057:1;10082:53;10127:7;10118:6;10107:9;10103:22;10082:53;:::i;:::-;10072:63;;10028:117;9823:329;;;;:::o;10158:474::-;10226:6;10234;10283:2;10271:9;10262:7;10258:23;10254:32;10251:119;;;10289:79;;:::i;:::-;10251:119;10409:1;10434:53;10479:7;10470:6;10459:9;10455:22;10434:53;:::i;:::-;10424:63;;10380:117;10536:2;10562:53;10607:7;10598:6;10587:9;10583:22;10562:53;:::i;:::-;10552:63;;10507:118;10158:474;;;;;:::o;10638:179::-;10707:10;10728:46;10770:3;10762:6;10728:46;:::i;:::-;10806:4;10801:3;10797:14;10783:28;;10638:179;;;;:::o;10823:118::-;10910:24;10928:5;10910:24;:::i;:::-;10905:3;10898:37;10823:118;;:::o;10977:732::-;11096:3;11125:54;11173:5;11125:54;:::i;:::-;11195:86;11274:6;11269:3;11195:86;:::i;:::-;11188:93;;11305:56;11355:5;11305:56;:::i;:::-;11384:7;11415:1;11400:284;11425:6;11422:1;11419:13;11400:284;;;11501:6;11495:13;11528:63;11587:3;11572:13;11528:63;:::i;:::-;11521:70;;11614:60;11667:6;11614:60;:::i;:::-;11604:70;;11460:224;11447:1;11444;11440:9;11435:14;;11400:284;;;11404:14;11700:3;11693:10;;11101:608;;;10977:732;;;;:::o;11715:109::-;11796:21;11811:5;11796:21;:::i;:::-;11791:3;11784:34;11715:109;;:::o;11830:360::-;11916:3;11944:38;11976:5;11944:38;:::i;:::-;11998:70;12061:6;12056:3;11998:70;:::i;:::-;11991:77;;12077:52;12122:6;12117:3;12110:4;12103:5;12099:16;12077:52;:::i;:::-;12154:29;12176:6;12154:29;:::i;:::-;12149:3;12145:39;12138:46;;11920:270;11830:360;;;;:::o;12196:364::-;12284:3;12312:39;12345:5;12312:39;:::i;:::-;12367:71;12431:6;12426:3;12367:71;:::i;:::-;12360:78;;12447:52;12492:6;12487:3;12480:4;12473:5;12469:16;12447:52;:::i;:::-;12524:29;12546:6;12524:29;:::i;:::-;12519:3;12515:39;12508:46;;12288:272;12196:364;;;;:::o;12566:377::-;12672:3;12700:39;12733:5;12700:39;:::i;:::-;12755:89;12837:6;12832:3;12755:89;:::i;:::-;12748:96;;12853:52;12898:6;12893:3;12886:4;12879:5;12875:16;12853:52;:::i;:::-;12930:6;12925:3;12921:16;12914:23;;12676:267;12566:377;;;;:::o;12949:366::-;13091:3;13112:67;13176:2;13171:3;13112:67;:::i;:::-;13105:74;;13188:93;13277:3;13188:93;:::i;:::-;13306:2;13301:3;13297:12;13290:19;;12949:366;;;:::o;13321:::-;13463:3;13484:67;13548:2;13543:3;13484:67;:::i;:::-;13477:74;;13560:93;13649:3;13560:93;:::i;:::-;13678:2;13673:3;13669:12;13662:19;;13321:366;;;:::o;13693:::-;13835:3;13856:67;13920:2;13915:3;13856:67;:::i;:::-;13849:74;;13932:93;14021:3;13932:93;:::i;:::-;14050:2;14045:3;14041:12;14034:19;;13693:366;;;:::o;14065:::-;14207:3;14228:67;14292:2;14287:3;14228:67;:::i;:::-;14221:74;;14304:93;14393:3;14304:93;:::i;:::-;14422:2;14417:3;14413:12;14406:19;;14065:366;;;:::o;14437:::-;14579:3;14600:67;14664:2;14659:3;14600:67;:::i;:::-;14593:74;;14676:93;14765:3;14676:93;:::i;:::-;14794:2;14789:3;14785:12;14778:19;;14437:366;;;:::o;14809:::-;14951:3;14972:67;15036:2;15031:3;14972:67;:::i;:::-;14965:74;;15048:93;15137:3;15048:93;:::i;:::-;15166:2;15161:3;15157:12;15150:19;;14809:366;;;:::o;15181:::-;15323:3;15344:67;15408:2;15403:3;15344:67;:::i;:::-;15337:74;;15420:93;15509:3;15420:93;:::i;:::-;15538:2;15533:3;15529:12;15522:19;;15181:366;;;:::o;15553:::-;15695:3;15716:67;15780:2;15775:3;15716:67;:::i;:::-;15709:74;;15792:93;15881:3;15792:93;:::i;:::-;15910:2;15905:3;15901:12;15894:19;;15553:366;;;:::o;15925:::-;16067:3;16088:67;16152:2;16147:3;16088:67;:::i;:::-;16081:74;;16164:93;16253:3;16164:93;:::i;:::-;16282:2;16277:3;16273:12;16266:19;;15925:366;;;:::o;16297:::-;16439:3;16460:67;16524:2;16519:3;16460:67;:::i;:::-;16453:74;;16536:93;16625:3;16536:93;:::i;:::-;16654:2;16649:3;16645:12;16638:19;;16297:366;;;:::o;16669:::-;16811:3;16832:67;16896:2;16891:3;16832:67;:::i;:::-;16825:74;;16908:93;16997:3;16908:93;:::i;:::-;17026:2;17021:3;17017:12;17010:19;;16669:366;;;:::o;17041:::-;17183:3;17204:67;17268:2;17263:3;17204:67;:::i;:::-;17197:74;;17280:93;17369:3;17280:93;:::i;:::-;17398:2;17393:3;17389:12;17382:19;;17041:366;;;:::o;17413:::-;17555:3;17576:67;17640:2;17635:3;17576:67;:::i;:::-;17569:74;;17652:93;17741:3;17652:93;:::i;:::-;17770:2;17765:3;17761:12;17754:19;;17413:366;;;:::o;17785:::-;17927:3;17948:67;18012:2;18007:3;17948:67;:::i;:::-;17941:74;;18024:93;18113:3;18024:93;:::i;:::-;18142:2;18137:3;18133:12;18126:19;;17785:366;;;:::o;18157:::-;18299:3;18320:67;18384:2;18379:3;18320:67;:::i;:::-;18313:74;;18396:93;18485:3;18396:93;:::i;:::-;18514:2;18509:3;18505:12;18498:19;;18157:366;;;:::o;18529:::-;18671:3;18692:67;18756:2;18751:3;18692:67;:::i;:::-;18685:74;;18768:93;18857:3;18768:93;:::i;:::-;18886:2;18881:3;18877:12;18870:19;;18529:366;;;:::o;18901:::-;19043:3;19064:67;19128:2;19123:3;19064:67;:::i;:::-;19057:74;;19140:93;19229:3;19140:93;:::i;:::-;19258:2;19253:3;19249:12;19242:19;;18901:366;;;:::o;19273:::-;19415:3;19436:67;19500:2;19495:3;19436:67;:::i;:::-;19429:74;;19512:93;19601:3;19512:93;:::i;:::-;19630:2;19625:3;19621:12;19614:19;;19273:366;;;:::o;19645:398::-;19804:3;19825:83;19906:1;19901:3;19825:83;:::i;:::-;19818:90;;19917:93;20006:3;19917:93;:::i;:::-;20035:1;20030:3;20026:11;20019:18;;19645:398;;;:::o;20049:366::-;20191:3;20212:67;20276:2;20271:3;20212:67;:::i;:::-;20205:74;;20288:93;20377:3;20288:93;:::i;:::-;20406:2;20401:3;20397:12;20390:19;;20049:366;;;:::o;20421:::-;20563:3;20584:67;20648:2;20643:3;20584:67;:::i;:::-;20577:74;;20660:93;20749:3;20660:93;:::i;:::-;20778:2;20773:3;20769:12;20762:19;;20421:366;;;:::o;20793:::-;20935:3;20956:67;21020:2;21015:3;20956:67;:::i;:::-;20949:74;;21032:93;21121:3;21032:93;:::i;:::-;21150:2;21145:3;21141:12;21134:19;;20793:366;;;:::o;21165:108::-;21242:24;21260:5;21242:24;:::i;:::-;21237:3;21230:37;21165:108;;:::o;21279:118::-;21366:24;21384:5;21366:24;:::i;:::-;21361:3;21354:37;21279:118;;:::o;21403:435::-;21583:3;21605:95;21696:3;21687:6;21605:95;:::i;:::-;21598:102;;21717:95;21808:3;21799:6;21717:95;:::i;:::-;21710:102;;21829:3;21822:10;;21403:435;;;;;:::o;21844:379::-;22028:3;22050:147;22193:3;22050:147;:::i;:::-;22043:154;;22214:3;22207:10;;21844:379;;;:::o;22229:222::-;22322:4;22360:2;22349:9;22345:18;22337:26;;22373:71;22441:1;22430:9;22426:17;22417:6;22373:71;:::i;:::-;22229:222;;;;:::o;22457:640::-;22652:4;22690:3;22679:9;22675:19;22667:27;;22704:71;22772:1;22761:9;22757:17;22748:6;22704:71;:::i;:::-;22785:72;22853:2;22842:9;22838:18;22829:6;22785:72;:::i;:::-;22867;22935:2;22924:9;22920:18;22911:6;22867:72;:::i;:::-;22986:9;22980:4;22976:20;22971:2;22960:9;22956:18;22949:48;23014:76;23085:4;23076:6;23014:76;:::i;:::-;23006:84;;22457:640;;;;;;;:::o;23103:373::-;23246:4;23284:2;23273:9;23269:18;23261:26;;23333:9;23327:4;23323:20;23319:1;23308:9;23304:17;23297:47;23361:108;23464:4;23455:6;23361:108;:::i;:::-;23353:116;;23103:373;;;;:::o;23482:210::-;23569:4;23607:2;23596:9;23592:18;23584:26;;23620:65;23682:1;23671:9;23667:17;23658:6;23620:65;:::i;:::-;23482:210;;;;:::o;23698:313::-;23811:4;23849:2;23838:9;23834:18;23826:26;;23898:9;23892:4;23888:20;23884:1;23873:9;23869:17;23862:47;23926:78;23999:4;23990:6;23926:78;:::i;:::-;23918:86;;23698:313;;;;:::o;24017:419::-;24183:4;24221:2;24210:9;24206:18;24198:26;;24270:9;24264:4;24260:20;24256:1;24245:9;24241:17;24234:47;24298:131;24424:4;24298:131;:::i;:::-;24290:139;;24017:419;;;:::o;24442:::-;24608:4;24646:2;24635:9;24631:18;24623:26;;24695:9;24689:4;24685:20;24681:1;24670:9;24666:17;24659:47;24723:131;24849:4;24723:131;:::i;:::-;24715:139;;24442:419;;;:::o;24867:::-;25033:4;25071:2;25060:9;25056:18;25048:26;;25120:9;25114:4;25110:20;25106:1;25095:9;25091:17;25084:47;25148:131;25274:4;25148:131;:::i;:::-;25140:139;;24867:419;;;:::o;25292:::-;25458:4;25496:2;25485:9;25481:18;25473:26;;25545:9;25539:4;25535:20;25531:1;25520:9;25516:17;25509:47;25573:131;25699:4;25573:131;:::i;:::-;25565:139;;25292:419;;;:::o;25717:::-;25883:4;25921:2;25910:9;25906:18;25898:26;;25970:9;25964:4;25960:20;25956:1;25945:9;25941:17;25934:47;25998:131;26124:4;25998:131;:::i;:::-;25990:139;;25717:419;;;:::o;26142:::-;26308:4;26346:2;26335:9;26331:18;26323:26;;26395:9;26389:4;26385:20;26381:1;26370:9;26366:17;26359:47;26423:131;26549:4;26423:131;:::i;:::-;26415:139;;26142:419;;;:::o;26567:::-;26733:4;26771:2;26760:9;26756:18;26748:26;;26820:9;26814:4;26810:20;26806:1;26795:9;26791:17;26784:47;26848:131;26974:4;26848:131;:::i;:::-;26840:139;;26567:419;;;:::o;26992:::-;27158:4;27196:2;27185:9;27181:18;27173:26;;27245:9;27239:4;27235:20;27231:1;27220:9;27216:17;27209:47;27273:131;27399:4;27273:131;:::i;:::-;27265:139;;26992:419;;;:::o;27417:::-;27583:4;27621:2;27610:9;27606:18;27598:26;;27670:9;27664:4;27660:20;27656:1;27645:9;27641:17;27634:47;27698:131;27824:4;27698:131;:::i;:::-;27690:139;;27417:419;;;:::o;27842:::-;28008:4;28046:2;28035:9;28031:18;28023:26;;28095:9;28089:4;28085:20;28081:1;28070:9;28066:17;28059:47;28123:131;28249:4;28123:131;:::i;:::-;28115:139;;27842:419;;;:::o;28267:::-;28433:4;28471:2;28460:9;28456:18;28448:26;;28520:9;28514:4;28510:20;28506:1;28495:9;28491:17;28484:47;28548:131;28674:4;28548:131;:::i;:::-;28540:139;;28267:419;;;:::o;28692:::-;28858:4;28896:2;28885:9;28881:18;28873:26;;28945:9;28939:4;28935:20;28931:1;28920:9;28916:17;28909:47;28973:131;29099:4;28973:131;:::i;:::-;28965:139;;28692:419;;;:::o;29117:::-;29283:4;29321:2;29310:9;29306:18;29298:26;;29370:9;29364:4;29360:20;29356:1;29345:9;29341:17;29334:47;29398:131;29524:4;29398:131;:::i;:::-;29390:139;;29117:419;;;:::o;29542:::-;29708:4;29746:2;29735:9;29731:18;29723:26;;29795:9;29789:4;29785:20;29781:1;29770:9;29766:17;29759:47;29823:131;29949:4;29823:131;:::i;:::-;29815:139;;29542:419;;;:::o;29967:::-;30133:4;30171:2;30160:9;30156:18;30148:26;;30220:9;30214:4;30210:20;30206:1;30195:9;30191:17;30184:47;30248:131;30374:4;30248:131;:::i;:::-;30240:139;;29967:419;;;:::o;30392:::-;30558:4;30596:2;30585:9;30581:18;30573:26;;30645:9;30639:4;30635:20;30631:1;30620:9;30616:17;30609:47;30673:131;30799:4;30673:131;:::i;:::-;30665:139;;30392:419;;;:::o;30817:::-;30983:4;31021:2;31010:9;31006:18;30998:26;;31070:9;31064:4;31060:20;31056:1;31045:9;31041:17;31034:47;31098:131;31224:4;31098:131;:::i;:::-;31090:139;;30817:419;;;:::o;31242:::-;31408:4;31446:2;31435:9;31431:18;31423:26;;31495:9;31489:4;31485:20;31481:1;31470:9;31466:17;31459:47;31523:131;31649:4;31523:131;:::i;:::-;31515:139;;31242:419;;;:::o;31667:::-;31833:4;31871:2;31860:9;31856:18;31848:26;;31920:9;31914:4;31910:20;31906:1;31895:9;31891:17;31884:47;31948:131;32074:4;31948:131;:::i;:::-;31940:139;;31667:419;;;:::o;32092:::-;32258:4;32296:2;32285:9;32281:18;32273:26;;32345:9;32339:4;32335:20;32331:1;32320:9;32316:17;32309:47;32373:131;32499:4;32373:131;:::i;:::-;32365:139;;32092:419;;;:::o;32517:::-;32683:4;32721:2;32710:9;32706:18;32698:26;;32770:9;32764:4;32760:20;32756:1;32745:9;32741:17;32734:47;32798:131;32924:4;32798:131;:::i;:::-;32790:139;;32517:419;;;:::o;32942:222::-;33035:4;33073:2;33062:9;33058:18;33050:26;;33086:71;33154:1;33143:9;33139:17;33130:6;33086:71;:::i;:::-;32942:222;;;;:::o;33170:129::-;33204:6;33231:20;;:::i;:::-;33221:30;;33260:33;33288:4;33280:6;33260:33;:::i;:::-;33170:129;;;:::o;33305:75::-;33338:6;33371:2;33365:9;33355:19;;33305:75;:::o;33386:307::-;33447:4;33537:18;33529:6;33526:30;33523:56;;;33559:18;;:::i;:::-;33523:56;33597:29;33619:6;33597:29;:::i;:::-;33589:37;;33681:4;33675;33671:15;33663:23;;33386:307;;;:::o;33699:308::-;33761:4;33851:18;33843:6;33840:30;33837:56;;;33873:18;;:::i;:::-;33837:56;33911:29;33933:6;33911:29;:::i;:::-;33903:37;;33995:4;33989;33985:15;33977:23;;33699:308;;;:::o;34013:132::-;34080:4;34103:3;34095:11;;34133:4;34128:3;34124:14;34116:22;;34013:132;;;:::o;34151:114::-;34218:6;34252:5;34246:12;34236:22;;34151:114;;;:::o;34271:98::-;34322:6;34356:5;34350:12;34340:22;;34271:98;;;:::o;34375:99::-;34427:6;34461:5;34455:12;34445:22;;34375:99;;;:::o;34480:113::-;34550:4;34582;34577:3;34573:14;34565:22;;34480:113;;;:::o;34599:184::-;34698:11;34732:6;34727:3;34720:19;34772:4;34767:3;34763:14;34748:29;;34599:184;;;;:::o;34789:168::-;34872:11;34906:6;34901:3;34894:19;34946:4;34941:3;34937:14;34922:29;;34789:168;;;;:::o;34963:147::-;35064:11;35101:3;35086:18;;34963:147;;;;:::o;35116:169::-;35200:11;35234:6;35229:3;35222:19;35274:4;35269:3;35265:14;35250:29;;35116:169;;;;:::o;35291:148::-;35393:11;35430:3;35415:18;;35291:148;;;;:::o;35445:305::-;35485:3;35504:20;35522:1;35504:20;:::i;:::-;35499:25;;35538:20;35556:1;35538:20;:::i;:::-;35533:25;;35692:1;35624:66;35620:74;35617:1;35614:81;35611:107;;;35698:18;;:::i;:::-;35611:107;35742:1;35739;35735:9;35728:16;;35445:305;;;;:::o;35756:185::-;35796:1;35813:20;35831:1;35813:20;:::i;:::-;35808:25;;35847:20;35865:1;35847:20;:::i;:::-;35842:25;;35886:1;35876:35;;35891:18;;:::i;:::-;35876:35;35933:1;35930;35926:9;35921:14;;35756:185;;;;:::o;35947:348::-;35987:7;36010:20;36028:1;36010:20;:::i;:::-;36005:25;;36044:20;36062:1;36044:20;:::i;:::-;36039:25;;36232:1;36164:66;36160:74;36157:1;36154:81;36149:1;36142:9;36135:17;36131:105;36128:131;;;36239:18;;:::i;:::-;36128:131;36287:1;36284;36280:9;36269:20;;35947:348;;;;:::o;36301:191::-;36341:4;36361:20;36379:1;36361:20;:::i;:::-;36356:25;;36395:20;36413:1;36395:20;:::i;:::-;36390:25;;36434:1;36431;36428:8;36425:34;;;36439:18;;:::i;:::-;36425:34;36484:1;36481;36477:9;36469:17;;36301:191;;;;:::o;36498:96::-;36535:7;36564:24;36582:5;36564:24;:::i;:::-;36553:35;;36498:96;;;:::o;36600:90::-;36634:7;36677:5;36670:13;36663:21;36652:32;;36600:90;;;:::o;36696:149::-;36732:7;36772:66;36765:5;36761:78;36750:89;;36696:149;;;:::o;36851:126::-;36888:7;36928:42;36921:5;36917:54;36906:65;;36851:126;;;:::o;36983:77::-;37020:7;37049:5;37038:16;;36983:77;;;:::o;37066:154::-;37150:6;37145:3;37140;37127:30;37212:1;37203:6;37198:3;37194:16;37187:27;37066:154;;;:::o;37226:307::-;37294:1;37304:113;37318:6;37315:1;37312:13;37304:113;;;37403:1;37398:3;37394:11;37388:18;37384:1;37379:3;37375:11;37368:39;37340:2;37337:1;37333:10;37328:15;;37304:113;;;37435:6;37432:1;37429:13;37426:101;;;37515:1;37506:6;37501:3;37497:16;37490:27;37426:101;37275:258;37226:307;;;:::o;37539:320::-;37583:6;37620:1;37614:4;37610:12;37600:22;;37667:1;37661:4;37657:12;37688:18;37678:81;;37744:4;37736:6;37732:17;37722:27;;37678:81;37806:2;37798:6;37795:14;37775:18;37772:38;37769:84;;;37825:18;;:::i;:::-;37769:84;37590:269;37539:320;;;:::o;37865:281::-;37948:27;37970:4;37948:27;:::i;:::-;37940:6;37936:40;38078:6;38066:10;38063:22;38042:18;38030:10;38027:34;38024:62;38021:88;;;38089:18;;:::i;:::-;38021:88;38129:10;38125:2;38118:22;37908:238;37865:281;;:::o;38152:233::-;38191:3;38214:24;38232:5;38214:24;:::i;:::-;38205:33;;38260:66;38253:5;38250:77;38247:103;;;38330:18;;:::i;:::-;38247:103;38377:1;38370:5;38366:13;38359:20;;38152:233;;;:::o;38391:176::-;38423:1;38440:20;38458:1;38440:20;:::i;:::-;38435:25;;38474:20;38492:1;38474:20;:::i;:::-;38469:25;;38513:1;38503:35;;38518:18;;:::i;:::-;38503:35;38559:1;38556;38552:9;38547:14;;38391:176;;;;:::o;38573:180::-;38621:77;38618:1;38611:88;38718:4;38715:1;38708:15;38742:4;38739:1;38732:15;38759:180;38807:77;38804:1;38797:88;38904:4;38901:1;38894:15;38928:4;38925:1;38918:15;38945:180;38993:77;38990:1;38983:88;39090:4;39087:1;39080:15;39114:4;39111:1;39104:15;39131:180;39179:77;39176:1;39169:88;39276:4;39273:1;39266:15;39300:4;39297:1;39290:15;39317:180;39365:77;39362:1;39355:88;39462:4;39459:1;39452:15;39486:4;39483:1;39476:15;39503:117;39612:1;39609;39602:12;39626:117;39735:1;39732;39725:12;39749:117;39858:1;39855;39848:12;39872:117;39981:1;39978;39971:12;39995:117;40104:1;40101;40094:12;40118:117;40227:1;40224;40217:12;40241:102;40282:6;40333:2;40329:7;40324:2;40317:5;40313:14;40309:28;40299:38;;40241:102;;;:::o;40349:162::-;40489:14;40485:1;40477:6;40473:14;40466:38;40349:162;:::o;40517:169::-;40657:21;40653:1;40645:6;40641:14;40634:45;40517:169;:::o;40692:237::-;40832:34;40828:1;40820:6;40816:14;40809:58;40901:20;40896:2;40888:6;40884:15;40877:45;40692:237;:::o;40935:225::-;41075:34;41071:1;41063:6;41059:14;41052:58;41144:8;41139:2;41131:6;41127:15;41120:33;40935:225;:::o;41166:224::-;41306:34;41302:1;41294:6;41290:14;41283:58;41375:7;41370:2;41362:6;41358:15;41351:32;41166:224;:::o;41396:178::-;41536:30;41532:1;41524:6;41520:14;41513:54;41396:178;:::o;41580:170::-;41720:22;41716:1;41708:6;41704:14;41697:46;41580:170;:::o;41756:182::-;41896:34;41892:1;41884:6;41880:14;41873:58;41756:182;:::o;41944:223::-;42084:34;42080:1;42072:6;42068:14;42061:58;42153:6;42148:2;42140:6;42136:15;42129:31;41944:223;:::o;42173:175::-;42313:27;42309:1;42301:6;42297:14;42290:51;42173:175;:::o;42354:228::-;42494:34;42490:1;42482:6;42478:14;42471:58;42563:11;42558:2;42550:6;42546:15;42539:36;42354:228;:::o;42588:249::-;42728:34;42724:1;42716:6;42712:14;42705:58;42797:32;42792:2;42784:6;42780:15;42773:57;42588:249;:::o;42843:182::-;42983:34;42979:1;42971:6;42967:14;42960:58;42843:182;:::o;43031:231::-;43171:34;43167:1;43159:6;43155:14;43148:58;43240:14;43235:2;43227:6;43223:15;43216:39;43031:231;:::o;43268:182::-;43408:34;43404:1;43396:6;43392:14;43385:58;43268:182;:::o;43456:173::-;43596:25;43592:1;43584:6;43580:14;43573:49;43456:173;:::o;43635:174::-;43775:26;43771:1;43763:6;43759:14;43752:50;43635:174;:::o;43815:220::-;43955:34;43951:1;43943:6;43939:14;43932:58;44024:3;44019:2;44011:6;44007:15;44000:28;43815:220;:::o;44041:114::-;;:::o;44161:170::-;44301:22;44297:1;44289:6;44285:14;44278:46;44161:170;:::o;44337:233::-;44477:34;44473:1;44465:6;44461:14;44454:58;44546:16;44541:2;44533:6;44529:15;44522:41;44337:233;:::o;44576:169::-;44716:21;44712:1;44704:6;44700:14;44693:45;44576:169;:::o;44751:122::-;44824:24;44842:5;44824:24;:::i;:::-;44817:5;44814:35;44804:63;;44863:1;44860;44853:12;44804:63;44751:122;:::o;44879:116::-;44949:21;44964:5;44949:21;:::i;:::-;44942:5;44939:32;44929:60;;44985:1;44982;44975:12;44929:60;44879:116;:::o;45001:120::-;45073:23;45090:5;45073:23;:::i;:::-;45066:5;45063:34;45053:62;;45111:1;45108;45101:12;45053:62;45001:120;:::o;45127:122::-;45200:24;45218:5;45200:24;:::i;:::-;45193:5;45190:35;45180:63;;45239:1;45236;45229:12;45180:63;45127:122;:::o

Swarm Source

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