ETH Price: $3,361.42 (-8.10%)
 

Overview

Max Total Supply

665 MV

Holders

303

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
0 MV
0x570d67b5084089871b17925b76c4b686605bbf64
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:
Metavogue

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-02-17
*/

// SPDX-License-Identifier: MIT
pragma solidity 0.8.0;




// File @openzeppelin/contracts/utils/[email protected]

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

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


// File @openzeppelin/contracts/access/[email protected]

/**
 * @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() {
        _setOwner(_msgSender());
    }

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}




// File @openzeppelin/contracts/utils/introspection/[email protected]

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


// File @openzeppelin/contracts/token/ERC721/[email protected]

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC721/[email protected]

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]

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

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

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


// File @openzeppelin/contracts/utils/[email protected]

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File @openzeppelin/contracts/utils/[email protected]

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

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

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

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

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


// File @openzeppelin/contracts/utils/introspection/[email protected]

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


// File @openzeppelin/contracts/token/ERC721/[email protected]

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @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 of token that is not own");
        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);
    }

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

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

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]

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

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

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/utils/math/[email protected]


// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}




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

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

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

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

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

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

  /**
   * @dev
   * `maxBatchSize` refers to how much a minter can mint at a time.
   */
  constructor(
    string memory name_,
    string memory symbol_,
    uint256 maxBatchSize_
  ) {
    require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
    _name = name_;
    _symbol = symbol_;
    maxBatchSize = maxBatchSize_;
  }

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

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

  /**
   * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
   * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
   * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
   */
  function tokenOfOwnerByIndex(address owner, uint256 index)
    public
    view
    override
    returns (uint256)
  {
    require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
    uint256 numMintedSoFar = totalSupply();
    uint256 tokenIdsIdx = 0;
    address currOwnershipAddr = address(0);
    for (uint256 i = 0; i < numMintedSoFar; i++) {
      TokenOwnership memory ownership = _ownerships[i];
      if (ownership.addr != address(0)) {
        currOwnershipAddr = ownership.addr;
      }
      if (currOwnershipAddr == owner) {
        if (tokenIdsIdx == index) {
          return i;
        }
        tokenIdsIdx++;
      }
    }
    revert("ERC721A: unable to get token of owner by index");
  }

  function walletOfOwner(address owner) public view returns(uint256[] memory) {
    uint256 tokenCount = balanceOf(owner);

    uint256[] memory tokenIds = new uint256[](tokenCount);
    if (tokenCount == 0)
    {
      return tokenIds;
    }

    uint256 numMintedSoFar = totalSupply();
    uint256 tokenIdsIdx = 0;
    address currOwnershipAddr = address(0);
    for (uint256 i = 0; i < numMintedSoFar; i++) {
      TokenOwnership memory ownership = _ownerships[i];
      if (ownership.addr != address(0)) {
        currOwnershipAddr = ownership.addr;
      }
      if (currOwnershipAddr == owner) {
        tokenIds[tokenIdsIdx] = i;
        tokenIdsIdx++;
        if (tokenIdsIdx == tokenCount) {
          return tokenIds;
        }
      }
    }
    revert("ERC721A: unable to get walletOfOwner");
  }

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

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

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

  function ownershipOf(uint256 tokenId)
    internal
    view
    returns (TokenOwnership memory)
  {
    require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

    uint256 lowestTokenToCheck;
    if (tokenId >= maxBatchSize) {
      lowestTokenToCheck = tokenId - maxBatchSize + 1;
    }

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

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

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

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

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

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

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

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

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

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

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

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

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

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

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

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

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

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

  /**
   * @dev Mints `quantity` tokens and transfers them to `to`.
   *
   * Requirements:
   *
   * - `to` cannot be the zero address.
   * - `quantity` cannot be larger than the max batch size.
   *
   * Emits a {Transfer} event.
   */
  function _safeMint(
    address to,
    uint256 quantity,
    bytes memory _data
  ) internal {
    uint256 startTokenId = currentIndex;
    require(to != address(0), "ERC721A: mint to the zero address");
    // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
    require(!_exists(startTokenId), "ERC721A: token already minted");
    require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high");

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

    AddressData memory addressData = _addressData[to];
    _addressData[to] = AddressData(
      addressData.balance + uint128(quantity),
      addressData.numberMinted + uint128(quantity)
    );
    _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

    uint256 updatedIndex = startTokenId;

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

    currentIndex = updatedIndex;
    _afterTokenTransfers(address(0), to, startTokenId, quantity);
  }

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

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

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

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

    _beforeTokenTransfers(from, to, tokenId, 1);

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

    _addressData[from].balance -= 1;
    _addressData[to].balance += 1;
    _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

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

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

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

  uint256 public nextOwnerToExplicitlySet = 0;

  /**
   * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
   */
  function _setOwnersExplicit(uint256 quantity) internal {
    uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
    require(quantity > 0, "quantity must be nonzero");
    uint256 endIndex = oldNextOwnerToSet + quantity - 1;
    if (endIndex > currentIndex - 1) {
      endIndex = currentIndex - 1;
    }
    // We know if the last one in the group exists, all in the group exist, due to serial ordering.
    require(_exists(endIndex), "not enough minted yet for this cleanup");
    for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
      if (_ownerships[i].addr == address(0)) {
        TokenOwnership memory ownership = ownershipOf(i);
        _ownerships[i] = TokenOwnership(
          ownership.addr,
          ownership.startTimestamp
        );
      }
    }
    nextOwnerToExplicitlySet = endIndex + 1;
  }

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

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

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

