ETH Price: $3,477.75 (+0.82%)
Gas: 5 Gwei

Contract

0xa5A61AA88d07E55812dFB8B113b8eadb132601c9
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00
Transaction Hash
Method
Block
From
To
Holders Mint Pas...142629832022-02-23 14:51:18881 days ago1645627878IN
0xa5A61AA8...b132601c9
0.033 ETH0.0015001762.00366898
Holders Mint Pas...142582672022-02-22 21:28:59881 days ago1645565339IN
0xa5A61AA8...b132601c9
0.033 ETH0.0023218995.96603436
Holders Mint Pas...142487692022-02-21 10:06:08883 days ago1645437968IN
0xa5A61AA8...b132601c9
0.033 ETH0.0008904536.80327813
Holders Mint Pas...142438302022-02-20 16:00:23883 days ago1645372823IN
0xa5A61AA8...b132601c9
0.033 ETH0.00245766101.57745388
Free Mint Pass141901952022-02-12 8:36:35892 days ago1644654995IN
0xa5A61AA8...b132601c9
0 ETH0.0014018954.98917372
Holders Mint Pas...141390712022-02-04 10:52:47900 days ago1643971967IN
0xa5A61AA8...b132601c9
0.033 ETH0.001451760
Withdraw141108732022-01-31 2:07:50904 days ago1643594870IN
0xa5A61AA8...b132601c9
0 ETH0.0027415483.40572878
Holders Mint Pas...141108592022-01-31 2:05:36904 days ago1643594736IN
0xa5A61AA8...b132601c9
0.033 ETH0.0022941794.82031063
Set Holders Mint...141107632022-01-31 1:45:04904 days ago1643593504IN
0xa5A61AA8...b132601c9
0 ETH0.00241505101.11587877
Set Free Mint Pa...141107622022-01-31 1:44:48904 days ago1643593488IN
0xa5A61AA8...b132601c9
0 ETH0.002945102.74589628
Set Public Mint ...141107612022-01-31 1:44:12904 days ago1643593452IN
0xa5A61AA8...b132601c9
0 ETH0.0027498895.69151856
Holders Mint Pas...140935632022-01-28 10:13:28907 days ago1643364808IN
0xa5A61AA8...b132601c9
0.033 ETH0.0175809379.48626748
Public Mint Pass140935262022-01-28 10:06:17907 days ago1643364377IN
0xa5A61AA8...b132601c9
0.069 ETH0.0182653582.97869339
Public Mint Pass140733962022-01-25 7:27:18910 days ago1643095638IN
0xa5A61AA8...b132601c9
3.45 ETH0.7554664691.02891715
Holders Mint Pas...140680692022-01-24 11:30:09911 days ago1643023809IN
0xa5A61AA8...b132601c9
0.066 ETH0.05292617137.09277555
Public Mint Pass140632152022-01-23 17:19:45911 days ago1642958385IN
0xa5A61AA8...b132601c9
0.138 ETH0.04202588109.95784054
Holders Mint Pas...140580532022-01-22 22:16:34912 days ago1642889794IN
0xa5A61AA8...b132601c9
0.066 ETH0.03075516123.2212828
Public Mint Pass140579972022-01-22 22:05:19912 days ago1642889119IN
0xa5A61AA8...b132601c9
0.138 ETH0.06390122167.19314993
Public Mint Pass140579782022-01-22 22:02:17912 days ago1642888937IN
0xa5A61AA8...b132601c9
0.069 ETH0.04877419224.43389833
Holders Mint Pas...140579662022-01-22 22:00:14912 days ago1642888814IN
0xa5A61AA8...b132601c9
0.066 ETH0.07322722189.67786971
Holders Mint Pas...140579652022-01-22 21:59:55912 days ago1642888795IN
0xa5A61AA8...b132601c9
0.033 ETH0.03867858174.87219054
Public Mint Pass140579572022-01-22 21:58:13912 days ago1642888693IN
0xa5A61AA8...b132601c9
0.69 ETH0.28160601165.53180641
Holders Mint Pas...140579522022-01-22 21:55:52912 days ago1642888552IN
0xa5A61AA8...b132601c9
0.066 ETH0.04257327110.27601922
Holders Mint Pas...140579472022-01-22 21:54:56912 days ago1642888496IN
0xa5A61AA8...b132601c9
0.033 ETH0.027531124.47215918
Holders Mint Pas...140579412022-01-22 21:53:08912 days ago1642888388IN
0xa5A61AA8...b132601c9
0.066 ETH0.0378890498.14263716
View all transactions

Latest 2 internal transactions

Advanced mode:
Parent Transaction Hash Block From To
141108732022-01-31 2:07:50904 days ago1643594870
0xa5A61AA8...b132601c9
23.331 ETH
139798332022-01-10 20:13:34924 days ago1641845614
0xa5A61AA8...b132601c9
39.138 ETH
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
BrokeBoyzMinterUpgrade

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 16 : BrokeBoyzMinterUpgrade.sol
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "./BrokeBoyz.sol";

