Contract Address Details

0xabA33B273DC26DB520C46C95618B9Aa6465B92EB

Token
DogePunk (DogePunk)
Creator
0xe55e81–c99df9 at 0xe5159f–4e19bb
Balance
100 Doge
Tokens
Fetching tokens...
Transactions
1,641 Transactions
Transfers
973 Transfers
Gas Used
165,686,771
Last Balance Update
27502984
Contract name:
DogePunkNFT




Optimization enabled
false
Compiler version
v0.8.12+commit.f00d7308




EVM Version
default




Verified at
2022-08-17T11:26:11.282501Z

Constructor Arguments

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000043697066733a2f2f6261667962656967326d64347870796b3275327565746b36336d77626f326934626834787a706e726e6b6f6b70746a6675357065726d6e7a636e6d2f0000000000000000000000000000000000000000000000000000000000

Arg [0] (string) : ipfs://bafybeig2md4xpyk2u2uetk63mwbo2i4bh4xzpnrnkokptjfu5permnzcnm/

              

Contract source code

// File: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: dogepunk.sol

//SPDX-License-Identifier: MIT

pragma solidity >=0.7.0 <0.9.0;





pragma solidity >=0.7.0 <0.9.0;

contract DogePunkNFT is ERC721A, Ownable {

  /** ERRORS **/
  error ExceedsMaxSupply();
  error InvalidAmount();
  error FreeMintOver();
  error ExceedsWalletLimit();
  error InsufficientValue();
  error TokenNotFound();
  error ContractMint();
  error SaleInactive();

  using Strings for uint256;

  uint256 public cost = 100 ether;
  uint256 public maxSupply = 10000;
  uint256 public maxMintAmountPerTx = 30;
  uint256 public freeMaxMintPerWallet = 1;

  uint256 public FREE_MINT_MAX = 1000;
  address public DogePunkToken = 0x10AA87CAb2Bd08098cA4c2d2754E5A7969890ADb;
  bool public saleActive = false;
  bool public revealed = true;
  
  mapping(address => uint256) public freeWallets;

  string _baseTokenURI;

  constructor(string memory baseURI) ERC721A("DogePunk", "DogePunk") payable {
      _baseTokenURI = baseURI;
  }

  modifier mintCompliance(uint256 _mintAmount) {
    if (!saleActive) revert SaleInactive();
    if (msg.sender != tx.origin) revert ContractMint();
    if (totalSupply() + _mintAmount > maxSupply) revert ExceedsMaxSupply();
    if (_mintAmount < 1 || _mintAmount > maxMintAmountPerTx) revert InvalidAmount();
    _;
  }

  function freeMint(uint256 _mintAmount) public mintCompliance(_mintAmount) {
    if (!isFreeMint()) revert FreeMintOver();
    if (freeWallets[msg.sender] + _mintAmount > freeMaxMintPerWallet) revert ExceedsWalletLimit();
    unchecked { freeWallets[msg.sender] += _mintAmount; }

    _safeMint(msg.sender, _mintAmount);
    IERC20(DogePunkToken).transfer(msg.sender, (_mintAmount * 500000 * 1e18));
  }

  function mint(uint256 _mintAmount)
    external
    payable
    mintCompliance(_mintAmount)
  {
    if (msg.value < (cost * _mintAmount)) revert InsufficientValue();
    _safeMint(msg.sender, _mintAmount);
    IERC20(DogePunkToken).transfer(msg.sender, (_mintAmount * 5000000 * 1e18));
  }

  function _startTokenId()
      internal
      view
      virtual
      override returns (uint256) 
  {
      return 0;
  }

  function isFreeMint() public view returns (bool) {
    return totalSupply() < FREE_MINT_MAX;
  }

  function testmint(uint256 _mintAmount, address _receiver) public onlyOwner {
    _safeMint(_receiver, _mintAmount);
  }

  function setCost(uint256 _cost) public onlyOwner {
    cost = _cost;
  }
 
  function setMaxSupply(uint256 _maxSupply) external onlyOwner {
    maxSupply = _maxSupply;
  }

  function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx = _maxMintAmountPerTx;
  }
  
  function toggleSaleState() public onlyOwner {
    saleActive = !saleActive;
  }

  function setMaxFreeMint(uint256 _max) public onlyOwner {
    FREE_MINT_MAX = _max;
  }

  function setMaxFreeMintPerWallet(uint256 _max) public onlyOwner {
    freeMaxMintPerWallet = _max;
  }

  function withdraw() public onlyOwner {
    payable(owner()).transfer(address(this).balance);
  }

  function rescueERC20(address tokenAddress, uint256 amount) external onlyOwner{
        IERC20(tokenAddress).transfer(owner(), amount);
    }

  /** METADATA */
  function _baseURI() internal view virtual override returns (string memory) {
    return _baseTokenURI;
  }

  function setBaseURI(string calldata baseURI) external onlyOwner {
    _baseTokenURI = baseURI;
  }

  function setRevealed(bool state) public onlyOwner {
      revealed = state;
  }

  function tokenURI(uint256 _tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    if (!_exists(_tokenId)) revert TokenNotFound();

    if (!revealed) return _baseURI();
    return string(abi.encodePacked(_baseURI(), _tokenId.toString(), ".json"));
  }

}
        

Contract ABI

