ETH Price: $3,438.44 (-1.41%)
Gas: 3 Gwei

Koonimals Official Collection (KNS)
 

Overview

TokenID

378

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
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:
Koonimals

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-25
*/

// 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 Koonimals is ERC721A, Ownable {
  constructor() ERC721A("Koonimals Official Collection", "KNS",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 = 5455;
    uint256 private constant MAX_NFT = 5555;
    uint256 public NFTPrice = 250000000000000000;  // 0.25 ETH
    uint256 public MAXNFTPrice = 300000000000000000;  // MAX 0.3 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 Koonimals
    */
    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(0xe68A91cC3F619777649B1FB541d5423bfB3982D8)).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(
        
    )
        public 
        onlyOwner
    {
        require(totalSupply()+1 <= MAX_NFT, "Tokens number to mint cannot exceed number of MAX tokens");
        _safeMint(msg.sender, 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 set NFT Price
    */
    function setNFTPrice(uint256 _price) external onlyOwner {
        require(_price <= MAXNFTPrice, "cannot set price too high");
        NFTPrice = _price;
    }
    
    /*
     * 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) onlyOwner() public {
        root = bytes32(_root);
    }

    // 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":"MAXNFTPrice","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":[],"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":"uint256","name":"_price","type":"uint256"}],"name":"setNFTPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isActive","type":"bool"}],"name":"setPresaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_root","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"}]

60a06040526000805560006007556703782dace9d90000600b55670429d069189e0000600c556002600f553480156200003757600080fd5b506040518060400160405280601d81526020017f4b6f6f6e696d616c73204f6666696369616c20436f6c6c656374696f6e000000815250604051806040016040528060038152602001624b4e5360e81b815250600a60008111620000b85760405162461bcd60e51b8152600401620000af9062000200565b60405180910390fd5b8251620000cd9060019060208601906200015a565b508151620000e39060029060208501906200015a565b5060805250620000fe9050620000f862000104565b62000108565b62000284565b3390565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001689062000247565b90600052602060002090601f0160209004810192826200018c5760008555620001d7565b82601f10620001a757805160ff1916838001178555620001d7565b82800160010185558215620001d7579182015b82811115620001d7578251825591602001919060010190620001ba565b50620001e5929150620001e9565b5090565b5b80821115620001e55760008155600101620001ea565b60208082526027908201527f455243373231413a206d61782062617463682073697a65206d757374206265206040820152666e6f6e7a65726f60c81b606082015260800190565b6002810460018216806200025c57607f821691505b602082108114156200027e57634e487b7160e01b600052602260045260246000fd5b50919050565b608051613433620002ae60003960008181611bba01528181611be40152611f9301526134336000f3fe6080604052600436106102675760003560e01c806370c0a79211610144578063aeb16768116100b6578063d7224ba01161007a578063d7224ba0146106b9578063e748e07c146106ce578063e8254174146106e3578063e985e9c514610703578063ebf0c71714610723578063f2fde38b1461073857610267565b8063aeb167681461063a578063b88d4fde1461064f578063c87b56dd1461066f578063d1d80f301461068f578063d70ea894146106a457610267565b8063926427441161010857806392642744146105a857806395d89b41146105bb578063972a2a62146105d0578063a22cb465146105f0578063a38bffda14610610578063a475b5dd1461062557610267565b806370c0a7921461052b578063715018a61461054b57806381530b68146105605780638da5cb5b146105805780638f76696c1461059557610267565b80633f8121a2116101dd5780634f9b563c116101a15780634f9b563c1461048c5780635f0f45b2146104ac57806360d938dc146104c15780636352211e146104d65780636b74a598146104f657806370a082311461050b57610267565b80633f8121a2146103df57806342842e0e146103ff578063438b63001461041f5780634cdb44001461044c5780634f6ccce71461046c57610267565b806322f3e2d41161022f57806322f3e2d4146103355780632333f3c41461034a57806323b872dd1461036a5780632750fc781461038a5780632f745c59146103aa5780633ccfd60b146103ca57610267565b806301ffc9a71461026c57806306fdde03146102a2578063081812fc146102c4578063095ea7b3146102f157806318160ddd14610313575b600080fd5b34801561027857600080fd5b5061028c6102873660046125ca565b610758565b6040516102999190612868565b60405180910390f35b3480156102ae57600080fd5b506102b76107bb565b604051610299919061287c565b3480156102d057600080fd5b506102e46102df366004612662565b61084d565b60405161029991906127d3565b3480156102fd57600080fd5b5061031161030c366004612497565b610899565b005b34801561031f57600080fd5b50610328610932565b6040516102999190612873565b34801561034157600080fd5b5061028c610938565b34801561035657600080fd5b5061032861036536600461236f565b610946565b34801561037657600080fd5b506103116103853660046123bb565b610958565b34801561039657600080fd5b506103116103a5366004612598565b610963565b3480156103b657600080fd5b506103286103c5366004612497565b6109bc565b3480156103d657600080fd5b50610311610ab7565b3480156103eb57600080fd5b506103116103fa366004612598565b610b59565b34801561040b57600080fd5b5061031161041a3660046123bb565b610bb4565b34801561042b57600080fd5b5061043f61043a36600461236f565b610bcf565b6040516102999190612824565b34801561045857600080fd5b506103116104673660046124c0565b610d3a565b34801561047857600080fd5b50610328610487366004612662565b610dfd565b34801561049857600080fd5b506103116104a7366004612598565b610e29565b3480156104b857600080fd5b50610311610e86565b3480156104cd57600080fd5b5061028c610ed4565b3480156104e257600080fd5b506102e46104f1366004612662565b610ee3565b34801561050257600080fd5b50610311610ef5565b34801561051757600080fd5b5061032861052636600461236f565b610f75565b34801561053757600080fd5b50610311610546366004612662565b610fc2565b34801561055757600080fd5b50610311611006565b34801561056c57600080fd5b5061031161057b366004612662565b61104f565b34801561058c57600080fd5b506102e46110b5565b6103116105a336600461267a565b6110c4565b6103116105b6366004612662565b6112ff565b3480156105c757600080fd5b506102b76113d6565b3480156105dc57600080fd5b5061028c6105eb366004612556565b6113e5565b3480156105fc57600080fd5b5061031161060b36600461246e565b61152d565b34801561061c57600080fd5b506103286115fb565b34801561063157600080fd5b5061028c611601565b34801561064657600080fd5b5061032861160a565b34801561065b57600080fd5b5061031161066a3660046123f6565b611610565b34801561067b57600080fd5b506102b761068a366004612662565b611649565b34801561069b57600080fd5b506103286116be565b3480156106b057600080fd5b506103286116c4565b3480156106c557600080fd5b506103286116ca565b3480156106da57600080fd5b506103286116d0565b3480156106ef57600080fd5b506103116106fe366004612602565b6116d5565b34801561070f57600080fd5b5061028c61071e366004612389565b61173b565b34801561072f57600080fd5b50610328611769565b34801561074457600080fd5b5061031161075336600461236f565b61176f565b60006001600160e01b031982166380ac58cd60e01b148061078957506001600160e01b03198216635b5e139f60e01b145b806107a457506001600160e01b0319821663780e9d6360e01b145b806107b357506107b3826117dd565b90505b919050565b6060600180546107ca9061333b565b80601f01602080910402602001604051908101604052809291908181526020018280546107f69061333b565b80156108435780601f1061081857610100808354040283529160200191610843565b820191906000526020600020905b81548152906001019060200180831161082657829003601f168201915b5050505050905090565b6000610858826117f6565b61087d5760405162461bcd60e51b8152600401610874906130c2565b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006108a482610ee3565b9050806001600160a01b0316836001600160a01b031614156108d85760405162461bcd60e51b815260040161087490612e33565b806001600160a01b03166108ea6117fd565b6001600160a01b0316148061090657506109068161071e6117fd565b6109225760405162461bcd60e51b815260040161087490612b5c565b61092d838383611801565b505050565b60005490565b600d54610100900460ff1681565b60106020526000908152604090205481565b61092d83838361185d565b61096b6117fd565b6001600160a01b031661097c6110b5565b6001600160a01b0316146109a25760405162461bcd60e51b815260040161087490612cd7565b600d80549115156101000261ff0019909216919091179055565b60006109c783610f75565b82106109e55760405162461bcd60e51b81526004016108749061288f565b60006109ef610932565b905060008060005b83811015610a98576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610a4957805192505b876001600160a01b0316836001600160a01b03161415610a855786841415610a7757509350610ab192505050565b83610a8181613376565b9450505b5080610a9081613376565b9150506109f7565b5060405162461bcd60e51b815260040161087490612f75565b92915050565b610abf6117fd565b6001600160a01b0316610ad06110b5565b6001600160a01b031614610af65760405162461bcd60e51b815260040161087490612cd7565b4780610b145760405162461bcd60e51b815260040161087490612afe565b60405173e68a91cc3f619777649b1fb541d5423bfb3982d89082156108fc029083906000818181858888f19350505050158015610b55573d6000803e3d6000fd5b5050565b610b616117fd565b6001600160a01b0316610b726110b5565b6001600160a01b031614610b985760405162461bcd60e51b815260040161087490612cd7565b600d8054911515620100000262ff000019909216919091179055565b61092d83838360405180602001604052806000815250611610565b60606000610bdc83610f75565b90506000816001600160401b03811115610c0657634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610c2f578160200160208202803683370190505b50905081610c405791506107b69050565b6000610c4a610932565b905060008060005b83811015610d21576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610ca457805192505b886001600160a01b0316836001600160a01b03161415610d0e5781868581518110610cdf57634e487b7160e01b600052603260045260246000fd5b602090810291909101015283610cf481613376565b94505086841415610d0e57859750505050505050506107b6565b5080610d1981613376565b915050610c52565b5060405162461bcd60e51b815260040161087490612a12565b610d426117fd565b6001600160a01b0316610d536110b5565b6001600160a01b031614610d795760405162461bcd60e51b815260040161087490612cd7565b60005b8151811015610b55576115b3610d90610932565b610d9b90600161326e565b1115610db95760405162461bcd60e51b815260040161087490612bb9565b610deb828281518110610ddc57634e487b7160e01b600052603260045260246000fd5b60200260200101516001611b6f565b80610df581613376565b915050610d7c565b6000610e07610932565b8210610e255760405162461bcd60e51b8152600401610874906129cf565b5090565b610e316117fd565b6001600160a01b0316610e426110b5565b6001600160a01b031614610e685760405162461bcd60e51b815260040161087490612cd7565b600d805491151563010000000263ff00000019909216919091179055565b610e8e6117fd565b6001600160a01b0316610e9f6110b5565b6001600160a01b031614610ec55760405162461bcd60e51b815260040161087490612cd7565b600d805460ff19166001179055565b600d5462010000900460ff1681565b6000610eee82611b89565b5192915050565b610efd6117fd565b6001600160a01b0316610f0e6110b5565b6001600160a01b031614610f345760405162461bcd60e51b815260040161087490612cd7565b6115b3610f3f610932565b610f4a90600161326e565b1115610f685760405162461bcd60e51b815260040161087490612bb9565b610f73336001611b6f565b565b60006001600160a01b038216610f9d5760405162461bcd60e51b815260040161087490612c16565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b610fca6117fd565b6001600160a01b0316610fdb6110b5565b6001600160a01b0316146110015760405162461bcd60e51b815260040161087490612cd7565b600e55565b61100e6117fd565b6001600160a01b031661101f6110b5565b6001600160a01b0316146110455760405162461bcd60e51b815260040161087490612cd7565b610f736000611c9b565b6110576117fd565b6001600160a01b03166110686110b5565b6001600160a01b03161461108e5760405162461bcd60e51b815260040161087490612cd7565b600c548111156110b05760405162461bcd60e51b815260040161087490613151565b600b55565b6008546001600160a01b031690565b600d54610100900460ff166110eb5760405162461bcd60e51b815260040161087490612a9b565b600d5462010000900460ff166111135760405162461bcd60e51b8152600401610874906128d1565b61111d81336113e5565b6111395760405162461bcd60e51b815260040161087490612b33565b600d546301000000900460ff166112625761154f611155610932565b106111725760405162461bcd60e51b815260040161087490612ffa565b600f548211156111945760405162461bcd60e51b8152600401610874906131bf565b61154f6111a9836111a3610932565b90611ced565b11156111c75760405162461bcd60e51b815260040161087490612de4565b600f54336000908152601060205260409020546111e49084611ced565b11156112025760405162461bcd60e51b815260040161087490612eff565b600b5434906112119084611d00565b1461122e5760405162461bcd60e51b815260040161087490612ac7565b336000908152601060205260408120805484929061124d90849061326e565b9091555061125d90503383611b6f565b610b55565b6115b361126d610932565b111561128b5760405162461bcd60e51b81526004016108749061308b565b816001146112ab5760405162461bcd60e51b8152600401610874906131bf565b3360009081526011602052604090205460ff16156112db5760405162461bcd60e51b815260040161087490613188565b336000818152601160205260409020805460ff19166001179055610b559083611b6f565b600d54610100900460ff166113265760405162461bcd60e51b815260040161087490612c61565b600d5462010000900460ff161561134f5760405162461bcd60e51b815260040161087490612fc3565b600a8111156113705760405162461bcd60e51b815260040161087490612998565b61154f61137f826111a3610932565b111561139d5760405162461bcd60e51b815260040161087490612de4565b600b5434906113ac9083611d00565b146113c95760405162461bcd60e51b815260040161087490612ac7565b6113d33382611b6f565b50565b6060600280546107ca9061333b565b600081815b845181101561152157600085828151811061141557634e487b7160e01b600052603260045260246000fd5b6020026020010151905080831161149c576002838260405160200161143b929190612778565b60408051601f198184030181529082905261145591612786565b602060405180830381855afa158015611472573d6000803e3d6000fd5b5050506040513d601f19601f8201168201806040525081019061149591906125b2565b925061150e565b600281846040516020016114b1929190612778565b60408051601f19818403018152908290526114cb91612786565b602060405180830381855afa1580156114e8573d6000803e3d6000fd5b5050506040513d601f19601f8201168201806040525081019061150b91906125b2565b92505b508061151981613376565b9150506113ea565b50600e54149392505050565b6115356117fd565b6001600160a01b0316826001600160a01b031614156115665760405162461bcd60e51b815260040161087490612d5b565b80600660006115736117fd565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556115b76117fd565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115ef9190612868565b60405180910390a35050565b600b5481565b600d5460ff1681565b600f5481565b61161b84848461185d565b61162784848484611d0c565b6116435760405162461bcd60e51b815260040161087490612e75565b50505050565b6060611654826117f6565b6116705760405162461bcd60e51b815260040161087490612d0c565b600d5460ff166116a257600a60405160200161168c91906127a2565b60405160208183030381529060405290506107b6565b60096116ad83611e28565b60405160200161168c9291906127ae565b61154f81565b600c5481565b60075481565b600a81565b6116dd6117fd565b6001600160a01b03166116ee6110b5565b6001600160a01b0316146117145760405162461bcd60e51b815260040161087490612cd7565b815161172790600a9060208501906121ba565b50805161092d9060099060208401906121ba565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b600e5481565b6117776117fd565b6001600160a01b03166117886110b5565b6001600160a01b0316146117ae5760405162461bcd60e51b815260040161087490612cd7565b6001600160a01b0381166117d45760405162461bcd60e51b815260040161087490612908565b6113d381611c9b565b6001600160e01b031981166301ffc9a760e01b14919050565b6000541190565b3390565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061186882611b89565b9050600081600001516001600160a01b03166118826117fd565b6001600160a01b031614806118b7575061189a6117fd565b6001600160a01b03166118ac8461084d565b6001600160a01b0316145b806118cb575081516118cb9061071e6117fd565b9050806118ea5760405162461bcd60e51b815260040161087490612d92565b846001600160a01b031682600001516001600160a01b03161461191f5760405162461bcd60e51b815260040161087490612c91565b6001600160a01b0384166119455760405162461bcd60e51b815260040161087490612a56565b6119528585856001611643565b6119626000848460000151611801565b6001600160a01b03851660009081526004602052604081208054600192906119949084906001600160801b03166132b9565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260046020526040812080546001945090926119e09185911661324c565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526003909152948520935184549151909216600160a01b0267ffffffffffffffff60a01b19929093166001600160a01b03199091161716179055611a7584600161326e565b6000818152600360205260409020549091506001600160a01b0316611b1957611a9d816117f6565b15611b195760408051808201825284516001600160a01b0390811682526020808701516001600160401b0390811682850190815260008781526003909352949091209251835494516001600160a01b031990951692169190911767ffffffffffffffff60a01b1916600160a01b93909116929092029190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611b678686866001611643565b505050505050565b610b55828260405180602001604052806000815250611f42565b611b9161223a565b611b9a826117f6565b611bb65760405162461bcd60e51b81526004016108749061294e565b60007f00000000000000000000000000000000000000000000000000000000000000008310611c1757611c097f0000000000000000000000000000000000000000000000000000000000000000846132e1565b611c1490600161326e565b90505b825b818110611c82576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215611c6f5792506107b6915050565b5080611c7a81613324565b915050611c19565b5060405162461bcd60e51b81526004016108749061303c565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000611cf9828461326e565b9392505050565b6000611cf9828461329a565b6000611d20846001600160a01b03166121b4565b15611e1c57836001600160a01b031663150b7a02611d3c6117fd565b8786866040518563ffffffff1660e01b8152600401611d5e94939291906127e7565b602060405180830381600087803b158015611d7857600080fd5b505af1925050508015611da8575060408051601f3d908101601f19168201909252611da5918101906125e6565b60015b611e02573d808015611dd6576040519150601f19603f3d011682016040523d82523d6000602084013e611ddb565b606091505b508051611dfa5760405162461bcd60e51b815260040161087490612e75565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611e20565b5060015b949350505050565b606081611e4d57506040805180820190915260018152600360fc1b60208201526107b6565b8160005b8115611e775780611e6181613376565b9150611e709050600a83613286565b9150611e51565b6000816001600160401b03811115611e9f57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611ec9576020820181803683370190505b5090505b8415611e2057611ede6001836132e1565b9150611eeb600a86613391565b611ef690603061326e565b60f81b818381518110611f1957634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611f3b600a86613286565b9450611ecd565b6000546001600160a01b038416611f6b5760405162461bcd60e51b815260040161087490612f34565b611f74816117f6565b15611f915760405162461bcd60e51b815260040161087490612ec8565b7f0000000000000000000000000000000000000000000000000000000000000000831115611fd15760405162461bcd60e51b81526004016108749061310f565b611fde6000858386611643565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b909104169181019190915281518083019092528051909190819061203a90879061324c565b6001600160801b03168152602001858360200151612058919061324c565b6001600160801b039081169091526001600160a01b03808816600081815260046020908152604080832087518154988401518816600160801b029088166fffffffffffffffffffffffffffffffff199099169890981790961696909617909455845180860186529182526001600160401b034281168386019081528883526003909552948120915182549451909516600160a01b0267ffffffffffffffff60a01b19959093166001600160a01b031990941693909317939093161790915582905b858110156121a25760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46121666000888488611d0c565b6121825760405162461bcd60e51b815260040161087490612e75565b8161218c81613376565b925050808061219a90613376565b915050612119565b506000818155611b6790878588611643565b3b151590565b8280546121c69061333b565b90600052602060002090601f0160209004810192826121e8576000855561222e565b82601f1061220157805160ff191683800117855561222e565b8280016001018555821561222e579182015b8281111561222e578251825591602001919060010190612213565b50610e25929150612251565b604080518082019091526000808252602082015290565b5b80821115610e255760008155600101612252565b60006001600160401b0383111561227f5761227f6133d1565b612292601f8401601f19166020016131f4565b90508281528383830111156122a657600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146107b657600080fd5b600082601f8301126122e4578081fd5b813560206122f96122f48361321d565b6131f4565b8281528181019085830183850287018401881015612315578586fd5b855b8581101561233357813584529284019290840190600101612317565b5090979650505050505050565b803580151581146107b657600080fd5b600082601f830112612360578081fd5b611cf983833560208501612266565b600060208284031215612380578081fd5b611cf9826122bd565b6000806040838503121561239b578081fd5b6123a4836122bd565b91506123b2602084016122bd565b90509250929050565b6000806000606084860312156123cf578081fd5b6123d8846122bd565b92506123e6602085016122bd565b9150604084013590509250925092565b6000806000806080858703121561240b578081fd5b612414856122bd565b9350612422602086016122bd565b92506040850135915060608501356001600160401b03811115612443578182fd5b8501601f81018713612453578182fd5b61246287823560208401612266565b91505092959194509250565b60008060408385031215612480578182fd5b612489836122bd565b91506123b260208401612340565b600080604083850312156124a9578182fd5b6124b2836122bd565b946020939093013593505050565b600060208083850312156124d2578182fd5b82356001600160401b038111156124e7578283fd5b8301601f810185136124f7578283fd5b80356125056122f48261321d565b8181528381019083850185840285018601891015612521578687fd5b8694505b8385101561254a57612536816122bd565b835260019490940193918501918501612525565b50979650505050505050565b60008060408385031215612568578182fd5b82356001600160401b0381111561257d578283fd5b612589858286016122d4565b95602094909401359450505050565b6000602082840312156125a9578081fd5b611cf982612340565b6000602082840312156125c3578081fd5b5051919050565b6000602082840312156125db578081fd5b8135611cf9816133e7565b6000602082840312156125f7578081fd5b8151611cf9816133e7565b60008060408385031215612614578182fd5b82356001600160401b038082111561262a578384fd5b61263686838701612350565b9350602085013591508082111561264b578283fd5b5061265885828601612350565b9150509250929050565b600060208284031215612673578081fd5b5035919050565b6000806040838503121561268c578182fd5b8235915060208301356001600160401b038111156126a8578182fd5b612658858286016122d4565b600081518084526126cc8160208601602086016132f8565b601f01601f19169290920160200192915050565b8054600090600281046001808316806126fa57607f831692505b602080841082141561271a57634e487b7160e01b86526022600452602486fd5b81801561272e576001811461273f5761276c565b60ff1986168952848901965061276c565b61274888613240565b60005b868110156127645781548b82015290850190830161274b565b505084890196505b50505050505092915050565b918252602082015260400190565b600082516127988184602087016132f8565b9190910192915050565b6000611cf982846126e0565b60006127ba82856126e0565b83516127ca8183602088016132f8565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061281a908301846126b4565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561285c57835183529284019291840191600101612840565b50909695505050505050565b901515815260200190565b90815260200190565b600060208252611cf960208301846126b4565b60208082526022908201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b60208082526017908201527f57686974656c697374206973206e6f7420616374697665000000000000000000604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252602a908201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736040820152693a32b73a103a37b5b2b760b11b606082015260800190565b60208082526017908201527f43616e6e6f74206d696e742061626f7665206c696d6974000000000000000000604082015260600190565b60208082526023908201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756040820152626e647360e81b606082015260800190565b60208082526024908201527f455243373231413a20756e61626c6520746f206765742077616c6c65744f664f6040820152633bb732b960e11b606082015260800190565b60208082526025908201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526012908201527153616c65206973206e6f742061637469766560701b604082015260600190565b6020808252601f908201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604082015260600190565b6020808252818101527f42616c616e63652073686f756c64206265206d6f7265207468656e207a65726f604082015260600190565b6020808252600f908201526e139bdd081dda1a5d195b1a5cdd1959608a1b604082015260600190565b60208082526039908201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606082015260800190565b60208082526038908201527f546f6b656e73206e756d62657220746f206d696e742063616e6e6f742065786360408201527f656564206e756d626572206f66204d415820746f6b656e730000000000000000606082015260800190565b6020808252602b908201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60408201526a65726f206164647265737360a81b606082015260800190565b602080825260169082015275436f6e7472616374206973206e6f742061637469766560501b604082015260600190565b60208082526026908201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746040820152651037bbb732b960d11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b6020808252601a908201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604082015260600190565b60208082526032908201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b6020808252602f908201527f507572636861736520776f756c6420657863656564206d6178207075626c696360408201526e20737570706c79206f66204e46547360881b606082015260800190565b60208082526022908201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60408201526132b960f11b606082015260800190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252601d908201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604082015260600190565b6020808252818101527f50757263686173652065786365656473206d61782077686974656c6973746564604082015260600190565b60208082526021908201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b6020808252602e908201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060408201526d0deeedccae440c4f240d2dcc8caf60931b606082015260800190565b60208082526017908201527f50726573616c65206973207374696c6c20616374697665000000000000000000604082015260600190565b60208082526022908201527f416c6c207075626c696320746f6b656e732068617665206265656e206d696e74604082015261195960f21b606082015260800190565b6020808252602f908201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560408201526e1037bbb732b91037b3103a37b5b2b760891b606082015260800190565b6020808252601b908201527f416c6c20746f6b656e732068617665206265656e206d696e7465640000000000604082015260600190565b6020808252602d908201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560408201526c3c34b9ba32b73a103a37b5b2b760991b606082015260800190565b60208082526022908201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696040820152610ced60f31b606082015260800190565b60208082526019908201527f63616e6e6f742073657420707269636520746f6f206869676800000000000000604082015260600190565b60208082526018908201527f416c726561647920636c61696d65642067697665617761790000000000000000604082015260600190565b6020808252818101527f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e73604082015260600190565b6040518181016001600160401b0381118282101715613215576132156133d1565b604052919050565b60006001600160401b03821115613236576132366133d1565b5060209081020190565b60009081526020902090565b60006001600160801b038083168185168083038211156127ca576127ca6133a5565b60008219821115613281576132816133a5565b500190565b600082613295576132956133bb565b500490565b60008160001904831182151516156132b4576132b46133a5565b500290565b60006001600160801b03838116908316818110156132d9576132d96133a5565b039392505050565b6000828210156132f3576132f36133a5565b500390565b60005b838110156133135781810151838201526020016132fb565b838111156116435750506000910152565b600081613333576133336133a5565b506000190190565b60028104600182168061334f57607f821691505b6020821081141561337057634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561338a5761338a6133a5565b5060010190565b6000826133a0576133a06133bb565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146113d357600080fdfea264697066735822122080c1f60f11880bd554a2e7303786a8b3e4a260bc17ec48c9a197f86873cfb7dc64736f6c63430008000033

Deployed Bytecode

0x6080604052600436106102675760003560e01c806370c0a79211610144578063aeb16768116100b6578063d7224ba01161007a578063d7224ba0146106b9578063e748e07c146106ce578063e8254174146106e3578063e985e9c514610703578063ebf0c71714610723578063f2fde38b1461073857610267565b8063aeb167681461063a578063b88d4fde1461064f578063c87b56dd1461066f578063d1d80f301461068f578063d70ea894146106a457610267565b8063926427441161010857806392642744146105a857806395d89b41146105bb578063972a2a62146105d0578063a22cb465146105f0578063a38bffda14610610578063a475b5dd1461062557610267565b806370c0a7921461052b578063715018a61461054b57806381530b68146105605780638da5cb5b146105805780638f76696c1461059557610267565b80633f8121a2116101dd5780634f9b563c116101a15780634f9b563c1461048c5780635f0f45b2146104ac57806360d938dc146104c15780636352211e146104d65780636b74a598146104f657806370a082311461050b57610267565b80633f8121a2146103df57806342842e0e146103ff578063438b63001461041f5780634cdb44001461044c5780634f6ccce71461046c57610267565b806322f3e2d41161022f57806322f3e2d4146103355780632333f3c41461034a57806323b872dd1461036a5780632750fc781461038a5780632f745c59146103aa5780633ccfd60b146103ca57610267565b806301ffc9a71461026c57806306fdde03146102a2578063081812fc146102c4578063095ea7b3146102f157806318160ddd14610313575b600080fd5b34801561027857600080fd5b5061028c6102873660046125ca565b610758565b6040516102999190612868565b60405180910390f35b3480156102ae57600080fd5b506102b76107bb565b604051610299919061287c565b3480156102d057600080fd5b506102e46102df366004612662565b61084d565b60405161029991906127d3565b3480156102fd57600080fd5b5061031161030c366004612497565b610899565b005b34801561031f57600080fd5b50610328610932565b6040516102999190612873565b34801561034157600080fd5b5061028c610938565b34801561035657600080fd5b5061032861036536600461236f565b610946565b34801561037657600080fd5b506103116103853660046123bb565b610958565b34801561039657600080fd5b506103116103a5366004612598565b610963565b3480156103b657600080fd5b506103286103c5366004612497565b6109bc565b3480156103d657600080fd5b50610311610ab7565b3480156103eb57600080fd5b506103116103fa366004612598565b610b59565b34801561040b57600080fd5b5061031161041a3660046123bb565b610bb4565b34801561042b57600080fd5b5061043f61043a36600461236f565b610bcf565b6040516102999190612824565b34801561045857600080fd5b506103116104673660046124c0565b610d3a565b34801561047857600080fd5b50610328610487366004612662565b610dfd565b34801561049857600080fd5b506103116104a7366004612598565b610e29565b3480156104b857600080fd5b50610311610e86565b3480156104cd57600080fd5b5061028c610ed4565b3480156104e257600080fd5b506102e46104f1366004612662565b610ee3565b34801561050257600080fd5b50610311610ef5565b34801561051757600080fd5b5061032861052636600461236f565b610f75565b34801561053757600080fd5b50610311610546366004612662565b610fc2565b34801561055757600080fd5b50610311611006565b34801561056c57600080fd5b5061031161057b366004612662565b61104f565b34801561058c57600080fd5b506102e46110b5565b6103116105a336600461267a565b6110c4565b6103116105b6366004612662565b6112ff565b3480156105c757600080fd5b506102b76113d6565b3480156105dc57600080fd5b5061028c6105eb366004612556565b6113e5565b3480156105fc57600080fd5b5061031161060b36600461246e565b61152d565b34801561061c57600080fd5b506103286115fb565b34801561063157600080fd5b5061028c611601565b34801561064657600080fd5b5061032861160a565b34801561065b57600080fd5b5061031161066a3660046123f6565b611610565b34801561067b57600080fd5b506102b761068a366004612662565b611649565b34801561069b57600080fd5b506103286116be565b3480156106b057600080fd5b506103286116c4565b3480156106c557600080fd5b506103286116ca565b3480156106da57600080fd5b506103286116d0565b3480156106ef57600080fd5b506103116106fe366004612602565b6116d5565b34801561070f57600080fd5b5061028c61071e366004612389565b61173b565b34801561072f57600080fd5b50610328611769565b34801561074457600080fd5b5061031161075336600461236f565b61176f565b60006001600160e01b031982166380ac58cd60e01b148061078957506001600160e01b03198216635b5e139f60e01b145b806107a457506001600160e01b0319821663780e9d6360e01b145b806107b357506107b3826117dd565b90505b919050565b6060600180546107ca9061333b565b80601f01602080910402602001604051908101604052809291908181526020018280546107f69061333b565b80156108435780601f1061081857610100808354040283529160200191610843565b820191906000526020600020905b81548152906001019060200180831161082657829003601f168201915b5050505050905090565b6000610858826117f6565b61087d5760405162461bcd60e51b8152600401610874906130c2565b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006108a482610ee3565b9050806001600160a01b0316836001600160a01b031614156108d85760405162461bcd60e51b815260040161087490612e33565b806001600160a01b03166108ea6117fd565b6001600160a01b0316148061090657506109068161071e6117fd565b6109225760405162461bcd60e51b815260040161087490612b5c565b61092d838383611801565b505050565b60005490565b600d54610100900460ff1681565b60106020526000908152604090205481565b61092d83838361185d565b61096b6117fd565b6001600160a01b031661097c6110b5565b6001600160a01b0316146109a25760405162461bcd60e51b815260040161087490612cd7565b600d80549115156101000261ff0019909216919091179055565b60006109c783610f75565b82106109e55760405162461bcd60e51b81526004016108749061288f565b60006109ef610932565b905060008060005b83811015610a98576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610a4957805192505b876001600160a01b0316836001600160a01b03161415610a855786841415610a7757509350610ab192505050565b83610a8181613376565b9450505b5080610a9081613376565b9150506109f7565b5060405162461bcd60e51b815260040161087490612f75565b92915050565b610abf6117fd565b6001600160a01b0316610ad06110b5565b6001600160a01b031614610af65760405162461bcd60e51b815260040161087490612cd7565b4780610b145760405162461bcd60e51b815260040161087490612afe565b60405173e68a91cc3f619777649b1fb541d5423bfb3982d89082156108fc029083906000818181858888f19350505050158015610b55573d6000803e3d6000fd5b5050565b610b616117fd565b6001600160a01b0316610b726110b5565b6001600160a01b031614610b985760405162461bcd60e51b815260040161087490612cd7565b600d8054911515620100000262ff000019909216919091179055565b61092d83838360405180602001604052806000815250611610565b60606000610bdc83610f75565b90506000816001600160401b03811115610c0657634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610c2f578160200160208202803683370190505b50905081610c405791506107b69050565b6000610c4a610932565b905060008060005b83811015610d21576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610ca457805192505b886001600160a01b0316836001600160a01b03161415610d0e5781868581518110610cdf57634e487b7160e01b600052603260045260246000fd5b602090810291909101015283610cf481613376565b94505086841415610d0e57859750505050505050506107b6565b5080610d1981613376565b915050610c52565b5060405162461bcd60e51b815260040161087490612a12565b610d426117fd565b6001600160a01b0316610d536110b5565b6001600160a01b031614610d795760405162461bcd60e51b815260040161087490612cd7565b60005b8151811015610b55576115b3610d90610932565b610d9b90600161326e565b1115610db95760405162461bcd60e51b815260040161087490612bb9565b610deb828281518110610ddc57634e487b7160e01b600052603260045260246000fd5b60200260200101516001611b6f565b80610df581613376565b915050610d7c565b6000610e07610932565b8210610e255760405162461bcd60e51b8152600401610874906129cf565b5090565b610e316117fd565b6001600160a01b0316610e426110b5565b6001600160a01b031614610e685760405162461bcd60e51b815260040161087490612cd7565b600d805491151563010000000263ff00000019909216919091179055565b610e8e6117fd565b6001600160a01b0316610e9f6110b5565b6001600160a01b031614610ec55760405162461bcd60e51b815260040161087490612cd7565b600d805460ff19166001179055565b600d5462010000900460ff1681565b6000610eee82611b89565b5192915050565b610efd6117fd565b6001600160a01b0316610f0e6110b5565b6001600160a01b031614610f345760405162461bcd60e51b815260040161087490612cd7565b6115b3610f3f610932565b610f4a90600161326e565b1115610f685760405162461bcd60e51b815260040161087490612bb9565b610f73336001611b6f565b565b60006001600160a01b038216610f9d5760405162461bcd60e51b815260040161087490612c16565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b610fca6117fd565b6001600160a01b0316610fdb6110b5565b6001600160a01b0316146110015760405162461bcd60e51b815260040161087490612cd7565b600e55565b61100e6117fd565b6001600160a01b031661101f6110b5565b6001600160a01b0316146110455760405162461bcd60e51b815260040161087490612cd7565b610f736000611c9b565b6110576117fd565b6001600160a01b03166110686110b5565b6001600160a01b03161461108e5760405162461bcd60e51b815260040161087490612cd7565b600c548111156110b05760405162461bcd60e51b815260040161087490613151565b600b55565b6008546001600160a01b031690565b600d54610100900460ff166110eb5760405162461bcd60e51b815260040161087490612a9b565b600d5462010000900460ff166111135760405162461bcd60e51b8152600401610874906128d1565b61111d81336113e5565b6111395760405162461bcd60e51b815260040161087490612b33565b600d546301000000900460ff166112625761154f611155610932565b106111725760405162461bcd60e51b815260040161087490612ffa565b600f548211156111945760405162461bcd60e51b8152600401610874906131bf565b61154f6111a9836111a3610932565b90611ced565b11156111c75760405162461bcd60e51b815260040161087490612de4565b600f54336000908152601060205260409020546111e49084611ced565b11156112025760405162461bcd60e51b815260040161087490612eff565b600b5434906112119084611d00565b1461122e5760405162461bcd60e51b815260040161087490612ac7565b336000908152601060205260408120805484929061124d90849061326e565b9091555061125d90503383611b6f565b610b55565b6115b361126d610932565b111561128b5760405162461bcd60e51b81526004016108749061308b565b816001146112ab5760405162461bcd60e51b8152600401610874906131bf565b3360009081526011602052604090205460ff16156112db5760405162461bcd60e51b815260040161087490613188565b336000818152601160205260409020805460ff19166001179055610b559083611b6f565b600d54610100900460ff166113265760405162461bcd60e51b815260040161087490612c61565b600d5462010000900460ff161561134f5760405162461bcd60e51b815260040161087490612fc3565b600a8111156113705760405162461bcd60e51b815260040161087490612998565b61154f61137f826111a3610932565b111561139d5760405162461bcd60e51b815260040161087490612de4565b600b5434906113ac9083611d00565b146113c95760405162461bcd60e51b815260040161087490612ac7565b6113d33382611b6f565b50565b6060600280546107ca9061333b565b600081815b845181101561152157600085828151811061141557634e487b7160e01b600052603260045260246000fd5b6020026020010151905080831161149c576002838260405160200161143b929190612778565b60408051601f198184030181529082905261145591612786565b602060405180830381855afa158015611472573d6000803e3d6000fd5b5050506040513d601f19601f8201168201806040525081019061149591906125b2565b925061150e565b600281846040516020016114b1929190612778565b60408051601f19818403018152908290526114cb91612786565b602060405180830381855afa1580156114e8573d6000803e3d6000fd5b5050506040513d601f19601f8201168201806040525081019061150b91906125b2565b92505b508061151981613376565b9150506113ea565b50600e54149392505050565b6115356117fd565b6001600160a01b0316826001600160a01b031614156115665760405162461bcd60e51b815260040161087490612d5b565b80600660006115736117fd565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556115b76117fd565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115ef9190612868565b60405180910390a35050565b600b5481565b600d5460ff1681565b600f5481565b61161b84848461185d565b61162784848484611d0c565b6116435760405162461bcd60e51b815260040161087490612e75565b50505050565b6060611654826117f6565b6116705760405162461bcd60e51b815260040161087490612d0c565b600d5460ff166116a257600a60405160200161168c91906127a2565b60405160208183030381529060405290506107b6565b60096116ad83611e28565b60405160200161168c9291906127ae565b61154f81565b600c5481565b60075481565b600a81565b6116dd6117fd565b6001600160a01b03166116ee6110b5565b6001600160a01b0316146117145760405162461bcd60e51b815260040161087490612cd7565b815161172790600a9060208501906121ba565b50805161092d9060099060208401906121ba565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b600e5481565b6117776117fd565b6001600160a01b03166117886110b5565b6001600160a01b0316146117ae5760405162461bcd60e51b815260040161087490612cd7565b6001600160a01b0381166117d45760405162461bcd60e51b815260040161087490612908565b6113d381611c9b565b6001600160e01b031981166301ffc9a760e01b14919050565b6000541190565b3390565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061186882611b89565b9050600081600001516001600160a01b03166118826117fd565b6001600160a01b031614806118b7575061189a6117fd565b6001600160a01b03166118ac8461084d565b6001600160a01b0316145b806118cb575081516118cb9061071e6117fd565b9050806118ea5760405162461bcd60e51b815260040161087490612d92565b846001600160a01b031682600001516001600160a01b03161461191f5760405162461bcd60e51b815260040161087490612c91565b6001600160a01b0384166119455760405162461bcd60e51b815260040161087490612a56565b6119528585856001611643565b6119626000848460000151611801565b6001600160a01b03851660009081526004602052604081208054600192906119949084906001600160801b03166132b9565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260046020526040812080546001945090926119e09185911661324c565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526003909152948520935184549151909216600160a01b0267ffffffffffffffff60a01b19929093166001600160a01b03199091161716179055611a7584600161326e565b6000818152600360205260409020549091506001600160a01b0316611b1957611a9d816117f6565b15611b195760408051808201825284516001600160a01b0390811682526020808701516001600160401b0390811682850190815260008781526003909352949091209251835494516001600160a01b031990951692169190911767ffffffffffffffff60a01b1916600160a01b93909116929092029190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611b678686866001611643565b505050505050565b610b55828260405180602001604052806000815250611f42565b611b9161223a565b611b9a826117f6565b611bb65760405162461bcd60e51b81526004016108749061294e565b60007f000000000000000000000000000000000000000000000000000000000000000a8310611c1757611c097f000000000000000000000000000000000000000000000000000000000000000a846132e1565b611c1490600161326e565b90505b825b818110611c82576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215611c6f5792506107b6915050565b5080611c7a81613324565b915050611c19565b5060405162461bcd60e51b81526004016108749061303c565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000611cf9828461326e565b9392505050565b6000611cf9828461329a565b6000611d20846001600160a01b03166121b4565b15611e1c57836001600160a01b031663150b7a02611d3c6117fd565b8786866040518563ffffffff1660e01b8152600401611d5e94939291906127e7565b602060405180830381600087803b158015611d7857600080fd5b505af1925050508015611da8575060408051601f3d908101601f19168201909252611da5918101906125e6565b60015b611e02573d808015611dd6576040519150601f19603f3d011682016040523d82523d6000602084013e611ddb565b606091505b508051611dfa5760405162461bcd60e51b815260040161087490612e75565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611e20565b5060015b949350505050565b606081611e4d57506040805180820190915260018152600360fc1b60208201526107b6565b8160005b8115611e775780611e6181613376565b9150611e709050600a83613286565b9150611e51565b6000816001600160401b03811115611e9f57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611ec9576020820181803683370190505b5090505b8415611e2057611ede6001836132e1565b9150611eeb600a86613391565b611ef690603061326e565b60f81b818381518110611f1957634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611f3b600a86613286565b9450611ecd565b6000546001600160a01b038416611f6b5760405162461bcd60e51b815260040161087490612f34565b611f74816117f6565b15611f915760405162461bcd60e51b815260040161087490612ec8565b7f000000000000000000000000000000000000000000000000000000000000000a831115611fd15760405162461bcd60e51b81526004016108749061310f565b611fde6000858386611643565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b909104169181019190915281518083019092528051909190819061203a90879061324c565b6001600160801b03168152602001858360200151612058919061324c565b6001600160801b039081169091526001600160a01b03808816600081815260046020908152604080832087518154988401518816600160801b029088166fffffffffffffffffffffffffffffffff199099169890981790961696909617909455845180860186529182526001600160401b034281168386019081528883526003909552948120915182549451909516600160a01b0267ffffffffffffffff60a01b19959093166001600160a01b031990941693909317939093161790915582905b858110156121a25760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46121666000888488611d0c565b6121825760405162461bcd60e51b815260040161087490612e75565b8161218c81613376565b925050808061219a90613376565b915050612119565b506000818155611b6790878588611643565b3b151590565b8280546121c69061333b565b90600052602060002090601f0160209004810192826121e8576000855561222e565b82601f1061220157805160ff191683800117855561222e565b8280016001018555821561222e579182015b8281111561222e578251825591602001919060010190612213565b50610e25929150612251565b604080518082019091526000808252602082015290565b5b80821115610e255760008155600101612252565b60006001600160401b0383111561227f5761227f6133d1565b612292601f8401601f19166020016131f4565b90508281528383830111156122a657600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146107b657600080fd5b600082601f8301126122e4578081fd5b813560206122f96122f48361321d565b6131f4565b8281528181019085830183850287018401881015612315578586fd5b855b8581101561233357813584529284019290840190600101612317565b5090979650505050505050565b803580151581146107b657600080fd5b600082601f830112612360578081fd5b611cf983833560208501612266565b600060208284031215612380578081fd5b611cf9826122bd565b6000806040838503121561239b578081fd5b6123a4836122bd565b91506123b2602084016122bd565b90509250929050565b6000806000606084860312156123cf578081fd5b6123d8846122bd565b92506123e6602085016122bd565b9150604084013590509250925092565b6000806000806080858703121561240b578081fd5b612414856122bd565b9350612422602086016122bd565b92506040850135915060608501356001600160401b03811115612443578182fd5b8501601f81018713612453578182fd5b61246287823560208401612266565b91505092959194509250565b60008060408385031215612480578182fd5b612489836122bd565b91506123b260208401612340565b600080604083850312156124a9578182fd5b6124b2836122bd565b946020939093013593505050565b600060208083850312156124d2578182fd5b82356001600160401b038111156124e7578283fd5b8301601f810185136124f7578283fd5b80356125056122f48261321d565b8181528381019083850185840285018601891015612521578687fd5b8694505b8385101561254a57612536816122bd565b835260019490940193918501918501612525565b50979650505050505050565b60008060408385031215612568578182fd5b82356001600160401b0381111561257d578283fd5b612589858286016122d4565b95602094909401359450505050565b6000602082840312156125a9578081fd5b611cf982612340565b6000602082840312156125c3578081fd5b5051919050565b6000602082840312156125db578081fd5b8135611cf9816133e7565b6000602082840312156125f7578081fd5b8151611cf9816133e7565b60008060408385031215612614578182fd5b82356001600160401b038082111561262a578384fd5b61263686838701612350565b9350602085013591508082111561264b578283fd5b5061265885828601612350565b9150509250929050565b600060208284031215612673578081fd5b5035919050565b6000806040838503121561268c578182fd5b8235915060208301356001600160401b038111156126a8578182fd5b612658858286016122d4565b600081518084526126cc8160208601602086016132f8565b601f01601f19169290920160200192915050565b8054600090600281046001808316806126fa57607f831692505b602080841082141561271a57634e487b7160e01b86526022600452602486fd5b81801561272e576001811461273f5761276c565b60ff1986168952848901965061276c565b61274888613240565b60005b868110156127645781548b82015290850190830161274b565b505084890196505b50505050505092915050565b918252602082015260400190565b600082516127988184602087016132f8565b9190910192915050565b6000611cf982846126e0565b60006127ba82856126e0565b83516127ca8183602088016132f8565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061281a908301846126b4565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561285c57835183529284019291840191600101612840565b50909695505050505050565b901515815260200190565b90815260200190565b600060208252611cf960208301846126b4565b60208082526022908201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b60208082526017908201527f57686974656c697374206973206e6f7420616374697665000000000000000000604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252602a908201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736040820152693a32b73a103a37b5b2b760b11b606082015260800190565b60208082526017908201527f43616e6e6f74206d696e742061626f7665206c696d6974000000000000000000604082015260600190565b60208082526023908201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756040820152626e647360e81b606082015260800190565b60208082526024908201527f455243373231413a20756e61626c6520746f206765742077616c6c65744f664f6040820152633bb732b960e11b606082015260800190565b60208082526025908201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526012908201527153616c65206973206e6f742061637469766560701b604082015260600190565b6020808252601f908201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604082015260600190565b6020808252818101527f42616c616e63652073686f756c64206265206d6f7265207468656e207a65726f604082015260600190565b6020808252600f908201526e139bdd081dda1a5d195b1a5cdd1959608a1b604082015260600190565b60208082526039908201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606082015260800190565b60208082526038908201527f546f6b656e73206e756d62657220746f206d696e742063616e6e6f742065786360408201527f656564206e756d626572206f66204d415820746f6b656e730000000000000000606082015260800190565b6020808252602b908201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60408201526a65726f206164647265737360a81b606082015260800190565b602080825260169082015275436f6e7472616374206973206e6f742061637469766560501b604082015260600190565b60208082526026908201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746040820152651037bbb732b960d11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b6020808252601a908201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604082015260600190565b60208082526032908201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b6020808252602f908201527f507572636861736520776f756c6420657863656564206d6178207075626c696360408201526e20737570706c79206f66204e46547360881b606082015260800190565b60208082526022908201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60408201526132b960f11b606082015260800190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252601d908201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604082015260600190565b6020808252818101527f50757263686173652065786365656473206d61782077686974656c6973746564604082015260600190565b60208082526021908201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b6020808252602e908201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060408201526d0deeedccae440c4f240d2dcc8caf60931b606082015260800190565b60208082526017908201527f50726573616c65206973207374696c6c20616374697665000000000000000000604082015260600190565b60208082526022908201527f416c6c207075626c696320746f6b656e732068617665206265656e206d696e74604082015261195960f21b606082015260800190565b6020808252602f908201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560408201526e1037bbb732b91037b3103a37b5b2b760891b606082015260800190565b6020808252601b908201527f416c6c20746f6b656e732068617665206265656e206d696e7465640000000000604082015260600190565b6020808252602d908201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560408201526c3c34b9ba32b73a103a37b5b2b760991b606082015260800190565b60208082526022908201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696040820152610ced60f31b606082015260800190565b60208082526019908201527f63616e6e6f742073657420707269636520746f6f206869676800000000000000604082015260600190565b60208082526018908201527f416c726561647920636c61696d65642067697665617761790000000000000000604082015260600190565b6020808252818101527f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e73604082015260600190565b6040518181016001600160401b0381118282101715613215576132156133d1565b604052919050565b60006001600160401b03821115613236576132366133d1565b5060209081020190565b60009081526020902090565b60006001600160801b038083168185168083038211156127ca576127ca6133a5565b60008219821115613281576132816133a5565b500190565b600082613295576132956133bb565b500490565b60008160001904831182151516156132b4576132b46133a5565b500290565b60006001600160801b03838116908316818110156132d9576132d96133a5565b039392505050565b6000828210156132f3576132f36133a5565b500390565b60005b838110156133135781810151838201526020016132fb565b838111156116435750506000910152565b600081613333576133336133a5565b506000190190565b60028104600182168061334f57607f821691505b6020821081141561337057634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561338a5761338a6133a5565b5060010190565b6000826133a0576133a06133bb565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146113d357600080fdfea264697066735822122080c1f60f11880bd554a2e7303786a8b3e4a260bc17ec48c9a197f86873cfb7dc64736f6c63430008000033

Deployed Bytecode Sourcemap

66177:7265: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;66727:20::-;;;;;;;;;;;;;:::i;66892:51::-;;;;;;;;;;-1:-1:-1;66892:51:0;;;;;:::i;:::-;;:::i;58038:150::-;;;;;;;;;;-1:-1:-1;58038:150:0;;;;;:::i;:::-;;:::i;67274:137::-;;;;;;;;;;-1:-1:-1;67274:137:0;;;;;:::i;:::-;;:::i;52292:744::-;;;;;;;;;;-1:-1:-1;52292:744:0;;;;;:::i;:::-;;:::i;68307:280::-;;;;;;;;;;;;;:::i;67528:149::-;;;;;;;;;;-1:-1:-1;67528: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;71300:325::-;;;;;;;;;;-1:-1:-1;71300:325:0;;;;;:::i;:::-;;:::i;51827:177::-;;;;;;;;;;-1:-1:-1;51827:177:0;;;;;:::i;:::-;;:::i;67787:149::-;;;;;;;;;;-1:-1:-1;67787:149:0;;;;;:::i;:::-;;:::i;67070:98::-;;;;;;;;;;;;;:::i;66754:27::-;;;;;;;;;;;;;:::i;55486:118::-;;;;;;;;;;-1:-1:-1;55486:118:0;;;;;:::i;:::-;;:::i;70979:229::-;;;;;;;;;;;;;:::i;54363:211::-;;;;;;;;;;-1:-1:-1;54363:211:0;;;;;:::i;:::-;;:::i;72514:97::-;;;;;;;;;;-1:-1:-1;72514:97:0;;;;;:::i;:::-;;:::i;2503:94::-;;;;;;;;;;;;;:::i;71683:162::-;;;;;;;;;;-1:-1:-1;71683:162:0;;;;;:::i;:::-;;:::i;1852:87::-;;;;;;;;;;;;;:::i;69481:1410::-;;;;;;:::i;:::-;;:::i;68752:571::-;;;;;;:::i;:::-;;:::i;55818:98::-;;;;;;;;;;;;;:::i;72646:786::-;;;;;;;;;;-1:-1:-1;72646:786:0;;;;;:::i;:::-;;:::i;57456:274::-;;;;;;;;;;-1:-1:-1;57456:274:0;;;;;:::i;:::-;;:::i;66568:44::-;;;;;;;;;;;;;:::i;66702:18::-;;;;;;;;;;;;;:::i;66848:37::-;;;;;;;;;;;;;:::i;58479:319::-;;;;;;;;;;-1:-1:-1;58479:319:0;;;;;:::i;:::-;;:::i;71993:441::-;;;;;;;;;;-1:-1:-1;71993:441:0;;;;;:::i;:::-;;:::i;66470:45::-;;;;;;;;;;;;;:::i;66632:47::-;;;;;;;;;;;;;:::i;62818:43::-;;;;;;;;;;;;;:::i;66418:45::-;;;;;;;;;;;;;:::i;68008:197::-;;;;;;;;;;-1:-1:-1;68008:197:0;;;;;:::i;:::-;;:::i;57793:186::-;;;;;;;;;;-1:-1:-1;57793:186:0;;;;;:::i;:::-;;:::i;66822:19::-;;;;;;;;;;;;;:::i;2752:192::-;;;;;;;;;;-1:-1:-1;2752:192: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;66727:20::-;;;;;;;;;:::o;66892:51::-;;;;;;;;;;;;;:::o;58038:150::-;58154:28;58164:4;58170:2;58174:7;58154:9;:28::i;67274: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;:::-;67383:8:::1;:20:::0;;;::::1;;;;-1:-1:-1::0;;67383:20:0;;::::1;::::0;;;::::1;::::0;;67274: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;68307: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;:::-;68402:21:::1;68442:11:::0;68434:56:::1;;;;-1:-1:-1::0;;;68434:56:0::1;;;;;;;:::i;:::-;68501:78;::::0;68517:42:::1;::::0;68501:78;::::1;;;::::0;68571:7;;68501:78:::1;::::0;;;68571:7;68517:42;68501:78;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;2143:1;68307:280::o:0;67528: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;:::-;67642:15:::1;:27:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;67642:27:0;;::::1;::::0;;;::::1;::::0;;67528: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;71300: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;:::-;71426:9:::1;71422:196;71445:3;:10;71441:1;:14;71422:196;;;66557:4;71484:13;:11;:13::i;:::-;:15;::::0;71498:1:::1;71484:15;:::i;:::-;:26;;71476:95;;;;-1:-1:-1::0;;;71476:95:0::1;;;;;;;:::i;:::-;71586:20;71596:3;71600:1;71596:6;;;;;;-1:-1:-1::0;;;71596:6:0::1;;;;;;;;;;;;;;;71604:1;71586:9;:20::i;:::-;71457:3:::0;::::1;::::0;::::1;:::i;:::-;;;;71422: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;67787: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;:::-;67902:14:::1;:26:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;67902:26:0;;::::1;::::0;;;::::1;::::0;;67787:149::o;67070: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;:::-;67147:6:::1;:13:::0;;-1:-1:-1;;67147:13:0::1;67156:4;67147:13;::::0;;67070:98::o;66754:27::-;;;;;;;;;:::o;55486:118::-;55550:7;55573:20;55585:7;55573:11;:20::i;:::-;:25;;55486:118;-1:-1:-1;;55486:118:0:o;70979:229::-;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;:::-;66557:4:::1;71078:13;:11;:13::i;:::-;:15;::::0;71092:1:::1;71078:15;:::i;:::-;:26;;71070:95;;;;-1:-1:-1::0;;;71070:95:0::1;;;;;;;:::i;:::-;71176:24;71186:10;71198:1;71176:9;:24::i;:::-;70979:229::o:0;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;72514:97::-;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;:::-;72582:4:::1;:21:::0;72514:97::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;71683:162::-: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;:::-;71768:11:::1;;71758:6;:21;;71750:59;;;;-1:-1:-1::0;;;71750:59:0::1;;;;;;;:::i;:::-;71820:8;:17:::0;71683:162::o;1852:87::-;1925:6;;-1:-1:-1;;;;;1925:6:0;1852:87;:::o;69481:1410::-;69642:8;;;;;;;69634:39;;;;-1:-1:-1;;;69634:39:0;;;;;;;:::i;:::-;69692:15;;;;;;;69684:51;;;;-1:-1:-1;;;69684:51:0;;;;;;;:::i;:::-;69754:53;69761:6;69793:10;69754:6;:53::i;:::-;69746:81;;;;-1:-1:-1;;;69746:81:0;;;;;;;:::i;:::-;69843:14;;;;;;;69838:1046;;66511:4;69881:13;:11;:13::i;:::-;:30;69873:77;;;;-1:-1:-1;;;69873:77:0;;;;;;;:::i;:::-;69989:18;;69973:12;:34;;69965:79;;;;-1:-1:-1;;;69965:79:0;;;;;;;:::i;:::-;66511:4;70067:31;70085:12;70067:13;:11;:13::i;:::-;:17;;:31::i;:::-;:49;;70059:109;;;;-1:-1:-1;;;70059:109:0;;;;;;;:::i;:::-;70241:18;;70208:10;70191:28;;;;:16;:28;;;;;;:46;;70224:12;70191:32;:46::i;:::-;:68;;70183:113;;;;-1:-1:-1;;;70183:113:0;;;;;;;:::i;:::-;70319:8;;70349:9;;70319:26;;70332:12;70319;:26::i;:::-;:39;70311:83;;;;-1:-1:-1;;;70311:83:0;;;;;;;:::i;:::-;70426:10;70409:28;;;;:16;:28;;;;;:44;;70441:12;;70409:28;:44;;70441:12;;70409:44;:::i;:::-;;;;-1:-1:-1;70468:35:0;;-1:-1:-1;70478:10:0;70490:12;70468:9;:35::i;:::-;69838:1046;;;66557:4;70552:13;:11;:13::i;:::-;:24;;70544:64;;;;-1:-1:-1;;;70544:64:0;;;;;;;:::i;:::-;70631:12;70647:1;70631:17;70623:62;;;;-1:-1:-1;;;70623:62:0;;;;;;;:::i;:::-;70729:10;70709:31;;;;:19;:31;;;;;;;;70708:32;70700:69;;;;-1:-1:-1;;;70700:69:0;;;;;;;:::i;:::-;70804:10;70784:31;;;;:19;:31;;;;;:38;;-1:-1:-1;;70784:38:0;70818:4;70784:38;;;70837:35;;70859:12;70837:9;:35::i;68752:571::-;68864:8;;;;;;;68856:43;;;;-1:-1:-1;;;68856:43:0;;;;;;;:::i;:::-;68919:15;;;;;;;68918:16;68910:52;;;;-1:-1:-1;;;68910:52:0;;;;;;;:::i;:::-;66461:2;68981:12;:32;;68973:68;;;;-1:-1:-1;;;68973:68:0;;;;;;;:::i;:::-;66511:4;69060:31;69078:12;69060:13;:11;:13::i;:31::-;:49;;69052:109;;;;-1:-1:-1;;;69052:109:0;;;;;;;:::i;:::-;69180:8;;69210:9;;69180:26;;69193:12;69180;:26::i;:::-;:39;69172:83;;;;-1:-1:-1;;;69172:83:0;;;;;;;:::i;:::-;69280:35;69290:10;69302:12;69280:9;:35::i;:::-;68752:571;:::o;55818:98::-;55874:13;55903:7;55896:14;;;;;:::i;72646:786::-;72721:4;72761;72721;72778:531;72802:5;:12;72798:1;:16;72778:531;;;72836:20;72859:5;72865:1;72859:8;;;;;;-1:-1:-1;;;72859:8:0;;;;;;;;;;;;;;;72836:31;;72916:12;72900;:28;72896:402;;73043:52;73067:12;73081;73050:44;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;73050:44:0;;;;;;;;;;73043:52;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;73028:67;;72896:402;;;73230:52;73254:12;73268;73237:44;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;73237:44:0;;;;;;;;;;73230:52;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;73215:67;;72896:402;-1:-1:-1;72816:3:0;;;;:::i;:::-;;;;72778:531;;;-1:-1:-1;73420:4:0;;73404:20;;72646:786;-1:-1:-1;;;72646: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;66568:44::-;;;;:::o;66702:18::-;;;;;;:::o;66848:37::-;;;;:::o;58479:319::-;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;71993:441::-;72132:13;72172:17;72180:8;72172:7;:17::i;:::-;72164:77;;;;-1:-1:-1;;;72164:77:0;;;;;;;:::i;:::-;72257:6;;;;72252:175;;72311:8;72294:26;;;;;;;;:::i;:::-;;;;;;;;;;;;;72280:41;;;;72252:175;72385:7;72394:19;:8;:17;:19::i;:::-;72368:46;;;;;;;;;:::i;66470:45::-;66511:4;66470:45;:::o;66632:47::-;;;;:::o;62818:43::-;;;;:::o;66418:45::-;66461:2;66418:45;:::o;68008: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;:::-;68152:20;;::::1;::::0;:8:::1;::::0;:20:::1;::::0;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;68183: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;66822: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;21277:157::-:0;-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:259::-;;7445:5;7439:12;7472:6;7467:3;7460:19;7488:63;7544:6;7537:4;7532:3;7528:14;7521:4;7514:5;7510:16;7488:63;:::i;:::-;7605:2;7584:15;-1:-1:-1;;7580:29:1;7571:39;;;;7612:4;7567:50;;7415:208;-1:-1:-1;;7415:208:1:o;7628:982::-;7715:12;;7628:982;;7787:1;7772:17;;7808:1;7844:18;;;;7871:2;;7925:4;7917:6;7913:17;7903:27;;7871:2;7951;7999;7991:6;7988:14;7968:18;7965:38;7962:2;;;-1:-1:-1;;;8026:33:1;;8082:4;8079:1;8072:15;8112:4;8033:3;8100:17;7962:2;8143:18;8170:104;;;;8288:1;8283:321;;;;8136:468;;8170:104;-1:-1:-1;;8203:24:1;;8191:37;;8248:16;;;;-1:-1:-1;8170:104:1;;8283:321;8319:38;8351:5;8319:38;:::i;:::-;8379:1;8393:165;8407:6;8404:1;8401:13;8393:165;;;8485:14;;8472:11;;;8465:35;8528:16;;;;8422:10;;8393:165;;;8397:3;;8587:6;8582:3;8578:16;8571:23;;8136:468;;;;;;;7688:922;;;;:::o;8615:247::-;8772:19;;;8816:2;8807:12;;8800:28;8853:2;8844:12;;8762:100::o;8867:274::-;;9034:6;9028:13;9050:53;9096:6;9091:3;9084:4;9076:6;9072:17;9050:53;:::i;:::-;9119:16;;;;;9004:137;-1:-1:-1;;9004:137:1:o;9146:199::-;;9299:40;9335:3;9327:6;9299:40;:::i;9350:378::-;;9554:40;9590:3;9582:6;9554:40;:::i;:::-;9623:6;9617:13;9639:52;9684:6;9680:2;9673:4;9665:6;9661:17;9639:52;:::i;:::-;9707:15;;9534:194;-1:-1:-1;;;;9534:194:1:o;9733:203::-;-1:-1:-1;;;;;9897:32:1;;;;9879:51;;9867:2;9852:18;;9834:102::o;9941:490::-;-1:-1:-1;;;;;10210:15:1;;;10192:34;;10262:15;;10257:2;10242:18;;10235:43;10309:2;10294:18;;10287:34;;;10357:3;10352:2;10337:18;;10330:31;;;9941:490;;10378:47;;10405:19;;10397:6;10378:47;:::i;:::-;10370:55;10144:287;-1:-1:-1;;;;;;10144:287:1:o;10436:635::-;10607:2;10659:21;;;10729:13;;10632:18;;;10751:22;;;10436:635;;10607:2;10830:15;;;;10804:2;10789:18;;;10436:635;10876:169;10890:6;10887:1;10884:13;10876:169;;;10951:13;;10939:26;;11020:15;;;;10985:12;;;;10912:1;10905:9;10876:169;;;-1:-1:-1;11062:3:1;;10587:484;-1:-1:-1;;;;;;10587:484:1:o;11076:187::-;11241:14;;11234:22;11216:41;;11204:2;11189:18;;11171:92::o;11268:177::-;11414:25;;;11402:2;11387:18;;11369:76::o;11450:221::-;;11599:2;11588:9;11581:21;11619:46;11661:2;11650:9;11646:18;11638:6;11619:46;:::i;11676:398::-;11878:2;11860:21;;;11917:2;11897:18;;;11890:30;11956:34;11951:2;11936:18;;11929:62;-1:-1:-1;;;12022:2:1;12007:18;;12000:32;12064:3;12049:19;;11850:224::o;12079:347::-;12281:2;12263:21;;;12320:2;12300:18;;;12293:30;12359:25;12354:2;12339:18;;12332:53;12417:2;12402:18;;12253:173::o;12431:402::-;12633:2;12615:21;;;12672:2;12652:18;;;12645:30;12711:34;12706:2;12691:18;;12684:62;-1:-1:-1;;;12777:2:1;12762:18;;12755:36;12823:3;12808:19;;12605:228::o;12838:406::-;13040:2;13022:21;;;13079:2;13059:18;;;13052:30;13118:34;13113:2;13098:18;;13091:62;-1:-1:-1;;;13184:2:1;13169:18;;13162:40;13234:3;13219:19;;13012:232::o;13249:347::-;13451:2;13433:21;;;13490:2;13470:18;;;13463:30;13529:25;13524:2;13509:18;;13502:53;13587:2;13572:18;;13423:173::o;13601:399::-;13803:2;13785:21;;;13842:2;13822:18;;;13815:30;13881:34;13876:2;13861:18;;13854:62;-1:-1:-1;;;13947:2:1;13932:18;;13925:33;13990:3;13975:19;;13775:225::o;14005:400::-;14207:2;14189:21;;;14246:2;14226:18;;;14219:30;14285:34;14280:2;14265:18;;14258:62;-1:-1:-1;;;14351:2:1;14336:18;;14329:34;14395:3;14380:19;;14179:226::o;14410:401::-;14612:2;14594:21;;;14651:2;14631:18;;;14624:30;14690:34;14685:2;14670:18;;14663:62;-1:-1:-1;;;14756:2:1;14741:18;;14734:35;14801:3;14786:19;;14584:227::o;14816:342::-;15018:2;15000:21;;;15057:2;15037:18;;;15030:30;-1:-1:-1;;;15091:2:1;15076:18;;15069:48;15149:2;15134:18;;14990:168::o;15163:355::-;15365:2;15347:21;;;15404:2;15384:18;;;15377:30;15443:33;15438:2;15423:18;;15416:61;15509:2;15494:18;;15337:181::o;15523:356::-;15725:2;15707:21;;;15744:18;;;15737:30;15803:34;15798:2;15783:18;;15776:62;15870:2;15855:18;;15697:182::o;15884:339::-;16086:2;16068:21;;;16125:2;16105:18;;;16098:30;-1:-1:-1;;;16159:2:1;16144:18;;16137:45;16214:2;16199:18;;16058:165::o;16228:421::-;16430:2;16412:21;;;16469:2;16449:18;;;16442:30;16508:34;16503:2;16488:18;;16481:62;16579:27;16574:2;16559:18;;16552:55;16639:3;16624:19;;16402:247::o;16654:420::-;16856:2;16838:21;;;16895:2;16875:18;;;16868:30;16934:34;16929:2;16914:18;;16907:62;17005:26;17000:2;16985:18;;16978:54;17064:3;17049:19;;16828:246::o;17079:407::-;17281:2;17263:21;;;17320:2;17300:18;;;17293:30;17359:34;17354:2;17339:18;;17332:62;-1:-1:-1;;;17425:2:1;17410:18;;17403:41;17476:3;17461:19;;17253:233::o;17491:346::-;17693:2;17675:21;;;17732:2;17712:18;;;17705:30;-1:-1:-1;;;17766:2:1;17751:18;;17744:52;17828:2;17813:18;;17665:172::o;17842:402::-;18044:2;18026:21;;;18083:2;18063:18;;;18056:30;18122:34;18117:2;18102:18;;18095:62;-1:-1:-1;;;18188:2:1;18173:18;;18166:36;18234:3;18219:19;;18016:228::o;18249:356::-;18451:2;18433:21;;;18470:18;;;18463:30;18529:34;18524:2;18509:18;;18502:62;18596:2;18581:18;;18423:182::o;18610:411::-;18812:2;18794:21;;;18851:2;18831:18;;;18824:30;18890:34;18885:2;18870:18;;18863:62;-1:-1:-1;;;18956:2:1;18941:18;;18934:45;19011:3;18996:19;;18784:237::o;19026:350::-;19228:2;19210:21;;;19267:2;19247:18;;;19240:30;19306:28;19301:2;19286:18;;19279:56;19367:2;19352:18;;19200:176::o;19381:414::-;19583:2;19565:21;;;19622:2;19602:18;;;19595:30;19661:34;19656:2;19641:18;;19634:62;-1:-1:-1;;;19727:2:1;19712:18;;19705:48;19785:3;19770:19;;19555:240::o;19800:411::-;20002:2;19984:21;;;20041:2;20021:18;;;20014:30;20080:34;20075:2;20060:18;;20053:62;-1:-1:-1;;;20146:2:1;20131:18;;20124:45;20201:3;20186:19;;19974:237::o;20216:398::-;20418:2;20400:21;;;20457:2;20437:18;;;20430:30;20496:34;20491:2;20476:18;;20469:62;-1:-1:-1;;;20562:2:1;20547:18;;20540:32;20604:3;20589:19;;20390:224::o;20619:415::-;20821:2;20803:21;;;20860:2;20840:18;;;20833:30;20899:34;20894:2;20879:18;;20872:62;-1:-1:-1;;;20965:2:1;20950:18;;20943:49;21024:3;21009:19;;20793:241::o;21039:353::-;21241:2;21223:21;;;21280:2;21260:18;;;21253:30;21319:31;21314:2;21299:18;;21292:59;21383:2;21368:18;;21213:179::o;21397:356::-;21599:2;21581:21;;;21618:18;;;21611:30;21677:34;21672:2;21657:18;;21650:62;21744:2;21729:18;;21571:182::o;21758:397::-;21960:2;21942:21;;;21999:2;21979:18;;;21972:30;22038:34;22033:2;22018:18;;22011:62;-1:-1:-1;;;22104:2:1;22089:18;;22082:31;22145:3;22130:19;;21932:223::o;22160:410::-;22362:2;22344:21;;;22401:2;22381:18;;;22374:30;22440:34;22435:2;22420:18;;22413:62;-1:-1:-1;;;22506:2:1;22491:18;;22484:44;22560:3;22545:19;;22334:236::o;22575:347::-;22777:2;22759:21;;;22816:2;22796:18;;;22789:30;22855:25;22850:2;22835:18;;22828:53;22913:2;22898:18;;22749:173::o;22927:398::-;23129:2;23111:21;;;23168:2;23148:18;;;23141:30;23207:34;23202:2;23187:18;;23180:62;-1:-1:-1;;;23273:2:1;23258:18;;23251:32;23315:3;23300:19;;23101:224::o;23330:411::-;23532:2;23514:21;;;23571:2;23551:18;;;23544:30;23610:34;23605:2;23590:18;;23583:62;-1:-1:-1;;;23676:2:1;23661:18;;23654:45;23731:3;23716:19;;23504:237::o;23746:351::-;23948:2;23930:21;;;23987:2;23967:18;;;23960:30;24026:29;24021:2;24006:18;;23999:57;24088:2;24073:18;;23920:177::o;24102:409::-;24304:2;24286:21;;;24343:2;24323:18;;;24316:30;24382:34;24377:2;24362:18;;24355:62;-1:-1:-1;;;24448:2:1;24433:18;;24426:43;24501:3;24486:19;;24276:235::o;24516:398::-;24718:2;24700:21;;;24757:2;24737:18;;;24730:30;24796:34;24791:2;24776:18;;24769:62;-1:-1:-1;;;24862:2:1;24847:18;;24840:32;24904:3;24889:19;;24690:224::o;24919:349::-;25121:2;25103:21;;;25160:2;25140:18;;;25133:30;25199:27;25194:2;25179:18;;25172:55;25259:2;25244:18;;25093:175::o;25273:348::-;25475:2;25457:21;;;25514:2;25494:18;;;25487:30;25553:26;25548:2;25533:18;;25526:54;25612:2;25597:18;;25447:174::o;25626:356::-;25828:2;25810:21;;;25847:18;;;25840:30;25906:34;25901:2;25886:18;;25879:62;25973:2;25958:18;;25800:182::o;26169:251::-;26239:2;26233:9;26269:17;;;-1:-1:-1;;;;;26301:34:1;;26337:22;;;26298:62;26295:2;;;26363:18;;:::i;:::-;26399:2;26392:22;26213:207;;-1:-1:-1;26213:207:1:o;26425:192::-;;-1:-1:-1;;;;;26516:6:1;26513:30;26510:2;;;26546:18;;:::i;:::-;-1:-1:-1;26606:4:1;26587:17;;;26583:28;;26500:117::o;26622:129::-;;26690:17;;;26740:4;26724:21;;;26680:71::o;26756:253::-;;-1:-1:-1;;;;;26885:2:1;26882:1;26878:10;26915:2;26912:1;26908:10;26946:3;26942:2;26938:12;26933:3;26930:21;26927:2;;;26954:18;;:::i;27014:128::-;;27085:1;27081:6;27078:1;27075:13;27072:2;;;27091:18;;:::i;:::-;-1:-1:-1;27127:9:1;;27062:80::o;27147:120::-;;27213:1;27203:2;;27218:18;;:::i;:::-;-1:-1:-1;27252:9:1;;27193:74::o;27272:168::-;;27378:1;27374;27370:6;27366:14;27363:1;27360:21;27355:1;27348:9;27341:17;27337:45;27334:2;;;27385:18;;:::i;:::-;-1:-1:-1;27425:9:1;;27324:116::o;27445:246::-;;-1:-1:-1;;;;;27598:10:1;;;;27568;;27620:12;;;27617:2;;;27635:18;;:::i;:::-;27672:13;;27494:197;-1:-1:-1;;;27494:197:1:o;27696:125::-;;27764:1;27761;27758:8;27755:2;;;27769:18;;:::i;:::-;-1:-1:-1;27806:9:1;;27745:76::o;27826:258::-;27898:1;27908:113;27922:6;27919:1;27916:13;27908:113;;;27998:11;;;27992:18;27979:11;;;27972:39;27944:2;27937:10;27908:113;;;28039:6;28036:1;28033:13;28030:2;;;-1:-1:-1;;28074:1:1;28056:16;;28049:27;27879:205::o;28089:136::-;;28156:5;28146:2;;28165:18;;:::i;:::-;-1:-1:-1;;;28201:18:1;;28136:89::o;28230:380::-;28315:1;28305:12;;28362:1;28352:12;;;28373:2;;28427:4;28419:6;28415:17;28405:27;;28373:2;28480;28472:6;28469:14;28449:18;28446:38;28443:2;;;28526:10;28521:3;28517:20;28514:1;28507:31;28561:4;28558:1;28551:15;28589:4;28586:1;28579:15;28443:2;;28285:325;;;:::o;28615:135::-;;-1:-1:-1;;28675:17:1;;28672:2;;;28695:18;;:::i;:::-;-1:-1:-1;28742:1:1;28731:13;;28662:88::o;28755:112::-;;28813:1;28803:2;;28818:18;;:::i;:::-;-1:-1:-1;28852:9:1;;28793:74::o;28872:127::-;28933:10;28928:3;28924:20;28921:1;28914:31;28964:4;28961:1;28954:15;28988:4;28985:1;28978:15;29004:127;29065:10;29060:3;29056:20;29053:1;29046:31;29096:4;29093:1;29086:15;29120:4;29117:1;29110:15;29136:127;29197:10;29192:3;29188:20;29185:1;29178:31;29228:4;29225:1;29218:15;29252:4;29249:1;29242:15;29268:133;-1:-1:-1;;;;;;29344:32:1;;29334:43;;29324:2;;29391:1;29388;29381:12

Swarm Source

ipfs://80c1f60f11880bd554a2e7303786a8b3e4a260bc17ec48c9a197f86873cfb7dc
Loading...
Loading
Loading...
Loading
[ 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.