contract BrokeBoyzMinterUpgrade is Ownable {
    using Strings for string;
    using SafeMath for uint256;

    address public nftAddress;
    uint256 public MAX_SUPPLY;
    uint256 public publicMintPrice;
    uint256 public presaleMintPrice;



    bool public public_pass_minting;
    bool public holders_mint_pass; 
    bool public free_mint_pass; 

    uint256[] public usedBboyz;
    mapping(uint256 => bool) public usedBboyzMapping;



    constructor(address _nftAddress) {
        MAX_SUPPLY = 5000;
        publicMintPrice = 69000000000000000; // 0.069 ETH
        presaleMintPrice = 33000000000000000; // 0.033 ETH
        nftAddress = _nftAddress;
        public_pass_minting = false;
        free_mint_pass = false;
        holders_mint_pass = false;

    }

    function getUsedBboyz() public view returns (uint256[] memory) {
        return usedBboyz;
    }

    function setHoldersMintPass(bool isEnabled) public onlyOwner {
        holders_mint_pass = isEnabled;
    }

    function setPublicMintPass(bool isEnabled) public onlyOwner {
        public_pass_minting = isEnabled;
    }

    function setFreeMintPass(bool isEnabled) public onlyOwner {
        free_mint_pass = isEnabled;
    }

    function name() external pure returns (string memory) {
        return "Broke Boyz minter";
    }

    function symbol() external pure returns (string memory) {
        return "BBZ";
    }

    function freeMintPass(address _toAddress, uint256[] calldata boyzToUse) external {
        require(boyzToUse.length == 6, "6 bboyz are needed to mint a free token");
        require(free_mint_pass, "Minting hasn't started yet");

        BrokeBoyz brokeBoyz = BrokeBoyz(nftAddress);
        uint256 currentSupply = brokeBoyz.passSupply();


        for (uint i=0; i < boyzToUse.length; i++) {
            require(brokeBoyz.ownerOf(boyzToUse[i]) == _msgSender(), "sender is not the owner of sent bboy");
            require(!usedBboyzMapping[boyzToUse[i]], "Some or all bboyz already used for free mint");
        }

        for (uint i=0; i < boyzToUse.length; i++) {
            usedBboyzMapping[boyzToUse[i]] = true;
        }

        
        require(currentSupply + 1 <= MAX_SUPPLY, "Purchase would exceed max supply");
        brokeBoyz.factoryMintMintPass(_toAddress);
        
    }


    function privateMintBblock(uint256 amount, address _toAddress) external onlyOwner {
        BrokeBoyz brokeBoyz = BrokeBoyz(nftAddress);
        uint256 currentSupply = brokeBoyz.bBlockSupply();
        require(currentSupply + amount <= 250, "Purchase would exceed allocated private sale");

        for (uint256 i = 0; i < amount; i++) {
            brokeBoyz.factoryMintBblock(_toAddress);
        }

    }

    function holdersMintPass(uint256 amount, address _toAddress) external payable {

        require(holders_mint_pass, "Minting hasn't started yet");
        
        require(presaleMintPrice.mul(amount) <= msg.value, "Ether value sent is not correct");

        BrokeBoyz brokeBoyz = BrokeBoyz(nftAddress);
        uint256 currentSupply = brokeBoyz.passSupply();

        require(brokeBoyz.balanceOf(_msgSender()) > 0, "Sender is not a holder");
        require(currentSupply + amount <= MAX_SUPPLY, "Purchase would exceed max supply");
        
        for (uint256 i = 0; i < amount; i++) {
            brokeBoyz.factoryMintMintPass(_toAddress);
        }
    }


    function publicMintPass(uint256 amount, address _toAddress) external payable {
        require(public_pass_minting, "Public minting isn't allowed yet");
        require(publicMintPrice.mul(amount) <= msg.value, "Ether value sent is not correct");

        BrokeBoyz brokeBoyz = BrokeBoyz(nftAddress);
        uint256 currentSupply = brokeBoyz.passSupply();

        require(currentSupply + amount <= MAX_SUPPLY, "Purchase would exceed max supply");
        
        for (uint256 i = 0; i < amount; i++) {
            brokeBoyz.factoryMintMintPass(_toAddress);
        }
    }



    function privateMintMintPass(uint256 amount, address _toAddress) external onlyOwner {
        BrokeBoyz brokeBoyz = BrokeBoyz(nftAddress);
        uint256 currentSupply = brokeBoyz.passSupply();
        require(currentSupply + amount <= 250, "Purchase would exceed allocated private sale");

        for (uint256 i = 0; i < amount; i++) {
            brokeBoyz.factoryMintMintPass(_toAddress);
        }

    }

    

    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        address wallet = 0x3B6Abe1cF8A608632228dFC7395591020D47474D;
        payable(wallet).transfer(balance);
    }


}

//    Deploying 'BrokeBoyzMinterUpgrade'
//    ----------------------------------
//    > transaction hash:    0x3c79de1ba9de010f47eb8b5753ef51fa1a0bc7dc321bc1eb42a7f83bcff4a0d3
//    > Blocks: 4            Seconds: 92
//    > contract address:    0xa5A61AA88d07E55812dFB8B113b8eadb132601c9
//    > block number:        13595430
//    > block timestamp:     1636640568
//    > account:             0xCd1B5613E06A6d66F5106cF13E103C9B98253B0c
//    > balance:             0.23921547270528375
//    > gas used:            1353690 (0x14a7da)
//    > gas price:           130 gwei
//    > value sent:          0 ETH
//    > total cost:          0.1759797 ETH

//    Pausing for 2 confirmations...
//    ------------------------------
//    > confirmation number: 1 (block: 13595432)
//    > confirmation number: 3 (block: 13595434)
//    > Saving artifacts
//    -------------------------------------
//    > Total cost:           0.1759797 ETH

