ETH Price: $3,263.04 (-0.63%)
Gas: 1 Gwei

Token

MashMellows (MASH)
 

Overview

Max Total Supply

5,000 MASH

Holders

194

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
3 MASH
0xbc6819c533db537ad8e169d8d67e3c8971c0417f
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:
MashMellows

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-04-03
*/

/**
 *Submitted for verification at Etherscan.io on 2022-03-30
*/

// SPDX-License-Identifier: MIT

pragma solidity 0.8.7;

library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    function toString(uint256 value) internal pure returns (string memory) {
        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);
    }

    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);
    }
}

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

library Address {
    function isContract(address account) internal view returns (bool) {
        return account.code.length > 0;
    }

    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"
        );
    }

    function functionCall(address target, bytes memory data)
        internal
        returns (bytes memory)
    {
        return functionCall(target, data, "Address: low-level call failed");
    }

    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    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"
            );
    }

    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);
    }

    function functionStaticCall(address target, bytes memory data)
        internal
        view
        returns (bytes memory)
    {
        return
            functionStaticCall(
                target,
                data,
                "Address: low-level static call failed"
            );
    }

    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);
    }

    function functionDelegateCall(address target, bytes memory data)
        internal
        returns (bytes memory)
    {
        return
            functionDelegateCall(
                target,
                data,
                "Address: low-level delegate call failed"
            );
    }

    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
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

interface IERC165 {
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override
        returns (bool)
    {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// IERC721.SOL
//IERC721

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;
}

// IERC721Enumerable.sol

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);

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

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

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

error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error UnableDetermineTokenOwner();
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..).
 *
 * Does not support burning tokens to address(0).
 *
 * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply
 */
