ETH Price: $2,972.07 (+1.78%)
Gas: 2 Gwei

Token

RoRo (RR)
 

Overview

Max Total Supply

6,666 RR

Holders

4,137

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 RR
0xdf4cb6f6272c013c13da84231b099c4098bbe623
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:
RoRo

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-05-25
*/

// SPDX-License-Identifier: MIT
// File: contracts/RoRo.sol

/**
 *Submitted for verification at Etherscan.io on 2022-05-25
*/

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v4.0.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();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

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

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

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

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v4.0.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 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`
    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 auxillary 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 auxillary 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;
        assembly { // Cast aux without masking.
            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;
    }

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

    /**
     * @dev Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev Casts the boolean to uint256 without branching.
     */
    function _boolToUint256(bool value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

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

        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-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (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.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (to.code.length != 0) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex < end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex < end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

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

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

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

        bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
            isApprovedForAll(from, _msgSenderERC721A()) ||
            getApproved(tokenId) == _msgSenderERC721A());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // 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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

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

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
                isApprovedForAll(from, _msgSenderERC721A()) ||
                getApproved(tokenId) == _msgSenderERC721A());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // 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] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED | 
                BITMASK_NEXT_INITIALIZED;

            // 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 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/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 v4.4.1 (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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

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

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

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

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

// File: contracts/RoRo.sol



pragma solidity ^0.8.0;




contract RoRo is ERC721A, Ownable {
	using Strings for uint;

	uint public constant MAX_SUPPLY = 6666;
	uint public constant RORO_LIMIT = 20;
	uint public constant MINT_PRICE = 0.015 ether;
	
	address public immutable PAYMENT_PROCESSOR;

    bool public isMetadataLocked = false;
	bool public isPaused = false;
    string private _baseURL;
	string public prerevealURL = 'ipfs://QmTBGGU954NiMnrvf2KzWAHaHmXVAuruJMtBL3N5TTwpYL/hidden.json';
	mapping(address => uint) private _roroWhisperCount;

	constructor(address paymentsAddress_) 
	ERC721A('RoRo', 'RR') {
        PAYMENT_PROCESSOR = paymentsAddress_;
    }

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

	function _startTokenId() internal pure override returns (uint) {
		return 1;
	}

    function lockMetadata() external onlyOwner {
        isMetadataLocked = true;
    }

	function reveal(string memory url) external onlyOwner {
        require(!isMetadataLocked, "RoRo: Metadata is finalized");
		_baseURL = url;
	}

    function mintedCount(address owner) external view returns (uint) {
        return _roroWhisperCount[owner];
    }


	function setPause(bool value) external onlyOwner {
		isPaused = value;
	}

	function withdraw() external onlyOwner {
		uint balance = address(this).balance;
		require(balance > 0, 'Nothing to Withdraw');
		payable(PAYMENT_PROCESSOR).transfer(balance);
	}

	function airdrop(address to, uint count) external onlyOwner {
		require(
			_totalMinted() + count <= MAX_SUPPLY,
			'RoRo: Over limit'
		);
		_safeMint(to, count);
	}

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

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

	function mint(uint count) external payable {
		require(!isPaused, 'RoRo: Sales are off');
		require(count <= RORO_LIMIT,'RoRo: Over limit');
		require(_totalMinted() + count <= MAX_SUPPLY,'RoRo: Over limit');

        uint payForCount = count;
        if(_roroWhisperCount[msg.sender] == 0) {
			payForCount--;
        }

		require(
			msg.value >= payForCount * MINT_PRICE,
			'RoRo: Ether value sent is not sufficient'
		);

		_roroWhisperCount[msg.sender] += count;
		_safeMint(msg.sender, count);
	}
	
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"paymentsAddress_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAYMENT_PROCESSOR","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RORO_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"isMetadataLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"mintedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"prerevealURL","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"url","type":"string"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setPause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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"}]

6008805461ffff60a01b19169055610120604052604160a08181529062001e9060c03980516200003891600a916020909101906200014a565b503480156200004657600080fd5b5060405162001ed138038062001ed18339810160408190526200006991620001f0565b60405180604001604052806004815260200163526f526f60e01b81525060405180604001604052806002815260200161292960f11b8152508160029080519060200190620000b99291906200014a565b508051620000cf9060039060208401906200014a565b5050600160005550620000e233620000f8565b60601b6001600160601b0319166080526200025f565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001589062000222565b90600052602060002090601f0160209004810192826200017c5760008555620001c7565b82601f106200019757805160ff1916838001178555620001c7565b82800160010185558215620001c7579182015b82811115620001c7578251825591602001919060010190620001aa565b50620001d5929150620001d9565b5090565b5b80821115620001d55760008155600101620001da565b6000602082840312156200020357600080fd5b81516001600160a01b03811681146200021b57600080fd5b9392505050565b600181811c908216806200023757607f821691505b602082108114156200025957634e487b7160e01b600052602260045260246000fd5b50919050565b60805160601c611c0b620002856000396000818161045701526108790152611c0b6000f3fe6080604052600436106101d85760003560e01c80638da5cb5b11610102578063bedb86fb11610095578063d821048211610064578063d821048214610536578063e985e9c51461054b578063f2fde38b14610594578063fddcb5ea146105b457600080fd5b8063bedb86fb146104ba578063c002d23d146104da578063c87b56dd146104f5578063d7e45cd71461051557600080fd5b8063a22cb465116100d1578063a22cb46514610425578063af2ae42514610445578063b187bd2614610479578063b88d4fde1461049a57600080fd5b80638da5cb5b146103ca57806395d89b41146103e8578063989bdbb6146103fd578063a0712d681461041257600080fd5b806332cb6b0c1161017a5780636352211e116101495780636352211e1461035557806370a0823114610375578063715018a6146103955780638ba4cc3c146103aa57600080fd5b806332cb6b0c146102ea5780633ccfd60b1461030057806342842e0e146103155780634c2612471461033557600080fd5b8063095ea7b3116101b6578063095ea7b31461026c57806318160ddd1461028e57806323b872dd146102b557806330d6c42c146102d557600080fd5b806301ffc9a7146101dd57806306fdde0314610212578063081812fc14610234575b600080fd5b3480156101e957600080fd5b506101fd6101f83660046118a2565b6105ea565b60405190151581526020015b60405180910390f35b34801561021e57600080fd5b5061022761063c565b60405161020991906119e6565b34801561024057600080fd5b5061025461024f366004611925565b6106ce565b6040516001600160a01b039091168152602001610209565b34801561027857600080fd5b5061028c61028736600461185d565b610712565b005b34801561029a57600080fd5b5060015460005403600019015b604051908152602001610209565b3480156102c157600080fd5b5061028c6102d036600461177b565b6107e5565b3480156102e157600080fd5b506102a7601481565b3480156102f657600080fd5b506102a7611a0a81565b34801561030c57600080fd5b5061028c6107f5565b34801561032157600080fd5b5061028c61033036600461177b565b6108c6565b34801561034157600080fd5b5061028c6103503660046118dc565b6108e1565b34801561036157600080fd5b50610254610370366004611925565b610978565b34801561038157600080fd5b506102a761039036600461172d565b610983565b3480156103a157600080fd5b5061028c6109d2565b3480156103b657600080fd5b5061028c6103c536600461185d565b610a08565b3480156103d657600080fd5b506008546001600160a01b0316610254565b3480156103f457600080fd5b50610227610a75565b34801561040957600080fd5b5061028c610a84565b61028c610420366004611925565b610ac3565b34801561043157600080fd5b5061028c610440366004611833565b610c31565b34801561045157600080fd5b506102547f000000000000000000000000000000000000000000000000000000000000000081565b34801561048557600080fd5b506008546101fd90600160a81b900460ff1681565b3480156104a657600080fd5b5061028c6104b53660046117b7565b610cc7565b3480156104c657600080fd5b5061028c6104d5366004611887565b610d11565b3480156104e657600080fd5b506102a766354a6ba7a1800081565b34801561050157600080fd5b50610227610510366004611925565b610d59565b34801561052157600080fd5b506008546101fd90600160a01b900460ff1681565b34801561054257600080fd5b50610227610e9f565b34801561055757600080fd5b506101fd610566366004611748565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156105a057600080fd5b5061028c6105af36600461172d565b610f2d565b3480156105c057600080fd5b506102a76105cf36600461172d565b6001600160a01b03166000908152600b602052604090205490565b60006301ffc9a760e01b6001600160e01b03198316148061061b57506380ac58cd60e01b6001600160e01b03198316145b806106365750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461064b90611afd565b80601f016020809104026020016040519081016040528092919081815260200182805461067790611afd565b80156106c45780601f10610699576101008083540402835291602001916106c4565b820191906000526020600020905b8154815290600101906020018083116106a757829003601f168201915b5050505050905090565b60006106d982610fc8565b6106f6576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061071d82610ffd565b9050806001600160a01b0316836001600160a01b031614156107525760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146107895761076c8133610566565b610789576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6107f083838361106d565b505050565b6008546001600160a01b031633146108285760405162461bcd60e51b815260040161081f90611a23565b60405180910390fd5b478061086c5760405162461bcd60e51b81526020600482015260136024820152724e6f7468696e6720746f20576974686472617760681b604482015260640161081f565b6040516001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169082156108fc029083906000818181858888f193505050501580156108c2573d6000803e3d6000fd5b5050565b6107f083838360405180602001604052806000815250610cc7565b6008546001600160a01b0316331461090b5760405162461bcd60e51b815260040161081f90611a23565b600854600160a01b900460ff16156109655760405162461bcd60e51b815260206004820152601b60248201527f526f526f3a204d657461646174612069732066696e616c697a65640000000000604482015260640161081f565b80516108c29060099060208401906115f2565b600061063682610ffd565b60006001600160a01b0382166109ac576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146109fc5760405162461bcd60e51b815260040161081f90611a23565b610a066000611210565b565b6008546001600160a01b03163314610a325760405162461bcd60e51b815260040161081f90611a23565b611a0a81610a436000546000190190565b610a4d9190611a58565b1115610a6b5760405162461bcd60e51b815260040161081f906119f9565b6108c28282611262565b60606003805461064b90611afd565b6008546001600160a01b03163314610aae5760405162461bcd60e51b815260040161081f90611a23565b6008805460ff60a01b1916600160a01b179055565b600854600160a81b900460ff1615610b135760405162461bcd60e51b81526020600482015260136024820152722937a9379d1029b0b632b99030b9329037b33360691b604482015260640161081f565b6014811115610b345760405162461bcd60e51b815260040161081f906119f9565b611a0a81610b456000546000190190565b610b4f9190611a58565b1115610b6d5760405162461bcd60e51b815260040161081f906119f9565b336000908152600b60205260409020548190610b915780610b8d81611ae6565b9150505b610ba266354a6ba7a1800082611a84565b341015610c025760405162461bcd60e51b815260206004820152602860248201527f526f526f3a2045746865722076616c75652073656e74206973206e6f7420737560448201526719999a58da595b9d60c21b606482015260840161081f565b336000908152600b602052604081208054849290610c21908490611a58565b909155506108c290503383611262565b6001600160a01b038216331415610c5b5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610cd284848461106d565b6001600160a01b0383163b15610d0b57610cee8484848461127c565b610d0b576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b03163314610d3b5760405162461bcd60e51b815260040161081f90611a23565b60088054911515600160a81b0260ff60a81b19909216919091179055565b6060610d6482610fc8565b610dc85760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161081f565b6000610dd2611374565b5111610e6857600a8054610de590611afd565b80601f0160208091040260200160405190810160405280929190818152602001828054610e1190611afd565b8015610e5e5780601f10610e3357610100808354040283529160200191610e5e565b820191906000526020600020905b815481529060010190602001808311610e4157829003601f168201915b5050505050610636565b610e70611374565b610e7983611383565b604051602001610e8a92919061196a565b60405160208183030381529060405292915050565b600a8054610eac90611afd565b80601f0160208091040260200160405190810160405280929190818152602001828054610ed890611afd565b8015610f255780601f10610efa57610100808354040283529160200191610f25565b820191906000526020600020905b815481529060010190602001808311610f0857829003601f168201915b505050505081565b6008546001600160a01b03163314610f575760405162461bcd60e51b815260040161081f90611a23565b6001600160a01b038116610fbc5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161081f565b610fc581611210565b50565b600081600111158015610fdc575060005482105b8015610636575050600090815260046020526040902054600160e01b161590565b600081806001116110545760005481101561105457600081815260046020526040902054600160e01b8116611052575b8061104b57506000190160008181526004602052604090205461102d565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b600061107882610ffd565b9050836001600160a01b0316816001600160a01b0316146110ab5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806110c957506110c98533610566565b806110e45750336110d9846106ce565b6001600160a01b0316145b90508061110457604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661112b57604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091529020600160e11b4260a01b8617811790915582166111c857600183016000818152600460205260409020546111c65760005481146111c65760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6108c2828260405180602001604052806000815250611481565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906112b19033908990889088906004016119a9565b602060405180830381600087803b1580156112cb57600080fd5b505af19250505080156112fb575060408051601f3d908101601f191682019092526112f8918101906118bf565b60015b611356573d808015611329576040519150601f19603f3d011682016040523d82523d6000602084013e61132e565b606091505b50805161134e576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606009805461064b90611afd565b6060816113a75750506040805180820190915260018152600360fc1b602082015290565b8160005b81156113d157806113bb81611b38565b91506113ca9050600a83611a70565b91506113ab565b60008167ffffffffffffffff8111156113ec576113ec611ba9565b6040519080825280601f01601f191660200182016040528015611416576020820181803683370190505b5090505b841561136c5761142b600183611aa3565b9150611438600a86611b53565b611443906030611a58565b60f81b81838151811061145857611458611b93565b60200101906001600160f81b031916908160001a90535061147a600a86611a70565b945061141a565b6000546001600160a01b0384166114aa57604051622e076360e81b815260040160405180910390fd5b826114c85760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b1561159d575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611566600087848060010195508761127c565b611583576040516368d2bf6b60e11b815260040160405180910390fd5b80821061151b57826000541461159857600080fd5b6115e2565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821061159e575b506000908155610d0b9085838684565b8280546115fe90611afd565b90600052602060002090601f0160209004810192826116205760008555611666565b82601f1061163957805160ff1916838001178555611666565b82800160010185558215611666579182015b8281111561166657825182559160200191906001019061164b565b50611672929150611676565b5090565b5b808211156116725760008155600101611677565b600067ffffffffffffffff808411156116a6576116a6611ba9565b604051601f8501601f19908116603f011681019082821181831017156116ce576116ce611ba9565b816040528093508581528686860111156116e757600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461171857600080fd5b919050565b8035801515811461171857600080fd5b60006020828403121561173f57600080fd5b61104b82611701565b6000806040838503121561175b57600080fd5b61176483611701565b915061177260208401611701565b90509250929050565b60008060006060848603121561179057600080fd5b61179984611701565b92506117a760208501611701565b9150604084013590509250925092565b600080600080608085870312156117cd57600080fd5b6117d685611701565b93506117e460208601611701565b925060408501359150606085013567ffffffffffffffff81111561180757600080fd5b8501601f8101871361181857600080fd5b6118278782356020840161168b565b91505092959194509250565b6000806040838503121561184657600080fd5b61184f83611701565b91506117726020840161171d565b6000806040838503121561187057600080fd5b61187983611701565b946020939093013593505050565b60006020828403121561189957600080fd5b61104b8261171d565b6000602082840312156118b457600080fd5b813561104b81611bbf565b6000602082840312156118d157600080fd5b815161104b81611bbf565b6000602082840312156118ee57600080fd5b813567ffffffffffffffff81111561190557600080fd5b8201601f8101841361191657600080fd5b61136c8482356020840161168b565b60006020828403121561193757600080fd5b5035919050565b60008151808452611956816020860160208601611aba565b601f01601f19169290920160200192915050565b6000835161197c818460208801611aba565b835190830190611990818360208801611aba565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906119dc9083018461193e565b9695505050505050565b60208152600061104b602083018461193e565b60208082526010908201526f149bd49bce8813dd995c881b1a5b5a5d60821b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611a6b57611a6b611b67565b500190565b600082611a7f57611a7f611b7d565b500490565b6000816000190483118215151615611a9e57611a9e611b67565b500290565b600082821015611ab557611ab5611b67565b500390565b60005b83811015611ad5578181015183820152602001611abd565b83811115610d0b5750506000910152565b600081611af557611af5611b67565b506000190190565b600181811c90821680611b1157607f821691505b60208210811415611b3257634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611b4c57611b4c611b67565b5060010190565b600082611b6257611b62611b7d565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610fc557600080fdfea264697066735822122016906bd53af6118f94c74e6b4c7b733642d5b53ff0c3cbd283f3d7ce21df1e6c64736f6c63430008070033697066733a2f2f516d54424747553935344e694d6e727666324b7a57414861486d5856417572754a4d74424c334e3554547770594c2f68696464656e2e6a736f6e0000000000000000000000001051b1272037f3c68adb80d629cceb440d5843e1

Deployed Bytecode

0x6080604052600436106101d85760003560e01c80638da5cb5b11610102578063bedb86fb11610095578063d821048211610064578063d821048214610536578063e985e9c51461054b578063f2fde38b14610594578063fddcb5ea146105b457600080fd5b8063bedb86fb146104ba578063c002d23d146104da578063c87b56dd146104f5578063d7e45cd71461051557600080fd5b8063a22cb465116100d1578063a22cb46514610425578063af2ae42514610445578063b187bd2614610479578063b88d4fde1461049a57600080fd5b80638da5cb5b146103ca57806395d89b41146103e8578063989bdbb6146103fd578063a0712d681461041257600080fd5b806332cb6b0c1161017a5780636352211e116101495780636352211e1461035557806370a0823114610375578063715018a6146103955780638ba4cc3c146103aa57600080fd5b806332cb6b0c146102ea5780633ccfd60b1461030057806342842e0e146103155780634c2612471461033557600080fd5b8063095ea7b3116101b6578063095ea7b31461026c57806318160ddd1461028e57806323b872dd146102b557806330d6c42c146102d557600080fd5b806301ffc9a7146101dd57806306fdde0314610212578063081812fc14610234575b600080fd5b3480156101e957600080fd5b506101fd6101f83660046118a2565b6105ea565b60405190151581526020015b60405180910390f35b34801561021e57600080fd5b5061022761063c565b60405161020991906119e6565b34801561024057600080fd5b5061025461024f366004611925565b6106ce565b6040516001600160a01b039091168152602001610209565b34801561027857600080fd5b5061028c61028736600461185d565b610712565b005b34801561029a57600080fd5b5060015460005403600019015b604051908152602001610209565b3480156102c157600080fd5b5061028c6102d036600461177b565b6107e5565b3480156102e157600080fd5b506102a7601481565b3480156102f657600080fd5b506102a7611a0a81565b34801561030c57600080fd5b5061028c6107f5565b34801561032157600080fd5b5061028c61033036600461177b565b6108c6565b34801561034157600080fd5b5061028c6103503660046118dc565b6108e1565b34801561036157600080fd5b50610254610370366004611925565b610978565b34801561038157600080fd5b506102a761039036600461172d565b610983565b3480156103a157600080fd5b5061028c6109d2565b3480156103b657600080fd5b5061028c6103c536600461185d565b610a08565b3480156103d657600080fd5b506008546001600160a01b0316610254565b3480156103f457600080fd5b50610227610a75565b34801561040957600080fd5b5061028c610a84565b61028c610420366004611925565b610ac3565b34801561043157600080fd5b5061028c610440366004611833565b610c31565b34801561045157600080fd5b506102547f0000000000000000000000001051b1272037f3c68adb80d629cceb440d5843e181565b34801561048557600080fd5b506008546101fd90600160a81b900460ff1681565b3480156104a657600080fd5b5061028c6104b53660046117b7565b610cc7565b3480156104c657600080fd5b5061028c6104d5366004611887565b610d11565b3480156104e657600080fd5b506102a766354a6ba7a1800081565b34801561050157600080fd5b50610227610510366004611925565b610d59565b34801561052157600080fd5b506008546101fd90600160a01b900460ff1681565b34801561054257600080fd5b50610227610e9f565b34801561055757600080fd5b506101fd610566366004611748565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156105a057600080fd5b5061028c6105af36600461172d565b610f2d565b3480156105c057600080fd5b506102a76105cf36600461172d565b6001600160a01b03166000908152600b602052604090205490565b60006301ffc9a760e01b6001600160e01b03198316148061061b57506380ac58cd60e01b6001600160e01b03198316145b806106365750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461064b90611afd565b80601f016020809104026020016040519081016040528092919081815260200182805461067790611afd565b80156106c45780601f10610699576101008083540402835291602001916106c4565b820191906000526020600020905b8154815290600101906020018083116106a757829003601f168201915b5050505050905090565b60006106d982610fc8565b6106f6576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061071d82610ffd565b9050806001600160a01b0316836001600160a01b031614156107525760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146107895761076c8133610566565b610789576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6107f083838361106d565b505050565b6008546001600160a01b031633146108285760405162461bcd60e51b815260040161081f90611a23565b60405180910390fd5b478061086c5760405162461bcd60e51b81526020600482015260136024820152724e6f7468696e6720746f20576974686472617760681b604482015260640161081f565b6040516001600160a01b037f0000000000000000000000001051b1272037f3c68adb80d629cceb440d5843e1169082156108fc029083906000818181858888f193505050501580156108c2573d6000803e3d6000fd5b5050565b6107f083838360405180602001604052806000815250610cc7565b6008546001600160a01b0316331461090b5760405162461bcd60e51b815260040161081f90611a23565b600854600160a01b900460ff16156109655760405162461bcd60e51b815260206004820152601b60248201527f526f526f3a204d657461646174612069732066696e616c697a65640000000000604482015260640161081f565b80516108c29060099060208401906115f2565b600061063682610ffd565b60006001600160a01b0382166109ac576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146109fc5760405162461bcd60e51b815260040161081f90611a23565b610a066000611210565b565b6008546001600160a01b03163314610a325760405162461bcd60e51b815260040161081f90611a23565b611a0a81610a436000546000190190565b610a4d9190611a58565b1115610a6b5760405162461bcd60e51b815260040161081f906119f9565b6108c28282611262565b60606003805461064b90611afd565b6008546001600160a01b03163314610aae5760405162461bcd60e51b815260040161081f90611a23565b6008805460ff60a01b1916600160a01b179055565b600854600160a81b900460ff1615610b135760405162461bcd60e51b81526020600482015260136024820152722937a9379d1029b0b632b99030b9329037b33360691b604482015260640161081f565b6014811115610b345760405162461bcd60e51b815260040161081f906119f9565b611a0a81610b456000546000190190565b610b4f9190611a58565b1115610b6d5760405162461bcd60e51b815260040161081f906119f9565b336000908152600b60205260409020548190610b915780610b8d81611ae6565b9150505b610ba266354a6ba7a1800082611a84565b341015610c025760405162461bcd60e51b815260206004820152602860248201527f526f526f3a2045746865722076616c75652073656e74206973206e6f7420737560448201526719999a58da595b9d60c21b606482015260840161081f565b336000908152600b602052604081208054849290610c21908490611a58565b909155506108c290503383611262565b6001600160a01b038216331415610c5b5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610cd284848461106d565b6001600160a01b0383163b15610d0b57610cee8484848461127c565b610d0b576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b03163314610d3b5760405162461bcd60e51b815260040161081f90611a23565b60088054911515600160a81b0260ff60a81b19909216919091179055565b6060610d6482610fc8565b610dc85760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161081f565b6000610dd2611374565b5111610e6857600a8054610de590611afd565b80601f0160208091040260200160405190810160405280929190818152602001828054610e1190611afd565b8015610e5e5780601f10610e3357610100808354040283529160200191610e5e565b820191906000526020600020905b815481529060010190602001808311610e4157829003601f168201915b5050505050610636565b610e70611374565b610e7983611383565b604051602001610e8a92919061196a565b60405160208183030381529060405292915050565b600a8054610eac90611afd565b80601f0160208091040260200160405190810160405280929190818152602001828054610ed890611afd565b8015610f255780601f10610efa57610100808354040283529160200191610f25565b820191906000526020600020905b815481529060010190602001808311610f0857829003601f168201915b505050505081565b6008546001600160a01b03163314610f575760405162461bcd60e51b815260040161081f90611a23565b6001600160a01b038116610fbc5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161081f565b610fc581611210565b50565b600081600111158015610fdc575060005482105b8015610636575050600090815260046020526040902054600160e01b161590565b600081806001116110545760005481101561105457600081815260046020526040902054600160e01b8116611052575b8061104b57506000190160008181526004602052604090205461102d565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b600061107882610ffd565b9050836001600160a01b0316816001600160a01b0316146110ab5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806110c957506110c98533610566565b806110e45750336110d9846106ce565b6001600160a01b0316145b90508061110457604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661112b57604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091529020600160e11b4260a01b8617811790915582166111c857600183016000818152600460205260409020546111c65760005481146111c65760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6108c2828260405180602001604052806000815250611481565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906112b19033908990889088906004016119a9565b602060405180830381600087803b1580156112cb57600080fd5b505af19250505080156112fb575060408051601f3d908101601f191682019092526112f8918101906118bf565b60015b611356573d808015611329576040519150601f19603f3d011682016040523d82523d6000602084013e61132e565b606091505b50805161134e576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606009805461064b90611afd565b6060816113a75750506040805180820190915260018152600360fc1b602082015290565b8160005b81156113d157806113bb81611b38565b91506113ca9050600a83611a70565b91506113ab565b60008167ffffffffffffffff8111156113ec576113ec611ba9565b6040519080825280601f01601f191660200182016040528015611416576020820181803683370190505b5090505b841561136c5761142b600183611aa3565b9150611438600a86611b53565b611443906030611a58565b60f81b81838151811061145857611458611b93565b60200101906001600160f81b031916908160001a90535061147a600a86611a70565b945061141a565b6000546001600160a01b0384166114aa57604051622e076360e81b815260040160405180910390fd5b826114c85760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b1561159d575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611566600087848060010195508761127c565b611583576040516368d2bf6b60e11b815260040160405180910390fd5b80821061151b57826000541461159857600080fd5b6115e2565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821061159e575b506000908155610d0b9085838684565b8280546115fe90611afd565b90600052602060002090601f0160209004810192826116205760008555611666565b82601f1061163957805160ff1916838001178555611666565b82800160010185558215611666579182015b8281111561166657825182559160200191906001019061164b565b50611672929150611676565b5090565b5b808211156116725760008155600101611677565b600067ffffffffffffffff808411156116a6576116a6611ba9565b604051601f8501601f19908116603f011681019082821181831017156116ce576116ce611ba9565b816040528093508581528686860111156116e757600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461171857600080fd5b919050565b8035801515811461171857600080fd5b60006020828403121561173f57600080fd5b61104b82611701565b6000806040838503121561175b57600080fd5b61176483611701565b915061177260208401611701565b90509250929050565b60008060006060848603121561179057600080fd5b61179984611701565b92506117a760208501611701565b9150604084013590509250925092565b600080600080608085870312156117cd57600080fd5b6117d685611701565b93506117e460208601611701565b925060408501359150606085013567ffffffffffffffff81111561180757600080fd5b8501601f8101871361181857600080fd5b6118278782356020840161168b565b91505092959194509250565b6000806040838503121561184657600080fd5b61184f83611701565b91506117726020840161171d565b6000806040838503121561187057600080fd5b61187983611701565b946020939093013593505050565b60006020828403121561189957600080fd5b61104b8261171d565b6000602082840312156118b457600080fd5b813561104b81611bbf565b6000602082840312156118d157600080fd5b815161104b81611bbf565b6000602082840312156118ee57600080fd5b813567ffffffffffffffff81111561190557600080fd5b8201601f8101841361191657600080fd5b61136c8482356020840161168b565b60006020828403121561193757600080fd5b5035919050565b60008151808452611956816020860160208601611aba565b601f01601f19169290920160200192915050565b6000835161197c818460208801611aba565b835190830190611990818360208801611aba565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906119dc9083018461193e565b9695505050505050565b60208152600061104b602083018461193e565b60208082526010908201526f149bd49bce8813dd995c881b1a5b5a5d60821b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611a6b57611a6b611b67565b500190565b600082611a7f57611a7f611b7d565b500490565b6000816000190483118215151615611a9e57611a9e611b67565b500290565b600082821015611ab557611ab5611b67565b500390565b60005b83811015611ad5578181015183820152602001611abd565b83811115610d0b5750506000910152565b600081611af557611af5611b67565b506000190190565b600181811c90821680611b1157607f821691505b60208210811415611b3257634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611b4c57611b4c611b67565b5060010190565b600082611b6257611b62611b7d565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610fc557600080fdfea264697066735822122016906bd53af6118f94c74e6b4c7b733642d5b53ff0c3cbd283f3d7ce21df1e6c64736f6c63430008070033

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

0000000000000000000000001051b1272037f3c68adb80d629cceb440d5843e1

-----Decoded View---------------
Arg [0] : paymentsAddress_ (address): 0x1051B1272037f3c68Adb80d629cCEB440D5843E1

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000001051b1272037f3c68adb80d629cceb440d5843e1


Deployed Bytecode Sourcemap

44097:2501:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15332:615;;;;;;;;;;-1:-1:-1;15332:615:0;;;;;:::i;:::-;;:::i;:::-;;;6070:14:1;;6063:22;6045:41;;6033:2;6018:18;15332:615:0;;;;;;;;20345:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;22413:204::-;;;;;;;;;;-1:-1:-1;22413:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5368:32:1;;;5350:51;;5338:2;5323:18;22413:204:0;5204:203:1;21873:474:0;;;;;;;;;;-1:-1:-1;21873:474:0;;;;;:::i;:::-;;:::i;:::-;;14386:315;;;;;;;;;;-1:-1:-1;44901:1:0;14652:12;14439:7;14636:13;:28;-1:-1:-1;;14636:46:0;14386:315;;;9457:25:1;;;9445:2;9430:18;14386:315:0;9311:177:1;23299:170:0;;;;;;;;;;-1:-1:-1;23299:170:0;;;;;:::i;:::-;;:::i;44205:36::-;;;;;;;;;;;;44239:2;44205:36;;44163:38;;;;;;;;;;;;44197:4;44163:38;;45361:182;;;;;;;;;;;;;:::i;23540:185::-;;;;;;;;;;-1:-1:-1;23540:185:0;;;;;:::i;:::-;;:::i;45005:146::-;;;;;;;;;;-1:-1:-1;45005:146:0;;;;;:::i;:::-;;:::i;20134:144::-;;;;;;;;;;-1:-1:-1;20134:144:0;;;;;:::i;:::-;;:::i;16011:224::-;;;;;;;;;;-1:-1:-1;16011:224:0;;;;;:::i;:::-;;:::i;43212:103::-;;;;;;;;;;;;;:::i;45548:173::-;;;;;;;;;;-1:-1:-1;45548:173:0;;;;;:::i;:::-;;:::i;42561:87::-;;;;;;;;;;-1:-1:-1;42634:6:0;;-1:-1:-1;;;;;42634:6:0;42561:87;;20514:104;;;;;;;;;;;;;:::i;44915:85::-;;;;;;;;;;;;;:::i;46072:520::-;;;;;;:::i;:::-;;:::i;22689:308::-;;;;;;;;;;-1:-1:-1;22689:308:0;;;;;:::i;:::-;;:::i;44297:42::-;;;;;;;;;;;;;;;44388:28;;;;;;;;;;-1:-1:-1;44388:28:0;;;;-1:-1:-1;;;44388:28:0;;;;;;23796:396;;;;;;;;;;-1:-1:-1;23796:396:0;;;;;:::i;:::-;;:::i;45281:75::-;;;;;;;;;;-1:-1:-1;45281:75:0;;;;;:::i;:::-;;:::i;44245:45::-;;;;;;;;;;;;44279:11;44245:45;;45726:341;;;;;;;;;;-1:-1:-1;45726:341:0;;;;;:::i;:::-;;:::i;44348:36::-;;;;;;;;;;-1:-1:-1;44348:36:0;;;;-1:-1:-1;;;44348:36:0;;;;;;44450:96;;;;;;;;;;;;;:::i;23068:164::-;;;;;;;;;;-1:-1:-1;23068:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;23189:25:0;;;23165:4;23189:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;23068:164;43470:201;;;;;;;;;;-1:-1:-1;43470:201:0;;;;;:::i;:::-;;:::i;45159:115::-;;;;;;;;;;-1:-1:-1;45159:115:0;;;;;:::i;:::-;-1:-1:-1;;;;;45242:24:0;45218:4;45242:24;;;:17;:24;;;;;;;45159:115;15332:615;15417:4;-1:-1:-1;;;;;;;;;15717:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;15794:25:0;;;15717:102;:179;;;-1:-1:-1;;;;;;;;;;15871:25:0;;;15717:179;15697:199;15332:615;-1:-1:-1;;15332:615:0:o;20345:100::-;20399:13;20432:5;20425:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20345:100;:::o;22413:204::-;22481:7;22506:16;22514:7;22506;:16::i;:::-;22501:64;;22531:34;;-1:-1:-1;;;22531:34:0;;;;;;;;;;;22501:64;-1:-1:-1;22585:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;22585:24:0;;22413:204::o;21873:474::-;21946:13;21978:27;21997:7;21978:18;:27::i;:::-;21946:61;;22028:5;-1:-1:-1;;;;;22022:11:0;:2;-1:-1:-1;;;;;22022:11:0;;22018:48;;;22042:24;;-1:-1:-1;;;22042:24:0;;;;;;;;;;;22018:48;38516:10;-1:-1:-1;;;;;22083:28:0;;;22079:175;;22131:44;22148:5;38516:10;23068:164;:::i;22131:44::-;22126:128;;22203:35;;-1:-1:-1;;;22203:35:0;;;;;;;;;;;22126:128;22266:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;22266:29:0;-1:-1:-1;;;;;22266:29:0;;;;;;;;;22311:28;;22266:24;;22311:28;;;;;;;21935:412;21873:474;;:::o;23299:170::-;23433:28;23443:4;23449:2;23453:7;23433:9;:28::i;:::-;23299:170;;;:::o;45361:182::-;42634:6;;-1:-1:-1;;;;;42634:6:0;38516:10;42781:23;42773:68;;;;-1:-1:-1;;;42773:68:0;;;;;;;:::i;:::-;;;;;;;;;45420:21:::1;45454:11:::0;45446:43:::1;;;::::0;-1:-1:-1;;;45446:43:0;;7623:2:1;45446:43:0::1;::::0;::::1;7605:21:1::0;7662:2;7642:18;;;7635:30;-1:-1:-1;;;7681:18:1;;;7674:49;7740:18;;45446:43:0::1;7421:343:1::0;45446:43:0::1;45494:44;::::0;-1:-1:-1;;;;;45502:17:0::1;45494:35;::::0;:44;::::1;;;::::0;45530:7;;45494:44:::1;::::0;;;45530:7;45494:35;:44;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;45400:143;45361:182::o:0;23540:185::-;23678:39;23695:4;23701:2;23705:7;23678:39;;;;;;;;;;;;:16;:39::i;45005:146::-;42634:6;;-1:-1:-1;;;;;42634:6:0;38516:10;42781:23;42773:68;;;;-1:-1:-1;;;42773:68:0;;;;;;;:::i;:::-;45079:16:::1;::::0;-1:-1:-1;;;45079:16:0;::::1;;;45078:17;45070:57;;;::::0;-1:-1:-1;;;45070:57:0;;8748:2:1;45070:57:0::1;::::0;::::1;8730:21:1::0;8787:2;8767:18;;;8760:30;8826:29;8806:18;;;8799:57;8873:18;;45070:57:0::1;8546:351:1::0;45070:57:0::1;45132:14:::0;;::::1;::::0;:8:::1;::::0;:14:::1;::::0;::::1;::::0;::::1;:::i;20134:144::-:0;20198:7;20241:27;20260:7;20241:18;:27::i;16011:224::-;16075:7;-1:-1:-1;;;;;16099:19:0;;16095:60;;16127:28;;-1:-1:-1;;;16127:28:0;;;;;;;;;;;16095:60;-1:-1:-1;;;;;;16173:25:0;;;;;:18;:25;;;;;;11350:13;16173:54;;16011:224::o;43212:103::-;42634:6;;-1:-1:-1;;;;;42634:6:0;38516:10;42781:23;42773:68;;;;-1:-1:-1;;;42773:68:0;;;;;;;:::i;:::-;43277:30:::1;43304:1;43277:18;:30::i;:::-;43212:103::o:0;45548:173::-;42634:6;;-1:-1:-1;;;;;42634:6:0;38516:10;42781:23;42773:68;;;;-1:-1:-1;;;42773:68:0;;;;;;;:::i;:::-;44197:4:::1;45643:5;45626:14;14846:7:::0;15034:13;-1:-1:-1;;15034:31:0;;14799:285;45626:14:::1;:22;;;;:::i;:::-;:36;;45613:78;;;;-1:-1:-1::0;;;45613:78:0::1;;;;;;;:::i;:::-;45696:20;45706:2;45710:5;45696:9;:20::i;20514:104::-:0;20570:13;20603:7;20596:14;;;;;:::i;44915:85::-;42634:6;;-1:-1:-1;;;;;42634:6:0;38516:10;42781:23;42773:68;;;;-1:-1:-1;;;42773:68:0;;;;;;;:::i;:::-;44969:16:::1;:23:::0;;-1:-1:-1;;;;44969:23:0::1;-1:-1:-1::0;;;44969:23:0::1;::::0;;44915:85::o;46072:520::-;46129:8;;-1:-1:-1;;;46129:8:0;;;;46128:9;46120:41;;;;-1:-1:-1;;;46120:41:0;;6930:2:1;46120:41:0;;;6912:21:1;6969:2;6949:18;;;6942:30;-1:-1:-1;;;6988:18:1;;;6981:49;7047:18;;46120:41:0;6728:343:1;46120:41:0;44239:2;46174:5;:19;;46166:47;;;;-1:-1:-1;;;46166:47:0;;;;;;;:::i;:::-;44197:4;46243:5;46226:14;14846:7;15034:13;-1:-1:-1;;15034:31:0;;14799:285;46226:14;:22;;;;:::i;:::-;:36;;46218:64;;;;-1:-1:-1;;;46218:64:0;;;;;;;:::i;:::-;46351:10;46295:16;46333:29;;;:17;:29;;;;;;46314:5;;46330:70;;46375:13;;;;:::i;:::-;;;;46330:70;46432:24;44279:11;46432;:24;:::i;:::-;46419:9;:37;;46406:103;;;;-1:-1:-1;;;46406:103:0;;9104:2:1;46406:103:0;;;9086:21:1;9143:2;9123:18;;;9116:30;9182:34;9162:18;;;9155:62;-1:-1:-1;;;9233:18:1;;;9226:38;9281:19;;46406:103:0;8902:404:1;46406:103:0;46534:10;46516:29;;;;:17;:29;;;;;:38;;46549:5;;46516:29;:38;;46549:5;;46516:38;:::i;:::-;;;;-1:-1:-1;46559:28:0;;-1:-1:-1;46569:10:0;46581:5;46559:9;:28::i;22689:308::-;-1:-1:-1;;;;;22788:31:0;;38516:10;22788:31;22784:61;;;22828:17;;-1:-1:-1;;;22828:17:0;;;;;;;;;;;22784:61;38516:10;22858:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;22858:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;22858:60:0;;;;;;;;;;22934:55;;6045:41:1;;;22858:49:0;;38516:10;22934:55;;6018:18:1;22934:55:0;;;;;;;22689:308;;:::o;23796:396::-;23963:28;23973:4;23979:2;23983:7;23963:9;:28::i;:::-;-1:-1:-1;;;;;24006:14:0;;;:19;24002:183;;24045:56;24076:4;24082:2;24086:7;24095:5;24045:30;:56::i;:::-;24040:145;;24129:40;;-1:-1:-1;;;24129:40:0;;;;;;;;;;;24040:145;23796:396;;;;:::o;45281:75::-;42634:6;;-1:-1:-1;;;;;42634:6:0;38516:10;42781:23;42773:68;;;;-1:-1:-1;;;42773:68:0;;;;;;;:::i;:::-;45335:8:::1;:16:::0;;;::::1;;-1:-1:-1::0;;;45335:16:0::1;-1:-1:-1::0;;;;45335:16:0;;::::1;::::0;;;::::1;::::0;;45281:75::o;45726:341::-;45800:13;45836:16;45844:7;45836;:16::i;:::-;45828:76;;;;-1:-1:-1;;;45828:76:0;;8332:2:1;45828:76:0;;;8314:21:1;8371:2;8351:18;;;8344:30;8410:34;8390:18;;;8383:62;-1:-1:-1;;;8461:18:1;;;8454:45;8516:19;;45828:76:0;8130:411:1;45828:76:0;45951:1;45930:10;:8;:10::i;:::-;45924:24;:28;:138;;46050:12;45924:138;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45993:10;:8;:10::i;:::-;46005:18;:7;:16;:18::i;:::-;45976:57;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45917:145;45726:341;-1:-1:-1;;45726:341:0:o;44450:96::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;43470:201::-;42634:6;;-1:-1:-1;;;;;42634:6:0;38516:10;42781:23;42773:68;;;;-1:-1:-1;;;42773:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;43559:22:0;::::1;43551:73;;;::::0;-1:-1:-1;;;43551:73:0;;6523:2:1;43551:73:0::1;::::0;::::1;6505:21:1::0;6562:2;6542:18;;;6535:30;6601:34;6581:18;;;6574:62;-1:-1:-1;;;6652:18:1;;;6645:36;6698:19;;43551:73:0::1;6321:402:1::0;43551:73:0::1;43635:28;43654:8;43635:18;:28::i;:::-;43470:201:::0;:::o;24447:273::-;24504:4;24560:7;44901:1;24541:26;;:66;;;;;24594:13;;24584:7;:23;24541:66;:152;;;;-1:-1:-1;;24645:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;24645:43:0;:48;;24447:273::o;17649:1129::-;17716:7;17751;;44901:1;17800:23;17796:915;;17853:13;;17846:4;:20;17842:869;;;17891:14;17908:23;;;:17;:23;;;;;;-1:-1:-1;;;17997:23:0;;17993:699;;18516:113;18523:11;18516:113;;-1:-1:-1;;;18594:6:0;18576:25;;;;:17;:25;;;;;;18516:113;;;18662:6;17649:1129;-1:-1:-1;;;17649:1129:0:o;17993:699::-;17868:843;17842:869;18739:31;;-1:-1:-1;;;18739:31:0;;;;;;;;;;;29686:2515;29801:27;29831;29850:7;29831:18;:27::i;:::-;29801:57;;29916:4;-1:-1:-1;;;;;29875:45:0;29891:19;-1:-1:-1;;;;;29875:45:0;;29871:86;;29929:28;;-1:-1:-1;;;29929:28:0;;;;;;;;;;;29871:86;29970:22;38516:10;-1:-1:-1;;;;;29996:27:0;;;;:87;;-1:-1:-1;30040:43:0;30057:4;38516:10;23068:164;:::i;30040:43::-;29996:147;;;-1:-1:-1;38516:10:0;30100:20;30112:7;30100:11;:20::i;:::-;-1:-1:-1;;;;;30100:43:0;;29996:147;29970:174;;30162:17;30157:66;;30188:35;;-1:-1:-1;;;30188:35:0;;;;;;;;;;;30157:66;-1:-1:-1;;;;;30238:16:0;;30234:52;;30263:23;;-1:-1:-1;;;30263:23:0;;;;;;;;;;;30234:52;30415:24;;;;:15;:24;;;;;;;;30408:31;;-1:-1:-1;;;;;;30408:31:0;;;-1:-1:-1;;;;;30807:24:0;;;;;:18;:24;;;;;30805:26;;-1:-1:-1;;30805:26:0;;;30876:22;;;;;;;30874:24;;-1:-1:-1;30874:24:0;;;31169:26;;;:17;:26;;;;;-1:-1:-1;;;31257:15:0;12004:3;31257:41;31215:84;;:128;;31169:174;;;31463:46;;31459:626;;31567:1;31557:11;;31535:19;31690:30;;;:17;:30;;;;;;31686:384;;31828:13;;31813:11;:28;31809:242;;31975:30;;;;:17;:30;;;;;:52;;;31809:242;31516:569;31459:626;32132:7;32128:2;-1:-1:-1;;;;;32113:27:0;32122:4;-1:-1:-1;;;;;32113:27:0;;;;;;;;;;;29790:2411;;29686:2515;;;:::o;43831:191::-;43924:6;;;-1:-1:-1;;;;;43941:17:0;;;-1:-1:-1;;;;;;43941:17:0;;;;;;;43974:40;;43924:6;;;43941:17;43924:6;;43974:40;;43905:16;;43974:40;43894:128;43831:191;:::o;24804:104::-;24873:27;24883:2;24887:8;24873:27;;;;;;;;;;;;:9;:27::i;35898:716::-;36082:88;;-1:-1:-1;;;36082:88:0;;36061:4;;-1:-1:-1;;;;;36082:45:0;;;;;:88;;38516:10;;36149:4;;36155:7;;36164:5;;36082:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36082:88:0;;;;;;;;-1:-1:-1;;36082:88:0;;;;;;;;;;;;:::i;:::-;;;36078:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36365:13:0;;36361:235;;36411:40;;-1:-1:-1;;;36411:40:0;;;;;;;;;;;36361:235;36554:6;36548:13;36539:6;36535:2;36531:15;36524:38;36078:529;-1:-1:-1;;;;;;36241:64:0;-1:-1:-1;;;36241:64:0;;-1:-1:-1;36078:529:0;35898:716;;;;;;:::o;44729:92::-;44781:13;44808:8;44801:15;;;;;:::i;500:723::-;556:13;777:10;773:53;;-1:-1:-1;;804:10:0;;;;;;;;;;;;-1:-1:-1;;;804:10:0;;;;;500:723::o;773:53::-;851:5;836:12;892:78;899:9;;892:78;;925:8;;;;:::i;:::-;;-1:-1:-1;948:10:0;;-1:-1:-1;956:2:0;948:10;;:::i;:::-;;;892:78;;;980:19;1012:6;1002:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1002:17:0;;980:39;;1030:154;1037:10;;1030:154;;1064:11;1074:1;1064:11;;:::i;:::-;;-1:-1:-1;1133:10:0;1141:2;1133:5;:10;:::i;:::-;1120:24;;:2;:24;:::i;:::-;1107:39;;1090:6;1097;1090:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1090:56:0;;;;;;;;-1:-1:-1;1161:11:0;1170:2;1161:11;;:::i;:::-;;;1030:154;;25281:2236;25404:20;25427:13;-1:-1:-1;;;;;25455:16:0;;25451:48;;25480:19;;-1:-1:-1;;;25480:19:0;;;;;;;;;;;25451:48;25514:13;25510:44;;25536:18;;-1:-1:-1;;;25536:18:0;;;;;;;;;;;25510:44;-1:-1:-1;;;;;26103:22:0;;;;;;:18;:22;;;;11487:2;26103:22;;;:70;;26141:31;26129:44;;26103:70;;;26416:31;;;:17;:31;;;;;26509:15;12004:3;26509:41;26467:84;;-1:-1:-1;26587:13:0;;12267:3;26572:56;26467:162;26416:213;;:31;;26710:23;;;;26754:14;:19;26750:635;;26794:313;26825:38;;26850:12;;-1:-1:-1;;;;;26825:38:0;;;26842:1;;26825:38;;26842:1;;26825:38;26891:69;26930:1;26934:2;26938:14;;;;;;26954:5;26891:30;:69::i;:::-;26886:174;;26996:40;;-1:-1:-1;;;26996:40:0;;;;;;;;;;;26886:174;27102:3;27087:12;:18;26794:313;;27188:12;27171:13;;:29;27167:43;;27202:8;;;27167:43;26750:635;;;27251:119;27282:40;;27307:14;;;;;-1:-1:-1;;;;;27282:40:0;;;27299:1;;27282:40;;27299:1;;27282:40;27365:3;27350:12;:18;27251:119;;26750:635;-1:-1:-1;27399:13:0;:28;;;27449:60;;27482:2;27486:12;27500:8;27449:60;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:180::-;3027:6;3080:2;3068:9;3059:7;3055:23;3051:32;3048:52;;;3096:1;3093;3086:12;3048:52;3119:26;3135:9;3119:26;:::i;3156:245::-;3214:6;3267:2;3255:9;3246:7;3242:23;3238:32;3235:52;;;3283:1;3280;3273:12;3235:52;3322:9;3309:23;3341:30;3365:5;3341:30;:::i;3406:249::-;3475:6;3528:2;3516:9;3507:7;3503:23;3499:32;3496:52;;;3544:1;3541;3534:12;3496:52;3576:9;3570:16;3595:30;3619:5;3595:30;:::i;3660:450::-;3729:6;3782:2;3770:9;3761:7;3757:23;3753:32;3750:52;;;3798:1;3795;3788:12;3750:52;3838:9;3825:23;3871:18;3863:6;3860:30;3857:50;;;3903:1;3900;3893:12;3857:50;3926:22;;3979:4;3971:13;;3967:27;-1:-1:-1;3957:55:1;;4008:1;4005;3998:12;3957:55;4031:73;4096:7;4091:2;4078:16;4073:2;4069;4065:11;4031:73;:::i;4115:180::-;4174:6;4227:2;4215:9;4206:7;4202:23;4198:32;4195:52;;;4243:1;4240;4233:12;4195:52;-1:-1:-1;4266:23:1;;4115:180;-1:-1:-1;4115:180:1:o;4300:257::-;4341:3;4379:5;4373:12;4406:6;4401:3;4394:19;4422:63;4478:6;4471:4;4466:3;4462:14;4455:4;4448:5;4444:16;4422:63;:::i;:::-;4539:2;4518:15;-1:-1:-1;;4514:29:1;4505:39;;;;4546:4;4501:50;;4300:257;-1:-1:-1;;4300:257:1:o;4562:637::-;4842:3;4880:6;4874:13;4896:53;4942:6;4937:3;4930:4;4922:6;4918:17;4896:53;:::i;:::-;5012:13;;4971:16;;;;5034:57;5012:13;4971:16;5068:4;5056:17;;5034:57;:::i;:::-;-1:-1:-1;;;5113:20:1;;5142:22;;;5191:1;5180:13;;4562:637;-1:-1:-1;;;;4562:637:1:o;5412:488::-;-1:-1:-1;;;;;5681:15:1;;;5663:34;;5733:15;;5728:2;5713:18;;5706:43;5780:2;5765:18;;5758:34;;;5828:3;5823:2;5808:18;;5801:31;;;5606:4;;5849:45;;5874:19;;5866:6;5849:45;:::i;:::-;5841:53;5412:488;-1:-1:-1;;;;;;5412:488:1:o;6097:219::-;6246:2;6235:9;6228:21;6209:4;6266:44;6306:2;6295:9;6291:18;6283:6;6266:44;:::i;7076:340::-;7278:2;7260:21;;;7317:2;7297:18;;;7290:30;-1:-1:-1;;;7351:2:1;7336:18;;7329:46;7407:2;7392:18;;7076:340::o;7769:356::-;7971:2;7953:21;;;7990:18;;;7983:30;8049:34;8044:2;8029:18;;8022:62;8116:2;8101:18;;7769:356::o;9493:128::-;9533:3;9564:1;9560:6;9557:1;9554:13;9551:39;;;9570:18;;:::i;:::-;-1:-1:-1;9606:9:1;;9493:128::o;9626:120::-;9666:1;9692;9682:35;;9697:18;;:::i;:::-;-1:-1:-1;9731:9:1;;9626:120::o;9751:168::-;9791:7;9857:1;9853;9849:6;9845:14;9842:1;9839:21;9834:1;9827:9;9820:17;9816:45;9813:71;;;9864:18;;:::i;:::-;-1:-1:-1;9904:9:1;;9751:168::o;9924:125::-;9964:4;9992:1;9989;9986:8;9983:34;;;9997:18;;:::i;:::-;-1:-1:-1;10034:9:1;;9924:125::o;10054:258::-;10126:1;10136:113;10150:6;10147:1;10144:13;10136:113;;;10226:11;;;10220:18;10207:11;;;10200:39;10172:2;10165:10;10136:113;;;10267:6;10264:1;10261:13;10258:48;;;-1:-1:-1;;10302:1:1;10284:16;;10277:27;10054:258::o;10317:136::-;10356:3;10384:5;10374:39;;10393:18;;:::i;:::-;-1:-1:-1;;;10429:18:1;;10317:136::o;10458:380::-;10537:1;10533:12;;;;10580;;;10601:61;;10655:4;10647:6;10643:17;10633:27;;10601:61;10708:2;10700:6;10697:14;10677:18;10674:38;10671:161;;;10754:10;10749:3;10745:20;10742:1;10735:31;10789:4;10786:1;10779:15;10817:4;10814:1;10807:15;10671:161;;10458:380;;;:::o;10843:135::-;10882:3;-1:-1:-1;;10903:17:1;;10900:43;;;10923:18;;:::i;:::-;-1:-1:-1;10970:1:1;10959:13;;10843:135::o;10983:112::-;11015:1;11041;11031:35;;11046:18;;:::i;:::-;-1:-1:-1;11080:9:1;;10983:112::o;11100:127::-;11161:10;11156:3;11152:20;11149:1;11142:31;11192:4;11189:1;11182:15;11216:4;11213:1;11206:15;11232:127;11293:10;11288:3;11284:20;11281:1;11274:31;11324:4;11321:1;11314:15;11348:4;11345:1;11338:15;11364:127;11425:10;11420:3;11416:20;11413:1;11406:31;11456:4;11453:1;11446:15;11480:4;11477:1;11470:15;11496:127;11557:10;11552:3;11548:20;11545:1;11538:31;11588:4;11585:1;11578:15;11612:4;11609:1;11602:15;11628:131;-1:-1:-1;;;;;;11702:32:1;;11692:43;;11682:71;;11749:1;11746;11739:12

Swarm Source

ipfs://16906bd53af6118f94c74e6b4c7b733642d5b53ff0c3cbd283f3d7ce21df1e6c
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.