ETH Price: $3,405.72 (-0.36%)
Gas: 22 Gwei

Token

MemesOfMarket (MOM)
 

Overview

Max Total Supply

3,159 MOM

Holders

756

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
10 MOM
0x47706508742a6467f4ef677dbe5000da8b523b99
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:
MemesOfMarket

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-07-01
*/

// File: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v4.1.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
        // Arbitrary data similar to `startTimestamp` that can be set through `_extraData`.
        uint24 extraData;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);

    // ==============================
    //            IERC165
    // ==============================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);

    // ==============================
    //            IERC721
    // ==============================

    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must 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 Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

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

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

    // ==============================
    //        IERC721Metadata
    // ==============================

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

    // ==============================
    //            IERC2309
    // ==============================

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId` (inclusive) is transferred from `from` to `to`,
     * as defined in the ERC2309 standard. See `_mintERC2309` for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v4.1.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;


/**
 * @dev ERC721 token receiver interface.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard,
 * including the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at `_startTokenId()`
 * (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Mask of an entry in packed address data.
    uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant BITMASK_BURNED = 1 << 224;

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225;

    // The bit position of `extraData` in packed ownership.
    uint256 private constant BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with `_mintERC2309`.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to `_mintERC2309`
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

    // The tokenId of the next token to be minted.
    uint256 private _currentIndex;

    // The number of tokens burned.
    uint256 private _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See `_packedOwnershipOf` implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

    // 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_;
        _currentIndex = _startTokenId();
    }

    /**
     * @dev Returns the starting token ID.
     * To change the starting token ID, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see `_totalMinted`.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * @dev Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to `_startTokenId()`
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes of the XOR of
        // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165
        // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_BURNED) & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> BITPOS_AUX);
    }

    /**
     * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP);
        ownership.burned = packed & BITMASK_BURNED != 0;
        ownership.extraData = uint24(packed >> BITPOS_EXTRA_DATA);
    }

    /**
     * Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * 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) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

    /**
     * @dev Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, BITMASK_ADDRESS)
            // `owner | (block.timestamp << BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

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

    /**
     * @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, _toString(tokenId))) : '';
    }

    /**
     * @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, it can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    /**
     * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << BITPOS_NEXT_INITIALIZED`.
            result := shl(BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ownerOf(tokenId);

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

        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @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 virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), 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-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(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
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    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.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity);

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

    /**
     * @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 for each mint.
     */
    function _mint(address to, uint256 quantity) 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` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 tokenId = startTokenId;
            uint256 end = startTokenId + quantity;
            do {
                emit Transfer(address(0), to, tokenId++);
            } while (tokenId < end);

            _currentIndex = end;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

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

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

            _currentIndex = startTokenId + quantity;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals;
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`.
        assembly {
            // Compute the slot.
            mstore(0x00, tokenId)
            mstore(0x20, tokenApprovalsPtr.slot)
            approvedAddressSlot := keccak256(0x00, 0x40)
            // Load the slot's value from storage.
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    /**
     * @dev Returns whether the `approvedAddress` is equals to `from` or `msgSender`.
     */
    function _isOwnerOrApproved(
        address approvedAddress,
        address from,
        address msgSender
    ) private pure returns (bool result) {
        assembly {
            // Mask `from` to the lower 160 bits, in case the upper bits somehow aren't clean.
            from := and(from, BITMASK_ADDRESS)
            // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
            msgSender := and(msgSender, BITMASK_ADDRESS)
            // `msgSender == from || msgSender == approvedAddress`.
            result := or(eq(msgSender, from), eq(msgSender, approvedAddress))
        }
    }

    /**
     * @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 transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A()))
            if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // 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 {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                to,
                BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

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

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = address(uint160(prevOwnershipPacked));

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // 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 {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                from,
                (BITMASK_BURNED | BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << BITPOS_EXTRA_DATA;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

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

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

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function _toString(uint256 value) internal pure returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

            // Cache the end of the memory to calculate the length later.
            let end := ptr

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for {
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp {
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } {
                // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }

            let length := sub(end, ptr)
            // Move the pointer 32 bytes leftwards to make room for the length.
            ptr := sub(ptr, 32)
            // Store the length.
            mstore(ptr, length)
        }
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: contracts/MemesOfMarket.sol

//SPDX-License-Identifier: MIT     




pragma solidity >=0.8.0 <0.9.0;

contract MemesOfMarket is ERC721A, Ownable {

  /** ERRORS */
  error ExceedsMaxSupply();
  error InvalidAmount();
  error FreeMintOver();
  error ExceedsWalletLimit();
  error InsufficientValue();
  error TokenNotFound();
  error ContractMint();
  error SaleInactive();

  using Strings for uint256;

  uint256 public cost = 0.0069 ether;
  uint256 public maxSupply = 3333;
  uint256 public maxMintAmountPerTx = 3;
  uint256 public freeMaxMintPerWallet = 2;

  uint256 public FREE_MINT_MAX = 1000;
  
  bool public saleActive = false;
  bool public revealed = true;
  
  mapping(address => uint256) public freeWallets;

  string _baseTokenURI;

  constructor(string memory baseURI) ERC721A("MemesOfMarket", "MOM") payable {
      _baseTokenURI = baseURI;
  }

  modifier mintCompliance(uint256 _mintAmount) {
    if (!saleActive) revert SaleInactive();
    if (msg.sender != tx.origin) revert ContractMint();
    if (totalSupply() + _mintAmount > maxSupply) revert ExceedsMaxSupply();
    if (_mintAmount < 1 || _mintAmount > maxMintAmountPerTx) revert InvalidAmount();
    _;
  }

  function freeMint(uint256 _mintAmount) public mintCompliance(_mintAmount) {
    if (!isFreeMint()) revert FreeMintOver();
    if (freeWallets[msg.sender] + _mintAmount > freeMaxMintPerWallet) revert ExceedsWalletLimit();
    unchecked { freeWallets[msg.sender] += _mintAmount; }

    _safeMint(msg.sender, _mintAmount);
  }

  function paidMint(uint256 _mintAmount)
    external
    payable
    mintCompliance(_mintAmount)
  {
    if (msg.value < (cost * _mintAmount)) revert InsufficientValue();
    _safeMint(msg.sender, _mintAmount);
  }

  function _startTokenId()
      internal
      view
      virtual
      override returns (uint256) 
  {
      return 1;
  }

  function isFreeMint() public view returns (bool) {
    return totalSupply() < FREE_MINT_MAX;
  }

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

  function setCost(uint256 _cost) public onlyOwner {
    cost = _cost;
  }
 
  function setMaxSupply(uint256 _maxSupply) external onlyOwner {
    maxSupply = _maxSupply;
  }

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

  function setMaxFreeMint(uint256 _max) public onlyOwner {
    FREE_MINT_MAX = _max;
  }

  function setMaxFreeMintPerWallet(uint256 _max) public onlyOwner {
    freeMaxMintPerWallet = _max;
  }

  function withdraw() public onlyOwner {
    payable(owner()).transfer(address(this).balance);
  }

  /** METADATA */
  function _baseURI() internal view virtual override returns (string memory) {
    return _baseTokenURI;
  }

  function setBaseURI(string calldata baseURI) external onlyOwner {
    _baseTokenURI = baseURI;
  }

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

  function tokenURI(uint256 _tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    if (!_exists(_tokenId)) revert TokenNotFound();

    if (!revealed) return _baseURI();
    return string(abi.encodePacked(_baseURI(), _tokenId.toString(), ".json"));
  }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"payable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"ContractMint","type":"error"},{"inputs":[],"name":"ExceedsMaxSupply","type":"error"},{"inputs":[],"name":"ExceedsWalletLimit","type":"error"},{"inputs":[],"name":"FreeMintOver","type":"error"},{"inputs":[],"name":"InsufficientValue","type":"error"},{"inputs":[],"name":"InvalidAmount","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"SaleInactive","type":"error"},{"inputs":[],"name":"TokenNotFound","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FREE_MINT_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMaxMintPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeWallets","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"isFreeMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"paidMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setMaxFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setMaxFreeMintPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"state","type":"bool"}],"name":"setRevealed","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":[],"name":"toggleSaleState","outputs":[],"stateMutability":"nonpayable","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"}]

60806040526618838370f34000600955610d05600a556003600b556002600c556103e8600d556000600e60006101000a81548160ff0219169083151502179055506001600e60016101000a81548160ff021916908315150217905550604051620035323803806200353283398181016040528101906200008091906200037b565b6040518060400160405280600d81526020017f4d656d65734f664d61726b6574000000000000000000000000000000000000008152506040518060400160405280600381526020017f4d4f4d00000000000000000000000000000000000000000000000000000000008152508160029080519060200190620001049291906200024d565b5080600390805190602001906200011d9291906200024d565b506200012e6200017660201b60201c565b6000819055505050620001566200014a6200017f60201b60201c565b6200018760201b60201c565b80601090805190602001906200016e9291906200024d565b505062000550565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200025b9062000461565b90600052602060002090601f0160209004810192826200027f5760008555620002cb565b82601f106200029a57805160ff1916838001178555620002cb565b82800160010185558215620002cb579182015b82811115620002ca578251825591602001919060010190620002ad565b5b509050620002da9190620002de565b5090565b5b80821115620002f9576000816000905550600101620002df565b5090565b6000620003146200030e84620003f5565b620003cc565b90508281526020810184848401111562000333576200033262000530565b5b620003408482856200042b565b509392505050565b600082601f83011262000360576200035f6200052b565b5b815162000372848260208601620002fd565b91505092915050565b6000602082840312156200039457620003936200053a565b5b600082015167ffffffffffffffff811115620003b557620003b462000535565b5b620003c38482850162000348565b91505092915050565b6000620003d8620003eb565b9050620003e6828262000497565b919050565b6000604051905090565b600067ffffffffffffffff821115620004135762000412620004fc565b5b6200041e826200053f565b9050602081019050919050565b60005b838110156200044b5780820151818401526020810190506200042e565b838111156200045b576000848401525b50505050565b600060028204905060018216806200047a57607f821691505b60208210811415620004915762000490620004cd565b5b50919050565b620004a2826200053f565b810181811067ffffffffffffffff82111715620004c457620004c3620004fc565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b612fd280620005606000396000f3fe6080604052600436106102255760003560e01c806370a0823111610123578063b88d4fde116100ab578063e0a808531161006f578063e0a80853146107c0578063e985e9c5146107e9578063efbd73f414610826578063f2fde38b1461084f578063f77b1edd1461087857610225565b8063b88d4fde146106ed578063c2d05a6e14610716578063c87b56dd14610741578063d5abeb011461077e578063daaeec86146107a957610225565b80638da5cb5b116100f25780638da5cb5b1461061a57806394354fd01461064557806395d89b4114610670578063a22cb4651461069b578063b071401b146106c457610225565b806370a0823114610574578063715018a6146105b1578063742a4c9b146105c85780637c928fe9146105f157610225565b80633ccfd60b116101b15780636352211e116101755780636352211e1461049c57806365cde733146104d957806366112b6b146104f557806368428a1b146105205780636f8b44b01461054b57610225565b80633ccfd60b146103df57806342842e0e146103f657806344a0d68a1461041f578063518302271461044857806355f804b31461047357610225565b8063095ea7b3116101f8578063095ea7b31461030c57806313faede61461033557806318160ddd1461036057806323b872dd1461038b5780633bc4b025146103b457610225565b806301ffc9a71461022a57806306bb99e21461026757806306fdde03146102a4578063081812fc146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c91906126c9565b6108a1565b60405161025e91906129ac565b60405180910390f35b34801561027357600080fd5b5061028e600480360381019061028991906124d9565b610933565b60405161029b9190612a29565b60405180910390f35b3480156102b057600080fd5b506102b961094b565b6040516102c691906129c7565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f19190612770565b6109dd565b6040516103039190612945565b60405180910390f35b34801561031857600080fd5b50610333600480360381019061032e919061265c565b610a59565b005b34801561034157600080fd5b5061034a610b9a565b6040516103579190612a29565b60405180910390f35b34801561036c57600080fd5b50610375610ba0565b6040516103829190612a29565b60405180910390f35b34801561039757600080fd5b506103b260048036038101906103ad9190612546565b610bb7565b005b3480156103c057600080fd5b506103c9610edc565b6040516103d69190612a29565b60405180910390f35b3480156103eb57600080fd5b506103f4610ee2565b005b34801561040257600080fd5b5061041d60048036038101906104189190612546565b610f3a565b005b34801561042b57600080fd5b5061044660048036038101906104419190612770565b610f5a565b005b34801561045457600080fd5b5061045d610f6c565b60405161046a91906129ac565b60405180910390f35b34801561047f57600080fd5b5061049a60048036038101906104959190612723565b610f7f565b005b3480156104a857600080fd5b506104c360048036038101906104be9190612770565b610f9d565b6040516104d09190612945565b60405180910390f35b6104f360048036038101906104ee9190612770565b610faf565b005b34801561050157600080fd5b5061050a611145565b6040516105179190612a29565b60405180910390f35b34801561052c57600080fd5b5061053561114b565b60405161054291906129ac565b60405180910390f35b34801561055757600080fd5b50610572600480360381019061056d9190612770565b61115e565b005b34801561058057600080fd5b5061059b600480360381019061059691906124d9565b611170565b6040516105a89190612a29565b60405180910390f35b3480156105bd57600080fd5b506105c6611229565b005b3480156105d457600080fd5b506105ef60048036038101906105ea9190612770565b61123d565b005b3480156105fd57600080fd5b5061061860048036038101906106139190612770565b61124f565b005b34801561062657600080fd5b5061062f6114af565b60405161063c9190612945565b60405180910390f35b34801561065157600080fd5b5061065a6114d9565b6040516106679190612a29565b60405180910390f35b34801561067c57600080fd5b506106856114df565b60405161069291906129c7565b60405180910390f35b3480156106a757600080fd5b506106c260048036038101906106bd919061261c565b611571565b005b3480156106d057600080fd5b506106eb60048036038101906106e69190612770565b6116e9565b005b3480156106f957600080fd5b50610714600480360381019061070f9190612599565b6116fb565b005b34801561072257600080fd5b5061072b61176e565b60405161073891906129ac565b60405180910390f35b34801561074d57600080fd5b5061076860048036038101906107639190612770565b611781565b60405161077591906129c7565b60405180910390f35b34801561078a57600080fd5b5061079361181e565b6040516107a09190612a29565b60405180910390f35b3480156107b557600080fd5b506107be611824565b005b3480156107cc57600080fd5b506107e760048036038101906107e2919061269c565b611858565b005b3480156107f557600080fd5b50610810600480360381019061080b9190612506565b61187d565b60405161081d91906129ac565b60405180910390f35b34801561083257600080fd5b5061084d6004803603810190610848919061279d565b611911565b005b34801561085b57600080fd5b50610876600480360381019061087191906124d9565b611927565b005b34801561088457600080fd5b5061089f600480360381019061089a9190612770565b6119ab565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108fc57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061092c5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600f6020528060005260406000206000915090505481565b60606002805461095a90612ca8565b80601f016020809104026020016040519081016040528092919081815260200182805461098690612ca8565b80156109d35780601f106109a8576101008083540402835291602001916109d3565b820191906000526020600020905b8154815290600101906020018083116109b657829003601f168201915b5050505050905090565b60006109e8826119bd565b610a1e576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a6482610f9d565b90508073ffffffffffffffffffffffffffffffffffffffff16610a85611a1c565b73ffffffffffffffffffffffffffffffffffffffff1614610ae857610ab181610aac611a1c565b61187d565b610ae7576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60095481565b6000610baa611a24565b6001546000540303905090565b6000610bc282611a2d565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c29576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610c3584611afb565b91509150610c4b8187610c46611a1c565b611b1d565b610c9757610c6086610c5b611a1c565b61187d565b610c96576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610cfe576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d0b8686866001611b61565b8015610d1657600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610de485610dc0888887611b67565b7c020000000000000000000000000000000000000000000000000000000017611b8f565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610e6c576000600185019050600060046000838152602001908152602001600020541415610e6a576000548114610e69578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610ed48686866001611bba565b505050505050565b600d5481565b610eea611bc0565b610ef26114af565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610f37573d6000803e3d6000fd5b50565b610f55838383604051806020016040528060008152506116fb565b505050565b610f62611bc0565b8060098190555050565b600e60019054906101000a900460ff1681565b610f87611bc0565b818160109190610f98929190612307565b505050565b6000610fa882611a2d565b9050919050565b80600e60009054906101000a900460ff16610ff6576040517f3f88677400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461105b576040517f72f67c2300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a5481611067610ba0565b6110719190612add565b11156110a9576040517fc30436e900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60018110806110b95750600b5481115b156110f0576040517f2c5211c600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b816009546110fe9190612b64565b341015611137576040517f1101129400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6111413383611c3e565b5050565b600c5481565b600e60009054906101000a900460ff1681565b611166611bc0565b80600a8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111d8576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611231611bc0565b61123b6000611c5c565b565b611245611bc0565b80600d8190555050565b80600e60009054906101000a900460ff16611296576040517f3f88677400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146112fb576040517f72f67c2300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a5481611307610ba0565b6113119190612add565b1115611349576040517fc30436e900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60018110806113595750600b5481115b15611390576040517f2c5211c600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61139861176e565b6113ce576040517ff1e7b06c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600c5482600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461141c9190612add565b1115611454576040517f5107dbe700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506114ab3383611c3e565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600b5481565b6060600380546114ee90612ca8565b80601f016020809104026020016040519081016040528092919081815260200182805461151a90612ca8565b80156115675780601f1061153c57610100808354040283529160200191611567565b820191906000526020600020905b81548152906001019060200180831161154a57829003601f168201915b5050505050905090565b611579611a1c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115de576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006115eb611a1c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611698611a1c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116dd91906129ac565b60405180910390a35050565b6116f1611bc0565b80600b8190555050565b611706848484610bb7565b60008373ffffffffffffffffffffffffffffffffffffffff163b146117685761173184848484611d22565b611767576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6000600d5461177b610ba0565b10905090565b606061178c826119bd565b6117c2576040517fcbdb7b3000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600e60019054906101000a900460ff166117e5576117de611e82565b9050611819565b6117ed611e82565b6117f683611f14565b604051602001611807929190612916565b60405160208183030381529060405290505b919050565b600a5481565b61182c611bc0565b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b611860611bc0565b80600e60016101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611919611bc0565b6119238183611c3e565b5050565b61192f611bc0565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561199f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611996906129e9565b60405180910390fd5b6119a881611c5c565b50565b6119b3611bc0565b80600c8190555050565b6000816119c8611a24565b111580156119d7575060005482105b8015611a15575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60008082905080611a3c611a24565b11611ac457600054811015611ac35760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611ac1575b6000811415611ab7576004600083600190039350838152602001908152602001600020549050611a8c565b8092505050611af6565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611b7e868684612075565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611bc861207e565b73ffffffffffffffffffffffffffffffffffffffff16611be66114af565b73ffffffffffffffffffffffffffffffffffffffff1614611c3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3390612a09565b60405180910390fd5b565b611c58828260405180602001604052806000815250612086565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d48611a1c565b8786866040518563ffffffff1660e01b8152600401611d6a9493929190612960565b602060405180830381600087803b158015611d8457600080fd5b505af1925050508015611db557506040513d601f19601f82011682018060405250810190611db291906126f6565b60015b611e2f573d8060008114611de5576040519150601f19603f3d011682016040523d82523d6000602084013e611dea565b606091505b50600081511415611e27576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060108054611e9190612ca8565b80601f0160208091040260200160405190810160405280929190818152602001828054611ebd90612ca8565b8015611f0a5780601f10611edf57610100808354040283529160200191611f0a565b820191906000526020600020905b815481529060010190602001808311611eed57829003601f168201915b5050505050905090565b60606000821415611f5c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612070565b600082905060005b60008214611f8e578080611f7790612d0b565b915050600a82611f879190612b33565b9150611f64565b60008167ffffffffffffffff811115611faa57611fa9612e41565b5b6040519080825280601f01601f191660200182016040528015611fdc5781602001600182028036833780820191505090505b5090505b6000851461206957600182611ff59190612bbe565b9150600a856120049190612d54565b60306120109190612add565b60f81b81838151811061202657612025612e12565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856120629190612b33565b9450611fe0565b8093505050505b919050565b60009392505050565b600033905090565b6120908383612123565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461211e57600080549050600083820390505b6120d06000868380600101945086611d22565b612106576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106120bd57816000541461211b57600080fd5b50505b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612190576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008214156121cb576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121d86000848385611b61565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061224f836122406000866000611b67565b612249856122f7565b17611b8f565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612273578060008190555050506122f26000848385611bba565b505050565b60006001821460e11b9050919050565b82805461231390612ca8565b90600052602060002090601f016020900481019282612335576000855561237c565b82601f1061234e57803560ff191683800117855561237c565b8280016001018555821561237c579182015b8281111561237b578235825591602001919060010190612360565b5b509050612389919061238d565b5090565b5b808211156123a657600081600090555060010161238e565b5090565b60006123bd6123b884612a69565b612a44565b9050828152602081018484840111156123d9576123d8612e7f565b5b6123e4848285612c66565b509392505050565b6000813590506123fb81612f40565b92915050565b60008135905061241081612f57565b92915050565b60008135905061242581612f6e565b92915050565b60008151905061243a81612f6e565b92915050565b600082601f83011261245557612454612e75565b5b81356124658482602086016123aa565b91505092915050565b60008083601f84011261248457612483612e75565b5b8235905067ffffffffffffffff8111156124a1576124a0612e70565b5b6020830191508360018202830111156124bd576124bc612e7a565b5b9250929050565b6000813590506124d381612f85565b92915050565b6000602082840312156124ef576124ee612e89565b5b60006124fd848285016123ec565b91505092915050565b6000806040838503121561251d5761251c612e89565b5b600061252b858286016123ec565b925050602061253c858286016123ec565b9150509250929050565b60008060006060848603121561255f5761255e612e89565b5b600061256d868287016123ec565b935050602061257e868287016123ec565b925050604061258f868287016124c4565b9150509250925092565b600080600080608085870312156125b3576125b2612e89565b5b60006125c1878288016123ec565b94505060206125d2878288016123ec565b93505060406125e3878288016124c4565b925050606085013567ffffffffffffffff81111561260457612603612e84565b5b61261087828801612440565b91505092959194509250565b6000806040838503121561263357612632612e89565b5b6000612641858286016123ec565b925050602061265285828601612401565b9150509250929050565b6000806040838503121561267357612672612e89565b5b6000612681858286016123ec565b9250506020612692858286016124c4565b9150509250929050565b6000602082840312156126b2576126b1612e89565b5b60006126c084828501612401565b91505092915050565b6000602082840312156126df576126de612e89565b5b60006126ed84828501612416565b91505092915050565b60006020828403121561270c5761270b612e89565b5b600061271a8482850161242b565b91505092915050565b6000806020838503121561273a57612739612e89565b5b600083013567ffffffffffffffff81111561275857612757612e84565b5b6127648582860161246e565b92509250509250929050565b60006020828403121561278657612785612e89565b5b6000612794848285016124c4565b91505092915050565b600080604083850312156127b4576127b3612e89565b5b60006127c2858286016124c4565b92505060206127d3858286016123ec565b9150509250929050565b6127e681612bf2565b82525050565b6127f581612c04565b82525050565b600061280682612a9a565b6128108185612ab0565b9350612820818560208601612c75565b61282981612e8e565b840191505092915050565b600061283f82612aa5565b6128498185612ac1565b9350612859818560208601612c75565b61286281612e8e565b840191505092915050565b600061287882612aa5565b6128828185612ad2565b9350612892818560208601612c75565b80840191505092915050565b60006128ab602683612ac1565b91506128b682612e9f565b604082019050919050565b60006128ce600583612ad2565b91506128d982612eee565b600582019050919050565b60006128f1602083612ac1565b91506128fc82612f17565b602082019050919050565b61291081612c5c565b82525050565b6000612922828561286d565b915061292e828461286d565b9150612939826128c1565b91508190509392505050565b600060208201905061295a60008301846127dd565b92915050565b600060808201905061297560008301876127dd565b61298260208301866127dd565b61298f6040830185612907565b81810360608301526129a181846127fb565b905095945050505050565b60006020820190506129c160008301846127ec565b92915050565b600060208201905081810360008301526129e18184612834565b905092915050565b60006020820190508181036000830152612a028161289e565b9050919050565b60006020820190508181036000830152612a22816128e4565b9050919050565b6000602082019050612a3e6000830184612907565b92915050565b6000612a4e612a5f565b9050612a5a8282612cda565b919050565b6000604051905090565b600067ffffffffffffffff821115612a8457612a83612e41565b5b612a8d82612e8e565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612ae882612c5c565b9150612af383612c5c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612b2857612b27612d85565b5b828201905092915050565b6000612b3e82612c5c565b9150612b4983612c5c565b925082612b5957612b58612db4565b5b828204905092915050565b6000612b6f82612c5c565b9150612b7a83612c5c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612bb357612bb2612d85565b5b828202905092915050565b6000612bc982612c5c565b9150612bd483612c5c565b925082821015612be757612be6612d85565b5b828203905092915050565b6000612bfd82612c3c565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612c93578082015181840152602081019050612c78565b83811115612ca2576000848401525b50505050565b60006002820490506001821680612cc057607f821691505b60208210811415612cd457612cd3612de3565b5b50919050565b612ce382612e8e565b810181811067ffffffffffffffff82111715612d0257612d01612e41565b5b80604052505050565b6000612d1682612c5c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612d4957612d48612d85565b5b600182019050919050565b6000612d5f82612c5c565b9150612d6a83612c5c565b925082612d7a57612d79612db4565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b612f4981612bf2565b8114612f5457600080fd5b50565b612f6081612c04565b8114612f6b57600080fd5b50565b612f7781612c10565b8114612f8257600080fd5b50565b612f8e81612c5c565b8114612f9957600080fd5b5056fea264697066735822122064a8e5781864e9186f39f51b92eae3df80ade648d9d980d92dd3128cb08aaba064736f6c63430008070033000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000046970667300000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102255760003560e01c806370a0823111610123578063b88d4fde116100ab578063e0a808531161006f578063e0a80853146107c0578063e985e9c5146107e9578063efbd73f414610826578063f2fde38b1461084f578063f77b1edd1461087857610225565b8063b88d4fde146106ed578063c2d05a6e14610716578063c87b56dd14610741578063d5abeb011461077e578063daaeec86146107a957610225565b80638da5cb5b116100f25780638da5cb5b1461061a57806394354fd01461064557806395d89b4114610670578063a22cb4651461069b578063b071401b146106c457610225565b806370a0823114610574578063715018a6146105b1578063742a4c9b146105c85780637c928fe9146105f157610225565b80633ccfd60b116101b15780636352211e116101755780636352211e1461049c57806365cde733146104d957806366112b6b146104f557806368428a1b146105205780636f8b44b01461054b57610225565b80633ccfd60b146103df57806342842e0e146103f657806344a0d68a1461041f578063518302271461044857806355f804b31461047357610225565b8063095ea7b3116101f8578063095ea7b31461030c57806313faede61461033557806318160ddd1461036057806323b872dd1461038b5780633bc4b025146103b457610225565b806301ffc9a71461022a57806306bb99e21461026757806306fdde03146102a4578063081812fc146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c91906126c9565b6108a1565b60405161025e91906129ac565b60405180910390f35b34801561027357600080fd5b5061028e600480360381019061028991906124d9565b610933565b60405161029b9190612a29565b60405180910390f35b3480156102b057600080fd5b506102b961094b565b6040516102c691906129c7565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f19190612770565b6109dd565b6040516103039190612945565b60405180910390f35b34801561031857600080fd5b50610333600480360381019061032e919061265c565b610a59565b005b34801561034157600080fd5b5061034a610b9a565b6040516103579190612a29565b60405180910390f35b34801561036c57600080fd5b50610375610ba0565b6040516103829190612a29565b60405180910390f35b34801561039757600080fd5b506103b260048036038101906103ad9190612546565b610bb7565b005b3480156103c057600080fd5b506103c9610edc565b6040516103d69190612a29565b60405180910390f35b3480156103eb57600080fd5b506103f4610ee2565b005b34801561040257600080fd5b5061041d60048036038101906104189190612546565b610f3a565b005b34801561042b57600080fd5b5061044660048036038101906104419190612770565b610f5a565b005b34801561045457600080fd5b5061045d610f6c565b60405161046a91906129ac565b60405180910390f35b34801561047f57600080fd5b5061049a60048036038101906104959190612723565b610f7f565b005b3480156104a857600080fd5b506104c360048036038101906104be9190612770565b610f9d565b6040516104d09190612945565b60405180910390f35b6104f360048036038101906104ee9190612770565b610faf565b005b34801561050157600080fd5b5061050a611145565b6040516105179190612a29565b60405180910390f35b34801561052c57600080fd5b5061053561114b565b60405161054291906129ac565b60405180910390f35b34801561055757600080fd5b50610572600480360381019061056d9190612770565b61115e565b005b34801561058057600080fd5b5061059b600480360381019061059691906124d9565b611170565b6040516105a89190612a29565b60405180910390f35b3480156105bd57600080fd5b506105c6611229565b005b3480156105d457600080fd5b506105ef60048036038101906105ea9190612770565b61123d565b005b3480156105fd57600080fd5b5061061860048036038101906106139190612770565b61124f565b005b34801561062657600080fd5b5061062f6114af565b60405161063c9190612945565b60405180910390f35b34801561065157600080fd5b5061065a6114d9565b6040516106679190612a29565b60405180910390f35b34801561067c57600080fd5b506106856114df565b60405161069291906129c7565b60405180910390f35b3480156106a757600080fd5b506106c260048036038101906106bd919061261c565b611571565b005b3480156106d057600080fd5b506106eb60048036038101906106e69190612770565b6116e9565b005b3480156106f957600080fd5b50610714600480360381019061070f9190612599565b6116fb565b005b34801561072257600080fd5b5061072b61176e565b60405161073891906129ac565b60405180910390f35b34801561074d57600080fd5b5061076860048036038101906107639190612770565b611781565b60405161077591906129c7565b60405180910390f35b34801561078a57600080fd5b5061079361181e565b6040516107a09190612a29565b60405180910390f35b3480156107b557600080fd5b506107be611824565b005b3480156107cc57600080fd5b506107e760048036038101906107e2919061269c565b611858565b005b3480156107f557600080fd5b50610810600480360381019061080b9190612506565b61187d565b60405161081d91906129ac565b60405180910390f35b34801561083257600080fd5b5061084d6004803603810190610848919061279d565b611911565b005b34801561085b57600080fd5b50610876600480360381019061087191906124d9565b611927565b005b34801561088457600080fd5b5061089f600480360381019061089a9190612770565b6119ab565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108fc57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061092c5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600f6020528060005260406000206000915090505481565b60606002805461095a90612ca8565b80601f016020809104026020016040519081016040528092919081815260200182805461098690612ca8565b80156109d35780601f106109a8576101008083540402835291602001916109d3565b820191906000526020600020905b8154815290600101906020018083116109b657829003601f168201915b5050505050905090565b60006109e8826119bd565b610a1e576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a6482610f9d565b90508073ffffffffffffffffffffffffffffffffffffffff16610a85611a1c565b73ffffffffffffffffffffffffffffffffffffffff1614610ae857610ab181610aac611a1c565b61187d565b610ae7576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60095481565b6000610baa611a24565b6001546000540303905090565b6000610bc282611a2d565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c29576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610c3584611afb565b91509150610c4b8187610c46611a1c565b611b1d565b610c9757610c6086610c5b611a1c565b61187d565b610c96576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610cfe576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d0b8686866001611b61565b8015610d1657600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610de485610dc0888887611b67565b7c020000000000000000000000000000000000000000000000000000000017611b8f565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610e6c576000600185019050600060046000838152602001908152602001600020541415610e6a576000548114610e69578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610ed48686866001611bba565b505050505050565b600d5481565b610eea611bc0565b610ef26114af565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610f37573d6000803e3d6000fd5b50565b610f55838383604051806020016040528060008152506116fb565b505050565b610f62611bc0565b8060098190555050565b600e60019054906101000a900460ff1681565b610f87611bc0565b818160109190610f98929190612307565b505050565b6000610fa882611a2d565b9050919050565b80600e60009054906101000a900460ff16610ff6576040517f3f88677400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461105b576040517f72f67c2300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a5481611067610ba0565b6110719190612add565b11156110a9576040517fc30436e900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60018110806110b95750600b5481115b156110f0576040517f2c5211c600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b816009546110fe9190612b64565b341015611137576040517f1101129400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6111413383611c3e565b5050565b600c5481565b600e60009054906101000a900460ff1681565b611166611bc0565b80600a8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111d8576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611231611bc0565b61123b6000611c5c565b565b611245611bc0565b80600d8190555050565b80600e60009054906101000a900460ff16611296576040517f3f88677400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146112fb576040517f72f67c2300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a5481611307610ba0565b6113119190612add565b1115611349576040517fc30436e900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60018110806113595750600b5481115b15611390576040517f2c5211c600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61139861176e565b6113ce576040517ff1e7b06c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600c5482600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461141c9190612add565b1115611454576040517f5107dbe700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506114ab3383611c3e565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600b5481565b6060600380546114ee90612ca8565b80601f016020809104026020016040519081016040528092919081815260200182805461151a90612ca8565b80156115675780601f1061153c57610100808354040283529160200191611567565b820191906000526020600020905b81548152906001019060200180831161154a57829003601f168201915b5050505050905090565b611579611a1c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115de576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006115eb611a1c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611698611a1c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116dd91906129ac565b60405180910390a35050565b6116f1611bc0565b80600b8190555050565b611706848484610bb7565b60008373ffffffffffffffffffffffffffffffffffffffff163b146117685761173184848484611d22565b611767576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6000600d5461177b610ba0565b10905090565b606061178c826119bd565b6117c2576040517fcbdb7b3000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600e60019054906101000a900460ff166117e5576117de611e82565b9050611819565b6117ed611e82565b6117f683611f14565b604051602001611807929190612916565b60405160208183030381529060405290505b919050565b600a5481565b61182c611bc0565b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b611860611bc0565b80600e60016101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611919611bc0565b6119238183611c3e565b5050565b61192f611bc0565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561199f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611996906129e9565b60405180910390fd5b6119a881611c5c565b50565b6119b3611bc0565b80600c8190555050565b6000816119c8611a24565b111580156119d7575060005482105b8015611a15575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60008082905080611a3c611a24565b11611ac457600054811015611ac35760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611ac1575b6000811415611ab7576004600083600190039350838152602001908152602001600020549050611a8c565b8092505050611af6565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611b7e868684612075565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611bc861207e565b73ffffffffffffffffffffffffffffffffffffffff16611be66114af565b73ffffffffffffffffffffffffffffffffffffffff1614611c3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3390612a09565b60405180910390fd5b565b611c58828260405180602001604052806000815250612086565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d48611a1c565b8786866040518563ffffffff1660e01b8152600401611d6a9493929190612960565b602060405180830381600087803b158015611d8457600080fd5b505af1925050508015611db557506040513d601f19601f82011682018060405250810190611db291906126f6565b60015b611e2f573d8060008114611de5576040519150601f19603f3d011682016040523d82523d6000602084013e611dea565b606091505b50600081511415611e27576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060108054611e9190612ca8565b80601f0160208091040260200160405190810160405280929190818152602001828054611ebd90612ca8565b8015611f0a5780601f10611edf57610100808354040283529160200191611f0a565b820191906000526020600020905b815481529060010190602001808311611eed57829003601f168201915b5050505050905090565b60606000821415611f5c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612070565b600082905060005b60008214611f8e578080611f7790612d0b565b915050600a82611f879190612b33565b9150611f64565b60008167ffffffffffffffff811115611faa57611fa9612e41565b5b6040519080825280601f01601f191660200182016040528015611fdc5781602001600182028036833780820191505090505b5090505b6000851461206957600182611ff59190612bbe565b9150600a856120049190612d54565b60306120109190612add565b60f81b81838151811061202657612025612e12565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856120629190612b33565b9450611fe0565b8093505050505b919050565b60009392505050565b600033905090565b6120908383612123565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461211e57600080549050600083820390505b6120d06000868380600101945086611d22565b612106576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106120bd57816000541461211b57600080fd5b50505b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612190576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008214156121cb576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121d86000848385611b61565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061224f836122406000866000611b67565b612249856122f7565b17611b8f565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612273578060008190555050506122f26000848385611bba565b505050565b60006001821460e11b9050919050565b82805461231390612ca8565b90600052602060002090601f016020900481019282612335576000855561237c565b82601f1061234e57803560ff191683800117855561237c565b8280016001018555821561237c579182015b8281111561237b578235825591602001919060010190612360565b5b509050612389919061238d565b5090565b5b808211156123a657600081600090555060010161238e565b5090565b60006123bd6123b884612a69565b612a44565b9050828152602081018484840111156123d9576123d8612e7f565b5b6123e4848285612c66565b509392505050565b6000813590506123fb81612f40565b92915050565b60008135905061241081612f57565b92915050565b60008135905061242581612f6e565b92915050565b60008151905061243a81612f6e565b92915050565b600082601f83011261245557612454612e75565b5b81356124658482602086016123aa565b91505092915050565b60008083601f84011261248457612483612e75565b5b8235905067ffffffffffffffff8111156124a1576124a0612e70565b5b6020830191508360018202830111156124bd576124bc612e7a565b5b9250929050565b6000813590506124d381612f85565b92915050565b6000602082840312156124ef576124ee612e89565b5b60006124fd848285016123ec565b91505092915050565b6000806040838503121561251d5761251c612e89565b5b600061252b858286016123ec565b925050602061253c858286016123ec565b9150509250929050565b60008060006060848603121561255f5761255e612e89565b5b600061256d868287016123ec565b935050602061257e868287016123ec565b925050604061258f868287016124c4565b9150509250925092565b600080600080608085870312156125b3576125b2612e89565b5b60006125c1878288016123ec565b94505060206125d2878288016123ec565b93505060406125e3878288016124c4565b925050606085013567ffffffffffffffff81111561260457612603612e84565b5b61261087828801612440565b91505092959194509250565b6000806040838503121561263357612632612e89565b5b6000612641858286016123ec565b925050602061265285828601612401565b9150509250929050565b6000806040838503121561267357612672612e89565b5b6000612681858286016123ec565b9250506020612692858286016124c4565b9150509250929050565b6000602082840312156126b2576126b1612e89565b5b60006126c084828501612401565b91505092915050565b6000602082840312156126df576126de612e89565b5b60006126ed84828501612416565b91505092915050565b60006020828403121561270c5761270b612e89565b5b600061271a8482850161242b565b91505092915050565b6000806020838503121561273a57612739612e89565b5b600083013567ffffffffffffffff81111561275857612757612e84565b5b6127648582860161246e565b92509250509250929050565b60006020828403121561278657612785612e89565b5b6000612794848285016124c4565b91505092915050565b600080604083850312156127b4576127b3612e89565b5b60006127c2858286016124c4565b92505060206127d3858286016123ec565b9150509250929050565b6127e681612bf2565b82525050565b6127f581612c04565b82525050565b600061280682612a9a565b6128108185612ab0565b9350612820818560208601612c75565b61282981612e8e565b840191505092915050565b600061283f82612aa5565b6128498185612ac1565b9350612859818560208601612c75565b61286281612e8e565b840191505092915050565b600061287882612aa5565b6128828185612ad2565b9350612892818560208601612c75565b80840191505092915050565b60006128ab602683612ac1565b91506128b682612e9f565b604082019050919050565b60006128ce600583612ad2565b91506128d982612eee565b600582019050919050565b60006128f1602083612ac1565b91506128fc82612f17565b602082019050919050565b61291081612c5c565b82525050565b6000612922828561286d565b915061292e828461286d565b9150612939826128c1565b91508190509392505050565b600060208201905061295a60008301846127dd565b92915050565b600060808201905061297560008301876127dd565b61298260208301866127dd565b61298f6040830185612907565b81810360608301526129a181846127fb565b905095945050505050565b60006020820190506129c160008301846127ec565b92915050565b600060208201905081810360008301526129e18184612834565b905092915050565b60006020820190508181036000830152612a028161289e565b9050919050565b60006020820190508181036000830152612a22816128e4565b9050919050565b6000602082019050612a3e6000830184612907565b92915050565b6000612a4e612a5f565b9050612a5a8282612cda565b919050565b6000604051905090565b600067ffffffffffffffff821115612a8457612a83612e41565b5b612a8d82612e8e565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612ae882612c5c565b9150612af383612c5c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612b2857612b27612d85565b5b828201905092915050565b6000612b3e82612c5c565b9150612b4983612c5c565b925082612b5957612b58612db4565b5b828204905092915050565b6000612b6f82612c5c565b9150612b7a83612c5c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612bb357612bb2612d85565b5b828202905092915050565b6000612bc982612c5c565b9150612bd483612c5c565b925082821015612be757612be6612d85565b5b828203905092915050565b6000612bfd82612c3c565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612c93578082015181840152602081019050612c78565b83811115612ca2576000848401525b50505050565b60006002820490506001821680612cc057607f821691505b60208210811415612cd457612cd3612de3565b5b50919050565b612ce382612e8e565b810181811067ffffffffffffffff82111715612d0257612d01612e41565b5b80604052505050565b6000612d1682612c5c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612d4957612d48612d85565b5b600182019050919050565b6000612d5f82612c5c565b9150612d6a83612c5c565b925082612d7a57612d79612db4565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b612f4981612bf2565b8114612f5457600080fd5b50565b612f6081612c04565b8114612f6b57600080fd5b50565b612f7781612c10565b8114612f8257600080fd5b50565b612f8e81612c5c565b8114612f9957600080fd5b5056fea264697066735822122064a8e5781864e9186f39f51b92eae3df80ade648d9d980d92dd3128cb08aaba064736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000046970667300000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): ipfs

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [2] : 6970667300000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

50934:3402:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14592:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51530:46;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20239:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22185:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21733:386;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51252:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13646:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31450:2800;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51415:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53604:98;;;;;;;;;;;;;:::i;:::-;;23075:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52992:74;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51494:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53841:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20028:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52394:220;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51369:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51459:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53073:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15271:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49997:103;;;;;;;;;;;;;:::i;:::-;;53400:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52059:329;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49349:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51327:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20408:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22461:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53175:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23331:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52755:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54034:297;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51291:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53313:81;;;;;;;;;;;;;:::i;:::-;;53947;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22840:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52859:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50255:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53494:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14592:615;14677:4;14992:10;14977:25;;:11;:25;;;;:102;;;;15069:10;15054:25;;:11;:25;;;;14977:102;:179;;;;15146:10;15131:25;;:11;:25;;;;14977:179;14957:199;;14592:615;;;:::o;51530:46::-;;;;;;;;;;;;;;;;;:::o;20239:100::-;20293:13;20326:5;20319:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20239:100;:::o;22185:204::-;22253:7;22278:16;22286:7;22278;:16::i;:::-;22273:64;;22303:34;;;;;;;;;;;;;;22273:64;22357:15;:24;22373:7;22357:24;;;;;;;;;;;;;;;;;;;;;22350:31;;22185:204;;;:::o;21733:386::-;21806:13;21822:16;21830:7;21822;:16::i;:::-;21806:32;;21878:5;21855:28;;:19;:17;:19::i;:::-;:28;;;21851:175;;21903:44;21920:5;21927:19;:17;:19::i;:::-;21903:16;:44::i;:::-;21898:128;;21975:35;;;;;;;;;;;;;;21898:128;21851:175;22065:2;22038:15;:24;22054:7;22038:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;22103:7;22099:2;22083:28;;22092:5;22083:28;;;;;;;;;;;;21795:324;21733:386;;:::o;51252:34::-;;;;:::o;13646:315::-;13699:7;13927:15;:13;:15::i;:::-;13912:12;;13896:13;;:28;:46;13889:53;;13646:315;:::o;31450:2800::-;31584:27;31614;31633:7;31614:18;:27::i;:::-;31584:57;;31699:4;31658:45;;31674:19;31658:45;;;31654:86;;31712:28;;;;;;;;;;;;;;31654:86;31754:27;31783:23;31810:28;31830:7;31810:19;:28::i;:::-;31753:85;;;;31938:62;31957:15;31974:4;31980:19;:17;:19::i;:::-;31938:18;:62::i;:::-;31933:174;;32020:43;32037:4;32043:19;:17;:19::i;:::-;32020:16;:43::i;:::-;32015:92;;32072:35;;;;;;;;;;;;;;32015:92;31933:174;32138:1;32124:16;;:2;:16;;;32120:52;;;32149:23;;;;;;;;;;;;;;32120:52;32185:43;32207:4;32213:2;32217:7;32226:1;32185:21;:43::i;:::-;32321:15;32318:160;;;32461:1;32440:19;32433:30;32318:160;32856:18;:24;32875:4;32856:24;;;;;;;;;;;;;;;;32854:26;;;;;;;;;;;;32925:18;:22;32944:2;32925:22;;;;;;;;;;;;;;;;32923:24;;;;;;;;;;;33247:145;33284:2;33332:45;33347:4;33353:2;33357:19;33332:14;:45::i;:::-;10874:8;33305:72;33247:18;:145::i;:::-;33218:17;:26;33236:7;33218:26;;;;;;;;;;;:174;;;;33562:1;10874:8;33512:19;:46;:51;33508:626;;;33584:19;33616:1;33606:7;:11;33584:33;;33773:1;33739:17;:30;33757:11;33739:30;;;;;;;;;;;;:35;33735:384;;;33877:13;;33862:11;:28;33858:242;;34057:19;34024:17;:30;34042:11;34024:30;;;;;;;;;;;:52;;;;33858:242;33735:384;33565:569;33508:626;34181:7;34177:2;34162:27;;34171:4;34162:27;;;;;;;;;;;;34200:42;34221:4;34227:2;34231:7;34240:1;34200:20;:42::i;:::-;31573:2677;;;31450:2800;;;:::o;51415:35::-;;;;:::o;53604:98::-;49235:13;:11;:13::i;:::-;53656:7:::1;:5;:7::i;:::-;53648:25;;:48;53674:21;53648:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;53604:98::o:0;23075:185::-;23213:39;23230:4;23236:2;23240:7;23213:39;;;;;;;;;;;;:16;:39::i;:::-;23075:185;;;:::o;52992:74::-;49235:13;:11;:13::i;:::-;53055:5:::1;53048:4;:12;;;;52992:74:::0;:::o;51494:27::-;;;;;;;;;;;;;:::o;53841:100::-;49235:13;:11;:13::i;:::-;53928:7:::1;;53912:13;:23;;;;;;;:::i;:::-;;53841:100:::0;;:::o;20028:144::-;20092:7;20135:27;20154:7;20135:18;:27::i;:::-;20112:52;;20028:144;;;:::o;52394:220::-;52480:11;51786:10;;;;;;;;;;;51781:38;;51805:14;;;;;;;;;;;;;;51781:38;51844:9;51830:23;;:10;:23;;;51826:50;;51862:14;;;;;;;;;;;;;;51826:50;51917:9;;51903:11;51887:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:39;51883:70;;;51935:18;;;;;;;;;;;;;;51883:70;51978:1;51964:11;:15;:51;;;;51997:18;;51983:11;:32;51964:51;51960:79;;;52024:15;;;;;;;;;;;;;;51960:79;52527:11:::1;52520:4;;:18;;;;:::i;:::-;52507:9;:32;52503:64;;;52548:19;;;;;;;;;;;;;;52503:64;52574:34;52584:10;52596:11;52574:9;:34::i;:::-;52394:220:::0;;:::o;51369:39::-;;;;:::o;51459:30::-;;;;;;;;;;;;;:::o;53073:96::-;49235:13;:11;:13::i;:::-;53153:10:::1;53141:9;:22;;;;53073:96:::0;:::o;15271:224::-;15335:7;15376:1;15359:19;;:5;:19;;;15355:60;;;15387:28;;;;;;;;;;;;;;15355:60;9826:13;15433:18;:25;15452:5;15433:25;;;;;;;;;;;;;;;;:54;15426:61;;15271:224;;;:::o;49997:103::-;49235:13;:11;:13::i;:::-;50062:30:::1;50089:1;50062:18;:30::i;:::-;49997:103::o:0;53400:88::-;49235:13;:11;:13::i;:::-;53478:4:::1;53462:13;:20;;;;53400:88:::0;:::o;52059:329::-;52120:11;51786:10;;;;;;;;;;;51781:38;;51805:14;;;;;;;;;;;;;;51781:38;51844:9;51830:23;;:10;:23;;;51826:50;;51862:14;;;;;;;;;;;;;;51826:50;51917:9;;51903:11;51887:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:39;51883:70;;;51935:18;;;;;;;;;;;;;;51883:70;51978:1;51964:11;:15;:51;;;;51997:18;;51983:11;:32;51964:51;51960:79;;;52024:15;;;;;;;;;;;;;;51960:79;52145:12:::1;:10;:12::i;:::-;52140:40;;52166:14;;;;;;;;;;;;;;52140:40;52231:20;;52217:11;52191;:23;52203:10;52191:23;;;;;;;;;;;;;;;;:37;;;;:::i;:::-;:60;52187:93;;;52260:20;;;;;;;;;;;;;;52187:93;52326:11;52299;:23;52311:10;52299:23;;;;;;;;;;;;;;;;:38;;;;;;;;;;;52348:34;52358:10;52370:11;52348:9;:34::i;:::-;52059:329:::0;;:::o;49349:87::-;49395:7;49422:6;;;;;;;;;;;49415:13;;49349:87;:::o;51327:37::-;;;;:::o;20408:104::-;20464:13;20497:7;20490:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20408:104;:::o;22461:308::-;22572:19;:17;:19::i;:::-;22560:31;;:8;:31;;;22556:61;;;22600:17;;;;;;;;;;;;;;22556:61;22682:8;22630:18;:39;22649:19;:17;:19::i;:::-;22630:39;;;;;;;;;;;;;;;:49;22670:8;22630:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;22742:8;22706:55;;22721:19;:17;:19::i;:::-;22706:55;;;22752:8;22706:55;;;;;;:::i;:::-;;;;;;;;22461:308;;:::o;53175:130::-;49235:13;:11;:13::i;:::-;53280:19:::1;53259:18;:40;;;;53175:130:::0;:::o;23331:399::-;23498:31;23511:4;23517:2;23521:7;23498:12;:31::i;:::-;23562:1;23544:2;:14;;;:19;23540:183;;23583:56;23614:4;23620:2;23624:7;23633:5;23583:30;:56::i;:::-;23578:145;;23667:40;;;;;;;;;;;;;;23578:145;23540:183;23331:399;;;;:::o;52755:98::-;52798:4;52834:13;;52818;:11;:13::i;:::-;:29;52811:36;;52755:98;:::o;54034:297::-;54133:13;54163:17;54171:8;54163:7;:17::i;:::-;54158:46;;54189:15;;;;;;;;;;;;;;54158:46;54218:8;;;;;;;;;;;54213:32;;54235:10;:8;:10::i;:::-;54228:17;;;;54213:32;54283:10;:8;:10::i;:::-;54295:19;:8;:17;:19::i;:::-;54266:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;54252:73;;54034:297;;;;:::o;51291:31::-;;;;:::o;53313:81::-;49235:13;:11;:13::i;:::-;53378:10:::1;;;;;;;;;;;53377:11;53364:10;;:24;;;;;;;;;;;;;;;;;;53313:81::o:0;53947:::-;49235:13;:11;:13::i;:::-;54017:5:::1;54006:8;;:16;;;;;;;;;;;;;;;;;;53947:81:::0;:::o;22840:164::-;22937:4;22961:18;:25;22980:5;22961:25;;;;;;;;;;;;;;;:35;22987:8;22961:35;;;;;;;;;;;;;;;;;;;;;;;;;22954:42;;22840:164;;;;:::o;52859:127::-;49235:13;:11;:13::i;:::-;52947:33:::1;52957:9;52968:11;52947:9;:33::i;:::-;52859:127:::0;;:::o;50255:201::-;49235:13;:11;:13::i;:::-;50364:1:::1;50344:22;;:8;:22;;;;50336:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;50420:28;50439:8;50420:18;:28::i;:::-;50255:201:::0;:::o;53494:104::-;49235:13;:11;:13::i;:::-;53588:4:::1;53565:20;:27;;;;53494:104:::0;:::o;23985:273::-;24042:4;24098:7;24079:15;:13;:15::i;:::-;:26;;:66;;;;;24132:13;;24122:7;:23;24079:66;:152;;;;;24230:1;10596:8;24183:17;:26;24201:7;24183:26;;;;;;;;;;;;:43;:48;24079:152;24059:172;;23985:273;;;:::o;42546:105::-;42606:7;42633:10;42626:17;;42546:105;:::o;52620:129::-;52713:7;52742:1;52735:8;;52620:129;:::o;16945:1129::-;17012:7;17032:12;17047:7;17032:22;;17115:4;17096:15;:13;:15::i;:::-;:23;17092:915;;17149:13;;17142:4;:20;17138:869;;;17187:14;17204:17;:23;17222:4;17204:23;;;;;;;;;;;;17187:40;;17320:1;10596:8;17293:6;:23;:28;17289:699;;;17812:113;17829:1;17819:6;:11;17812:113;;;17872:17;:25;17890:6;;;;;;;17872:25;;;;;;;;;;;;17863:34;;17812:113;;;17958:6;17951:13;;;;;;17289:699;17164:843;17138:869;17092:915;18035:31;;;;;;;;;;;;;;16945:1129;;;;:::o;29786:652::-;29881:27;29910:23;29951:53;30007:15;29951:71;;30193:7;30187:4;30180:21;30228:22;30222:4;30215:36;30304:4;30298;30288:21;30265:44;;30400:19;30394:26;30375:45;;30131:300;29786:652;;;:::o;30551:645::-;30693:11;30855:15;30849:4;30845:26;30837:34;;31014:15;31003:9;30999:31;30986:44;;31161:15;31150:9;31147:30;31140:4;31129:9;31126:19;31123:55;31113:65;;30551:645;;;;;:::o;41379:159::-;;;;;:::o;39691:309::-;39826:7;39846:16;10997:3;39872:19;:40;;39846:67;;10997:3;39939:31;39950:4;39956:2;39960:9;39939:10;:31::i;:::-;39931:40;;:61;;39924:68;;;39691:309;;;;;:::o;19519:447::-;19599:14;19767:15;19760:5;19756:27;19747:36;;19941:5;19927:11;19903:22;19899:40;19896:51;19889:5;19886:62;19876:72;;19519:447;;;;:::o;42197:158::-;;;;;:::o;49514:132::-;49589:12;:10;:12::i;:::-;49578:23;;:7;:5;:7::i;:::-;:23;;;49570:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49514:132::o;24342:104::-;24411:27;24421:2;24425:8;24411:27;;;;;;;;;;;;:9;:27::i;:::-;24342:104;;:::o;50616:191::-;50690:16;50709:6;;;;;;;;;;;50690:25;;50735:8;50726:6;;:17;;;;;;;;;;;;;;;;;;50790:8;50759:40;;50780:8;50759:40;;;;;;;;;;;;50679:128;50616:191;:::o;38201:716::-;38364:4;38410:2;38385:45;;;38431:19;:17;:19::i;:::-;38452:4;38458:7;38467:5;38385:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;38381:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38685:1;38668:6;:13;:18;38664:235;;;38714:40;;;;;;;;;;;;;;38664:235;38857:6;38851:13;38842:6;38838:2;38834:15;38827:38;38381:529;38554:54;;;38544:64;;;:6;:64;;;;38537:71;;;38201:716;;;;;;:::o;53727:108::-;53787:13;53816;53809:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53727:108;:::o;45154:723::-;45210:13;45440:1;45431:5;:10;45427:53;;;45458:10;;;;;;;;;;;;;;;;;;;;;45427:53;45490:12;45505:5;45490:20;;45521:14;45546:78;45561:1;45553:4;:9;45546:78;;45579:8;;;;;:::i;:::-;;;;45610:2;45602:10;;;;;:::i;:::-;;;45546:78;;;45634:19;45666:6;45656:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45634:39;;45684:154;45700:1;45691:5;:10;45684:154;;45728:1;45718:11;;;;;:::i;:::-;;;45795:2;45787:5;:10;;;;:::i;:::-;45774:2;:24;;;;:::i;:::-;45761:39;;45744:6;45751;45744:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;45824:2;45815:11;;;;;:::i;:::-;;;45684:154;;;45862:6;45848:21;;;;;45154:723;;;;:::o;40576:147::-;40713:6;40576:147;;;;;:::o;47900:98::-;47953:7;47980:10;47973:17;;47900:98;:::o;24862:681::-;24985:19;24991:2;24995:8;24985:5;:19::i;:::-;25064:1;25046:2;:14;;;:19;25042:483;;25086:11;25100:13;;25086:27;;25132:13;25154:8;25148:3;:14;25132:30;;25181:233;25212:62;25251:1;25255:2;25259:7;;;;;;25268:5;25212:30;:62::i;:::-;25207:167;;25310:40;;;;;;;;;;;;;;25207:167;25409:3;25401:5;:11;25181:233;;25496:3;25479:13;;:20;25475:34;;25501:8;;;25475:34;25067:458;;25042:483;24862:681;;;:::o;25816:1529::-;25881:20;25904:13;;25881:36;;25946:1;25932:16;;:2;:16;;;25928:48;;;25957:19;;;;;;;;;;;;;;25928:48;26003:1;25991:8;:13;25987:44;;;26013:18;;;;;;;;;;;;;;25987:44;26044:61;26074:1;26078:2;26082:12;26096:8;26044:21;:61::i;:::-;26587:1;9963:2;26558:1;:25;;26557:31;26545:8;:44;26519:18;:22;26538:2;26519:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;26866:139;26903:2;26957:33;26980:1;26984:2;26988:1;26957:14;:33::i;:::-;26924:30;26945:8;26924:20;:30::i;:::-;:66;26866:18;:139::i;:::-;26832:17;:31;26850:12;26832:31;;;;;;;;;;;:173;;;;27022:15;27040:12;27022:30;;27067:11;27096:8;27081:12;:23;27067:37;;27119:101;27171:9;;;;;;27167:2;27146:35;;27163:1;27146:35;;;;;;;;;;;;27215:3;27205:7;:13;27119:101;;27252:3;27236:13;:19;;;;26293:974;;27277:60;27306:1;27310:2;27314:12;27328:8;27277:20;:60::i;:::-;25870:1475;25816:1529;;:::o;21349:322::-;21419:14;21650:1;21640:8;21637:15;21612:23;21608:45;21598:55;;21349:322;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;568:133::-;611:5;649:6;636:20;627:29;;665:30;689:5;665:30;:::i;:::-;568:133;;;;:::o;707:137::-;752:5;790:6;777:20;768:29;;806:32;832:5;806:32;:::i;:::-;707:137;;;;:::o;850:141::-;906:5;937:6;931:13;922:22;;953:32;979:5;953:32;:::i;:::-;850:141;;;;:::o;1010:338::-;1065:5;1114:3;1107:4;1099:6;1095:17;1091:27;1081:122;;1122:79;;:::i;:::-;1081:122;1239:6;1226:20;1264:78;1338:3;1330:6;1323:4;1315:6;1311:17;1264:78;:::i;:::-;1255:87;;1071:277;1010:338;;;;:::o;1368:553::-;1426:8;1436:6;1486:3;1479:4;1471:6;1467:17;1463:27;1453:122;;1494:79;;:::i;:::-;1453:122;1607:6;1594:20;1584:30;;1637:18;1629:6;1626:30;1623:117;;;1659:79;;:::i;:::-;1623:117;1773:4;1765:6;1761:17;1749:29;;1827:3;1819:4;1811:6;1807:17;1797:8;1793:32;1790:41;1787:128;;;1834:79;;:::i;:::-;1787:128;1368:553;;;;;:::o;1927:139::-;1973:5;2011:6;1998:20;1989:29;;2027:33;2054:5;2027:33;:::i;:::-;1927:139;;;;:::o;2072:329::-;2131:6;2180:2;2168:9;2159:7;2155:23;2151:32;2148:119;;;2186:79;;:::i;:::-;2148:119;2306:1;2331:53;2376:7;2367:6;2356:9;2352:22;2331:53;:::i;:::-;2321:63;;2277:117;2072:329;;;;:::o;2407:474::-;2475:6;2483;2532:2;2520:9;2511:7;2507:23;2503:32;2500:119;;;2538:79;;:::i;:::-;2500:119;2658:1;2683:53;2728:7;2719:6;2708:9;2704:22;2683:53;:::i;:::-;2673:63;;2629:117;2785:2;2811:53;2856:7;2847:6;2836:9;2832:22;2811:53;:::i;:::-;2801:63;;2756:118;2407:474;;;;;:::o;2887:619::-;2964:6;2972;2980;3029:2;3017:9;3008:7;3004:23;3000:32;2997:119;;;3035:79;;:::i;:::-;2997:119;3155:1;3180:53;3225:7;3216:6;3205:9;3201:22;3180:53;:::i;:::-;3170:63;;3126:117;3282:2;3308:53;3353:7;3344:6;3333:9;3329:22;3308:53;:::i;:::-;3298:63;;3253:118;3410:2;3436:53;3481:7;3472:6;3461:9;3457:22;3436:53;:::i;:::-;3426:63;;3381:118;2887:619;;;;;:::o;3512:943::-;3607:6;3615;3623;3631;3680:3;3668:9;3659:7;3655:23;3651:33;3648:120;;;3687:79;;:::i;:::-;3648:120;3807:1;3832:53;3877:7;3868:6;3857:9;3853:22;3832:53;:::i;:::-;3822:63;;3778:117;3934:2;3960:53;4005:7;3996:6;3985:9;3981:22;3960:53;:::i;:::-;3950:63;;3905:118;4062:2;4088:53;4133:7;4124:6;4113:9;4109:22;4088:53;:::i;:::-;4078:63;;4033:118;4218:2;4207:9;4203:18;4190:32;4249:18;4241:6;4238:30;4235:117;;;4271:79;;:::i;:::-;4235:117;4376:62;4430:7;4421:6;4410:9;4406:22;4376:62;:::i;:::-;4366:72;;4161:287;3512:943;;;;;;;:::o;4461:468::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:50;4904:7;4895:6;4884:9;4880:22;4862:50;:::i;:::-;4852:60;;4807:115;4461:468;;;;;:::o;4935:474::-;5003:6;5011;5060:2;5048:9;5039:7;5035:23;5031:32;5028:119;;;5066:79;;:::i;:::-;5028:119;5186:1;5211:53;5256:7;5247:6;5236:9;5232:22;5211:53;:::i;:::-;5201:63;;5157:117;5313:2;5339:53;5384:7;5375:6;5364:9;5360:22;5339:53;:::i;:::-;5329:63;;5284:118;4935:474;;;;;:::o;5415:323::-;5471:6;5520:2;5508:9;5499:7;5495:23;5491:32;5488:119;;;5526:79;;:::i;:::-;5488:119;5646:1;5671:50;5713:7;5704:6;5693:9;5689:22;5671:50;:::i;:::-;5661:60;;5617:114;5415:323;;;;:::o;5744:327::-;5802:6;5851:2;5839:9;5830:7;5826:23;5822:32;5819:119;;;5857:79;;:::i;:::-;5819:119;5977:1;6002:52;6046:7;6037:6;6026:9;6022:22;6002:52;:::i;:::-;5992:62;;5948:116;5744:327;;;;:::o;6077:349::-;6146:6;6195:2;6183:9;6174:7;6170:23;6166:32;6163:119;;;6201:79;;:::i;:::-;6163:119;6321:1;6346:63;6401:7;6392:6;6381:9;6377:22;6346:63;:::i;:::-;6336:73;;6292:127;6077:349;;;;:::o;6432:529::-;6503:6;6511;6560:2;6548:9;6539:7;6535:23;6531:32;6528:119;;;6566:79;;:::i;:::-;6528:119;6714:1;6703:9;6699:17;6686:31;6744:18;6736:6;6733:30;6730:117;;;6766:79;;:::i;:::-;6730:117;6879:65;6936:7;6927:6;6916:9;6912:22;6879:65;:::i;:::-;6861:83;;;;6657:297;6432:529;;;;;:::o;6967:329::-;7026:6;7075:2;7063:9;7054:7;7050:23;7046:32;7043:119;;;7081:79;;:::i;:::-;7043:119;7201:1;7226:53;7271:7;7262:6;7251:9;7247:22;7226:53;:::i;:::-;7216:63;;7172:117;6967:329;;;;:::o;7302:474::-;7370:6;7378;7427:2;7415:9;7406:7;7402:23;7398:32;7395:119;;;7433:79;;:::i;:::-;7395:119;7553:1;7578:53;7623:7;7614:6;7603:9;7599:22;7578:53;:::i;:::-;7568:63;;7524:117;7680:2;7706:53;7751:7;7742:6;7731:9;7727:22;7706:53;:::i;:::-;7696:63;;7651:118;7302:474;;;;;:::o;7782:118::-;7869:24;7887:5;7869:24;:::i;:::-;7864:3;7857:37;7782:118;;:::o;7906:109::-;7987:21;8002:5;7987:21;:::i;:::-;7982:3;7975:34;7906:109;;:::o;8021:360::-;8107:3;8135:38;8167:5;8135:38;:::i;:::-;8189:70;8252:6;8247:3;8189:70;:::i;:::-;8182:77;;8268:52;8313:6;8308:3;8301:4;8294:5;8290:16;8268:52;:::i;:::-;8345:29;8367:6;8345:29;:::i;:::-;8340:3;8336:39;8329:46;;8111:270;8021:360;;;;:::o;8387:364::-;8475:3;8503:39;8536:5;8503:39;:::i;:::-;8558:71;8622:6;8617:3;8558:71;:::i;:::-;8551:78;;8638:52;8683:6;8678:3;8671:4;8664:5;8660:16;8638:52;:::i;:::-;8715:29;8737:6;8715:29;:::i;:::-;8710:3;8706:39;8699:46;;8479:272;8387:364;;;;:::o;8757:377::-;8863:3;8891:39;8924:5;8891:39;:::i;:::-;8946:89;9028:6;9023:3;8946:89;:::i;:::-;8939:96;;9044:52;9089:6;9084:3;9077:4;9070:5;9066:16;9044:52;:::i;:::-;9121:6;9116:3;9112:16;9105:23;;8867:267;8757:377;;;;:::o;9140:366::-;9282:3;9303:67;9367:2;9362:3;9303:67;:::i;:::-;9296:74;;9379:93;9468:3;9379:93;:::i;:::-;9497:2;9492:3;9488:12;9481:19;;9140:366;;;:::o;9512:400::-;9672:3;9693:84;9775:1;9770:3;9693:84;:::i;:::-;9686:91;;9786:93;9875:3;9786:93;:::i;:::-;9904:1;9899:3;9895:11;9888:18;;9512:400;;;:::o;9918:366::-;10060:3;10081:67;10145:2;10140:3;10081:67;:::i;:::-;10074:74;;10157:93;10246:3;10157:93;:::i;:::-;10275:2;10270:3;10266:12;10259:19;;9918:366;;;:::o;10290:118::-;10377:24;10395:5;10377:24;:::i;:::-;10372:3;10365:37;10290:118;;:::o;10414:701::-;10695:3;10717:95;10808:3;10799:6;10717:95;:::i;:::-;10710:102;;10829:95;10920:3;10911:6;10829:95;:::i;:::-;10822:102;;10941:148;11085:3;10941:148;:::i;:::-;10934:155;;11106:3;11099:10;;10414:701;;;;;:::o;11121:222::-;11214:4;11252:2;11241:9;11237:18;11229:26;;11265:71;11333:1;11322:9;11318:17;11309:6;11265:71;:::i;:::-;11121:222;;;;:::o;11349:640::-;11544:4;11582:3;11571:9;11567:19;11559:27;;11596:71;11664:1;11653:9;11649:17;11640:6;11596:71;:::i;:::-;11677:72;11745:2;11734:9;11730:18;11721:6;11677:72;:::i;:::-;11759;11827:2;11816:9;11812:18;11803:6;11759:72;:::i;:::-;11878:9;11872:4;11868:20;11863:2;11852:9;11848:18;11841:48;11906:76;11977:4;11968:6;11906:76;:::i;:::-;11898:84;;11349:640;;;;;;;:::o;11995:210::-;12082:4;12120:2;12109:9;12105:18;12097:26;;12133:65;12195:1;12184:9;12180:17;12171:6;12133:65;:::i;:::-;11995:210;;;;:::o;12211:313::-;12324:4;12362:2;12351:9;12347:18;12339:26;;12411:9;12405:4;12401:20;12397:1;12386:9;12382:17;12375:47;12439:78;12512:4;12503:6;12439:78;:::i;:::-;12431:86;;12211:313;;;;:::o;12530:419::-;12696:4;12734:2;12723:9;12719:18;12711:26;;12783:9;12777:4;12773:20;12769:1;12758:9;12754:17;12747:47;12811:131;12937:4;12811:131;:::i;:::-;12803:139;;12530:419;;;:::o;12955:::-;13121:4;13159:2;13148:9;13144:18;13136:26;;13208:9;13202:4;13198:20;13194:1;13183:9;13179:17;13172:47;13236:131;13362:4;13236:131;:::i;:::-;13228:139;;12955:419;;;:::o;13380:222::-;13473:4;13511:2;13500:9;13496:18;13488:26;;13524:71;13592:1;13581:9;13577:17;13568:6;13524:71;:::i;:::-;13380:222;;;;:::o;13608:129::-;13642:6;13669:20;;:::i;:::-;13659:30;;13698:33;13726:4;13718:6;13698:33;:::i;:::-;13608:129;;;:::o;13743:75::-;13776:6;13809:2;13803:9;13793:19;;13743:75;:::o;13824:307::-;13885:4;13975:18;13967:6;13964:30;13961:56;;;13997:18;;:::i;:::-;13961:56;14035:29;14057:6;14035:29;:::i;:::-;14027:37;;14119:4;14113;14109:15;14101:23;;13824:307;;;:::o;14137:98::-;14188:6;14222:5;14216:12;14206:22;;14137:98;;;:::o;14241:99::-;14293:6;14327:5;14321:12;14311:22;;14241:99;;;:::o;14346:168::-;14429:11;14463:6;14458:3;14451:19;14503:4;14498:3;14494:14;14479:29;;14346:168;;;;:::o;14520:169::-;14604:11;14638:6;14633:3;14626:19;14678:4;14673:3;14669:14;14654:29;;14520:169;;;;:::o;14695:148::-;14797:11;14834:3;14819:18;;14695:148;;;;:::o;14849:305::-;14889:3;14908:20;14926:1;14908:20;:::i;:::-;14903:25;;14942:20;14960:1;14942:20;:::i;:::-;14937:25;;15096:1;15028:66;15024:74;15021:1;15018:81;15015:107;;;15102:18;;:::i;:::-;15015:107;15146:1;15143;15139:9;15132:16;;14849:305;;;;:::o;15160:185::-;15200:1;15217:20;15235:1;15217:20;:::i;:::-;15212:25;;15251:20;15269:1;15251:20;:::i;:::-;15246:25;;15290:1;15280:35;;15295:18;;:::i;:::-;15280:35;15337:1;15334;15330:9;15325:14;;15160:185;;;;:::o;15351:348::-;15391:7;15414:20;15432:1;15414:20;:::i;:::-;15409:25;;15448:20;15466:1;15448:20;:::i;:::-;15443:25;;15636:1;15568:66;15564:74;15561:1;15558:81;15553:1;15546:9;15539:17;15535:105;15532:131;;;15643:18;;:::i;:::-;15532:131;15691:1;15688;15684:9;15673:20;;15351:348;;;;:::o;15705:191::-;15745:4;15765:20;15783:1;15765:20;:::i;:::-;15760:25;;15799:20;15817:1;15799:20;:::i;:::-;15794:25;;15838:1;15835;15832:8;15829:34;;;15843:18;;:::i;:::-;15829:34;15888:1;15885;15881:9;15873:17;;15705:191;;;;:::o;15902:96::-;15939:7;15968:24;15986:5;15968:24;:::i;:::-;15957:35;;15902:96;;;:::o;16004:90::-;16038:7;16081:5;16074:13;16067:21;16056:32;;16004:90;;;:::o;16100:149::-;16136:7;16176:66;16169:5;16165:78;16154:89;;16100:149;;;:::o;16255:126::-;16292:7;16332:42;16325:5;16321:54;16310:65;;16255:126;;;:::o;16387:77::-;16424:7;16453:5;16442:16;;16387:77;;;:::o;16470:154::-;16554:6;16549:3;16544;16531:30;16616:1;16607:6;16602:3;16598:16;16591:27;16470:154;;;:::o;16630:307::-;16698:1;16708:113;16722:6;16719:1;16716:13;16708:113;;;16807:1;16802:3;16798:11;16792:18;16788:1;16783:3;16779:11;16772:39;16744:2;16741:1;16737:10;16732:15;;16708:113;;;16839:6;16836:1;16833:13;16830:101;;;16919:1;16910:6;16905:3;16901:16;16894:27;16830:101;16679:258;16630:307;;;:::o;16943:320::-;16987:6;17024:1;17018:4;17014:12;17004:22;;17071:1;17065:4;17061:12;17092:18;17082:81;;17148:4;17140:6;17136:17;17126:27;;17082:81;17210:2;17202:6;17199:14;17179:18;17176:38;17173:84;;;17229:18;;:::i;:::-;17173:84;16994:269;16943:320;;;:::o;17269:281::-;17352:27;17374:4;17352:27;:::i;:::-;17344:6;17340:40;17482:6;17470:10;17467:22;17446:18;17434:10;17431:34;17428:62;17425:88;;;17493:18;;:::i;:::-;17425:88;17533:10;17529:2;17522:22;17312:238;17269:281;;:::o;17556:233::-;17595:3;17618:24;17636:5;17618:24;:::i;:::-;17609:33;;17664:66;17657:5;17654:77;17651:103;;;17734:18;;:::i;:::-;17651:103;17781:1;17774:5;17770:13;17763:20;;17556:233;;;:::o;17795:176::-;17827:1;17844:20;17862:1;17844:20;:::i;:::-;17839:25;;17878:20;17896:1;17878:20;:::i;:::-;17873:25;;17917:1;17907:35;;17922:18;;:::i;:::-;17907:35;17963:1;17960;17956:9;17951:14;;17795:176;;;;:::o;17977:180::-;18025:77;18022:1;18015:88;18122:4;18119:1;18112:15;18146:4;18143:1;18136:15;18163:180;18211:77;18208:1;18201:88;18308:4;18305:1;18298:15;18332:4;18329:1;18322:15;18349:180;18397:77;18394:1;18387:88;18494:4;18491:1;18484:15;18518:4;18515:1;18508:15;18535:180;18583:77;18580:1;18573:88;18680:4;18677:1;18670:15;18704:4;18701:1;18694:15;18721:180;18769:77;18766:1;18759:88;18866:4;18863:1;18856:15;18890:4;18887:1;18880:15;18907:117;19016:1;19013;19006:12;19030:117;19139:1;19136;19129:12;19153:117;19262:1;19259;19252:12;19276:117;19385:1;19382;19375:12;19399:117;19508:1;19505;19498:12;19522:117;19631:1;19628;19621:12;19645:102;19686:6;19737:2;19733:7;19728:2;19721:5;19717:14;19713:28;19703:38;;19645:102;;;:::o;19753:225::-;19893:34;19889:1;19881:6;19877:14;19870:58;19962:8;19957:2;19949:6;19945:15;19938:33;19753:225;:::o;19984:155::-;20124:7;20120:1;20112:6;20108:14;20101:31;19984:155;:::o;20145:182::-;20285:34;20281:1;20273:6;20269:14;20262:58;20145:182;:::o;20333:122::-;20406:24;20424:5;20406:24;:::i;:::-;20399:5;20396:35;20386:63;;20445:1;20442;20435:12;20386:63;20333:122;:::o;20461:116::-;20531:21;20546:5;20531:21;:::i;:::-;20524:5;20521:32;20511:60;;20567:1;20564;20557:12;20511:60;20461:116;:::o;20583:120::-;20655:23;20672:5;20655:23;:::i;:::-;20648:5;20645:34;20635:62;;20693:1;20690;20683:12;20635:62;20583:120;:::o;20709:122::-;20782:24;20800:5;20782:24;:::i;:::-;20775:5;20772:35;20762:63;;20821:1;20818;20811:12;20762:63;20709:122;:::o

Swarm Source

ipfs://64a8e5781864e9186f39f51b92eae3df80ade648d9d980d92dd3128cb08aaba0
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.