contract Metavogue is ERC721A, Ownable {
  constructor() ERC721A("METAVOGUE", "MV",10) {}

using SafeMath for uint256;
    using Strings for uint256;

    string private baseURI;
    string private blindURI;
    uint256 public constant BUY_LIMIT_PER_TX = 10;
    uint256 public constant MAX_NFT_PUBLIC = 3183;
    uint256 private constant MAX_NFT = 3333;
    uint256 public NFTPrice = 190000000000000000;  // 0.19 ETH
    uint256 public MAX_NFT_PRICE = 221000000000000000; // MAX 0.221 ETH
    bool public reveal;
    bool public isActive;
    bool public isPresaleActive;
    bool private freeMintActive;
    bytes32 public root;
    uint256 public WHITELIST_MAX_MINT = 2;
    mapping(address => uint256) public whiteListClaimed;
    mapping(address => bool) private giveawayMintClaimed;


    /*
     * Function to reveal all Metavogue
    */
    function revealNow() 
        external 
        onlyOwner 
    {
        reveal = true;
    }
    
    /*
     * Function setIsActive to activate/desactivate the smart contract
    */
    function setIsActive(
        bool _isActive
    ) 
        external 
        onlyOwner 
    {
        isActive = _isActive;
    }
    
    /*
     * Function setPresaleActive to activate/desactivate the whitelist/raffle presale  
    */
    function setPresaleActive(
        bool _isActive
    ) 
        external 
        onlyOwner 
    {
        isPresaleActive = _isActive;
    }

    /*
     * Function setFreeMintActive to activate/desactivate the free mint capability  
    */
    function setFreeMintActive(
        bool _isActive
    ) 
        external 
        onlyOwner 
    {
        freeMintActive = _isActive;
    }
    
    /*
     * Function to set Base and Blind URI 
    */
    function setURIs(
        string memory _blindURI, 
        string memory _URI
    ) 
        external 
        onlyOwner 
    {
        blindURI = _blindURI;
        baseURI = _URI;
    }
    
    /*
     * Function to withdraw collected amount during minting by the owner
    */
    function withdraw(
    ) 
        public 
        onlyOwner 
    {
        uint balance = address(this).balance;
        require(balance > 0, "Balance should be more then zero");
        payable(address(0xFF95C42c8ad36e00C63e6139Ad662DCe16e3005d)).transfer(balance);
    }
    
    /*
     * Function to mint new NFTs during the public sale
     * It is payable. Amount is calculated as per (NFTPrice.mul(_numOfTokens))
    */
    function mintNFT(
        uint256 _numOfTokens
    )
        public
        payable
    {
        require(isActive, 'Contract is not active');
        require(!isPresaleActive, 'Presale is still active');
        require(_numOfTokens <= BUY_LIMIT_PER_TX, "Cannot mint above limit");
        require(totalSupply().add(_numOfTokens) <= MAX_NFT_PUBLIC, "Purchase would exceed max public supply of NFTs");
        require(NFTPrice.mul(_numOfTokens) == msg.value, "Ether value sent is not correct");
        
            _safeMint(msg.sender, _numOfTokens);
    }

    /*
     * Function to mint new NFTs during the presale
     * It is payable. Amount is calculated as per (NFTPrice.mul(_numOfTokens))
    */ 
    function mintNFTDuringPresale(
        uint256 _numOfTokens,
        bytes32[] memory _proof
    ) 
        public 
        payable
    {
        require(isActive, 'Sale is not active');
        require(isPresaleActive, 'Whitelist is not active');
        require(verify(_proof, bytes32(uint256(uint160(msg.sender)))), "Not whitelisted");
        if (!freeMintActive){
            require(totalSupply() < MAX_NFT_PUBLIC, 'All public tokens have been minted');
            require(_numOfTokens <= WHITELIST_MAX_MINT, 'Cannot purchase this many tokens');
            require(totalSupply().add(_numOfTokens) <= MAX_NFT_PUBLIC, 'Purchase would exceed max public supply of NFTs');
            require(whiteListClaimed[msg.sender].add(_numOfTokens) <= WHITELIST_MAX_MINT, 'Purchase exceeds max whitelisted');
            require(NFTPrice.mul(_numOfTokens) == msg.value, "Ether value sent is not correct");
            whiteListClaimed[msg.sender] += _numOfTokens;
            _safeMint(msg.sender, _numOfTokens);
        }
        else{
            require(totalSupply() <= MAX_NFT, 'All tokens have been minted');
            require(_numOfTokens == 1, 'Cannot purchase this many tokens');
            require(!giveawayMintClaimed[msg.sender], 'Already claimed giveaway');
            giveawayMintClaimed[msg.sender] = true;
            _safeMint(msg.sender, _numOfTokens);
        }
    }
    
    /*
     * Function to mint NFTs for giveaway and partnerships
    */
    function mintByOwner(
        address _to
    )
        public 
        onlyOwner
    {
        require(totalSupply()+1 <= MAX_NFT, "Tokens number to mint cannot exceed number of MAX tokens");
        _safeMint(_to, 1);
    }
    
    /*
     * Function to mint all NFTs for giveaway and partnerships
    */
    function mintMultipleByOwner(
        address[] memory _to
    )
        public
        onlyOwner
    {
  
        for(uint256 i = 0; i < _to.length; i++){
            require(totalSupply()+1 <= MAX_NFT, "Tokens number to mint cannot exceed number of MAX tokens");
            _safeMint(_to[i], 1);
        }
    }

    /*
     * Function to get token URI of given token ID
     * URI will be blank untill totalSupply reaches MAX_NFT_PUBLIC
    */
    function tokenURI(
        uint256 _tokenId
    )
        public 
        view 
        virtual 
        override 
        returns (string memory) 
    {
        require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token");
        if (!reveal) {
            return string(abi.encodePacked(blindURI));
        } else {
            return string(abi.encodePacked(baseURI, _tokenId.toString()));
        }
    }
    
    // Set Root for whitelist and raffle to participate in presale
    function setRootAndMax(uint256 _root,uint256 _max) onlyOwner() public {
        root = bytes32(_root);
        WHITELIST_MAX_MINT=_max;
    }
    
    /*
     * Function setPrice allow the owner to set the price of an NFT
    */
    function setPrice(
        uint256 _price
    ) 
        external 
        onlyOwner 
    {   
        require(_price <= MAX_NFT_PRICE, 'The price must be smaller or equal to MAX_NFT_PRICE');
        require(_price > 0, 'The price must be greater than 0');
        NFTPrice = _price;
    }

    // Verify MerkleProof
    function verify(bytes32[] memory proof, bytes32 leaf) public view returns (bool) {
        bytes32 computedHash = leaf;

        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = sha256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = sha256(abi.encodePacked(proofElement, computedHash));
            }
        }

        // Check if the computed hash (root) is equal to the provided root
        return computedHash == root;
    }

   
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"BUY_LIMIT_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_NFT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_NFT_PUBLIC","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NFTPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WHITELIST_MAX_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPresaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"mintByOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_to","type":"address[]"}],"name":"mintMultipleByOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numOfTokens","type":"uint256"}],"name":"mintNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numOfTokens","type":"uint256"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"mintNFTDuringPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"revealNow","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"root","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isActive","type":"bool"}],"name":"setFreeMintActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isActive","type":"bool"}],"name":"setIsActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isActive","type":"bool"}],"name":"setPresaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_root","type":"uint256"},{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setRootAndMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_blindURI","type":"string"},{"internalType":"string","name":"_URI","type":"string"}],"name":"setURIs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"bytes32","name":"leaf","type":"bytes32"}],"name":"verify","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whiteListClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040526000805560006007556702a303fe4b530000600b5567031126543f5c8000600c556002600f553480156200003757600080fd5b50604051806040016040528060098152602001684d455441564f47554560b81b8152506040518060400160405280600281526020016126ab60f11b815250600a60008111620000a35760405162461bcd60e51b81526004016200009a90620001eb565b60405180910390fd5b8251620000b890600190602086019062000145565b508151620000ce90600290602085019062000145565b5060805250620000e99050620000e3620000ef565b620000f3565b6200026f565b3390565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001539062000232565b90600052602060002090601f016020900481019282620001775760008555620001c2565b82601f106200019257805160ff1916838001178555620001c2565b82800160010185558215620001c2579182015b82811115620001c2578251825591602001919060010190620001a5565b50620001d0929150620001d4565b5090565b5b80821115620001d05760008155600101620001d5565b60208082526027908201527f455243373231413a206d61782062617463682073697a65206d757374206265206040820152666e6f6e7a65726f60c81b606082015260800190565b6002810460018216806200024757607f821691505b602082108114156200026957634e487b7160e01b600052602260045260246000fd5b50919050565b6080516134d66200029960003960008181611beb01528181611c150152611fc401526134d66000f3fe6080604052600436106102675760003560e01c80638cdb906911610144578063b533731d116100b6578063e748e07c1161007a578063e748e07c146106b9578063e8254174146106ce578063e985e9c5146106ee578063ebf0c7171461070e578063f2fde38b14610723578063f37484e31461074357610267565b8063b533731d1461062f578063b88d4fde1461064f578063c87b56dd1461066f578063d1d80f301461068f578063d7224ba0146106a457610267565b806395d89b411161010857806395d89b411461059b578063972a2a62146105b0578063a22cb465146105d0578063a38bffda146105f0578063a475b5dd14610605578063aeb167681461061a57610267565b80638cdb90691461052b5780638da5cb5b146105405780638f76696c1461055557806391b7f5ed14610568578063926427441461058857610267565b80633f8121a2116101dd5780634f9b563c116101a15780634f9b563c1461048c5780635f0f45b2146104ac57806360d938dc146104c15780636352211e146104d657806370a08231146104f6578063715018a61461051657610267565b80633f8121a2146103df57806342842e0e146103ff578063438b63001461041f5780634cdb44001461044c5780634f6ccce71461046c57610267565b806322f3e2d41161022f57806322f3e2d4146103355780632333f3c41461034a57806323b872dd1461036a5780632750fc781461038a5780632f745c59146103aa5780633ccfd60b146103ca57610267565b806301ffc9a71461026c57806306fdde03146102a2578063081812fc146102c4578063095ea7b3146102f157806318160ddd14610313575b600080fd5b34801561027857600080fd5b5061028c6102873660046125fb565b610763565b60405161029991906128ba565b60405180910390f35b3480156102ae57600080fd5b506102b76107c6565b60405161029991906128ce565b3480156102d057600080fd5b506102e46102df366004612693565b610858565b6040516102999190612825565b3480156102fd57600080fd5b5061031161030c3660046124c8565b6108a4565b005b34801561031f57600080fd5b5061032861093d565b60405161029991906128c5565b34801561034157600080fd5b5061028c610943565b34801561035657600080fd5b506103286103653660046123a0565b610951565b34801561037657600080fd5b506103116103853660046123ec565b610963565b34801561039657600080fd5b506103116103a53660046125c9565b61096e565b3480156103b657600080fd5b506103286103c53660046124c8565b6109c7565b3480156103d657600080fd5b50610311610ac2565b3480156103eb57600080fd5b506103116103fa3660046125c9565b610b64565b34801561040b57600080fd5b5061031161041a3660046123ec565b610bbf565b34801561042b57600080fd5b5061043f61043a3660046123a0565b610bda565b6040516102999190612876565b34801561045857600080fd5b506103116104673660046124f1565b610d45565b34801561047857600080fd5b50610328610487366004612693565b610e08565b34801561049857600080fd5b506103116104a73660046125c9565b610e34565b3480156104b857600080fd5b50610311610e91565b3480156104cd57600080fd5b5061028c610edf565b3480156104e257600080fd5b506102e46104f1366004612693565b610eee565b34801561050257600080fd5b506103286105113660046123a0565b610f00565b34801561052257600080fd5b50610311610f4d565b34801561053757600080fd5b50610328610f98565b34801561054c57600080fd5b506102e4610f9e565b6103116105633660046126ab565b610fad565b34801561057457600080fd5b50610311610583366004612693565b6111e8565b610311610596366004612693565b61126e565b3480156105a757600080fd5b506102b7611345565b3480156105bc57600080fd5b5061028c6105cb366004612587565b611354565b3480156105dc57600080fd5b506103116105eb36600461249f565b61149c565b3480156105fc57600080fd5b5061032861156a565b34801561061157600080fd5b5061028c611570565b34801561062657600080fd5b50610328611579565b34801561063b57600080fd5b5061031161064a3660046123a0565b61157f565b34801561065b57600080fd5b5061031161066a366004612427565b6115fd565b34801561067b57600080fd5b506102b761068a366004612693565b611636565b34801561069b57600080fd5b506103286116ab565b3480156106b057600080fd5b506103286116b1565b3480156106c557600080fd5b506103286116b7565b3480156106da57600080fd5b506103116106e9366004612633565b6116bc565b3480156106fa57600080fd5b5061028c6107093660046123ba565b611722565b34801561071a57600080fd5b50610328611750565b34801561072f57600080fd5b5061031161073e3660046123a0565b611756565b34801561074f57600080fd5b5061031161075e3660046126e5565b6117c4565b60006001600160e01b031982166380ac58cd60e01b148061079457506001600160e01b03198216635b5e139f60e01b145b806107af57506001600160e01b0319821663780e9d6360e01b145b806107be57506107be8261180e565b90505b919050565b6060600180546107d5906133de565b80601f0160208091040260200160405190810160405280929190818152602001828054610801906133de565b801561084e5780601f106108235761010080835404028352916020019161084e565b820191906000526020600020905b81548152906001019060200180831161083157829003601f168201915b5050505050905090565b600061086382611827565b6108885760405162461bcd60e51b815260040161087f9061319c565b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006108af82610eee565b9050806001600160a01b0316836001600160a01b031614156108e35760405162461bcd60e51b815260040161087f90612f0d565b806001600160a01b03166108f561182e565b6001600160a01b0316148061091157506109118161070961182e565b61092d5760405162461bcd60e51b815260040161087f90612c01565b610938838383611832565b505050565b60005490565b600d54610100900460ff1681565b60106020526000908152604090205481565b61093883838361188e565b61097661182e565b6001600160a01b0316610987610f9e565b6001600160a01b0316146109ad5760405162461bcd60e51b815260040161087f90612db1565b600d80549115156101000261ff0019909216919091179055565b60006109d283610f00565b82106109f05760405162461bcd60e51b815260040161087f906128e1565b60006109fa61093d565b905060008060005b83811015610aa3576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610a5457805192505b876001600160a01b0316836001600160a01b03161415610a905786841415610a8257509350610abc92505050565b83610a8c81613419565b9450505b5080610a9b81613419565b915050610a02565b5060405162461bcd60e51b815260040161087f9061304f565b92915050565b610aca61182e565b6001600160a01b0316610adb610f9e565b6001600160a01b031614610b015760405162461bcd60e51b815260040161087f90612db1565b4780610b1f5760405162461bcd60e51b815260040161087f90612ba3565b60405173ff95c42c8ad36e00c63e6139ad662dce16e3005d9082156108fc029083906000818181858888f19350505050158015610b60573d6000803e3d6000fd5b5050565b610b6c61182e565b6001600160a01b0316610b7d610f9e565b6001600160a01b031614610ba35760405162461bcd60e51b815260040161087f90612db1565b600d8054911515620100000262ff000019909216919091179055565b610938838383604051806020016040528060008152506115fd565b60606000610be783610f00565b90506000816001600160401b03811115610c1157634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610c3a578160200160208202803683370190505b50905081610c4b5791506107c19050565b6000610c5561093d565b905060008060005b83811015610d2c576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610caf57805192505b886001600160a01b0316836001600160a01b03161415610d195781868581518110610cea57634e487b7160e01b600052603260045260246000fd5b602090810291909101015283610cff81613419565b94505086841415610d1957859750505050505050506107c1565b5080610d2481613419565b915050610c5d565b5060405162461bcd60e51b815260040161087f90612ab7565b610d4d61182e565b6001600160a01b0316610d5e610f9e565b6001600160a01b031614610d845760405162461bcd60e51b815260040161087f90612db1565b60005b8151811015610b6057610d05610d9b61093d565b610da6906001613311565b1115610dc45760405162461bcd60e51b815260040161087f90612c5e565b610df6828281518110610de757634e487b7160e01b600052603260045260246000fd5b60200260200101516001611ba0565b80610e0081613419565b915050610d87565b6000610e1261093d565b8210610e305760405162461bcd60e51b815260040161087f90612a74565b5090565b610e3c61182e565b6001600160a01b0316610e4d610f9e565b6001600160a01b031614610e735760405162461bcd60e51b815260040161087f90612db1565b600d805491151563010000000263ff00000019909216919091179055565b610e9961182e565b6001600160a01b0316610eaa610f9e565b6001600160a01b031614610ed05760405162461bcd60e51b815260040161087f90612db1565b600d805460ff19166001179055565b600d5462010000900460ff1681565b6000610ef982611bba565b5192915050565b60006001600160a01b038216610f285760405162461bcd60e51b815260040161087f90612cbb565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b610f5561182e565b6001600160a01b0316610f66610f9e565b6001600160a01b031614610f8c5760405162461bcd60e51b815260040161087f90612db1565b610f966000611ccc565b565b600c5481565b6008546001600160a01b031690565b600d54610100900460ff16610fd45760405162461bcd60e51b815260040161087f90612b40565b600d5462010000900460ff16610ffc5760405162461bcd60e51b815260040161087f90612923565b6110068133611354565b6110225760405162461bcd60e51b815260040161087f90612bd8565b600d546301000000900460ff1661114b57610c6f61103e61093d565b1061105b5760405162461bcd60e51b815260040161087f906130d4565b600f5482111561107d5760405162461bcd60e51b815260040161087f90613262565b610c6f6110928361108c61093d565b90611d1e565b11156110b05760405162461bcd60e51b815260040161087f90612ebe565b600f54336000908152601060205260409020546110cd9084611d1e565b11156110eb5760405162461bcd60e51b815260040161087f90612fd9565b600b5434906110fa9084611d31565b146111175760405162461bcd60e51b815260040161087f90612b6c565b3360009081526010602052604081208054849290611136908490613311565b9091555061114690503383611ba0565b610b60565b610d0561115661093d565b11156111745760405162461bcd60e51b815260040161087f90613165565b816001146111945760405162461bcd60e51b815260040161087f90613262565b3360009081526011602052604090205460ff16156111c45760405162461bcd60e51b815260040161087f9061322b565b336000818152601160205260409020805460ff19166001179055610b609083611ba0565b6111f061182e565b6001600160a01b0316611201610f9e565b6001600160a01b0316146112275760405162461bcd60e51b815260040161087f90612db1565b600c548111156112495760405162461bcd60e51b815260040161087f906129a0565b600081116112695760405162461bcd60e51b815260040161087f90612d36565b600b55565b600d54610100900460ff166112955760405162461bcd60e51b815260040161087f90612d06565b600d5462010000900460ff16156112be5760405162461bcd60e51b815260040161087f9061309d565b600a8111156112df5760405162461bcd60e51b815260040161087f90612a3d565b610c6f6112ee8261108c61093d565b111561130c5760405162461bcd60e51b815260040161087f90612ebe565b600b54349061131b9083611d31565b146113385760405162461bcd60e51b815260040161087f90612b6c565b6113423382611ba0565b50565b6060600280546107d5906133de565b600081815b845181101561149057600085828151811061138457634e487b7160e01b600052603260045260246000fd5b6020026020010151905080831161140b57600283826040516020016113aa9291906127ca565b60408051601f19818403018152908290526113c4916127d8565b602060405180830381855afa1580156113e1573d6000803e3d6000fd5b5050506040513d601f19601f8201168201806040525081019061140491906125e3565b925061147d565b600281846040516020016114209291906127ca565b60408051601f198184030181529082905261143a916127d8565b602060405180830381855afa158015611457573d6000803e3d6000fd5b5050506040513d601f19601f8201168201806040525081019061147a91906125e3565b92505b508061148881613419565b915050611359565b50600e54149392505050565b6114a461182e565b6001600160a01b0316826001600160a01b031614156114d55760405162461bcd60e51b815260040161087f90612e35565b80600660006114e261182e565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff19169215159290921790915561152661182e565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161155e91906128ba565b60405180910390a35050565b600b5481565b600d5460ff1681565b600f5481565b61158761182e565b6001600160a01b0316611598610f9e565b6001600160a01b0316146115be5760405162461bcd60e51b815260040161087f90612db1565b610d056115c961093d565b6115d4906001613311565b11156115f25760405162461bcd60e51b815260040161087f90612c5e565b611342816001611ba0565b61160884848461188e565b61161484848484611d3d565b6116305760405162461bcd60e51b815260040161087f90612f4f565b50505050565b606061164182611827565b61165d5760405162461bcd60e51b815260040161087f90612de6565b600d5460ff1661168f57600a60405160200161167991906127f4565b60405160208183030381529060405290506107c1565b600961169a83611e59565b604051602001611679929190612800565b610c6f81565b60075481565b600a81565b6116c461182e565b6001600160a01b03166116d5610f9e565b6001600160a01b0316146116fb5760405162461bcd60e51b815260040161087f90612db1565b815161170e90600a9060208501906121eb565b5080516109389060099060208401906121eb565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b600e5481565b61175e61182e565b6001600160a01b031661176f610f9e565b6001600160a01b0316146117955760405162461bcd60e51b815260040161087f90612db1565b6001600160a01b0381166117bb5760405162461bcd60e51b815260040161087f9061295a565b61134281611ccc565b6117cc61182e565b6001600160a01b03166117dd610f9e565b6001600160a01b0316146118035760405162461bcd60e51b815260040161087f90612db1565b600e91909155600f55565b6001600160e01b031981166301ffc9a760e01b14919050565b6000541190565b3390565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061189982611bba565b9050600081600001516001600160a01b03166118b361182e565b6001600160a01b031614806118e857506118cb61182e565b6001600160a01b03166118dd84610858565b6001600160a01b0316145b806118fc575081516118fc9061070961182e565b90508061191b5760405162461bcd60e51b815260040161087f90612e6c565b846001600160a01b031682600001516001600160a01b0316146119505760405162461bcd60e51b815260040161087f90612d6b565b6001600160a01b0384166119765760405162461bcd60e51b815260040161087f90612afb565b6119838585856001611630565b6119936000848460000151611832565b6001600160a01b03851660009081526004602052604081208054600192906119c59084906001600160801b031661335c565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526004602052604081208054600194509092611a11918591166132ef565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526003909152948520935184549151909216600160a01b0267ffffffffffffffff60a01b19929093166001600160a01b03199091161716179055611aa6846001613311565b6000818152600360205260409020549091506001600160a01b0316611b4a57611ace81611827565b15611b4a5760408051808201825284516001600160a01b0390811682526020808701516001600160401b0390811682850190815260008781526003909352949091209251835494516001600160a01b031990951692169190911767ffffffffffffffff60a01b1916600160a01b93909116929092029190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611b988686866001611630565b505050505050565b610b60828260405180602001604052806000815250611f73565b611bc261226b565b611bcb82611827565b611be75760405162461bcd60e51b815260040161087f906129f3565b60007f00000000000000000000000000000000000000000000000000000000000000008310611c4857611c3a7f000000000000000000000000000000000000000000000000000000000000000084613384565b611c45906001613311565b90505b825b818110611cb3576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215611ca05792506107c1915050565b5080611cab816133c7565b915050611c4a565b5060405162461bcd60e51b815260040161087f90613116565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000611d2a8284613311565b9392505050565b6000611d2a828461333d565b6000611d51846001600160a01b03166121e5565b15611e4d57836001600160a01b031663150b7a02611d6d61182e565b8786866040518563ffffffff1660e01b8152600401611d8f9493929190612839565b602060405180830381600087803b158015611da957600080fd5b505af1925050508015611dd9575060408051601f3d908101601f19168201909252611dd691810190612617565b60015b611e33573d808015611e07576040519150601f19603f3d011682016040523d82523d6000602084013e611e0c565b606091505b508051611e2b5760405162461bcd60e51b815260040161087f90612f4f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611e51565b5060015b949350505050565b606081611e7e57506040805180820190915260018152600360fc1b60208201526107c1565b8160005b8115611ea85780611e9281613419565b9150611ea19050600a83613329565b9150611e82565b6000816001600160401b03811115611ed057634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611efa576020820181803683370190505b5090505b8415611e5157611f0f600183613384565b9150611f1c600a86613434565b611f27906030613311565b60f81b818381518110611f4a57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611f6c600a86613329565b9450611efe565b6000546001600160a01b038416611f9c5760405162461bcd60e51b815260040161087f9061300e565b611fa581611827565b15611fc25760405162461bcd60e51b815260040161087f90612fa2565b7f00000000000000000000000000000000000000000000000000000000000000008311156120025760405162461bcd60e51b815260040161087f906131e9565b61200f6000858386611630565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b909104169181019190915281518083019092528051909190819061206b9087906132ef565b6001600160801b0316815260200185836020015161208991906132ef565b6001600160801b039081169091526001600160a01b03808816600081815260046020908152604080832087518154988401518816600160801b029088166fffffffffffffffffffffffffffffffff199099169890981790961696909617909455845180860186529182526001600160401b034281168386019081528883526003909552948120915182549451909516600160a01b0267ffffffffffffffff60a01b19959093166001600160a01b031990941693909317939093161790915582905b858110156121d35760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46121976000888488611d3d565b6121b35760405162461bcd60e51b815260040161087f90612f4f565b816121bd81613419565b92505080806121cb90613419565b91505061214a565b506000818155611b9890878588611630565b3b151590565b8280546121f7906133de565b90600052602060002090601f016020900481019282612219576000855561225f565b82601f1061223257805160ff191683800117855561225f565b8280016001018555821561225f579182015b8281111561225f578251825591602001919060010190612244565b50610e30929150612282565b604080518082019091526000808252602082015290565b5b80821115610e305760008155600101612283565b60006001600160401b038311156122b0576122b0613474565b6122c3601f8401601f1916602001613297565b90508281528383830111156122d757600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146107c157600080fd5b600082601f830112612315578081fd5b8135602061232a612325836132c0565b613297565b8281528181019085830183850287018401881015612346578586fd5b855b8581101561236457813584529284019290840190600101612348565b5090979650505050505050565b803580151581146107c157600080fd5b600082601f830112612391578081fd5b611d2a83833560208501612297565b6000602082840312156123b1578081fd5b611d2a826122ee565b600080604083850312156123cc578081fd5b6123d5836122ee565b91506123e3602084016122ee565b90509250929050565b600080600060608486031215612400578081fd5b612409846122ee565b9250612417602085016122ee565b9150604084013590509250925092565b6000806000806080858703121561243c578081fd5b612445856122ee565b9350612453602086016122ee565b92506040850135915060608501356001600160401b03811115612474578182fd5b8501601f81018713612484578182fd5b61249387823560208401612297565b91505092959194509250565b600080604083850312156124b1578182fd5b6124ba836122ee565b91506123e360208401612371565b600080604083850312156124da578182fd5b6124e3836122ee565b946020939093013593505050565b60006020808385031215612503578182fd5b82356001600160401b03811115612518578283fd5b8301601f81018513612528578283fd5b8035612536612325826132c0565b8181528381019083850185840285018601891015612552578687fd5b8694505b8385101561257b57612567816122ee565b835260019490940193918501918501612556565b50979650505050505050565b60008060408385031215612599578182fd5b82356001600160401b038111156125ae578283fd5b6125ba85828601612305565b95602094909401359450505050565b6000602082840312156125da578081fd5b611d2a82612371565b6000602082840312156125f4578081fd5b5051919050565b60006020828403121561260c578081fd5b8135611d2a8161348a565b600060208284031215612628578081fd5b8151611d2a8161348a565b60008060408385031215612645578182fd5b82356001600160401b038082111561265b578384fd5b61266786838701612381565b9350602085013591508082111561267c578283fd5b5061268985828601612381565b9150509250929050565b6000602082840312156126a4578081fd5b5035919050565b600080604083850312156126bd578182fd5b8235915060208301356001600160401b038111156126d9578182fd5b61268985828601612305565b600080604083850312156126f7578182fd5b50508035926020909101359150565b6000815180845261271e81602086016020860161339b565b601f01601f19169290920160200192915050565b80546000906002810460018083168061274c57607f831692505b602080841082141561276c57634e487b7160e01b86526022600452602486fd5b8180156127805760018114612791576127be565b60ff198616895284890196506127be565b61279a886132e3565b60005b868110156127b65781548b82015290850190830161279d565b505084890196505b50505050505092915050565b918252602082015260400190565b600082516127ea81846020870161339b565b9190910192915050565b6000611d2a8284612732565b600061280c8285612732565b835161281c81836020880161339b565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061286c90830184612706565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156128ae57835183529284019291840191600101612892565b50909695505050505050565b901515815260200190565b90815260200190565b600060208252611d2a6020830184612706565b60208082526022908201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b60208082526017908201527f57686974656c697374206973206e6f7420616374697665000000000000000000604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526033908201527f546865207072696365206d75737420626520736d616c6c6572206f7220657175604082015272616c20746f204d41585f4e46545f505249434560681b606082015260800190565b6020808252602a908201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736040820152693a32b73a103a37b5b2b760b11b606082015260800190565b60208082526017908201527f43616e6e6f74206d696e742061626f7665206c696d6974000000000000000000604082015260600190565b60208082526023908201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756040820152626e647360e81b606082015260800190565b60208082526024908201527f455243373231413a20756e61626c6520746f206765742077616c6c65744f664f6040820152633bb732b960e11b606082015260800190565b60208082526025908201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526012908201527153616c65206973206e6f742061637469766560701b604082015260600190565b6020808252601f908201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604082015260600190565b6020808252818101527f42616c616e63652073686f756c64206265206d6f7265207468656e207a65726f604082015260600190565b6020808252600f908201526e139bdd081dda1a5d195b1a5cdd1959608a1b604082015260600190565b60208082526039908201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606082015260800190565b60208082526038908201527f546f6b656e73206e756d62657220746f206d696e742063616e6e6f742065786360408201527f656564206e756d626572206f66204d415820746f6b656e730000000000000000606082015260800190565b6020808252602b908201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60408201526a65726f206164647265737360a81b606082015260800190565b602080825260169082015275436f6e7472616374206973206e6f742061637469766560501b604082015260600190565b6020808252818101527f546865207072696365206d7573742062652067726561746572207468616e2030604082015260600190565b60208082526026908201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746040820152651037bbb732b960d11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b6020808252601a908201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604082015260600190565b60208082526032908201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b6020808252602f908201527f507572636861736520776f756c6420657863656564206d6178207075626c696360408201526e20737570706c79206f66204e46547360881b606082015260800190565b60208082526022908201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60408201526132b960f11b606082015260800190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252601d908201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604082015260600190565b6020808252818101527f50757263686173652065786365656473206d61782077686974656c6973746564604082015260600190565b60208082526021908201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b6020808252602e908201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060408201526d0deeedccae440c4f240d2dcc8caf60931b606082015260800190565b60208082526017908201527f50726573616c65206973207374696c6c20616374697665000000000000000000604082015260600190565b60208082526022908201527f416c6c207075626c696320746f6b656e732068617665206265656e206d696e74604082015261195960f21b606082015260800190565b6020808252602f908201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560408201526e1037bbb732b91037b3103a37b5b2b760891b606082015260800190565b6020808252601b908201527f416c6c20746f6b656e732068617665206265656e206d696e7465640000000000604082015260600190565b6020808252602d908201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560408201526c3c34b9ba32b73a103a37b5b2b760991b606082015260800190565b60208082526022908201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696040820152610ced60f31b606082015260800190565b60208082526018908201527f416c726561647920636c61696d65642067697665617761790000000000000000604082015260600190565b6020808252818101527f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e73604082015260600190565b6040518181016001600160401b03811182821017156132b8576132b8613474565b604052919050565b60006001600160401b038211156132d9576132d9613474565b5060209081020190565b60009081526020902090565b60006001600160801b0380831681851680830382111561281c5761281c613448565b6000821982111561332457613324613448565b500190565b6000826133385761333861345e565b500490565b600081600019048311821515161561335757613357613448565b500290565b60006001600160801b038381169083168181101561337c5761337c613448565b039392505050565b60008282101561339657613396613448565b500390565b60005b838110156133b657818101518382015260200161339e565b838111156116305750506000910152565b6000816133d6576133d6613448565b506000190190565b6002810460018216806133f257607f821691505b6020821081141561341357634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561342d5761342d613448565b5060010190565b6000826134435761344361345e565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461134257600080fdfea26469706673582212202361ab8c0a3075663e3ce0f9abf02a4043fe1cfa3c3446d87b49044205cfa6ce64736f6c63430008000033

