ETH Price: $3,318.02 (-1.64%)
Gas: 1 Gwei

Token

Zomzuki (ZOMZUKI)
 

Overview

Max Total Supply

3,001 ZOMZUKI

Holders

471

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
ninjj.eth
Balance
1 ZOMZUKI
0x0a274354BFe6D0eE3DF151A204BAfc3a19FC050c
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:
Zomzuki

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 13 of 13: Zomzuki.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./Ownable.sol";
import "./ERC721A.sol";
import "./IERC721.sol";
import "./MerkleProof.sol";

contract Zomzuki is ERC721A, Ownable {
    uint256 public price = 0.01 ether;
    uint256 public maxTotalSupply = 4000;
    uint256 public saleStartTime;
    string private baseURI;
    address public RugzukiAddress = 0xc1c18105B3d6C32A2aa408e4Ff46177B62b5e96e;
    bytes32 public root;

    constructor() ERC721A("Zomzuki", "ZOMZUKI") {
        
    }

    modifier mintableSupply(uint256 _quantity) {
        require(
            totalSupply() + _quantity <= maxTotalSupply,
            "Over maximum supply."
        );
        _;
    }

    modifier saleActive() {
        require(saleStartTime <= block.timestamp, "Sale not start yet.");
        _;
    }

    function checkWhitelist(bytes32[] calldata merkleProof)
        public
        view
        returns (bool)
    {
        return
            MerkleProof.verify(
                merkleProof,
                root,
                keccak256(abi.encodePacked(msg.sender))
            );
    }

    function mintZoomzuki(uint256 _quantity, bytes32[] calldata merkleProof)
        external
        payable
        saleActive
        mintableSupply(_quantity)
    {
        if (checkWhitelist(merkleProof)) {
            uint256 balance = IERC721(RugzukiAddress).balanceOf(msg.sender);
            uint256 minted = _numberMinted(msg.sender);

            if (balance > minted) {
                if (balance - minted < _quantity)
                    require(
                        msg.value >= price * (_quantity - balance + minted),
                        "Insufficent funds."
                    );
            } else {
                require(msg.value >= price * _quantity, "Insufficent funds.");
            }
        } else {
            require(msg.value >= price * _quantity, "Insufficent funds.");
        }

        _safeMint(msg.sender, _quantity);
    }

    function setMintPrice(uint256 _price) external onlyOwner {
        price = _price;
    }

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

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

    function setMerkleRoot(bytes32 _root) external onlyOwner {
        root = _root;
    }

    function setSaleTime(uint256 _time) external onlyOwner {
        saleStartTime = _time;
    }

    function withdraw() external onlyOwner {
        (bool success, ) = msg.sender.call{value: address(this).balance}("");
        require(success, "Transfer failed.");
    }
}

File 1 of 13: Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    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);
    }

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private 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 2 of 13: Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 3 of 13: ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @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 4 of 13: ERC721A.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Enumerable.sol";
import "./IERC721Metadata.sol";
import "./Strings.sol";
import "./Context.sol";
import "./ERC165.sol";
import "./Address.sol";
import "./IERC721Receiver.sol";

