ETH Price: $3,295.67 (-3.62%)
Gas: 11 Gwei

Token

SuperGoblinsWTF (SGWTF)
 

Overview

Max Total Supply

111 SGWTF

Holders

12

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
badkidseatbacon.eth
Balance
5 SGWTF
0x60cf98bb2add6e4df5f2dc19e3da24e6ae14bc6b
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
SuperGoblinsWTF

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 6 : SuperGoblinsWTF.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Address.sol";



contract SuperGoblinsWTF is ERC721A, Ownable {
    uint256 public constant RESERVED_SUPPLY = 1;
    uint256 public constant MAX_SUPPLY = 2000;
    uint256 public constant MAX_PER_WALLET = 20;
    uint256 public constant MAX_FREE_PER_TXN = 5;
    uint256 public constant MAX_PER_TXN = 10;

    constructor() ERC721A("SuperGoblinsWTF", "SGWTF") {}

    /**
     * Public sale mechanism
     */
    bool public publicSale = false;
    uint256 public freeRedeemed = 0;
    uint256 public MINT_PRICE = .005 ether;
    uint256 public FREE_SUPPLY = 1000;

    bool public reserved = false;

    function setPublicSale(bool toggle) external onlyOwner {
        publicSale = toggle;
    }

    function increaseFreeSupply(uint256 amount) external onlyOwner {
        require(amount > FREE_SUPPLY);
        FREE_SUPPLY = amount;
    }

    function decreasePrice(uint256 price) external onlyOwner {
        require(price < MINT_PRICE);
        MINT_PRICE = price;
    }

    /**
     * Public minting
     */
    mapping(address => uint256) public publicAddressMintCount;

    function mintFree5pTxn20Total(uint256 _quantity) public payable {
        require(msg.sender == tx.origin);
        require(totalSupply() + _quantity <= MAX_SUPPLY, "Surpasses supply");
        require(
            publicAddressMintCount[msg.sender] + _quantity <= MAX_PER_WALLET,
            "Surpasses max per wallet"
        );
        require(_quantity <= MAX_FREE_PER_TXN, "Surpasses max free per txn");
        require(publicSale, "Public sale not started");
        require(
            freeRedeemed + _quantity <= FREE_SUPPLY,
            "Surpasses free supply"
        );

        publicAddressMintCount[msg.sender] += _quantity;
        freeRedeemed += _quantity;
        _safeMint(msg.sender, _quantity);
    }

    function mintPaid10Txn20Total(uint256 _quantity) public payable {
        require(msg.sender == tx.origin);
        require(totalSupply() + _quantity <= MAX_SUPPLY, "Surpasses supply");
        require(
            publicAddressMintCount[msg.sender] + _quantity <= MAX_PER_WALLET,
            "Surpasses max per wallet"
        );
        require(publicSale, "Public sale not started");
        require(_quantity <= MAX_PER_TXN, "Surpasses max per txn");
        require(msg.value == MINT_PRICE * _quantity, "Invalid price");
        publicAddressMintCount[msg.sender] += _quantity;
        _safeMint(msg.sender, _quantity);
    }

    function reserve() public onlyOwner {
        require(!reserved);
        reserved = true;
        _safeMint(msg.sender, RESERVED_SUPPLY);
    }

    /**
     * Base URI
     */
    string private baseURI;

    function setBaseURI(string memory baseURI_) external onlyOwner {
        baseURI = baseURI_;
    }

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

    /**
     * Withdrawal
     */
    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        Address.sendValue(payable(owner()), balance);
    }
}

