ETH Price: $2,622.04 (+0.96%)

Token

BlackMarketGenesis (BMT)
 

Overview

Max Total Supply

179 BMT

Holders

86

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 BMT
0xaAA563935fcD2B381E422d8b290d9a20A87BdB34
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:
BlackMarketGenesis

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`,
     * consuming from one or the other at each step according to the instructions given by
     * `proofFlags`.
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.7.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
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts (last updated v4.6.0) (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 `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// 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: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


/**
 * @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: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


/**
 * @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: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @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: contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;









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

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

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal _currentIndex;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        return _currentIndex;
    }

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

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

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

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

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

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

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

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

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

        revert UnableDetermineTokenOwner();
    }

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 updatedIndex = startTokenId;

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

                updatedIndex++;
            }

            _currentIndex = updatedIndex;
        }

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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


pragma solidity ^0.8.0;




contract BlackMarketGenesis is ERC721A, Ownable{
    using Strings for uint256;

    uint256 public constant MAX_SUPPLY = 300;
    string private  baseTokenUri;
    string public   placeholderTokenUri;

    bool public isRevealed;
    bool public pause;


    constructor(string memory _name, string memory _symbol) ERC721A(_name, _symbol){

    }

    modifier callerIsUser() {
        require(tx.origin == msg.sender, "BlackMarket NFT :: Cannot be called by a contract");
        _;
    }


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

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

        uint256 trueId = tokenId + 1;

        if(!isRevealed){
            return placeholderTokenUri;
        }
        //string memory baseURI = _baseURI();
        return bytes(baseTokenUri).length > 0 ? string(abi.encodePacked(baseTokenUri, trueId.toString(), ".json")) : "";
    }
    /// @dev walletOf() function shouldn't be called on-chain due to gas consumption
    function walletOf() external view returns(uint256[] memory){
        address _owner = msg.sender;
        uint256 numberOfOwnedNFT = balanceOf(_owner);
        uint256[] memory ownerIds = new uint256[](numberOfOwnedNFT);

        for(uint256 index = 0; index < numberOfOwnedNFT; index++){
            ownerIds[index] = tokenOfOwnerByIndex(_owner, index);
        }

        return ownerIds;
    }

    function setTokenUri(string memory _baseTokenUri) external onlyOwner{
        baseTokenUri = _baseTokenUri;
    }
    function setPlaceHolderUri(string memory _placeholderTokenUri) external onlyOwner{
        placeholderTokenUri = _placeholderTokenUri;
    }


    function togglePause() external onlyOwner{
        pause = !pause;
    }


    function toggleReveal() external onlyOwner{
        isRevealed = !isRevealed;
    }

    function airdrop(address recipient, uint256 _quantity) external onlyOwner {
        require(recipient != address(0), "Cannot add null address");
        _safeMint(recipient, _quantity);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","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":"UnableDetermineTokenOwner","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isRevealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"placeholderTokenUri","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_placeholderTokenUri","type":"string"}],"name":"setPlaceHolderUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseTokenUri","type":"string"}],"name":"setTokenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleReveal","outputs":[],"stateMutability":"nonpayable","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":"walletOf","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b5060405162001cf838038062001cf883398101604081905262000034916200023b565b8151829082906200004d906001906020850190620000de565b50805162000063906002906020840190620000de565b505050620000806200007a6200008860201b60201c565b6200008c565b5050620002f8565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620000ec90620002a5565b90600052602060002090601f0160209004810192826200011057600085556200015b565b82601f106200012b57805160ff19168380011785556200015b565b828001600101855582156200015b579182015b828111156200015b5782518255916020019190600101906200013e565b50620001699291506200016d565b5090565b5b808211156200016957600081556001016200016e565b600082601f8301126200019657600080fd5b81516001600160401b0380821115620001b357620001b3620002e2565b604051601f8301601f19908116603f01168101908282118183101715620001de57620001de620002e2565b81604052838152602092508683858801011115620001fb57600080fd5b600091505b838210156200021f578582018301518183018401529082019062000200565b83821115620002315760008385830101525b9695505050505050565b600080604083850312156200024f57600080fd5b82516001600160401b03808211156200026757600080fd5b620002758683870162000184565b935060208501519150808211156200028c57600080fd5b506200029b8582860162000184565b9150509250929050565b600181811c90821680620002ba57607f821691505b60208210811415620002dc57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6119f080620003086000396000f3fe608060405234801561001057600080fd5b50600436106101cf5760003560e01c80636352211e1161010457806395d89b41116100a2578063c4ae316811610071578063c4ae3168146103a2578063c87b56dd146103aa578063e985e9c5146103bd578063f2fde38b146103f957600080fd5b806395d89b4114610361578063a22cb46514610369578063b0962c531461037c578063b88d4fde1461038f57600080fd5b806383a974a2116100de57806383a974a2146103165780638456cb591461032b5780638ba4cc3c1461033d5780638da5cb5b1461035057600080fd5b80636352211e146102e857806370a08231146102fb578063715018a61461030e57600080fd5b80632f745c59116101715780634cf5f7a41161014b5780634cf5f7a4146102b85780634f6ccce7146102c057806354214f69146102d35780635b8ad429146102e057600080fd5b80632f745c591461028957806332cb6b0c1461029c57806342842e0e146102a557600080fd5b8063081812fc116101ad578063081812fc14610226578063095ea7b31461025157806318160ddd1461026457806323b872dd1461027657600080fd5b806301ffc9a7146101d45780630675b7c6146101fc57806306fdde0314610211575b600080fd5b6101e76101e236600461162a565b61040c565b60405190151581526020015b60405180910390f35b61020f61020a366004611664565b610479565b005b610219610498565b6040516101f3919061184a565b6102396102343660046116ad565b61052a565b6040516001600160a01b0390911681526020016101f3565b61020f61025f366004611600565b610570565b6000545b6040519081526020016101f3565b61020f61028436600461150c565b6105fe565b610268610297366004611600565b610609565b61026861012c81565b61020f6102b336600461150c565b6106de565b6102196106f9565b6102686102ce3660046116ad565b610787565b600a546101e79060ff1681565b61020f6107ae565b6102396102f63660046116ad565b6107ca565b6102686103093660046114be565b6107dc565b61020f61082a565b61031e61083e565b6040516101f39190611806565b600a546101e790610100900460ff1681565b61020f61034b366004611600565b6108e1565b6007546001600160a01b0316610239565b61021961094e565b61020f6103773660046115c4565b61095d565b61020f61038a366004611664565b6109f3565b61020f61039d366004611548565b610a0e565b61020f610a48565b6102196103b83660046116ad565b610a6d565b6101e76103cb3660046114d9565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b61020f6104073660046114be565b610be9565b60006001600160e01b031982166380ac58cd60e01b148061043d57506001600160e01b03198216635b5e139f60e01b145b8061045857506001600160e01b0319821663780e9d6360e01b145b8061047357506301ffc9a760e01b6001600160e01b03198316145b92915050565b610481610c62565b805161049490600890602084019061139c565b5050565b6060600180546104a7906118cc565b80601f01602080910402602001604051908101604052809291908181526020018280546104d3906118cc565b80156105205780601f106104f557610100808354040283529160200191610520565b820191906000526020600020905b81548152906001019060200180831161050357829003601f168201915b5050505050905090565b6000610537826000541190565b610554576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061057b826107ca565b9050806001600160a01b0316836001600160a01b031614156105b05760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906105d057506105ce81336103cb565b155b156105ee576040516367d9dca160e11b815260040160405180910390fd5b6105f9838383610cbc565b505050565b6105f9838383610d18565b6000610614836107dc565b8210610633576040516306ed618760e11b815260040160405180910390fd5b600080549080805b838110156106cc576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561068e57805192505b876001600160a01b0316836001600160a01b031614156106c357868414156106bc5750935061047392505050565b6001909301925b5060010161063b565b506106d5611936565b50505092915050565b6105f983838360405180602001604052806000815250610a0e565b60098054610706906118cc565b80601f0160208091040260200160405190810160405280929190818152602001828054610732906118cc565b801561077f5780601f106107545761010080835404028352916020019161077f565b820191906000526020600020905b81548152906001019060200180831161076257829003601f168201915b505050505081565b6000805482106107aa576040516329c8c00760e21b815260040160405180910390fd5b5090565b6107b6610c62565b600a805460ff19811660ff90911615179055565b60006107d582610f37565b5192915050565b60006001600160a01b038216610805576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600460205260409020546001600160801b031690565b610832610c62565b61083c6000610fcc565b565b606033600061084c826107dc565b905060008167ffffffffffffffff8111156108695761086961198e565b604051908082528060200260200182016040528015610892578160200160208202803683370190505b50905060005b828110156108d9576108aa8482610609565b8282815181106108bc576108bc611978565b6020908102919091010152806108d181611907565b915050610898565b509392505050565b6108e9610c62565b6001600160a01b0382166109445760405162461bcd60e51b815260206004820152601760248201527f43616e6e6f7420616464206e756c6c206164647265737300000000000000000060448201526064015b60405180910390fd5b610494828261101e565b6060600280546104a7906118cc565b6001600160a01b0382163314156109875760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6109fb610c62565b805161049490600990602084019061139c565b610a19848484610d18565b610a2584848484611038565b610a42576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b610a50610c62565b600a805461ff001981166101009182900460ff1615909102179055565b6060610a7a826000541190565b610ade5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161093b565b6000610aeb83600161185d565b600a5490915060ff16610b8b5760098054610b05906118cc565b80601f0160208091040260200160405190810160405280929190818152602001828054610b31906118cc565b8015610b7e5780601f10610b5357610100808354040283529160200191610b7e565b820191906000526020600020905b815481529060010190602001808311610b6157829003601f168201915b5050505050915050919050565b600060088054610b9a906118cc565b905011610bb65760405180602001604052806000815250610be2565b6008610bc182611147565b604051602001610bd292919061170e565b6040516020818303038152906040525b9392505050565b610bf1610c62565b6001600160a01b038116610c565760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161093b565b610c5f81610fcc565b50565b6007546001600160a01b0316331461083c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161093b565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610d2382610f37565b80519091506000906001600160a01b0316336001600160a01b03161480610d5a575033610d4f8461052a565b6001600160a01b0316145b80610d6c57508151610d6c90336103cb565b905080610d8c57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614610dc15760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416610de857604051633a954ecd60e21b815260040160405180910390fd5b610df86000848460000151610cbc565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff1602179055908601808352912054909116610eed57610ea0816000541190565b15610eed578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6040805180820190915260008082526020820152610f56826000541190565b610f7357604051636f96cda160e11b815260040160405180910390fd5b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610fc2579392505050565b5060001901610f75565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610494828260405180602001604052806000815250611245565b60006001600160a01b0384163b1561113b57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061107c9033908990889088906004016117c9565b602060405180830381600087803b15801561109657600080fd5b505af19250505080156110c6575060408051601f3d908101601f191682019092526110c391810190611647565b60015b611121573d8080156110f4576040519150601f19603f3d011682016040523d82523d6000602084013e6110f9565b606091505b508051611119576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061113f565b5060015b949350505050565b60608161116b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611195578061117f81611907565b915061118e9050600a83611875565b915061116f565b60008167ffffffffffffffff8111156111b0576111b061198e565b6040519080825280601f01601f1916602001820160405280156111da576020820181803683370190505b5090505b841561113f576111ef600183611889565b91506111fc600a86611922565b61120790603061185d565b60f81b81838151811061121c5761121c611978565b60200101906001600160f81b031916908160001a90535061123e600a86611875565b94506111de565b6105f983838360016000546001600160a01b03851661127657604051622e076360e81b815260040160405180910390fd5b836112945760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b858110156113935760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a483801561136957506113676000888488611038565b155b15611387576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101611312565b50600055610f30565b8280546113a8906118cc565b90600052602060002090601f0160209004810192826113ca5760008555611410565b82601f106113e357805160ff1916838001178555611410565b82800160010185558215611410579182015b828111156114105782518255916020019190600101906113f5565b506107aa9291505b808211156107aa5760008155600101611418565b600067ffffffffffffffff808411156114475761144761198e565b604051601f8501601f19908116603f0116810190828211818310171561146f5761146f61198e565b8160405280935085815286868601111561148857600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146114b957600080fd5b919050565b6000602082840312156114d057600080fd5b610be2826114a2565b600080604083850312156114ec57600080fd5b6114f5836114a2565b9150611503602084016114a2565b90509250929050565b60008060006060848603121561152157600080fd5b61152a846114a2565b9250611538602085016114a2565b9150604084013590509250925092565b6000806000806080858703121561155e57600080fd5b611567856114a2565b9350611575602086016114a2565b925060408501359150606085013567ffffffffffffffff81111561159857600080fd5b8501601f810187136115a957600080fd5b6115b88782356020840161142c565b91505092959194509250565b600080604083850312156115d757600080fd5b6115e0836114a2565b9150602083013580151581146115f557600080fd5b809150509250929050565b6000806040838503121561161357600080fd5b61161c836114a2565b946020939093013593505050565b60006020828403121561163c57600080fd5b8135610be2816119a4565b60006020828403121561165957600080fd5b8151610be2816119a4565b60006020828403121561167657600080fd5b813567ffffffffffffffff81111561168d57600080fd5b8201601f8101841361169e57600080fd5b61113f8482356020840161142c565b6000602082840312156116bf57600080fd5b5035919050565b600081518084526116de8160208601602086016118a0565b601f01601f19169290920160200192915050565b600081516117048185602086016118a0565b9290920192915050565b600080845481600182811c91508083168061172a57607f831692505b602080841082141561174a57634e487b7160e01b86526022600452602486fd5b81801561175e576001811461176f5761179c565b60ff1986168952848901965061179c565b60008b81526020902060005b868110156117945781548b82015290850190830161177b565b505084890196505b5050505050506117c06117af82866116f2565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906117fc908301846116c6565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561183e57835183529284019291840191600101611822565b50909695505050505050565b602081526000610be260208301846116c6565b600082198211156118705761187061194c565b500190565b60008261188457611884611962565b500490565b60008282101561189b5761189b61194c565b500390565b60005b838110156118bb5781810151838201526020016118a3565b83811115610a425750506000910152565b600181811c908216806118e057607f821691505b6020821081141561190157634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561191b5761191b61194c565b5060010190565b60008261193157611931611962565b500690565b634e487b7160e01b600052600160045260246000fd5b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c5f57600080fdfea2646970667358221220957d66068bb566f41085c176eb84c0795a6605fa89ee9c180a296e04ec8bad1264736f6c63430008070033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000012426c61636b4d61726b657447656e6573697300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003424d540000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101cf5760003560e01c80636352211e1161010457806395d89b41116100a2578063c4ae316811610071578063c4ae3168146103a2578063c87b56dd146103aa578063e985e9c5146103bd578063f2fde38b146103f957600080fd5b806395d89b4114610361578063a22cb46514610369578063b0962c531461037c578063b88d4fde1461038f57600080fd5b806383a974a2116100de57806383a974a2146103165780638456cb591461032b5780638ba4cc3c1461033d5780638da5cb5b1461035057600080fd5b80636352211e146102e857806370a08231146102fb578063715018a61461030e57600080fd5b80632f745c59116101715780634cf5f7a41161014b5780634cf5f7a4146102b85780634f6ccce7146102c057806354214f69146102d35780635b8ad429146102e057600080fd5b80632f745c591461028957806332cb6b0c1461029c57806342842e0e146102a557600080fd5b8063081812fc116101ad578063081812fc14610226578063095ea7b31461025157806318160ddd1461026457806323b872dd1461027657600080fd5b806301ffc9a7146101d45780630675b7c6146101fc57806306fdde0314610211575b600080fd5b6101e76101e236600461162a565b61040c565b60405190151581526020015b60405180910390f35b61020f61020a366004611664565b610479565b005b610219610498565b6040516101f3919061184a565b6102396102343660046116ad565b61052a565b6040516001600160a01b0390911681526020016101f3565b61020f61025f366004611600565b610570565b6000545b6040519081526020016101f3565b61020f61028436600461150c565b6105fe565b610268610297366004611600565b610609565b61026861012c81565b61020f6102b336600461150c565b6106de565b6102196106f9565b6102686102ce3660046116ad565b610787565b600a546101e79060ff1681565b61020f6107ae565b6102396102f63660046116ad565b6107ca565b6102686103093660046114be565b6107dc565b61020f61082a565b61031e61083e565b6040516101f39190611806565b600a546101e790610100900460ff1681565b61020f61034b366004611600565b6108e1565b6007546001600160a01b0316610239565b61021961094e565b61020f6103773660046115c4565b61095d565b61020f61038a366004611664565b6109f3565b61020f61039d366004611548565b610a0e565b61020f610a48565b6102196103b83660046116ad565b610a6d565b6101e76103cb3660046114d9565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b61020f6104073660046114be565b610be9565b60006001600160e01b031982166380ac58cd60e01b148061043d57506001600160e01b03198216635b5e139f60e01b145b8061045857506001600160e01b0319821663780e9d6360e01b145b8061047357506301ffc9a760e01b6001600160e01b03198316145b92915050565b610481610c62565b805161049490600890602084019061139c565b5050565b6060600180546104a7906118cc565b80601f01602080910402602001604051908101604052809291908181526020018280546104d3906118cc565b80156105205780601f106104f557610100808354040283529160200191610520565b820191906000526020600020905b81548152906001019060200180831161050357829003601f168201915b5050505050905090565b6000610537826000541190565b610554576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061057b826107ca565b9050806001600160a01b0316836001600160a01b031614156105b05760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906105d057506105ce81336103cb565b155b156105ee576040516367d9dca160e11b815260040160405180910390fd5b6105f9838383610cbc565b505050565b6105f9838383610d18565b6000610614836107dc565b8210610633576040516306ed618760e11b815260040160405180910390fd5b600080549080805b838110156106cc576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561068e57805192505b876001600160a01b0316836001600160a01b031614156106c357868414156106bc5750935061047392505050565b6001909301925b5060010161063b565b506106d5611936565b50505092915050565b6105f983838360405180602001604052806000815250610a0e565b60098054610706906118cc565b80601f0160208091040260200160405190810160405280929190818152602001828054610732906118cc565b801561077f5780601f106107545761010080835404028352916020019161077f565b820191906000526020600020905b81548152906001019060200180831161076257829003601f168201915b505050505081565b6000805482106107aa576040516329c8c00760e21b815260040160405180910390fd5b5090565b6107b6610c62565b600a805460ff19811660ff90911615179055565b60006107d582610f37565b5192915050565b60006001600160a01b038216610805576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600460205260409020546001600160801b031690565b610832610c62565b61083c6000610fcc565b565b606033600061084c826107dc565b905060008167ffffffffffffffff8111156108695761086961198e565b604051908082528060200260200182016040528015610892578160200160208202803683370190505b50905060005b828110156108d9576108aa8482610609565b8282815181106108bc576108bc611978565b6020908102919091010152806108d181611907565b915050610898565b509392505050565b6108e9610c62565b6001600160a01b0382166109445760405162461bcd60e51b815260206004820152601760248201527f43616e6e6f7420616464206e756c6c206164647265737300000000000000000060448201526064015b60405180910390fd5b610494828261101e565b6060600280546104a7906118cc565b6001600160a01b0382163314156109875760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6109fb610c62565b805161049490600990602084019061139c565b610a19848484610d18565b610a2584848484611038565b610a42576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b610a50610c62565b600a805461ff001981166101009182900460ff1615909102179055565b6060610a7a826000541190565b610ade5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161093b565b6000610aeb83600161185d565b600a5490915060ff16610b8b5760098054610b05906118cc565b80601f0160208091040260200160405190810160405280929190818152602001828054610b31906118cc565b8015610b7e5780601f10610b5357610100808354040283529160200191610b7e565b820191906000526020600020905b815481529060010190602001808311610b6157829003601f168201915b5050505050915050919050565b600060088054610b9a906118cc565b905011610bb65760405180602001604052806000815250610be2565b6008610bc182611147565b604051602001610bd292919061170e565b6040516020818303038152906040525b9392505050565b610bf1610c62565b6001600160a01b038116610c565760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161093b565b610c5f81610fcc565b50565b6007546001600160a01b0316331461083c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161093b565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610d2382610f37565b80519091506000906001600160a01b0316336001600160a01b03161480610d5a575033610d4f8461052a565b6001600160a01b0316145b80610d6c57508151610d6c90336103cb565b905080610d8c57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614610dc15760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416610de857604051633a954ecd60e21b815260040160405180910390fd5b610df86000848460000151610cbc565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff1602179055908601808352912054909116610eed57610ea0816000541190565b15610eed578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6040805180820190915260008082526020820152610f56826000541190565b610f7357604051636f96cda160e11b815260040160405180910390fd5b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610fc2579392505050565b5060001901610f75565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610494828260405180602001604052806000815250611245565b60006001600160a01b0384163b1561113b57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061107c9033908990889088906004016117c9565b602060405180830381600087803b15801561109657600080fd5b505af19250505080156110c6575060408051601f3d908101601f191682019092526110c391810190611647565b60015b611121573d8080156110f4576040519150601f19603f3d011682016040523d82523d6000602084013e6110f9565b606091505b508051611119576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061113f565b5060015b949350505050565b60608161116b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611195578061117f81611907565b915061118e9050600a83611875565b915061116f565b60008167ffffffffffffffff8111156111b0576111b061198e565b6040519080825280601f01601f1916602001820160405280156111da576020820181803683370190505b5090505b841561113f576111ef600183611889565b91506111fc600a86611922565b61120790603061185d565b60f81b81838151811061121c5761121c611978565b60200101906001600160f81b031916908160001a90535061123e600a86611875565b94506111de565b6105f983838360016000546001600160a01b03851661127657604051622e076360e81b815260040160405180910390fd5b836112945760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b858110156113935760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a483801561136957506113676000888488611038565b155b15611387576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101611312565b50600055610f30565b8280546113a8906118cc565b90600052602060002090601f0160209004810192826113ca5760008555611410565b82601f106113e357805160ff1916838001178555611410565b82800160010185558215611410579182015b828111156114105782518255916020019190600101906113f5565b506107aa9291505b808211156107aa5760008155600101611418565b600067ffffffffffffffff808411156114475761144761198e565b604051601f8501601f19908116603f0116810190828211818310171561146f5761146f61198e565b8160405280935085815286868601111561148857600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146114b957600080fd5b919050565b6000602082840312156114d057600080fd5b610be2826114a2565b600080604083850312156114ec57600080fd5b6114f5836114a2565b9150611503602084016114a2565b90509250929050565b60008060006060848603121561152157600080fd5b61152a846114a2565b9250611538602085016114a2565b9150604084013590509250925092565b6000806000806080858703121561155e57600080fd5b611567856114a2565b9350611575602086016114a2565b925060408501359150606085013567ffffffffffffffff81111561159857600080fd5b8501601f810187136115a957600080fd5b6115b88782356020840161142c565b91505092959194509250565b600080604083850312156115d757600080fd5b6115e0836114a2565b9150602083013580151581146115f557600080fd5b809150509250929050565b6000806040838503121561161357600080fd5b61161c836114a2565b946020939093013593505050565b60006020828403121561163c57600080fd5b8135610be2816119a4565b60006020828403121561165957600080fd5b8151610be2816119a4565b60006020828403121561167657600080fd5b813567ffffffffffffffff81111561168d57600080fd5b8201601f8101841361169e57600080fd5b61113f8482356020840161142c565b6000602082840312156116bf57600080fd5b5035919050565b600081518084526116de8160208601602086016118a0565b601f01601f19169290920160200192915050565b600081516117048185602086016118a0565b9290920192915050565b600080845481600182811c91508083168061172a57607f831692505b602080841082141561174a57634e487b7160e01b86526022600452602486fd5b81801561175e576001811461176f5761179c565b60ff1986168952848901965061179c565b60008b81526020902060005b868110156117945781548b82015290850190830161177b565b505084890196505b5050505050506117c06117af82866116f2565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906117fc908301846116c6565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561183e57835183529284019291840191600101611822565b50909695505050505050565b602081526000610be260208301846116c6565b600082198211156118705761187061194c565b500190565b60008261188457611884611962565b500490565b60008282101561189b5761189b61194c565b500390565b60005b838110156118bb5781810151838201526020016118a3565b83811115610a425750506000910152565b600181811c908216806118e057607f821691505b6020821081141561190157634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561191b5761191b61194c565b5060010190565b60008261193157611931611962565b500690565b634e487b7160e01b600052600160045260246000fd5b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c5f57600080fdfea2646970667358221220957d66068bb566f41085c176eb84c0795a6605fa89ee9c180a296e04ec8bad1264736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000012426c61636b4d61726b657447656e6573697300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003424d540000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): BlackMarketGenesis
Arg [1] : _symbol (string): BMT

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 426c61636b4d61726b657447656e657369730000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [5] : 424d540000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

50099:2301:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37298:372;;;;;;:::i;:::-;;:::i;:::-;;;7422:14:1;;7415:22;7397:41;;7385:2;7370:18;37298:372:0;;;;;;;;51753:115;;;;;;:::i;:::-;;:::i;:::-;;39114:100;;;:::i;:::-;;;;;;;:::i;40591:204::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6083:32:1;;;6065:51;;6053:2;6038:18;40591:204:0;5919:203:1;40180:345:0;;;;;;:::i;:::-;;:::i;35565:101::-;35618:7;35645:13;35565:101;;;9355:25:1;;;9343:2;9328:18;35565:101:0;9209:177:1;41448:170:0;;;;;;:::i;:::-;;:::i;36219:1007::-;;;;;;:::i;:::-;;:::i;50187:40::-;;50224:3;50187:40;;41689:185;;;;;;:::i;:::-;;:::i;50269:35::-;;;:::i;35743:176::-;;;;;;:::i;:::-;;:::i;50313:22::-;;;;;;;;;52110:85;;;:::i;38923:124::-;;;;;;:::i;:::-;;:::i;37734:206::-;;;;;;:::i;:::-;;:::i;13998:103::-;;;:::i;51339:406::-;;;:::i;:::-;;;;;;;:::i;50342:17::-;;;;;;;;;;;;52203:194;;;;;;:::i;:::-;;:::i;13350:87::-;13423:6;;-1:-1:-1;;;;;13423:6:0;13350:87;;39283:104;;;:::i;40867:279::-;;;;;;:::i;:::-;;:::i;51874:142::-;;;;;;:::i;:::-;;:::i;41945:308::-;;;;;;:::i;:::-;;:::i;52026:74::-;;;:::i;50774:473::-;;;;;;:::i;:::-;;:::i;41217:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;41338:25:0;;;41314:4;41338:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;41217:164;14256:201;;;;;;:::i;:::-;;:::i;37298:372::-;37400:4;-1:-1:-1;;;;;;37437:40:0;;-1:-1:-1;;;37437:40:0;;:105;;-1:-1:-1;;;;;;;37494:48:0;;-1:-1:-1;;;37494:48:0;37437:105;:172;;;-1:-1:-1;;;;;;;37559:50:0;;-1:-1:-1;;;37559:50:0;37437:172;:225;;;-1:-1:-1;;;;;;;;;;26313:40:0;;;37626:36;37417:245;37298:372;-1:-1:-1;;37298:372:0:o;51753:115::-;13236:13;:11;:13::i;:::-;51832:28;;::::1;::::0;:12:::1;::::0;:28:::1;::::0;::::1;::::0;::::1;:::i;:::-;;51753:115:::0;:::o;39114:100::-;39168:13;39201:5;39194:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39114:100;:::o;40591:204::-;40659:7;40684:16;40692:7;42565:4;42599:13;-1:-1:-1;42589:23:0;42508:112;40684:16;40679:64;;40709:34;;-1:-1:-1;;;40709:34:0;;;;;;;;;;;40679:64;-1:-1:-1;40763:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;40763:24:0;;40591:204::o;40180:345::-;40253:13;40269:24;40285:7;40269:15;:24::i;:::-;40253:40;;40314:5;-1:-1:-1;;;;;40308:11:0;:2;-1:-1:-1;;;;;40308:11:0;;40304:48;;;40328:24;;-1:-1:-1;;;40328:24:0;;;;;;;;;;;40304:48;11981:10;-1:-1:-1;;;;;40369:21:0;;;;;;:63;;-1:-1:-1;40395:37:0;40412:5;11981:10;41217:164;:::i;40395:37::-;40394:38;40369:63;40365:111;;;40441:35;;-1:-1:-1;;;40441:35:0;;;;;;;;;;;40365:111;40489:28;40498:2;40502:7;40511:5;40489:8;:28::i;:::-;40242:283;40180:345;;:::o;41448:170::-;41582:28;41592:4;41598:2;41602:7;41582:9;:28::i;36219:1007::-;36308:7;36341:16;36351:5;36341:9;:16::i;:::-;36332:5;:25;36328:61;;36366:23;;-1:-1:-1;;;36366:23:0;;;;;;;;;;;36328:61;36400:22;35645:13;;;36400:22;;36663:466;36683:14;36679:1;:18;36663:466;;;36723:31;36757:14;;;:11;:14;;;;;;;;;36723:48;;;;;;;;;-1:-1:-1;;;;;36723:48:0;;;;;-1:-1:-1;;;36723:48:0;;;;;;;;;;;;36794:28;36790:111;;36867:14;;;-1:-1:-1;36790:111:0;36944:5;-1:-1:-1;;;;;36923:26:0;:17;-1:-1:-1;;;;;36923:26:0;;36919:195;;;36993:5;36978:11;:20;36974:85;;;-1:-1:-1;37034:1:0;-1:-1:-1;37027:8:0;;-1:-1:-1;;;37027:8:0;36974:85;37081:13;;;;;36919:195;-1:-1:-1;36699:3:0;;36663:466;;;-1:-1:-1;37205:13:0;;:::i;:::-;36317:909;;;36219:1007;;;;:::o;41689:185::-;41827:39;41844:4;41850:2;41854:7;41827:39;;;;;;;;;;;;:16;:39::i;50269:35::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;35743:176::-;35810:7;35645:13;;35834:5;:22;35830:58;;35865:23;;-1:-1:-1;;;35865:23:0;;;;;;;;;;;35830:58;-1:-1:-1;35906:5:0;35743:176::o;52110:85::-;13236:13;:11;:13::i;:::-;52177:10:::1;::::0;;-1:-1:-1;;52163:24:0;::::1;52177:10;::::0;;::::1;52176:11;52163:24;::::0;;52110:85::o;38923:124::-;38987:7;39014:20;39026:7;39014:11;:20::i;:::-;:25;;38923:124;-1:-1:-1;;38923:124:0:o;37734:206::-;37798:7;-1:-1:-1;;;;;37822:19:0;;37818:60;;37850:28;;-1:-1:-1;;;37850:28:0;;;;;;;;;;;37818:60;-1:-1:-1;;;;;;37904:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;37904:27:0;;37734:206::o;13998:103::-;13236:13;:11;:13::i;:::-;14063:30:::1;14090:1;14063:18;:30::i;:::-;13998:103::o:0;51339:406::-;51381:16;51426:10;51409:14;51474:17;51426:10;51474:9;:17::i;:::-;51447:44;;51502:25;51544:16;51530:31;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51530:31:0;;51502:59;;51578:13;51574:136;51605:16;51597:5;:24;51574:136;;;51664:34;51684:6;51692:5;51664:19;:34::i;:::-;51646:8;51655:5;51646:15;;;;;;;;:::i;:::-;;;;;;;;;;:52;51623:7;;;;:::i;:::-;;;;51574:136;;;-1:-1:-1;51729:8:0;51339:406;-1:-1:-1;;;51339:406:0:o;52203:194::-;13236:13;:11;:13::i;:::-;-1:-1:-1;;;;;52296:23:0;::::1;52288:59;;;::::0;-1:-1:-1;;;52288:59:0;;9059:2:1;52288:59:0::1;::::0;::::1;9041:21:1::0;9098:2;9078:18;;;9071:30;9137:25;9117:18;;;9110:53;9180:18;;52288:59:0::1;;;;;;;;;52358:31;52368:9;52379;52358;:31::i;39283:104::-:0;39339:13;39372:7;39365:14;;;;;:::i;40867:279::-;-1:-1:-1;;;;;40958:24:0;;11981:10;40958:24;40954:54;;;40991:17;;-1:-1:-1;;;40991:17:0;;;;;;;;;;;40954:54;11981:10;41021:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;41021:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;41021:53:0;;;;;;;;;;41090:48;;7397:41:1;;;41021:42:0;;11981:10;41090:48;;7370:18:1;41090:48:0;;;;;;;40867:279;;:::o;51874:142::-;13236:13;:11;:13::i;:::-;51966:42;;::::1;::::0;:19:::1;::::0;:42:::1;::::0;::::1;::::0;::::1;:::i;41945:308::-:0;42104:28;42114:4;42120:2;42124:7;42104:9;:28::i;:::-;42148:48;42171:4;42177:2;42181:7;42190:5;42148:22;:48::i;:::-;42143:102;;42205:40;;-1:-1:-1;;;42205:40:0;;;;;;;;;;;42143:102;41945:308;;;;:::o;52026:74::-;13236:13;:11;:13::i;:::-;52087:5:::1;::::0;;-1:-1:-1;;52078:14:0;::::1;52087:5;::::0;;;::::1;;;52086:6;52078:14:::0;;::::1;;::::0;;52026:74::o;50774:473::-;50847:13;50881:16;50889:7;42565:4;42599:13;-1:-1:-1;42589:23:0;42508:112;50881:16;50873:76;;;;-1:-1:-1;;;50873:76:0;;8643:2:1;50873:76:0;;;8625:21:1;8682:2;8662:18;;;8655:30;8721:34;8701:18;;;8694:62;-1:-1:-1;;;8772:18:1;;;8765:45;8827:19;;50873:76:0;8441:411:1;50873:76:0;50962:14;50979:11;:7;50989:1;50979:11;:::i;:::-;51007:10;;50962:28;;-1:-1:-1;51007:10:0;;51003:68;;51040:19;51033:26;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50774:473;;;:::o;51003:68::-;51164:1;51141:12;51135:26;;;;;:::i;:::-;;;:30;:104;;;;;;;;;;;;;;;;;51192:12;51206:17;:6;:15;:17::i;:::-;51175:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51135:104;51128:111;50774:473;-1:-1:-1;;;50774:473:0:o;14256:201::-;13236:13;:11;:13::i;:::-;-1:-1:-1;;;;;14345:22:0;::::1;14337:73;;;::::0;-1:-1:-1;;;14337:73:0;;7875:2:1;14337:73:0::1;::::0;::::1;7857:21:1::0;7914:2;7894:18;;;7887:30;7953:34;7933:18;;;7926:62;-1:-1:-1;;;8004:18:1;;;7997:36;8050:19;;14337:73:0::1;7673:402:1::0;14337:73:0::1;14421:28;14440:8;14421:18;:28::i;:::-;14256:201:::0;:::o;13515:132::-;13423:6;;-1:-1:-1;;;;;13423:6:0;11981:10;13579:23;13571:68;;;;-1:-1:-1;;;13571:68:0;;8282:2:1;13571:68:0;;;8264:21:1;;;8301:18;;;8294:30;8360:34;8340:18;;;8333:62;8412:18;;13571:68:0;8080:356:1;47271:196:0;47386:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;47386:29:0;-1:-1:-1;;;;;47386:29:0;;;;;;;;;47431:28;;47386:24;;47431:28;;;;;;;47271:196;;;:::o;45191:1962::-;45306:35;45344:20;45356:7;45344:11;:20::i;:::-;45419:18;;45306:58;;-1:-1:-1;45377:22:0;;-1:-1:-1;;;;;45403:34:0;11981:10;-1:-1:-1;;;;;45403:34:0;;:87;;;-1:-1:-1;11981:10:0;45454:20;45466:7;45454:11;:20::i;:::-;-1:-1:-1;;;;;45454:36:0;;45403:87;:154;;;-1:-1:-1;45524:18:0;;45507:50;;11981:10;41217:164;:::i;45507:50::-;45377:181;;45576:17;45571:66;;45602:35;;-1:-1:-1;;;45602:35:0;;;;;;;;;;;45571:66;45674:4;-1:-1:-1;;;;;45652:26:0;:13;:18;;;-1:-1:-1;;;;;45652:26:0;;45648:67;;45687:28;;-1:-1:-1;;;45687:28:0;;;;;;;;;;;45648:67;-1:-1:-1;;;;;45730:16:0;;45726:52;;45755:23;;-1:-1:-1;;;45755:23:0;;;;;;;;;;;45726:52;45899:49;45916:1;45920:7;45929:13;:18;;;45899:8;:49::i;:::-;-1:-1:-1;;;;;46244:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;;;;;46244:31:0;;;-1:-1:-1;;;;;46244:31:0;;;-1:-1:-1;;46244:31:0;;;;;;;46290:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;46290:29:0;;;;;;;;;;;;;46336:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;46381:61:0;;;;-1:-1:-1;;;46426:15:0;46381:61;;;;;;46716:11;;;46746:24;;;;;:29;46716:11;;46746:29;46742:295;;46814:20;46822:11;42565:4;42599:13;-1:-1:-1;42589:23:0;42508:112;46814:20;46810:212;;;46891:18;;;46859:24;;;:11;:24;;;;;;;;:50;;46974:28;;;;46932:70;;-1:-1:-1;;;46932:70:0;-1:-1:-1;;;;;;46932:70:0;;;-1:-1:-1;;;;;46859:50:0;;;46932:70;;;;;;;46810:212;46219:829;47084:7;47080:2;-1:-1:-1;;;;;47065:27:0;47074:4;-1:-1:-1;;;;;47065:27:0;;;;;;;;;;;47103:42;45295:1858;;45191:1962;;;:::o;38357:504::-;-1:-1:-1;;;;;;;;;;;;;;;;;38457:16:0;38465:7;42565:4;42599:13;-1:-1:-1;42589:23:0;42508:112;38457:16;38452:61;;38482:31;;-1:-1:-1;;;38482:31:0;;;;;;;;;;;38452:61;38571:7;38551:245;38618:31;38652:17;;;:11;:17;;;;;;;;;38618:51;;;;;;;;;-1:-1:-1;;;;;38618:51:0;;;;;-1:-1:-1;;;38618:51:0;;;;;;;;;;;;38692:28;38688:93;;38752:9;38357:504;-1:-1:-1;;;38357:504:0:o;38688:93::-;-1:-1:-1;;;38591:6:0;38551:245;;14617:191;14710:6;;;-1:-1:-1;;;;;14727:17:0;;;-1:-1:-1;;;;;;14727:17:0;;;;;;;14760:40;;14710:6;;;14727:17;14710:6;;14760:40;;14691:16;;14760:40;14680:128;14617:191;:::o;42628:104::-;42697:27;42707:2;42711:8;42697:27;;;;;;;;;;;;:9;:27::i;48032:765::-;48187:4;-1:-1:-1;;;;;48208:13:0;;16343:19;:23;48204:586;;48244:72;;-1:-1:-1;;;48244:72:0;;-1:-1:-1;;;;;48244:36:0;;;;;:72;;11981:10;;48295:4;;48301:7;;48310:5;;48244:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48244:72:0;;;;;;;;-1:-1:-1;;48244:72:0;;;;;;;;;;;;:::i;:::-;;;48240:495;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48490:13:0;;48486:234;;48517:40;;-1:-1:-1;;;48517:40:0;;;;;;;;;;;48486:234;48670:6;48664:13;48655:6;48651:2;48647:15;48640:38;48240:495;-1:-1:-1;;;;;;48367:55:0;-1:-1:-1;;;48367:55:0;;-1:-1:-1;48360:62:0;;48204:586;-1:-1:-1;48774:4:0;48204:586;48032:765;;;;;;:::o;9155:723::-;9211:13;9432:10;9428:53;;-1:-1:-1;;9459:10:0;;;;;;;;;;;;-1:-1:-1;;;9459:10:0;;;;;9155:723::o;9428:53::-;9506:5;9491:12;9547:78;9554:9;;9547:78;;9580:8;;;;:::i;:::-;;-1:-1:-1;9603:10:0;;-1:-1:-1;9611:2:0;9603:10;;:::i;:::-;;;9547:78;;;9635:19;9667:6;9657:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9657:17:0;;9635:39;;9685:154;9692:10;;9685:154;;9719:11;9729:1;9719:11;;:::i;:::-;;-1:-1:-1;9788:10:0;9796:2;9788:5;:10;:::i;:::-;9775:24;;:2;:24;:::i;:::-;9762:39;;9745:6;9752;9745:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;9745:56:0;;;;;;;;-1:-1:-1;9816:11:0;9825:2;9816:11;;:::i;:::-;;;9685:154;;43095:163;43218:32;43224:2;43228:8;43238:5;43245:4;43656:20;43679:13;-1:-1:-1;;;;;43707:16:0;;43703:48;;43732:19;;-1:-1:-1;;;43732:19:0;;;;;;;;;;;43703:48;43766:13;43762:44;;43788:18;;-1:-1:-1;;;43788:18:0;;;;;;;;;;;43762:44;-1:-1:-1;;;;;44159:16:0;;;;;;:12;:16;;;;;;;;:45;;-1:-1:-1;;;;;;;;;44159:45:0;;-1:-1:-1;;;;;44159:45:0;;;;;;;;;;44219:50;;;;;;;;;;;;;;44286:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;44336:66:0;;;;-1:-1:-1;;;44386:15:0;44336:66;;;;;;;44286:25;;44471:330;44491:8;44487:1;:12;44471:330;;;44530:38;;44555:12;;-1:-1:-1;;;;;44530:38:0;;;44547:1;;44530:38;;44547:1;;44530:38;44591:4;:68;;;;;44600:59;44631:1;44635:2;44639:12;44653:5;44600:22;:59::i;:::-;44599:60;44591:68;44587:164;;;44691:40;;-1:-1:-1;;;44691:40:0;;;;;;;;;;;44587:164;44771:14;;;;;44501:3;44471:330;;;-1:-1:-1;44817:13:0;:28;44869:60;41945:308;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:245::-;2957:6;3010:2;2998:9;2989:7;2985:23;2981:32;2978:52;;;3026:1;3023;3016:12;2978:52;3065:9;3052:23;3084:30;3108:5;3084:30;:::i;3149:249::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:52;;;3287:1;3284;3277:12;3239:52;3319:9;3313:16;3338:30;3362:5;3338:30;:::i;3403:450::-;3472:6;3525:2;3513:9;3504:7;3500:23;3496:32;3493:52;;;3541:1;3538;3531:12;3493:52;3581:9;3568:23;3614:18;3606:6;3603:30;3600:50;;;3646:1;3643;3636:12;3600:50;3669:22;;3722:4;3714:13;;3710:27;-1:-1:-1;3700:55:1;;3751:1;3748;3741:12;3700:55;3774:73;3839:7;3834:2;3821:16;3816:2;3812;3808:11;3774:73;:::i;3858:180::-;3917:6;3970:2;3958:9;3949:7;3945:23;3941:32;3938:52;;;3986:1;3983;3976:12;3938:52;-1:-1:-1;4009:23:1;;3858:180;-1:-1:-1;3858:180:1:o;4043:257::-;4084:3;4122:5;4116:12;4149:6;4144:3;4137:19;4165:63;4221:6;4214:4;4209:3;4205:14;4198:4;4191:5;4187:16;4165:63;:::i;:::-;4282:2;4261:15;-1:-1:-1;;4257:29:1;4248:39;;;;4289:4;4244:50;;4043:257;-1:-1:-1;;4043:257:1:o;4305:185::-;4347:3;4385:5;4379:12;4400:52;4445:6;4440:3;4433:4;4426:5;4422:16;4400:52;:::i;:::-;4468:16;;;;;4305:185;-1:-1:-1;;4305:185:1:o;4613:1301::-;4890:3;4919:1;4952:6;4946:13;4982:3;5004:1;5032:9;5028:2;5024:18;5014:28;;5092:2;5081:9;5077:18;5114;5104:61;;5158:4;5150:6;5146:17;5136:27;;5104:61;5184:2;5232;5224:6;5221:14;5201:18;5198:38;5195:165;;;-1:-1:-1;;;5259:33:1;;5315:4;5312:1;5305:15;5345:4;5266:3;5333:17;5195:165;5376:18;5403:104;;;;5521:1;5516:320;;;;5369:467;;5403:104;-1:-1:-1;;5436:24:1;;5424:37;;5481:16;;;;-1:-1:-1;5403:104:1;;5516:320;9464:1;9457:14;;;9501:4;9488:18;;5611:1;5625:165;5639:6;5636:1;5633:13;5625:165;;;5717:14;;5704:11;;;5697:35;5760:16;;;;5654:10;;5625:165;;;5629:3;;5819:6;5814:3;5810:16;5803:23;;5369:467;;;;;;;5852:56;5877:30;5903:3;5895:6;5877:30;:::i;:::-;-1:-1:-1;;;4555:20:1;;4600:1;4591:11;;4495:113;5852:56;5845:63;4613:1301;-1:-1:-1;;;;;4613:1301:1:o;6127:488::-;-1:-1:-1;;;;;6396:15:1;;;6378:34;;6448:15;;6443:2;6428:18;;6421:43;6495:2;6480:18;;6473:34;;;6543:3;6538:2;6523:18;;6516:31;;;6321:4;;6564:45;;6589:19;;6581:6;6564:45;:::i;:::-;6556:53;6127:488;-1:-1:-1;;;;;;6127:488:1:o;6620:632::-;6791:2;6843:21;;;6913:13;;6816:18;;;6935:22;;;6762:4;;6791:2;7014:15;;;;6988:2;6973:18;;;6762:4;7057:169;7071:6;7068:1;7065:13;7057:169;;;7132:13;;7120:26;;7201:15;;;;7166:12;;;;7093:1;7086:9;7057:169;;;-1:-1:-1;7243:3:1;;6620:632;-1:-1:-1;;;;;;6620:632:1:o;7449:219::-;7598:2;7587:9;7580:21;7561:4;7618:44;7658:2;7647:9;7643:18;7635:6;7618:44;:::i;9517:128::-;9557:3;9588:1;9584:6;9581:1;9578:13;9575:39;;;9594:18;;:::i;:::-;-1:-1:-1;9630:9:1;;9517:128::o;9650:120::-;9690:1;9716;9706:35;;9721:18;;:::i;:::-;-1:-1:-1;9755:9:1;;9650:120::o;9775:125::-;9815:4;9843:1;9840;9837:8;9834:34;;;9848:18;;:::i;:::-;-1:-1:-1;9885:9:1;;9775:125::o;9905:258::-;9977:1;9987:113;10001:6;9998:1;9995:13;9987:113;;;10077:11;;;10071:18;10058:11;;;10051:39;10023:2;10016:10;9987:113;;;10118:6;10115:1;10112:13;10109:48;;;-1:-1:-1;;10153:1:1;10135:16;;10128:27;9905:258::o;10168:380::-;10247:1;10243:12;;;;10290;;;10311:61;;10365:4;10357:6;10353:17;10343:27;;10311:61;10418:2;10410:6;10407:14;10387:18;10384:38;10381:161;;;10464:10;10459:3;10455:20;10452:1;10445:31;10499:4;10496:1;10489:15;10527:4;10524:1;10517:15;10381:161;;10168:380;;;:::o;10553:135::-;10592:3;-1:-1:-1;;10613:17:1;;10610:43;;;10633:18;;:::i;:::-;-1:-1:-1;10680:1:1;10669:13;;10553:135::o;10693:112::-;10725:1;10751;10741:35;;10756:18;;:::i;:::-;-1:-1:-1;10790:9:1;;10693:112::o;10810:127::-;10871:10;10866:3;10862:20;10859:1;10852:31;10902:4;10899:1;10892:15;10926:4;10923:1;10916:15;10942:127;11003:10;10998:3;10994:20;10991:1;10984:31;11034:4;11031:1;11024:15;11058:4;11055:1;11048:15;11074:127;11135:10;11130:3;11126:20;11123:1;11116:31;11166:4;11163:1;11156:15;11190:4;11187:1;11180:15;11206:127;11267:10;11262:3;11258:20;11255:1;11248:31;11298:4;11295:1;11288:15;11322:4;11319:1;11312:15;11338:127;11399:10;11394:3;11390:20;11387:1;11380:31;11430:4;11427:1;11420:15;11454:4;11451:1;11444:15;11470:131;-1:-1:-1;;;;;;11544:32:1;;11534:43;;11524:71;;11591:1;11588;11581:12

Swarm Source

ipfs://957d66068bb566f41085c176eb84c0795a6605fa89ee9c180a296e04ec8bad12
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.