ETH Price: $3,465.36 (+2.10%)
Gas: 17 Gwei

Token

RPD Founders Pass (RPDPASS)
 

Overview

Max Total Supply

1,750 RPDPASS

Holders

1,222

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
neshama.eth
Balance
2 RPDPASS
0x60ecadc9fa4d4938f554954ec6da578ebe191481
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:
RPDFoundersPass

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 11 of 13: RPDFoundersPass.sol
//Contract based on https://docs.openzeppelin.com/contracts/3.x/erc721
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

import "./ERC721a.sol";
import "./Ownable.sol";
import "./SafeMath.sol";

contract RPDFoundersPass is ERC721A, Ownable {

    using SafeMath for uint256;

    // Events
    event TokenMinted(address owner, uint256 quantity);

    // Max amount of token to purchase per account each time
    uint public MAX_PURCHASE = 1;

    // Max tokens supply
    uint256 public TOTAL_TOKENS = 1000;

    // Define if sale is active
    bool public saleIsActive = true;

    // Base URI
    string private baseURI;

    /**
     * Contract constructor
     */
    constructor(string memory name, string memory symbol, string memory uri) ERC721A(name, symbol) {
        setBaseURI(uri);
    }

    /*
     * Pause sale if active, make active if paused
     */
    function setSaleState(bool newState) public onlyOwner {
        saleIsActive = newState;
    }

    /*
     * Set max purchase
     */
    function setMaxPurchase(uint256 maxPurchase) public onlyOwner {
        MAX_PURCHASE = maxPurchase;
    }

    /**
     * Set Total Tokens Supply
     */
    function setTotalTokens(uint256 qty) public onlyOwner {
        TOTAL_TOKENS = qty;
    }

    /**
     * @dev Changes the base URI if we want to move things in the future (Callable by owner only)
     */
    function setBaseURI(string memory BaseURI) onlyOwner public {
        baseURI = BaseURI;
    }

    /**
     * @dev Base URI for computing {tokenURI}. Empty by default, can be overriden
     * in child contracts.
     */
    function _baseURI() internal view virtual override returns(string memory) {
        return baseURI;
    }

    /**
     * Withdraw
     */
    function withdraw() public onlyOwner {
        require(address(this).balance > 0, "No balance to withdraw");

        uint balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }

    /**
     * Mint token for wallets.
     */
    function mintToWallets(address[] memory owners, uint256 qty) external onlyOwner {
        require(totalSupply().add(owners.length.mul(qty)) <= TOTAL_TOKENS, "Mint tokens to wallets would exceed max supply");
        
        for (uint i = 0; i < owners.length; i++) {
            _safeMint(owners[i], qty);
            emit TokenMinted(owners[i], qty);
        }
    }
    
    /**
     * Mint Tokens
     */
    function mint(uint qty) external {
        require(saleIsActive, "Mint is not available right now");
        require(qty > 0 && qty <= MAX_PURCHASE, "Can only mint 1 token at a time");
        require(totalSupply().add(qty) <= TOTAL_TOKENS, "Qty tokens would exceed max supply");
        uint balance = balanceOf(msg.sender);
        require(balance.add(qty) <= MAX_PURCHASE, "Limit exceed");

        _safeMint(msg.sender, qty);
        emit TokenMinted(msg.sender, qty);
    }

    /**
     * Get owner balance.
     */
    function getTokensOfOwner(address owner) external view returns(uint256[] memory) {
        uint tokenCount = balanceOf(owner);

        uint256[] memory tokensId = new uint256[](tokenCount);
        for (uint i = 0; i < tokenCount; i++) {
            tokensId[i] = tokenOfOwnerByIndex(owner, i);
        }

        return tokensId;
    }

    /**
     * Get owners list.
     */
    function getOwners(uint256 offset, uint256 limit) public view returns(address[] memory) {
        uint tokenCount = totalSupply();

        if (offset.add(limit) < tokenCount) {
            tokenCount = offset.add(limit);
        }

        address[] memory owners = new address[](tokenCount);
        for (uint i = offset; i < tokenCount; i++) {
            owners[i] = ownerOf(i);
        }

        return owners;
    }
}

File 1 of 13: Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

File 2 of 13: Context.sol
// SPDX-License-Identifier: MIT
// 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 3 of 13: ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

File 4 of 13: ERC721a.sol
// SPDX-License-Identifier: MIT
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**128 - 1 (max value of uint128).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

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

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        uint256 numMintedSoFar = _currentIndex;
        uint256 tokenIdsIdx;

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

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

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

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

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

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

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : '';
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (!_checkOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < _currentIndex && !_ownerships[tokenId].burned;
    }

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

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

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

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

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

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

            uint256 updatedIndex = startTokenId;

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

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

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

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

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

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

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

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

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert TransferToNonERC721ReceiverImplementer();
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

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

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

File 5 of 13: IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

File 6 of 13: IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

File 7 of 13: IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

File 8 of 13: IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

File 9 of 13: IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

File 10 of 13: Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "./Context.sol";

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _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 12 of 13: SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