File 2 of 6 : ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721A.sol';

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

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

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED | 
                BITMASK_NEXT_INITIALIZED;

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

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

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

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

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

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

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

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

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

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

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

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() {
        _transferOwnership(_msgSender());
    }

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

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

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

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

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

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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 5 of 6 : IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 6 of 6 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FREE_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FREE_PER_TXN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TXN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVED_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"decreasePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeRedeemed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"increaseFreeSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mintFree5pTxn20Total","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mintPaid10Txn20Total","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"publicAddressMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserved","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"toggle","type":"bool"}],"name":"setPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600860146101000a81548160ff02191690831515021790555060006009556611c37937e08000600a556103e8600b556000600c60006101000a81548160ff0219169083151502179055503480156200005d57600080fd5b506040518060400160405280600f81526020017f5375706572476f626c696e7357544600000000000000000000000000000000008152506040518060400160405280600581526020017f53475754460000000000000000000000000000000000000000000000000000008152508160029080519060200190620000e29291906200020d565b508060039080519060200190620000fb9291906200020d565b506200010c6200013a60201b60201c565b600081905550505062000134620001286200013f60201b60201c565b6200014760201b60201c565b62000322565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200021b90620002bd565b90600052602060002090601f0160209004810192826200023f57600085556200028b565b82601f106200025a57805160ff19168380011785556200028b565b828001600101855582156200028b579182015b828111156200028a5782518255916020019190600101906200026d565b5b5090506200029a91906200029e565b5090565b5b80821115620002b95760008160009055506001016200029f565b5090565b60006002820490506001821680620002d657607f821691505b60208210811415620002ed57620002ec620002f3565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6135d080620003326000396000f3fe60806040526004361061020f5760003560e01c80635aca1bb611610118578063a22cb465116100a0578063cd3293de1161006f578063cd3293de1461076c578063d6e2247614610783578063e985e9c51461079f578063f2fde38b146107dc578063fe60d12c146108055761020f565b8063a22cb465146106b2578063b88d4fde146106db578063c002d23d14610704578063c87b56dd1461072f5761020f565b80637ab13461116100e75780637ab13461146105ec5780638da5cb5b1461061557806395d89b41146106405780639858cf191461066b5780639db7e281146106965761020f565b80635aca1bb6146105325780636352211e1461055b57806370a0823114610598578063715018a6146105d55761020f565b806331a53e9a1161019b5780633ccfd60b1161016a5780633ccfd60b1461047357806342842e0e1461048a57806350dd9d9e146104b357806351b96d92146104de57806355f804b3146105095761020f565b806331a53e9a146103c757806332cb6b0c146103f257806333bc1c5c1461041d5780633bdd8745146104485761020f565b8063081812fc116101e2578063081812fc146102e2578063095ea7b31461031f5780630f2cdd6c1461034857806318160ddd1461037357806323b872dd1461039e5761020f565b806301ffc9a71461021457806306fdde031461025157806307e4d4801461027c5780630811e2c0146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190612a68565b610830565b6040516102489190612e38565b60405180910390f35b34801561025d57600080fd5b506102666108c2565b6040516102739190612e53565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e9190612898565b610954565b6040516102b09190612fd5565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db9190612afb565b61096c565b005b3480156102ee57600080fd5b5061030960048036038101906103049190612afb565b610a00565b6040516103169190612dd1565b60405180910390f35b34801561032b57600080fd5b5061034660048036038101906103419190612a03565b610a7c565b005b34801561035457600080fd5b5061035d610c23565b60405161036a9190612fd5565b60405180910390f35b34801561037f57600080fd5b50610388610c28565b6040516103959190612fd5565b60405180910390f35b3480156103aa57600080fd5b506103c560048036038101906103c091906128fd565b610c3f565b005b3480156103d357600080fd5b506103dc610c4f565b6040516103e99190612fd5565b60405180910390f35b3480156103fe57600080fd5b50610407610c54565b6040516104149190612fd5565b60405180910390f35b34801561042957600080fd5b50610432610c5a565b60405161043f9190612e38565b60405180910390f35b34801561045457600080fd5b5061045d610c6d565b60405161046a9190612fd5565b60405180910390f35b34801561047f57600080fd5b50610488610c72565b005b34801561049657600080fd5b506104b160048036038101906104ac91906128fd565b610d07565b005b3480156104bf57600080fd5b506104c8610d27565b6040516104d59190612fd5565b60405180910390f35b3480156104ea57600080fd5b506104f3610d2d565b6040516105009190612fd5565b60405180910390f35b34801561051557600080fd5b50610530600480360381019061052b9190612aba565b610d32565b005b34801561053e57600080fd5b5061055960048036038101906105549190612a3f565b610dc8565b005b34801561056757600080fd5b50610582600480360381019061057d9190612afb565b610e61565b60405161058f9190612dd1565b60405180910390f35b3480156105a457600080fd5b506105bf60048036038101906105ba9190612898565b610e73565b6040516105cc9190612fd5565b60405180910390f35b3480156105e157600080fd5b506105ea610f2c565b005b3480156105f857600080fd5b50610613600480360381019061060e9190612afb565b610fb4565b005b34801561062157600080fd5b5061062a611048565b6040516106379190612dd1565b60405180910390f35b34801561064c57600080fd5b50610655611072565b6040516106629190612e53565b60405180910390f35b34801561067757600080fd5b50610680611104565b60405161068d9190612fd5565b60405180910390f35b6106b060048036038101906106ab9190612afb565b61110a565b005b3480156106be57600080fd5b506106d960048036038101906106d491906129c7565b611388565b005b3480156106e757600080fd5b5061070260048036038101906106fd919061294c565b611500565b005b34801561071057600080fd5b50610719611573565b6040516107269190612fd5565b60405180910390f35b34801561073b57600080fd5b5061075660048036038101906107519190612afb565b611579565b6040516107639190612e53565b60405180910390f35b34801561077857600080fd5b50610781611618565b005b61079d60048036038101906107989190612afb565b6116d6565b005b3480156107ab57600080fd5b506107c660048036038101906107c191906128c1565b611938565b6040516107d39190612e38565b60405180910390f35b3480156107e857600080fd5b5061080360048036038101906107fe9190612898565b6119cc565b005b34801561081157600080fd5b5061081a611ac4565b6040516108279190612e38565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061088b57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108bb5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546108d19061322b565b80601f01602080910402602001604051908101604052809291908181526020018280546108fd9061322b565b801561094a5780601f1061091f5761010080835404028352916020019161094a565b820191906000526020600020905b81548152906001019060200180831161092d57829003601f168201915b5050505050905090565b600d6020528060005260406000206000915090505481565b610974611ad7565b73ffffffffffffffffffffffffffffffffffffffff16610992611048565b73ffffffffffffffffffffffffffffffffffffffff16146109e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109df90612f75565b60405180910390fd5b600b5481116109f657600080fd5b80600b8190555050565b6000610a0b82611adf565b610a41576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a8782611b3e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610aef576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b0e611c0c565b73ffffffffffffffffffffffffffffffffffffffff1614610b7157610b3a81610b35611c0c565b611938565b610b70576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b601481565b6000610c32611c14565b6001546000540303905090565b610c4a838383611c19565b505050565b600181565b6107d081565b600860149054906101000a900460ff1681565b600581565b610c7a611ad7565b73ffffffffffffffffffffffffffffffffffffffff16610c98611048565b73ffffffffffffffffffffffffffffffffffffffff1614610cee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce590612f75565b60405180910390fd5b6000479050610d04610cfe611048565b82611fc3565b50565b610d2283838360405180602001604052806000815250611500565b505050565b60095481565b600a81565b610d3a611ad7565b73ffffffffffffffffffffffffffffffffffffffff16610d58611048565b73ffffffffffffffffffffffffffffffffffffffff1614610dae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da590612f75565b60405180910390fd5b80600e9080519060200190610dc49291906126bc565b5050565b610dd0611ad7565b73ffffffffffffffffffffffffffffffffffffffff16610dee611048565b73ffffffffffffffffffffffffffffffffffffffff1614610e44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3b90612f75565b60405180910390fd5b80600860146101000a81548160ff02191690831515021790555050565b6000610e6c82611b3e565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610edb576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f34611ad7565b73ffffffffffffffffffffffffffffffffffffffff16610f52611048565b73ffffffffffffffffffffffffffffffffffffffff1614610fa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9f90612f75565b60405180910390fd5b610fb260006120b7565b565b610fbc611ad7565b73ffffffffffffffffffffffffffffffffffffffff16610fda611048565b73ffffffffffffffffffffffffffffffffffffffff1614611030576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102790612f75565b60405180910390fd5b600a54811061103e57600080fd5b80600a8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546110819061322b565b80601f01602080910402602001604051908101604052809291908181526020018280546110ad9061322b565b80156110fa5780601f106110cf576101008083540402835291602001916110fa565b820191906000526020600020905b8154815290600101906020018083116110dd57829003601f168201915b5050505050905090565b600b5481565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461114257600080fd5b6107d08161114e610c28565b61115891906130c5565b1115611199576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119090612fb5565b60405180910390fd5b601481600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111e691906130c5565b1115611227576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121e90612f55565b60405180910390fd5b600581111561126b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126290612ed5565b60405180910390fd5b600860149054906101000a900460ff166112ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b190612ef5565b60405180910390fd5b600b54816009546112cb91906130c5565b111561130c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130390612e75565b60405180910390fd5b80600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461135b91906130c5565b92505081905550806009600082825461137491906130c5565b92505081905550611385338261217d565b50565b611390611c0c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113f5576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611402611c0c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114af611c0c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114f49190612e38565b60405180910390a35050565b61150b848484611c19565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461156d576115368484848461219b565b61156c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600a5481565b606061158482611adf565b6115ba576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006115c46122fb565b90506000815114156115e55760405180602001604052806000815250611610565b806115ef8461238d565b604051602001611600929190612d98565b6040516020818303038152906040525b915050919050565b611620611ad7565b73ffffffffffffffffffffffffffffffffffffffff1661163e611048565b73ffffffffffffffffffffffffffffffffffffffff1614611694576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168b90612f75565b60405180910390fd5b600c60009054906101000a900460ff16156116ae57600080fd5b6001600c60006101000a81548160ff0219169083151502179055506116d433600161217d565b565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461170e57600080fd5b6107d08161171a610c28565b61172491906130c5565b1115611765576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175c90612fb5565b60405180910390fd5b601481600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117b291906130c5565b11156117f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ea90612f55565b60405180910390fd5b600860149054906101000a900460ff16611842576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183990612ef5565b60405180910390fd5b600a811115611886576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187d90612e95565b60405180910390fd5b80600a54611894919061311b565b34146118d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cc90612f95565b60405180910390fd5b80600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461192491906130c5565b92505081905550611935338261217d565b50565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6119d4611ad7565b73ffffffffffffffffffffffffffffffffffffffff166119f2611048565b73ffffffffffffffffffffffffffffffffffffffff1614611a48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3f90612f75565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ab8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aaf90612eb5565b60405180910390fd5b611ac1816120b7565b50565b600c60009054906101000a900460ff1681565b600033905090565b600081611aea611c14565b11158015611af9575060005482105b8015611b37575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60008082905080611b4d611c14565b11611bd557600054811015611bd45760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611bd2575b6000811415611bc8576004600083600190039350838152602001908152602001600020549050611b9d565b8092505050611c07565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b6000611c2482611b3e565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611c8b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611cac611c0c565b73ffffffffffffffffffffffffffffffffffffffff161480611cdb5750611cda85611cd5611c0c565b611938565b5b80611d205750611ce9611c0c565b73ffffffffffffffffffffffffffffffffffffffff16611d0884610a00565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611d59576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611dc0576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611dcd85858560016123e7565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b611eca866123ed565b1717600460008581526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000083161415611f54576000600184019050600060046000838152602001908152602001600020541415611f52576000548114611f51578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611fbc85858560016123f7565b5050505050565b80471015612006576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ffd90612f35565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161202c90612dbc565b60006040518083038185875af1925050503d8060008114612069576040519150601f19603f3d011682016040523d82523d6000602084013e61206e565b606091505b50509050806120b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a990612f15565b60405180910390fd5b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6121978282604051806020016040528060008152506123fd565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026121c1611c0c565b8786866040518563ffffffff1660e01b81526004016121e39493929190612dec565b602060405180830381600087803b1580156121fd57600080fd5b505af192505050801561222e57506040513d601f19601f8201168201806040525081019061222b9190612a91565b60015b6122a8573d806000811461225e576040519150601f19603f3d011682016040523d82523d6000602084013e612263565b606091505b506000815114156122a0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600e805461230a9061322b565b80601f01602080910402602001604051908101604052809291908181526020018280546123369061322b565b80156123835780601f1061235857610100808354040283529160200191612383565b820191906000526020600020905b81548152906001019060200180831161236657829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b80156123d357600183039250600a81066030018353600a810490506123b3565b508181036020830392508083525050919050565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561246a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008314156124a5576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6124b260008583866123e7565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1612517600185146126b2565b901b60a042901b612527866123ed565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b1461262b575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46125db600087848060010195508761219b565b612611576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821061256c57826000541461262657600080fd5b612696565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061262c575b8160008190555050506126ac60008583866123f7565b50505050565b6000819050919050565b8280546126c89061322b565b90600052602060002090601f0160209004810192826126ea5760008555612731565b82601f1061270357805160ff1916838001178555612731565b82800160010185558215612731579182015b82811115612730578251825591602001919060010190612715565b5b50905061273e9190612742565b5090565b5b8082111561275b576000816000905550600101612743565b5090565b600061277261276d84613015565b612ff0565b90508281526020810184848401111561278a57600080fd5b6127958482856131e9565b509392505050565b60006127b06127ab84613046565b612ff0565b9050828152602081018484840111156127c857600080fd5b6127d38482856131e9565b509392505050565b6000813590506127ea8161353e565b92915050565b6000813590506127ff81613555565b92915050565b6000813590506128148161356c565b92915050565b6000815190506128298161356c565b92915050565b600082601f83011261284057600080fd5b813561285084826020860161275f565b91505092915050565b600082601f83011261286a57600080fd5b813561287a84826020860161279d565b91505092915050565b60008135905061289281613583565b92915050565b6000602082840312156128aa57600080fd5b60006128b8848285016127db565b91505092915050565b600080604083850312156128d457600080fd5b60006128e2858286016127db565b92505060206128f3858286016127db565b9150509250929050565b60008060006060848603121561291257600080fd5b6000612920868287016127db565b9350506020612931868287016127db565b925050604061294286828701612883565b9150509250925092565b6000806000806080858703121561296257600080fd5b6000612970878288016127db565b9450506020612981878288016127db565b935050604061299287828801612883565b925050606085013567ffffffffffffffff8111156129af57600080fd5b6129bb8782880161282f565b91505092959194509250565b600080604083850312156129da57600080fd5b60006129e8858286016127db565b92505060206129f9858286016127f0565b9150509250929050565b60008060408385031215612a1657600080fd5b6000612a24858286016127db565b9250506020612a3585828601612883565b9150509250929050565b600060208284031215612a5157600080fd5b6000612a5f848285016127f0565b91505092915050565b600060208284031215612a7a57600080fd5b6000612a8884828501612805565b91505092915050565b600060208284031215612aa357600080fd5b6000612ab18482850161281a565b91505092915050565b600060208284031215612acc57600080fd5b600082013567ffffffffffffffff811115612ae657600080fd5b612af284828501612859565b91505092915050565b600060208284031215612b0d57600080fd5b6000612b1b84828501612883565b91505092915050565b612b2d81613175565b82525050565b612b3c81613187565b82525050565b6000612b4d82613077565b612b57818561308d565b9350612b678185602086016131f8565b612b708161331b565b840191505092915050565b6000612b8682613082565b612b9081856130a9565b9350612ba08185602086016131f8565b612ba98161331b565b840191505092915050565b6000612bbf82613082565b612bc981856130ba565b9350612bd98185602086016131f8565b80840191505092915050565b6000612bf26015836130a9565b9150612bfd8261332c565b602082019050919050565b6000612c156015836130a9565b9150612c2082613355565b602082019050919050565b6000612c386026836130a9565b9150612c438261337e565b604082019050919050565b6000612c5b601a836130a9565b9150612c66826133cd565b602082019050919050565b6000612c7e6017836130a9565b9150612c89826133f6565b602082019050919050565b6000612ca1603a836130a9565b9150612cac8261341f565b604082019050919050565b6000612cc4601d836130a9565b9150612ccf8261346e565b602082019050919050565b6000612ce76018836130a9565b9150612cf282613497565b602082019050919050565b6000612d0a6020836130a9565b9150612d15826134c0565b602082019050919050565b6000612d2d60008361309e565b9150612d38826134e9565b600082019050919050565b6000612d50600d836130a9565b9150612d5b826134ec565b602082019050919050565b6000612d736010836130a9565b9150612d7e82613515565b602082019050919050565b612d92816131df565b82525050565b6000612da48285612bb4565b9150612db08284612bb4565b91508190509392505050565b6000612dc782612d20565b9150819050919050565b6000602082019050612de66000830184612b24565b92915050565b6000608082019050612e016000830187612b24565b612e0e6020830186612b24565b612e1b6040830185612d89565b8181036060830152612e2d8184612b42565b905095945050505050565b6000602082019050612e4d6000830184612b33565b92915050565b60006020820190508181036000830152612e6d8184612b7b565b905092915050565b60006020820190508181036000830152612e8e81612be5565b9050919050565b60006020820190508181036000830152612eae81612c08565b9050919050565b60006020820190508181036000830152612ece81612c2b565b9050919050565b60006020820190508181036000830152612eee81612c4e565b9050919050565b60006020820190508181036000830152612f0e81612c71565b9050919050565b60006020820190508181036000830152612f2e81612c94565b9050919050565b60006020820190508181036000830152612f4e81612cb7565b9050919050565b60006020820190508181036000830152612f6e81612cda565b9050919050565b60006020820190508181036000830152612f8e81612cfd565b9050919050565b60006020820190508181036000830152612fae81612d43565b9050919050565b60006020820190508181036000830152612fce81612d66565b9050919050565b6000602082019050612fea6000830184612d89565b92915050565b6000612ffa61300b565b9050613006828261325d565b919050565b6000604051905090565b600067ffffffffffffffff8211156130305761302f6132ec565b5b6130398261331b565b9050602081019050919050565b600067ffffffffffffffff821115613061576130606132ec565b5b61306a8261331b565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006130d0826131df565b91506130db836131df565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156131105761310f61328e565b5b828201905092915050565b6000613126826131df565b9150613131836131df565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561316a5761316961328e565b5b828202905092915050565b6000613180826131bf565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156132165780820151818401526020810190506131fb565b83811115613225576000848401525b50505050565b6000600282049050600182168061324357607f821691505b60208210811415613257576132566132bd565b5b50919050565b6132668261331b565b810181811067ffffffffffffffff82111715613285576132846132ec565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f537572706173736573206672656520737570706c790000000000000000000000600082015250565b7f537572706173736573206d6178207065722074786e0000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f537572706173736573206d61782066726565207065722074786e000000000000600082015250565b7f5075626c69632073616c65206e6f742073746172746564000000000000000000600082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f537572706173736573206d6178207065722077616c6c65740000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b7f496e76616c696420707269636500000000000000000000000000000000000000600082015250565b7f53757270617373657320737570706c7900000000000000000000000000000000600082015250565b61354781613175565b811461355257600080fd5b50565b61355e81613187565b811461356957600080fd5b50565b61357581613193565b811461358057600080fd5b50565b61358c816131df565b811461359757600080fd5b5056fea2646970667358221220573e94f53f65a05eaa7b7fc1ffd90f7b5fc708e112b9132c89b1a0bc2f607daf64736f6c63430008040033