File 2 of 16 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

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

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

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 3 of 16 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @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 ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @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) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        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 virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _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 {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @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`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

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

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * 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
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), 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.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 4 of 16 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

File 5 of 16 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 6 of 16 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../ERC721.sol";
import "./IERC721Enumerable.sol";

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

File 7 of 16 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 8 of 16 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 9 of 16 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 10 of 16 : Context.sol
// SPDX-License-Identifier: MIT

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 11 of 16 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

File 12 of 16 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 13 of 16 : IERC165.sol
// SPDX-License-Identifier: MIT

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 14 of 16 : SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 15 of 16 : BrokeBoyz.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.4.22 <0.9.0;

import "./ERC721Tradable.sol";

contract BrokeBoyz is ERC721Tradable{
  constructor(address _proxyRegistryAddress) ERC721Tradable("BrokeBoyz", "BBZ", _proxyRegistryAddress) {  }

  function baseTokenURI() override public pure returns (string memory) {
        return "https://storage.googleapis.com/brokeboyz/";
  }

}



// https://storage.googleapis.com/brokeboyz/bblockg1.png

// https://storage.googleapis.com/brokeboyz/bblockg1.json


// **
// Rest of naming structures will be the exact same URL above but the name at the end will be formatted like this:
// bblockg <- B-Block (good)
// bblocke <- B-Block (evil)
// mintpass <-mint pass
// tessg <- Tess (good)
// tesse <- Tess (evil)
// rooseveltg <- Roosevelt (good)
// roosevelte <- Roosevelt (evil)

File 16 of 16 : ERC721Tradable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/utils/Strings.sol";

contract OwnableDelegateProxy {}

contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

/**
 * @title ERC721Tradable
 * ERC721Tradable - ERC721 contract that whitelists a trading address, and has minting functionality.
 */
abstract contract ERC721Tradable is ERC721Enumerable, Ownable {
    using Strings for string;
    using SafeMath for uint256;

    address proxyRegistryAddress;
    address factoryAddress;
    uint256 private _currentTokenId = 0;

    uint256 private _currentBblockId = 0;
    uint256 private _currentMintPassId = 0;
    uint256 private _currentTessId = 0;
    uint256 private _currentRoosId = 0;

    bool private mintPassMintingEnabled = false;
    bool private tessToEvil = false;
    bool private roosToEvil = false;
    bool private bblockToEvil = false;

    bool private tessToGood = false;
    bool private roosToGood = false;
    bool private bblockToGood = false;

    mapping(uint256 => uint256) public idMappings;
    // mapping(uint256 => bool) public isGoodMapping;
    mapping(uint256 => string) public goodEvilMapping;


    constructor(
        string memory _name,
        string memory _symbol,
        address _proxyRegistryAddress
    ) ERC721(_name, _symbol) {
        proxyRegistryAddress = _proxyRegistryAddress;
    }

    // todo ipfs hash might be removed

    /**
     * @dev Mints a token to an address with a tokenURI.
     * @param _to address of the future owner of the token
     */
    function mintTo(address _to) public onlyOwner {
        uint256 newTokenId = _getNextTokenId();
        _mint(_to, newTokenId);
        _incrementTokenId();
    }

    function setMintPassEnabled(bool isEnabled) public onlyOwner {
        mintPassMintingEnabled = isEnabled;
    }

    function setTessToEvil(bool isEnabled) public onlyOwner {
        tessToEvil = isEnabled;
    }

    function setRoosToEvil(bool isEnabled) public onlyOwner {
        roosToEvil = isEnabled;
    }

    function setBblockToEvil(bool isEnabled) public onlyOwner {
        bblockToEvil = isEnabled;
    }

    function setTessToGood(bool isEnabled) public onlyOwner {
        tessToGood = isEnabled;
    }

    function setRoosToGood(bool isEnabled) public onlyOwner {
        roosToGood = isEnabled;
    }

    function setBblockToGood(bool isEnabled) public onlyOwner {
        bblockToGood = isEnabled;
    }

    function bBlockSupply() public view returns (uint256) {
        return _currentBblockId;
    }

    function tessSupply() public view returns (uint256) {
        return _currentTessId;
    }
    
    function roosSupply() public view returns (uint256) {
        return _currentRoosId;
    }

    function passSupply() public view returns (uint256) {
        return _currentMintPassId;
    }

    function lastTokenId() public view returns (uint256) {
        return _currentTokenId;
    }



    function factoryMintBblock(address _to) public {
        require(factoryAddress == _msgSender(), "Ownable: caller is not the factory!");
        uint256 newTokenId = _getNextTokenId();

        uint256 newBblockId = _getNextBblockId();
        goodEvilMapping[newTokenId] = string(abi.encodePacked("bblockg", uint2str(newBblockId), ".json"));
        idMappings[newTokenId] = newBblockId;

        _mint(_to, newTokenId);
        _incrementTokenId();
        _incrementBblockId();
    }

    function factoryMintMintPass(address _to) public {
        require(factoryAddress == _msgSender(), "Ownable: caller is not the factory!");
        uint256 newTokenId = _getNextTokenId();

        uint256 newMintPassId = _getNextMintPassId();
        goodEvilMapping[newTokenId] = string(abi.encodePacked("mintpass", uint2str(newMintPassId), ".json"));
        idMappings[newTokenId] = newMintPassId;


        _mint(_to, newTokenId);
        _incrementTokenId();
        _incrementMintPassId();
    }

    function exchangeMintPassForTess(uint256 _tokenId) public {
        require(mintPassMintingEnabled, "Minting is not unlocked yet");
        require(ownerOf(_tokenId) == _msgSender(), "Sender is not token owner");

        uint256 mintPassId = idMappings[_tokenId];
        require(keccak256(bytes(goodEvilMapping[_tokenId])) == keccak256(abi.encodePacked("mintpass", uint2str(mintPassId), ".json")), "Token is not Mintpass");

        uint256 newTokenId = _getNextTokenId();
        uint256 newTessId = _getNextTessId();
        goodEvilMapping[newTokenId] = string(abi.encodePacked("tessg", uint2str(newTessId), ".json"));
        idMappings[newTokenId] = newTessId;

        _burn(_tokenId);
        _mint(_msgSender(), newTokenId);
        _incrementTokenId();
        _incrementTessId();
    }

    function exchangeMintPassForRoos(uint256 _tokenId) public {
        require(mintPassMintingEnabled, "Minting is not unlocked yet");
        require(ownerOf(_tokenId) == _msgSender(), "Sender is not token owner");

        uint256 mintPassId = idMappings[_tokenId];
        require(keccak256(bytes(goodEvilMapping[_tokenId])) == keccak256(abi.encodePacked("mintpass", uint2str(mintPassId), ".json")), "Token is not Mintpass");

        uint256 newTokenId = _getNextTokenId();
        uint256 newRoosId = _getNextRoosId();
        goodEvilMapping[newTokenId] = string(abi.encodePacked("rooseveltg", uint2str(newRoosId), ".json"));
        idMappings[newTokenId] = newRoosId;

        _burn(_tokenId);
        _mint(_msgSender(), newTokenId);
        _incrementTokenId();
        _incrementRoosId();
    }

    function convertTessToEvil(uint256 _tokenId) public {
        require(tessToEvil, "Not available at this time");
        require(ownerOf(_tokenId) == _msgSender(), "Sender is not token owner");
        uint256 tessId = idMappings[_tokenId];
        require(keccak256(bytes(goodEvilMapping[_tokenId])) == keccak256(abi.encodePacked("tessg", uint2str(tessId), ".json")), "Token is already evil or is not tess");
        uint256 newTokenId = _getNextTokenId();
        goodEvilMapping[newTokenId] = string(abi.encodePacked("tesse", uint2str(tessId), ".json"));
        idMappings[newTokenId] = tessId;
        _burn(_tokenId);
        _mint(_msgSender(), newTokenId);
        _incrementTokenId();
    }

 
    function convertRoosToEvil(uint256 _tokenId) public {
        require(roosToEvil, "Not available at this time");
        require(ownerOf(_tokenId) == _msgSender(), "Sender is not token owner");
        uint256 roosId = idMappings[_tokenId];
        require(keccak256(bytes(goodEvilMapping[_tokenId])) == keccak256(abi.encodePacked("rooseveltg", uint2str(roosId), ".json")), "Token is already evil or is not Roosevelt");

        uint256 newTokenId = _getNextTokenId();
        goodEvilMapping[newTokenId] = string(abi.encodePacked("roosevelte", uint2str(roosId), ".json"));
        idMappings[newTokenId] = roosId;

        _burn(_tokenId);
        _mint(_msgSender(), newTokenId);
        _incrementTokenId();
    }


    function convertBblockToEvil(uint256 _tokenId) public {
        require(bblockToEvil, "Not available at this time");
        require(ownerOf(_tokenId) == _msgSender(), "Sender is not token owner");
        uint256 bblockId = idMappings[_tokenId];
        require(keccak256(bytes(goodEvilMapping[_tokenId])) == keccak256(abi.encodePacked("bblockg", uint2str(bblockId), ".json")), "Token is already evil or is not bblock");

        uint256 newTokenId = _getNextTokenId();
        goodEvilMapping[newTokenId] = string(abi.encodePacked("bblocke", uint2str(bblockId), ".json"));
        idMappings[newTokenId] = bblockId;

        _burn(_tokenId);
        _mint(_msgSender(), newTokenId);
        _incrementTokenId();
    }

    function convertTessToGood(uint256 _tokenId) public {
        require(tessToGood, "Not available at this time");
        require(ownerOf(_tokenId) == _msgSender(), "Sender is not token owner");
        uint256 tessId = idMappings[_tokenId];
        require(keccak256(bytes(goodEvilMapping[_tokenId])) == keccak256(abi.encodePacked("tesse", uint2str(tessId), ".json")), "Token is already good or is not tess");
        uint256 newTokenId = _getNextTokenId();
        goodEvilMapping[newTokenId] = string(abi.encodePacked("tessg", uint2str(tessId), ".json"));
        idMappings[newTokenId] = tessId;
        _burn(_tokenId);
        _mint(_msgSender(), newTokenId);
        _incrementTokenId();
    }

 
    function convertRoosToGood(uint256 _tokenId) public {
        require(roosToGood, "Not available at this time");
        require(ownerOf(_tokenId) == _msgSender(), "Sender is not token owner");
        uint256 roosId = idMappings[_tokenId];
        require(keccak256(bytes(goodEvilMapping[_tokenId])) == keccak256(abi.encodePacked("roosevelte", uint2str(roosId), ".json")), "Token is already good or is not Roosevelt");

        uint256 newTokenId = _getNextTokenId();
        goodEvilMapping[newTokenId] = string(abi.encodePacked("rooseveltg", uint2str(roosId), ".json"));
        idMappings[newTokenId] = roosId;

        _burn(_tokenId);
        _mint(_msgSender(), newTokenId);
        _incrementTokenId();
    }


    function convertBblockToGood(uint256 _tokenId) public {
        require(bblockToGood, "Not available at this time");
        require(ownerOf(_tokenId) == _msgSender(), "Sender is not token owner");
        uint256 bblockId = idMappings[_tokenId];
        require(keccak256(bytes(goodEvilMapping[_tokenId])) == keccak256(abi.encodePacked("bblocke", uint2str(bblockId), ".json")), "Token is already evil or is not bblock");

        uint256 newTokenId = _getNextTokenId();
        goodEvilMapping[newTokenId] = string(abi.encodePacked("bblockg", uint2str(bblockId), ".json"));
        idMappings[newTokenId] = bblockId;

        _burn(_tokenId);
        _mint(_msgSender(), newTokenId);
        _incrementTokenId();
    }


    function setFactoryAddress(address _factoryAddress) public onlyOwner {
        factoryAddress = _factoryAddress;
    }

    /**
     * @dev calculates the next token ID based on value of _currentTokenId
     * @return uint256 for the next token ID
     */
    function _getNextTokenId() private view returns (uint256) {
        return _currentTokenId.add(1);
    }

    function _getNextBblockId() private view returns (uint256) {
        return _currentBblockId.add(1);
    }

    function _getNextMintPassId() private view returns (uint256) {
        return _currentMintPassId.add(1);
    }

    function _getNextTessId() private view returns (uint256) {
        return _currentTessId.add(1);
    }

    function _getNextRoosId() private view returns (uint256) {
        return _currentRoosId.add(1);
    }

    /**
     * @dev increments the value of _currentTokenId
     */
    function _incrementTokenId() private {
        _currentTokenId++;
    }

    function _incrementBblockId() private {
        _currentBblockId++;
    }

    function _incrementMintPassId() private {
        _currentMintPassId++;
    }

    function _incrementTessId() private {
        _currentTessId++;
    }

    function _incrementRoosId() private {
        _currentRoosId++;
    }

    function baseTokenURI() virtual public pure returns (string memory);

    function tokenURI(uint256 _tokenId) override public view returns (string memory) {
        return string(abi.encodePacked(baseTokenURI(), goodEvilMapping[_tokenId]));
    }

    /**
     * Override isApprovedForAll to whitelist user's OpenSea proxy accounts to enable gas-less listings.
     */
    function isApprovedForAll(address owner, address operator)
        override
        public
        view
        returns (bool)
    {
        // Whitelist OpenSea proxy contract for easy trading.
        ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress);
        if (address(proxyRegistry.proxies(owner)) == operator) {
            return true;
        }

        return super.isApprovedForAll(owner, operator);
    }

     /**
     * @dev override transfer to prevent transfer of calimed tokens
     */
    function transferFrom(address from, address to, uint256 tokenId) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev override transfer to prevent transfer of calimed tokens
     */
    function safeTransferFrom(address from, address to, uint256 tokenId) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev override transfer to prevent transfer of calimed tokens
     */
    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }
    
    function uint2str(uint _i) internal pure returns (string memory _uintAsString) {
        if (_i == 0) {
            return "0";
        }
        uint j = _i;
        uint len;
        while (j != 0) {
            len++;
            j /= 10;
        }
        bytes memory bstr = new bytes(len);
        uint k = len;
        while (_i != 0) {
            k = k-1;
            uint8 temp = (48 + uint8(_i - _i / 10 * 10));
            bytes1 b1 = bytes1(temp);
            bstr[k] = b1;
            _i /= 10;
        }
        return string(bstr);
    }

    function burn(uint256 _tokenId) public {
        require(ownerOf(_tokenId) == _msgSender());
        _burn(_tokenId); 
    }
}

Settings
{
  "remappings": [],
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "evmVersion": "london",
  "libraries": {},
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_nftAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_toAddress","type":"address"},{"internalType":"uint256[]","name":"boyzToUse","type":"uint256[]"}],"name":"freeMintPass","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"free_mint_pass","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getUsedBboyz","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"_toAddress","type":"address"}],"name":"holdersMintPass","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"holders_mint_pass","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"nftAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"_toAddress","type":"address"}],"name":"privateMintBblock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"_toAddress","type":"address"}],"name":"privateMintMintPass","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"_toAddress","type":"address"}],"name":"publicMintPass","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"public_pass_minting","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"isEnabled","type":"bool"}],"name":"setFreeMintPass","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"isEnabled","type":"bool"}],"name":"setHoldersMintPass","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"isEnabled","type":"bool"}],"name":"setPublicMintPass","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"usedBboyz","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"usedBboyzMapping","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405234801561001057600080fd5b5060405161167638038061167683398101604081905261002f916100d5565b61003833610085565b61138860025566f523226980800060035566753d533d968000600455600180546001600160a01b0319166001600160a01b03929092169190911790556005805462ffffff19169055610105565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000602082840312156100e757600080fd5b81516001600160a01b03811681146100fe57600080fd5b9392505050565b611562806101146000396000f3fe60806040526004361061014b5760003560e01c806393533e61116100b6578063dc53fd921161006f578063dc53fd92146103c5578063f2cd8dd0146103db578063f2fde38b146103fb578063f5c6a32f1461041b578063fb8bcf291461043b578063fc6d87811461045b57600080fd5b806393533e611461030557806395d89b41146103255780639f099f7114610351578063a1afe9bd14610371578063af6a065114610384578063cd6eea4f146103a357600080fd5b80634bfa67f6116101085780634bfa67f6146102345780635be50521146102645780635bf8633a1461027a578063715018a6146102b257806379aec771146102c75780638da5cb5b146102e757600080fd5b806306fdde031461015057806315da81551461019c57806332cb6b0c146101ca5780633865f146146101e05780633ccfd60b146101f55780633eb967aa1461020a575b600080fd5b34801561015c57600080fd5b50604080518082019091526011815270213937b5b2902137bcbd1036b4b73a32b960791b60208201525b6040516101939190611204565b60405180910390f35b3480156101a857600080fd5b506101bc6101b7366004611259565b61047b565b604051908152602001610193565b3480156101d657600080fd5b506101bc60025481565b6101f36101ee366004611287565b61049c565b005b34801561020157600080fd5b506101f3610735565b34801561021657600080fd5b506005546102249060ff1681565b6040519015158152602001610193565b34801561024057600080fd5b5061022461024f366004611259565b60076020526000908152604090205460ff1681565b34801561027057600080fd5b506101bc60045481565b34801561028657600080fd5b5060015461029a906001600160a01b031681565b6040516001600160a01b039091168152602001610193565b3480156102be57600080fd5b506101f36107a9565b3480156102d357600080fd5b506101f36102e23660046112b7565b6107df565b3480156102f357600080fd5b506000546001600160a01b031661029a565b34801561031157600080fd5b506101f36103203660046112b7565b61081c565b34801561033157600080fd5b5060408051808201909152600381526221212d60e91b6020820152610186565b34801561035d57600080fd5b506101f361036c366004611287565b610862565b6101f361037f366004611287565b6109a4565b34801561039057600080fd5b5060055461022490610100900460ff1681565b3480156103af57600080fd5b506103b8610b6d565b60405161019391906112d9565b3480156103d157600080fd5b506101bc60035481565b3480156103e757600080fd5b506101f36103f63660046112b7565b610bc5565b34801561040757600080fd5b506101f361041636600461131d565b610c09565b34801561042757600080fd5b506101f3610436366004611287565b610ca4565b34801561044757600080fd5b506101f361045636600461133a565b610de6565b34801561046757600080fd5b506005546102249062010000900460ff1681565b6006818154811061048b57600080fd5b600091825260209091200154905081565b600554610100900460ff166104f85760405162461bcd60e51b815260206004820152601a60248201527f4d696e74696e67206861736e277420737461727465642079657400000000000060448201526064015b60405180910390fd5b600454349061050790846111a1565b11156105555760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f72726563740060448201526064016104ef565b600154604080516346dab49560e01b815290516001600160a01b039092169160009183916346dab495916004808201926020929091908290030181865afa1580156105a4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105c891906113c2565b905060006001600160a01b0383166370a08231336040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401602060405180830381865afa158015610620573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061064491906113c2565b1161068a5760405162461bcd60e51b815260206004820152601660248201527529b2b73232b91034b9903737ba1030903437b63232b960511b60448201526064016104ef565b60025461069785836113f1565b11156106b55760405162461bcd60e51b81526004016104ef90611409565b60005b8481101561072e57604051632b9a721760e01b81526001600160a01b038581166004830152841690632b9a721790602401600060405180830381600087803b15801561070357600080fd5b505af1158015610717573d6000803e3d6000fd5b5050505080806107269061143e565b9150506106b8565b5050505050565b6000546001600160a01b0316331461075f5760405162461bcd60e51b81526004016104ef90611459565b6040514790733b6abe1cf8a608632228dfc7395591020d47474d90819083156108fc029084906000818181858888f193505050501580156107a4573d6000803e3d6000fd5b505050565b6000546001600160a01b031633146107d35760405162461bcd60e51b81526004016104ef90611459565b6107dd60006111b4565b565b6000546001600160a01b031633146108095760405162461bcd60e51b81526004016104ef90611459565b6005805460ff1916911515919091179055565b6000546001600160a01b031633146108465760405162461bcd60e51b81526004016104ef90611459565b60058054911515620100000262ff000019909216919091179055565b6000546001600160a01b0316331461088c5760405162461bcd60e51b81526004016104ef90611459565b6001546040805163cdc0027760e01b815290516001600160a01b0390921691600091839163cdc00277916004808201926020929091908290030181865afa1580156108db573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108ff91906113c2565b905060fa61090d85836113f1565b111561092b5760405162461bcd60e51b81526004016104ef9061148e565b60005b8481101561072e57604051630370abdd60e01b81526001600160a01b038581166004830152841690630370abdd90602401600060405180830381600087803b15801561097957600080fd5b505af115801561098d573d6000803e3d6000fd5b50505050808061099c9061143e565b91505061092e565b60055460ff166109f65760405162461bcd60e51b815260206004820181905260248201527f5075626c6963206d696e74696e672069736e277420616c6c6f7765642079657460448201526064016104ef565b6003543490610a0590846111a1565b1115610a535760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f72726563740060448201526064016104ef565b600154604080516346dab49560e01b815290516001600160a01b039092169160009183916346dab495916004808201926020929091908290030181865afa158015610aa2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ac691906113c2565b600254909150610ad685836113f1565b1115610af45760405162461bcd60e51b81526004016104ef90611409565b60005b8481101561072e57604051632b9a721760e01b81526001600160a01b038581166004830152841690632b9a721790602401600060405180830381600087803b158015610b4257600080fd5b505af1158015610b56573d6000803e3d6000fd5b505050508080610b659061143e565b915050610af7565b60606006805480602002602001604051908101604052809291908181526020018280548015610bbb57602002820191906000526020600020905b815481526020019060010190808311610ba7575b5050505050905090565b6000546001600160a01b03163314610bef5760405162461bcd60e51b81526004016104ef90611459565b600580549115156101000261ff0019909216919091179055565b6000546001600160a01b03163314610c335760405162461bcd60e51b81526004016104ef90611459565b6001600160a01b038116610c985760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104ef565b610ca1816111b4565b50565b6000546001600160a01b03163314610cce5760405162461bcd60e51b81526004016104ef90611459565b600154604080516346dab49560e01b815290516001600160a01b039092169160009183916346dab495916004808201926020929091908290030181865afa158015610d1d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d4191906113c2565b905060fa610d4f85836113f1565b1115610d6d5760405162461bcd60e51b81526004016104ef9061148e565b60005b8481101561072e57604051632b9a721760e01b81526001600160a01b038581166004830152841690632b9a721790602401600060405180830381600087803b158015610dbb57600080fd5b505af1158015610dcf573d6000803e3d6000fd5b505050508080610dde9061143e565b915050610d70565b60068114610e465760405162461bcd60e51b815260206004820152602760248201527f362062626f797a20617265206e656564656420746f206d696e7420612066726560448201526632903a37b5b2b760c91b60648201526084016104ef565b60055462010000900460ff16610e9e5760405162461bcd60e51b815260206004820152601a60248201527f4d696e74696e67206861736e277420737461727465642079657400000000000060448201526064016104ef565b600154604080516346dab49560e01b815290516001600160a01b039092169160009183916346dab495916004808201926020929091908290030181865afa158015610eed573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f1191906113c2565b905060005b838110156110af57336001600160a01b038416636352211e878785818110610f4057610f406114da565b905060200201356040518263ffffffff1660e01b8152600401610f6591815260200190565b602060405180830381865afa158015610f82573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fa691906114f0565b6001600160a01b0316146110085760405162461bcd60e51b8152602060048201526024808201527f73656e646572206973206e6f7420746865206f776e6572206f662073656e742060448201526362626f7960e01b60648201526084016104ef565b6007600086868481811061101e5761101e6114da565b602090810292909201358352508101919091526040016000205460ff161561109d5760405162461bcd60e51b815260206004820152602c60248201527f536f6d65206f7220616c6c2062626f797a20616c72656164792075736564206660448201526b1bdc88199c9959481b5a5b9d60a21b60648201526084016104ef565b806110a78161143e565b915050610f16565b5060005b83811015611112576001600760008787858181106110d3576110d36114da565b90506020020135815260200190815260200160002060006101000a81548160ff021916908315150217905550808061110a9061143e565b9150506110b3565b506002546111218260016113f1565b111561113f5760405162461bcd60e51b81526004016104ef90611409565b604051632b9a721760e01b81526001600160a01b038681166004830152831690632b9a721790602401600060405180830381600087803b15801561118257600080fd5b505af1158015611196573d6000803e3d6000fd5b505050505050505050565b60006111ad828461150d565b9392505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600060208083528351808285015260005b8181101561123157858101830151858201604001528201611215565b81811115611243576000604083870101525b50601f01601f1916929092016040019392505050565b60006020828403121561126b57600080fd5b5035919050565b6001600160a01b0381168114610ca157600080fd5b6000806040838503121561129a57600080fd5b8235915060208301356112ac81611272565b809150509250929050565b6000602082840312156112c957600080fd5b813580151581146111ad57600080fd5b6020808252825182820181905260009190848201906040850190845b81811015611311578351835292840192918401916001016112f5565b50909695505050505050565b60006020828403121561132f57600080fd5b81356111ad81611272565b60008060006040848603121561134f57600080fd5b833561135a81611272565b9250602084013567ffffffffffffffff8082111561137757600080fd5b818601915086601f83011261138b57600080fd5b81358181111561139a57600080fd5b8760208260051b85010111156113af57600080fd5b6020830194508093505050509250925092565b6000602082840312156113d457600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115611404576114046113db565b500190565b6020808252818101527f507572636861736520776f756c6420657863656564206d617820737570706c79604082015260600190565b6000600019821415611452576114526113db565b5060010190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602c908201527f507572636861736520776f756c642065786365656420616c6c6f63617465642060408201526b707269766174652073616c6560a01b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561150257600080fd5b81516111ad81611272565b6000816000190483118215151615611527576115276113db565b50029056fea2646970667358221220ab02127806007230c261c4c0f44be79ea14c87eb2190ae30545a3efaeaece86164736f6c634300080a0033000000000000000000000000f8ef0631aa8150aee8cfb4db3fa27e81d78df620

Deployed Bytecode

0x60806040526004361061014b5760003560e01c806393533e61116100b6578063dc53fd921161006f578063dc53fd92146103c5578063f2cd8dd0146103db578063f2fde38b146103fb578063f5c6a32f1461041b578063fb8bcf291461043b578063fc6d87811461045b57600080fd5b806393533e611461030557806395d89b41146103255780639f099f7114610351578063a1afe9bd14610371578063af6a065114610384578063cd6eea4f146103a357600080fd5b80634bfa67f6116101085780634bfa67f6146102345780635be50521146102645780635bf8633a1461027a578063715018a6146102b257806379aec771146102c75780638da5cb5b146102e757600080fd5b806306fdde031461015057806315da81551461019c57806332cb6b0c146101ca5780633865f146146101e05780633ccfd60b146101f55780633eb967aa1461020a575b600080fd5b34801561015c57600080fd5b50604080518082019091526011815270213937b5b2902137bcbd1036b4b73a32b960791b60208201525b6040516101939190611204565b60405180910390f35b3480156101a857600080fd5b506101bc6101b7366004611259565b61047b565b604051908152602001610193565b3480156101d657600080fd5b506101bc60025481565b6101f36101ee366004611287565b61049c565b005b34801561020157600080fd5b506101f3610735565b34801561021657600080fd5b506005546102249060ff1681565b6040519015158152602001610193565b34801561024057600080fd5b5061022461024f366004611259565b60076020526000908152604090205460ff1681565b34801561027057600080fd5b506101bc60045481565b34801561028657600080fd5b5060015461029a906001600160a01b031681565b6040516001600160a01b039091168152602001610193565b3480156102be57600080fd5b506101f36107a9565b3480156102d357600080fd5b506101f36102e23660046112b7565b6107df565b3480156102f357600080fd5b506000546001600160a01b031661029a565b34801561031157600080fd5b506101f36103203660046112b7565b61081c565b34801561033157600080fd5b5060408051808201909152600381526221212d60e91b6020820152610186565b34801561035d57600080fd5b506101f361036c366004611287565b610862565b6101f361037f366004611287565b6109a4565b34801561039057600080fd5b5060055461022490610100900460ff1681565b3480156103af57600080fd5b506103b8610b6d565b60405161019391906112d9565b3480156103d157600080fd5b506101bc60035481565b3480156103e757600080fd5b506101f36103f63660046112b7565b610bc5565b34801561040757600080fd5b506101f361041636600461131d565b610c09565b34801561042757600080fd5b506101f3610436366004611287565b610ca4565b34801561044757600080fd5b506101f361045636600461133a565b610de6565b34801561046757600080fd5b506005546102249062010000900460ff1681565b6006818154811061048b57600080fd5b600091825260209091200154905081565b600554610100900460ff166104f85760405162461bcd60e51b815260206004820152601a60248201527f4d696e74696e67206861736e277420737461727465642079657400000000000060448201526064015b60405180910390fd5b600454349061050790846111a1565b11156105555760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f72726563740060448201526064016104ef565b600154604080516346dab49560e01b815290516001600160a01b039092169160009183916346dab495916004808201926020929091908290030181865afa1580156105a4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105c891906113c2565b905060006001600160a01b0383166370a08231336040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401602060405180830381865afa158015610620573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061064491906113c2565b1161068a5760405162461bcd60e51b815260206004820152601660248201527529b2b73232b91034b9903737ba1030903437b63232b960511b60448201526064016104ef565b60025461069785836113f1565b11156106b55760405162461bcd60e51b81526004016104ef90611409565b60005b8481101561072e57604051632b9a721760e01b81526001600160a01b038581166004830152841690632b9a721790602401600060405180830381600087803b15801561070357600080fd5b505af1158015610717573d6000803e3d6000fd5b5050505080806107269061143e565b9150506106b8565b5050505050565b6000546001600160a01b0316331461075f5760405162461bcd60e51b81526004016104ef90611459565b6040514790733b6abe1cf8a608632228dfc7395591020d47474d90819083156108fc029084906000818181858888f193505050501580156107a4573d6000803e3d6000fd5b505050565b6000546001600160a01b031633146107d35760405162461bcd60e51b81526004016104ef90611459565b6107dd60006111b4565b565b6000546001600160a01b031633146108095760405162461bcd60e51b81526004016104ef90611459565b6005805460ff1916911515919091179055565b6000546001600160a01b031633146108465760405162461bcd60e51b81526004016104ef90611459565b60058054911515620100000262ff000019909216919091179055565b6000546001600160a01b0316331461088c5760405162461bcd60e51b81526004016104ef90611459565b6001546040805163cdc0027760e01b815290516001600160a01b0390921691600091839163cdc00277916004808201926020929091908290030181865afa1580156108db573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108ff91906113c2565b905060fa61090d85836113f1565b111561092b5760405162461bcd60e51b81526004016104ef9061148e565b60005b8481101561072e57604051630370abdd60e01b81526001600160a01b038581166004830152841690630370abdd90602401600060405180830381600087803b15801561097957600080fd5b505af115801561098d573d6000803e3d6000fd5b50505050808061099c9061143e565b91505061092e565b60055460ff166109f65760405162461bcd60e51b815260206004820181905260248201527f5075626c6963206d696e74696e672069736e277420616c6c6f7765642079657460448201526064016104ef565b6003543490610a0590846111a1565b1115610a535760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f72726563740060448201526064016104ef565b600154604080516346dab49560e01b815290516001600160a01b039092169160009183916346dab495916004808201926020929091908290030181865afa158015610aa2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ac691906113c2565b600254909150610ad685836113f1565b1115610af45760405162461bcd60e51b81526004016104ef90611409565b60005b8481101561072e57604051632b9a721760e01b81526001600160a01b038581166004830152841690632b9a721790602401600060405180830381600087803b158015610b4257600080fd5b505af1158015610b56573d6000803e3d6000fd5b505050508080610b659061143e565b915050610af7565b60606006805480602002602001604051908101604052809291908181526020018280548015610bbb57602002820191906000526020600020905b815481526020019060010190808311610ba7575b5050505050905090565b6000546001600160a01b03163314610bef5760405162461bcd60e51b81526004016104ef90611459565b600580549115156101000261ff0019909216919091179055565b6000546001600160a01b03163314610c335760405162461bcd60e51b81526004016104ef90611459565b6001600160a01b038116610c985760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104ef565b610ca1816111b4565b50565b6000546001600160a01b03163314610cce5760405162461bcd60e51b81526004016104ef90611459565b600154604080516346dab49560e01b815290516001600160a01b039092169160009183916346dab495916004808201926020929091908290030181865afa158015610d1d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d4191906113c2565b905060fa610d4f85836113f1565b1115610d6d5760405162461bcd60e51b81526004016104ef9061148e565b60005b8481101561072e57604051632b9a721760e01b81526001600160a01b038581166004830152841690632b9a721790602401600060405180830381600087803b158015610dbb57600080fd5b505af1158015610dcf573d6000803e3d6000fd5b505050508080610dde9061143e565b915050610d70565b60068114610e465760405162461bcd60e51b815260206004820152602760248201527f362062626f797a20617265206e656564656420746f206d696e7420612066726560448201526632903a37b5b2b760c91b60648201526084016104ef565b60055462010000900460ff16610e9e5760405162461bcd60e51b815260206004820152601a60248201527f4d696e74696e67206861736e277420737461727465642079657400000000000060448201526064016104ef565b600154604080516346dab49560e01b815290516001600160a01b039092169160009183916346dab495916004808201926020929091908290030181865afa158015610eed573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f1191906113c2565b905060005b838110156110af57336001600160a01b038416636352211e878785818110610f4057610f406114da565b905060200201356040518263ffffffff1660e01b8152600401610f6591815260200190565b602060405180830381865afa158015610f82573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fa691906114f0565b6001600160a01b0316146110085760405162461bcd60e51b8152602060048201526024808201527f73656e646572206973206e6f7420746865206f776e6572206f662073656e742060448201526362626f7960e01b60648201526084016104ef565b6007600086868481811061101e5761101e6114da565b602090810292909201358352508101919091526040016000205460ff161561109d5760405162461bcd60e51b815260206004820152602c60248201527f536f6d65206f7220616c6c2062626f797a20616c72656164792075736564206660448201526b1bdc88199c9959481b5a5b9d60a21b60648201526084016104ef565b806110a78161143e565b915050610f16565b5060005b83811015611112576001600760008787858181106110d3576110d36114da565b90506020020135815260200190815260200160002060006101000a81548160ff021916908315150217905550808061110a9061143e565b9150506110b3565b506002546111218260016113f1565b111561113f5760405162461bcd60e51b81526004016104ef90611409565b604051632b9a721760e01b81526001600160a01b038681166004830152831690632b9a721790602401600060405180830381600087803b15801561118257600080fd5b505af1158015611196573d6000803e3d6000fd5b505050505050505050565b60006111ad828461150d565b9392505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600060208083528351808285015260005b8181101561123157858101830151858201604001528201611215565b81811115611243576000604083870101525b50601f01601f1916929092016040019392505050565b60006020828403121561126b57600080fd5b5035919050565b6001600160a01b0381168114610ca157600080fd5b6000806040838503121561129a57600080fd5b8235915060208301356112ac81611272565b809150509250929050565b6000602082840312156112c957600080fd5b813580151581146111ad57600080fd5b6020808252825182820181905260009190848201906040850190845b81811015611311578351835292840192918401916001016112f5565b50909695505050505050565b60006020828403121561132f57600080fd5b81356111ad81611272565b60008060006040848603121561134f57600080fd5b833561135a81611272565b9250602084013567ffffffffffffffff8082111561137757600080fd5b818601915086601f83011261138b57600080fd5b81358181111561139a57600080fd5b8760208260051b85010111156113af57600080fd5b6020830194508093505050509250925092565b6000602082840312156113d457600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115611404576114046113db565b500190565b6020808252818101527f507572636861736520776f756c6420657863656564206d617820737570706c79604082015260600190565b6000600019821415611452576114526113db565b5060010190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602c908201527f507572636861736520776f756c642065786365656420616c6c6f63617465642060408201526b707269766174652073616c6560a01b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561150257600080fd5b81516111ad81611272565b6000816000190483118215151615611527576115276113db565b50029056fea2646970667358221220ab02127806007230c261c4c0f44be79ea14c87eb2190ae30545a3efaeaece86164736f6c634300080a0033

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

000000000000000000000000f8ef0631aa8150aee8cfb4db3fa27e81d78df620

-----Decoded View---------------
Arg [0] : _nftAddress (address): 0xf8Ef0631aA8150aEE8cFb4Db3Fa27e81D78df620

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000f8ef0631aa8150aee8cfb4db3fa27e81d78df620


Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.