contract ERC721A is
    Context,
    ERC165,
    IERC721,
    IERC721Metadata,
    IERC721Enumerable
{
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal _currentIndex;

    // 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) {
        return _currentIndex;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index)
        public
        view
        override
        returns (uint256)
    {
        if (index >= totalSupply()) revert TokenIndexOutOfBounds();
        return index;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index)
        public
        view
        override
        returns (uint256 a)
    {
        if (index >= balanceOf(owner)) revert OwnerIndexOutOfBounds();
        uint256 numMintedSoFar = totalSupply();
        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.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

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

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

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

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

        revert UnableDetermineTokenOwner();
    }

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

    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 > 1.56e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint128(quantity);
            _addressData[to].numberMinted += uint128(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 = updatedIndex;
        }

        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

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

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

        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**256.
        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)) {
                if (_exists(nextTokenId)) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership
                        .startTimestamp;
                }
            }
        }

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

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

    /**
     * @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.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

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

abstract contract Ownable is Context {
    address private _owner;

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

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

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

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

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

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

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

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 Merkle 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 = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b)
        private
        pure
        returns (bytes32 value)
    {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

contract MashMellows is ERC721A, Ownable {
    // variables
    using Strings for uint256;

    constructor(bytes32 finalRootHash, string memory _NotRevealedUri)
        ERC721A("MashMellows", "MASH")
    {
        rootHash = finalRootHash;
        setNotRevealedURI(_NotRevealedUri);
    }

    uint256 public maxsupply = 5000;
    uint256 public reserve = 100;
    uint256 public price = 0.045 ether;
    uint256 public SaleMaxQuantity = 3;

    bool public isHolderPaused = false;
    bool public isPublicPaused = true;
    string public _baseURI1;
    bytes32 private rootHash;
    // revealed uri variables

    bool public revealed = false;
    string public notRevealedUri;

    struct userAddress {
        address userAddress;
        uint256 counter;
    }

    mapping(address => userAddress) public _SaleAddresses;
    mapping(address => bool) public _SaleAddressExist;

    function flipHolderMintStatus() public onlyOwner {
        isHolderPaused = !isHolderPaused;
    }

    function flipPauseMintStatus() public onlyOwner {
        isPublicPaused = !isPublicPaused;
    }

    function setRootHash(bytes32 updatedRootHash) public onlyOwner {
        rootHash = updatedRootHash;
    }

    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        _baseURI1 = _newBaseURI;
    }

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

    function setReserve(uint256 _reserve) public onlyOwner {
        require(_reserve <= maxsupply, "the quantity exceeds");
        reserve = _reserve;
    }

    function setPrice(uint256 _newCost) public onlyOwner {
        price = _newCost;
    }

    // set reaveal uri just in case

    function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
        notRevealedUri = _notRevealedURI;
    }

    // setting reaveal only time can possible
    //only owner
    function reveal() public onlyOwner {
        revealed = true;
    }

    function mintReservedTokens(uint256 quantity) public onlyOwner {
        require(quantity <= reserve, "All reserve tokens have bene minted");
        reserve -= quantity;
        _safeMint(msg.sender, quantity);
    }

    function HolderMint(bytes32[] calldata _merkleProof, uint256 chosenAmount)
        public
    {
        if (_SaleAddressExist[msg.sender] == false) {
            _SaleAddresses[msg.sender] = userAddress({
                userAddress: msg.sender,
                counter: 0
            });
            _SaleAddressExist[msg.sender] = true;
        }
        require(isHolderPaused == false, "turn on minting");
        require(
            chosenAmount > 0,
            "Number Of Tokens Can Not Be Less Than Or Equal To 0"
        );
        require(
            _SaleAddresses[msg.sender].counter + chosenAmount <=
                SaleMaxQuantity,
            "Quantity Must Be Lesser Than Max Supply"
        );
        require(
            totalSupply() + chosenAmount <= maxsupply - reserve,
            "all tokens have been minted"
        );
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(
            MerkleProof.verify(_merkleProof, rootHash, leaf),
            "Invalid Proof"
        );

        // require(
        //     presaleprice * chosenAmount == msg.value,
        //     "Sent Ether Value Is Incorrect"
        // );

        _safeMint(msg.sender, chosenAmount);
        _SaleAddresses[msg.sender].counter += chosenAmount;
    }

    function Mint(uint256 chosenAmount) public payable {
        require(isPublicPaused == false, "turn on minting");
        require(
            chosenAmount > 0,
            "Number Of Tokens Can Not Be Less Than Or Equal To 0"
        );
        require(
            totalSupply() + chosenAmount <= maxsupply - reserve,
            "all tokens have been minted"
        );

        require(
            price * chosenAmount == msg.value,
            "Sent Ether Value Is Incorrect"
        );

        _safeMint(msg.sender, chosenAmount);
    }

    // setting up the reaveal functionality

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        if (revealed == false) {
            return notRevealedUri;
        }

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

    function withdraw() public onlyOwner {
        (bool hq, ) = payable(owner()).call{value: address(this).balance}("");
        require(hq);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"bytes32","name":"finalRootHash","type":"bytes32"},{"internalType":"string","name":"_NotRevealedUri","type":"string"}],"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":"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":"UnableDetermineTokenOwner","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":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"chosenAmount","type":"uint256"}],"name":"HolderMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"chosenAmount","type":"uint256"}],"name":"Mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"SaleMaxQuantity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_SaleAddressExist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_SaleAddresses","outputs":[{"internalType":"address","name":"userAddress","type":"address"},{"internalType":"uint256","name":"counter","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_baseURI1","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipHolderMintStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipPauseMintStatus","outputs":[],"stateMutability":"nonpayable","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":"isHolderPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxsupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintReservedTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","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":"reserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_reserve","type":"uint256"}],"name":"setReserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"updatedRootHash","type":"bytes32"}],"name":"setRootHash","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":"a","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"}]

60806040526113886008556064600955669fdf42f6e48000600a556003600b55600c805461ffff1916610100179055600f805460ff191690553480156200004557600080fd5b50604051620027ba380380620027ba833981016040819052620000689162000276565b604080518082018252600b81526a4d6173684d656c6c6f777360a81b60208083019182528351808501909452600484526309a82a6960e31b908401528151919291620000b791600191620001d0565b508051620000cd906002906020840190620001d0565b505050620000ea620000e46200010260201b60201c565b62000106565b600e829055620000fa8162000158565b5050620003b3565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6007546001600160a01b03163314620001b75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001cc906010906020840190620001d0565b5050565b828054620001de9062000360565b90600052602060002090601f0160209004810192826200020257600085556200024d565b82601f106200021d57805160ff19168380011785556200024d565b828001600101855582156200024d579182015b828111156200024d57825182559160200191906001019062000230565b506200025b9291506200025f565b5090565b5b808211156200025b576000815560010162000260565b600080604083850312156200028a57600080fd5b8251602080850151919350906001600160401b0380821115620002ac57600080fd5b818601915086601f830112620002c157600080fd5b815181811115620002d657620002d66200039d565b604051601f8201601f19908116603f011681019083821181831017156200030157620003016200039d565b8160405282815289868487010111156200031a57600080fd5b600093505b828410156200033e57848401860151818501870152928501926200031f565b82841115620003505760008684830101525b8096505050505050509250929050565b600181811c908216806200037557607f821691505b602082108114156200039757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6123f780620003c36000396000f3fe6080604052600436106102515760003560e01c80636352211e11610139578063a035b1fe116100b6578063cd3293de1161007a578063cd3293de146106d8578063cfc08dfb146106ee578063e1d4478214610704578063e985e9c514610719578063f2c4ce1e14610762578063f2fde38b1461078257600080fd5b8063a035b1fe1461064d578063a22cb46514610663578063a475b5dd14610683578063b88d4fde14610698578063c87b56dd146106b857600080fd5b80638da5cb5b116100fd5780638da5cb5b146105c0578063906fe543146105de57806391b7f5ed146105f857806395d89b4114610618578063976d700f1461062d57600080fd5b80636352211e146104ec57806370a082311461050c578063715018a61461052c5780637d5cb4e5146105415780638164669e1461056157600080fd5b806323b872dd116101d25780634256dbe3116101965780634256dbe31461043c57806342842e0e1461045c5780634b6406d11461047c5780634f6ccce71461049257806351830227146104b257806355f804b3146104cc57600080fd5b806323b872dd146103b25780632d7eae66146103d25780632f745c59146103f25780633070179b146104125780633ccfd60b1461042757600080fd5b8063095ea7b311610219578063095ea7b31461030f57806311e0f0631461032f57806316f8a0d11461034457806318160ddd146103745780631b09299c1461039357600080fd5b806301ffc9a71461025657806306fdde031461028b57806307883703146102ad578063081812fc146102c2578063081c8c44146102fa575b600080fd5b34801561026257600080fd5b5061027661027136600461207f565b6107a2565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102a061080f565b60405161028291906121aa565b6102c06102bb366004612066565b6108a1565b005b3480156102ce57600080fd5b506102e26102dd366004612066565b6109eb565b6040516001600160a01b039091168152602001610282565b34801561030657600080fd5b506102a0610a31565b34801561031b57600080fd5b506102c061032a366004611fc1565b610abf565b34801561033b57600080fd5b506102a0610b4d565b34801561035057600080fd5b5061027661035f366004611e7f565b60126020526000908152604090205460ff1681565b34801561038057600080fd5b506000545b604051908152602001610282565b34801561039f57600080fd5b50600c5461027690610100900460ff1681565b3480156103be57600080fd5b506102c06103cd366004611ecd565b610b5a565b3480156103de57600080fd5b506102c06103ed366004612066565b610b65565b3480156103fe57600080fd5b5061038561040d366004611fc1565b610b94565b34801561041e57600080fd5b506102c0610c69565b34801561043357600080fd5b506102c0610ca7565b34801561044857600080fd5b506102c0610457366004612066565b610d42565b34801561046857600080fd5b506102c0610477366004611ecd565b610dba565b34801561048857600080fd5b5061038560085481565b34801561049e57600080fd5b506103856104ad366004612066565b610dd5565b3480156104be57600080fd5b50600f546102769060ff1681565b3480156104d857600080fd5b506102c06104e73660046120b9565b610dfc565b3480156104f857600080fd5b506102e2610507366004612066565b610e3d565b34801561051857600080fd5b50610385610527366004611e7f565b610e4f565b34801561053857600080fd5b506102c0610e9d565b34801561054d57600080fd5b506102c061055c366004612066565b610ed3565b34801561056d57600080fd5b506105a161057c366004611e7f565b601160205260009081526040902080546001909101546001600160a01b039091169082565b604080516001600160a01b039093168352602083019190915201610282565b3480156105cc57600080fd5b506007546001600160a01b03166102e2565b3480156105ea57600080fd5b50600c546102769060ff1681565b34801561060457600080fd5b506102c0610613366004612066565b610f7d565b34801561062457600080fd5b506102a0610fac565b34801561063957600080fd5b506102c0610648366004611feb565b610fbb565b34801561065957600080fd5b50610385600a5481565b34801561066f57600080fd5b506102c061067e366004611f85565b61126f565b34801561068f57600080fd5b506102c0611305565b3480156106a457600080fd5b506102c06106b3366004611f09565b61133e565b3480156106c457600080fd5b506102a06106d3366004612066565b611378565b3480156106e457600080fd5b5061038560095481565b3480156106fa57600080fd5b50610385600b5481565b34801561071057600080fd5b506102c06114e1565b34801561072557600080fd5b50610276610734366004611e9a565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561076e57600080fd5b506102c061077d3660046120b9565b611528565b34801561078e57600080fd5b506102c061079d366004611e7f565b611565565b60006001600160e01b031982166380ac58cd60e01b14806107d357506001600160e01b03198216635b5e139f60e01b145b806107ee57506001600160e01b0319821663780e9d6360e01b145b8061080957506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461081e906122d3565b80601f016020809104026020016040519081016040528092919081815260200182805461084a906122d3565b80156108975780601f1061086c57610100808354040283529160200191610897565b820191906000526020600020905b81548152906001019060200180831161087a57829003601f168201915b5050505050905090565b600c54610100900460ff16156108f05760405162461bcd60e51b815260206004820152600f60248201526e7475726e206f6e206d696e74696e6760881b60448201526064015b60405180910390fd5b600081116109105760405162461bcd60e51b81526004016108e7906121bd565b6009546008546109209190612290565b8161092a60005490565b6109349190612245565b11156109825760405162461bcd60e51b815260206004820152601b60248201527f616c6c20746f6b656e732068617665206265656e206d696e746564000000000060448201526064016108e7565b3481600a546109919190612271565b146109de5760405162461bcd60e51b815260206004820152601d60248201527f53656e742045746865722056616c756520497320496e636f727265637400000060448201526064016108e7565b6109e833826115fd565b50565b60006109f8826000541190565b610a15576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60108054610a3e906122d3565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6a906122d3565b8015610ab75780601f10610a8c57610100808354040283529160200191610ab7565b820191906000526020600020905b815481529060010190602001808311610a9a57829003601f168201915b505050505081565b6000610aca82610e3d565b9050806001600160a01b0316836001600160a01b03161415610aff5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610b1f5750610b1d8133610734565b155b15610b3d576040516367d9dca160e11b815260040160405180910390fd5b610b48838383611617565b505050565b600d8054610a3e906122d3565b610b48838383611673565b6007546001600160a01b03163314610b8f5760405162461bcd60e51b81526004016108e790612210565b600e55565b6000610b9f83610e4f565b8210610bbe576040516306ed618760e11b815260040160405180910390fd5b600080549080805b83811015610c57576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610c1957805192505b876001600160a01b0316836001600160a01b03161415610c4e5786841415610c475750935061080992505050565b6001909301925b50600101610bc6565b50610c6061233d565b50505092915050565b6007546001600160a01b03163314610c935760405162461bcd60e51b81526004016108e790612210565b600c805460ff19811660ff90911615179055565b6007546001600160a01b03163314610cd15760405162461bcd60e51b81526004016108e790612210565b6000610ce56007546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610d2f576040519150601f19603f3d011682016040523d82523d6000602084013e610d34565b606091505b50509050806109e857600080fd5b6007546001600160a01b03163314610d6c5760405162461bcd60e51b81526004016108e790612210565b600854811115610db55760405162461bcd60e51b8152602060048201526014602482015273746865207175616e74697479206578636565647360601b60448201526064016108e7565b600955565b610b488383836040518060200160405280600081525061133e565b600080548210610df8576040516329c8c00760e21b815260040160405180910390fd5b5090565b6007546001600160a01b03163314610e265760405162461bcd60e51b81526004016108e790612210565b8051610e3990600d906020840190611d5d565b5050565b6000610e4882611892565b5192915050565b60006001600160a01b038216610e78576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610ec75760405162461bcd60e51b81526004016108e790612210565b610ed16000611927565b565b6007546001600160a01b03163314610efd5760405162461bcd60e51b81526004016108e790612210565b600954811115610f5b5760405162461bcd60e51b815260206004820152602360248201527f416c6c207265736572766520746f6b656e7320686176652062656e65206d696e6044820152621d195960ea1b60648201526084016108e7565b8060096000828254610f6d9190612290565b909155506109e8905033826115fd565b6007546001600160a01b03163314610fa75760405162461bcd60e51b81526004016108e790612210565b600a55565b60606002805461081e906122d3565b3360009081526012602052604090205460ff1661102c57604080518082018252338082526000602080840182815292825260118152848220935184546001600160a01b0319166001600160a01b039091161784559151600193840155601290915291909120805460ff191690911790555b600c5460ff16156110715760405162461bcd60e51b815260206004820152600f60248201526e7475726e206f6e206d696e74696e6760881b60448201526064016108e7565b600081116110915760405162461bcd60e51b81526004016108e7906121bd565b600b54336000908152601160205260409020600101546110b2908390612245565b11156111105760405162461bcd60e51b815260206004820152602760248201527f5175616e74697479204d757374204265204c6573736572205468616e204d617860448201526620537570706c7960c81b60648201526084016108e7565b6009546008546111209190612290565b8161112a60005490565b6111349190612245565b11156111825760405162461bcd60e51b815260206004820152601b60248201527f616c6c20746f6b656e732068617665206265656e206d696e746564000000000060448201526064016108e7565b6040516bffffffffffffffffffffffff193360601b1660208201526000906034016040516020818303038152906040528051906020012090506111fc84848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600e549150849050611979565b6112385760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b210283937b7b360991b60448201526064016108e7565b61124233836115fd565b3360009081526011602052604081206001018054849290611264908490612245565b909155505050505050565b6001600160a01b0382163314156112995760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6007546001600160a01b0316331461132f5760405162461bcd60e51b81526004016108e790612210565b600f805460ff19166001179055565b611349848484611673565b6113558484848461198f565b611372576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060611385826000541190565b6113e95760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108e7565b600f5460ff166114855760108054611400906122d3565b80601f016020809104026020016040519081016040528092919081815260200182805461142c906122d3565b80156114795780601f1061144e57610100808354040283529160200191611479565b820191906000526020600020905b81548152906001019060200180831161145c57829003601f168201915b50505050509050919050565b600061148f611a9e565b905060008151116114af57604051806020016040528060008152506114da565b806114b984611aad565b6040516020016114ca92919061212e565b6040516020818303038152906040525b9392505050565b6007546001600160a01b0316331461150b5760405162461bcd60e51b81526004016108e790612210565b600c805461ff001981166101009182900460ff1615909102179055565b6007546001600160a01b031633146115525760405162461bcd60e51b81526004016108e790612210565b8051610e39906010906020840190611d5d565b6007546001600160a01b0316331461158f5760405162461bcd60e51b81526004016108e790612210565b6001600160a01b0381166115f45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108e7565b6109e881611927565b610e39828260405180602001604052806000815250611bab565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061167e82611892565b80519091506000906001600160a01b0316336001600160a01b031614806116b55750336116aa846109eb565b6001600160a01b0316145b806116c7575081516116c79033610734565b9050806116e757604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b03161461171c5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661174357604051633a954ecd60e21b815260040160405180910390fd5b6117536000848460000151611617565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff1602179055908601808352912054909116611848576117fb816000541190565b15611848578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051808201909152600080825260208201526118b1826000541190565b6118ce57604051636f96cda160e11b815260040160405180910390fd5b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561191d579392505050565b50600019016118d0565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826119868584611bb8565b14949350505050565b60006001600160a01b0384163b15611a9257604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906119d390339089908890889060040161216d565b602060405180830381600087803b1580156119ed57600080fd5b505af1925050508015611a1d575060408051601f3d908101601f19168201909252611a1a9181019061209c565b60015b611a78573d808015611a4b576040519150601f19603f3d011682016040523d82523d6000602084013e611a50565b606091505b508051611a70576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a96565b5060015b949350505050565b6060600d805461081e906122d3565b606081611ad15750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611afb5780611ae58161230e565b9150611af49050600a8361225d565b9150611ad5565b60008167ffffffffffffffff811115611b1657611b16612395565b6040519080825280601f01601f191660200182016040528015611b40576020820181803683370190505b5090505b8415611a9657611b55600183612290565b9150611b62600a86612329565b611b6d906030612245565b60f81b818381518110611b8257611b8261237f565b60200101906001600160f81b031916908160001a905350611ba4600a8661225d565b9450611b44565b610b488383836001611c2c565b600081815b8451811015611c24576000858281518110611bda57611bda61237f565b60200260200101519050808311611c005760008381526020829052604090209250611c11565b600081815260208490526040902092505b5080611c1c8161230e565b915050611bbd565b509392505050565b6000546001600160a01b038516611c5557604051622e076360e81b815260040160405180910390fd5b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b85811015611d545760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4838015611d2a5750611d28600088848861198f565b155b15611d48576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101611cd3565b5060005561188b565b828054611d69906122d3565b90600052602060002090601f016020900481019282611d8b5760008555611dd1565b82601f10611da457805160ff1916838001178555611dd1565b82800160010185558215611dd1579182015b82811115611dd1578251825591602001919060010190611db6565b50610df89291505b80821115610df85760008155600101611dd9565b600067ffffffffffffffff80841115611e0857611e08612395565b604051601f8501601f19908116603f01168101908282118183101715611e3057611e30612395565b81604052809350858152868686011115611e4957600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611e7a57600080fd5b919050565b600060208284031215611e9157600080fd5b6114da82611e63565b60008060408385031215611ead57600080fd5b611eb683611e63565b9150611ec460208401611e63565b90509250929050565b600080600060608486031215611ee257600080fd5b611eeb84611e63565b9250611ef960208501611e63565b9150604084013590509250925092565b60008060008060808587031215611f1f57600080fd5b611f2885611e63565b9350611f3660208601611e63565b925060408501359150606085013567ffffffffffffffff811115611f5957600080fd5b8501601f81018713611f6a57600080fd5b611f7987823560208401611ded565b91505092959194509250565b60008060408385031215611f9857600080fd5b611fa183611e63565b915060208301358015158114611fb657600080fd5b809150509250929050565b60008060408385031215611fd457600080fd5b611fdd83611e63565b946020939093013593505050565b60008060006040848603121561200057600080fd5b833567ffffffffffffffff8082111561201857600080fd5b818601915086601f83011261202c57600080fd5b81358181111561203b57600080fd5b8760208260051b850101111561205057600080fd5b6020928301989097509590910135949350505050565b60006020828403121561207857600080fd5b5035919050565b60006020828403121561209157600080fd5b81356114da816123ab565b6000602082840312156120ae57600080fd5b81516114da816123ab565b6000602082840312156120cb57600080fd5b813567ffffffffffffffff8111156120e257600080fd5b8201601f810184136120f357600080fd5b611a9684823560208401611ded565b6000815180845261211a8160208601602086016122a7565b601f01601f19169290920160200192915050565b600083516121408184602088016122a7565b8351908301906121548183602088016122a7565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906121a090830184612102565b9695505050505050565b6020815260006114da6020830184612102565b60208082526033908201527f4e756d626572204f6620546f6b656e732043616e204e6f74204265204c6573736040820152720205468616e204f7220457175616c20546f203606c1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000821982111561225857612258612353565b500190565b60008261226c5761226c612369565b500490565b600081600019048311821515161561228b5761228b612353565b500290565b6000828210156122a2576122a2612353565b500390565b60005b838110156122c25781810151838201526020016122aa565b838111156113725750506000910152565b600181811c908216806122e757607f821691505b6020821081141561230857634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561232257612322612353565b5060010190565b60008261233857612338612369565b500690565b634e487b7160e01b600052600160045260246000fd5b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146109e857600080fdfea264697066735822122092484d4b7dbd319c35e71809327e1ca36fc0d87a0ddc80d3ac4c1a03bebd02f364736f6c63430008070033db8ddc8d941b6e5a7ad0ddf824d26e0215ee14307c8a6c92bab7c5f49de86b080000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000004f68747470733a2f2f6d6173682e6d7970696e6174612e636c6f75642f697066732f516d516746315152516f4e39534831524c744d44485150526842514c71433957633155687345626b6b396d624d440000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102515760003560e01c80636352211e11610139578063a035b1fe116100b6578063cd3293de1161007a578063cd3293de146106d8578063cfc08dfb146106ee578063e1d4478214610704578063e985e9c514610719578063f2c4ce1e14610762578063f2fde38b1461078257600080fd5b8063a035b1fe1461064d578063a22cb46514610663578063a475b5dd14610683578063b88d4fde14610698578063c87b56dd146106b857600080fd5b80638da5cb5b116100fd5780638da5cb5b146105c0578063906fe543146105de57806391b7f5ed146105f857806395d89b4114610618578063976d700f1461062d57600080fd5b80636352211e146104ec57806370a082311461050c578063715018a61461052c5780637d5cb4e5146105415780638164669e1461056157600080fd5b806323b872dd116101d25780634256dbe3116101965780634256dbe31461043c57806342842e0e1461045c5780634b6406d11461047c5780634f6ccce71461049257806351830227146104b257806355f804b3146104cc57600080fd5b806323b872dd146103b25780632d7eae66146103d25780632f745c59146103f25780633070179b146104125780633ccfd60b1461042757600080fd5b8063095ea7b311610219578063095ea7b31461030f57806311e0f0631461032f57806316f8a0d11461034457806318160ddd146103745780631b09299c1461039357600080fd5b806301ffc9a71461025657806306fdde031461028b57806307883703146102ad578063081812fc146102c2578063081c8c44146102fa575b600080fd5b34801561026257600080fd5b5061027661027136600461207f565b6107a2565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102a061080f565b60405161028291906121aa565b6102c06102bb366004612066565b6108a1565b005b3480156102ce57600080fd5b506102e26102dd366004612066565b6109eb565b6040516001600160a01b039091168152602001610282565b34801561030657600080fd5b506102a0610a31565b34801561031b57600080fd5b506102c061032a366004611fc1565b610abf565b34801561033b57600080fd5b506102a0610b4d565b34801561035057600080fd5b5061027661035f366004611e7f565b60126020526000908152604090205460ff1681565b34801561038057600080fd5b506000545b604051908152602001610282565b34801561039f57600080fd5b50600c5461027690610100900460ff1681565b3480156103be57600080fd5b506102c06103cd366004611ecd565b610b5a565b3480156103de57600080fd5b506102c06103ed366004612066565b610b65565b3480156103fe57600080fd5b5061038561040d366004611fc1565b610b94565b34801561041e57600080fd5b506102c0610c69565b34801561043357600080fd5b506102c0610ca7565b34801561044857600080fd5b506102c0610457366004612066565b610d42565b34801561046857600080fd5b506102c0610477366004611ecd565b610dba565b34801561048857600080fd5b5061038560085481565b34801561049e57600080fd5b506103856104ad366004612066565b610dd5565b3480156104be57600080fd5b50600f546102769060ff1681565b3480156104d857600080fd5b506102c06104e73660046120b9565b610dfc565b3480156104f857600080fd5b506102e2610507366004612066565b610e3d565b34801561051857600080fd5b50610385610527366004611e7f565b610e4f565b34801561053857600080fd5b506102c0610e9d565b34801561054d57600080fd5b506102c061055c366004612066565b610ed3565b34801561056d57600080fd5b506105a161057c366004611e7f565b601160205260009081526040902080546001909101546001600160a01b039091169082565b604080516001600160a01b039093168352602083019190915201610282565b3480156105cc57600080fd5b506007546001600160a01b03166102e2565b3480156105ea57600080fd5b50600c546102769060ff1681565b34801561060457600080fd5b506102c0610613366004612066565b610f7d565b34801561062457600080fd5b506102a0610fac565b34801561063957600080fd5b506102c0610648366004611feb565b610fbb565b34801561065957600080fd5b50610385600a5481565b34801561066f57600080fd5b506102c061067e366004611f85565b61126f565b34801561068f57600080fd5b506102c0611305565b3480156106a457600080fd5b506102c06106b3366004611f09565b61133e565b3480156106c457600080fd5b506102a06106d3366004612066565b611378565b3480156106e457600080fd5b5061038560095481565b3480156106fa57600080fd5b50610385600b5481565b34801561071057600080fd5b506102c06114e1565b34801561072557600080fd5b50610276610734366004611e9a565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561076e57600080fd5b506102c061077d3660046120b9565b611528565b34801561078e57600080fd5b506102c061079d366004611e7f565b611565565b60006001600160e01b031982166380ac58cd60e01b14806107d357506001600160e01b03198216635b5e139f60e01b145b806107ee57506001600160e01b0319821663780e9d6360e01b145b8061080957506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461081e906122d3565b80601f016020809104026020016040519081016040528092919081815260200182805461084a906122d3565b80156108975780601f1061086c57610100808354040283529160200191610897565b820191906000526020600020905b81548152906001019060200180831161087a57829003601f168201915b5050505050905090565b600c54610100900460ff16156108f05760405162461bcd60e51b815260206004820152600f60248201526e7475726e206f6e206d696e74696e6760881b60448201526064015b60405180910390fd5b600081116109105760405162461bcd60e51b81526004016108e7906121bd565b6009546008546109209190612290565b8161092a60005490565b6109349190612245565b11156109825760405162461bcd60e51b815260206004820152601b60248201527f616c6c20746f6b656e732068617665206265656e206d696e746564000000000060448201526064016108e7565b3481600a546109919190612271565b146109de5760405162461bcd60e51b815260206004820152601d60248201527f53656e742045746865722056616c756520497320496e636f727265637400000060448201526064016108e7565b6109e833826115fd565b50565b60006109f8826000541190565b610a15576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60108054610a3e906122d3565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6a906122d3565b8015610ab75780601f10610a8c57610100808354040283529160200191610ab7565b820191906000526020600020905b815481529060010190602001808311610a9a57829003601f168201915b505050505081565b6000610aca82610e3d565b9050806001600160a01b0316836001600160a01b03161415610aff5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610b1f5750610b1d8133610734565b155b15610b3d576040516367d9dca160e11b815260040160405180910390fd5b610b48838383611617565b505050565b600d8054610a3e906122d3565b610b48838383611673565b6007546001600160a01b03163314610b8f5760405162461bcd60e51b81526004016108e790612210565b600e55565b6000610b9f83610e4f565b8210610bbe576040516306ed618760e11b815260040160405180910390fd5b600080549080805b83811015610c57576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610c1957805192505b876001600160a01b0316836001600160a01b03161415610c4e5786841415610c475750935061080992505050565b6001909301925b50600101610bc6565b50610c6061233d565b50505092915050565b6007546001600160a01b03163314610c935760405162461bcd60e51b81526004016108e790612210565b600c805460ff19811660ff90911615179055565b6007546001600160a01b03163314610cd15760405162461bcd60e51b81526004016108e790612210565b6000610ce56007546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610d2f576040519150601f19603f3d011682016040523d82523d6000602084013e610d34565b606091505b50509050806109e857600080fd5b6007546001600160a01b03163314610d6c5760405162461bcd60e51b81526004016108e790612210565b600854811115610db55760405162461bcd60e51b8152602060048201526014602482015273746865207175616e74697479206578636565647360601b60448201526064016108e7565b600955565b610b488383836040518060200160405280600081525061133e565b600080548210610df8576040516329c8c00760e21b815260040160405180910390fd5b5090565b6007546001600160a01b03163314610e265760405162461bcd60e51b81526004016108e790612210565b8051610e3990600d906020840190611d5d565b5050565b6000610e4882611892565b5192915050565b60006001600160a01b038216610e78576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610ec75760405162461bcd60e51b81526004016108e790612210565b610ed16000611927565b565b6007546001600160a01b03163314610efd5760405162461bcd60e51b81526004016108e790612210565b600954811115610f5b5760405162461bcd60e51b815260206004820152602360248201527f416c6c207265736572766520746f6b656e7320686176652062656e65206d696e6044820152621d195960ea1b60648201526084016108e7565b8060096000828254610f6d9190612290565b909155506109e8905033826115fd565b6007546001600160a01b03163314610fa75760405162461bcd60e51b81526004016108e790612210565b600a55565b60606002805461081e906122d3565b3360009081526012602052604090205460ff1661102c57604080518082018252338082526000602080840182815292825260118152848220935184546001600160a01b0319166001600160a01b039091161784559151600193840155601290915291909120805460ff191690911790555b600c5460ff16156110715760405162461bcd60e51b815260206004820152600f60248201526e7475726e206f6e206d696e74696e6760881b60448201526064016108e7565b600081116110915760405162461bcd60e51b81526004016108e7906121bd565b600b54336000908152601160205260409020600101546110b2908390612245565b11156111105760405162461bcd60e51b815260206004820152602760248201527f5175616e74697479204d757374204265204c6573736572205468616e204d617860448201526620537570706c7960c81b60648201526084016108e7565b6009546008546111209190612290565b8161112a60005490565b6111349190612245565b11156111825760405162461bcd60e51b815260206004820152601b60248201527f616c6c20746f6b656e732068617665206265656e206d696e746564000000000060448201526064016108e7565b6040516bffffffffffffffffffffffff193360601b1660208201526000906034016040516020818303038152906040528051906020012090506111fc84848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600e549150849050611979565b6112385760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b210283937b7b360991b60448201526064016108e7565b61124233836115fd565b3360009081526011602052604081206001018054849290611264908490612245565b909155505050505050565b6001600160a01b0382163314156112995760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6007546001600160a01b0316331461132f5760405162461bcd60e51b81526004016108e790612210565b600f805460ff19166001179055565b611349848484611673565b6113558484848461198f565b611372576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060611385826000541190565b6113e95760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108e7565b600f5460ff166114855760108054611400906122d3565b80601f016020809104026020016040519081016040528092919081815260200182805461142c906122d3565b80156114795780601f1061144e57610100808354040283529160200191611479565b820191906000526020600020905b81548152906001019060200180831161145c57829003601f168201915b50505050509050919050565b600061148f611a9e565b905060008151116114af57604051806020016040528060008152506114da565b806114b984611aad565b6040516020016114ca92919061212e565b6040516020818303038152906040525b9392505050565b6007546001600160a01b0316331461150b5760405162461bcd60e51b81526004016108e790612210565b600c805461ff001981166101009182900460ff1615909102179055565b6007546001600160a01b031633146115525760405162461bcd60e51b81526004016108e790612210565b8051610e39906010906020840190611d5d565b6007546001600160a01b0316331461158f5760405162461bcd60e51b81526004016108e790612210565b6001600160a01b0381166115f45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108e7565b6109e881611927565b610e39828260405180602001604052806000815250611bab565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061167e82611892565b80519091506000906001600160a01b0316336001600160a01b031614806116b55750336116aa846109eb565b6001600160a01b0316145b806116c7575081516116c79033610734565b9050806116e757604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b03161461171c5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661174357604051633a954ecd60e21b815260040160405180910390fd5b6117536000848460000151611617565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff1602179055908601808352912054909116611848576117fb816000541190565b15611848578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051808201909152600080825260208201526118b1826000541190565b6118ce57604051636f96cda160e11b815260040160405180910390fd5b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561191d579392505050565b50600019016118d0565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826119868584611bb8565b14949350505050565b60006001600160a01b0384163b15611a9257604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906119d390339089908890889060040161216d565b602060405180830381600087803b1580156119ed57600080fd5b505af1925050508015611a1d575060408051601f3d908101601f19168201909252611a1a9181019061209c565b60015b611a78573d808015611a4b576040519150601f19603f3d011682016040523d82523d6000602084013e611a50565b606091505b508051611a70576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a96565b5060015b949350505050565b6060600d805461081e906122d3565b606081611ad15750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611afb5780611ae58161230e565b9150611af49050600a8361225d565b9150611ad5565b60008167ffffffffffffffff811115611b1657611b16612395565b6040519080825280601f01601f191660200182016040528015611b40576020820181803683370190505b5090505b8415611a9657611b55600183612290565b9150611b62600a86612329565b611b6d906030612245565b60f81b818381518110611b8257611b8261237f565b60200101906001600160f81b031916908160001a905350611ba4600a8661225d565b9450611b44565b610b488383836001611c2c565b600081815b8451811015611c24576000858281518110611bda57611bda61237f565b60200260200101519050808311611c005760008381526020829052604090209250611c11565b600081815260208490526040902092505b5080611c1c8161230e565b915050611bbd565b509392505050565b6000546001600160a01b038516611c5557604051622e076360e81b815260040160405180910390fd5b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b85811015611d545760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4838015611d2a5750611d28600088848861198f565b155b15611d48576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101611cd3565b5060005561188b565b828054611d69906122d3565b90600052602060002090601f016020900481019282611d8b5760008555611dd1565b82601f10611da457805160ff1916838001178555611dd1565b82800160010185558215611dd1579182015b82811115611dd1578251825591602001919060010190611db6565b50610df89291505b80821115610df85760008155600101611dd9565b600067ffffffffffffffff80841115611e0857611e08612395565b604051601f8501601f19908116603f01168101908282118183101715611e3057611e30612395565b81604052809350858152868686011115611e4957600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611e7a57600080fd5b919050565b600060208284031215611e9157600080fd5b6114da82611e63565b60008060408385031215611ead57600080fd5b611eb683611e63565b9150611ec460208401611e63565b90509250929050565b600080600060608486031215611ee257600080fd5b611eeb84611e63565b9250611ef960208501611e63565b9150604084013590509250925092565b60008060008060808587031215611f1f57600080fd5b611f2885611e63565b9350611f3660208601611e63565b925060408501359150606085013567ffffffffffffffff811115611f5957600080fd5b8501601f81018713611f6a57600080fd5b611f7987823560208401611ded565b91505092959194509250565b60008060408385031215611f9857600080fd5b611fa183611e63565b915060208301358015158114611fb657600080fd5b809150509250929050565b60008060408385031215611fd457600080fd5b611fdd83611e63565b946020939093013593505050565b60008060006040848603121561200057600080fd5b833567ffffffffffffffff8082111561201857600080fd5b818601915086601f83011261202c57600080fd5b81358181111561203b57600080fd5b8760208260051b850101111561205057600080fd5b6020928301989097509590910135949350505050565b60006020828403121561207857600080fd5b5035919050565b60006020828403121561209157600080fd5b81356114da816123ab565b6000602082840312156120ae57600080fd5b81516114da816123ab565b6000602082840312156120cb57600080fd5b813567ffffffffffffffff8111156120e257600080fd5b8201601f810184136120f357600080fd5b611a9684823560208401611ded565b6000815180845261211a8160208601602086016122a7565b601f01601f19169290920160200192915050565b600083516121408184602088016122a7565b8351908301906121548183602088016122a7565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906121a090830184612102565b9695505050505050565b6020815260006114da6020830184612102565b60208082526033908201527f4e756d626572204f6620546f6b656e732043616e204e6f74204265204c6573736040820152720205468616e204f7220457175616c20546f203606c1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000821982111561225857612258612353565b500190565b60008261226c5761226c612369565b500490565b600081600019048311821515161561228b5761228b612353565b500290565b6000828210156122a2576122a2612353565b500390565b60005b838110156122c25781810151838201526020016122aa565b838111156113725750506000910152565b600181811c908216806122e757607f821691505b6020821081141561230857634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561232257612322612353565b5060010190565b60008261233857612338612369565b500690565b634e487b7160e01b600052600160045260246000fd5b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146109e857600080fdfea264697066735822122092484d4b7dbd319c35e71809327e1ca36fc0d87a0ddc80d3ac4c1a03bebd02f364736f6c63430008070033

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

db8ddc8d941b6e5a7ad0ddf824d26e0215ee14307c8a6c92bab7c5f49de86b080000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000004f68747470733a2f2f6d6173682e6d7970696e6174612e636c6f75642f697066732f516d516746315152516f4e39534831524c744d44485150526842514c71433957633155687345626b6b396d624d440000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : finalRootHash (bytes32): 0xdb8ddc8d941b6e5a7ad0ddf824d26e0215ee14307c8a6c92bab7c5f49de86b08
Arg [1] : _NotRevealedUri (string): https://mash.mypinata.cloud/ipfs/QmQgF1QRQoN9SH1RLtMDHQPRhBQLqC9Wc1UhsEbkk9mbMD

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : db8ddc8d941b6e5a7ad0ddf824d26e0215ee14307c8a6c92bab7c5f49de86b08
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [2] : 000000000000000000000000000000000000000000000000000000000000004f
Arg [3] : 68747470733a2f2f6d6173682e6d7970696e6174612e636c6f75642f69706673
Arg [4] : 2f516d516746315152516f4e39534831524c744d44485150526842514c714339
Arg [5] : 57633155687345626b6b396d624d440000000000000000000000000000000000


Deployed Bytecode Sourcemap

34874:5107:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17747:422;;;;;;;;;;-1:-1:-1;17747:422:0;;;;;:::i;:::-;;:::i;:::-;;;7415:14:1;;7408:22;7390:41;;7378:2;7363:18;17747:422:0;;;;;;;;19645:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;38488:561::-;;;;;;:::i;:::-;;:::i;:::-;;21236:245;;;;;;;;;;-1:-1:-1;21236:245:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6434:32:1;;;6416:51;;6404:2;6389:18;21236:245:0;6270:203:1;35548:28:0;;;;;;;;;;;;;:::i;20812:358::-;;;;;;;;;;-1:-1:-1;20812:358:0;;;;;:::i;:::-;;:::i;35419:23::-;;;;;;;;;;;;;:::i;35736:49::-;;;;;;;;;;-1:-1:-1;35736:49:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;15930:101;;;;;;;;;;-1:-1:-1;15983:7:0;16010:13;15930:101;;;11977:25:1;;;11965:2;11950:18;15930:101:0;11831:177:1;35379:33:0;;;;;;;;;;-1:-1:-1;35379:33:0;;;;;;;;;;;22207:170;;;;;;;;;;-1:-1:-1;22207:170:0;;;;;:::i;:::-;;:::i;36009:108::-;;;;;;;;;;-1:-1:-1;36009:108:0;;;;;:::i;:::-;;:::i;16625:1050::-;;;;;;;;;;-1:-1:-1;16625:1050:0;;;;;:::i;:::-;;:::i;35794:100::-;;;;;;;;;;;;;:::i;39831:147::-;;;;;;;;;;;;;:::i;36357:157::-;;;;;;;;;;-1:-1:-1;36357:157:0;;;;;:::i;:::-;;:::i;22448:185::-;;;;;;;;;;-1:-1:-1;22448:185:0;;;;;:::i;:::-;;:::i;35181:31::-;;;;;;;;;;;;;;;;16108:217;;;;;;;;;;-1:-1:-1;16108:217:0;;;;;:::i;:::-;;:::i;35513:28::-;;;;;;;;;;-1:-1:-1;35513:28:0;;;;;;;;36125:106;;;;;;;;;;-1:-1:-1;36125:106:0;;;;;:::i;:::-;;:::i;19454:124::-;;;;;;;;;;-1:-1:-1;19454:124:0;;;;;:::i;:::-;;:::i;18233:206::-;;;;;;;;;;-1:-1:-1;18233:206:0;;;;;:::i;:::-;;:::i;32130:103::-;;;;;;;;;;;;;:::i;36933:221::-;;;;;;;;;;-1:-1:-1;36933:221:0;;;;;:::i;:::-;;:::i;35676:53::-;;;;;;;;;;-1:-1:-1;35676:53:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35676:53:0;;;;;;;;;;-1:-1:-1;;;;;7163:32:1;;;7145:51;;7227:2;7212:18;;7205:34;;;;7118:18;35676:53:0;6971:274:1;31479:87:0;;;;;;;;;;-1:-1:-1;31552:6:0;;-1:-1:-1;;;;;31552:6:0;31479:87;;35338:34;;;;;;;;;;-1:-1:-1;35338:34:0;;;;;;;;36522:88;;;;;;;;;;-1:-1:-1;36522:88:0;;;;;:::i;:::-;;:::i;19814:104::-;;;;;;;;;;;;;:::i;37162:1318::-;;;;;;;;;;-1:-1:-1;37162:1318:0;;;;;:::i;:::-;;:::i;35254:34::-;;;;;;;;;;;;;;;;21553:302;;;;;;;;;;-1:-1:-1;21553:302:0;;;;;:::i;:::-;;:::i;36856:69::-;;;;;;;;;;;;;:::i;22704:321::-;;;;;;;;;;-1:-1:-1;22704:321:0;;;;;:::i;:::-;;:::i;39104:719::-;;;;;;;;;;-1:-1:-1;39104:719:0;;;;;:::i;:::-;;:::i;35219:28::-;;;;;;;;;;;;;;;;35295:34;;;;;;;;;;;;;;;;35902:99;;;;;;;;;;;;;:::i;21926:214::-;;;;;;;;;;-1:-1:-1;21926:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;22097:25:0;;;22068:4;22097:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;21926:214;36657:126;;;;;;;;;;-1:-1:-1;36657:126:0;;;;;:::i;:::-;;:::i;32388:238::-;;;;;;;;;;-1:-1:-1;32388:238:0;;;;;:::i;:::-;;:::i;17747:422::-;17894:4;-1:-1:-1;;;;;;17936:40:0;;-1:-1:-1;;;17936:40:0;;:105;;-1:-1:-1;;;;;;;17993:48:0;;-1:-1:-1;;;17993:48:0;17936:105;:172;;;-1:-1:-1;;;;;;;18058:50:0;;-1:-1:-1;;;18058:50:0;17936:172;:225;;;-1:-1:-1;;;;;;;;;;6408:40:0;;;18125:36;17916:245;17747:422;-1:-1:-1;;17747:422:0:o;19645:100::-;19699:13;19732:5;19725:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19645:100;:::o;38488:561::-;38558:14;;;;;;;:23;38550:51;;;;-1:-1:-1;;;38550:51:0;;10633:2:1;38550:51:0;;;10615:21:1;10672:2;10652:18;;;10645:30;-1:-1:-1;;;10691:18:1;;;10684:45;10746:18;;38550:51:0;;;;;;;;;38649:1;38634:12;:16;38612:117;;;;-1:-1:-1;;;38612:117:0;;;;;;;:::i;:::-;38806:7;;38794:9;;:19;;;;:::i;:::-;38778:12;38762:13;15983:7;16010:13;;15930:101;38762:13;:28;;;;:::i;:::-;:51;;38740:128;;;;-1:-1:-1;;;38740:128:0;;10977:2:1;38740:128:0;;;10959:21:1;11016:2;10996:18;;;10989:30;11055:29;11035:18;;;11028:57;11102:18;;38740:128:0;10775:351:1;38740:128:0;38927:9;38911:12;38903:5;;:20;;;;:::i;:::-;:33;38881:112;;;;-1:-1:-1;;;38881:112:0;;11675:2:1;38881:112:0;;;11657:21:1;11714:2;11694:18;;;11687:30;11753:31;11733:18;;;11726:59;11802:18;;38881:112:0;11473:353:1;38881:112:0;39006:35;39016:10;39028:12;39006:9;:35::i;:::-;38488:561;:::o;21236:245::-;21340:7;21370:16;21378:7;23337:4;23371:13;-1:-1:-1;23361:23:0;23280:112;21370:16;21365:64;;21395:34;;-1:-1:-1;;;21395:34:0;;;;;;;;;;;21365:64;-1:-1:-1;21449:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;21449:24:0;;21236:245::o;35548:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;20812:358::-;20885:13;20901:24;20917:7;20901:15;:24::i;:::-;20885:40;;20946:5;-1:-1:-1;;;;;20940:11:0;:2;-1:-1:-1;;;;;20940:11:0;;20936:48;;;20960:24;;-1:-1:-1;;;20960:24:0;;;;;;;;;;;20936:48;1815:10;-1:-1:-1;;;;;21001:21:0;;;;;;:63;;-1:-1:-1;21027:37:0;21044:5;1815:10;21926:214;:::i;21027:37::-;21026:38;21001:63;20997:124;;;21086:35;;-1:-1:-1;;;21086:35:0;;;;;;;;;;;20997:124;21134:28;21143:2;21147:7;21156:5;21134:8;:28::i;:::-;20874:296;20812:358;;:::o;35419:23::-;;;;;;;:::i;22207:170::-;22341:28;22351:4;22357:2;22361:7;22341:9;:28::i;36009:108::-;31552:6;;-1:-1:-1;;;;;31552:6:0;1815:10;31699:23;31691:68;;;;-1:-1:-1;;;31691:68:0;;;;;;;:::i;:::-;36083:8:::1;:26:::0;36009:108::o;16625:1050::-;16750:9;16790:16;16800:5;16790:9;:16::i;:::-;16781:5;:25;16777:61;;16815:23;;-1:-1:-1;;;16815:23:0;;;;;;;;;;;16777:61;16849:22;16010:13;;;16849:22;;17112:466;17132:14;17128:1;:18;17112:466;;;17172:31;17206:14;;;:11;:14;;;;;;;;;17172:48;;;;;;;;;-1:-1:-1;;;;;17172:48:0;;;;;-1:-1:-1;;;17172:48:0;;;;;;;;;;;;17243:28;17239:111;;17316:14;;;-1:-1:-1;17239:111:0;17393:5;-1:-1:-1;;;;;17372:26:0;:17;-1:-1:-1;;;;;17372:26:0;;17368:195;;;17442:5;17427:11;:20;17423:85;;;-1:-1:-1;17483:1:0;-1:-1:-1;17476:8:0;;-1:-1:-1;;;17476:8:0;17423:85;17530:13;;;;;17368:195;-1:-1:-1;17148:3:0;;17112:466;;;-1:-1:-1;17654:13:0;;:::i;:::-;16766:909;;;16625:1050;;;;:::o;35794:100::-;31552:6;;-1:-1:-1;;;;;31552:6:0;1815:10;31699:23;31691:68;;;;-1:-1:-1;;;31691:68:0;;;;;;;:::i;:::-;35872:14:::1;::::0;;-1:-1:-1;;35854:32:0;::::1;35872:14;::::0;;::::1;35871:15;35854:32;::::0;;35794:100::o;39831:147::-;31552:6;;-1:-1:-1;;;;;31552:6:0;1815:10;31699:23;31691:68;;;;-1:-1:-1;;;31691:68:0;;;;;;;:::i;:::-;39880:7:::1;39901;31552:6:::0;;-1:-1:-1;;;;;31552:6:0;;31479:87;39901:7:::1;-1:-1:-1::0;;;;;39893:21:0::1;39922;39893:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39879:69;;;39967:2;39959:11;;;::::0;::::1;36357:157:::0;31552:6;;-1:-1:-1;;;;;31552:6:0;1815:10;31699:23;31691:68;;;;-1:-1:-1;;;31691:68:0;;;;;;;:::i;:::-;36443:9:::1;;36431:8;:21;;36423:54;;;::::0;-1:-1:-1;;;36423:54:0;;9103:2:1;36423:54:0::1;::::0;::::1;9085:21:1::0;9142:2;9122:18;;;9115:30;-1:-1:-1;;;9161:18:1;;;9154:50;9221:18;;36423:54:0::1;8901:344:1::0;36423:54:0::1;36488:7;:18:::0;36357:157::o;22448:185::-;22586:39;22603:4;22609:2;22613:7;22586:39;;;;;;;;;;;;:16;:39::i;16108:217::-;16211:7;16010:13;;16240:5;:22;16236:58;;16271:23;;-1:-1:-1;;;16271:23:0;;;;;;;;;;;16236:58;-1:-1:-1;16312:5:0;16108:217::o;36125:106::-;31552:6;;-1:-1:-1;;;;;31552:6:0;1815:10;31699:23;31691:68;;;;-1:-1:-1;;;31691:68:0;;;;;;;:::i;:::-;36200:23;;::::1;::::0;:9:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;:::-;;36125:106:::0;:::o;19454:124::-;19518:7;19545:20;19557:7;19545:11;:20::i;:::-;:25;;19454:124;-1:-1:-1;;19454:124:0:o;18233:206::-;18297:7;-1:-1:-1;;;;;18321:19:0;;18317:60;;18349:28;;-1:-1:-1;;;18349:28:0;;;;;;;;;;;18317:60;-1:-1:-1;;;;;;18403:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;18403:27:0;;18233:206::o;32130:103::-;31552:6;;-1:-1:-1;;;;;31552:6:0;1815:10;31699:23;31691:68;;;;-1:-1:-1;;;31691:68:0;;;;;;;:::i;:::-;32195:30:::1;32222:1;32195:18;:30::i;:::-;32130:103::o:0;36933:221::-;31552:6;;-1:-1:-1;;;;;31552:6:0;1815:10;31699:23;31691:68;;;;-1:-1:-1;;;31691:68:0;;;;;;;:::i;:::-;37027:7:::1;;37015:8;:19;;37007:67;;;::::0;-1:-1:-1;;;37007:67:0;;10229:2:1;37007:67:0::1;::::0;::::1;10211:21:1::0;10268:2;10248:18;;;10241:30;10307:34;10287:18;;;10280:62;-1:-1:-1;;;10358:18:1;;;10351:33;10401:19;;37007:67:0::1;10027:399:1::0;37007:67:0::1;37096:8;37085:7;;:19;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;37115:31:0::1;::::0;-1:-1:-1;37125:10:0::1;37137:8:::0;37115:9:::1;:31::i;36522:88::-:0;31552:6;;-1:-1:-1;;;;;31552:6:0;1815:10;31699:23;31691:68;;;;-1:-1:-1;;;31691:68:0;;;;;;;:::i;:::-;36586:5:::1;:16:::0;36522:88::o;19814:104::-;19870:13;19903:7;19896:14;;;;;:::i;37162:1318::-;37291:10;37273:29;;;;:17;:29;;;;;;;;37269:250;;37357:99;;;;;;;;37401:10;37357:99;;;-1:-1:-1;37357:99:0;;;;;;;37328:26;;;:14;:26;;;;;:128;;;;-1:-1:-1;;;;;;37328:128:0;-1:-1:-1;;;;;37328:128:0;;;;;;;;-1:-1:-1;37328:128:0;;;;37471:17;:29;;;;;;;:36;;-1:-1:-1;;37471:36:0;;;;;;37269:250;37537:14;;;;:23;37529:51;;;;-1:-1:-1;;;37529:51:0;;10633:2:1;37529:51:0;;;10615:21:1;10672:2;10652:18;;;10645:30;-1:-1:-1;;;10691:18:1;;;10684:45;10746:18;;37529:51:0;10431:339:1;37529:51:0;37628:1;37613:12;:16;37591:117;;;;-1:-1:-1;;;37591:117:0;;;;;;;:::i;:::-;37811:15;;37756:10;37741:26;;;;:14;:26;;;;;:34;;;:49;;37778:12;;37741:49;:::i;:::-;:85;;37719:174;;;;-1:-1:-1;;;37719:174:0;;8695:2:1;37719:174:0;;;8677:21:1;8734:2;8714:18;;;8707:30;8773:34;8753:18;;;8746:62;-1:-1:-1;;;8824:18:1;;;8817:37;8871:19;;37719:174:0;8493:403:1;37719:174:0;37970:7;;37958:9;;:19;;;;:::i;:::-;37942:12;37926:13;15983:7;16010:13;;15930:101;37926:13;:28;;;;:::i;:::-;:51;;37904:128;;;;-1:-1:-1;;;37904:128:0;;10977:2:1;37904:128:0;;;10959:21:1;11016:2;10996:18;;;10989:30;11055:29;11035:18;;;11028:57;11102:18;;37904:128:0;10775:351:1;37904:128:0;38068:28;;-1:-1:-1;;38085:10:0;5333:2:1;5329:15;5325:53;38068:28:0;;;5313:66:1;38043:12:0;;5395::1;;38068:28:0;;;;;;;;;;;;38058:39;;;;;;38043:54;;38130:48;38149:12;;38130:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;38163:8:0;;;-1:-1:-1;38173:4:0;;-1:-1:-1;38130:18:0;:48::i;:::-;38108:111;;;;-1:-1:-1;;;38108:111:0;;11333:2:1;38108:111:0;;;11315:21:1;11372:2;11352:18;;;11345:30;-1:-1:-1;;;11391:18:1;;;11384:43;11444:18;;38108:111:0;11131:337:1;38108:111:0;38376:35;38386:10;38398:12;38376:9;:35::i;:::-;38437:10;38422:26;;;;:14;:26;;;;;:34;;:50;;38460:12;;38422:26;:50;;38460:12;;38422:50;:::i;:::-;;;;-1:-1:-1;;;;;;37162:1318:0:o;21553:302::-;-1:-1:-1;;;;;21667:24:0;;1815:10;21667:24;21663:54;;;21700:17;;-1:-1:-1;;;21700:17:0;;;;;;;;;;;21663:54;1815:10;21730:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;21730:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;21730:53:0;;;;;;;;;;21799:48;;7390:41:1;;;21730:42:0;;1815:10;21799:48;;7363:18:1;21799:48:0;;;;;;;21553:302;;:::o;36856:69::-;31552:6;;-1:-1:-1;;;;;31552:6:0;1815:10;31699:23;31691:68;;;;-1:-1:-1;;;31691:68:0;;;;;;;:::i;:::-;36902:8:::1;:15:::0;;-1:-1:-1;;36902:15:0::1;36913:4;36902:15;::::0;;36856:69::o;22704:321::-;22863:28;22873:4;22879:2;22883:7;22863:9;:28::i;:::-;22907:48;22930:4;22936:2;22940:7;22949:5;22907:22;:48::i;:::-;22902:115;;22977:40;;-1:-1:-1;;;22977:40:0;;;;;;;;;;;22902:115;22704:321;;;;:::o;39104:719::-;39222:13;39275:16;39283:7;23337:4;23371:13;-1:-1:-1;23361:23:0;23280:112;39275:16;39253:113;;;;-1:-1:-1;;;39253:113:0;;9813:2:1;39253:113:0;;;9795:21:1;9852:2;9832:18;;;9825:30;9891:34;9871:18;;;9864:62;-1:-1:-1;;;9942:18:1;;;9935:45;9997:19;;39253:113:0;9611:411:1;39253:113:0;39383:8;;;;39379:71;;39424:14;39417:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39104:719;;;:::o;39379:71::-;39462:28;39493:10;:8;:10::i;:::-;39462:41;;39565:1;39540:14;39534:28;:32;:281;;;;;;;;;;;;;;;;;39658:14;39699:18;:7;:16;:18::i;:::-;39615:159;;;;;;;;;:::i;:::-;;;;;;;;;;;;;39534:281;39514:301;39104:719;-1:-1:-1;;;39104:719:0:o;35902:99::-;31552:6;;-1:-1:-1;;;;;31552:6:0;1815:10;31699:23;31691:68;;;;-1:-1:-1;;;31691:68:0;;;;;;;:::i;:::-;35979:14:::1;::::0;;-1:-1:-1;;35961:32:0;::::1;35979:14;::::0;;;::::1;;;35978:15;35961:32:::0;;::::1;;::::0;;35902:99::o;36657:126::-;31552:6;;-1:-1:-1;;;;;31552:6:0;1815:10;31699:23;31691:68;;;;-1:-1:-1;;;31691:68:0;;;;;;;:::i;:::-;36743:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;32388:238::-:0;31552:6;;-1:-1:-1;;;;;31552:6:0;1815:10;31699:23;31691:68;;;;-1:-1:-1;;;31691:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;32491:22:0;::::1;32469:110;;;::::0;-1:-1:-1;;;32469:110:0;;7868:2:1;32469:110:0::1;::::0;::::1;7850:21:1::0;7907:2;7887:18;;;7880:30;7946:34;7926:18;;;7919:62;-1:-1:-1;;;7997:18:1;;;7990:36;8043:19;;32469:110:0::1;7666:402:1::0;32469:110:0::1;32590:28;32609:8;32590:18;:28::i;23400:104::-:0;23469:27;23479:2;23483:8;23469:27;;;;;;;;;;;;:9;:27::i;28138:196::-;28253:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;28253:29:0;-1:-1:-1;;;;;28253:29:0;;;;;;;;;28298:28;;28253:24;;28298:28;;;;;;;28138:196;;;:::o;26029:1991::-;26144:35;26182:20;26194:7;26182:11;:20::i;:::-;26257:18;;26144:58;;-1:-1:-1;26215:22:0;;-1:-1:-1;;;;;26241:34:0;1815:10;-1:-1:-1;;;;;26241:34:0;;:87;;;-1:-1:-1;1815:10:0;26292:20;26304:7;26292:11;:20::i;:::-;-1:-1:-1;;;;;26292:36:0;;26241:87;:154;;;-1:-1:-1;26362:18:0;;26345:50;;1815:10;21926:214;:::i;26345:50::-;26215:181;;26414:17;26409:66;;26440:35;;-1:-1:-1;;;26440:35:0;;;;;;;;;;;26409:66;26512:4;-1:-1:-1;;;;;26490:26:0;:13;:18;;;-1:-1:-1;;;;;26490:26:0;;26486:67;;26525:28;;-1:-1:-1;;;26525:28:0;;;;;;;;;;;26486:67;-1:-1:-1;;;;;26568:16:0;;26564:52;;26593:23;;-1:-1:-1;;;26593:23:0;;;;;;;;;;;26564:52;26740:49;26757:1;26761:7;26770:13;:18;;;26740:8;:49::i;:::-;-1:-1:-1;;;;;27085:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;;;;;27085:31:0;;;-1:-1:-1;;;;;27085:31:0;;;-1:-1:-1;;27085:31:0;;;;;;;27131:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;27131:29:0;;;;;;;;;;;;;27177:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;27222:61:0;;;;-1:-1:-1;;;27267:15:0;27222:61;;;;;;27557:11;;;27587:24;;;;;:29;27557:11;;27587:29;27583:321;;27655:20;27663:11;23337:4;23371:13;-1:-1:-1;23361:23:0;23280:112;27655:20;27651:238;;;27732:18;;;27700:24;;;:11;:24;;;;;;;;:50;;27815:54;;;;27773:96;;-1:-1:-1;;;27773:96:0;-1:-1:-1;;;;;;27773:96:0;;;-1:-1:-1;;;;;27700:50:0;;;27773:96;;;;;;;27651:238;27060:855;27951:7;27947:2;-1:-1:-1;;;;;27932:27:0;27941:4;-1:-1:-1;;;;;27932:27:0;;;;;;;;;;;27970:42;26133:1887;;26029:1991;;;:::o;18856:536::-;-1:-1:-1;;;;;;;;;;;;;;;;;18988:16:0;18996:7;23337:4;23371:13;-1:-1:-1;23361:23:0;23280:112;18988:16;18983:61;;19013:31;;-1:-1:-1;;;19013:31:0;;;;;;;;;;;18983:61;19102:7;19082:245;19149:31;19183:17;;;:11;:17;;;;;;;;;19149:51;;;;;;;;;-1:-1:-1;;;;;19149:51:0;;;;;-1:-1:-1;;;19149:51:0;;;;;;;;;;;;19223:28;19219:93;;19283:9;18856:536;-1:-1:-1;;;18856:536:0:o;19219:93::-;-1:-1:-1;;;19122:6:0;19082:245;;32786:191;32879:6;;;-1:-1:-1;;;;;32896:17:0;;;-1:-1:-1;;;;;;32896:17:0;;;;;;;32929:40;;32879:6;;;32896:17;32879:6;;32929:40;;32860:16;;32929:40;32849:128;32786:191;:::o;33345:190::-;33470:4;33523;33494:25;33507:5;33514:4;33494:12;:25::i;:::-;:33;;33345:190;-1:-1:-1;;;;33345:190:0:o;28899:919::-;29054:4;-1:-1:-1;;;;;29075:13:0;;2056:19;:23;29071:740;;29128:175;;-1:-1:-1;;;29128:175:0;;-1:-1:-1;;;;;29128:36:0;;;;;:175;;1815:10;;29222:4;;29249:7;;29279:5;;29128:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29128:175:0;;;;;;;;-1:-1:-1;;29128:175:0;;;;;;;;;;;;:::i;:::-;;;29107:649;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29490:13:0;;29486:255;;29538:40;;-1:-1:-1;;;29538:40:0;;;;;;;;;;;29486:255;29691:6;29685:13;29676:6;29672:2;29668:15;29661:38;29107:649;-1:-1:-1;;;;;;29367:55:0;-1:-1:-1;;;29367:55:0;;-1:-1:-1;29360:62:0;;29071:740;-1:-1:-1;29795:4:0;29071:740;28899:919;;;;;;:::o;36239:110::-;36299:13;36332:9;36325:16;;;;;:::i;222:532::-;278:13;308:10;304:53;;-1:-1:-1;;335:10:0;;;;;;;;;;;;-1:-1:-1;;;335:10:0;;;;;222:532::o;304:53::-;382:5;367:12;423:78;430:9;;423:78;;456:8;;;;:::i;:::-;;-1:-1:-1;479:10:0;;-1:-1:-1;487:2:0;479:10;;:::i;:::-;;;423:78;;;511:19;543:6;533:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;533:17:0;;511:39;;561:154;568:10;;561:154;;595:11;605:1;595:11;;:::i;:::-;;-1:-1:-1;664:10:0;672:2;664:5;:10;:::i;:::-;651:24;;:2;:24;:::i;:::-;638:39;;621:6;628;621:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;621:56:0;;;;;;;;-1:-1:-1;692:11:0;701:2;692:11;;:::i;:::-;;;561:154;;23867:163;23990:32;23996:2;24000:8;24010:5;24017:4;23990:5;:32::i;33896:707::-;34006:7;34054:4;34006:7;34069:497;34093:5;:12;34089:1;:16;34069:497;;;34127:20;34150:5;34156:1;34150:8;;;;;;;;:::i;:::-;;;;;;;34127:31;;34193:12;34177;:28;34173:382;;34706:13;34761:15;;;34797:4;34790:15;;;34844:4;34828:21;;34305:57;;34173:382;;;34706:13;34761:15;;;34797:4;34790:15;;;34844:4;34828:21;;34482:57;;34173:382;-1:-1:-1;34107:3:0;;;;:::i;:::-;;;;34069:497;;;-1:-1:-1;34583:12:0;33896:707;-1:-1:-1;;;33896:707:0:o;24289:1486::-;24428:20;24451:13;-1:-1:-1;;;;;24479:16:0;;24475:48;;24504:19;;-1:-1:-1;;;24504:19:0;;;;;;;;;;;24475:48;-1:-1:-1;;;;;24936:16:0;;;;;;:12;:16;;;;;;;;:45;;-1:-1:-1;;;;;;;;;24936:45:0;;-1:-1:-1;;;;;24936:45:0;;;;;;;;;;24996:50;;;;;;;;;;;;;;25063:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;25113:66:0;;;;-1:-1:-1;;;25163:15:0;25113:66;;;;;;;25063:25;;25248:391;25268:8;25264:1;:12;25248:391;;;25307:38;;25332:12;;-1:-1:-1;;;;;25307:38:0;;;25324:1;;25307:38;;25324:1;;25307:38;25390:4;:89;;;;;25420:59;25451:1;25455:2;25459:12;25473:5;25420:22;:59::i;:::-;25419:60;25390:89;25364:225;;;25529:40;;-1:-1:-1;;;25529:40:0;;;;;;;;;;;25364:225;25609:14;;;;;25278:3;25248:391;;;-1:-1:-1;25655:13:0;:28;25707:60;22704:321;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;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:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:689::-;2994:6;3002;3010;3063:2;3051:9;3042:7;3038:23;3034:32;3031:52;;;3079:1;3076;3069:12;3031:52;3119:9;3106:23;3148:18;3189:2;3181:6;3178:14;3175:34;;;3205:1;3202;3195:12;3175:34;3243:6;3232:9;3228:22;3218:32;;3288:7;3281:4;3277:2;3273:13;3269:27;3259:55;;3310:1;3307;3300:12;3259:55;3350:2;3337:16;3376:2;3368:6;3365:14;3362:34;;;3392:1;3389;3382:12;3362:34;3447:7;3440:4;3430:6;3427:1;3423:14;3419:2;3415:23;3411:34;3408:47;3405:67;;;3468:1;3465;3458:12;3405:67;3499:4;3491:13;;;;3523:6;;-1:-1:-1;3561:20:1;;;;3548:34;;2899:689;-1:-1:-1;;;;2899:689:1:o;3593:180::-;3652:6;3705:2;3693:9;3684:7;3680:23;3676:32;3673:52;;;3721:1;3718;3711:12;3673:52;-1:-1:-1;3744:23:1;;3593:180;-1:-1:-1;3593:180:1:o;3778:245::-;3836:6;3889:2;3877:9;3868:7;3864:23;3860:32;3857:52;;;3905:1;3902;3895:12;3857:52;3944:9;3931:23;3963:30;3987:5;3963:30;:::i;4028:249::-;4097:6;4150:2;4138:9;4129:7;4125:23;4121:32;4118:52;;;4166:1;4163;4156:12;4118:52;4198:9;4192:16;4217:30;4241:5;4217:30;:::i;4282:450::-;4351:6;4404:2;4392:9;4383:7;4379:23;4375:32;4372:52;;;4420:1;4417;4410:12;4372:52;4460:9;4447:23;4493:18;4485:6;4482:30;4479:50;;;4525:1;4522;4515:12;4479:50;4548:22;;4601:4;4593:13;;4589:27;-1:-1:-1;4579:55:1;;4630:1;4627;4620:12;4579:55;4653:73;4718:7;4713:2;4700:16;4695:2;4691;4687:11;4653:73;:::i;4922:257::-;4963:3;5001:5;4995:12;5028:6;5023:3;5016:19;5044:63;5100:6;5093:4;5088:3;5084:14;5077:4;5070:5;5066:16;5044:63;:::i;:::-;5161:2;5140:15;-1:-1:-1;;5136:29:1;5127:39;;;;5168:4;5123:50;;4922:257;-1:-1:-1;;4922:257:1:o;5418:637::-;5698:3;5736:6;5730:13;5752:53;5798:6;5793:3;5786:4;5778:6;5774:17;5752:53;:::i;:::-;5868:13;;5827:16;;;;5890:57;5868:13;5827:16;5924:4;5912:17;;5890:57;:::i;:::-;-1:-1:-1;;;5969:20:1;;5998:22;;;6047:1;6036:13;;5418:637;-1:-1:-1;;;;5418:637:1:o;6478:488::-;-1:-1:-1;;;;;6747:15:1;;;6729:34;;6799:15;;6794:2;6779:18;;6772:43;6846:2;6831:18;;6824:34;;;6894:3;6889:2;6874:18;;6867:31;;;6672:4;;6915:45;;6940:19;;6932:6;6915:45;:::i;:::-;6907:53;6478:488;-1:-1:-1;;;;;;6478:488:1:o;7442:219::-;7591:2;7580:9;7573:21;7554:4;7611:44;7651:2;7640:9;7636:18;7628:6;7611:44;:::i;8073:415::-;8275:2;8257:21;;;8314:2;8294:18;;;8287:30;8353:34;8348:2;8333:18;;8326:62;-1:-1:-1;;;8419:2:1;8404:18;;8397:49;8478:3;8463:19;;8073:415::o;9250:356::-;9452:2;9434:21;;;9471:18;;;9464:30;9530:34;9525:2;9510:18;;9503:62;9597:2;9582:18;;9250:356::o;12013:128::-;12053:3;12084:1;12080:6;12077:1;12074:13;12071:39;;;12090:18;;:::i;:::-;-1:-1:-1;12126:9:1;;12013:128::o;12146:120::-;12186:1;12212;12202:35;;12217:18;;:::i;:::-;-1:-1:-1;12251:9:1;;12146:120::o;12271:168::-;12311:7;12377:1;12373;12369:6;12365:14;12362:1;12359:21;12354:1;12347:9;12340:17;12336:45;12333:71;;;12384:18;;:::i;:::-;-1:-1:-1;12424:9:1;;12271:168::o;12444:125::-;12484:4;12512:1;12509;12506:8;12503:34;;;12517:18;;:::i;:::-;-1:-1:-1;12554:9:1;;12444:125::o;12574:258::-;12646:1;12656:113;12670:6;12667:1;12664:13;12656:113;;;12746:11;;;12740:18;12727:11;;;12720:39;12692:2;12685:10;12656:113;;;12787:6;12784:1;12781:13;12778:48;;;-1:-1:-1;;12822:1:1;12804:16;;12797:27;12574:258::o;12837:380::-;12916:1;12912:12;;;;12959;;;12980:61;;13034:4;13026:6;13022:17;13012:27;;12980:61;13087:2;13079:6;13076:14;13056:18;13053:38;13050:161;;;13133:10;13128:3;13124:20;13121:1;13114:31;13168:4;13165:1;13158:15;13196:4;13193:1;13186:15;13050:161;;12837:380;;;:::o;13222:135::-;13261:3;-1:-1:-1;;13282:17:1;;13279:43;;;13302:18;;:::i;:::-;-1:-1:-1;13349:1:1;13338:13;;13222:135::o;13362:112::-;13394:1;13420;13410:35;;13425:18;;:::i;:::-;-1:-1:-1;13459:9:1;;13362:112::o;13479:127::-;13540:10;13535:3;13531:20;13528:1;13521:31;13571:4;13568:1;13561:15;13595:4;13592:1;13585:15;13611:127;13672:10;13667:3;13663:20;13660:1;13653:31;13703:4;13700:1;13693:15;13727:4;13724:1;13717:15;13743:127;13804:10;13799:3;13795:20;13792:1;13785:31;13835:4;13832:1;13825:15;13859:4;13856:1;13849:15;13875:127;13936:10;13931:3;13927:20;13924:1;13917:31;13967:4;13964:1;13957:15;13991:4;13988:1;13981:15;14007:127;14068:10;14063:3;14059:20;14056:1;14049:31;14099:4;14096:1;14089:15;14123:4;14120:1;14113:15;14139:131;-1:-1:-1;;;;;;14213:32:1;;14203:43;;14193:71;;14260:1;14257;14250:12

Swarm Source

ipfs://92484d4b7dbd319c35e71809327e1ca36fc0d87a0ddc80d3ac4c1a03bebd02f3
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.