File 13 of 13: Strings.sol
// SPDX-License-Identifier: MIT
// 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);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"uri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"TokenMinted","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_PURCHASE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"offset","type":"uint256"},{"internalType":"uint256","name":"limit","type":"uint256"}],"name":"getOwners","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"getTokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"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":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"owners","type":"address[]"},{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"mintToWallets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","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":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"BaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxPurchase","type":"uint256"}],"name":"setMaxPurchase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"newState","type":"bool"}],"name":"setSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"setTotalTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600160088190556103e8600955600a805460ff191690911790553480156200002b57600080fd5b5060405162002401380380620024018339810160408190526200004e91620002d5565b825183908390620000679060019060208501906200017c565b5080516200007d9060029060208401906200017c565b5050506200009a62000094620000ae60201b60201c565b620000b2565b620000a58162000104565b505050620003b5565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6007546001600160a01b03163314620001635760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b80516200017890600b9060208401906200017c565b5050565b8280546200018a9062000362565b90600052602060002090601f016020900481019282620001ae5760008555620001f9565b82601f10620001c957805160ff1916838001178555620001f9565b82800160010185558215620001f9579182015b82811115620001f9578251825591602001919060010190620001dc565b50620002079291506200020b565b5090565b5b808211156200020757600081556001016200020c565b600082601f83011262000233578081fd5b81516001600160401b03808211156200025057620002506200039f565b604051601f8301601f19908116603f011681019082821181831017156200027b576200027b6200039f565b8160405283815260209250868385880101111562000297578485fd5b8491505b83821015620002ba57858201830151818301840152908201906200029b565b83821115620002cb57848385830101525b9695505050505050565b600080600060608486031215620002ea578283fd5b83516001600160401b038082111562000301578485fd5b6200030f8783880162000222565b9450602086015191508082111562000325578384fd5b620003338783880162000222565b9350604086015191508082111562000349578283fd5b50620003588682870162000222565b9150509250925092565b600181811c908216806200037757607f821691505b602082108114156200039957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61203c80620003c56000396000f3fe608060405234801561001057600080fd5b50600436106101e55760003560e01c80636352211e1161010f578063a22cb465116100a2578063c87b56dd11610071578063c87b56dd14610402578063e985e9c514610415578063eb8d244414610451578063f2fde38b1461045e57600080fd5b8063a22cb465146103b6578063b0b92263146103c9578063b88d4fde146103dc578063c4e37095146103ef57600080fd5b8063715018a6116100de578063715018a6146103825780638da5cb5b1461038a57806395d89b411461039b578063a0712d68146103a357600080fd5b80636352211e1461034057806370a082311461035357806371189742146103665780637146bd081461037957600080fd5b806318160ddd1161018757806342842e0e1161015657806342842e0e146102e75780634f6ccce7146102fa57806355f804b31461030d5780635de6dc551461032057600080fd5b806318160ddd146102b157806323b872dd146102b95780632f745c59146102cc5780633ccfd60b146102df57600080fd5b8063081812fc116101c3578063081812fc14610247578063095ea7b31461027257806309f368ee146102875780630b7abf771461029a57600080fd5b806301ffc9a7146101ea578063048220581461021257806306fdde0314610232575b600080fd5b6101fd6101f8366004611c6b565b610471565b60405190151581526020015b60405180910390f35b610225610220366004611d00565b6104de565b6040516102099190611db9565b61023a6105c4565b6040516102099190611e3e565b61025a610255366004611ce8565b610656565b6040516001600160a01b039091168152602001610209565b610285610280366004611b74565b61069a565b005b610285610295366004611b9d565b610728565b6102a360095481565b604051908152602001610209565b6102a36108a4565b6102856102c7366004611a98565b6108c3565b6102a36102da366004611b74565b6108ce565b6102856109ca565b6102856102f5366004611a98565b610a70565b6102a3610308366004611ce8565b610a8b565b61028561031b366004611ca3565b610b35565b61033361032e366004611a4c565b610b72565b6040516102099190611e06565b61025a61034e366004611ce8565b610c2f565b6102a3610361366004611a4c565b610c41565b610285610374366004611ce8565b610c8f565b6102a360085481565b610285610cbe565b6007546001600160a01b031661025a565b61023a610cf4565b6102856103b1366004611ce8565b610d03565b6102856103c4366004611b4b565b610eba565b6102856103d7366004611ce8565b610f50565b6102856103ea366004611ad3565b610f7f565b6102856103fd366004611c51565b610fb9565b61023a610410366004611ce8565b610ff6565b6101fd610423366004611a66565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b600a546101fd9060ff1681565b61028561046c366004611a4c565b61107b565b60006001600160e01b031982166380ac58cd60e01b14806104a257506001600160e01b03198216635b5e139f60e01b145b806104bd57506001600160e01b0319821663780e9d6360e01b145b806104d857506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060006104ea6108a4565b9050806104f78585611116565b101561050a576105078484611116565b90505b6000816001600160401b0381111561053257634e487b7160e01b600052604160045260246000fd5b60405190808252806020026020018201604052801561055b578160200160208202803683370190505b509050845b828110156105bb5761057181610c2f565b82828151811061059157634e487b7160e01b600052603260045260246000fd5b6001600160a01b0390921660209283029190910190910152806105b381611f7f565b915050610560565b50949350505050565b6060600180546105d390611f44565b80601f01602080910402602001604051908101604052809291908181526020018280546105ff90611f44565b801561064c5780601f106106215761010080835404028352916020019161064c565b820191906000526020600020905b81548152906001019060200180831161062f57829003601f168201915b5050505050905090565b600061066182611122565b61067e576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006106a582610c2f565b9050806001600160a01b0316836001600160a01b031614156106da5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906106fa57506106f88133610423565b155b15610718576040516367d9dca160e11b815260040160405180910390fd5b610723838383611156565b505050565b6007546001600160a01b0316331461075b5760405162461bcd60e51b815260040161075290611e51565b60405180910390fd5b600954825161077c9061076e90846111b2565b6107766108a4565b90611116565b11156107e15760405162461bcd60e51b815260206004820152602e60248201527f4d696e7420746f6b656e7320746f2077616c6c65747320776f756c642065786360448201526d656564206d617820737570706c7960901b6064820152608401610752565b60005b82518110156107235761081e83828151811061081057634e487b7160e01b600052603260045260246000fd5b6020026020010151836111be565b7fb9144c96c86541f6fa89c9f2f02495cccf4b08cd6643e26d34ee00aa586558a883828151811061085f57634e487b7160e01b600052603260045260246000fd5b60200260200101518360405161088a9291906001600160a01b03929092168252602082015260400190565b60405180910390a18061089c81611f7f565b9150506107e4565b6000546001600160801b03600160801b82048116918116919091031690565b6107238383836111d8565b60006108d983610c41565b82106108f8576040516306ed618760e11b815260040160405180910390fd5b600080546001600160801b03169080805b838110156109c457600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16158015928201929092529061097057506109bc565b80516001600160a01b03161561098557805192505b876001600160a01b0316836001600160a01b031614156109ba57868414156109b3575093506104d892505050565b6001909301925b505b600101610909565b50600080fd5b6007546001600160a01b031633146109f45760405162461bcd60e51b815260040161075290611e51565b60004711610a3d5760405162461bcd60e51b81526020600482015260166024820152754e6f2062616c616e636520746f20776974686472617760501b6044820152606401610752565b6040514790339082156108fc029083906000818181858888f19350505050158015610a6c573d6000803e3d6000fd5b5050565b61072383838360405180602001604052806000815250610f7f565b600080546001600160801b031681805b82811015610b1b57600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290610b125785831415610b0b5750949350505050565b6001909201915b50600101610a9b565b506040516329c8c00760e21b815260040160405180910390fd5b6007546001600160a01b03163314610b5f5760405162461bcd60e51b815260040161075290611e51565b8051610a6c90600b906020840190611930565b60606000610b7f83610c41565b90506000816001600160401b03811115610ba957634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610bd2578160200160208202803683370190505b50905060005b82811015610c2757610bea85826108ce565b828281518110610c0a57634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610c1f81611f7f565b915050610bd8565b509392505050565b6000610c3a826113f5565b5192915050565b60006001600160a01b038216610c6a576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600460205260409020546001600160401b031690565b6007546001600160a01b03163314610cb95760405162461bcd60e51b815260040161075290611e51565b600855565b6007546001600160a01b03163314610ce85760405162461bcd60e51b815260040161075290611e51565b610cf26000611517565b565b6060600280546105d390611f44565b600a5460ff16610d555760405162461bcd60e51b815260206004820152601f60248201527f4d696e74206973206e6f7420617661696c61626c65207269676874206e6f77006044820152606401610752565b600081118015610d6757506008548111155b610db35760405162461bcd60e51b815260206004820152601f60248201527f43616e206f6e6c79206d696e74203120746f6b656e20617420612074696d65006044820152606401610752565b600954610dc2826107766108a4565b1115610e1b5760405162461bcd60e51b815260206004820152602260248201527f51747920746f6b656e7320776f756c6420657863656564206d617820737570706044820152616c7960f01b6064820152608401610752565b6000610e2633610c41565b600854909150610e368284611116565b1115610e735760405162461bcd60e51b815260206004820152600c60248201526b131a5b5a5d08195e18d9595960a21b6044820152606401610752565b610e7d33836111be565b60408051338152602081018490527fb9144c96c86541f6fa89c9f2f02495cccf4b08cd6643e26d34ee00aa586558a8910160405180910390a15050565b6001600160a01b038216331415610ee45760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6007546001600160a01b03163314610f7a5760405162461bcd60e51b815260040161075290611e51565b600955565b610f8a8484846111d8565b610f9684848484611569565b610fb3576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6007546001600160a01b03163314610fe35760405162461bcd60e51b815260040161075290611e51565b600a805460ff1916911515919091179055565b606061100182611122565b61101e57604051630a14c4b560e41b815260040160405180910390fd5b6000611028611678565b90508051600014156110495760405180602001604052806000815250611074565b8061105384611687565b604051602001611064929190611d4d565b6040516020818303038152906040525b9392505050565b6007546001600160a01b031633146110a55760405162461bcd60e51b815260040161075290611e51565b6001600160a01b03811661110a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610752565b61111381611517565b50565b60006110748284611eb6565b600080546001600160801b0316821080156104d8575050600090815260036020526040902054600160e01b900460ff161590565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006110748284611ee2565b610a6c8282604051806020016040528060008152506117a0565b60006111e3826113f5565b80519091506000906001600160a01b0316336001600160a01b03161480611211575081516112119033610423565b8061122c57503361122184610656565b6001600160a01b0316145b90508061124c57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146112815760405162a1148160e81b815260040160405180910390fd5b6001600160a01b0384166112a857604051633a954ecd60e21b815260040160405180910390fd5b6112b86000848460000151611156565b6001600160a01b038581166000908152600460209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600390945282852080546001600160e01b031916909417600160a01b4290921691909102179092559086018083529120549091166113ab576000546001600160801b03168110156113ab57825160008281526003602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101829052905482906001600160801b03168110156114fe57600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906114fc5780516001600160a01b031615611493579392505050565b5060001901600081815260036020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff16151592810192909252156114f7579392505050565b611493565b505b604051636f96cda160e11b815260040160405180910390fd5b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b1561166c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906115ad903390899088908890600401611d7c565b602060405180830381600087803b1580156115c757600080fd5b505af19250505080156115f7575060408051601f3d908101601f191682019092526115f491810190611c87565b60015b611652573d808015611625576040519150601f19603f3d011682016040523d82523d6000602084013e61162a565b606091505b50805161164a576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611670565b5060015b949350505050565b6060600b80546105d390611f44565b6060816116ab5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156116d557806116bf81611f7f565b91506116ce9050600a83611ece565b91506116af565b6000816001600160401b038111156116fd57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611727576020820181803683370190505b5090505b84156116705761173c600183611f01565b9150611749600a86611f9a565b611754906030611eb6565b60f81b81838151811061177757634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611799600a86611ece565b945061172b565b61072383838360016000546001600160801b03166001600160a01b0385166117da57604051622e076360e81b815260040160405180910390fd5b836117f85760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260046020908152604080832080546001600160801b031981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c018116909202179091558584526003909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b8581101561190a5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48380156118e057506118de6000888488611569565b155b156118fe576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101611889565b50600080546001600160801b0319166001600160801b03929092169190911790556113ee565b82805461193c90611f44565b90600052602060002090601f01602090048101928261195e57600085556119a4565b82601f1061197757805160ff19168380011785556119a4565b828001600101855582156119a4579182015b828111156119a4578251825591602001919060010190611989565b506119b09291506119b4565b5090565b5b808211156119b057600081556001016119b5565b60006001600160401b038311156119e2576119e2611fda565b6119f5601f8401601f1916602001611e86565b9050828152838383011115611a0957600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611a3757600080fd5b919050565b80358015158114611a3757600080fd5b600060208284031215611a5d578081fd5b61107482611a20565b60008060408385031215611a78578081fd5b611a8183611a20565b9150611a8f60208401611a20565b90509250929050565b600080600060608486031215611aac578081fd5b611ab584611a20565b9250611ac360208501611a20565b9150604084013590509250925092565b60008060008060808587031215611ae8578081fd5b611af185611a20565b9350611aff60208601611a20565b92506040850135915060608501356001600160401b03811115611b20578182fd5b8501601f81018713611b30578182fd5b611b3f878235602084016119c9565b91505092959194509250565b60008060408385031215611b5d578182fd5b611b6683611a20565b9150611a8f60208401611a3c565b60008060408385031215611b86578182fd5b611b8f83611a20565b946020939093013593505050565b60008060408385031215611baf578182fd5b82356001600160401b0380821115611bc5578384fd5b818501915085601f830112611bd8578384fd5b8135602082821115611bec57611bec611fda565b8160051b9250611bfd818401611e86565b8281528181019085830185870184018b1015611c17578889fd5b8896505b84871015611c4057611c2c81611a20565b835260019690960195918301918301611c1b565b509997909101359750505050505050565b600060208284031215611c62578081fd5b61107482611a3c565b600060208284031215611c7c578081fd5b813561107481611ff0565b600060208284031215611c98578081fd5b815161107481611ff0565b600060208284031215611cb4578081fd5b81356001600160401b03811115611cc9578182fd5b8201601f81018413611cd9578182fd5b611670848235602084016119c9565b600060208284031215611cf9578081fd5b5035919050565b60008060408385031215611d12578081fd5b50508035926020909101359150565b60008151808452611d39816020860160208601611f18565b601f01601f19169290920160200192915050565b60008351611d5f818460208801611f18565b835190830190611d73818360208801611f18565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611daf90830184611d21565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611dfa5783516001600160a01b031683529284019291840191600101611dd5565b50909695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611dfa57835183529284019291840191600101611e22565b6020815260006110746020830184611d21565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b604051601f8201601f191681016001600160401b0381118282101715611eae57611eae611fda565b604052919050565b60008219821115611ec957611ec9611fae565b500190565b600082611edd57611edd611fc4565b500490565b6000816000190483118215151615611efc57611efc611fae565b500290565b600082821015611f1357611f13611fae565b500390565b60005b83811015611f33578181015183820152602001611f1b565b83811115610fb35750506000910152565b600181811c90821680611f5857607f821691505b60208210811415611f7957634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611f9357611f93611fae565b5060010190565b600082611fa957611fa9611fc4565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461111357600080fdfea264697066735822122060b4c59d7fdef908cbe70ecfebaa395bd113c9dd4c670775a50ea3d7a13550c364736f6c63430008040033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000001152504420466f756e64657273205061737300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000075250445041535300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002368747470733a2f2f7265616479706c6179657264616f2e696f2f6d657461646174612f0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101e55760003560e01c80636352211e1161010f578063a22cb465116100a2578063c87b56dd11610071578063c87b56dd14610402578063e985e9c514610415578063eb8d244414610451578063f2fde38b1461045e57600080fd5b8063a22cb465146103b6578063b0b92263146103c9578063b88d4fde146103dc578063c4e37095146103ef57600080fd5b8063715018a6116100de578063715018a6146103825780638da5cb5b1461038a57806395d89b411461039b578063a0712d68146103a357600080fd5b80636352211e1461034057806370a082311461035357806371189742146103665780637146bd081461037957600080fd5b806318160ddd1161018757806342842e0e1161015657806342842e0e146102e75780634f6ccce7146102fa57806355f804b31461030d5780635de6dc551461032057600080fd5b806318160ddd146102b157806323b872dd146102b95780632f745c59146102cc5780633ccfd60b146102df57600080fd5b8063081812fc116101c3578063081812fc14610247578063095ea7b31461027257806309f368ee146102875780630b7abf771461029a57600080fd5b806301ffc9a7146101ea578063048220581461021257806306fdde0314610232575b600080fd5b6101fd6101f8366004611c6b565b610471565b60405190151581526020015b60405180910390f35b610225610220366004611d00565b6104de565b6040516102099190611db9565b61023a6105c4565b6040516102099190611e3e565b61025a610255366004611ce8565b610656565b6040516001600160a01b039091168152602001610209565b610285610280366004611b74565b61069a565b005b610285610295366004611b9d565b610728565b6102a360095481565b604051908152602001610209565b6102a36108a4565b6102856102c7366004611a98565b6108c3565b6102a36102da366004611b74565b6108ce565b6102856109ca565b6102856102f5366004611a98565b610a70565b6102a3610308366004611ce8565b610a8b565b61028561031b366004611ca3565b610b35565b61033361032e366004611a4c565b610b72565b6040516102099190611e06565b61025a61034e366004611ce8565b610c2f565b6102a3610361366004611a4c565b610c41565b610285610374366004611ce8565b610c8f565b6102a360085481565b610285610cbe565b6007546001600160a01b031661025a565b61023a610cf4565b6102856103b1366004611ce8565b610d03565b6102856103c4366004611b4b565b610eba565b6102856103d7366004611ce8565b610f50565b6102856103ea366004611ad3565b610f7f565b6102856103fd366004611c51565b610fb9565b61023a610410366004611ce8565b610ff6565b6101fd610423366004611a66565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b600a546101fd9060ff1681565b61028561046c366004611a4c565b61107b565b60006001600160e01b031982166380ac58cd60e01b14806104a257506001600160e01b03198216635b5e139f60e01b145b806104bd57506001600160e01b0319821663780e9d6360e01b145b806104d857506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060006104ea6108a4565b9050806104f78585611116565b101561050a576105078484611116565b90505b6000816001600160401b0381111561053257634e487b7160e01b600052604160045260246000fd5b60405190808252806020026020018201604052801561055b578160200160208202803683370190505b509050845b828110156105bb5761057181610c2f565b82828151811061059157634e487b7160e01b600052603260045260246000fd5b6001600160a01b0390921660209283029190910190910152806105b381611f7f565b915050610560565b50949350505050565b6060600180546105d390611f44565b80601f01602080910402602001604051908101604052809291908181526020018280546105ff90611f44565b801561064c5780601f106106215761010080835404028352916020019161064c565b820191906000526020600020905b81548152906001019060200180831161062f57829003601f168201915b5050505050905090565b600061066182611122565b61067e576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006106a582610c2f565b9050806001600160a01b0316836001600160a01b031614156106da5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906106fa57506106f88133610423565b155b15610718576040516367d9dca160e11b815260040160405180910390fd5b610723838383611156565b505050565b6007546001600160a01b0316331461075b5760405162461bcd60e51b815260040161075290611e51565b60405180910390fd5b600954825161077c9061076e90846111b2565b6107766108a4565b90611116565b11156107e15760405162461bcd60e51b815260206004820152602e60248201527f4d696e7420746f6b656e7320746f2077616c6c65747320776f756c642065786360448201526d656564206d617820737570706c7960901b6064820152608401610752565b60005b82518110156107235761081e83828151811061081057634e487b7160e01b600052603260045260246000fd5b6020026020010151836111be565b7fb9144c96c86541f6fa89c9f2f02495cccf4b08cd6643e26d34ee00aa586558a883828151811061085f57634e487b7160e01b600052603260045260246000fd5b60200260200101518360405161088a9291906001600160a01b03929092168252602082015260400190565b60405180910390a18061089c81611f7f565b9150506107e4565b6000546001600160801b03600160801b82048116918116919091031690565b6107238383836111d8565b60006108d983610c41565b82106108f8576040516306ed618760e11b815260040160405180910390fd5b600080546001600160801b03169080805b838110156109c457600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16158015928201929092529061097057506109bc565b80516001600160a01b03161561098557805192505b876001600160a01b0316836001600160a01b031614156109ba57868414156109b3575093506104d892505050565b6001909301925b505b600101610909565b50600080fd5b6007546001600160a01b031633146109f45760405162461bcd60e51b815260040161075290611e51565b60004711610a3d5760405162461bcd60e51b81526020600482015260166024820152754e6f2062616c616e636520746f20776974686472617760501b6044820152606401610752565b6040514790339082156108fc029083906000818181858888f19350505050158015610a6c573d6000803e3d6000fd5b5050565b61072383838360405180602001604052806000815250610f7f565b600080546001600160801b031681805b82811015610b1b57600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290610b125785831415610b0b5750949350505050565b6001909201915b50600101610a9b565b506040516329c8c00760e21b815260040160405180910390fd5b6007546001600160a01b03163314610b5f5760405162461bcd60e51b815260040161075290611e51565b8051610a6c90600b906020840190611930565b60606000610b7f83610c41565b90506000816001600160401b03811115610ba957634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610bd2578160200160208202803683370190505b50905060005b82811015610c2757610bea85826108ce565b828281518110610c0a57634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610c1f81611f7f565b915050610bd8565b509392505050565b6000610c3a826113f5565b5192915050565b60006001600160a01b038216610c6a576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600460205260409020546001600160401b031690565b6007546001600160a01b03163314610cb95760405162461bcd60e51b815260040161075290611e51565b600855565b6007546001600160a01b03163314610ce85760405162461bcd60e51b815260040161075290611e51565b610cf26000611517565b565b6060600280546105d390611f44565b600a5460ff16610d555760405162461bcd60e51b815260206004820152601f60248201527f4d696e74206973206e6f7420617661696c61626c65207269676874206e6f77006044820152606401610752565b600081118015610d6757506008548111155b610db35760405162461bcd60e51b815260206004820152601f60248201527f43616e206f6e6c79206d696e74203120746f6b656e20617420612074696d65006044820152606401610752565b600954610dc2826107766108a4565b1115610e1b5760405162461bcd60e51b815260206004820152602260248201527f51747920746f6b656e7320776f756c6420657863656564206d617820737570706044820152616c7960f01b6064820152608401610752565b6000610e2633610c41565b600854909150610e368284611116565b1115610e735760405162461bcd60e51b815260206004820152600c60248201526b131a5b5a5d08195e18d9595960a21b6044820152606401610752565b610e7d33836111be565b60408051338152602081018490527fb9144c96c86541f6fa89c9f2f02495cccf4b08cd6643e26d34ee00aa586558a8910160405180910390a15050565b6001600160a01b038216331415610ee45760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6007546001600160a01b03163314610f7a5760405162461bcd60e51b815260040161075290611e51565b600955565b610f8a8484846111d8565b610f9684848484611569565b610fb3576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6007546001600160a01b03163314610fe35760405162461bcd60e51b815260040161075290611e51565b600a805460ff1916911515919091179055565b606061100182611122565b61101e57604051630a14c4b560e41b815260040160405180910390fd5b6000611028611678565b90508051600014156110495760405180602001604052806000815250611074565b8061105384611687565b604051602001611064929190611d4d565b6040516020818303038152906040525b9392505050565b6007546001600160a01b031633146110a55760405162461bcd60e51b815260040161075290611e51565b6001600160a01b03811661110a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610752565b61111381611517565b50565b60006110748284611eb6565b600080546001600160801b0316821080156104d8575050600090815260036020526040902054600160e01b900460ff161590565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006110748284611ee2565b610a6c8282604051806020016040528060008152506117a0565b60006111e3826113f5565b80519091506000906001600160a01b0316336001600160a01b03161480611211575081516112119033610423565b8061122c57503361122184610656565b6001600160a01b0316145b90508061124c57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146112815760405162a1148160e81b815260040160405180910390fd5b6001600160a01b0384166112a857604051633a954ecd60e21b815260040160405180910390fd5b6112b86000848460000151611156565b6001600160a01b038581166000908152600460209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600390945282852080546001600160e01b031916909417600160a01b4290921691909102179092559086018083529120549091166113ab576000546001600160801b03168110156113ab57825160008281526003602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101829052905482906001600160801b03168110156114fe57600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906114fc5780516001600160a01b031615611493579392505050565b5060001901600081815260036020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff16151592810192909252156114f7579392505050565b611493565b505b604051636f96cda160e11b815260040160405180910390fd5b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b1561166c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906115ad903390899088908890600401611d7c565b602060405180830381600087803b1580156115c757600080fd5b505af19250505080156115f7575060408051601f3d908101601f191682019092526115f491810190611c87565b60015b611652573d808015611625576040519150601f19603f3d011682016040523d82523d6000602084013e61162a565b606091505b50805161164a576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611670565b5060015b949350505050565b6060600b80546105d390611f44565b6060816116ab5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156116d557806116bf81611f7f565b91506116ce9050600a83611ece565b91506116af565b6000816001600160401b038111156116fd57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611727576020820181803683370190505b5090505b84156116705761173c600183611f01565b9150611749600a86611f9a565b611754906030611eb6565b60f81b81838151811061177757634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611799600a86611ece565b945061172b565b61072383838360016000546001600160801b03166001600160a01b0385166117da57604051622e076360e81b815260040160405180910390fd5b836117f85760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260046020908152604080832080546001600160801b031981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c018116909202179091558584526003909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b8581101561190a5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48380156118e057506118de6000888488611569565b155b156118fe576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101611889565b50600080546001600160801b0319166001600160801b03929092169190911790556113ee565b82805461193c90611f44565b90600052602060002090601f01602090048101928261195e57600085556119a4565b82601f1061197757805160ff19168380011785556119a4565b828001600101855582156119a4579182015b828111156119a4578251825591602001919060010190611989565b506119b09291506119b4565b5090565b5b808211156119b057600081556001016119b5565b60006001600160401b038311156119e2576119e2611fda565b6119f5601f8401601f1916602001611e86565b9050828152838383011115611a0957600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611a3757600080fd5b919050565b80358015158114611a3757600080fd5b600060208284031215611a5d578081fd5b61107482611a20565b60008060408385031215611a78578081fd5b611a8183611a20565b9150611a8f60208401611a20565b90509250929050565b600080600060608486031215611aac578081fd5b611ab584611a20565b9250611ac360208501611a20565b9150604084013590509250925092565b60008060008060808587031215611ae8578081fd5b611af185611a20565b9350611aff60208601611a20565b92506040850135915060608501356001600160401b03811115611b20578182fd5b8501601f81018713611b30578182fd5b611b3f878235602084016119c9565b91505092959194509250565b60008060408385031215611b5d578182fd5b611b6683611a20565b9150611a8f60208401611a3c565b60008060408385031215611b86578182fd5b611b8f83611a20565b946020939093013593505050565b60008060408385031215611baf578182fd5b82356001600160401b0380821115611bc5578384fd5b818501915085601f830112611bd8578384fd5b8135602082821115611bec57611bec611fda565b8160051b9250611bfd818401611e86565b8281528181019085830185870184018b1015611c17578889fd5b8896505b84871015611c4057611c2c81611a20565b835260019690960195918301918301611c1b565b509997909101359750505050505050565b600060208284031215611c62578081fd5b61107482611a3c565b600060208284031215611c7c578081fd5b813561107481611ff0565b600060208284031215611c98578081fd5b815161107481611ff0565b600060208284031215611cb4578081fd5b81356001600160401b03811115611cc9578182fd5b8201601f81018413611cd9578182fd5b611670848235602084016119c9565b600060208284031215611cf9578081fd5b5035919050565b60008060408385031215611d12578081fd5b50508035926020909101359150565b60008151808452611d39816020860160208601611f18565b601f01601f19169290920160200192915050565b60008351611d5f818460208801611f18565b835190830190611d73818360208801611f18565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611daf90830184611d21565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611dfa5783516001600160a01b031683529284019291840191600101611dd5565b50909695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611dfa57835183529284019291840191600101611e22565b6020815260006110746020830184611d21565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b604051601f8201601f191681016001600160401b0381118282101715611eae57611eae611fda565b604052919050565b60008219821115611ec957611ec9611fae565b500190565b600082611edd57611edd611fc4565b500490565b6000816000190483118215151615611efc57611efc611fae565b500290565b600082821015611f1357611f13611fae565b500390565b60005b83811015611f33578181015183820152602001611f1b565b83811115610fb35750506000910152565b600181811c90821680611f5857607f821691505b60208210811415611f7957634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611f9357611f93611fae565b5060010190565b600082611fa957611fa9611fc4565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461111357600080fdfea264697066735822122060b4c59d7fdef908cbe70ecfebaa395bd113c9dd4c670775a50ea3d7a13550c364736f6c63430008040033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000001152504420466f756e64657273205061737300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000075250445041535300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002368747470733a2f2f7265616479706c6179657264616f2e696f2f6d657461646174612f0000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): RPD Founders Pass
Arg [1] : symbol (string): RPDPASS
Arg [2] : uri (string): https://readyplayerdao.io/metadata/

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000011
Arg [4] : 52504420466f756e646572732050617373000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [6] : 5250445041535300000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000023
Arg [8] : 68747470733a2f2f7265616479706c6179657264616f2e696f2f6d6574616461
Arg [9] : 74612f0000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