Deployed Bytecode

0x6080604052600436106102675760003560e01c80638cdb906911610144578063b533731d116100b6578063e748e07c1161007a578063e748e07c146106b9578063e8254174146106ce578063e985e9c5146106ee578063ebf0c7171461070e578063f2fde38b14610723578063f37484e31461074357610267565b8063b533731d1461062f578063b88d4fde1461064f578063c87b56dd1461066f578063d1d80f301461068f578063d7224ba0146106a457610267565b806395d89b411161010857806395d89b411461059b578063972a2a62146105b0578063a22cb465146105d0578063a38bffda146105f0578063a475b5dd14610605578063aeb167681461061a57610267565b80638cdb90691461052b5780638da5cb5b146105405780638f76696c1461055557806391b7f5ed14610568578063926427441461058857610267565b80633f8121a2116101dd5780634f9b563c116101a15780634f9b563c1461048c5780635f0f45b2146104ac57806360d938dc146104c15780636352211e146104d657806370a08231146104f6578063715018a61461051657610267565b80633f8121a2146103df57806342842e0e146103ff578063438b63001461041f5780634cdb44001461044c5780634f6ccce71461046c57610267565b806322f3e2d41161022f57806322f3e2d4146103355780632333f3c41461034a57806323b872dd1461036a5780632750fc781461038a5780632f745c59146103aa5780633ccfd60b146103ca57610267565b806301ffc9a71461026c57806306fdde03146102a2578063081812fc146102c4578063095ea7b3146102f157806318160ddd14610313575b600080fd5b34801561027857600080fd5b5061028c6102873660046125fb565b610763565b60405161029991906128ba565b60405180910390f35b3480156102ae57600080fd5b506102b76107c6565b60405161029991906128ce565b3480156102d057600080fd5b506102e46102df366004612693565b610858565b6040516102999190612825565b3480156102fd57600080fd5b5061031161030c3660046124c8565b6108a4565b005b34801561031f57600080fd5b5061032861093d565b60405161029991906128c5565b34801561034157600080fd5b5061028c610943565b34801561035657600080fd5b506103286103653660046123a0565b610951565b34801561037657600080fd5b506103116103853660046123ec565b610963565b34801561039657600080fd5b506103116103a53660046125c9565b61096e565b3480156103b657600080fd5b506103286103c53660046124c8565b6109c7565b3480156103d657600080fd5b50610311610ac2565b3480156103eb57600080fd5b506103116103fa3660046125c9565b610b64565b34801561040b57600080fd5b5061031161041a3660046123ec565b610bbf565b34801561042b57600080fd5b5061043f61043a3660046123a0565b610bda565b6040516102999190612876565b34801561045857600080fd5b506103116104673660046124f1565b610d45565b34801561047857600080fd5b50610328610487366004612693565b610e08565b34801561049857600080fd5b506103116104a73660046125c9565b610e34565b3480156104b857600080fd5b50610311610e91565b3480156104cd57600080fd5b5061028c610edf565b3480156104e257600080fd5b506102e46104f1366004612693565b610eee565b34801561050257600080fd5b506103286105113660046123a0565b610f00565b34801561052257600080fd5b50610311610f4d565b34801561053757600080fd5b50610328610f98565b34801561054c57600080fd5b506102e4610f9e565b6103116105633660046126ab565b610fad565b34801561057457600080fd5b50610311610583366004612693565b6111e8565b610311610596366004612693565b61126e565b3480156105a757600080fd5b506102b7611345565b3480156105bc57600080fd5b5061028c6105cb366004612587565b611354565b3480156105dc57600080fd5b506103116105eb36600461249f565b61149c565b3480156105fc57600080fd5b5061032861156a565b34801561061157600080fd5b5061028c611570565b34801561062657600080fd5b50610328611579565b34801561063b57600080fd5b5061031161064a3660046123a0565b61157f565b34801561065b57600080fd5b5061031161066a366004612427565b6115fd565b34801561067b57600080fd5b506102b761068a366004612693565b611636565b34801561069b57600080fd5b506103286116ab565b3480156106b057600080fd5b506103286116b1565b3480156106c557600080fd5b506103286116b7565b3480156106da57600080fd5b506103116106e9366004612633565b6116bc565b3480156106fa57600080fd5b5061028c6107093660046123ba565b611722565b34801561071a57600080fd5b50610328611750565b34801561072f57600080fd5b5061031161073e3660046123a0565b611756565b34801561074f57600080fd5b5061031161075e3660046126e5565b6117c4565b60006001600160e01b031982166380ac58cd60e01b148061079457506001600160e01b03198216635b5e139f60e01b145b806107af57506001600160e01b0319821663780e9d6360e01b145b806107be57506107be8261180e565b90505b919050565b6060600180546107d5906133de565b80601f0160208091040260200160405190810160405280929190818152602001828054610801906133de565b801561084e5780601f106108235761010080835404028352916020019161084e565b820191906000526020600020905b81548152906001019060200180831161083157829003601f168201915b5050505050905090565b600061086382611827565b6108885760405162461bcd60e51b815260040161087f9061319c565b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006108af82610eee565b9050806001600160a01b0316836001600160a01b031614156108e35760405162461bcd60e51b815260040161087f90612f0d565b806001600160a01b03166108f561182e565b6001600160a01b0316148061091157506109118161070961182e565b61092d5760405162461bcd60e51b815260040161087f90612c01565b610938838383611832565b505050565b60005490565b600d54610100900460ff1681565b60106020526000908152604090205481565b61093883838361188e565b61097661182e565b6001600160a01b0316610987610f9e565b6001600160a01b0316146109ad5760405162461bcd60e51b815260040161087f90612db1565b600d80549115156101000261ff0019909216919091179055565b60006109d283610f00565b82106109f05760405162461bcd60e51b815260040161087f906128e1565b60006109fa61093d565b905060008060005b83811015610aa3576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610a5457805192505b876001600160a01b0316836001600160a01b03161415610a905786841415610a8257509350610abc92505050565b83610a8c81613419565b9450505b5080610a9b81613419565b915050610a02565b5060405162461bcd60e51b815260040161087f9061304f565b92915050565b610aca61182e565b6001600160a01b0316610adb610f9e565b6001600160a01b031614610b015760405162461bcd60e51b815260040161087f90612db1565b4780610b1f5760405162461bcd60e51b815260040161087f90612ba3565b60405173ff95c42c8ad36e00c63e6139ad662dce16e3005d9082156108fc029083906000818181858888f19350505050158015610b60573d6000803e3d6000fd5b5050565b610b6c61182e565b6001600160a01b0316610b7d610f9e565b6001600160a01b031614610ba35760405162461bcd60e51b815260040161087f90612db1565b600d8054911515620100000262ff000019909216919091179055565b610938838383604051806020016040528060008152506115fd565b60606000610be783610f00565b90506000816001600160401b03811115610c1157634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610c3a578160200160208202803683370190505b50905081610c4b5791506107c19050565b6000610c5561093d565b905060008060005b83811015610d2c576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610caf57805192505b886001600160a01b0316836001600160a01b03161415610d195781868581518110610cea57634e487b7160e01b600052603260045260246000fd5b602090810291909101015283610cff81613419565b94505086841415610d1957859750505050505050506107c1565b5080610d2481613419565b915050610c5d565b5060405162461bcd60e51b815260040161087f90612ab7565b610d4d61182e565b6001600160a01b0316610d5e610f9e565b6001600160a01b031614610d845760405162461bcd60e51b815260040161087f90612db1565b60005b8151811015610b6057610d05610d9b61093d565b610da6906001613311565b1115610dc45760405162461bcd60e51b815260040161087f90612c5e565b610df6828281518110610de757634e487b7160e01b600052603260045260246000fd5b60200260200101516001611ba0565b80610e0081613419565b915050610d87565b6000610e1261093d565b8210610e305760405162461bcd60e51b815260040161087f90612a74565b5090565b610e3c61182e565b6001600160a01b0316610e4d610f9e565b6001600160a01b031614610e735760405162461bcd60e51b815260040161087f90612db1565b600d805491151563010000000263ff00000019909216919091179055565b610e9961182e565b6001600160a01b0316610eaa610f9e565b6001600160a01b031614610ed05760405162461bcd60e51b815260040161087f90612db1565b600d805460ff19166001179055565b600d5462010000900460ff1681565b6000610ef982611bba565b5192915050565b60006001600160a01b038216610f285760405162461bcd60e51b815260040161087f90612cbb565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b610f5561182e565b6001600160a01b0316610f66610f9e565b6001600160a01b031614610f8c5760405162461bcd60e51b815260040161087f90612db1565b610f966000611ccc565b565b600c5481565b6008546001600160a01b031690565b600d54610100900460ff16610fd45760405162461bcd60e51b815260040161087f90612b40565b600d5462010000900460ff16610ffc5760405162461bcd60e51b815260040161087f90612923565b6110068133611354565b6110225760405162461bcd60e51b815260040161087f90612bd8565b600d546301000000900460ff1661114b57610c6f61103e61093d565b1061105b5760405162461bcd60e51b815260040161087f906130d4565b600f5482111561107d5760405162461bcd60e51b815260040161087f90613262565b610c6f6110928361108c61093d565b90611d1e565b11156110b05760405162461bcd60e51b815260040161087f90612ebe565b600f54336000908152601060205260409020546110cd9084611d1e565b11156110eb5760405162461bcd60e51b815260040161087f90612fd9565b600b5434906110fa9084611d31565b146111175760405162461bcd60e51b815260040161087f90612b6c565b3360009081526010602052604081208054849290611136908490613311565b9091555061114690503383611ba0565b610b60565b610d0561115661093d565b11156111745760405162461bcd60e51b815260040161087f90613165565b816001146111945760405162461bcd60e51b815260040161087f90613262565b3360009081526011602052604090205460ff16156111c45760405162461bcd60e51b815260040161087f9061322b565b336000818152601160205260409020805460ff19166001179055610b609083611ba0565b6111f061182e565b6001600160a01b0316611201610f9e565b6001600160a01b0316146112275760405162461bcd60e51b815260040161087f90612db1565b600c548111156112495760405162461bcd60e51b815260040161087f906129a0565b600081116112695760405162461bcd60e51b815260040161087f90612d36565b600b55565b600d54610100900460ff166112955760405162461bcd60e51b815260040161087f90612d06565b600d5462010000900460ff16156112be5760405162461bcd60e51b815260040161087f9061309d565b600a8111156112df5760405162461bcd60e51b815260040161087f90612a3d565b610c6f6112ee8261108c61093d565b111561130c5760405162461bcd60e51b815260040161087f90612ebe565b600b54349061131b9083611d31565b146113385760405162461bcd60e51b815260040161087f90612b6c565b6113423382611ba0565b50565b6060600280546107d5906133de565b600081815b845181101561149057600085828151811061138457634e487b7160e01b600052603260045260246000fd5b6020026020010151905080831161140b57600283826040516020016113aa9291906127ca565b60408051601f19818403018152908290526113c4916127d8565b602060405180830381855afa1580156113e1573d6000803e3d6000fd5b5050506040513d601f19601f8201168201806040525081019061140491906125e3565b925061147d565b600281846040516020016114209291906127ca565b60408051601f198184030181529082905261143a916127d8565b602060405180830381855afa158015611457573d6000803e3d6000fd5b5050506040513d601f19601f8201168201806040525081019061147a91906125e3565b92505b508061148881613419565b915050611359565b50600e54149392505050565b6114a461182e565b6001600160a01b0316826001600160a01b031614156114d55760405162461bcd60e51b815260040161087f90612e35565b80600660006114e261182e565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff19169215159290921790915561152661182e565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161155e91906128ba565b60405180910390a35050565b600b5481565b600d5460ff1681565b600f5481565b61158761182e565b6001600160a01b0316611598610f9e565b6001600160a01b0316146115be5760405162461bcd60e51b815260040161087f90612db1565b610d056115c961093d565b6115d4906001613311565b11156115f25760405162461bcd60e51b815260040161087f90612c5e565b611342816001611ba0565b61160884848461188e565b61161484848484611d3d565b6116305760405162461bcd60e51b815260040161087f90612f4f565b50505050565b606061164182611827565b61165d5760405162461bcd60e51b815260040161087f90612de6565b600d5460ff1661168f57600a60405160200161167991906127f4565b60405160208183030381529060405290506107c1565b600961169a83611e59565b604051602001611679929190612800565b610c6f81565b60075481565b600a81565b6116c461182e565b6001600160a01b03166116d5610f9e565b6001600160a01b0316146116fb5760405162461bcd60e51b815260040161087f90612db1565b815161170e90600a9060208501906121eb565b5080516109389060099060208401906121eb565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b600e5481565b61175e61182e565b6001600160a01b031661176f610f9e565b6001600160a01b0316146117955760405162461bcd60e51b815260040161087f90612db1565b6001600160a01b0381166117bb5760405162461bcd60e51b815260040161087f9061295a565b61134281611ccc565b6117cc61182e565b6001600160a01b03166117dd610f9e565b6001600160a01b0316146118035760405162461bcd60e51b815260040161087f90612db1565b600e91909155600f55565b6001600160e01b031981166301ffc9a760e01b14919050565b6000541190565b3390565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061189982611bba565b9050600081600001516001600160a01b03166118b361182e565b6001600160a01b031614806118e857506118cb61182e565b6001600160a01b03166118dd84610858565b6001600160a01b0316145b806118fc575081516118fc9061070961182e565b90508061191b5760405162461bcd60e51b815260040161087f90612e6c565b846001600160a01b031682600001516001600160a01b0316146119505760405162461bcd60e51b815260040161087f90612d6b565b6001600160a01b0384166119765760405162461bcd60e51b815260040161087f90612afb565b6119838585856001611630565b6119936000848460000151611832565b6001600160a01b03851660009081526004602052604081208054600192906119c59084906001600160801b031661335c565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526004602052604081208054600194509092611a11918591166132ef565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526003909152948520935184549151909216600160a01b0267ffffffffffffffff60a01b19929093166001600160a01b03199091161716179055611aa6846001613311565b6000818152600360205260409020549091506001600160a01b0316611b4a57611ace81611827565b15611b4a5760408051808201825284516001600160a01b0390811682526020808701516001600160401b0390811682850190815260008781526003909352949091209251835494516001600160a01b031990951692169190911767ffffffffffffffff60a01b1916600160a01b93909116929092029190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611b988686866001611630565b505050505050565b610b60828260405180602001604052806000815250611f73565b611bc261226b565b611bcb82611827565b611be75760405162461bcd60e51b815260040161087f906129f3565b60007f000000000000000000000000000000000000000000000000000000000000000a8310611c4857611c3a7f000000000000000000000000000000000000000000000000000000000000000a84613384565b611c45906001613311565b90505b825b818110611cb3576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215611ca05792506107c1915050565b5080611cab816133c7565b915050611c4a565b5060405162461bcd60e51b815260040161087f90613116565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000611d2a8284613311565b9392505050565b6000611d2a828461333d565b6000611d51846001600160a01b03166121e5565b15611e4d57836001600160a01b031663150b7a02611d6d61182e565b8786866040518563ffffffff1660e01b8152600401611d8f9493929190612839565b602060405180830381600087803b158015611da957600080fd5b505af1925050508015611dd9575060408051601f3d908101601f19168201909252611dd691810190612617565b60015b611e33573d808015611e07576040519150601f19603f3d011682016040523d82523d6000602084013e611e0c565b606091505b508051611e2b5760405162461bcd60e51b815260040161087f90612f4f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611e51565b5060015b949350505050565b606081611e7e57506040805180820190915260018152600360fc1b60208201526107c1565b8160005b8115611ea85780611e9281613419565b9150611ea19050600a83613329565b9150611e82565b6000816001600160401b03811115611ed057634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611efa576020820181803683370190505b5090505b8415611e5157611f0f600183613384565b9150611f1c600a86613434565b611f27906030613311565b60f81b818381518110611f4a57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611f6c600a86613329565b9450611efe565b6000546001600160a01b038416611f9c5760405162461bcd60e51b815260040161087f9061300e565b611fa581611827565b15611fc25760405162461bcd60e51b815260040161087f90612fa2565b7f000000000000000000000000000000000000000000000000000000000000000a8311156120025760405162461bcd60e51b815260040161087f906131e9565b61200f6000858386611630565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b909104169181019190915281518083019092528051909190819061206b9087906132ef565b6001600160801b0316815260200185836020015161208991906132ef565b6001600160801b039081169091526001600160a01b03808816600081815260046020908152604080832087518154988401518816600160801b029088166fffffffffffffffffffffffffffffffff199099169890981790961696909617909455845180860186529182526001600160401b034281168386019081528883526003909552948120915182549451909516600160a01b0267ffffffffffffffff60a01b19959093166001600160a01b031990941693909317939093161790915582905b858110156121d35760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46121976000888488611d3d565b6121b35760405162461bcd60e51b815260040161087f90612f4f565b816121bd81613419565b92505080806121cb90613419565b91505061214a565b506000818155611b9890878588611630565b3b151590565b8280546121f7906133de565b90600052602060002090601f016020900481019282612219576000855561225f565b82601f1061223257805160ff191683800117855561225f565b8280016001018555821561225f579182015b8281111561225f578251825591602001919060010190612244565b50610e30929150612282565b604080518082019091526000808252602082015290565b5b80821115610e305760008155600101612283565b60006001600160401b038311156122b0576122b0613474565b6122c3601f8401601f1916602001613297565b90508281528383830111156122d757600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146107c157600080fd5b600082601f830112612315578081fd5b8135602061232a612325836132c0565b613297565b8281528181019085830183850287018401881015612346578586fd5b855b8581101561236457813584529284019290840190600101612348565b5090979650505050505050565b803580151581146107c157600080fd5b600082601f830112612391578081fd5b611d2a83833560208501612297565b6000602082840312156123b1578081fd5b611d2a826122ee565b600080604083850312156123cc578081fd5b6123d5836122ee565b91506123e3602084016122ee565b90509250929050565b600080600060608486031215612400578081fd5b612409846122ee565b9250612417602085016122ee565b9150604084013590509250925092565b6000806000806080858703121561243c578081fd5b612445856122ee565b9350612453602086016122ee565b92506040850135915060608501356001600160401b03811115612474578182fd5b8501601f81018713612484578182fd5b61249387823560208401612297565b91505092959194509250565b600080604083850312156124b1578182fd5b6124ba836122ee565b91506123e360208401612371565b600080604083850312156124da578182fd5b6124e3836122ee565b946020939093013593505050565b60006020808385031215612503578182fd5b82356001600160401b03811115612518578283fd5b8301601f81018513612528578283fd5b8035612536612325826132c0565b8181528381019083850185840285018601891015612552578687fd5b8694505b8385101561257b57612567816122ee565b835260019490940193918501918501612556565b50979650505050505050565b60008060408385031215612599578182fd5b82356001600160401b038111156125ae578283fd5b6125ba85828601612305565b95602094909401359450505050565b6000602082840312156125da578081fd5b611d2a82612371565b6000602082840312156125f4578081fd5b5051919050565b60006020828403121561260c578081fd5b8135611d2a8161348a565b600060208284031215612628578081fd5b8151611d2a8161348a565b60008060408385031215612645578182fd5b82356001600160401b038082111561265b578384fd5b61266786838701612381565b9350602085013591508082111561267c578283fd5b5061268985828601612381565b9150509250929050565b6000602082840312156126a4578081fd5b5035919050565b600080604083850312156126bd578182fd5b8235915060208301356001600160401b038111156126d9578182fd5b61268985828601612305565b600080604083850312156126f7578182fd5b50508035926020909101359150565b6000815180845261271e81602086016020860161339b565b601f01601f19169290920160200192915050565b80546000906002810460018083168061274c57607f831692505b602080841082141561276c57634e487b7160e01b86526022600452602486fd5b8180156127805760018114612791576127be565b60ff198616895284890196506127be565b61279a886132e3565b60005b868110156127b65781548b82015290850190830161279d565b505084890196505b50505050505092915050565b918252602082015260400190565b600082516127ea81846020870161339b565b9190910192915050565b6000611d2a8284612732565b600061280c8285612732565b835161281c81836020880161339b565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061286c90830184612706565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156128ae57835183529284019291840191600101612892565b50909695505050505050565b901515815260200190565b90815260200190565b600060208252611d2a6020830184612706565b60208082526022908201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b60208082526017908201527f57686974656c697374206973206e6f7420616374697665000000000000000000604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526033908201527f546865207072696365206d75737420626520736d616c6c6572206f7220657175604082015272616c20746f204d41585f4e46545f505249434560681b606082015260800190565b6020808252602a908201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736040820152693a32b73a103a37b5b2b760b11b606082015260800190565b60208082526017908201527f43616e6e6f74206d696e742061626f7665206c696d6974000000000000000000604082015260600190565b60208082526023908201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756040820152626e647360e81b606082015260800190565b60208082526024908201527f455243373231413a20756e61626c6520746f206765742077616c6c65744f664f6040820152633bb732b960e11b606082015260800190565b60208082526025908201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526012908201527153616c65206973206e6f742061637469766560701b604082015260600190565b6020808252601f908201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604082015260600190565b6020808252818101527f42616c616e63652073686f756c64206265206d6f7265207468656e207a65726f604082015260600190565b6020808252600f908201526e139bdd081dda1a5d195b1a5cdd1959608a1b604082015260600190565b60208082526039908201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606082015260800190565b60208082526038908201527f546f6b656e73206e756d62657220746f206d696e742063616e6e6f742065786360408201527f656564206e756d626572206f66204d415820746f6b656e730000000000000000606082015260800190565b6020808252602b908201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60408201526a65726f206164647265737360a81b606082015260800190565b602080825260169082015275436f6e7472616374206973206e6f742061637469766560501b604082015260600190565b6020808252818101527f546865207072696365206d7573742062652067726561746572207468616e2030604082015260600190565b60208082526026908201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746040820152651037bbb732b960d11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b6020808252601a908201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604082015260600190565b60208082526032908201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b6020808252602f908201527f507572636861736520776f756c6420657863656564206d6178207075626c696360408201526e20737570706c79206f66204e46547360881b606082015260800190565b60208082526022908201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60408201526132b960f11b606082015260800190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252601d908201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604082015260600190565b6020808252818101527f50757263686173652065786365656473206d61782077686974656c6973746564604082015260600190565b60208082526021908201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b6020808252602e908201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060408201526d0deeedccae440c4f240d2dcc8caf60931b606082015260800190565b60208082526017908201527f50726573616c65206973207374696c6c20616374697665000000000000000000604082015260600190565b60208082526022908201527f416c6c207075626c696320746f6b656e732068617665206265656e206d696e74604082015261195960f21b606082015260800190565b6020808252602f908201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560408201526e1037bbb732b91037b3103a37b5b2b760891b606082015260800190565b6020808252601b908201527f416c6c20746f6b656e732068617665206265656e206d696e7465640000000000604082015260600190565b6020808252602d908201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560408201526c3c34b9ba32b73a103a37b5b2b760991b606082015260800190565b60208082526022908201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696040820152610ced60f31b606082015260800190565b60208082526018908201527f416c726561647920636c61696d65642067697665617761790000000000000000604082015260600190565b6020808252818101527f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e73604082015260600190565b6040518181016001600160401b03811182821017156132b8576132b8613474565b604052919050565b60006001600160401b038211156132d9576132d9613474565b5060209081020190565b60009081526020902090565b60006001600160801b0380831681851680830382111561281c5761281c613448565b6000821982111561332457613324613448565b500190565b6000826133385761333861345e565b500490565b600081600019048311821515161561335757613357613448565b500290565b60006001600160801b038381169083168181101561337c5761337c613448565b039392505050565b60008282101561339657613396613448565b500390565b60005b838110156133b657818101518382015260200161339e565b838111156116305750506000910152565b6000816133d6576133d6613448565b506000190190565b6002810460018216806133f257607f821691505b6020821081141561341357634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561342d5761342d613448565b5060010190565b6000826134435761344361345e565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461134257600080fdfea26469706673582212202361ab8c0a3075663e3ce0f9abf02a4043fe1cfa3c3446d87b49044205cfa6ce64736f6c63430008000033