error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @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..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**128 - 1 (max value of uint128).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
    }

    // Compiler will pack the following 
    // _currentIndex and _burnCounter into a single 256bit word.
    
    // The tokenId of the next token to be minted.
    uint128 internal _currentIndex;

    // The number of tokens burned.
    uint128 internal _burnCounter;

    // 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) internal _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;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex times
        unchecked {
            return _currentIndex - _burnCounter;    
        }
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     * 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 tokenByIndex(uint256 index) public view override returns (uint256) {
        uint256 numMintedSoFar = _currentIndex;
        uint256 tokenIdsIdx;

        // Counter overflow is impossible as the loop breaks when
        // uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (!ownership.burned) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }
        revert TokenIndexOutOfBounds();
    }

    /**
     * @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) {
        if (index >= balanceOf(owner)) revert OwnerIndexOutOfBounds();
        uint256 numMintedSoFar = _currentIndex;
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when
        // uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        // Execution should never reach this point.
        revert();
    }

    /**
     * @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) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    function _numberBurned(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant: 
                    // There will always be an ownership that has an address and is not burned 
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        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);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        if (operator == _msgSender()) revert ApproveToCaller();

        _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);
        if (!_checkOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @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 && !_ownerships[tokenId].burned;
    }

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

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if _currentIndex + quantity > 3.4e38 (2**128) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) {
                    revert TransferToNonERC721ReceiverImplementer();
                }
                updatedIndex++;
            }

            _currentIndex = uint128(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 ||
            isApprovedForAll(prevOwnership.addr, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**128.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = 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)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

    /**
     * @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 {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**128.
        unchecked {
            _addressData[prevOwnership.addr].balance -= 1;
            _addressData[prevOwnership.addr].numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn 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)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked { 
            _burnCounter++;
        }
    }

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

    /**
     * @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 TransferToNonERC721ReceiverImplementer();
                } 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.
     * And also called before burning one token.
     *
     * 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`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    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.
     * And also called after one token has been burned.
     *
     * 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` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

File 5 of 13: IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 6 of 13: IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

File 7 of 13: IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";

/**
 * @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 8 of 13: IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";

/**
 * @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 9 of 13: IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 10 of 13: MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        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 = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }
        return computedHash;
    }
}

File 11 of 13: Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./Context.sol";

/**
 * @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 12 of 13: Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"MintedQueryForZeroAddress","type":"error"},{"inputs":[],"name":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"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":"RugzukiAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"checkWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"mintZoomzuki","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","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":[],"name":"saleStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_time","type":"uint256"}],"name":"setSaleTime","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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052662386f26fc10000600855610fa0600955600c80546001600160a01b03191673c1c18105b3d6c32a2aa408e4ff46177b62b5e96e1790553480156200004857600080fd5b50604051806040016040528060078152602001665a6f6d7a756b6960c81b815250604051806040016040528060078152602001665a4f4d5a554b4960c81b8152508160019080519060200190620000a192919062000130565b508051620000b790600290602084019062000130565b505050620000d4620000ce620000da60201b60201c565b620000de565b62000213565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200013e90620001d6565b90600052602060002090601f016020900481019282620001625760008555620001ad565b82601f106200017d57805160ff1916838001178555620001ad565b82800160010185558215620001ad579182015b82811115620001ad57825182559160200191906001019062000190565b50620001bb929150620001bf565b5090565b5b80821115620001bb5760008155600101620001c0565b600181811c90821680620001eb57607f821691505b602082108114156200020d57634e487b7160e01b600052602260045260246000fd5b50919050565b611ffa80620002236000396000f3fe6080604052600436106101d85760003560e01c80636352211e11610102578063a22cb46511610095578063e985e9c511610064578063e985e9c51461053d578063ebf0c71714610586578063f2fde38b1461059c578063f4a0a528146105bc57600080fd5b8063a22cb465146104bd578063b88d4fde146104dd578063b8dde112146104fd578063c87b56dd1461051d57600080fd5b8063806efeed116100d1578063806efeed146104545780638da5cb5b1461047457806395d89b4114610492578063a035b1fe146104a757600080fd5b80636352211e146103df57806370a08231146103ff578063715018a61461041f5780637cb647591461043457600080fd5b806326ca805b1161017a5780633ccfd60b116101495780633ccfd60b1461036a57806342842e0e1461037f5780634f6ccce71461039f57806355f804b3146103bf57600080fd5b806326ca805b146103015780632ab4d052146103145780632f745c591461032a5780633bd2b67d1461034a57600080fd5b8063095ea7b3116101b6578063095ea7b31461026c57806318160ddd1461028e5780631cbaee2d146102cb57806323b872dd146102e157600080fd5b806301ffc9a7146101dd57806306fdde0314610212578063081812fc14610234575b600080fd5b3480156101e957600080fd5b506101fd6101f8366004611c6c565b6105dc565b60405190151581526020015b60405180910390f35b34801561021e57600080fd5b50610227610649565b6040516102099190611dea565b34801561024057600080fd5b5061025461024f366004611c53565b6106db565b6040516001600160a01b039091168152602001610209565b34801561027857600080fd5b5061028c610287366004611be8565b61071f565b005b34801561029a57600080fd5b506102bd6000546001600160801b03600160801b82048116918116919091031690565b604051908152602001610209565b3480156102d757600080fd5b506102bd600a5481565b3480156102ed57600080fd5b5061028c6102fc366004611af5565b6107ad565b61028c61030f366004611d07565b6107b8565b34801561032057600080fd5b506102bd60095481565b34801561033657600080fd5b506102bd610345366004611be8565b6109e5565b34801561035657600080fd5b5061028c610365366004611c53565b610ae1565b34801561037657600080fd5b5061028c610b10565b34801561038b57600080fd5b5061028c61039a366004611af5565b610bc8565b3480156103ab57600080fd5b506102bd6103ba366004611c53565b610be3565b3480156103cb57600080fd5b5061028c6103da366004611ca6565b610c8d565b3480156103eb57600080fd5b506102546103fa366004611c53565b610cce565b34801561040b57600080fd5b506102bd61041a366004611aa7565b610ce0565b34801561042b57600080fd5b5061028c610d2e565b34801561044057600080fd5b5061028c61044f366004611c53565b610d64565b34801561046057600080fd5b50600c54610254906001600160a01b031681565b34801561048057600080fd5b506007546001600160a01b0316610254565b34801561049e57600080fd5b50610227610d93565b3480156104b357600080fd5b506102bd60085481565b3480156104c957600080fd5b5061028c6104d8366004611bac565b610da2565b3480156104e957600080fd5b5061028c6104f8366004611b31565b610e38565b34801561050957600080fd5b506101fd610518366004611c12565b610e6c565b34801561052957600080fd5b50610227610538366004611c53565b610eea565b34801561054957600080fd5b506101fd610558366004611ac2565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561059257600080fd5b506102bd600d5481565b3480156105a857600080fd5b5061028c6105b7366004611aa7565b610f6e565b3480156105c857600080fd5b5061028c6105d7366004611c53565b611006565b60006001600160e01b031982166380ac58cd60e01b148061060d57506001600160e01b03198216635b5e139f60e01b145b8061062857506001600160e01b0319821663780e9d6360e01b145b8061064357506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461065890611eec565b80601f016020809104026020016040519081016040528092919081815260200182805461068490611eec565b80156106d15780601f106106a6576101008083540402835291602001916106d1565b820191906000526020600020905b8154815290600101906020018083116106b457829003601f168201915b5050505050905090565b60006106e682611035565b610703576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061072a82610cce565b9050806001600160a01b0316836001600160a01b0316141561075f5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061077f575061077d8133610558565b155b1561079d576040516367d9dca160e11b815260040160405180910390fd5b6107a8838383611069565b505050565b6107a88383836110c5565b42600a5411156108055760405162461bcd60e51b815260206004820152601360248201527229b0b632903737ba1039ba30b93a103cb2ba1760691b60448201526064015b60405180910390fd5b826009548161082c6000546001600160801b03600160801b82048116918116919091031690565b6108369190611e5e565b111561087b5760405162461bcd60e51b815260206004820152601460248201527327bb32b91036b0bc34b6bab69039bab838363c9760611b60448201526064016107fc565b6108858383610e6c565b156109a857600c546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a082319060240160206040518083038186803b1580156108ce57600080fd5b505afa1580156108e2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109069190611cee565b90506000610913336112e2565b90508082111561097457856109288284611ea9565b101561096f57806109398388611ea9565b6109439190611e5e565b6008546109509190611e8a565b34101561096f5760405162461bcd60e51b81526004016107fc90611dfd565b6109a1565b856008546109829190611e8a565b3410156109a15760405162461bcd60e51b81526004016107fc90611dfd565b50506109d5565b836008546109b69190611e8a565b3410156109d55760405162461bcd60e51b81526004016107fc90611dfd565b6109df3385611337565b50505050565b60006109f083610ce0565b8210610a0f576040516306ed618760e11b815260040160405180910390fd5b600080546001600160801b03169080805b83811015610adb57600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282019290925290610a875750610ad3565b80516001600160a01b031615610a9c57805192505b876001600160a01b0316836001600160a01b03161415610ad15786841415610aca5750935061064392505050565b6001909301925b505b600101610a20565b50600080fd5b6007546001600160a01b03163314610b0b5760405162461bcd60e51b81526004016107fc90611e29565b600a55565b6007546001600160a01b03163314610b3a5760405162461bcd60e51b81526004016107fc90611e29565b604051600090339047908381818185875af1925050503d8060008114610b7c576040519150601f19603f3d011682016040523d82523d6000602084013e610b81565b606091505b5050905080610bc55760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064016107fc565b50565b6107a883838360405180602001604052806000815250610e38565b600080546001600160801b031681805b82811015610c7357600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290610c6a5785831415610c635750949350505050565b6001909201915b50600101610bf3565b506040516329c8c00760e21b815260040160405180910390fd5b6007546001600160a01b03163314610cb75760405162461bcd60e51b81526004016107fc90611e29565b8051610cca90600b906020840190611932565b5050565b6000610cd982611351565b5192915050565b60006001600160a01b038216610d09576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600460205260409020546001600160401b031690565b6007546001600160a01b03163314610d585760405162461bcd60e51b81526004016107fc90611e29565b610d626000611473565b565b6007546001600160a01b03163314610d8e5760405162461bcd60e51b81526004016107fc90611e29565b600d55565b60606002805461065890611eec565b6001600160a01b038216331415610dcc5760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610e438484846110c5565b610e4f848484846114c5565b6109df576040516368d2bf6b60e11b815260040160405180910390fd5b6000610ee383838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600d546040516bffffffffffffffffffffffff193360601b1660208201529092506034019050604051602081830303815290604052805190602001206115d4565b9392505050565b6060610ef582611035565b610f1257604051630a14c4b560e41b815260040160405180910390fd5b6000610f1c6115ea565b9050805160001415610f3d5760405180602001604052806000815250610ee3565b80610f47846115f9565b604051602001610f58929190611d7e565b6040516020818303038152906040529392505050565b6007546001600160a01b03163314610f985760405162461bcd60e51b81526004016107fc90611e29565b6001600160a01b038116610ffd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107fc565b610bc581611473565b6007546001600160a01b031633146110305760405162461bcd60e51b81526004016107fc90611e29565b600855565b600080546001600160801b031682108015610643575050600090815260036020526040902054600160e01b900460ff161590565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006110d082611351565b80519091506000906001600160a01b0316336001600160a01b031614806110fe575081516110fe9033610558565b8061111957503361110e846106db565b6001600160a01b0316145b90508061113957604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b03161461116e5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661119557604051633a954ecd60e21b815260040160405180910390fd5b6111a56000848460000151611069565b6001600160a01b038581166000908152600460209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600390945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116611298576000546001600160801b031681101561129857825160008281526003602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60006001600160a01b03821661130b576040516335ebb31960e01b815260040160405180910390fd5b506001600160a01b0316600090815260046020526040902054600160401b90046001600160401b031690565b610cca8282604051806020016040528060008152506116f6565b60408051606081018252600080825260208201819052918101829052905482906001600160801b031681101561145a57600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906114585780516001600160a01b0316156113ef579392505050565b5060001901600081815260036020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611453579392505050565b6113ef565b505b604051636f96cda160e11b815260040160405180910390fd5b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b156115c857604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611509903390899088908890600401611dad565b602060405180830381600087803b15801561152357600080fd5b505af1925050508015611553575060408051601f3d908101601f1916820190925261155091810190611c89565b60015b6115ae573d808015611581576040519150601f19603f3d011682016040523d82523d6000602084013e611586565b606091505b5080516115a6576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506115cc565b5060015b949350505050565b6000826115e18584611703565b14949350505050565b6060600b805461065890611eec565b60608161161d5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611647578061163181611f27565b91506116409050600a83611e76565b9150611621565b6000816001600160401b0381111561166157611661611f98565b6040519080825280601f01601f19166020018201604052801561168b576020820181803683370190505b5090505b84156115cc576116a0600183611ea9565b91506116ad600a86611f42565b6116b8906030611e5e565b60f81b8183815181106116cd576116cd611f82565b60200101906001600160f81b031916908160001a9053506116ef600a86611e76565b945061168f565b6107a883838360016117af565b600081815b84518110156117a757600085828151811061172557611725611f82565b60200260200101519050808311611767576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250611794565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b508061179f81611f27565b915050611708565b509392505050565b6000546001600160801b03166001600160a01b0385166117e157604051622e076360e81b815260040160405180910390fd5b836117ff5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260046020908152604080832080546001600160801b031981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c018116909202179091558584526003909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b8581101561190c5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48380156118e257506118e060008884886114c5565b155b15611900576040516368d2bf6b60e11b815260040160405180910390fd5b6001918201910161188b565b50600080546001600160801b0319166001600160801b03929092169190911790556112db565b82805461193e90611eec565b90600052602060002090601f01602090048101928261196057600085556119a6565b82601f1061197957805160ff19168380011785556119a6565b828001600101855582156119a6579182015b828111156119a657825182559160200191906001019061198b565b506119b29291506119b6565b5090565b5b808211156119b257600081556001016119b7565b60006001600160401b03808411156119e5576119e5611f98565b604051601f8501601f19908116603f01168101908282118183101715611a0d57611a0d611f98565b81604052809350858152868686011115611a2657600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611a5757600080fd5b919050565b60008083601f840112611a6e57600080fd5b5081356001600160401b03811115611a8557600080fd5b6020830191508360208260051b8501011115611aa057600080fd5b9250929050565b600060208284031215611ab957600080fd5b610ee382611a40565b60008060408385031215611ad557600080fd5b611ade83611a40565b9150611aec60208401611a40565b90509250929050565b600080600060608486031215611b0a57600080fd5b611b1384611a40565b9250611b2160208501611a40565b9150604084013590509250925092565b60008060008060808587031215611b4757600080fd5b611b5085611a40565b9350611b5e60208601611a40565b92506040850135915060608501356001600160401b03811115611b8057600080fd5b8501601f81018713611b9157600080fd5b611ba0878235602084016119cb565b91505092959194509250565b60008060408385031215611bbf57600080fd5b611bc883611a40565b915060208301358015158114611bdd57600080fd5b809150509250929050565b60008060408385031215611bfb57600080fd5b611c0483611a40565b946020939093013593505050565b60008060208385031215611c2557600080fd5b82356001600160401b03811115611c3b57600080fd5b611c4785828601611a5c565b90969095509350505050565b600060208284031215611c6557600080fd5b5035919050565b600060208284031215611c7e57600080fd5b8135610ee381611fae565b600060208284031215611c9b57600080fd5b8151610ee381611fae565b600060208284031215611cb857600080fd5b81356001600160401b03811115611cce57600080fd5b8201601f81018413611cdf57600080fd5b6115cc848235602084016119cb565b600060208284031215611d0057600080fd5b5051919050565b600080600060408486031215611d1c57600080fd5b8335925060208401356001600160401b03811115611d3957600080fd5b611d4586828701611a5c565b9497909650939450505050565b60008151808452611d6a816020860160208601611ec0565b601f01601f19169290920160200192915050565b60008351611d90818460208801611ec0565b835190830190611da4818360208801611ec0565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611de090830184611d52565b9695505050505050565b602081526000610ee36020830184611d52565b60208082526012908201527124b739bab33334b1b2b73a10333ab732399760711b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611e7157611e71611f56565b500190565b600082611e8557611e85611f6c565b500490565b6000816000190483118215151615611ea457611ea4611f56565b500290565b600082821015611ebb57611ebb611f56565b500390565b60005b83811015611edb578181015183820152602001611ec3565b838111156109df5750506000910152565b600181811c90821680611f0057607f821691505b60208210811415611f2157634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611f3b57611f3b611f56565b5060010190565b600082611f5157611f51611f6c565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610bc557600080fdfea264697066735822122056664ef8db2bc921074d7d5bb462ff34f941eba3aef6f59bcc1de69fb6cc02b764736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101d85760003560e01c80636352211e11610102578063a22cb46511610095578063e985e9c511610064578063e985e9c51461053d578063ebf0c71714610586578063f2fde38b1461059c578063f4a0a528146105bc57600080fd5b8063a22cb465146104bd578063b88d4fde146104dd578063b8dde112146104fd578063c87b56dd1461051d57600080fd5b8063806efeed116100d1578063806efeed146104545780638da5cb5b1461047457806395d89b4114610492578063a035b1fe146104a757600080fd5b80636352211e146103df57806370a08231146103ff578063715018a61461041f5780637cb647591461043457600080fd5b806326ca805b1161017a5780633ccfd60b116101495780633ccfd60b1461036a57806342842e0e1461037f5780634f6ccce71461039f57806355f804b3146103bf57600080fd5b806326ca805b146103015780632ab4d052146103145780632f745c591461032a5780633bd2b67d1461034a57600080fd5b8063095ea7b3116101b6578063095ea7b31461026c57806318160ddd1461028e5780631cbaee2d146102cb57806323b872dd146102e157600080fd5b806301ffc9a7146101dd57806306fdde0314610212578063081812fc14610234575b600080fd5b3480156101e957600080fd5b506101fd6101f8366004611c6c565b6105dc565b60405190151581526020015b60405180910390f35b34801561021e57600080fd5b50610227610649565b6040516102099190611dea565b34801561024057600080fd5b5061025461024f366004611c53565b6106db565b6040516001600160a01b039091168152602001610209565b34801561027857600080fd5b5061028c610287366004611be8565b61071f565b005b34801561029a57600080fd5b506102bd6000546001600160801b03600160801b82048116918116919091031690565b604051908152602001610209565b3480156102d757600080fd5b506102bd600a5481565b3480156102ed57600080fd5b5061028c6102fc366004611af5565b6107ad565b61028c61030f366004611d07565b6107b8565b34801561032057600080fd5b506102bd60095481565b34801561033657600080fd5b506102bd610345366004611be8565b6109e5565b34801561035657600080fd5b5061028c610365366004611c53565b610ae1565b34801561037657600080fd5b5061028c610b10565b34801561038b57600080fd5b5061028c61039a366004611af5565b610bc8565b3480156103ab57600080fd5b506102bd6103ba366004611c53565b610be3565b3480156103cb57600080fd5b5061028c6103da366004611ca6565b610c8d565b3480156103eb57600080fd5b506102546103fa366004611c53565b610cce565b34801561040b57600080fd5b506102bd61041a366004611aa7565b610ce0565b34801561042b57600080fd5b5061028c610d2e565b34801561044057600080fd5b5061028c61044f366004611c53565b610d64565b34801561046057600080fd5b50600c54610254906001600160a01b031681565b34801561048057600080fd5b506007546001600160a01b0316610254565b34801561049e57600080fd5b50610227610d93565b3480156104b357600080fd5b506102bd60085481565b3480156104c957600080fd5b5061028c6104d8366004611bac565b610da2565b3480156104e957600080fd5b5061028c6104f8366004611b31565b610e38565b34801561050957600080fd5b506101fd610518366004611c12565b610e6c565b34801561052957600080fd5b50610227610538366004611c53565b610eea565b34801561054957600080fd5b506101fd610558366004611ac2565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561059257600080fd5b506102bd600d5481565b3480156105a857600080fd5b5061028c6105b7366004611aa7565b610f6e565b3480156105c857600080fd5b5061028c6105d7366004611c53565b611006565b60006001600160e01b031982166380ac58cd60e01b148061060d57506001600160e01b03198216635b5e139f60e01b145b8061062857506001600160e01b0319821663780e9d6360e01b145b8061064357506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461065890611eec565b80601f016020809104026020016040519081016040528092919081815260200182805461068490611eec565b80156106d15780601f106106a6576101008083540402835291602001916106d1565b820191906000526020600020905b8154815290600101906020018083116106b457829003601f168201915b5050505050905090565b60006106e682611035565b610703576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061072a82610cce565b9050806001600160a01b0316836001600160a01b0316141561075f5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061077f575061077d8133610558565b155b1561079d576040516367d9dca160e11b815260040160405180910390fd5b6107a8838383611069565b505050565b6107a88383836110c5565b42600a5411156108055760405162461bcd60e51b815260206004820152601360248201527229b0b632903737ba1039ba30b93a103cb2ba1760691b60448201526064015b60405180910390fd5b826009548161082c6000546001600160801b03600160801b82048116918116919091031690565b6108369190611e5e565b111561087b5760405162461bcd60e51b815260206004820152601460248201527327bb32b91036b0bc34b6bab69039bab838363c9760611b60448201526064016107fc565b6108858383610e6c565b156109a857600c546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a082319060240160206040518083038186803b1580156108ce57600080fd5b505afa1580156108e2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109069190611cee565b90506000610913336112e2565b90508082111561097457856109288284611ea9565b101561096f57806109398388611ea9565b6109439190611e5e565b6008546109509190611e8a565b34101561096f5760405162461bcd60e51b81526004016107fc90611dfd565b6109a1565b856008546109829190611e8a565b3410156109a15760405162461bcd60e51b81526004016107fc90611dfd565b50506109d5565b836008546109b69190611e8a565b3410156109d55760405162461bcd60e51b81526004016107fc90611dfd565b6109df3385611337565b50505050565b60006109f083610ce0565b8210610a0f576040516306ed618760e11b815260040160405180910390fd5b600080546001600160801b03169080805b83811015610adb57600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282019290925290610a875750610ad3565b80516001600160a01b031615610a9c57805192505b876001600160a01b0316836001600160a01b03161415610ad15786841415610aca5750935061064392505050565b6001909301925b505b600101610a20565b50600080fd5b6007546001600160a01b03163314610b0b5760405162461bcd60e51b81526004016107fc90611e29565b600a55565b6007546001600160a01b03163314610b3a5760405162461bcd60e51b81526004016107fc90611e29565b604051600090339047908381818185875af1925050503d8060008114610b7c576040519150601f19603f3d011682016040523d82523d6000602084013e610b81565b606091505b5050905080610bc55760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064016107fc565b50565b6107a883838360405180602001604052806000815250610e38565b600080546001600160801b031681805b82811015610c7357600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290610c6a5785831415610c635750949350505050565b6001909201915b50600101610bf3565b506040516329c8c00760e21b815260040160405180910390fd5b6007546001600160a01b03163314610cb75760405162461bcd60e51b81526004016107fc90611e29565b8051610cca90600b906020840190611932565b5050565b6000610cd982611351565b5192915050565b60006001600160a01b038216610d09576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600460205260409020546001600160401b031690565b6007546001600160a01b03163314610d585760405162461bcd60e51b81526004016107fc90611e29565b610d626000611473565b565b6007546001600160a01b03163314610d8e5760405162461bcd60e51b81526004016107fc90611e29565b600d55565b60606002805461065890611eec565b6001600160a01b038216331415610dcc5760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610e438484846110c5565b610e4f848484846114c5565b6109df576040516368d2bf6b60e11b815260040160405180910390fd5b6000610ee383838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600d546040516bffffffffffffffffffffffff193360601b1660208201529092506034019050604051602081830303815290604052805190602001206115d4565b9392505050565b6060610ef582611035565b610f1257604051630a14c4b560e41b815260040160405180910390fd5b6000610f1c6115ea565b9050805160001415610f3d5760405180602001604052806000815250610ee3565b80610f47846115f9565b604051602001610f58929190611d7e565b6040516020818303038152906040529392505050565b6007546001600160a01b03163314610f985760405162461bcd60e51b81526004016107fc90611e29565b6001600160a01b038116610ffd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107fc565b610bc581611473565b6007546001600160a01b031633146110305760405162461bcd60e51b81526004016107fc90611e29565b600855565b600080546001600160801b031682108015610643575050600090815260036020526040902054600160e01b900460ff161590565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006110d082611351565b80519091506000906001600160a01b0316336001600160a01b031614806110fe575081516110fe9033610558565b8061111957503361110e846106db565b6001600160a01b0316145b90508061113957604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b03161461116e5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661119557604051633a954ecd60e21b815260040160405180910390fd5b6111a56000848460000151611069565b6001600160a01b038581166000908152600460209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600390945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116611298576000546001600160801b031681101561129857825160008281526003602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60006001600160a01b03821661130b576040516335ebb31960e01b815260040160405180910390fd5b506001600160a01b0316600090815260046020526040902054600160401b90046001600160401b031690565b610cca8282604051806020016040528060008152506116f6565b60408051606081018252600080825260208201819052918101829052905482906001600160801b031681101561145a57600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906114585780516001600160a01b0316156113ef579392505050565b5060001901600081815260036020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611453579392505050565b6113ef565b505b604051636f96cda160e11b815260040160405180910390fd5b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b156115c857604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611509903390899088908890600401611dad565b602060405180830381600087803b15801561152357600080fd5b505af1925050508015611553575060408051601f3d908101601f1916820190925261155091810190611c89565b60015b6115ae573d808015611581576040519150601f19603f3d011682016040523d82523d6000602084013e611586565b606091505b5080516115a6576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506115cc565b5060015b949350505050565b6000826115e18584611703565b14949350505050565b6060600b805461065890611eec565b60608161161d5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611647578061163181611f27565b91506116409050600a83611e76565b9150611621565b6000816001600160401b0381111561166157611661611f98565b6040519080825280601f01601f19166020018201604052801561168b576020820181803683370190505b5090505b84156115cc576116a0600183611ea9565b91506116ad600a86611f42565b6116b8906030611e5e565b60f81b8183815181106116cd576116cd611f82565b60200101906001600160f81b031916908160001a9053506116ef600a86611e76565b945061168f565b6107a883838360016117af565b600081815b84518110156117a757600085828151811061172557611725611f82565b60200260200101519050808311611767576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250611794565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b508061179f81611f27565b915050611708565b509392505050565b6000546001600160801b03166001600160a01b0385166117e157604051622e076360e81b815260040160405180910390fd5b836117ff5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260046020908152604080832080546001600160801b031981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c018116909202179091558584526003909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b8581101561190c5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48380156118e257506118e060008884886114c5565b155b15611900576040516368d2bf6b60e11b815260040160405180910390fd5b6001918201910161188b565b50600080546001600160801b0319166001600160801b03929092169190911790556112db565b82805461193e90611eec565b90600052602060002090601f01602090048101928261196057600085556119a6565b82601f1061197957805160ff19168380011785556119a6565b828001600101855582156119a6579182015b828111156119a657825182559160200191906001019061198b565b506119b29291506119b6565b5090565b5b808211156119b257600081556001016119b7565b60006001600160401b03808411156119e5576119e5611f98565b604051601f8501601f19908116603f01168101908282118183101715611a0d57611a0d611f98565b81604052809350858152868686011115611a2657600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611a5757600080fd5b919050565b60008083601f840112611a6e57600080fd5b5081356001600160401b03811115611a8557600080fd5b6020830191508360208260051b8501011115611aa057600080fd5b9250929050565b600060208284031215611ab957600080fd5b610ee382611a40565b60008060408385031215611ad557600080fd5b611ade83611a40565b9150611aec60208401611a40565b90509250929050565b600080600060608486031215611b0a57600080fd5b611b1384611a40565b9250611b2160208501611a40565b9150604084013590509250925092565b60008060008060808587031215611b4757600080fd5b611b5085611a40565b9350611b5e60208601611a40565b92506040850135915060608501356001600160401b03811115611b8057600080fd5b8501601f81018713611b9157600080fd5b611ba0878235602084016119cb565b91505092959194509250565b60008060408385031215611bbf57600080fd5b611bc883611a40565b915060208301358015158114611bdd57600080fd5b809150509250929050565b60008060408385031215611bfb57600080fd5b611c0483611a40565b946020939093013593505050565b60008060208385031215611c2557600080fd5b82356001600160401b03811115611c3b57600080fd5b611c4785828601611a5c565b90969095509350505050565b600060208284031215611c6557600080fd5b5035919050565b600060208284031215611c7e57600080fd5b8135610ee381611fae565b600060208284031215611c9b57600080fd5b8151610ee381611fae565b600060208284031215611cb857600080fd5b81356001600160401b03811115611cce57600080fd5b8201601f81018413611cdf57600080fd5b6115cc848235602084016119cb565b600060208284031215611d0057600080fd5b5051919050565b600080600060408486031215611d1c57600080fd5b8335925060208401356001600160401b03811115611d3957600080fd5b611d4586828701611a5c565b9497909650939450505050565b60008151808452611d6a816020860160208601611ec0565b601f01601f19169290920160200192915050565b60008351611d90818460208801611ec0565b835190830190611da4818360208801611ec0565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611de090830184611d52565b9695505050505050565b602081526000610ee36020830184611d52565b60208082526012908201527124b739bab33334b1b2b73a10333ab732399760711b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611e7157611e71611f56565b500190565b600082611e8557611e85611f6c565b500490565b6000816000190483118215151615611ea457611ea4611f56565b500290565b600082821015611ebb57611ebb611f56565b500390565b60005b83811015611edb578181015183820152602001611ec3565b838111156109df5750506000910152565b600181811c90821680611f0057607f821691505b60208210811415611f2157634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611f3b57611f3b611f56565b5060010190565b600082611f5157611f51611f6c565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610bc557600080fdfea264697066735822122056664ef8db2bc921074d7d5bb462ff34f941eba3aef6f59bcc1de69fb6cc02b764736f6c63430008070033

Deployed Bytecode Sourcemap

168:2591:12:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6201:372:3;;;;;;;;;;-1:-1:-1;6201:372:3;;;;;:::i;:::-;;:::i;:::-;;;8040:14:13;;8033:22;8015:41;;8003:2;7988:18;6201:372:3;;;;;;;;8811:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;10314:204::-;;;;;;;;;;-1:-1:-1;10314:204:3;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7338:32:13;;;7320:51;;7308:2;7293:18;10314:204:3;7174:203:13;9877:371:3;;;;;;;;;;-1:-1:-1;9877:371:3;;;;;:::i;:::-;;:::i;:::-;;3438:280;;;;;;;;;;;;3491:7;3683:12;-1:-1:-1;;;;;;;;3683:12:3;;;;3667:13;;;:28;;;;3660:35;;3438:280;;;;8213:25:13;;;8201:2;8186:18;3438:280:3;8067:177:13;295:28:12;;;;;;;;;;;;;;;;11171:170:3;;;;;;;;;;-1:-1:-1;11171:170:3;;;;;:::i;:::-;;:::i;1164:890:12:-;;;;;;:::i;:::-;;:::i;252:36::-;;;;;;;;;;;;;;;;5024:1105:3;;;;;;;;;;-1:-1:-1;5024:1105:3;;;;;:::i;:::-;;:::i;2480:95:12:-;;;;;;;;;;-1:-1:-1;2480:95:12;;;;;:::i;:::-;;:::i;2583:173::-;;;;;;;;;;;;;:::i;11412:185:3:-;;;;;;;;;;-1:-1:-1;11412:185:3;;;;;:::i;:::-;;:::i;4011:713::-;;;;;;;;;;-1:-1:-1;4011:713:3;;;;;:::i;:::-;;:::i;2160:100:12:-;;;;;;;;;;-1:-1:-1;2160:100:12;;;;;:::i;:::-;;:::i;8620:124:3:-;;;;;;;;;;-1:-1:-1;8620:124:3;;;;;:::i;:::-;;:::i;6637:206::-;;;;;;;;;;-1:-1:-1;6637:206:3;;;;;:::i;:::-;;:::i;1650:94:10:-;;;;;;;;;;;;;:::i;2384:88:12:-;;;;;;;;;;-1:-1:-1;2384:88:12;;;;;:::i;:::-;;:::i;359:74::-;;;;;;;;;;-1:-1:-1;359:74:12;;;;-1:-1:-1;;;;;359:74:12;;;999:87:10;;;;;;;;;;-1:-1:-1;1072:6:10;;-1:-1:-1;;;;;1072:6:10;999:87;;8980:104:3;;;;;;;;;;;;;:::i;212:33:12:-;;;;;;;;;;;;;;;;10590:279:3;;;;;;;;;;-1:-1:-1;10590:279:3;;;;;:::i;:::-;;:::i;11668:342::-;;;;;;;;;;-1:-1:-1;11668:342:3;;;;;:::i;:::-;;:::i;858:298:12:-;;;;;;;;;;-1:-1:-1;858:298:12;;;;;:::i;:::-;;:::i;9155:318:3:-;;;;;;;;;;-1:-1:-1;9155:318:3;;;;;:::i;:::-;;:::i;10940:164::-;;;;;;;;;;-1:-1:-1;10940:164:3;;;;;:::i;:::-;-1:-1:-1;;;;;11061:25:3;;;11037:4;11061:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;10940:164;440:19:12;;;;;;;;;;;;;;;;1899:192:10;;;;;;;;;;-1:-1:-1;1899:192:10;;;;;:::i;:::-;;:::i;2062:90:12:-;;;;;;;;;;-1:-1:-1;2062:90:12;;;;;:::i;:::-;;:::i;6201:372:3:-;6303:4;-1:-1:-1;;;;;;6340:40:3;;-1:-1:-1;;;6340:40:3;;:105;;-1:-1:-1;;;;;;;6397:48:3;;-1:-1:-1;;;6397:48:3;6340:105;:172;;;-1:-1:-1;;;;;;;6462:50:3;;-1:-1:-1;;;6462:50:3;6340:172;:225;;;-1:-1:-1;;;;;;;;;;896:40:2;;;6529:36:3;6320:245;6201:372;-1:-1:-1;;6201:372:3:o;8811:100::-;8865:13;8898:5;8891:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8811:100;:::o;10314:204::-;10382:7;10407:16;10415:7;10407;:16::i;:::-;10402:64;;10432:34;;-1:-1:-1;;;10432:34:3;;;;;;;;;;;10402:64;-1:-1:-1;10486:24:3;;;;:15;:24;;;;;;-1:-1:-1;;;;;10486:24:3;;10314:204::o;9877:371::-;9950:13;9966:24;9982:7;9966:15;:24::i;:::-;9950:40;;10011:5;-1:-1:-1;;;;;10005:11:3;:2;-1:-1:-1;;;;;10005:11:3;;10001:48;;;10025:24;;-1:-1:-1;;;10025:24:3;;;;;;;;;;;10001:48;681:10:1;-1:-1:-1;;;;;10066:21:3;;;;;;:63;;-1:-1:-1;10092:37:3;10109:5;681:10:1;10940:164:3;:::i;10092:37::-;10091:38;10066:63;10062:138;;;10153:35;;-1:-1:-1;;;10153:35:3;;;;;;;;;;;10062:138;10212:28;10221:2;10225:7;10234:5;10212:8;:28::i;:::-;9939:309;9877:371;;:::o;11171:170::-;11305:28;11315:4;11321:2;11325:7;11305:9;:28::i;1164:890:12:-;791:15;774:13;;:32;;766:64;;;;-1:-1:-1;;;766:64:12;;9429:2:13;766:64:12;;;9411:21:13;9468:2;9448:18;;;9441:30;-1:-1:-1;;;9487:18:13;;;9480:49;9546:18;;766:64:12;;;;;;;;;1316:9:::1;643:14;;630:9;614:13;3491:7:3::0;3683:12;-1:-1:-1;;;;;;;;3683:12:3;;;;3667:13;;;:28;;;;3660:35;;3438:280;614:13:12::1;:25;;;;:::i;:::-;:43;;592:113;;;::::0;-1:-1:-1;;;592:113:12;;9777:2:13;592:113:12::1;::::0;::::1;9759:21:13::0;9816:2;9796:18;;;9789:30;-1:-1:-1;;;9835:18:13;;;9828:50;9895:18;;592:113:12::1;9575:344:13::0;592:113:12::1;1347:27:::2;1362:11;;1347:14;:27::i;:::-;1343:659;;;1417:14;::::0;1409:45:::2;::::0;-1:-1:-1;;;1409:45:12;;1443:10:::2;1409:45;::::0;::::2;7320:51:13::0;1391:15:12::2;::::0;-1:-1:-1;;;;;1417:14:12::2;::::0;1409:33:::2;::::0;7293:18:13;;1409:45:12::2;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1391:63;;1469:14;1486:25;1500:10;1486:13;:25::i;:::-;1469:42;;1542:6;1532:7;:16;1528:369;;;1592:9:::0;1573:16:::2;1583:6:::0;1573:7;:16:::2;:::i;:::-;:28;1569:210;;;1702:6:::0;1680:19:::2;1692:7:::0;1680:9;:19:::2;:::i;:::-;:28;;;;:::i;:::-;1671:5;;:38;;;;:::i;:::-;1658:9;:51;;1624:155;;;;-1:-1:-1::0;;;1624:155:12::2;;;;;;;:::i;:::-;1528:369;;;1849:9;1841:5;;:17;;;;:::i;:::-;1828:9;:30;;1820:61;;;;-1:-1:-1::0;;;1820:61:12::2;;;;;;;:::i;:::-;1376:532;;1343:659;;;1958:9;1950:5;;:17;;;;:::i;:::-;1937:9;:30;;1929:61;;;;-1:-1:-1::0;;;1929:61:12::2;;;;;;;:::i;:::-;2014:32;2024:10;2036:9;2014;:32::i;:::-;841:1:::1;1164:890:::0;;;:::o;5024:1105:3:-;5113:7;5146:16;5156:5;5146:9;:16::i;:::-;5137:5;:25;5133:61;;5171:23;;-1:-1:-1;;;5171:23:3;;;;;;;;;;;5133:61;5205:22;5230:13;;-1:-1:-1;;;;;5230:13:3;;5205:22;;5480:557;5500:14;5496:1;:18;5480:557;;;5540:31;5574:14;;;:11;:14;;;;;;;;;5540:48;;;;;;;;;-1:-1:-1;;;;;5540:48:3;;;;-1:-1:-1;;;5540:48:3;;-1:-1:-1;;;;;5540:48:3;;;;;;;;-1:-1:-1;;;5540:48:3;;;;;;;;;;;;;;;;5607:73;;5652:8;;;5607:73;5702:14;;-1:-1:-1;;;;;5702:28:3;;5698:111;;5775:14;;;-1:-1:-1;5698:111:3;5852:5;-1:-1:-1;;;;;5831:26:3;:17;-1:-1:-1;;;;;5831:26:3;;5827:195;;;5901:5;5886:11;:20;5882:85;;;-1:-1:-1;5942:1:3;-1:-1:-1;5935:8:3;;-1:-1:-1;;;5935:8:3;5882:85;5989:13;;;;;5827:195;5521:516;5480:557;5516:3;;5480:557;;;;6113:8;;;2480:95:12;1072:6:10;;-1:-1:-1;;;;;1072:6:10;681:10:1;1219:23:10;1211:68;;;;-1:-1:-1;;;1211:68:10;;;;;;;:::i;:::-;2546:13:12::1;:21:::0;2480:95::o;2583:173::-;1072:6:10;;-1:-1:-1;;;;;1072:6:10;681:10:1;1219:23:10;1211:68;;;;-1:-1:-1;;;1211:68:10;;;;;;;:::i;:::-;2652:49:12::1;::::0;2634:12:::1;::::0;2652:10:::1;::::0;2675:21:::1;::::0;2634:12;2652:49;2634:12;2652:49;2675:21;2652:10;:49:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2633:68;;;2720:7;2712:36;;;::::0;-1:-1:-1;;;2712:36:12;;10487:2:13;2712:36:12::1;::::0;::::1;10469:21:13::0;10526:2;10506:18;;;10499:30;-1:-1:-1;;;10545:18:13;;;10538:46;10601:18;;2712:36:12::1;10285:340:13::0;2712:36:12::1;2622:134;2583:173::o:0;11412:185:3:-;11550:39;11567:4;11573:2;11577:7;11550:39;;;;;;;;;;;;:16;:39::i;4011:713::-;4078:7;4123:13;;-1:-1:-1;;;;;4123:13:3;4078:7;;4337:328;4357:14;4353:1;:18;4337:328;;;4397:31;4431:14;;;:11;:14;;;;;;;;;4397:48;;;;;;;;;-1:-1:-1;;;;;4397:48:3;;;;-1:-1:-1;;;4397:48:3;;-1:-1:-1;;;;;4397:48:3;;;;;;;;-1:-1:-1;;;4397:48:3;;;;;;;;;;;;;;4464:186;;4529:5;4514:11;:20;4510:85;;;-1:-1:-1;4570:1:3;4011:713;-1:-1:-1;;;;4011:713:3:o;4510:85::-;4617:13;;;;;4464:186;-1:-1:-1;4373:3:3;;4337:328;;;;4693:23;;-1:-1:-1;;;4693:23:3;;;;;;;;;;;2160:100:12;1072:6:10;;-1:-1:-1;;;;;1072:6:10;681:10:1;1219:23:10;1211:68;;;;-1:-1:-1;;;1211:68:10;;;;;;;:::i;:::-;2234:18:12;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;2160:100:::0;:::o;8620:124:3:-;8684:7;8711:20;8723:7;8711:11;:20::i;:::-;:25;;8620:124;-1:-1:-1;;8620:124:3:o;6637:206::-;6701:7;-1:-1:-1;;;;;6725:19:3;;6721:60;;6753:28;;-1:-1:-1;;;6753:28:3;;;;;;;;;;;6721:60;-1:-1:-1;;;;;;6807:19:3;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;6807:27:3;;6637:206::o;1650:94:10:-;1072:6;;-1:-1:-1;;;;;1072:6:10;681:10:1;1219:23:10;1211:68;;;;-1:-1:-1;;;1211:68:10;;;;;;;:::i;:::-;1715:21:::1;1733:1;1715:9;:21::i;:::-;1650:94::o:0;2384:88:12:-;1072:6:10;;-1:-1:-1;;;;;1072:6:10;681:10:1;1219:23:10;1211:68;;;;-1:-1:-1;;;1211:68:10;;;;;;;:::i;:::-;2452:4:12::1;:12:::0;2384:88::o;8980:104:3:-;9036:13;9069:7;9062:14;;;;;:::i;10590:279::-;-1:-1:-1;;;;;10681:24:3;;681:10:1;10681:24:3;10677:54;;;10714:17;;-1:-1:-1;;;10714:17:3;;;;;;;;;;;10677:54;681:10:1;10744:32:3;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;10744:42:3;;;;;;;;;;;;:53;;-1:-1:-1;;10744:53:3;;;;;;;;;;10813:48;;8015:41:13;;;10744:42:3;;681:10:1;10813:48:3;;7988:18:13;10813:48:3;;;;;;;10590:279;;:::o;11668:342::-;11835:28;11845:4;11851:2;11855:7;11835:9;:28::i;:::-;11879:48;11902:4;11908:2;11912:7;11921:5;11879:22;:48::i;:::-;11874:129;;11951:40;;-1:-1:-1;;;11951:40:3;;;;;;;;;;;858:298:12;962:4;1004:144;1041:11;;1004:144;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;1071:4:12;;1104:28;;-1:-1:-1;;1121:10:12;6152:2:13;6148:15;6144:53;1104:28:12;;;6132:66:13;1071:4:12;;-1:-1:-1;6214:12:13;;;-1:-1:-1;1104:28:12;;;;;;;;;;;;1094:39;;;;;;1004:18;:144::i;:::-;984:164;858:298;-1:-1:-1;;;858:298:12:o;9155:318:3:-;9228:13;9259:16;9267:7;9259;:16::i;:::-;9254:59;;9284:29;;-1:-1:-1;;;9284:29:3;;;;;;;;;;;9254:59;9326:21;9350:10;:8;:10::i;:::-;9326:34;;9384:7;9378:21;9403:1;9378:26;;:87;;;;;;;;;;;;;;;;;9431:7;9440:18;:7;:16;:18::i;:::-;9414:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;9371:94;9155:318;-1:-1:-1;;;9155:318:3:o;1899:192:10:-;1072:6;;-1:-1:-1;;;;;1072:6:10;681:10:1;1219:23:10;1211:68;;;;-1:-1:-1;;;1211:68:10;;;;;;;:::i;:::-;-1:-1:-1;;;;;1988:22:10;::::1;1980:73;;;::::0;-1:-1:-1;;;1980:73:10;;8675:2:13;1980:73:10::1;::::0;::::1;8657:21:13::0;8714:2;8694:18;;;8687:30;8753:34;8733:18;;;8726:62;-1:-1:-1;;;8804:18:13;;;8797:36;8850:19;;1980:73:10::1;8473:402:13::0;1980:73:10::1;2064:19;2074:8;2064:9;:19::i;2062:90:12:-:0;1072:6:10;;-1:-1:-1;;;;;1072:6:10;681:10:1;1219:23:10;1211:68;;;;-1:-1:-1;;;1211:68:10;;;;;;;:::i;:::-;2130:5:12::1;:14:::0;2062:90::o;12265:144:3:-;12322:4;12356:13;;-1:-1:-1;;;;;12356:13:3;12346:23;;:55;;;;-1:-1:-1;;12374:20:3;;;;:11;:20;;;;;:27;-1:-1:-1;;;12374:27:3;;;;12373:28;;12265:144::o;19481:196::-;19596:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;19596:29:3;-1:-1:-1;;;;;19596:29:3;;;;;;;;;19641:28;;19596:24;;19641:28;;;;;;;19481:196;;;:::o;14982:2112::-;15097:35;15135:20;15147:7;15135:11;:20::i;:::-;15210:18;;15097:58;;-1:-1:-1;15168:22:3;;-1:-1:-1;;;;;15194:34:3;681:10:1;-1:-1:-1;;;;;15194:34:3;;:101;;;-1:-1:-1;15262:18:3;;15245:50;;681:10:1;10940:164:3;:::i;15245:50::-;15194:154;;;-1:-1:-1;681:10:1;15312:20:3;15324:7;15312:11;:20::i;:::-;-1:-1:-1;;;;;15312:36:3;;15194:154;15168:181;;15367:17;15362:66;;15393:35;;-1:-1:-1;;;15393:35:3;;;;;;;;;;;15362:66;15465:4;-1:-1:-1;;;;;15443:26:3;:13;:18;;;-1:-1:-1;;;;;15443:26:3;;15439:67;;15478:28;;-1:-1:-1;;;15478:28:3;;;;;;;;;;;15439:67;-1:-1:-1;;;;;15521:16:3;;15517:52;;15546:23;;-1:-1:-1;;;15546:23:3;;;;;;;;;;;15517:52;15690:49;15707:1;15711:7;15720:13;:18;;;15690:8;:49::i;:::-;-1:-1:-1;;;;;16035:18:3;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;16035:31:3;;;-1:-1:-1;;;;;16035:31:3;;;-1:-1:-1;;16035:31:3;;;;;;;16081:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;16081:29:3;;;;;;;;;;;16127:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;16172:61:3;;;;-1:-1:-1;;;16217:15:3;16172:61;;;;;;;;;;;16507:11;;;16537:24;;;;;:29;16507:11;;16537:29;16533:445;;16762:13;;-1:-1:-1;;;;;16762:13:3;16748:27;;16744:219;;;16832:18;;;16800:24;;;:11;:24;;;;;;;;:50;;16915:28;;;;-1:-1:-1;;;;;16873:70:3;-1:-1:-1;;;16873:70:3;-1:-1:-1;;;;;;16873:70:3;;;-1:-1:-1;;;;;16800:50:3;;;16873:70;;;;;;;16744:219;16010:979;17025:7;17021:2;-1:-1:-1;;;;;17006:27:3;17015:4;-1:-1:-1;;;;;17006:27:3;;;;;;;;;;;17044:42;15086:2008;;14982:2112;;;:::o;6851:207::-;6912:7;-1:-1:-1;;;;;6936:19:3;;6932:59;;6964:27;;-1:-1:-1;;;6964:27:3;;;;;;;;;;;6932:59;-1:-1:-1;;;;;;7017:19:3;;;;;:12;:19;;;;;:32;-1:-1:-1;;;7017:32:3;;-1:-1:-1;;;;;7017:32:3;;6851:207::o;12417:104::-;12486:27;12496:2;12500:8;12486:27;;;;;;;;;;;;:9;:27::i;7475:1083::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;7641:13:3;;7585:7;;-1:-1:-1;;;;;7641:13:3;7634:20;;7630:861;;;7675:31;7709:17;;;:11;:17;;;;;;;;;7675:51;;;;;;;;;-1:-1:-1;;;;;7675:51:3;;;;-1:-1:-1;;;7675:51:3;;-1:-1:-1;;;;;7675:51:3;;;;;;;;-1:-1:-1;;;7675:51:3;;;;;;;;;;;;;;7745:731;;7795:14;;-1:-1:-1;;;;;7795:28:3;;7791:101;;7859:9;7475:1083;-1:-1:-1;;;7475:1083:3:o;7791:101::-;-1:-1:-1;;;8236:6:3;8281:17;;;;:11;:17;;;;;;;;;8269:29;;;;;;;;;-1:-1:-1;;;;;8269:29:3;;;;;-1:-1:-1;;;8269:29:3;;-1:-1:-1;;;;;8269:29:3;;;;;;;;-1:-1:-1;;;8269:29:3;;;;;;;;;;;;;8329:28;8325:109;;8397:9;7475:1083;-1:-1:-1;;;7475:1083:3:o;8325:109::-;8196:261;;;7656:835;7630:861;8519:31;;-1:-1:-1;;;8519:31:3;;;;;;;;;;;2099:173:10;2174:6;;;-1:-1:-1;;;;;2191:17:10;;;-1:-1:-1;;;;;;2191:17:10;;;;;;;2224:40;;2174:6;;;2191:17;2174:6;;2224:40;;2155:16;;2224:40;2144:128;2099:173;:::o;20242:790:3:-;20397:4;-1:-1:-1;;;;;20418:13:3;;1066:20:0;1114:8;20414:611:3;;20454:72;;-1:-1:-1;;;20454:72:3;;-1:-1:-1;;;;;20454:36:3;;;;;:72;;681:10:1;;20505:4:3;;20511:7;;20520:5;;20454:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20454:72:3;;;;;;;;-1:-1:-1;;20454:72:3;;;;;;;;;;;;:::i;:::-;;;20450:520;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20700:13:3;;20696:259;;20750:40;;-1:-1:-1;;;20750:40:3;;;;;;;;;;;20696:259;20905:6;20899:13;20890:6;20886:2;20882:15;20875:38;20450:520;-1:-1:-1;;;;;;20577:55:3;-1:-1:-1;;;20577:55:3;;-1:-1:-1;20570:62:3;;20414:611;-1:-1:-1;21009:4:3;20414:611;20242:790;;;;;;:::o;868:190:9:-;993:4;1046;1017:25;1030:5;1037:4;1017:12;:25::i;:::-;:33;;868:190;-1:-1:-1;;;;868:190:9:o;2268:108:12:-;2328:13;2361:7;2354:14;;;;;:::i;288:723:11:-;344:13;565:10;561:53;;-1:-1:-1;;592:10:11;;;;;;;;;;;;-1:-1:-1;;;592:10:11;;;;;288:723::o;561:53::-;639:5;624:12;680:78;687:9;;680:78;;713:8;;;;:::i;:::-;;-1:-1:-1;736:10:11;;-1:-1:-1;744:2:11;736:10;;:::i;:::-;;;680:78;;;768:19;800:6;-1:-1:-1;;;;;790:17:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;790:17:11;;768:39;;818:154;825:10;;818:154;;852:11;862:1;852:11;;:::i;:::-;;-1:-1:-1;921:10:11;929:2;921:5;:10;:::i;:::-;908:24;;:2;:24;:::i;:::-;895:39;;878:6;885;878:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;878:56:11;;;;;;;;-1:-1:-1;949:11:11;958:2;949:11;;:::i;:::-;;;818:154;;12884:163:3;13007:32;13013:2;13017:8;13027:5;13034:4;13007:5;:32::i;1420:701:9:-;1503:7;1546:4;1503:7;1561:523;1585:5;:12;1581:1;:16;1561:523;;;1619:20;1642:5;1648:1;1642:8;;;;;;;;:::i;:::-;;;;;;;1619:31;;1685:12;1669;:28;1665:408;;1822:44;;;;;;6394:19:13;;;6429:12;;;6422:28;;;6466:12;;1822:44:9;;;;;;;;;;;;1812:55;;;;;;1797:70;;1665:408;;;2012:44;;;;;;6394:19:13;;;6429:12;;;6422:28;;;6466:12;;2012:44:9;;;;;;;;;;;;2002:55;;;;;;1987:70;;1665:408;-1:-1:-1;1599:3:9;;;;:::i;:::-;;;;1561:523;;;-1:-1:-1;2101:12:9;1420:701;-1:-1:-1;;;1420:701:9:o;13306:1422:3:-;13445:20;13468:13;-1:-1:-1;;;;;13468:13:3;-1:-1:-1;;;;;13496:16:3;;13492:48;;13521:19;;-1:-1:-1;;;13521:19:3;;;;;;;;;;;13492:48;13555:13;13551:44;;13577:18;;-1:-1:-1;;;13577:18:3;;;;;;;;;;;13551:44;-1:-1:-1;;;;;13947:16:3;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;;;;;14006:49:3;;-1:-1:-1;;;;;13947:44:3;;;;;;;14006:49;;;-1:-1:-1;;;;;13947:44:3;;;;;;14006:49;;;;;;;;;;;;;;;;14072:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;14122:66:3;;;;-1:-1:-1;;;14172:15:3;14122:66;;;;;;;;;;;14072:25;;14257:328;14277:8;14273:1;:12;14257:328;;;14316:38;;14341:12;;-1:-1:-1;;;;;14316:38:3;;;14333:1;;14316:38;;14333:1;;14316:38;14377:4;:68;;;;;14386:59;14417:1;14421:2;14425:12;14439:5;14386:22;:59::i;:::-;14385:60;14377:68;14373:164;;;14477:40;;-1:-1:-1;;;14477:40:3;;;;;;;;;;;14373:164;14555:14;;;;;14287:3;14257:328;;;-1:-1:-1;14601:13:3;:37;;-1:-1:-1;;;;;;14601:37:3;-1:-1:-1;;;;;14601:37:3;;;;;;;;;;14660:60;1164:890:12;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:13;78:5;-1:-1:-1;;;;;149:2:13;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:13;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:13;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:367::-;891:8;901:6;955:3;948:4;940:6;936:17;932:27;922:55;;973:1;970;963:12;922:55;-1:-1:-1;996:20:13;;-1:-1:-1;;;;;1028:30:13;;1025:50;;;1071:1;1068;1061:12;1025:50;1108:4;1100:6;1096:17;1084:29;;1168:3;1161:4;1151:6;1148:1;1144:14;1136:6;1132:27;1128:38;1125:47;1122:67;;;1185:1;1182;1175:12;1122:67;828:367;;;;;:::o;1200:186::-;1259:6;1312:2;1300:9;1291:7;1287:23;1283:32;1280:52;;;1328:1;1325;1318:12;1280:52;1351:29;1370:9;1351:29;:::i;1391:260::-;1459:6;1467;1520:2;1508:9;1499:7;1495:23;1491:32;1488:52;;;1536:1;1533;1526:12;1488:52;1559:29;1578:9;1559:29;:::i;:::-;1549:39;;1607:38;1641:2;1630:9;1626:18;1607:38;:::i;:::-;1597:48;;1391:260;;;;;:::o;1656:328::-;1733:6;1741;1749;1802:2;1790:9;1781:7;1777:23;1773:32;1770:52;;;1818:1;1815;1808:12;1770:52;1841:29;1860:9;1841:29;:::i;:::-;1831:39;;1889:38;1923:2;1912:9;1908:18;1889:38;:::i;:::-;1879:48;;1974:2;1963:9;1959:18;1946:32;1936:42;;1656:328;;;;;:::o;1989:666::-;2084:6;2092;2100;2108;2161:3;2149:9;2140:7;2136:23;2132:33;2129:53;;;2178:1;2175;2168:12;2129:53;2201:29;2220:9;2201:29;:::i;:::-;2191:39;;2249:38;2283:2;2272:9;2268:18;2249:38;:::i;:::-;2239:48;;2334:2;2323:9;2319:18;2306:32;2296:42;;2389:2;2378:9;2374:18;2361:32;-1:-1:-1;;;;;2408:6:13;2405:30;2402:50;;;2448:1;2445;2438:12;2402:50;2471:22;;2524:4;2516:13;;2512:27;-1:-1:-1;2502:55:13;;2553:1;2550;2543:12;2502:55;2576:73;2641:7;2636:2;2623:16;2618:2;2614;2610:11;2576:73;:::i;:::-;2566:83;;;1989:666;;;;;;;:::o;2660:347::-;2725:6;2733;2786:2;2774:9;2765:7;2761:23;2757:32;2754:52;;;2802:1;2799;2792:12;2754:52;2825:29;2844:9;2825:29;:::i;:::-;2815:39;;2904:2;2893:9;2889:18;2876:32;2951:5;2944:13;2937:21;2930:5;2927:32;2917:60;;2973:1;2970;2963:12;2917:60;2996:5;2986:15;;;2660:347;;;;;:::o;3012:254::-;3080:6;3088;3141:2;3129:9;3120:7;3116:23;3112:32;3109:52;;;3157:1;3154;3147:12;3109:52;3180:29;3199:9;3180:29;:::i;:::-;3170:39;3256:2;3241:18;;;;3228:32;;-1:-1:-1;;;3012:254:13:o;3271:437::-;3357:6;3365;3418:2;3406:9;3397:7;3393:23;3389:32;3386:52;;;3434:1;3431;3424:12;3386:52;3474:9;3461:23;-1:-1:-1;;;;;3499:6:13;3496:30;3493:50;;;3539:1;3536;3529:12;3493:50;3578:70;3640:7;3631:6;3620:9;3616:22;3578:70;:::i;:::-;3667:8;;3552:96;;-1:-1:-1;3271:437:13;-1:-1:-1;;;;3271:437:13:o;3713:180::-;3772:6;3825:2;3813:9;3804:7;3800:23;3796:32;3793:52;;;3841:1;3838;3831:12;3793:52;-1:-1:-1;3864:23:13;;3713:180;-1:-1:-1;3713:180:13:o;3898:245::-;3956:6;4009:2;3997:9;3988:7;3984:23;3980:32;3977:52;;;4025:1;4022;4015:12;3977:52;4064:9;4051:23;4083:30;4107:5;4083:30;:::i;4148:249::-;4217:6;4270:2;4258:9;4249:7;4245:23;4241:32;4238:52;;;4286:1;4283;4276:12;4238:52;4318:9;4312:16;4337:30;4361:5;4337:30;:::i;4402:450::-;4471:6;4524:2;4512:9;4503:7;4499:23;4495:32;4492:52;;;4540:1;4537;4530:12;4492:52;4580:9;4567:23;-1:-1:-1;;;;;4605:6:13;4602:30;4599:50;;;4645:1;4642;4635:12;4599:50;4668:22;;4721:4;4713:13;;4709:27;-1:-1:-1;4699:55:13;;4750:1;4747;4740:12;4699:55;4773:73;4838:7;4833:2;4820:16;4815:2;4811;4807:11;4773:73;:::i;5042:184::-;5112:6;5165:2;5153:9;5144:7;5140:23;5136:32;5133:52;;;5181:1;5178;5171:12;5133:52;-1:-1:-1;5204:16:13;;5042:184;-1:-1:-1;5042:184:13:o;5231:505::-;5326:6;5334;5342;5395:2;5383:9;5374:7;5370:23;5366:32;5363:52;;;5411:1;5408;5401:12;5363:52;5447:9;5434:23;5424:33;;5508:2;5497:9;5493:18;5480:32;-1:-1:-1;;;;;5527:6:13;5524:30;5521:50;;;5567:1;5564;5557:12;5521:50;5606:70;5668:7;5659:6;5648:9;5644:22;5606:70;:::i;:::-;5231:505;;5695:8;;-1:-1:-1;5580:96:13;;-1:-1:-1;;;;5231:505:13:o;5741:257::-;5782:3;5820:5;5814:12;5847:6;5842:3;5835:19;5863:63;5919:6;5912:4;5907:3;5903:14;5896:4;5889:5;5885:16;5863:63;:::i;:::-;5980:2;5959:15;-1:-1:-1;;5955:29:13;5946:39;;;;5987:4;5942:50;;5741:257;-1:-1:-1;;5741:257:13:o;6489:470::-;6668:3;6706:6;6700:13;6722:53;6768:6;6763:3;6756:4;6748:6;6744:17;6722:53;:::i;:::-;6838:13;;6797:16;;;;6860:57;6838:13;6797:16;6894:4;6882:17;;6860:57;:::i;:::-;6933:20;;6489:470;-1:-1:-1;;;;6489:470:13:o;7382:488::-;-1:-1:-1;;;;;7651:15:13;;;7633:34;;7703:15;;7698:2;7683:18;;7676:43;7750:2;7735:18;;7728:34;;;7798:3;7793:2;7778:18;;7771:31;;;7576:4;;7819:45;;7844:19;;7836:6;7819:45;:::i;:::-;7811:53;7382:488;-1:-1:-1;;;;;;7382:488:13:o;8249:219::-;8398:2;8387:9;8380:21;8361:4;8418:44;8458:2;8447:9;8443:18;8435:6;8418:44;:::i;8880:342::-;9082:2;9064:21;;;9121:2;9101:18;;;9094:30;-1:-1:-1;;;9155:2:13;9140:18;;9133:48;9213:2;9198:18;;8880:342::o;9924:356::-;10126:2;10108:21;;;10145:18;;;10138:30;10204:34;10199:2;10184:18;;10177:62;10271:2;10256:18;;9924:356::o;10812:128::-;10852:3;10883:1;10879:6;10876:1;10873:13;10870:39;;;10889:18;;:::i;:::-;-1:-1:-1;10925:9:13;;10812:128::o;10945:120::-;10985:1;11011;11001:35;;11016:18;;:::i;:::-;-1:-1:-1;11050:9:13;;10945:120::o;11070:168::-;11110:7;11176:1;11172;11168:6;11164:14;11161:1;11158:21;11153:1;11146:9;11139:17;11135:45;11132:71;;;11183:18;;:::i;:::-;-1:-1:-1;11223:9:13;;11070:168::o;11243:125::-;11283:4;11311:1;11308;11305:8;11302:34;;;11316:18;;:::i;:::-;-1:-1:-1;11353:9:13;;11243:125::o;11373:258::-;11445:1;11455:113;11469:6;11466:1;11463:13;11455:113;;;11545:11;;;11539:18;11526:11;;;11519:39;11491:2;11484:10;11455:113;;;11586:6;11583:1;11580:13;11577:48;;;-1:-1:-1;;11621:1:13;11603:16;;11596:27;11373:258::o;11636:380::-;11715:1;11711:12;;;;11758;;;11779:61;;11833:4;11825:6;11821:17;11811:27;;11779:61;11886:2;11878:6;11875:14;11855:18;11852:38;11849:161;;;11932:10;11927:3;11923:20;11920:1;11913:31;11967:4;11964:1;11957:15;11995:4;11992:1;11985:15;11849:161;;11636:380;;;:::o;12021:135::-;12060:3;-1:-1:-1;;12081:17:13;;12078:43;;;12101:18;;:::i;:::-;-1:-1:-1;12148:1:13;12137:13;;12021:135::o;12161:112::-;12193:1;12219;12209:35;;12224:18;;:::i;:::-;-1:-1:-1;12258:9:13;;12161:112::o;12278:127::-;12339:10;12334:3;12330:20;12327:1;12320:31;12370:4;12367:1;12360:15;12394:4;12391:1;12384:15;12410:127;12471:10;12466:3;12462:20;12459:1;12452:31;12502:4;12499:1;12492:15;12526:4;12523:1;12516:15;12542:127;12603:10;12598:3;12594:20;12591:1;12584:31;12634:4;12631:1;12624:15;12658:4;12655:1;12648:15;12674:127;12735:10;12730:3;12726:20;12723:1;12716:31;12766:4;12763:1;12756:15;12790:4;12787:1;12780:15;12806:131;-1:-1:-1;;;;;;12880:32:13;;12870:43;;12860:71;;12927:1;12924;12917:12

Swarm Source

ipfs://56664ef8db2bc921074d7d5bb462ff34f941eba3aef6f59bcc1de69fb6cc02b7
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.