Deployed Bytecode

0x60806040526004361061020f5760003560e01c80635aca1bb611610118578063a22cb465116100a0578063cd3293de1161006f578063cd3293de1461076c578063d6e2247614610783578063e985e9c51461079f578063f2fde38b146107dc578063fe60d12c146108055761020f565b8063a22cb465146106b2578063b88d4fde146106db578063c002d23d14610704578063c87b56dd1461072f5761020f565b80637ab13461116100e75780637ab13461146105ec5780638da5cb5b1461061557806395d89b41146106405780639858cf191461066b5780639db7e281146106965761020f565b80635aca1bb6146105325780636352211e1461055b57806370a0823114610598578063715018a6146105d55761020f565b806331a53e9a1161019b5780633ccfd60b1161016a5780633ccfd60b1461047357806342842e0e1461048a57806350dd9d9e146104b357806351b96d92146104de57806355f804b3146105095761020f565b806331a53e9a146103c757806332cb6b0c146103f257806333bc1c5c1461041d5780633bdd8745146104485761020f565b8063081812fc116101e2578063081812fc146102e2578063095ea7b31461031f5780630f2cdd6c1461034857806318160ddd1461037357806323b872dd1461039e5761020f565b806301ffc9a71461021457806306fdde031461025157806307e4d4801461027c5780630811e2c0146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190612a68565b610830565b6040516102489190612e38565b60405180910390f35b34801561025d57600080fd5b506102666108c2565b6040516102739190612e53565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e9190612898565b610954565b6040516102b09190612fd5565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db9190612afb565b61096c565b005b3480156102ee57600080fd5b5061030960048036038101906103049190612afb565b610a00565b6040516103169190612dd1565b60405180910390f35b34801561032b57600080fd5b5061034660048036038101906103419190612a03565b610a7c565b005b34801561035457600080fd5b5061035d610c23565b60405161036a9190612fd5565b60405180910390f35b34801561037f57600080fd5b50610388610c28565b6040516103959190612fd5565b60405180910390f35b3480156103aa57600080fd5b506103c560048036038101906103c091906128fd565b610c3f565b005b3480156103d357600080fd5b506103dc610c4f565b6040516103e99190612fd5565b60405180910390f35b3480156103fe57600080fd5b50610407610c54565b6040516104149190612fd5565b60405180910390f35b34801561042957600080fd5b50610432610c5a565b60405161043f9190612e38565b60405180910390f35b34801561045457600080fd5b5061045d610c6d565b60405161046a9190612fd5565b60405180910390f35b34801561047f57600080fd5b50610488610c72565b005b34801561049657600080fd5b506104b160048036038101906104ac91906128fd565b610d07565b005b3480156104bf57600080fd5b506104c8610d27565b6040516104d59190612fd5565b60405180910390f35b3480156104ea57600080fd5b506104f3610d2d565b6040516105009190612fd5565b60405180910390f35b34801561051557600080fd5b50610530600480360381019061052b9190612aba565b610d32565b005b34801561053e57600080fd5b5061055960048036038101906105549190612a3f565b610dc8565b005b34801561056757600080fd5b50610582600480360381019061057d9190612afb565b610e61565b60405161058f9190612dd1565b60405180910390f35b3480156105a457600080fd5b506105bf60048036038101906105ba9190612898565b610e73565b6040516105cc9190612fd5565b60405180910390f35b3480156105e157600080fd5b506105ea610f2c565b005b3480156105f857600080fd5b50610613600480360381019061060e9190612afb565b610fb4565b005b34801561062157600080fd5b5061062a611048565b6040516106379190612dd1565b60405180910390f35b34801561064c57600080fd5b50610655611072565b6040516106629190612e53565b60405180910390f35b34801561067757600080fd5b50610680611104565b60405161068d9190612fd5565b60405180910390f35b6106b060048036038101906106ab9190612afb565b61110a565b005b3480156106be57600080fd5b506106d960048036038101906106d491906129c7565b611388565b005b3480156106e757600080fd5b5061070260048036038101906106fd919061294c565b611500565b005b34801561071057600080fd5b50610719611573565b6040516107269190612fd5565b60405180910390f35b34801561073b57600080fd5b5061075660048036038101906107519190612afb565b611579565b6040516107639190612e53565b60405180910390f35b34801561077857600080fd5b50610781611618565b005b61079d60048036038101906107989190612afb565b6116d6565b005b3480156107ab57600080fd5b506107c660048036038101906107c191906128c1565b611938565b6040516107d39190612e38565b60405180910390f35b3480156107e857600080fd5b5061080360048036038101906107fe9190612898565b6119cc565b005b34801561081157600080fd5b5061081a611ac4565b6040516108279190612e38565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061088b57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108bb5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546108d19061322b565b80601f01602080910402602001604051908101604052809291908181526020018280546108fd9061322b565b801561094a5780601f1061091f5761010080835404028352916020019161094a565b820191906000526020600020905b81548152906001019060200180831161092d57829003601f168201915b5050505050905090565b600d6020528060005260406000206000915090505481565b610974611ad7565b73ffffffffffffffffffffffffffffffffffffffff16610992611048565b73ffffffffffffffffffffffffffffffffffffffff16146109e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109df90612f75565b60405180910390fd5b600b5481116109f657600080fd5b80600b8190555050565b6000610a0b82611adf565b610a41576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a8782611b3e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610aef576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b0e611c0c565b73ffffffffffffffffffffffffffffffffffffffff1614610b7157610b3a81610b35611c0c565b611938565b610b70576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b601481565b6000610c32611c14565b6001546000540303905090565b610c4a838383611c19565b505050565b600181565b6107d081565b600860149054906101000a900460ff1681565b600581565b610c7a611ad7565b73ffffffffffffffffffffffffffffffffffffffff16610c98611048565b73ffffffffffffffffffffffffffffffffffffffff1614610cee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce590612f75565b60405180910390fd5b6000479050610d04610cfe611048565b82611fc3565b50565b610d2283838360405180602001604052806000815250611500565b505050565b60095481565b600a81565b610d3a611ad7565b73ffffffffffffffffffffffffffffffffffffffff16610d58611048565b73ffffffffffffffffffffffffffffffffffffffff1614610dae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da590612f75565b60405180910390fd5b80600e9080519060200190610dc49291906126bc565b5050565b610dd0611ad7565b73ffffffffffffffffffffffffffffffffffffffff16610dee611048565b73ffffffffffffffffffffffffffffffffffffffff1614610e44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3b90612f75565b60405180910390fd5b80600860146101000a81548160ff02191690831515021790555050565b6000610e6c82611b3e565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610edb576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f34611ad7565b73ffffffffffffffffffffffffffffffffffffffff16610f52611048565b73ffffffffffffffffffffffffffffffffffffffff1614610fa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9f90612f75565b60405180910390fd5b610fb260006120b7565b565b610fbc611ad7565b73ffffffffffffffffffffffffffffffffffffffff16610fda611048565b73ffffffffffffffffffffffffffffffffffffffff1614611030576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102790612f75565b60405180910390fd5b600a54811061103e57600080fd5b80600a8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546110819061322b565b80601f01602080910402602001604051908101604052809291908181526020018280546110ad9061322b565b80156110fa5780601f106110cf576101008083540402835291602001916110fa565b820191906000526020600020905b8154815290600101906020018083116110dd57829003601f168201915b5050505050905090565b600b5481565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461114257600080fd5b6107d08161114e610c28565b61115891906130c5565b1115611199576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119090612fb5565b60405180910390fd5b601481600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111e691906130c5565b1115611227576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121e90612f55565b60405180910390fd5b600581111561126b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126290612ed5565b60405180910390fd5b600860149054906101000a900460ff166112ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b190612ef5565b60405180910390fd5b600b54816009546112cb91906130c5565b111561130c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130390612e75565b60405180910390fd5b80600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461135b91906130c5565b92505081905550806009600082825461137491906130c5565b92505081905550611385338261217d565b50565b611390611c0c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113f5576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611402611c0c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114af611c0c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114f49190612e38565b60405180910390a35050565b61150b848484611c19565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461156d576115368484848461219b565b61156c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600a5481565b606061158482611adf565b6115ba576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006115c46122fb565b90506000815114156115e55760405180602001604052806000815250611610565b806115ef8461238d565b604051602001611600929190612d98565b6040516020818303038152906040525b915050919050565b611620611ad7565b73ffffffffffffffffffffffffffffffffffffffff1661163e611048565b73ffffffffffffffffffffffffffffffffffffffff1614611694576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168b90612f75565b60405180910390fd5b600c60009054906101000a900460ff16156116ae57600080fd5b6001600c60006101000a81548160ff0219169083151502179055506116d433600161217d565b565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461170e57600080fd5b6107d08161171a610c28565b61172491906130c5565b1115611765576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175c90612fb5565b60405180910390fd5b601481600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117b291906130c5565b11156117f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ea90612f55565b60405180910390fd5b600860149054906101000a900460ff16611842576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183990612ef5565b60405180910390fd5b600a811115611886576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187d90612e95565b60405180910390fd5b80600a54611894919061311b565b34146118d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cc90612f95565b60405180910390fd5b80600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461192491906130c5565b92505081905550611935338261217d565b50565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6119d4611ad7565b73ffffffffffffffffffffffffffffffffffffffff166119f2611048565b73ffffffffffffffffffffffffffffffffffffffff1614611a48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3f90612f75565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ab8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aaf90612eb5565b60405180910390fd5b611ac1816120b7565b50565b600c60009054906101000a900460ff1681565b600033905090565b600081611aea611c14565b11158015611af9575060005482105b8015611b37575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60008082905080611b4d611c14565b11611bd557600054811015611bd45760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611bd2575b6000811415611bc8576004600083600190039350838152602001908152602001600020549050611b9d565b8092505050611c07565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b6000611c2482611b3e565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611c8b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611cac611c0c565b73ffffffffffffffffffffffffffffffffffffffff161480611cdb5750611cda85611cd5611c0c565b611938565b5b80611d205750611ce9611c0c565b73ffffffffffffffffffffffffffffffffffffffff16611d0884610a00565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611d59576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611dc0576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611dcd85858560016123e7565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b611eca866123ed565b1717600460008581526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000083161415611f54576000600184019050600060046000838152602001908152602001600020541415611f52576000548114611f51578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611fbc85858560016123f7565b5050505050565b80471015612006576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ffd90612f35565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161202c90612dbc565b60006040518083038185875af1925050503d8060008114612069576040519150601f19603f3d011682016040523d82523d6000602084013e61206e565b606091505b50509050806120b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a990612f15565b60405180910390fd5b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6121978282604051806020016040528060008152506123fd565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026121c1611c0c565b8786866040518563ffffffff1660e01b81526004016121e39493929190612dec565b602060405180830381600087803b1580156121fd57600080fd5b505af192505050801561222e57506040513d601f19601f8201168201806040525081019061222b9190612a91565b60015b6122a8573d806000811461225e576040519150601f19603f3d011682016040523d82523d6000602084013e612263565b606091505b506000815114156122a0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600e805461230a9061322b565b80601f01602080910402602001604051908101604052809291908181526020018280546123369061322b565b80156123835780601f1061235857610100808354040283529160200191612383565b820191906000526020600020905b81548152906001019060200180831161236657829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b80156123d357600183039250600a81066030018353600a810490506123b3565b508181036020830392508083525050919050565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561246a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008314156124a5576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6124b260008583866123e7565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1612517600185146126b2565b901b60a042901b612527866123ed565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b1461262b575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46125db600087848060010195508761219b565b612611576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821061256c57826000541461262657600080fd5b612696565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061262c575b8160008190555050506126ac60008583866123f7565b50505050565b6000819050919050565b8280546126c89061322b565b90600052602060002090601f0160209004810192826126ea5760008555612731565b82601f1061270357805160ff1916838001178555612731565b82800160010185558215612731579182015b82811115612730578251825591602001919060010190612715565b5b50905061273e9190612742565b5090565b5b8082111561275b576000816000905550600101612743565b5090565b600061277261276d84613015565b612ff0565b90508281526020810184848401111561278a57600080fd5b6127958482856131e9565b509392505050565b60006127b06127ab84613046565b612ff0565b9050828152602081018484840111156127c857600080fd5b6127d38482856131e9565b509392505050565b6000813590506127ea8161353e565b92915050565b6000813590506127ff81613555565b92915050565b6000813590506128148161356c565b92915050565b6000815190506128298161356c565b92915050565b600082601f83011261284057600080fd5b813561285084826020860161275f565b91505092915050565b600082601f83011261286a57600080fd5b813561287a84826020860161279d565b91505092915050565b60008135905061289281613583565b92915050565b6000602082840312156128aa57600080fd5b60006128b8848285016127db565b91505092915050565b600080604083850312156128d457600080fd5b60006128e2858286016127db565b92505060206128f3858286016127db565b9150509250929050565b60008060006060848603121561291257600080fd5b6000612920868287016127db565b9350506020612931868287016127db565b925050604061294286828701612883565b9150509250925092565b6000806000806080858703121561296257600080fd5b6000612970878288016127db565b9450506020612981878288016127db565b935050604061299287828801612883565b925050606085013567ffffffffffffffff8111156129af57600080fd5b6129bb8782880161282f565b91505092959194509250565b600080604083850312156129da57600080fd5b60006129e8858286016127db565b92505060206129f9858286016127f0565b9150509250929050565b60008060408385031215612a1657600080fd5b6000612a24858286016127db565b9250506020612a3585828601612883565b9150509250929050565b600060208284031215612a5157600080fd5b6000612a5f848285016127f0565b91505092915050565b600060208284031215612a7a57600080fd5b6000612a8884828501612805565b91505092915050565b600060208284031215612aa357600080fd5b6000612ab18482850161281a565b91505092915050565b600060208284031215612acc57600080fd5b600082013567ffffffffffffffff811115612ae657600080fd5b612af284828501612859565b91505092915050565b600060208284031215612b0d57600080fd5b6000612b1b84828501612883565b91505092915050565b612b2d81613175565b82525050565b612b3c81613187565b82525050565b6000612b4d82613077565b612b57818561308d565b9350612b678185602086016131f8565b612b708161331b565b840191505092915050565b6000612b8682613082565b612b9081856130a9565b9350612ba08185602086016131f8565b612ba98161331b565b840191505092915050565b6000612bbf82613082565b612bc981856130ba565b9350612bd98185602086016131f8565b80840191505092915050565b6000612bf26015836130a9565b9150612bfd8261332c565b602082019050919050565b6000612c156015836130a9565b9150612c2082613355565b602082019050919050565b6000612c386026836130a9565b9150612c438261337e565b604082019050919050565b6000612c5b601a836130a9565b9150612c66826133cd565b602082019050919050565b6000612c7e6017836130a9565b9150612c89826133f6565b602082019050919050565b6000612ca1603a836130a9565b9150612cac8261341f565b604082019050919050565b6000612cc4601d836130a9565b9150612ccf8261346e565b602082019050919050565b6000612ce76018836130a9565b9150612cf282613497565b602082019050919050565b6000612d0a6020836130a9565b9150612d15826134c0565b602082019050919050565b6000612d2d60008361309e565b9150612d38826134e9565b600082019050919050565b6000612d50600d836130a9565b9150612d5b826134ec565b602082019050919050565b6000612d736010836130a9565b9150612d7e82613515565b602082019050919050565b612d92816131df565b82525050565b6000612da48285612bb4565b9150612db08284612bb4565b91508190509392505050565b6000612dc782612d20565b9150819050919050565b6000602082019050612de66000830184612b24565b92915050565b6000608082019050612e016000830187612b24565b612e0e6020830186612b24565b612e1b6040830185612d89565b8181036060830152612e2d8184612b42565b905095945050505050565b6000602082019050612e4d6000830184612b33565b92915050565b60006020820190508181036000830152612e6d8184612b7b565b905092915050565b60006020820190508181036000830152612e8e81612be5565b9050919050565b60006020820190508181036000830152612eae81612c08565b9050919050565b60006020820190508181036000830152612ece81612c2b565b9050919050565b60006020820190508181036000830152612eee81612c4e565b9050919050565b60006020820190508181036000830152612f0e81612c71565b9050919050565b60006020820190508181036000830152612f2e81612c94565b9050919050565b60006020820190508181036000830152612f4e81612cb7565b9050919050565b60006020820190508181036000830152612f6e81612cda565b9050919050565b60006020820190508181036000830152612f8e81612cfd565b9050919050565b60006020820190508181036000830152612fae81612d43565b9050919050565b60006020820190508181036000830152612fce81612d66565b9050919050565b6000602082019050612fea6000830184612d89565b92915050565b6000612ffa61300b565b9050613006828261325d565b919050565b6000604051905090565b600067ffffffffffffffff8211156130305761302f6132ec565b5b6130398261331b565b9050602081019050919050565b600067ffffffffffffffff821115613061576130606132ec565b5b61306a8261331b565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006130d0826131df565b91506130db836131df565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156131105761310f61328e565b5b828201905092915050565b6000613126826131df565b9150613131836131df565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561316a5761316961328e565b5b828202905092915050565b6000613180826131bf565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156132165780820151818401526020810190506131fb565b83811115613225576000848401525b50505050565b6000600282049050600182168061324357607f821691505b60208210811415613257576132566132bd565b5b50919050565b6132668261331b565b810181811067ffffffffffffffff82111715613285576132846132ec565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f537572706173736573206672656520737570706c790000000000000000000000600082015250565b7f537572706173736573206d6178207065722074786e0000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f537572706173736573206d61782066726565207065722074786e000000000000600082015250565b7f5075626c69632073616c65206e6f742073746172746564000000000000000000600082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f537572706173736573206d6178207065722077616c6c65740000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b7f496e76616c696420707269636500000000000000000000000000000000000000600082015250565b7f53757270617373657320737570706c7900000000000000000000000000000000600082015250565b61354781613175565b811461355257600080fd5b50565b61355e81613187565b811461356957600080fd5b50565b61357581613193565b811461358057600080fd5b50565b61358c816131df565b811461359757600080fd5b5056fea2646970667358221220573e94f53f65a05eaa7b7fc1ffd90f7b5fc708e112b9132c89b1a0bc2f607daf64736f6c63430008040033

Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.