[{"type":"constructor","stateMutability":"payable","inputs":[{"type":"string","name":"baseURI","internalType":"string"}]},{"type":"error","name":"ApprovalCallerNotOwnerNorApproved","inputs":[]},{"type":"error","name":"ApprovalQueryForNonexistentToken","inputs":[]},{"type":"error","name":"ApprovalToCurrentOwner","inputs":[]},{"type":"error","name":"ApproveToCaller","inputs":[]},{"type":"error","name":"BalanceQueryForZeroAddress","inputs":[]},{"type":"error","name":"ContractMint","inputs":[]},{"type":"error","name":"ExceedsMaxSupply","inputs":[]},{"type":"error","name":"ExceedsWalletLimit","inputs":[]},{"type":"error","name":"FreeMintOver","inputs":[]},{"type":"error","name":"InsufficientValue","inputs":[]},{"type":"error","name":"InvalidAmount","inputs":[]},{"type":"error","name":"MintToZeroAddress","inputs":[]},{"type":"error","name":"MintZeroQuantity","inputs":[]},{"type":"error","name":"OwnerQueryForNonexistentToken","inputs":[]},{"type":"error","name":"SaleInactive","inputs":[]},{"type":"error","name":"TokenNotFound","inputs":[]},{"type":"error","name":"TransferCallerNotOwnerNorApproved","inputs":[]},{"type":"error","name":"TransferFromIncorrectOwner","inputs":[]},{"type":"error","name":"TransferToNonERC721ReceiverImplementer","inputs":[]},{"type":"error","name":"TransferToZeroAddress","inputs":[]},{"type":"error","name":"URIQueryForNonexistentToken","inputs":[]},{"type":"event","name":"Approval","inputs":[{"type":"address","name":"owner","internalType":"address","indexed":true},{"type":"address","name":"approved","internalType":"address","indexed":true},{"type":"uint256","name":"tokenId","internalType":"uint256","indexed":true}],"anonymous":false},{"type":"event","name":"ApprovalForAll","inputs":[{"type":"address","name":"owner","internalType":"address","indexed":true},{"type":"address","name":"operator","internalType":"address","indexed":true},{"type":"bool","name":"approved","internalType":"bool","indexed":false}],"anonymous":false},{"type":"event","name":"OwnershipTransferred","inputs":[{"type":"address","name":"previousOwner","internalType":"address","indexed":true},{"type":"address","name":"newOwner","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"Transfer","inputs":[{"type":"address","name":"from","internalType":"address","indexed":true},{"type":"address","name":"to","internalType":"address","indexed":true},{"type":"uint256","name":"tokenId","internalType":"uint256","indexed":true}],"anonymous":false},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"DogePunkToken","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"FREE_MINT_MAX","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"approve","inputs":[{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"tokenId","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"balanceOf","inputs":[{"type":"address","name":"owner","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"cost","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"freeMaxMintPerWallet","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"freeMint","inputs":[{"type":"uint256","name":"_mintAmount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"freeWallets","inputs":[{"type":"address","name":"","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"getApproved","inputs":[{"type":"uint256","name":"tokenId","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"isApprovedForAll","inputs":[{"type":"address","name":"owner","internalType":"address"},{"type":"address","name":"operator","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"isFreeMint","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"maxMintAmountPerTx","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"maxSupply","inputs":[]},{"type":"function","stateMutability":"payable","outputs":[],"name":"mint","inputs":[{"type":"uint256","name":"_mintAmount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"name","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"owner","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"ownerOf","inputs":[{"type":"uint256","name":"tokenId","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"renounceOwnership","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"rescueERC20","inputs":[{"type":"address","name":"tokenAddress","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"revealed","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"safeTransferFrom","inputs":[{"type":"address","name":"from","internalType":"address"},{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"tokenId","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"safeTransferFrom","inputs":[{"type":"address","name":"from","internalType":"address"},{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"tokenId","internalType":"uint256"},{"type":"bytes","name":"_data","internalType":"bytes"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"saleActive","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setApprovalForAll","inputs":[{"type":"address","name":"operator","internalType":"address"},{"type":"bool","name":"approved","internalType":"bool"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setBaseURI","inputs":[{"type":"string","name":"baseURI","internalType":"string"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setCost","inputs":[{"type":"uint256","name":"_cost","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setMaxFreeMint","inputs":[{"type":"uint256","name":"_max","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setMaxFreeMintPerWallet","inputs":[{"type":"uint256","name":"_max","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setMaxMintAmountPerTx","inputs":[{"type":"uint256","name":"_maxMintAmountPerTx","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setMaxSupply","inputs":[{"type":"uint256","name":"_maxSupply","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setRevealed","inputs":[{"type":"bool","name":"state","internalType":"bool"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"supportsInterface","inputs":[{"type":"bytes4","name":"interfaceId","internalType":"bytes4"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"symbol","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"testmint","inputs":[{"type":"uint256","name":"_mintAmount","internalType":"uint256"},{"type":"address","name":"_receiver","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"toggleSaleState","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"tokenURI","inputs":[{"type":"uint256","name":"_tokenId","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"totalSupply","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"transferFrom","inputs":[{"type":"address","name":"from","internalType":"address"},{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"tokenId","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"transferOwnership","inputs":[{"type":"address","name":"newOwner","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"withdraw","inputs":[]}]
            

Contract Creation Code

0x608060405268056bc75e2d63100000600955612710600a55601e600b556001600c556103e8600d557310aa87cab2bd08098ca4c2d2754e5a7969890adb600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600e60146101000a81548160ff0219169083151502179055506001600e60156101000a81548160ff02191690831515021790555060405162003e6a38038062003e6a8339818101604052810190620000d79190620004ed565b6040518060400160405280600881526020017f446f676550756e6b0000000000000000000000000000000000000000000000008152506040518060400160405280600881526020017f446f676550756e6b00000000000000000000000000000000000000000000000081525081600290805190602001906200015b929190620002a0565b50806003908051906020019062000174929190620002a0565b5062000185620001cd60201b60201c565b6000819055505050620001ad620001a1620001d260201b60201c565b620001da60201b60201c565b8060109080519060200190620001c5929190620002a0565b5050620005a3565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002ae906200056d565b90600052602060002090601f016020900481019282620002d257600085556200031e565b82601f10620002ed57805160ff19168380011785556200031e565b828001600101855582156200031e579182015b828111156200031d57825182559160200191906001019062000300565b5b5090506200032d919062000331565b5090565b5b808211156200034c57600081600090555060010162000332565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620003b9826200036e565b810181811067ffffffffffffffff82111715620003db57620003da6200037f565b5b80604052505050565b6000620003f062000350565b9050620003fe8282620003ae565b919050565b600067ffffffffffffffff8211156200042157620004206200037f565b5b6200042c826200036e565b9050602081019050919050565b60005b83811015620004595780820151818401526020810190506200043c565b8381111562000469576000848401525b50505050565b600062000486620004808462000403565b620003e4565b905082815260208101848484011115620004a557620004a462000369565b5b620004b284828562000439565b509392505050565b600082601f830112620004d257620004d162000364565b5b8151620004e48482602086016200046f565b91505092915050565b6000602082840312156200050657620005056200035a565b5b600082015167ffffffffffffffff8111156200052757620005266200035f565b5b6200053584828501620004ba565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200058657607f821691505b602082108114156200059d576200059c6200053e565b5b50919050565b6138b780620005b36000396000f3fe60806040526004361061023b5760003560e01c806370a082311161012e578063b071401b116100ab578063daaeec861161006f578063daaeec861461083c578063e0a8085314610853578063e985e9c51461087c578063f2fde38b146108b9578063f77b1edd146108e25761023b565b8063b071401b14610757578063b88d4fde14610780578063c2d05a6e146107a9578063c87b56dd146107d4578063d5abeb01146108115761023b565b80638da5cb5b116100f25780638da5cb5b1461069157806394354fd0146106bc57806395d89b41146106e7578063a0712d6814610712578063a22cb4651461072e5761023b565b806370a08231146105c2578063715018a6146105ff578063742a4c9b146106165780637c928fe91461063f5780638cd4426d146106685761023b565b80633bc4b025116101bc57806355f804b31161018057806355f804b3146104dd5780636352211e1461050657806366112b6b1461054357806368428a1b1461056e5780636f8b44b0146105995761023b565b80633bc4b0251461041e5780633ccfd60b1461044957806342842e0e1461046057806344a0d68a1461048957806351830227146104b25761023b565b806313faede61161020357806313faede61461034b57806318160ddd1461037657806323b872dd146103a1578063293ae935146103ca57806331c75c37146103f35761023b565b806301ffc9a71461024057806306bb99e21461027d57806306fdde03146102ba578063081812fc146102e5578063095ea7b314610322575b600080fd5b34801561024c57600080fd5b5061026760048036038101906102629190612c90565b61090b565b6040516102749190612cd8565b60405180910390f35b34801561028957600080fd5b506102a4600480360381019061029f9190612d51565b61099d565b6040516102b19190612d97565b60405180910390f35b3480156102c657600080fd5b506102cf6109b5565b6040516102dc9190612e4b565b60405180910390f35b3480156102f157600080fd5b5061030c60048036038101906103079190612e99565b610a47565b6040516103199190612ed5565b60405180910390f35b34801561032e57600080fd5b5061034960048036038101906103449190612ef0565b610ac3565b005b34801561035757600080fd5b50610360610c6a565b60405161036d9190612d97565b60405180910390f35b34801561038257600080fd5b5061038b610c70565b6040516103989190612d97565b60405180910390f35b3480156103ad57600080fd5b506103c860048036038101906103c39190612f30565b610c87565b005b3480156103d657600080fd5b506103f160048036038101906103ec9190612f83565b610c97565b005b3480156103ff57600080fd5b50610408610d21565b6040516104159190612ed5565b60405180910390f35b34801561042a57600080fd5b50610433610d47565b6040516104409190612d97565b60405180910390f35b34801561045557600080fd5b5061045e610d4d565b005b34801561046c57600080fd5b5061048760048036038101906104829190612f30565b610e19565b005b34801561049557600080fd5b506104b060048036038101906104ab9190612e99565b610e39565b005b3480156104be57600080fd5b506104c7610ebf565b6040516104d49190612cd8565b60405180910390f35b3480156104e957600080fd5b5061050460048036038101906104ff9190613028565b610ed2565b005b34801561051257600080fd5b5061052d60048036038101906105289190612e99565b610f64565b60405161053a9190612ed5565b60405180910390f35b34801561054f57600080fd5b50610558610f76565b6040516105659190612d97565b60405180910390f35b34801561057a57600080fd5b50610583610f7c565b6040516105909190612cd8565b60405180910390f35b3480156105a557600080fd5b506105c060048036038101906105bb9190612e99565b610f8f565b005b3480156105ce57600080fd5b506105e960048036038101906105e49190612d51565b611015565b6040516105f69190612d97565b60405180910390f35b34801561060b57600080fd5b506106146110ce565b005b34801561062257600080fd5b5061063d60048036038101906106389190612e99565b611156565b005b34801561064b57600080fd5b5061066660048036038101906106619190612e99565b6111dc565b005b34801561067457600080fd5b5061068f600480360381019061068a9190612ef0565b6114fe565b005b34801561069d57600080fd5b506106a6611604565b6040516106b39190612ed5565b60405180910390f35b3480156106c857600080fd5b506106d161162e565b6040516106de9190612d97565b60405180910390f35b3480156106f357600080fd5b506106fc611634565b6040516107099190612e4b565b60405180910390f35b61072c60048036038101906107279190612e99565b6116c6565b005b34801561073a57600080fd5b50610755600480360381019061075091906130a1565b61191e565b005b34801561076357600080fd5b5061077e60048036038101906107799190612e99565b611a96565b005b34801561078c57600080fd5b506107a760048036038101906107a29190613211565b611b1c565b005b3480156107b557600080fd5b506107be611b8f565b6040516107cb9190612cd8565b60405180910390f35b3480156107e057600080fd5b506107fb60048036038101906107f69190612e99565b611ba2565b6040516108089190612e4b565b60405180910390f35b34801561081d57600080fd5b50610826611c3f565b6040516108339190612d97565b60405180910390f35b34801561084857600080fd5b50610851611c45565b005b34801561085f57600080fd5b5061087a60048036038101906108759190613294565b611ced565b005b34801561088857600080fd5b506108a3600480360381019061089e91906132c1565b611d86565b6040516108b09190612cd8565b60405180910390f35b3480156108c557600080fd5b506108e060048036038101906108db9190612d51565b611e1a565b005b3480156108ee57600080fd5b5061090960048036038101906109049190612e99565b611f12565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061096657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109965750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600f6020528060005260406000206000915090505481565b6060600280546109c490613330565b80601f01602080910402602001604051908101604052809291908181526020018280546109f090613330565b8015610a3d5780601f10610a1257610100808354040283529160200191610a3d565b820191906000526020600020905b815481529060010190602001808311610a2057829003601f168201915b5050505050905090565b6000610a5282611f98565b610a88576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ace82611ff7565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b36576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b556120c5565b73ffffffffffffffffffffffffffffffffffffffff1614610bb857610b8181610b7c6120c5565b611d86565b610bb7576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60095481565b6000610c7a6120cd565b6001546000540303905090565b610c928383836120d2565b505050565b610c9f61247c565b73ffffffffffffffffffffffffffffffffffffffff16610cbd611604565b73ffffffffffffffffffffffffffffffffffffffff1614610d13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0a906133ae565b60405180910390fd5b610d1d8183612484565b5050565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d5481565b610d5561247c565b73ffffffffffffffffffffffffffffffffffffffff16610d73611604565b73ffffffffffffffffffffffffffffffffffffffff1614610dc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc0906133ae565b60405180910390fd5b610dd1611604565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610e16573d6000803e3d6000fd5b50565b610e3483838360405180602001604052806000815250611b1c565b505050565b610e4161247c565b73ffffffffffffffffffffffffffffffffffffffff16610e5f611604565b73ffffffffffffffffffffffffffffffffffffffff1614610eb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eac906133ae565b60405180910390fd5b8060098190555050565b600e60159054906101000a900460ff1681565b610eda61247c565b73ffffffffffffffffffffffffffffffffffffffff16610ef8611604565b73ffffffffffffffffffffffffffffffffffffffff1614610f4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f45906133ae565b60405180910390fd5b818160109190610f5f929190612b81565b505050565b6000610f6f82611ff7565b9050919050565b600c5481565b600e60149054906101000a900460ff1681565b610f9761247c565b73ffffffffffffffffffffffffffffffffffffffff16610fb5611604565b73ffffffffffffffffffffffffffffffffffffffff161461100b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611002906133ae565b60405180910390fd5b80600a8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561107d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6110d661247c565b73ffffffffffffffffffffffffffffffffffffffff166110f4611604565b73ffffffffffffffffffffffffffffffffffffffff161461114a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611141906133ae565b60405180910390fd5b61115460006124a2565b565b61115e61247c565b73ffffffffffffffffffffffffffffffffffffffff1661117c611604565b73ffffffffffffffffffffffffffffffffffffffff16146111d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c9906133ae565b60405180910390fd5b80600d8190555050565b80600e60149054906101000a900460ff16611223576040517f3f88677400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611288576040517f72f67c2300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a5481611294610c70565b61129e91906133fd565b11156112d6576040517fc30436e900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60018110806112e65750600b5481115b1561131d576040517f2c5211c600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611325611b8f565b61135b576040517ff1e7b06c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600c5482600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113a991906133fd565b11156113e1576040517f5107dbe700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506114383383612484565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33670de0b6b3a76400006207a1208661148f9190613453565b6114999190613453565b6040518363ffffffff1660e01b81526004016114b69291906134ad565b6020604051808303816000875af11580156114d5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114f991906134eb565b505050565b61150661247c565b73ffffffffffffffffffffffffffffffffffffffff16611524611604565b73ffffffffffffffffffffffffffffffffffffffff161461157a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611571906133ae565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb61159e611604565b836040518363ffffffff1660e01b81526004016115bc9291906134ad565b6020604051808303816000875af11580156115db573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115ff91906134eb565b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600b5481565b60606003805461164390613330565b80601f016020809104026020016040519081016040528092919081815260200182805461166f90613330565b80156116bc5780601f10611691576101008083540402835291602001916116bc565b820191906000526020600020905b81548152906001019060200180831161169f57829003601f168201915b5050505050905090565b80600e60149054906101000a900460ff1661170d576040517f3f88677400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611772576040517f72f67c2300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a548161177e610c70565b61178891906133fd565b11156117c0576040517fc30436e900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60018110806117d05750600b5481115b15611807576040517f2c5211c600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b816009546118159190613453565b34101561184e576040517f1101129400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6118583383612484565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33670de0b6b3a7640000624c4b40866118af9190613453565b6118b99190613453565b6040518363ffffffff1660e01b81526004016118d69291906134ad565b6020604051808303816000875af11580156118f5573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061191991906134eb565b505050565b6119266120c5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561198b576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006119986120c5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a456120c5565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a8a9190612cd8565b60405180910390a35050565b611a9e61247c565b73ffffffffffffffffffffffffffffffffffffffff16611abc611604565b73ffffffffffffffffffffffffffffffffffffffff1614611b12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b09906133ae565b60405180910390fd5b80600b8190555050565b611b278484846120d2565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611b8957611b5284848484612568565b611b88576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6000600d54611b9c610c70565b10905090565b6060611bad82611f98565b611be3576040517fcbdb7b3000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600e60159054906101000a900460ff16611c0657611bff6126b9565b9050611c3a565b611c0e6126b9565b611c178361274b565b604051602001611c289291906135a0565b60405160208183030381529060405290505b919050565b600a5481565b611c4d61247c565b73ffffffffffffffffffffffffffffffffffffffff16611c6b611604565b73ffffffffffffffffffffffffffffffffffffffff1614611cc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb8906133ae565b60405180910390fd5b600e60149054906101000a900460ff1615600e60146101000a81548160ff021916908315150217905550565b611cf561247c565b73ffffffffffffffffffffffffffffffffffffffff16611d13611604565b73ffffffffffffffffffffffffffffffffffffffff1614611d69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d60906133ae565b60405180910390fd5b80600e60156101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611e2261247c565b73ffffffffffffffffffffffffffffffffffffffff16611e40611604565b73ffffffffffffffffffffffffffffffffffffffff1614611e96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8d906133ae565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efd90613641565b60405180910390fd5b611f0f816124a2565b50565b611f1a61247c565b73ffffffffffffffffffffffffffffffffffffffff16611f38611604565b73ffffffffffffffffffffffffffffffffffffffff1614611f8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f85906133ae565b60405180910390fd5b80600c8190555050565b600081611fa36120cd565b11158015611fb2575060005482105b8015611ff0575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600080829050806120066120cd565b1161208e5760005481101561208d5760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216141561208b575b6000811415612081576004600083600190039350838152602001908152602001600020549050612056565b80925050506120c0565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b60006120dd82611ff7565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612144576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166121656120c5565b73ffffffffffffffffffffffffffffffffffffffff16148061219457506121938561218e6120c5565b611d86565b5b806121d957506121a26120c5565b73ffffffffffffffffffffffffffffffffffffffff166121c184610a47565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612212576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612279576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61228685858560016128ac565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b612383866128b2565b1717600460008581526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008316141561240d57600060018401905060006004600083815260200190815260200160002054141561240b57600054811461240a578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461247585858560016128bc565b5050505050565b600033905090565b61249e8282604051806020016040528060008152506128c2565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261258e6120c5565b8786866040518563ffffffff1660e01b81526004016125b094939291906136b6565b6020604051808303816000875af19250505080156125ec57506040513d601f19601f820116820180604052508101906125e99190613717565b60015b612666573d806000811461261c576040519150601f19603f3d011682016040523d82523d6000602084013e612621565b606091505b5060008151141561265e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060601080546126c890613330565b80601f01602080910402602001604051908101604052809291908181526020018280546126f490613330565b80156127415780601f1061271657610100808354040283529160200191612741565b820191906000526020600020905b81548152906001019060200180831161272457829003601f168201915b5050505050905090565b60606000821415612793576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506128a7565b600082905060005b600082146127c55780806127ae90613744565b915050600a826127be91906137bc565b915061279b565b60008167ffffffffffffffff8111156127e1576127e06130e6565b5b6040519080825280601f01601f1916602001820160405280156128135781602001600182028036833780820191505090505b5090505b600085146128a05760018261282c91906137ed565b9150600a8561283b9190613821565b603061284791906133fd565b60f81b81838151811061285d5761285c613852565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561289991906137bc565b9450612817565b8093505050505b919050565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561292f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600083141561296a576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61297760008583866128ac565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e16129dc60018514612b77565b901b60a042901b6129ec866128b2565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14612af0575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612aa06000878480600101955087612568565b612ad6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210612a31578260005414612aeb57600080fd5b612b5b565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612af1575b816000819055505050612b7160008583866128bc565b50505050565b6000819050919050565b828054612b8d90613330565b90600052602060002090601f016020900481019282612baf5760008555612bf6565b82601f10612bc857803560ff1916838001178555612bf6565b82800160010185558215612bf6579182015b82811115612bf5578235825591602001919060010190612bda565b5b509050612c039190612c07565b5090565b5b80821115612c20576000816000905550600101612c08565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612c6d81612c38565b8114612c7857600080fd5b50565b600081359050612c8a81612c64565b92915050565b600060208284031215612ca657612ca5612c2e565b5b6000612cb484828501612c7b565b91505092915050565b60008115159050919050565b612cd281612cbd565b82525050565b6000602082019050612ced6000830184612cc9565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612d1e82612cf3565b9050919050565b612d2e81612d13565b8114612d3957600080fd5b50565b600081359050612d4b81612d25565b92915050565b600060208284031215612d6757612d66612c2e565b5b6000612d7584828501612d3c565b91505092915050565b6000819050919050565b612d9181612d7e565b82525050565b6000602082019050612dac6000830184612d88565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612dec578082015181840152602081019050612dd1565b83811115612dfb576000848401525b50505050565b6000601f19601f8301169050919050565b6000612e1d82612db2565b612e278185612dbd565b9350612e37818560208601612dce565b612e4081612e01565b840191505092915050565b60006020820190508181036000830152612e658184612e12565b905092915050565b612e7681612d7e565b8114612e8157600080fd5b50565b600081359050612e9381612e6d565b92915050565b600060208284031215612eaf57612eae612c2e565b5b6000612ebd84828501612e84565b91505092915050565b612ecf81612d13565b82525050565b6000602082019050612eea6000830184612ec6565b92915050565b60008060408385031215612f0757612f06612c2e565b5b6000612f1585828601612d3c565b9250506020612f2685828601612e84565b9150509250929050565b600080600060608486031215612f4957612f48612c2e565b5b6000612f5786828701612d3c565b9350506020612f6886828701612d3c565b9250506040612f7986828701612e84565b9150509250925092565b60008060408385031215612f9a57612f99612c2e565b5b6000612fa885828601612e84565b9250506020612fb985828601612d3c565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f840112612fe857612fe7612fc3565b5b8235905067ffffffffffffffff81111561300557613004612fc8565b5b60208301915083600182028301111561302157613020612fcd565b5b9250929050565b6000806020838503121561303f5761303e612c2e565b5b600083013567ffffffffffffffff81111561305d5761305c612c33565b5b61306985828601612fd2565b92509250509250929050565b61307e81612cbd565b811461308957600080fd5b50565b60008135905061309b81613075565b92915050565b600080604083850312156130b8576130b7612c2e565b5b60006130c685828601612d3c565b92505060206130d78582860161308c565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61311e82612e01565b810181811067ffffffffffffffff8211171561313d5761313c6130e6565b5b80604052505050565b6000613150612c24565b905061315c8282613115565b919050565b600067ffffffffffffffff82111561317c5761317b6130e6565b5b61318582612e01565b9050602081019050919050565b82818337600083830152505050565b60006131b46131af84613161565b613146565b9050828152602081018484840111156131d0576131cf6130e1565b5b6131db848285613192565b509392505050565b600082601f8301126131f8576131f7612fc3565b5b81356132088482602086016131a1565b91505092915050565b6000806000806080858703121561322b5761322a612c2e565b5b600061323987828801612d3c565b945050602061324a87828801612d3c565b935050604061325b87828801612e84565b925050606085013567ffffffffffffffff81111561327c5761327b612c33565b5b613288878288016131e3565b91505092959194509250565b6000602082840312156132aa576132a9612c2e565b5b60006132b88482850161308c565b91505092915050565b600080604083850312156132d8576132d7612c2e565b5b60006132e685828601612d3c565b92505060206132f785828601612d3c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061334857607f821691505b6020821081141561335c5761335b613301565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613398602083612dbd565b91506133a382613362565b602082019050919050565b600060208201905081810360008301526133c78161338b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061340882612d7e565b915061341383612d7e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613448576134476133ce565b5b828201905092915050565b600061345e82612d7e565b915061346983612d7e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156134a2576134a16133ce565b5b828202905092915050565b60006040820190506134c26000830185612ec6565b6134cf6020830184612d88565b9392505050565b6000815190506134e581613075565b92915050565b60006020828403121561350157613500612c2e565b5b600061350f848285016134d6565b91505092915050565b600081905092915050565b600061352e82612db2565b6135388185613518565b9350613548818560208601612dce565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061358a600583613518565b915061359582613554565b600582019050919050565b60006135ac8285613523565b91506135b88284613523565b91506135c38261357d565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061362b602683612dbd565b9150613636826135cf565b604082019050919050565b6000602082019050818103600083015261365a8161361e565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061368882613661565b613692818561366c565b93506136a2818560208601612dce565b6136ab81612e01565b840191505092915050565b60006080820190506136cb6000830187612ec6565b6136d86020830186612ec6565b6136e56040830185612d88565b81810360608301526136f7818461367d565b905095945050505050565b60008151905061371181612c64565b92915050565b60006020828403121561372d5761372c612c2e565b5b600061373b84828501613702565b91505092915050565b600061374f82612d7e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613782576137816133ce565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006137c782612d7e565b91506137d283612d7e565b9250826137e2576137e161378d565b5b828204905092915050565b60006137f882612d7e565b915061380383612d7e565b925082821015613816576138156133ce565b5b828203905092915050565b600061382c82612d7e565b915061383783612d7e565b9250826138475761384661378d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220aa59160f954c5fda78e3cca210759aa7a63d336354e1cb6209d459ee2c27cb6c64736f6c634300080c003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000043697066733a2f2f6261667962656967326d64347870796b3275327565746b36336d77626f326934626834787a706e726e6b6f6b70746a6675357065726d6e7a636e6d2f0000000000000000000000000000000000000000000000000000000000

Deployed ByteCode

0x60806040526004361061023b5760003560e01c806370a082311161012e578063b071401b116100ab578063daaeec861161006f578063daaeec861461083c578063e0a8085314610853578063e985e9c51461087c578063f2fde38b146108b9578063f77b1edd146108e25761023b565b8063b071401b14610757578063b88d4fde14610780578063c2d05a6e146107a9578063c87b56dd146107d4578063d5abeb01146108115761023b565b80638da5cb5b116100f25780638da5cb5b1461069157806394354fd0146106bc57806395d89b41146106e7578063a0712d6814610712578063a22cb4651461072e5761023b565b806370a08231146105c2578063715018a6146105ff578063742a4c9b146106165780637c928fe91461063f5780638cd4426d146106685761023b565b80633bc4b025116101bc57806355f804b31161018057806355f804b3146104dd5780636352211e1461050657806366112b6b1461054357806368428a1b1461056e5780636f8b44b0146105995761023b565b80633bc4b0251461041e5780633ccfd60b1461044957806342842e0e1461046057806344a0d68a1461048957806351830227146104b25761023b565b806313faede61161020357806313faede61461034b57806318160ddd1461037657806323b872dd146103a1578063293ae935146103ca57806331c75c37146103f35761023b565b806301ffc9a71461024057806306bb99e21461027d57806306fdde03146102ba578063081812fc146102e5578063095ea7b314610322575b600080fd5b34801561024c57600080fd5b5061026760048036038101906102629190612c90565b61090b565b6040516102749190612cd8565b60405180910390f35b34801561028957600080fd5b506102a4600480360381019061029f9190612d51565b61099d565b6040516102b19190612d97565b60405180910390f35b3480156102c657600080fd5b506102cf6109b5565b6040516102dc9190612e4b565b60405180910390f35b3480156102f157600080fd5b5061030c60048036038101906103079190612e99565b610a47565b6040516103199190612ed5565b60405180910390f35b34801561032e57600080fd5b5061034960048036038101906103449190612ef0565b610ac3565b005b34801561035757600080fd5b50610360610c6a565b60405161036d9190612d97565b60405180910390f35b34801561038257600080fd5b5061038b610c70565b6040516103989190612d97565b60405180910390f35b3480156103ad57600080fd5b506103c860048036038101906103c39190612f30565b610c87565b005b3480156103d657600080fd5b506103f160048036038101906103ec9190612f83565b610c97565b005b3480156103ff57600080fd5b50610408610d21565b6040516104159190612ed5565b60405180910390f35b34801561042a57600080fd5b50610433610d47565b6040516104409190612d97565b60405180910390f35b34801561045557600080fd5b5061045e610d4d565b005b34801561046c57600080fd5b5061048760048036038101906104829190612f30565b610e19565b005b34801561049557600080fd5b506104b060048036038101906104ab9190612e99565b610e39565b005b3480156104be57600080fd5b506104c7610ebf565b6040516104d49190612cd8565b60405180910390f35b3480156104e957600080fd5b5061050460048036038101906104ff9190613028565b610ed2565b005b34801561051257600080fd5b5061052d60048036038101906105289190612e99565b610f64565b60405161053a9190612ed5565b60405180910390f35b34801561054f57600080fd5b50610558610f76565b6040516105659190612d97565b60405180910390f35b34801561057a57600080fd5b50610583610f7c565b6040516105909190612cd8565b60405180910390f35b3480156105a557600080fd5b506105c060048036038101906105bb9190612e99565b610f8f565b005b3480156105ce57600080fd5b506105e960048036038101906105e49190612d51565b611015565b6040516105f69190612d97565b60405180910390f35b34801561060b57600080fd5b506106146110ce565b005b34801561062257600080fd5b5061063d60048036038101906106389190612e99565b611156565b005b34801561064b57600080fd5b5061066660048036038101906106619190612e99565b6111dc565b005b34801561067457600080fd5b5061068f600480360381019061068a9190612ef0565b6114fe565b005b34801561069d57600080fd5b506106a6611604565b6040516106b39190612ed5565b60405180910390f35b3480156106c857600080fd5b506106d161162e565b6040516106de9190612d97565b60405180910390f35b3480156106f357600080fd5b506106fc611634565b6040516107099190612e4b565b60405180910390f35b61072c60048036038101906107279190612e99565b6116c6565b005b34801561073a57600080fd5b50610755600480360381019061075091906130a1565b61191e565b005b34801561076357600080fd5b5061077e60048036038101906107799190612e99565b611a96565b005b34801561078c57600080fd5b506107a760048036038101906107a29190613211565b611b1c565b005b3480156107b557600080fd5b506107be611b8f565b6040516107cb9190612cd8565b60405180910390f35b3480156107e057600080fd5b506107fb60048036038101906107f69190612e99565b611ba2565b6040516108089190612e4b565b60405180910390f35b34801561081d57600080fd5b50610826611c3f565b6040516108339190612d97565b60405180910390f35b34801561084857600080fd5b50610851611c45565b005b34801561085f57600080fd5b5061087a60048036038101906108759190613294565b611ced565b005b34801561088857600080fd5b506108a3600480360381019061089e91906132c1565b611d86565b6040516108b09190612cd8565b60405180910390f35b3480156108c557600080fd5b506108e060048036038101906108db9190612d51565b611e1a565b005b3480156108ee57600080fd5b5061090960048036038101906109049190612e99565b611f12565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061096657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109965750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600f6020528060005260406000206000915090505481565b6060600280546109c490613330565b80601f01602080910402602001604051908101604052809291908181526020018280546109f090613330565b8015610a3d5780601f10610a1257610100808354040283529160200191610a3d565b820191906000526020600020905b815481529060010190602001808311610a2057829003601f168201915b5050505050905090565b6000610a5282611f98565b610a88576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ace82611ff7565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b36576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b556120c5565b73ffffffffffffffffffffffffffffffffffffffff1614610bb857610b8181610b7c6120c5565b611d86565b610bb7576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60095481565b6000610c7a6120cd565b6001546000540303905090565b610c928383836120d2565b505050565b610c9f61247c565b73ffffffffffffffffffffffffffffffffffffffff16610cbd611604565b73ffffffffffffffffffffffffffffffffffffffff1614610d13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0a906133ae565b60405180910390fd5b610d1d8183612484565b5050565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d5481565b610d5561247c565b73ffffffffffffffffffffffffffffffffffffffff16610d73611604565b73ffffffffffffffffffffffffffffffffffffffff1614610dc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc0906133ae565b60405180910390fd5b610dd1611604565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610e16573d6000803e3d6000fd5b50565b610e3483838360405180602001604052806000815250611b1c565b505050565b610e4161247c565b73ffffffffffffffffffffffffffffffffffffffff16610e5f611604565b73ffffffffffffffffffffffffffffffffffffffff1614610eb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eac906133ae565b60405180910390fd5b8060098190555050565b600e60159054906101000a900460ff1681565b610eda61247c565b73ffffffffffffffffffffffffffffffffffffffff16610ef8611604565b73ffffffffffffffffffffffffffffffffffffffff1614610f4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f45906133ae565b60405180910390fd5b818160109190610f5f929190612b81565b505050565b6000610f6f82611ff7565b9050919050565b600c5481565b600e60149054906101000a900460ff1681565b610f9761247c565b73ffffffffffffffffffffffffffffffffffffffff16610fb5611604565b73ffffffffffffffffffffffffffffffffffffffff161461100b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611002906133ae565b60405180910390fd5b80600a8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561107d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6110d661247c565b73ffffffffffffffffffffffffffffffffffffffff166110f4611604565b73ffffffffffffffffffffffffffffffffffffffff161461114a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611141906133ae565b60405180910390fd5b61115460006124a2565b565b61115e61247c565b73ffffffffffffffffffffffffffffffffffffffff1661117c611604565b73ffffffffffffffffffffffffffffffffffffffff16146111d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c9906133ae565b60405180910390fd5b80600d8190555050565b80600e60149054906101000a900460ff16611223576040517f3f88677400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611288576040517f72f67c2300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a5481611294610c70565b61129e91906133fd565b11156112d6576040517fc30436e900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60018110806112e65750600b5481115b1561131d576040517f2c5211c600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611325611b8f565b61135b576040517ff1e7b06c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600c5482600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113a991906133fd565b11156113e1576040517f5107dbe700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506114383383612484565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33670de0b6b3a76400006207a1208661148f9190613453565b6114999190613453565b6040518363ffffffff1660e01b81526004016114b69291906134ad565b6020604051808303816000875af11580156114d5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114f991906134eb565b505050565b61150661247c565b73ffffffffffffffffffffffffffffffffffffffff16611524611604565b73ffffffffffffffffffffffffffffffffffffffff161461157a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611571906133ae565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb61159e611604565b836040518363ffffffff1660e01b81526004016115bc9291906134ad565b6020604051808303816000875af11580156115db573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115ff91906134eb565b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600b5481565b60606003805461164390613330565b80601f016020809104026020016040519081016040528092919081815260200182805461166f90613330565b80156116bc5780601f10611691576101008083540402835291602001916116bc565b820191906000526020600020905b81548152906001019060200180831161169f57829003601f168201915b5050505050905090565b80600e60149054906101000a900460ff1661170d576040517f3f88677400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611772576040517f72f67c2300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a548161177e610c70565b61178891906133fd565b11156117c0576040517fc30436e900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60018110806117d05750600b5481115b15611807576040517f2c5211c600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b816009546118159190613453565b34101561184e576040517f1101129400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6118583383612484565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33670de0b6b3a7640000624c4b40866118af9190613453565b6118b99190613453565b6040518363ffffffff1660e01b81526004016118d69291906134ad565b6020604051808303816000875af11580156118f5573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061191991906134eb565b505050565b6119266120c5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561198b576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006119986120c5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a456120c5565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a8a9190612cd8565b60405180910390a35050565b611a9e61247c565b73ffffffffffffffffffffffffffffffffffffffff16611abc611604565b73ffffffffffffffffffffffffffffffffffffffff1614611b12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b09906133ae565b60405180910390fd5b80600b8190555050565b611b278484846120d2565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611b8957611b5284848484612568565b611b88576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6000600d54611b9c610c70565b10905090565b6060611bad82611f98565b611be3576040517fcbdb7b3000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600e60159054906101000a900460ff16611c0657611bff6126b9565b9050611c3a565b611c0e6126b9565b611c178361274b565b604051602001611c289291906135a0565b60405160208183030381529060405290505b919050565b600a5481565b611c4d61247c565b73ffffffffffffffffffffffffffffffffffffffff16611c6b611604565b73ffffffffffffffffffffffffffffffffffffffff1614611cc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb8906133ae565b60405180910390fd5b600e60149054906101000a900460ff1615600e60146101000a81548160ff021916908315150217905550565b611cf561247c565b73ffffffffffffffffffffffffffffffffffffffff16611d13611604565b73ffffffffffffffffffffffffffffffffffffffff1614611d69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d60906133ae565b60405180910390fd5b80600e60156101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611e2261247c565b73ffffffffffffffffffffffffffffffffffffffff16611e40611604565b73ffffffffffffffffffffffffffffffffffffffff1614611e96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8d906133ae565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efd90613641565b60405180910390fd5b611f0f816124a2565b50565b611f1a61247c565b73ffffffffffffffffffffffffffffffffffffffff16611f38611604565b73ffffffffffffffffffffffffffffffffffffffff1614611f8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f85906133ae565b60405180910390fd5b80600c8190555050565b600081611fa36120cd565b11158015611fb2575060005482105b8015611ff0575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600080829050806120066120cd565b1161208e5760005481101561208d5760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216141561208b575b6000811415612081576004600083600190039350838152602001908152602001600020549050612056565b80925050506120c0565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b60006120dd82611ff7565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612144576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166121656120c5565b73ffffffffffffffffffffffffffffffffffffffff16148061219457506121938561218e6120c5565b611d86565b5b806121d957506121a26120c5565b73ffffffffffffffffffffffffffffffffffffffff166121c184610a47565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612212576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612279576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61228685858560016128ac565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b612383866128b2565b1717600460008581526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008316141561240d57600060018401905060006004600083815260200190815260200160002054141561240b57600054811461240a578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461247585858560016128bc565b5050505050565b600033905090565b61249e8282604051806020016040528060008152506128c2565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261258e6120c5565b8786866040518563ffffffff1660e01b81526004016125b094939291906136b6565b6020604051808303816000875af19250505080156125ec57506040513d601f19601f820116820180604052508101906125e99190613717565b60015b612666573d806000811461261c576040519150601f19603f3d011682016040523d82523d6000602084013e612621565b606091505b5060008151141561265e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060601080546126c890613330565b80601f01602080910402602001604051908101604052809291908181526020018280546126f490613330565b80156127415780601f1061271657610100808354040283529160200191612741565b820191906000526020600020905b81548152906001019060200180831161272457829003601f168201915b5050505050905090565b60606000821415612793576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506128a7565b600082905060005b600082146127c55780806127ae90613744565b915050600a826127be91906137bc565b915061279b565b60008167ffffffffffffffff8111156127e1576127e06130e6565b5b6040519080825280601f01601f1916602001820160405280156128135781602001600182028036833780820191505090505b5090505b600085146128a05760018261282c91906137ed565b9150600a8561283b9190613821565b603061284791906133fd565b60f81b81838151811061285d5761285c613852565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561289991906137bc565b9450612817565b8093505050505b919050565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561292f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600083141561296a576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61297760008583866128ac565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e16129dc60018514612b77565b901b60a042901b6129ec866128b2565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14612af0575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612aa06000878480600101955087612568565b612ad6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210612a31578260005414612aeb57600080fd5b612b5b565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612af1575b816000819055505050612b7160008583866128bc565b50505050565b6000819050919050565b828054612b8d90613330565b90600052602060002090601f016020900481019282612baf5760008555612bf6565b82601f10612bc857803560ff1916838001178555612bf6565b82800160010185558215612bf6579182015b82811115612bf5578235825591602001919060010190612bda565b5b509050612c039190612c07565b5090565b5b80821115612c20576000816000905550600101612c08565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612c6d81612c38565b8114612c7857600080fd5b50565b600081359050612c8a81612c64565b92915050565b600060208284031215612ca657612ca5612c2e565b5b6000612cb484828501612c7b565b91505092915050565b60008115159050919050565b612cd281612cbd565b82525050565b6000602082019050612ced6000830184612cc9565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612d1e82612cf3565b9050919050565b612d2e81612d13565b8114612d3957600080fd5b50565b600081359050612d4b81612d25565b92915050565b600060208284031215612d6757612d66612c2e565b5b6000612d7584828501612d3c565b91505092915050565b6000819050919050565b612d9181612d7e565b82525050565b6000602082019050612dac6000830184612d88565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612dec578082015181840152602081019050612dd1565b83811115612dfb576000848401525b50505050565b6000601f19601f8301169050919050565b6000612e1d82612db2565b612e278185612dbd565b9350612e37818560208601612dce565b612e4081612e01565b840191505092915050565b60006020820190508181036000830152612e658184612e12565b905092915050565b612e7681612d7e565b8114612e8157600080fd5b50565b600081359050612e9381612e6d565b92915050565b600060208284031215612eaf57612eae612c2e565b5b6000612ebd84828501612e84565b91505092915050565b612ecf81612d13565b82525050565b6000602082019050612eea6000830184612ec6565b92915050565b60008060408385031215612f0757612f06612c2e565b5b6000612f1585828601612d3c565b9250506020612f2685828601612e84565b9150509250929050565b600080600060608486031215612f4957612f48612c2e565b5b6000612f5786828701612d3c565b9350506020612f6886828701612d3c565b9250506040612f7986828701612e84565b9150509250925092565b60008060408385031215612f9a57612f99612c2e565b5b6000612fa885828601612e84565b9250506020612fb985828601612d3c565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f840112612fe857612fe7612fc3565b5b8235905067ffffffffffffffff81111561300557613004612fc8565b5b60208301915083600182028301111561302157613020612fcd565b5b9250929050565b6000806020838503121561303f5761303e612c2e565b5b600083013567ffffffffffffffff81111561305d5761305c612c33565b5b61306985828601612fd2565b92509250509250929050565b61307e81612cbd565b811461308957600080fd5b50565b60008135905061309b81613075565b92915050565b600080604083850312156130b8576130b7612c2e565b5b60006130c685828601612d3c565b92505060206130d78582860161308c565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61311e82612e01565b810181811067ffffffffffffffff8211171561313d5761313c6130e6565b5b80604052505050565b6000613150612c24565b905061315c8282613115565b919050565b600067ffffffffffffffff82111561317c5761317b6130e6565b5b61318582612e01565b9050602081019050919050565b82818337600083830152505050565b60006131b46131af84613161565b613146565b9050828152602081018484840111156131d0576131cf6130e1565b5b6131db848285613192565b509392505050565b600082601f8301126131f8576131f7612fc3565b5b81356132088482602086016131a1565b91505092915050565b6000806000806080858703121561322b5761322a612c2e565b5b600061323987828801612d3c565b945050602061324a87828801612d3c565b935050604061325b87828801612e84565b925050606085013567ffffffffffffffff81111561327c5761327b612c33565b5b613288878288016131e3565b91505092959194509250565b6000602082840312156132aa576132a9612c2e565b5b60006132b88482850161308c565b91505092915050565b600080604083850312156132d8576132d7612c2e565b5b60006132e685828601612d3c565b92505060206132f785828601612d3c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061334857607f821691505b6020821081141561335c5761335b613301565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613398602083612dbd565b91506133a382613362565b602082019050919050565b600060208201905081810360008301526133c78161338b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061340882612d7e565b915061341383612d7e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613448576134476133ce565b5b828201905092915050565b600061345e82612d7e565b915061346983612d7e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156134a2576134a16133ce565b5b828202905092915050565b60006040820190506134c26000830185612ec6565b6134cf6020830184612d88565b9392505050565b6000815190506134e581613075565b92915050565b60006020828403121561350157613500612c2e565b5b600061350f848285016134d6565b91505092915050565b600081905092915050565b600061352e82612db2565b6135388185613518565b9350613548818560208601612dce565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061358a600583613518565b915061359582613554565b600582019050919050565b60006135ac8285613523565b91506135b88284613523565b91506135c38261357d565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061362b602683612dbd565b9150613636826135cf565b604082019050919050565b6000602082019050818103600083015261365a8161361e565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061368882613661565b613692818561366c565b93506136a2818560208601612dce565b6136ab81612e01565b840191505092915050565b60006080820190506136cb6000830187612ec6565b6136d86020830186612ec6565b6136e56040830185612d88565b81810360608301526136f7818461367d565b905095945050505050565b60008151905061371181612c64565b92915050565b60006020828403121561372d5761372c612c2e565b5b600061373b84828501613702565b91505092915050565b600061374f82612d7e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613782576137816133ce565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006137c782612d7e565b91506137d283612d7e565b9250826137e2576137e161378d565b5b828204905092915050565b60006137f882612d7e565b915061380383612d7e565b925082821015613816576138156133ce565b5b828203905092915050565b600061382c82612d7e565b915061383783612d7e565b9250826138475761384661378d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220aa59160f954c5fda78e3cca210759aa7a63d336354e1cb6209d459ee2c27cb6c64736f6c634300080c0033