Deployed Bytecode Sourcemap

66177:7463:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53937:370;;;;;;;;;;-1:-1:-1;53937:370:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55663:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;57188:204::-;;;;;;;;;;-1:-1:-1;57188:204:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;56751:379::-;;;;;;;;;;-1:-1:-1;56751:379:0;;;;;:::i;:::-;;:::i;:::-;;51664:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;66709:20::-;;;;;;;;;;;;;:::i;66874:51::-;;;;;;;;;;-1:-1:-1;66874:51:0;;;;;:::i;:::-;;:::i;58038:150::-;;;;;;;;;;-1:-1:-1;58038:150:0;;;;;:::i;:::-;;:::i;67250:137::-;;;;;;;;;;-1:-1:-1;67250:137:0;;;;;:::i;:::-;;:::i;52292:744::-;;;;;;;;;;-1:-1:-1;52292:744:0;;;;;:::i;:::-;;:::i;68283:280::-;;;;;;;;;;;;;:::i;67504:149::-;;;;;;;;;;-1:-1:-1;67504:149:0;;;;;:::i;:::-;;:::i;58251:165::-;;;;;;;;;;-1:-1:-1;58251:165:0;;;;;:::i;:::-;;:::i;53042:831::-;;;;;;;;;;-1:-1:-1;53042:831:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;71280:325::-;;;;;;;;;;-1:-1:-1;71280:325:0;;;;;:::i;:::-;;:::i;51827:177::-;;;;;;;;;;-1:-1:-1;51827:177:0;;;;;:::i;:::-;;:::i;67763:149::-;;;;;;;;;;-1:-1:-1;67763:149:0;;;;;:::i;:::-;;:::i;67052:98::-;;;;;;;;;;;;;:::i;66736:27::-;;;;;;;;;;;;;:::i;55486:118::-;;;;;;;;;;-1:-1:-1;55486:118:0;;;;;:::i;:::-;;:::i;54363:211::-;;;;;;;;;;-1:-1:-1;54363:211:0;;;;;:::i;:::-;;:::i;2503:94::-;;;;;;;;;;;;;:::i;66611:49::-;;;;;;;;;;;;;:::i;1852:87::-;;;;;;;;;;;;;:::i;69457:1410::-;;;;;;:::i;:::-;;:::i;72511:298::-;;;;;;;;;;-1:-1:-1;72511:298:0;;;;;:::i;:::-;;:::i;68728:571::-;;;;;;:::i;:::-;;:::i;55818:98::-;;;;;;;;;;;;;:::i;72844:786::-;;;;;;;;;;-1:-1:-1;72844:786:0;;;;;:::i;:::-;;:::i;57456:274::-;;;;;;;;;;-1:-1:-1;57456:274:0;;;;;:::i;:::-;;:::i;66547:44::-;;;;;;;;;;;;;:::i;66684:18::-;;;;;;;;;;;;;:::i;66830:37::-;;;;;;;;;;;;;:::i;70955:233::-;;;;;;;;;;-1:-1:-1;70955:233:0;;;;;:::i;:::-;;:::i;58479:319::-;;;;;;;;;;-1:-1:-1;58479:319:0;;;;;:::i;:::-;;:::i;71749:441::-;;;;;;;;;;-1:-1:-1;71749:441:0;;;;;:::i;:::-;;:::i;66449:45::-;;;;;;;;;;;;;:::i;62818:43::-;;;;;;;;;;;;;:::i;66397:45::-;;;;;;;;;;;;;:::i;67984:197::-;;;;;;;;;;-1:-1:-1;67984:197:0;;;;;:::i;:::-;;:::i;57793:186::-;;;;;;;;;;-1:-1:-1;57793:186:0;;;;;:::i;:::-;;:::i;66804:19::-;;;;;;;;;;;;;:::i;2752:192::-;;;;;;;;;;-1:-1:-1;2752:192:0;;;;;:::i;:::-;;:::i;72270:144::-;;;;;;;;;;-1:-1:-1;72270:144:0;;;;;:::i;:::-;;:::i;53937:370::-;54064:4;-1:-1:-1;;;;;;54094:40:0;;-1:-1:-1;;;54094:40:0;;:99;;-1:-1:-1;;;;;;;54145:48:0;;-1:-1:-1;;;54145:48:0;54094:99;:160;;;-1:-1:-1;;;;;;;54204:50:0;;-1:-1:-1;;;54204:50:0;54094:160;:207;;;;54265:36;54289:11;54265:23;:36::i;:::-;54080:221;;53937:370;;;;:::o;55663:94::-;55717:13;55746:5;55739:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55663:94;:::o;57188:204::-;57256:7;57280:16;57288:7;57280;:16::i;:::-;57272:74;;;;-1:-1:-1;;;57272:74:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;57362:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;57362:24:0;;57188:204::o;56751:379::-;56820:13;56836:24;56852:7;56836:15;:24::i;:::-;56820:40;;56881:5;-1:-1:-1;;;;;56875:11:0;:2;-1:-1:-1;;;;;56875:11:0;;;56867:58;;;;-1:-1:-1;;;56867:58:0;;;;;;;:::i;:::-;56966:5;-1:-1:-1;;;;;56950:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;56950:21:0;;:62;;;;56975:37;56992:5;56999:12;:10;:12::i;56975:37::-;56934:153;;;;-1:-1:-1;;;56934:153:0;;;;;;;:::i;:::-;57096:28;57105:2;57109:7;57118:5;57096:8;:28::i;:::-;56751:379;;;:::o;51664:94::-;51717:7;51740:12;51664:94;:::o;66709:20::-;;;;;;;;;:::o;66874:51::-;;;;;;;;;;;;;:::o;58038:150::-;58154:28;58164:4;58170:2;58174:7;58154:9;:28::i;67250:137::-;2083:12;:10;:12::i;:::-;-1:-1:-1;;;;;2072:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2072:23:0;;2064:68;;;;-1:-1:-1;;;2064:68:0;;;;;;;:::i;:::-;67359:8:::1;:20:::0;;;::::1;;;;-1:-1:-1::0;;67359:20:0;;::::1;::::0;;;::::1;::::0;;67250:137::o;52292:744::-;52401:7;52436:16;52446:5;52436:9;:16::i;:::-;52428:5;:24;52420:71;;;;-1:-1:-1;;;52420:71:0;;;;;;;:::i;:::-;52498:22;52523:13;:11;:13::i;:::-;52498:38;;52543:19;52573:25;52623:9;52618:350;52642:14;52638:1;:18;52618:350;;;52672:31;52706:14;;;:11;:14;;;;;;;;;52672:48;;;;;;;;;-1:-1:-1;;;;;52672:48:0;;;;;-1:-1:-1;;;52672:48:0;;;-1:-1:-1;;;;;52672:48:0;;;;;;;;52733:28;52729:89;;52794:14;;;-1:-1:-1;52729:89:0;52851:5;-1:-1:-1;;;;;52830:26:0;:17;-1:-1:-1;;;;;52830:26:0;;52826:135;;;52888:5;52873:11;:20;52869:59;;;-1:-1:-1;52915:1:0;-1:-1:-1;52908:8:0;;-1:-1:-1;;;52908:8:0;52869:59;52938:13;;;;:::i;:::-;;;;52826:135;-1:-1:-1;52658:3:0;;;;:::i;:::-;;;;52618:350;;;;52974:56;;-1:-1:-1;;;52974:56:0;;;;;;;:::i;52292:744::-;;;;;:::o;68283:280::-;2083:12;:10;:12::i;:::-;-1:-1:-1;;;;;2072:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2072:23:0;;2064:68;;;;-1:-1:-1;;;2064:68:0;;;;;;;:::i;:::-;68378:21:::1;68418:11:::0;68410:56:::1;;;;-1:-1:-1::0;;;68410:56:0::1;;;;;;;:::i;:::-;68477:78;::::0;68493:42:::1;::::0;68477:78;::::1;;;::::0;68547:7;;68477:78:::1;::::0;;;68547:7;68493:42;68477:78;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;2143:1;68283:280::o:0;67504:149::-;2083:12;:10;:12::i;:::-;-1:-1:-1;;;;;2072:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2072:23:0;;2064:68;;;;-1:-1:-1;;;2064:68:0;;;;;;;:::i;:::-;67618:15:::1;:27:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;67618:27:0;;::::1;::::0;;;::::1;::::0;;67504:149::o;58251:165::-;58371:39;58388:4;58394:2;58398:7;58371:39;;;;;;;;;;;;:16;:39::i;53042:831::-;53100:16;53125:18;53146:16;53156:5;53146:9;:16::i;:::-;53125:37;;53171:25;53213:10;-1:-1:-1;;;;;53199:25:0;;;;;-1:-1:-1;;;53199:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53199:25:0;-1:-1:-1;53171:53:0;-1:-1:-1;53235:15:0;53231:58;;53273:8;-1:-1:-1;53266:15:0;;-1:-1:-1;53266:15:0;53231:58;53297:22;53322:13;:11;:13::i;:::-;53297:38;;53342:19;53372:25;53422:9;53417:398;53441:14;53437:1;:18;53417:398;;;53471:31;53505:14;;;:11;:14;;;;;;;;;53471:48;;;;;;;;;-1:-1:-1;;;;;53471:48:0;;;;;-1:-1:-1;;;53471:48:0;;;-1:-1:-1;;;;;53471:48:0;;;;;;;;53532:28;53528:89;;53593:14;;;-1:-1:-1;53528:89:0;53650:5;-1:-1:-1;;;;;53629:26:0;:17;-1:-1:-1;;;;;53629:26:0;;53625:183;;;53692:1;53668:8;53677:11;53668:21;;;;;;-1:-1:-1;;;53668:21:0;;;;;;;;;;;;;;;;;;:25;53704:13;;;;:::i;:::-;;;;53747:10;53732:11;:25;53728:71;;;53779:8;53772:15;;;;;;;;;;;53728:71;-1:-1:-1;53457:3:0;;;;:::i;:::-;;;;53417:398;;;;53821:46;;-1:-1:-1;;;53821:46:0;;;;;;;:::i;71280:325::-;2083:12;:10;:12::i;:::-;-1:-1:-1;;;;;2072:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2072:23:0;;2064:68;;;;-1:-1:-1;;;2064:68:0;;;;;;;:::i;:::-;71406:9:::1;71402:196;71425:3;:10;71421:1;:14;71402:196;;;66536:4;71464:13;:11;:13::i;:::-;:15;::::0;71478:1:::1;71464:15;:::i;:::-;:26;;71456:95;;;;-1:-1:-1::0;;;71456:95:0::1;;;;;;;:::i;:::-;71566:20;71576:3;71580:1;71576:6;;;;;;-1:-1:-1::0;;;71576:6:0::1;;;;;;;;;;;;;;;71584:1;71566:9;:20::i;:::-;71437:3:::0;::::1;::::0;::::1;:::i;:::-;;;;71402:196;;51827:177:::0;51894:7;51926:13;:11;:13::i;:::-;51918:5;:21;51910:69;;;;-1:-1:-1;;;51910:69:0;;;;;;;:::i;:::-;-1:-1:-1;51993:5:0;51827:177::o;67763:149::-;2083:12;:10;:12::i;:::-;-1:-1:-1;;;;;2072:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2072:23:0;;2064:68;;;;-1:-1:-1;;;2064:68:0;;;;;;;:::i;:::-;67878:14:::1;:26:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;67878:26:0;;::::1;::::0;;;::::1;::::0;;67763:149::o;67052:98::-;2083:12;:10;:12::i;:::-;-1:-1:-1;;;;;2072:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2072:23:0;;2064:68;;;;-1:-1:-1;;;2064:68:0;;;;;;;:::i;:::-;67129:6:::1;:13:::0;;-1:-1:-1;;67129:13:0::1;67138:4;67129:13;::::0;;67052:98::o;66736:27::-;;;;;;;;;:::o;55486:118::-;55550:7;55573:20;55585:7;55573:11;:20::i;:::-;:25;;55486:118;-1:-1:-1;;55486:118:0:o;54363:211::-;54427:7;-1:-1:-1;;;;;54451:19:0;;54443:75;;;;-1:-1:-1;;;54443:75:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;54540:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;54540:27:0;;54363:211::o;2503:94::-;2083:12;:10;:12::i;:::-;-1:-1:-1;;;;;2072:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2072:23:0;;2064:68;;;;-1:-1:-1;;;2064:68:0;;;;;;;:::i;:::-;2568:21:::1;2586:1;2568:9;:21::i;:::-;2503:94::o:0;66611:49::-;;;;:::o;1852:87::-;1925:6;;-1:-1:-1;;;;;1925:6:0;1852:87;:::o;69457:1410::-;69618:8;;;;;;;69610:39;;;;-1:-1:-1;;;69610:39:0;;;;;;;:::i;:::-;69668:15;;;;;;;69660:51;;;;-1:-1:-1;;;69660:51:0;;;;;;;:::i;:::-;69730:53;69737:6;69769:10;69730:6;:53::i;:::-;69722:81;;;;-1:-1:-1;;;69722:81:0;;;;;;;:::i;:::-;69819:14;;;;;;;69814:1046;;66490:4;69857:13;:11;:13::i;:::-;:30;69849:77;;;;-1:-1:-1;;;69849:77:0;;;;;;;:::i;:::-;69965:18;;69949:12;:34;;69941:79;;;;-1:-1:-1;;;69941:79:0;;;;;;;:::i;:::-;66490:4;70043:31;70061:12;70043:13;:11;:13::i;:::-;:17;;:31::i;:::-;:49;;70035:109;;;;-1:-1:-1;;;70035:109:0;;;;;;;:::i;:::-;70217:18;;70184:10;70167:28;;;;:16;:28;;;;;;:46;;70200:12;70167:32;:46::i;:::-;:68;;70159:113;;;;-1:-1:-1;;;70159:113:0;;;;;;;:::i;:::-;70295:8;;70325:9;;70295:26;;70308:12;70295;:26::i;:::-;:39;70287:83;;;;-1:-1:-1;;;70287:83:0;;;;;;;:::i;:::-;70402:10;70385:28;;;;:16;:28;;;;;:44;;70417:12;;70385:28;:44;;70417:12;;70385:44;:::i;:::-;;;;-1:-1:-1;70444:35:0;;-1:-1:-1;70454:10:0;70466:12;70444:9;:35::i;:::-;69814:1046;;;66536:4;70528:13;:11;:13::i;:::-;:24;;70520:64;;;;-1:-1:-1;;;70520:64:0;;;;;;;:::i;:::-;70607:12;70623:1;70607:17;70599:62;;;;-1:-1:-1;;;70599:62:0;;;;;;;:::i;:::-;70705:10;70685:31;;;;:19;:31;;;;;;;;70684:32;70676:69;;;;-1:-1:-1;;;70676:69:0;;;;;;;:::i;:::-;70780:10;70760:31;;;;:19;:31;;;;;:38;;-1:-1:-1;;70760:38:0;70794:4;70760:38;;;70813:35;;70835:12;70813:9;:35::i;72511:298::-;2083:12;:10;:12::i;:::-;-1:-1:-1;;;;;2072:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2072:23:0;;2064:68;;;;-1:-1:-1;;;2064:68:0;;;;;;;:::i;:::-;72638:13:::1;;72628:6;:23;;72620:87;;;;-1:-1:-1::0;;;72620:87:0::1;;;;;;;:::i;:::-;72735:1;72726:6;:10;72718:55;;;;-1:-1:-1::0;;;72718:55:0::1;;;;;;;:::i;:::-;72784:8;:17:::0;72511:298::o;68728:571::-;68840:8;;;;;;;68832:43;;;;-1:-1:-1;;;68832:43:0;;;;;;;:::i;:::-;68895:15;;;;;;;68894:16;68886:52;;;;-1:-1:-1;;;68886:52:0;;;;;;;:::i;:::-;66440:2;68957:12;:32;;68949:68;;;;-1:-1:-1;;;68949:68:0;;;;;;;:::i;:::-;66490:4;69036:31;69054:12;69036:13;:11;:13::i;:31::-;:49;;69028:109;;;;-1:-1:-1;;;69028:109:0;;;;;;;:::i;:::-;69156:8;;69186:9;;69156:26;;69169:12;69156;:26::i;:::-;:39;69148:83;;;;-1:-1:-1;;;69148:83:0;;;;;;;:::i;:::-;69256:35;69266:10;69278:12;69256:9;:35::i;:::-;68728:571;:::o;55818:98::-;55874:13;55903:7;55896:14;;;;;:::i;72844:786::-;72919:4;72959;72919;72976:531;73000:5;:12;72996:1;:16;72976:531;;;73034:20;73057:5;73063:1;73057:8;;;;;;-1:-1:-1;;;73057:8:0;;;;;;;;;;;;;;;73034:31;;73114:12;73098;:28;73094:402;;73241:52;73265:12;73279;73248:44;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;73248:44:0;;;;;;;;;;73241:52;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;73226:67;;73094:402;;;73428:52;73452:12;73466;73435:44;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;73435:44:0;;;;;;;;;;73428:52;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;73413:67;;73094:402;-1:-1:-1;73014:3:0;;;;:::i;:::-;;;;72976:531;;;-1:-1:-1;73618:4:0;;73602:20;;72844:786;-1:-1:-1;;;72844:786:0:o;57456:274::-;57559:12;:10;:12::i;:::-;-1:-1:-1;;;;;57547:24:0;:8;-1:-1:-1;;;;;57547:24:0;;;57539:63;;;;-1:-1:-1;;;57539:63:0;;;;;;;:::i;:::-;57656:8;57611:18;:32;57630:12;:10;:12::i;:::-;-1:-1:-1;;;;;57611:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;57611:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;57611:53:0;;;;;;;;;;;57691:12;:10;:12::i;:::-;-1:-1:-1;;;;;57676:48:0;;57715:8;57676:48;;;;;;:::i;:::-;;;;;;;;57456:274;;:::o;66547:44::-;;;;:::o;66684:18::-;;;;;;:::o;66830:37::-;;;;:::o;70955:233::-;2083:12;:10;:12::i;:::-;-1:-1:-1;;;;;2072:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2072:23:0;;2064:68;;;;-1:-1:-1;;;2064:68:0;;;;;;;:::i;:::-;66536:4:::1;71065:13;:11;:13::i;:::-;:15;::::0;71079:1:::1;71065:15;:::i;:::-;:26;;71057:95;;;;-1:-1:-1::0;;;71057:95:0::1;;;;;;;:::i;:::-;71163:17;71173:3;71178:1;71163:9;:17::i;58479:319::-:0;58624:28;58634:4;58640:2;58644:7;58624:9;:28::i;:::-;58675:48;58698:4;58704:2;58708:7;58717:5;58675:22;:48::i;:::-;58659:133;;;;-1:-1:-1;;;58659:133:0;;;;;;;:::i;:::-;58479:319;;;;:::o;71749:441::-;71888:13;71928:17;71936:8;71928:7;:17::i;:::-;71920:77;;;;-1:-1:-1;;;71920:77:0;;;;;;;:::i;:::-;72013:6;;;;72008:175;;72067:8;72050:26;;;;;;;;:::i;:::-;;;;;;;;;;;;;72036:41;;;;72008:175;72141:7;72150:19;:8;:17;:19::i;:::-;72124:46;;;;;;;;;:::i;66449:45::-;66490:4;66449:45;:::o;62818:43::-;;;;:::o;66397:45::-;66440:2;66397:45;:::o;67984:197::-;2083:12;:10;:12::i;:::-;-1:-1:-1;;;;;2072:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2072:23:0;;2064:68;;;;-1:-1:-1;;;2064:68:0;;;;;;;:::i;:::-;68128:20;;::::1;::::0;:8:::1;::::0;:20:::1;::::0;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;68159:14:0;;::::1;::::0;:7:::1;::::0;:14:::1;::::0;::::1;::::0;::::1;:::i;57793:186::-:0;-1:-1:-1;;;;;57938:25:0;;;57915:4;57938:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;57793:186::o;66804:19::-;;;;:::o;2752:192::-;2083:12;:10;:12::i;:::-;-1:-1:-1;;;;;2072:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2072:23:0;;2064:68;;;;-1:-1:-1;;;2064:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2841:22:0;::::1;2833:73;;;;-1:-1:-1::0;;;2833:73:0::1;;;;;;;:::i;:::-;2917:19;2927:8;2917:9;:19::i;72270:144::-:0;2083:12;:10;:12::i;:::-;-1:-1:-1;;;;;2072:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2072:23:0;;2064:68;;;;-1:-1:-1;;;2064:68:0;;;;;;;:::i;:::-;72351:4:::1;:21:::0;;;;72383:18:::1;:23:::0;72270:144::o;21277:157::-;-1:-1:-1;;;;;;21386:40:0;;-1:-1:-1;;;21386:40:0;21277:157;;;:::o;59037:105::-;59094:4;59124:12;-1:-1:-1;59114:22:0;59037:105::o;665:98::-;745:10;665:98;:::o;62640:172::-;62737:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;62737:29:0;-1:-1:-1;;;;;62737:29:0;;;;;;;;;62778:28;;62737:24;;62778:28;;;;;;;62640:172;;;:::o;61005:1529::-;61102:35;61140:20;61152:7;61140:11;:20::i;:::-;61102:58;;61169:22;61211:13;:18;;;-1:-1:-1;;;;;61195:34:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;61195:34:0;;:81;;;;61264:12;:10;:12::i;:::-;-1:-1:-1;;;;;61240:36:0;:20;61252:7;61240:11;:20::i;:::-;-1:-1:-1;;;;;61240:36:0;;61195:81;:142;;;-1:-1:-1;61304:18:0;;61287:50;;61324:12;:10;:12::i;61287:50::-;61169:169;;61363:17;61347:101;;;;-1:-1:-1;;;61347:101:0;;;;;;;:::i;:::-;61495:4;-1:-1:-1;;;;;61473:26:0;:13;:18;;;-1:-1:-1;;;;;61473:26:0;;61457:98;;;;-1:-1:-1;;;61457:98:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;61570:16:0;;61562:66;;;;-1:-1:-1;;;61562:66:0;;;;;;;:::i;:::-;61637:43;61659:4;61665:2;61669:7;61678:1;61637:21;:43::i;:::-;61737:49;61754:1;61758:7;61767:13;:18;;;61737:8;:49::i;:::-;-1:-1:-1;;;;;61795:18:0;;;;;;:12;:18;;;;;:31;;61825:1;;61795:18;:31;;61825:1;;-1:-1:-1;;;;;61795:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;61795:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;61833:16:0;;-1:-1:-1;61833:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;61833:16:0;;:29;;-1:-1:-1;;61833:29:0;;:::i;:::-;;;-1:-1:-1;;;;;61833:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;61892:43:0;;;;;;;;-1:-1:-1;;;;;61892:43:0;;;;;-1:-1:-1;;;;;61918:15:0;61892:43;;;;;;;;;-1:-1:-1;61869:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;61869:66:0;-1:-1:-1;;;;61869:66:0;;;;-1:-1:-1;;;;;;61869:66:0;;;;;;;;62185:11;61881:7;-1:-1:-1;62185:11:0;:::i;:::-;62248:1;62207:24;;;:11;:24;;;;;:29;62163:33;;-1:-1:-1;;;;;;62207:29:0;62203:236;;62265:20;62273:11;62265:7;:20::i;:::-;62261:171;;;62325:97;;;;;;;;62352:18;;-1:-1:-1;;;;;62325:97:0;;;;;;62383:28;;;;-1:-1:-1;;;;;62325:97:0;;;;;;;;;-1:-1:-1;62298:24:0;;;:11;:24;;;;;;;:124;;;;;;-1:-1:-1;;;;;;62298:124:0;;;;;;;;;-1:-1:-1;;;;62298:124:0;-1:-1:-1;;;62298:124:0;;;;;;;;;;;;;;62261:171;62471:7;62467:2;-1:-1:-1;;;;;62452:27:0;62461:4;-1:-1:-1;;;;;62452:27:0;;;;;;;;;;;62486:42;62507:4;62513:2;62517:7;62526:1;62486:20;:42::i;:::-;61005:1529;;;;;;:::o;59148:98::-;59213:27;59223:2;59227:8;59213:27;;;;;;;;;;;;:9;:27::i;54826:606::-;54902:21;;:::i;:::-;54943:16;54951:7;54943;:16::i;:::-;54935:71;;;;-1:-1:-1;;;54935:71:0;;;;;;;:::i;:::-;55015:26;55063:12;55052:7;:23;55048:93;;55107:22;55117:12;55107:7;:22;:::i;:::-;:26;;55132:1;55107:26;:::i;:::-;55086:47;;55048:93;55169:7;55149:212;55186:18;55178:4;:26;55149:212;;55223:31;55257:17;;;:11;:17;;;;;;;;;55223:51;;;;;;;;;-1:-1:-1;;;;;55223:51:0;;;;;-1:-1:-1;;;55223:51:0;;;-1:-1:-1;;;;;55223:51:0;;;;;;;;55287:28;55283:71;;55335:9;-1:-1:-1;55328:16:0;;-1:-1:-1;;55328:16:0;55283:71;-1:-1:-1;55206:6:0;;;;:::i;:::-;;;;55149:212;;;;55369:57;;-1:-1:-1;;;55369:57:0;;;;;;;:::i;2952:173::-;3027:6;;;-1:-1:-1;;;;;3044:17:0;;;-1:-1:-1;;;;;;3044:17:0;;;;;;;3077:40;;3027:6;;;3044:17;3027:6;;3077:40;;3008:16;;3077:40;2952:173;;:::o;45649:98::-;45707:7;45734:5;45738:1;45734;:5;:::i;:::-;45727:12;45649:98;-1:-1:-1;;;45649:98:0:o;46387:::-;46445:7;46472:5;46476:1;46472;:5;:::i;64351:690::-;64488:4;64505:15;:2;-1:-1:-1;;;;;64505:13:0;;:15::i;:::-;64501:535;;;64560:2;-1:-1:-1;;;;;64544:36:0;;64581:12;:10;:12::i;:::-;64595:4;64601:7;64610:5;64544:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;64544:72:0;;;;;;;;-1:-1:-1;;64544:72:0;;;;;;;;;;;;:::i;:::-;;;64531:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;64775:13:0;;64771:215;;64808:61;;-1:-1:-1;;;64808:61:0;;;;;;;:::i;64771:215::-;64954:6;64948:13;64939:6;64935:2;64931:15;64924:38;64531:464;-1:-1:-1;;;;;;64666:55:0;-1:-1:-1;;;64666:55:0;;-1:-1:-1;64659:62:0;;64501:535;-1:-1:-1;65024:4:0;64501:535;64351:690;;;;;;:::o;18745:723::-;18801:13;19022:10;19018:53;;-1:-1:-1;19049:10:0;;;;;;;;;;;;-1:-1:-1;;;19049:10:0;;;;;;19018:53;19096:5;19081:12;19137:78;19144:9;;19137:78;;19170:8;;;;:::i;:::-;;-1:-1:-1;19193:10:0;;-1:-1:-1;19201:2:0;19193:10;;:::i;:::-;;;19137:78;;;19225:19;19257:6;-1:-1:-1;;;;;19247:17:0;;;;;-1:-1:-1;;;19247:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19247:17:0;;19225:39;;19275:154;19282:10;;19275:154;;19309:11;19319:1;19309:11;;:::i;:::-;;-1:-1:-1;19378:10:0;19386:2;19378:5;:10;:::i;:::-;19365:24;;:2;:24;:::i;:::-;19352:39;;19335:6;19342;19335:14;;;;;;-1:-1:-1;;;19335:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;19335:56:0;;;;;;;;-1:-1:-1;19406:11:0;19415:2;19406:11;;:::i;:::-;;;19275:154;;59501:1272;59606:20;59629:12;-1:-1:-1;;;;;59656:16:0;;59648:62;;;;-1:-1:-1;;;59648:62:0;;;;;;;:::i;:::-;59847:21;59855:12;59847:7;:21::i;:::-;59846:22;59838:64;;;;-1:-1:-1;;;59838:64:0;;;;;;;:::i;:::-;59929:12;59917:8;:24;;59909:71;;;;-1:-1:-1;;;59909:71:0;;;;;;;:::i;:::-;59989:61;60019:1;60023:2;60027:12;60041:8;59989:21;:61::i;:::-;-1:-1:-1;;;;;60092:16:0;;60059:30;60092:16;;;:12;:16;;;;;;;;;60059:49;;;;;;;;;-1:-1:-1;;;;;60059:49:0;;;;;-1:-1:-1;;;60059:49:0;;;;;;;;;;;60134:119;;;;;;;;60154:19;;60059:49;;60134:119;;;60154:39;;60184:8;;60154:39;:::i;:::-;-1:-1:-1;;;;;60134:119:0;;;;;60237:8;60202:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;60134:119:0;;;;;;-1:-1:-1;;;;;60115:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;;;-1:-1:-1;;;60115:138:0;;;;-1:-1:-1;;60115:138:0;;;;;;;;;;;;;;;;;60288:43;;;;;;;;;;-1:-1:-1;;;;;60314:15:0;60288:43;;;;;;;;60260:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;60260:71:0;-1:-1:-1;;;;60260:71:0;;;;-1:-1:-1;;;;;;60260:71:0;;;;;;;;;;;;;;;60272:12;;60384:281;60408:8;60404:1;:12;60384:281;;;60437:38;;60462:12;;-1:-1:-1;;;;;60437:38:0;;;60454:1;;60437:38;;60454:1;;60437:38;60502:59;60533:1;60537:2;60541:12;60555:5;60502:22;:59::i;:::-;60484:150;;;;-1:-1:-1;;;60484:150:0;;;;;;;:::i;:::-;60643:14;;;;:::i;:::-;;;;60418:3;;;;;:::i;:::-;;;;60384:281;;;-1:-1:-1;60673:12:0;:27;;;60707:60;;60740:2;60744:12;60758:8;60707:20;:60::i;11128:387::-;11451:20;11499:8;;;11128:387::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;14:409:1;;-1:-1:-1;;;;;106:6:1;103:30;100:2;;;136:18;;:::i;:::-;174:58;220:2;197:17;;-1:-1:-1;;193:31:1;226:4;189:42;174:58;:::i;:::-;165:67;;255:6;248:5;241:21;295:3;286:6;281:3;277:16;274:25;271:2;;;312:1;309;302:12;271:2;361:6;356:3;349:4;342:5;338:16;325:43;415:1;408:4;399:6;392:5;388:18;384:29;377:40;90:333;;;;;:::o;428:175::-;498:20;;-1:-1:-1;;;;;547:31:1;;537:42;;527:2;;593:1;590;583:12;608:705;;721:3;714:4;706:6;702:17;698:27;688:2;;743:5;736;729:20;688:2;783:6;770:20;809:4;833:65;848:49;894:2;848:49;:::i;:::-;833:65;:::i;:::-;932:15;;;963:12;;;;995:15;;;1041:11;;;1029:24;;1025:33;;1022:42;-1:-1:-1;1019:2:1;;;1081:5;1074;1067:20;1019:2;1107:5;1121:163;1135:2;1132:1;1129:9;1121:163;;;1192:17;;1180:30;;1230:12;;;;1262;;;;1153:1;1146:9;1121:163;;;-1:-1:-1;1302:5:1;;678:635;-1:-1:-1;;;;;;;678:635:1:o;1318:162::-;1385:20;;1441:13;;1434:21;1424:32;;1414:2;;1470:1;1467;1460:12;1485:233;;1583:3;1576:4;1568:6;1564:17;1560:27;1550:2;;1605:5;1598;1591:20;1550:2;1631:81;1708:3;1699:6;1686:20;1679:4;1671:6;1667:17;1631:81;:::i;1723:198::-;;1835:2;1823:9;1814:7;1810:23;1806:32;1803:2;;;1856:6;1848;1841:22;1803:2;1884:31;1905:9;1884:31;:::i;1926:274::-;;;2055:2;2043:9;2034:7;2030:23;2026:32;2023:2;;;2076:6;2068;2061:22;2023:2;2104:31;2125:9;2104:31;:::i;:::-;2094:41;;2154:40;2190:2;2179:9;2175:18;2154:40;:::i;:::-;2144:50;;2013:187;;;;;:::o;2205:342::-;;;;2351:2;2339:9;2330:7;2326:23;2322:32;2319:2;;;2372:6;2364;2357:22;2319:2;2400:31;2421:9;2400:31;:::i;:::-;2390:41;;2450:40;2486:2;2475:9;2471:18;2450:40;:::i;:::-;2440:50;;2537:2;2526:9;2522:18;2509:32;2499:42;;2309:238;;;;;:::o;2552:702::-;;;;;2724:3;2712:9;2703:7;2699:23;2695:33;2692:2;;;2746:6;2738;2731:22;2692:2;2774:31;2795:9;2774:31;:::i;:::-;2764:41;;2824:40;2860:2;2849:9;2845:18;2824:40;:::i;:::-;2814:50;;2911:2;2900:9;2896:18;2883:32;2873:42;;2966:2;2955:9;2951:18;2938:32;-1:-1:-1;;;;;2985:6:1;2982:30;2979:2;;;3030:6;3022;3015:22;2979:2;3058:22;;3111:4;3103:13;;3099:27;-1:-1:-1;3089:2:1;;3145:6;3137;3130:22;3089:2;3173:75;3240:7;3235:2;3222:16;3217:2;3213;3209:11;3173:75;:::i;:::-;3163:85;;;2682:572;;;;;;;:::o;3259:268::-;;;3385:2;3373:9;3364:7;3360:23;3356:32;3353:2;;;3406:6;3398;3391:22;3353:2;3434:31;3455:9;3434:31;:::i;:::-;3424:41;;3484:37;3517:2;3506:9;3502:18;3484:37;:::i;3532:266::-;;;3661:2;3649:9;3640:7;3636:23;3632:32;3629:2;;;3682:6;3674;3667:22;3629:2;3710:31;3731:9;3710:31;:::i;:::-;3700:41;3788:2;3773:18;;;;3760:32;;-1:-1:-1;;;3619:179:1:o;3803:961::-;;3918:2;3961;3949:9;3940:7;3936:23;3932:32;3929:2;;;3982:6;3974;3967:22;3929:2;4027:9;4014:23;-1:-1:-1;;;;;4052:6:1;4049:30;4046:2;;;4097:6;4089;4082:22;4046:2;4125:22;;4178:4;4170:13;;4166:27;-1:-1:-1;4156:2:1;;4212:6;4204;4197:22;4156:2;4253;4240:16;4276:65;4291:49;4337:2;4291:49;:::i;4276:65::-;4375:15;;;4406:12;;;;4438:11;;;4476;;;4468:20;;4464:29;;4461:42;-1:-1:-1;4458:2:1;;;4521:6;4513;4506:22;4458:2;4548:6;4539:15;;4563:171;4577:2;4574:1;4571:9;4563:171;;;4634:25;4655:3;4634:25;:::i;:::-;4622:38;;4595:1;4588:9;;;;;4680:12;;;;4712;;4563:171;;;-1:-1:-1;4753:5:1;3898:866;-1:-1:-1;;;;;;;3898:866:1:o;4769:442::-;;;4923:2;4911:9;4902:7;4898:23;4894:32;4891:2;;;4944:6;4936;4929:22;4891:2;4989:9;4976:23;-1:-1:-1;;;;;5014:6:1;5011:30;5008:2;;;5059:6;5051;5044:22;5008:2;5087:67;5146:7;5137:6;5126:9;5122:22;5087:67;:::i;:::-;5077:77;5201:2;5186:18;;;;5173:32;;-1:-1:-1;;;;4881:330:1:o;5216:192::-;;5325:2;5313:9;5304:7;5300:23;5296:32;5293:2;;;5346:6;5338;5331:22;5293:2;5374:28;5392:9;5374:28;:::i;5413:194::-;;5536:2;5524:9;5515:7;5511:23;5507:32;5504:2;;;5557:6;5549;5542:22;5504:2;-1:-1:-1;5585:16:1;;5494:113;-1:-1:-1;5494:113:1:o;5612:257::-;;5723:2;5711:9;5702:7;5698:23;5694:32;5691:2;;;5744:6;5736;5729:22;5691:2;5788:9;5775:23;5807:32;5833:5;5807:32;:::i;5874:261::-;;5996:2;5984:9;5975:7;5971:23;5967:32;5964:2;;;6017:6;6009;6002:22;5964:2;6054:9;6048:16;6073:32;6099:5;6073:32;:::i;6140:577::-;;;6289:2;6277:9;6268:7;6264:23;6260:32;6257:2;;;6310:6;6302;6295:22;6257:2;6355:9;6342:23;-1:-1:-1;;;;;6425:2:1;6417:6;6414:14;6411:2;;;6446:6;6438;6431:22;6411:2;6474:52;6518:7;6509:6;6498:9;6494:22;6474:52;:::i;:::-;6464:62;;6579:2;6568:9;6564:18;6551:32;6535:48;;6608:2;6598:8;6595:16;6592:2;;;6629:6;6621;6614:22;6592:2;;6657:54;6703:7;6692:8;6681:9;6677:24;6657:54;:::i;:::-;6647:64;;;6247:470;;;;;:::o;6722:190::-;;6834:2;6822:9;6813:7;6809:23;6805:32;6802:2;;;6855:6;6847;6840:22;6802:2;-1:-1:-1;6883:23:1;;6792:120;-1:-1:-1;6792:120:1:o;6917:442::-;;;7071:2;7059:9;7050:7;7046:23;7042:32;7039:2;;;7092:6;7084;7077:22;7039:2;7133:9;7120:23;7110:33;;7194:2;7183:9;7179:18;7166:32;-1:-1:-1;;;;;7213:6:1;7210:30;7207:2;;;7258:6;7250;7243:22;7207:2;7286:67;7345:7;7336:6;7325:9;7321:22;7286:67;:::i;7364:258::-;;;7493:2;7481:9;7472:7;7468:23;7464:32;7461:2;;;7514:6;7506;7499:22;7461:2;-1:-1:-1;;7542:23:1;;;7612:2;7597:18;;;7584:32;;-1:-1:-1;7451:171:1:o;7627:259::-;;7708:5;7702:12;7735:6;7730:3;7723:19;7751:63;7807:6;7800:4;7795:3;7791:14;7784:4;7777:5;7773:16;7751:63;:::i;:::-;7868:2;7847:15;-1:-1:-1;;7843:29:1;7834:39;;;;7875:4;7830:50;;7678:208;-1:-1:-1;;7678:208:1:o;7891:982::-;7978:12;;7891:982;;8050:1;8035:17;;8071:1;8107:18;;;;8134:2;;8188:4;8180:6;8176:17;8166:27;;8134:2;8214;8262;8254:6;8251:14;8231:18;8228:38;8225:2;;;-1:-1:-1;;;8289:33:1;;8345:4;8342:1;8335:15;8375:4;8296:3;8363:17;8225:2;8406:18;8433:104;;;;8551:1;8546:321;;;;8399:468;;8433:104;-1:-1:-1;;8466:24:1;;8454:37;;8511:16;;;;-1:-1:-1;8433:104:1;;8546:321;8582:38;8614:5;8582:38;:::i;:::-;8642:1;8656:165;8670:6;8667:1;8664:13;8656:165;;;8748:14;;8735:11;;;8728:35;8791:16;;;;8685:10;;8656:165;;;8660:3;;8850:6;8845:3;8841:16;8834:23;;8399:468;;;;;;;7951:922;;;;:::o;8878:247::-;9035:19;;;9079:2;9070:12;;9063:28;9116:2;9107:12;;9025:100::o;9130:274::-;;9297:6;9291:13;9313:53;9359:6;9354:3;9347:4;9339:6;9335:17;9313:53;:::i;:::-;9382:16;;;;;9267:137;-1:-1:-1;;9267:137:1:o;9409:199::-;;9562:40;9598:3;9590:6;9562:40;:::i;9613:378::-;;9817:40;9853:3;9845:6;9817:40;:::i;:::-;9886:6;9880:13;9902:52;9947:6;9943:2;9936:4;9928:6;9924:17;9902:52;:::i;:::-;9970:15;;9797:194;-1:-1:-1;;;;9797:194:1:o;9996:203::-;-1:-1:-1;;;;;10160:32:1;;;;10142:51;;10130:2;10115:18;;10097:102::o;10204:490::-;-1:-1:-1;;;;;10473:15:1;;;10455:34;;10525:15;;10520:2;10505:18;;10498:43;10572:2;10557:18;;10550:34;;;10620:3;10615:2;10600:18;;10593:31;;;10204:490;;10641:47;;10668:19;;10660:6;10641:47;:::i;:::-;10633:55;10407:287;-1:-1:-1;;;;;;10407:287:1:o;10699:635::-;10870:2;10922:21;;;10992:13;;10895:18;;;11014:22;;;10699:635;;10870:2;11093:15;;;;11067:2;11052:18;;;10699:635;11139:169;11153:6;11150:1;11147:13;11139:169;;;11214:13;;11202:26;;11283:15;;;;11248:12;;;;11175:1;11168:9;11139:169;;;-1:-1:-1;11325:3:1;;10850:484;-1:-1:-1;;;;;;10850:484:1:o;11339:187::-;11504:14;;11497:22;11479:41;;11467:2;11452:18;;11434:92::o;11531:177::-;11677:25;;;11665:2;11650:18;;11632:76::o;11713:221::-;;11862:2;11851:9;11844:21;11882:46;11924:2;11913:9;11909:18;11901:6;11882:46;:::i;11939:398::-;12141:2;12123:21;;;12180:2;12160:18;;;12153:30;12219:34;12214:2;12199:18;;12192:62;-1:-1:-1;;;12285:2:1;12270:18;;12263:32;12327:3;12312:19;;12113:224::o;12342:347::-;12544:2;12526:21;;;12583:2;12563:18;;;12556:30;12622:25;12617:2;12602:18;;12595:53;12680:2;12665:18;;12516:173::o;12694:402::-;12896:2;12878:21;;;12935:2;12915:18;;;12908:30;12974:34;12969:2;12954:18;;12947:62;-1:-1:-1;;;13040:2:1;13025:18;;13018:36;13086:3;13071:19;;12868:228::o;13101:415::-;13303:2;13285:21;;;13342:2;13322:18;;;13315:30;13381:34;13376:2;13361:18;;13354:62;-1:-1:-1;;;13447:2:1;13432:18;;13425:49;13506:3;13491:19;;13275:241::o;13521:406::-;13723:2;13705:21;;;13762:2;13742:18;;;13735:30;13801:34;13796:2;13781:18;;13774:62;-1:-1:-1;;;13867:2:1;13852:18;;13845:40;13917:3;13902:19;;13695:232::o;13932:347::-;14134:2;14116:21;;;14173:2;14153:18;;;14146:30;14212:25;14207:2;14192:18;;14185:53;14270:2;14255:18;;14106:173::o;14284:399::-;14486:2;14468:21;;;14525:2;14505:18;;;14498:30;14564:34;14559:2;14544:18;;14537:62;-1:-1:-1;;;14630:2:1;14615:18;;14608:33;14673:3;14658:19;;14458:225::o;14688:400::-;14890:2;14872:21;;;14929:2;14909:18;;;14902:30;14968:34;14963:2;14948:18;;14941:62;-1:-1:-1;;;15034:2:1;15019:18;;15012:34;15078:3;15063:19;;14862:226::o;15093:401::-;15295:2;15277:21;;;15334:2;15314:18;;;15307:30;15373:34;15368:2;15353:18;;15346:62;-1:-1:-1;;;15439:2:1;15424:18;;15417:35;15484:3;15469:19;;15267:227::o;15499:342::-;15701:2;15683:21;;;15740:2;15720:18;;;15713:30;-1:-1:-1;;;15774:2:1;15759:18;;15752:48;15832:2;15817:18;;15673:168::o;15846:355::-;16048:2;16030:21;;;16087:2;16067:18;;;16060:30;16126:33;16121:2;16106:18;;16099:61;16192:2;16177:18;;16020:181::o;16206:356::-;16408:2;16390:21;;;16427:18;;;16420:30;16486:34;16481:2;16466:18;;16459:62;16553:2;16538:18;;16380:182::o;16567:339::-;16769:2;16751:21;;;16808:2;16788:18;;;16781:30;-1:-1:-1;;;16842:2:1;16827:18;;16820:45;16897:2;16882:18;;16741:165::o;16911:421::-;17113:2;17095:21;;;17152:2;17132:18;;;17125:30;17191:34;17186:2;17171:18;;17164:62;17262:27;17257:2;17242:18;;17235:55;17322:3;17307:19;;17085:247::o;17337:420::-;17539:2;17521:21;;;17578:2;17558:18;;;17551:30;17617:34;17612:2;17597:18;;17590:62;17688:26;17683:2;17668:18;;17661:54;17747:3;17732:19;;17511:246::o;17762:407::-;17964:2;17946:21;;;18003:2;17983:18;;;17976:30;18042:34;18037:2;18022:18;;18015:62;-1:-1:-1;;;18108:2:1;18093:18;;18086:41;18159:3;18144:19;;17936:233::o;18174:346::-;18376:2;18358:21;;;18415:2;18395:18;;;18388:30;-1:-1:-1;;;18449:2:1;18434:18;;18427:52;18511:2;18496:18;;18348:172::o;18525:356::-;18727:2;18709:21;;;18746:18;;;18739:30;18805:34;18800:2;18785:18;;18778:62;18872:2;18857:18;;18699:182::o;18886:402::-;19088:2;19070:21;;;19127:2;19107:18;;;19100:30;19166:34;19161:2;19146:18;;19139:62;-1:-1:-1;;;19232:2:1;19217:18;;19210:36;19278:3;19263:19;;19060:228::o;19293:356::-;19495:2;19477:21;;;19514:18;;;19507:30;19573:34;19568:2;19553:18;;19546:62;19640:2;19625:18;;19467:182::o;19654:411::-;19856:2;19838:21;;;19895:2;19875:18;;;19868:30;19934:34;19929:2;19914:18;;19907:62;-1:-1:-1;;;20000:2:1;19985:18;;19978:45;20055:3;20040:19;;19828:237::o;20070:350::-;20272:2;20254:21;;;20311:2;20291:18;;;20284:30;20350:28;20345:2;20330:18;;20323:56;20411:2;20396:18;;20244:176::o;20425:414::-;20627:2;20609:21;;;20666:2;20646:18;;;20639:30;20705:34;20700:2;20685:18;;20678:62;-1:-1:-1;;;20771:2:1;20756:18;;20749:48;20829:3;20814:19;;20599:240::o;20844:411::-;21046:2;21028:21;;;21085:2;21065:18;;;21058:30;21124:34;21119:2;21104:18;;21097:62;-1:-1:-1;;;21190:2:1;21175:18;;21168:45;21245:3;21230:19;;21018:237::o;21260:398::-;21462:2;21444:21;;;21501:2;21481:18;;;21474:30;21540:34;21535:2;21520:18;;21513:62;-1:-1:-1;;;21606:2:1;21591:18;;21584:32;21648:3;21633:19;;21434:224::o;21663:415::-;21865:2;21847:21;;;21904:2;21884:18;;;21877:30;21943:34;21938:2;21923:18;;21916:62;-1:-1:-1;;;22009:2:1;21994:18;;21987:49;22068:3;22053:19;;21837:241::o;22083:353::-;22285:2;22267:21;;;22324:2;22304:18;;;22297:30;22363:31;22358:2;22343:18;;22336:59;22427:2;22412:18;;22257:179::o;22441:356::-;22643:2;22625:21;;;22662:18;;;22655:30;22721:34;22716:2;22701:18;;22694:62;22788:2;22773:18;;22615:182::o;22802:397::-;23004:2;22986:21;;;23043:2;23023:18;;;23016:30;23082:34;23077:2;23062:18;;23055:62;-1:-1:-1;;;23148:2:1;23133:18;;23126:31;23189:3;23174:19;;22976:223::o;23204:410::-;23406:2;23388:21;;;23445:2;23425:18;;;23418:30;23484:34;23479:2;23464:18;;23457:62;-1:-1:-1;;;23550:2:1;23535:18;;23528:44;23604:3;23589:19;;23378:236::o;23619:347::-;23821:2;23803:21;;;23860:2;23840:18;;;23833:30;23899:25;23894:2;23879:18;;23872:53;23957:2;23942:18;;23793:173::o;23971:398::-;24173:2;24155:21;;;24212:2;24192:18;;;24185:30;24251:34;24246:2;24231:18;;24224:62;-1:-1:-1;;;24317:2:1;24302:18;;24295:32;24359:3;24344:19;;24145:224::o;24374:411::-;24576:2;24558:21;;;24615:2;24595:18;;;24588:30;24654:34;24649:2;24634:18;;24627:62;-1:-1:-1;;;24720:2:1;24705:18;;24698:45;24775:3;24760:19;;24548:237::o;24790:351::-;24992:2;24974:21;;;25031:2;25011:18;;;25004:30;25070:29;25065:2;25050:18;;25043:57;25132:2;25117:18;;24964:177::o;25146:409::-;25348:2;25330:21;;;25387:2;25367:18;;;25360:30;25426:34;25421:2;25406:18;;25399:62;-1:-1:-1;;;25492:2:1;25477:18;;25470:43;25545:3;25530:19;;25320:235::o;25560:398::-;25762:2;25744:21;;;25801:2;25781:18;;;25774:30;25840:34;25835:2;25820:18;;25813:62;-1:-1:-1;;;25906:2:1;25891:18;;25884:32;25948:3;25933:19;;25734:224::o;25963:348::-;26165:2;26147:21;;;26204:2;26184:18;;;26177:30;26243:26;26238:2;26223:18;;26216:54;26302:2;26287:18;;26137:174::o;26316:356::-;26518:2;26500:21;;;26537:18;;;26530:30;26596:34;26591:2;26576:18;;26569:62;26663:2;26648:18;;26490:182::o;26859:251::-;26929:2;26923:9;26959:17;;;-1:-1:-1;;;;;26991:34:1;;27027:22;;;26988:62;26985:2;;;27053:18;;:::i;:::-;27089:2;27082:22;26903:207;;-1:-1:-1;26903:207:1:o;27115:192::-;;-1:-1:-1;;;;;27206:6:1;27203:30;27200:2;;;27236:18;;:::i;:::-;-1:-1:-1;27296:4:1;27277:17;;;27273:28;;27190:117::o;27312:129::-;;27380:17;;;27430:4;27414:21;;;27370:71::o;27446:253::-;;-1:-1:-1;;;;;27575:2:1;27572:1;27568:10;27605:2;27602:1;27598:10;27636:3;27632:2;27628:12;27623:3;27620:21;27617:2;;;27644:18;;:::i;27704:128::-;;27775:1;27771:6;27768:1;27765:13;27762:2;;;27781:18;;:::i;:::-;-1:-1:-1;27817:9:1;;27752:80::o;27837:120::-;;27903:1;27893:2;;27908:18;;:::i;:::-;-1:-1:-1;27942:9:1;;27883:74::o;27962:168::-;;28068:1;28064;28060:6;28056:14;28053:1;28050:21;28045:1;28038:9;28031:17;28027:45;28024:2;;;28075:18;;:::i;:::-;-1:-1:-1;28115:9:1;;28014:116::o;28135:246::-;;-1:-1:-1;;;;;28288:10:1;;;;28258;;28310:12;;;28307:2;;;28325:18;;:::i;:::-;28362:13;;28184:197;-1:-1:-1;;;28184:197:1:o;28386:125::-;;28454:1;28451;28448:8;28445:2;;;28459:18;;:::i;:::-;-1:-1:-1;28496:9:1;;28435:76::o;28516:258::-;28588:1;28598:113;28612:6;28609:1;28606:13;28598:113;;;28688:11;;;28682:18;28669:11;;;28662:39;28634:2;28627:10;28598:113;;;28729:6;28726:1;28723:13;28720:2;;;-1:-1:-1;;28764:1:1;28746:16;;28739:27;28569:205::o;28779:136::-;;28846:5;28836:2;;28855:18;;:::i;:::-;-1:-1:-1;;;28891:18:1;;28826:89::o;28920:380::-;29005:1;28995:12;;29052:1;29042:12;;;29063:2;;29117:4;29109:6;29105:17;29095:27;;29063:2;29170;29162:6;29159:14;29139:18;29136:38;29133:2;;;29216:10;29211:3;29207:20;29204:1;29197:31;29251:4;29248:1;29241:15;29279:4;29276:1;29269:15;29133:2;;28975:325;;;:::o;29305:135::-;;-1:-1:-1;;29365:17:1;;29362:2;;;29385:18;;:::i;:::-;-1:-1:-1;29432:1:1;29421:13;;29352:88::o;29445:112::-;;29503:1;29493:2;;29508:18;;:::i;:::-;-1:-1:-1;29542:9:1;;29483:74::o;29562:127::-;29623:10;29618:3;29614:20;29611:1;29604:31;29654:4;29651:1;29644:15;29678:4;29675:1;29668:15;29694:127;29755:10;29750:3;29746:20;29743:1;29736:31;29786:4;29783:1;29776:15;29810:4;29807:1;29800:15;29826:127;29887:10;29882:3;29878:20;29875:1;29868:31;29918:4;29915:1;29908:15;29942:4;29939:1;29932:15;29958:133;-1:-1:-1;;;;;;30034:32:1;;30024:43;;30014:2;;30081:1;30078;30071:12

Swarm Source

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