202:3557:10:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6054:366:3;;;;;;:::i;:::-;;:::i;:::-;;;8759:14:13;;8752:22;8734:41;;8722:2;8707:18;6054:366:3;;;;;;;;3335:422:10;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;8597:98:3:-;;;:::i;:::-;;;;;;;:::i;10053:200::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6472:32:13;;;6454:51;;6442:2;6427:18;10053:200:3;6409:102:13;9630:362:3;;;;;;:::i;:::-;;:::i;:::-;;2013:368:10;;;;;;:::i;:::-;;:::i;479:34::-;;;;;;;;;12154:25:13;;;12142:2;12127:18;479:34:10;12109:76:13;3362:274:3;;;:::i;10884:164::-;;;;;;:::i;:::-;;:::i;4910:1077::-;;;;;;:::i;:::-;;:::i;1752:208:10:-;;;:::i;11114:179:3:-;;;;;;:::i;:::-;;:::i;3922:695::-;;;;;;:::i;:::-;;:::i;1384:94:10:-;;;;;;:::i;:::-;;:::i;2952:337::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;8413:122:3:-;;;;;;:::i;:::-;;:::i;6479:203::-;;;;;;:::i;:::-;;:::i;1017:105:10:-;;;;;;:::i;:::-;;:::i;419:28::-;;;;;;1661:101:9;;;:::i;1029:85::-;1101:6;;-1:-1:-1;;;;;1101:6:9;1029:85;;8759:102:3;;;:::i;2426:478:10:-;;;;;;:::i;:::-;;:::i;10320:274:3:-;;;;;;:::i;:::-;;:::i;1175:89:10:-;;;;;;:::i;:::-;;:::i;11359:332:3:-;;;;;;:::i;:::-;;:::i;878:94:10:-;;;;;;:::i;:::-;;:::i;8927:313:3:-;;;;;;:::i;:::-;;:::i;10660:162::-;;;;;;:::i;:::-;-1:-1:-1;;;;;10780:25:3;;;10757:4;10780:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;10660:162;552:31:10;;;;;;;;;1911:198:9;;;;;;:::i;:::-;;:::i;6054:366:3:-;6156:4;-1:-1:-1;;;;;;6191:40:3;;-1:-1:-1;;;6191:40:3;;:104;;-1:-1:-1;;;;;;;6247:48:3;;-1:-1:-1;;;6247:48:3;6191:104;:170;;;-1:-1:-1;;;;;;;6311:50:3;;-1:-1:-1;;;6311:50:3;6191:170;:222;;;-1:-1:-1;;;;;;;;;;937:40:2;;;6377:36:3;6172:241;6054:366;-1:-1:-1;;6054:366:3:o;3335:422:10:-;3405:16;3433:15;3451:13;:11;:13::i;:::-;3433:31;-1:-1:-1;3433:31:10;3479:17;:6;3490:5;3479:10;:17::i;:::-;:30;3475:91;;;3538:17;:6;3549:5;3538:10;:17::i;:::-;3525:30;;3475:91;3576:23;3616:10;-1:-1:-1;;;;;3602:25:10;;;;;-1:-1:-1;;;3602:25:10;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3602:25:10;-1:-1:-1;3576:51:10;-1:-1:-1;3651:6:10;3637:90;3663:10;3659:1;:14;3637:90;;;3706:10;3714:1;3706:7;:10::i;:::-;3694:6;3701:1;3694:9;;;;;;-1:-1:-1;;;3694:9:10;;;;;;;;;-1:-1:-1;;;;;3694:22:10;;;:9;;;;;;;;;;;:22;3675:3;;;;:::i;:::-;;;;3637:90;;;-1:-1:-1;3744:6:10;3335:422;-1:-1:-1;;;;3335:422:10:o;8597:98:3:-;8651:13;8683:5;8676:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8597:98;:::o;10053:200::-;10121:7;10145:16;10153:7;10145;:16::i;:::-;10140:64;;10170:34;;-1:-1:-1;;;10170:34:3;;;;;;;;;;;10140:64;-1:-1:-1;10222:24:3;;;;:15;:24;;;;;;-1:-1:-1;;;;;10222:24:3;;10053:200::o;9630:362::-;9702:13;9718:24;9734:7;9718:15;:24::i;:::-;9702:40;;9762:5;-1:-1:-1;;;;;9756:11:3;:2;-1:-1:-1;;;;;9756:11:3;;9752:48;;;9776:24;;-1:-1:-1;;;9776:24:3;;;;;;;;;;;9752:48;719:10:1;-1:-1:-1;;;;;9815:21:3;;;;;;:63;;-1:-1:-1;9841:37:3;9858:5;719:10:1;10660:162:3;:::i;9841:37::-;9840:38;9815:63;9811:136;;;9901:35;;-1:-1:-1;;;9901:35:3;;;;;;;;;;;9811:136;9957:28;9966:2;9970:7;9979:5;9957:8;:28::i;:::-;9630:362;;;:::o;2013:368:10:-;1101:6:9;;-1:-1:-1;;;;;1101:6:9;719:10:1;1241:23:9;1233:68;;;;-1:-1:-1;;;1233:68:9;;;;;;;:::i;:::-;;;;;;;;;2156:12:10::1;::::0;2129:13;;2111:41:::1;::::0;2129:22:::1;::::0;2147:3;2129:17:::1;:22::i;:::-;2111:13;:11;:13::i;:::-;:17:::0;::::1;:41::i;:::-;:57;;2103:116;;;::::0;-1:-1:-1;;;2103:116:10;;11795:2:13;2103:116:10::1;::::0;::::1;11777:21:13::0;11834:2;11814:18;;;11807:30;11873:34;11853:18;;;11846:62;-1:-1:-1;;;11924:18:13;;;11917:44;11978:19;;2103:116:10::1;11767:236:13::0;2103:116:10::1;2243:6;2238:137;2259:6;:13;2255:1;:17;2238:137;;;2293:25;2303:6;2310:1;2303:9;;;;;;-1:-1:-1::0;;;2303:9:10::1;;;;;;;;;;;;;;;2314:3;2293:9;:25::i;:::-;2337:27;2349:6;2356:1;2349:9;;;;;;-1:-1:-1::0;;;2349:9:10::1;;;;;;;;;;;;;;;2360:3;2337:27;;;;;;-1:-1:-1::0;;;;;7201:32:13;;;;7183:51;;7265:2;7250:18;;7243:34;7171:2;7156:18;;7138:145;2337:27:10::1;;;;;;;;2274:3:::0;::::1;::::0;::::1;:::i;:::-;;;;2238:137;;3362:274:3::0;3415:7;3603:12;-1:-1:-1;;;;;;;;3603:12:3;;;;3587:13;;;:28;;;;3580:35;;3362:274::o;10884:164::-;11013:28;11023:4;11029:2;11033:7;11013:9;:28::i;4910:1077::-;4999:7;5031:16;5041:5;5031:9;:16::i;:::-;5022:5;:25;5018:61;;5056:23;;-1:-1:-1;;;5056:23:3;;;;;;;;;;;5018:61;5089:22;5114:13;;-1:-1:-1;;;;;5114:13:3;;5089:22;;5357:543;5377:14;5373:1;:18;5357:543;;;5416:31;5450:14;;;:11;:14;;;;;;;;;5416:48;;;;;;;;;-1:-1:-1;;;;;5416:48:3;;;;-1:-1:-1;;;5416:48:3;;-1:-1:-1;;;;;5416:48:3;;;;;;;;-1:-1:-1;;;5416:48:3;;;;;;;;;;;;;;;;5482:71;;5526:8;;;5482:71;5574:14;;-1:-1:-1;;;;;5574:28:3;;5570:109;;5646:14;;;-1:-1:-1;5570:109:3;5721:5;-1:-1:-1;;;;;5700:26:3;:17;-1:-1:-1;;;;;5700:26:3;;5696:190;;;5769:5;5754:11;:20;5750:83;;;-1:-1:-1;5809:1:3;-1:-1:-1;5802:8:3;;-1:-1:-1;;;5802:8:3;5750:83;5854:13;;;;;5696:190;5357:543;;5393:3;;5357:543;;;;5972:8;;;1752:208:10;1101:6:9;;-1:-1:-1;;;;;1101:6:9;719:10:1;1241:23:9;1233:68;;;;-1:-1:-1;;;1233:68:9;;;;;;;:::i;:::-;1831:1:10::1;1807:21;:25;1799:60;;;::::0;-1:-1:-1;;;1799:60:10;;11103:2:13;1799:60:10::1;::::0;::::1;11085:21:13::0;11142:2;11122:18;;;11115:30;-1:-1:-1;;;11161:18:13;;;11154:52;11223:18;;1799:60:10::1;11075:172:13::0;1799:60:10::1;1916:37;::::0;1885:21:::1;::::0;1924:10:::1;::::0;1916:37;::::1;;;::::0;1885:21;;1870:12:::1;1916:37:::0;1870:12;1916:37;1885:21;1924:10;1916:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;1311:1:9;1752:208:10:o:0;11114:179:3:-;11247:39;11264:4;11270:2;11274:7;11247:39;;;;;;;;;;;;:16;:39::i;3922:695::-;3989:7;4033:13;;-1:-1:-1;;;;;4033:13:3;3989:7;;4241:320;4261:14;4257:1;:18;4241:320;;;4300:31;4334:14;;;:11;:14;;;;;;;;;4300:48;;;;;;;;;-1:-1:-1;;;;;4300:48:3;;;;-1:-1:-1;;;4300:48:3;;-1:-1:-1;;;;;4300:48:3;;;;;;;;-1:-1:-1;;;4300:48:3;;;;;;;;;;;;;;4366:181;;4430:5;4415:11;:20;4411:83;;;-1:-1:-1;4470:1:3;3922:695;-1:-1:-1;;;;3922:695:3:o;4411:83::-;4515:13;;;;;4366:181;-1:-1:-1;4277:3:3;;4241:320;;;;4587:23;;-1:-1:-1;;;4587:23:3;;;;;;;;;;;1384:94:10;1101:6:9;;-1:-1:-1;;;;;1101:6:9;719:10:1;1241:23:9;1233:68;;;;-1:-1:-1;;;1233:68:9;;;;;;;:::i;:::-;1454:17:10;;::::1;::::0;:7:::1;::::0;:17:::1;::::0;::::1;::::0;::::1;:::i;2952:337::-:0;3015:16;3043:15;3061:16;3071:5;3061:9;:16::i;:::-;3043:34;;3088:25;3130:10;-1:-1:-1;;;;;3116:25:10;;;;;-1:-1:-1;;;3116:25:10;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3116:25:10;;3088:53;;3156:6;3151:106;3172:10;3168:1;:14;3151:106;;;3217:29;3237:5;3244:1;3217:19;:29::i;:::-;3203:8;3212:1;3203:11;;;;;;-1:-1:-1;;;3203:11:10;;;;;;;;;;;;;;;;;;:43;3184:3;;;;:::i;:::-;;;;3151:106;;;-1:-1:-1;3274:8:10;2952:337;-1:-1:-1;;;2952:337:10:o;8413:122:3:-;8477:7;8503:20;8515:7;8503:11;:20::i;:::-;:25;;8413:122;-1:-1:-1;;8413:122:3:o;6479:203::-;6543:7;-1:-1:-1;;;;;6566:19:3;;6562:60;;6594:28;;-1:-1:-1;;;6594:28:3;;;;;;;;;;;6562:60;-1:-1:-1;;;;;;6647:19:3;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;6647:27:3;;6479:203::o;1017:105:10:-;1101:6:9;;-1:-1:-1;;;;;1101:6:9;719:10:1;1241:23:9;1233:68;;;;-1:-1:-1;;;1233:68:9;;;;;;;:::i;:::-;1089:12:10::1;:26:::0;1017:105::o;1661:101:9:-;1101:6;;-1:-1:-1;;;;;1101:6:9;719:10:1;1241:23:9;1233:68;;;;-1:-1:-1;;;1233:68:9;;;;;;;:::i;:::-;1725:30:::1;1752:1;1725:18;:30::i;:::-;1661:101::o:0;8759:102:3:-;8815:13;8847:7;8840:14;;;;;:::i;2426:478:10:-;2477:12;;;;2469:56;;;;-1:-1:-1;;;2469:56:10;;10022:2:13;2469:56:10;;;10004:21:13;10061:2;10041:18;;;10034:30;10100:33;10080:18;;;10073:61;10151:18;;2469:56:10;9994:181:13;2469:56:10;2549:1;2543:3;:7;:30;;;;;2561:12;;2554:3;:19;;2543:30;2535:74;;;;-1:-1:-1;;;2535:74:10;;10382:2:13;2535:74:10;;;10364:21:13;10421:2;10401:18;;;10394:30;10460:33;10440:18;;;10433:61;10511:18;;2535:74:10;10354:181:13;2535:74:10;2653:12;;2627:22;2645:3;2627:13;:11;:13::i;:22::-;:38;;2619:85;;;;-1:-1:-1;;;2619:85:10;;9212:2:13;2619:85:10;;;9194:21:13;9251:2;9231:18;;;9224:30;9290:34;9270:18;;;9263:62;-1:-1:-1;;;9341:18:13;;;9334:32;9383:19;;2619:85:10;9184:224:13;2619:85:10;2714:12;2729:21;2739:10;2729:9;:21::i;:::-;2788:12;;2714:36;;-1:-1:-1;2768:16:10;2714:36;2780:3;2768:11;:16::i;:::-;:32;;2760:57;;;;-1:-1:-1;;;2760:57:10;;11454:2:13;2760:57:10;;;11436:21:13;11493:2;11473:18;;;11466:30;-1:-1:-1;;;11512:18:13;;;11505:42;11564:18;;2760:57:10;11426:162:13;2760:57:10;2828:26;2838:10;2850:3;2828:9;:26::i;:::-;2869:28;;;2881:10;7183:51:13;;7265:2;7250:18;;7243:34;;;2869:28:10;;7156:18:13;2869:28:10;;;;;;;2426:478;;:::o;10320:274:3:-;-1:-1:-1;;;;;10410:24:3;;719:10:1;10410:24:3;10406:54;;;10443:17;;-1:-1:-1;;;10443:17:3;;;;;;;;;;;10406:54;719:10:1;10471:32:3;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;10471:42:3;;;;;;;;;;;;:53;;-1:-1:-1;;10471:53:3;;;;;;;;;;10539:48;;8734:41:13;;;10471:42:3;;719:10:1;10539:48:3;;8707:18:13;10539:48:3;;;;;;;10320:274;;:::o;1175:89:10:-;1101:6:9;;-1:-1:-1;;;;;1101:6:9;719:10:1;1241:23:9;1233:68;;;;-1:-1:-1;;;1233:68:9;;;;;;;:::i;:::-;1239:12:10::1;:18:::0;1175:89::o;11359:332:3:-;11520:28;11530:4;11536:2;11540:7;11520:9;:28::i;:::-;11563:48;11586:4;11592:2;11596:7;11605:5;11563:22;:48::i;:::-;11558:127;;11634:40;;-1:-1:-1;;;11634:40:3;;;;;;;;;;;11558:127;11359:332;;;;:::o;878:94:10:-;1101:6:9;;-1:-1:-1;;;;;1101:6:9;719:10:1;1241:23:9;1233:68;;;;-1:-1:-1;;;1233:68:9;;;;;;;:::i;:::-;942:12:10::1;:23:::0;;-1:-1:-1;;942:23:10::1;::::0;::::1;;::::0;;;::::1;::::0;;878:94::o;8927:313:3:-;9000:13;9030:16;9038:7;9030;:16::i;:::-;9025:59;;9055:29;;-1:-1:-1;;;9055:29:3;;;;;;;;;;;9025:59;9095:21;9119:10;:8;:10::i;:::-;9095:34;;9152:7;9146:21;9171:1;9146:26;;:87;;;;;;;;;;;;;;;;;9199:7;9208:18;:7;:16;:18::i;:::-;9182:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;9146:87;9139:94;8927:313;-1:-1:-1;;;8927:313:3:o;1911:198:9:-;1101:6;;-1:-1:-1;;;;;1101:6:9;719:10:1;1241:23:9;1233:68;;;;-1:-1:-1;;;1233:68:9;;;;;;;:::i;:::-;-1:-1:-1;;;;;1999:22:9;::::1;1991:73;;;::::0;-1:-1:-1;;;1991:73:9;;9615:2:13;1991:73:9::1;::::0;::::1;9597:21:13::0;9654:2;9634:18;;;9627:30;9693:34;9673:18;;;9666:62;-1:-1:-1;;;9744:18:13;;;9737:36;9790:19;;1991:73:9::1;9587:228:13::0;1991:73:9::1;2074:28;2093:8;2074:18;:28::i;:::-;1911:198:::0;:::o;2741:96:11:-;2799:7;2825:5;2829:1;2825;:5;:::i;11937:142:3:-;11994:4;12027:13;;-1:-1:-1;;;;;12027:13:3;12017:23;;:55;;;;-1:-1:-1;;12045:20:3;;;;:11;:20;;;;;:27;-1:-1:-1;;;12045:27:3;;;;12044:28;;11937:142::o;18966:189::-;19076:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;19076:29:3;-1:-1:-1;;;;;19076:29:3;;;;;;;;;19120:28;;19076:24;;19120:28;;;;;;;18966:189;;;:::o;3451:96:11:-;3509:7;3535:5;3539:1;3535;:5;:::i;12085:102:3:-;12153:27;12163:2;12167:8;12153:27;;;;;;;;;;;;:9;:27::i;14571:2067::-;14681:35;14719:20;14731:7;14719:11;:20::i;:::-;14792:18;;14681:58;;-1:-1:-1;14750:22:3;;-1:-1:-1;;;;;14776:34:3;719:10:1;-1:-1:-1;;;;;14776:34:3;;:100;;;-1:-1:-1;14843:18:3;;14826:50;;719:10:1;10660:162:3;:::i;14826:50::-;14776:152;;;-1:-1:-1;719:10:1;14892:20:3;14904:7;14892:11;:20::i;:::-;-1:-1:-1;;;;;14892:36:3;;14776:152;14750:179;;14945:17;14940:66;;14971:35;;-1:-1:-1;;;14971:35:3;;;;;;;;;;;14940:66;15042:4;-1:-1:-1;;;;;15020:26:3;:13;:18;;;-1:-1:-1;;;;;15020:26:3;;15016:67;;15055:28;;-1:-1:-1;;;15055:28:3;;;;;;;;;;;15016:67;-1:-1:-1;;;;;15097:16:3;;15093:52;;15122:23;;-1:-1:-1;;;15122:23:3;;;;;;;;;;;15093:52;15261:49;15278:1;15282:7;15291:13;:18;;;15261:8;:49::i;:::-;-1:-1:-1;;;;;15600:18:3;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;15600:31:3;;;-1:-1:-1;;;;;15600:31:3;;;-1:-1:-1;;15600:31:3;;;;;;;15645:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;15645:29:3;;;;;;;;;;;15689:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;15733:61:3;;;;-1:-1:-1;;;15778:15:3;15733:61;;;;;;;;;;;16064:11;;;16093:24;;;;;:29;16064:11;;16093:29;16089:438;;16315:13;;-1:-1:-1;;;;;16315:13:3;16301:27;;16297:216;;;16384:18;;;16352:24;;;:11;:24;;;;;;;;:50;;16466:28;;;;-1:-1:-1;;;;;16424:70:3;-1:-1:-1;;;16424:70:3;-1:-1:-1;;;;;;16424:70:3;;;-1:-1:-1;;;;;16352:50:3;;;16424:70;;;;;;;16297:216;14571:2067;16571:7;16567:2;-1:-1:-1;;;;;16552:27:3;16561:4;-1:-1:-1;;;;;16552:27:3;;;;;;;;;;;16589:42;14571:2067;;;;;:::o;7298:1058::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;7460:13:3;;7407:7;;-1:-1:-1;;;;;7460:13:3;7453:20;;7449:843;;;7493:31;7527:17;;;:11;:17;;;;;;;;;7493:51;;;;;;;;;-1:-1:-1;;;;;7493:51:3;;;;-1:-1:-1;;;7493:51:3;;-1:-1:-1;;;;;7493:51:3;;;;;;;;-1:-1:-1;;;7493:51:3;;;;;;;;;;;;;;7562:716;;7611:14;;-1:-1:-1;;;;;7611:28:3;;7607:99;;7674:9;7298:1058;-1:-1:-1;;;7298:1058:3:o;7607:99::-;-1:-1:-1;;;8044:6:3;8088:17;;;;:11;:17;;;;;;;;;8076:29;;;;;;;;;-1:-1:-1;;;;;8076:29:3;;;;;-1:-1:-1;;;8076:29:3;;-1:-1:-1;;;;;8076:29:3;;;;;;;;-1:-1:-1;;;8076:29:3;;;;;;;;;;;;;8135:28;8131:107;;8202:9;7298:1058;-1:-1:-1;;;7298:1058:3:o;8131:107::-;8005:255;;;7449:843;;8318:31;;-1:-1:-1;;;8318:31:3;;;;;;;;;;;2263:187:9;2355:6;;;-1:-1:-1;;;;;2371:17:9;;;-1:-1:-1;;;;;;2371:17:9;;;;;;;2403:40;;2355:6;;;2371:17;2355:6;;2403:40;;2336:16;;2403:40;2263:187;;:::o;19708:769:3:-;19858:4;-1:-1:-1;;;;;19878:13:3;;1465:19:0;:23;19874:597:3;;19913:72;;-1:-1:-1;;;19913:72:3;;-1:-1:-1;;;;;19913:36:3;;;;;:72;;719:10:1;;19964:4:3;;19970:7;;19979:5;;19913:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19913:72:3;;;;;;;;-1:-1:-1;;19913:72:3;;;;;;;;;;;;:::i;:::-;;;19909:510;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20156:13:3;;20152:253;;20205:40;;-1:-1:-1;;;20205:40:3;;;;;;;;;;;20152:253;20357:6;20351:13;20342:6;20338:2;20334:15;20327:38;19909:510;-1:-1:-1;;;;;;20035:55:3;-1:-1:-1;;;20035:55:3;;-1:-1:-1;20028:62:3;;19874:597;-1:-1:-1;20456:4:3;19874:597;19708:769;;;;;;:::o;1609:105:10:-;1668:13;1700:7;1693:14;;;;;:::i;328:703:12:-;384:13;601:10;597:51;;-1:-1:-1;;627:10:12;;;;;;;;;;;;-1:-1:-1;;;627:10:12;;;;;328:703::o;597:51::-;672:5;657:12;711:75;718:9;;711:75;;743:8;;;;:::i;:::-;;-1:-1:-1;765:10:12;;-1:-1:-1;773:2:12;765:10;;:::i;:::-;;;711:75;;;795:19;827:6;-1:-1:-1;;;;;817:17:12;;;;;-1:-1:-1;;;817:17:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;817:17:12;;795:39;;844:150;851:10;;844:150;;877:11;887:1;877:11;;:::i;:::-;;-1:-1:-1;945:10:12;953:2;945:5;:10;:::i;:::-;932:24;;:2;:24;:::i;:::-;919:39;;902:6;909;902:14;;;;;;-1:-1:-1;;;902:14:12;;;;;;;;;;;;:56;-1:-1:-1;;;;;902:56:12;;;;;;;;-1:-1:-1;972:11:12;981:2;972:11;;:::i;:::-;;;844:150;;12538:157:3;12656:32;12662:2;12666:8;12676:5;12683:4;13075:20;13098:13;-1:-1:-1;;;;;13098:13:3;-1:-1:-1;;;;;13125:16:3;;13121:48;;13150:19;;-1:-1:-1;;;13150:19:3;;;;;;;;;;;13121:48;13183:13;13179:44;;13205:18;;-1:-1:-1;;;13205:18:3;;;;;;;;;;;13179:44;-1:-1:-1;;;;;13567:16:3;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;;;;;13625:49:3;;-1:-1:-1;;;;;13567:44:3;;;;;;;13625:49;;;;-1:-1:-1;;13567:44:3;;;;;;13625:49;;;;;;;;;;;;;;;;13689:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;13738:66:3;;;;-1:-1:-1;;;13788:15:3;13738:66;;;;;;;;;;;13689:25;;13869:322;13889:8;13885:1;:12;13869:322;;;13927:38;;13952:12;;-1:-1:-1;;;;;13927:38:3;;;13944:1;;13927:38;;13944:1;;13927:38;13987:4;:68;;;;;13996:59;14027:1;14031:2;14035:12;14049:5;13996:22;:59::i;:::-;13995:60;13987:68;13983:162;;;14086:40;;-1:-1:-1;;;14086:40:3;;;;;;;;;;;13983:162;14162:14;;;;;13899:3;13869:322;;;-1:-1:-1;14205:13:3;:37;;-1:-1:-1;;;;;;14205:37:3;-1:-1:-1;;;;;14205:37:3;;;;;;;;;;14262:60;11359:332;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:13;78:5;-1:-1:-1;;;;;104:6:13;101:30;98:2;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:13;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:2;;;309:1;306;299:12;268:2;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;88:332;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:13;;532:42;;522:2;;588:1;585;578:12;522:2;474:124;;;:::o;603:160::-;668:20;;724:13;;717:21;707:32;;697:2;;753:1;750;743:12;768:196;827:6;880:2;868:9;859:7;855:23;851:32;848:2;;;901:6;893;886:22;848:2;929:29;948:9;929:29;:::i;969:270::-;1037:6;1045;1098:2;1086:9;1077:7;1073:23;1069:32;1066:2;;;1119:6;1111;1104:22;1066:2;1147:29;1166:9;1147:29;:::i;:::-;1137:39;;1195:38;1229:2;1218:9;1214:18;1195:38;:::i;:::-;1185:48;;1056:183;;;;;:::o;1244:338::-;1321:6;1329;1337;1390:2;1378:9;1369:7;1365:23;1361:32;1358:2;;;1411:6;1403;1396:22;1358:2;1439:29;1458:9;1439:29;:::i;:::-;1429:39;;1487:38;1521:2;1510:9;1506:18;1487:38;:::i;:::-;1477:48;;1572:2;1561:9;1557:18;1544:32;1534:42;;1348:234;;;;;:::o;1587:696::-;1682:6;1690;1698;1706;1759:3;1747:9;1738:7;1734:23;1730:33;1727:2;;;1781:6;1773;1766:22;1727:2;1809:29;1828:9;1809:29;:::i;:::-;1799:39;;1857:38;1891:2;1880:9;1876:18;1857:38;:::i;:::-;1847:48;;1942:2;1931:9;1927:18;1914:32;1904:42;;1997:2;1986:9;1982:18;1969:32;-1:-1:-1;;;;;2016:6:13;2013:30;2010:2;;;2061:6;2053;2046:22;2010:2;2089:22;;2142:4;2134:13;;2130:27;-1:-1:-1;2120:2:13;;2176:6;2168;2161:22;2120:2;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1717:566;;;;;;;:::o;2288:264::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:2;;;2435:6;2427;2420:22;2382:2;2463:29;2482:9;2463:29;:::i;:::-;2453:39;;2511:35;2542:2;2531:9;2527:18;2511:35;:::i;2557:264::-;2625:6;2633;2686:2;2674:9;2665:7;2661:23;2657:32;2654:2;;;2707:6;2699;2692:22;2654:2;2735:29;2754:9;2735:29;:::i;:::-;2725:39;2811:2;2796:18;;;;2783:32;;-1:-1:-1;;;2644:177:13:o;2826:1078::-;2919:6;2927;2980:2;2968:9;2959:7;2955:23;2951:32;2948:2;;;3001:6;2993;2986:22;2948:2;3046:9;3033:23;-1:-1:-1;;;;;3116:2:13;3108:6;3105:14;3102:2;;;3137:6;3129;3122:22;3102:2;3180:6;3169:9;3165:22;3155:32;;3225:7;3218:4;3214:2;3210:13;3206:27;3196:2;;3252:6;3244;3237:22;3196:2;3293;3280:16;3315:4;3338:2;3334;3331:10;3328:2;;;3344:18;;:::i;:::-;3390:2;3387:1;3383:10;3373:20;;3413:28;3437:2;3433;3429:11;3413:28;:::i;:::-;3475:15;;;3506:12;;;;3538:11;;;3568;;;3564:20;;3561:33;-1:-1:-1;3558:2:13;;;3612:6;3604;3597:22;3558:2;3639:6;3630:15;;3654:169;3668:2;3665:1;3662:9;3654:169;;;3725:23;3744:3;3725:23;:::i;:::-;3713:36;;3686:1;3679:9;;;;;3769:12;;;;3801;;3654:169;;;-1:-1:-1;3842:5:13;3879:18;;;;3866:32;;-1:-1:-1;;;;;;;2938:966:13:o;3909:190::-;3965:6;4018:2;4006:9;3997:7;3993:23;3989:32;3986:2;;;4039:6;4031;4024:22;3986:2;4067:26;4083:9;4067:26;:::i;4104:255::-;4162:6;4215:2;4203:9;4194:7;4190:23;4186:32;4183:2;;;4236:6;4228;4221:22;4183:2;4280:9;4267:23;4299:30;4323:5;4299:30;:::i;4364:259::-;4433:6;4486:2;4474:9;4465:7;4461:23;4457:32;4454:2;;;4507:6;4499;4492:22;4454:2;4544:9;4538:16;4563:30;4587:5;4563:30;:::i;4628:480::-;4697:6;4750:2;4738:9;4729:7;4725:23;4721:32;4718:2;;;4771:6;4763;4756:22;4718:2;4816:9;4803:23;-1:-1:-1;;;;;4841:6:13;4838:30;4835:2;;;4886:6;4878;4871:22;4835:2;4914:22;;4967:4;4959:13;;4955:27;-1:-1:-1;4945:2:13;;5001:6;4993;4986:22;4945:2;5029:73;5094:7;5089:2;5076:16;5071:2;5067;5063:11;5029:73;:::i;5113:190::-;5172:6;5225:2;5213:9;5204:7;5200:23;5196:32;5193:2;;;5246:6;5238;5231:22;5193:2;-1:-1:-1;5274:23:13;;5183:120;-1:-1:-1;5183:120:13:o;5308:258::-;5376:6;5384;5437:2;5425:9;5416:7;5412:23;5408:32;5405:2;;;5458:6;5450;5443:22;5405:2;-1:-1:-1;;5486:23:13;;;5556:2;5541:18;;;5528:32;;-1:-1:-1;5395:171:13:o;5571:257::-;5612:3;5650:5;5644:12;5677:6;5672:3;5665:19;5693:63;5749:6;5742:4;5737:3;5733:14;5726:4;5719:5;5715:16;5693:63;:::i;:::-;5810:2;5789:15;-1:-1:-1;;5785:29:13;5776:39;;;;5817:4;5772:50;;5620:208;-1:-1:-1;;5620:208:13:o;5833:470::-;6012:3;6050:6;6044:13;6066:53;6112:6;6107:3;6100:4;6092:6;6088:17;6066:53;:::i;:::-;6182:13;;6141:16;;;;6204:57;6182:13;6141:16;6238:4;6226:17;;6204:57;:::i;:::-;6277:20;;6020:283;-1:-1:-1;;;;6020:283:13:o;6516:488::-;-1:-1:-1;;;;;6785:15:13;;;6767:34;;6837:15;;6832:2;6817:18;;6810:43;6884:2;6869:18;;6862:34;;;6932:3;6927:2;6912:18;;6905:31;;;6710:4;;6953:45;;6978:19;;6970:6;6953:45;:::i;:::-;6945:53;6719:285;-1:-1:-1;;;;;;6719:285:13:o;7288:661::-;7459:2;7511:21;;;7581:13;;7484:18;;;7603:22;;;7430:4;;7459:2;7682:15;;;;7656:2;7641:18;;;7430:4;7728:195;7742:6;7739:1;7736:13;7728:195;;;7807:13;;-1:-1:-1;;;;;7803:39:13;7791:52;;7898:15;;;;7863:12;;;;7839:1;7757:9;7728:195;;;-1:-1:-1;7940:3:13;;7439:510;-1:-1:-1;;;;;;7439:510:13:o;7954:635::-;8125:2;8177:21;;;8247:13;;8150:18;;;8269:22;;;8096:4;;8125:2;8348:15;;;;8322:2;8307:18;;;8096:4;8394:169;8408:6;8405:1;8402:13;8394:169;;;8469:13;;8457:26;;8538:15;;;;8503:12;;;;8430:1;8423:9;8394:169;;8786:219;8935:2;8924:9;8917:21;8898:4;8955:44;8995:2;8984:9;8980:18;8972:6;8955:44;:::i;10540:356::-;10742:2;10724:21;;;10761:18;;;10754:30;10820:34;10815:2;10800:18;;10793:62;10887:2;10872:18;;10714:182::o;12190:275::-;12261:2;12255:9;12326:2;12307:13;;-1:-1:-1;;12303:27:13;12291:40;;-1:-1:-1;;;;;12346:34:13;;12382:22;;;12343:62;12340:2;;;12408:18;;:::i;:::-;12444:2;12437:22;12235:230;;-1:-1:-1;12235:230:13:o;12470:128::-;12510:3;12541:1;12537:6;12534:1;12531:13;12528:2;;;12547:18;;:::i;:::-;-1:-1:-1;12583:9:13;;12518:80::o;12603:120::-;12643:1;12669;12659:2;;12674:18;;:::i;:::-;-1:-1:-1;12708:9:13;;12649:74::o;12728:168::-;12768:7;12834:1;12830;12826:6;12822:14;12819:1;12816:21;12811:1;12804:9;12797:17;12793:45;12790:2;;;12841:18;;:::i;:::-;-1:-1:-1;12881:9:13;;12780:116::o;12901:125::-;12941:4;12969:1;12966;12963:8;12960:2;;;12974:18;;:::i;:::-;-1:-1:-1;13011:9:13;;12950:76::o;13031:258::-;13103:1;13113:113;13127:6;13124:1;13121:13;13113:113;;;13203:11;;;13197:18;13184:11;;;13177:39;13149:2;13142:10;13113:113;;;13244:6;13241:1;13238:13;13235:2;;;-1:-1:-1;;13279:1:13;13261:16;;13254:27;13084:205::o;13294:380::-;13373:1;13369:12;;;;13416;;;13437:2;;13491:4;13483:6;13479:17;13469:27;;13437:2;13544;13536:6;13533:14;13513:18;13510:38;13507:2;;;13590:10;13585:3;13581:20;13578:1;13571:31;13625:4;13622:1;13615:15;13653:4;13650:1;13643:15;13507:2;;13349:325;;;:::o;13679:135::-;13718:3;-1:-1:-1;;13739:17:13;;13736:2;;;13759:18;;:::i;:::-;-1:-1:-1;13806:1:13;13795:13;;13726:88::o;13819:112::-;13851:1;13877;13867:2;;13882:18;;:::i;:::-;-1:-1:-1;13916:9:13;;13857:74::o;13936:127::-;13997:10;13992:3;13988:20;13985:1;13978:31;14028:4;14025:1;14018:15;14052:4;14049:1;14042:15;14068:127;14129:10;14124:3;14120:20;14117:1;14110:31;14160:4;14157:1;14150:15;14184:4;14181:1;14174:15;14200:127;14261:10;14256:3;14252:20;14249:1;14242:31;14292:4;14289:1;14282:15;14316:4;14313:1;14306:15;14332:131;-1:-1:-1;;;;;;14406:32:13;;14396:43;;14386:2;;14453:1;14450;14443:12

Swarm Source

ipfs://60b4c59d7fdef908cbe70ecfebaa395bd113c9dd4c670775a50ea3d7a13550c3
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.