ETH Price: $2,463.46 (+4.16%)

Token

Shitcoin Presents (STCNP)
 

Overview

Max Total Supply

589 STCNP

Holders

71

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 STCNP
0x586908b88a32f7d80cfc51d260d54956aeb8410d
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
ShitcoinPresents

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-03-08
*/

// SPDX-License-Identifier: MIT
//Developer Info:

/**
If you mint this and expect a return you are retarded
*/

// 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/utils/Address.sol


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: contracts/new.sol




pragma solidity ^0.8.4;








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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata 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 Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

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

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 1;
    }

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * 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 See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

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

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

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

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return _addressData[owner].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 {
        _addressData[owner].aux = aux;
    }

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_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 &&
            !_ownerships[tokenId].burned;
    }

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

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

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

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

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

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

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

            if (safe && to.isContract()) {
                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 Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

    /**
     * @dev This is 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 {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

        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 Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        address owner
    ) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
            return retval == IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @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 {}
}

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);
    }
}
pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);
    function register(address registrant) external;
    function registerAndSubscribe(address registrant, address subscription) external;
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;
    function updateOperator(address registrant, address operator, bool filtered) external;
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;
    function subscribe(address registrant, address registrantToSubscribe) external;
    function unsubscribe(address registrant, bool copyExistingEntries) external;
    function subscriptionOf(address addr) external returns (address registrant);
    function subscribers(address registrant) external returns (address[] memory);
    function subscriberAt(address registrant, uint256 index) external returns (address);
    function copyEntriesOf(address registrant, address registrantToCopy) external;
    function isOperatorFiltered(address registrant, address operator) external returns (bool);
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);
    function filteredOperators(address addr) external returns (address[] memory);
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);
    function isRegistered(address addr) external returns (bool);
    function codeHashOf(address addr) external returns (bytes32);
}
pragma solidity ^0.8.13;



abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry constant operatorFilterRegistry =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(operatorFilterRegistry).code.length > 0) {
            if (subscribe) {
                operatorFilterRegistry.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    operatorFilterRegistry.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    operatorFilterRegistry.register(address(this));
                }
            }
        }
    }

    modifier onlyAllowedOperator(address from) virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(operatorFilterRegistry).code.length > 0) {
            // Allow spending tokens from addresses with balance
            // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
            // from an EOA.
            if (from == msg.sender) {
                _;
                return;
            }
            if (
                !(
                    operatorFilterRegistry.isOperatorAllowed(address(this), msg.sender)
                        && operatorFilterRegistry.isOperatorAllowed(address(this), from)
                )
            ) {
                revert OperatorNotAllowed(msg.sender);
            }
        }
        _;
    }
}
pragma solidity ^0.8.13;



abstract contract DefaultOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

    constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}
}
    pragma solidity ^0.8.7;
    
    contract ShitcoinPresents is ERC721A, DefaultOperatorFilterer , Ownable {
    using Strings for uint256;

  string private uriPrefix;
  string private uriSuffix = ".json";

  uint256 public cost = 0.001 ether;

  uint16 public maxSupply = 6969;
  uint8 public maxMintAmountPerTx = 10;
  uint8 public maxFreeMintAmountPerWallet = 1;
                                                             
 
  bool public paused = true;

  mapping (address => uint8) public NFTPerPublicAddress;

  constructor(string memory _uriPrefix) ERC721A("Shitcoin Presents", "STCNP") {
      uriPrefix = _uriPrefix;
        _safeMint(msg.sender , 1);
  }
 
  function mint(uint8 _mintAmount) external payable  {
     uint16 totalSupply = uint16(totalSupply());
     uint8 nft = NFTPerPublicAddress[msg.sender];
    require(totalSupply + _mintAmount <= maxSupply, "Exceeds max supply.");
    require(_mintAmount + nft <= maxMintAmountPerTx, "Exceeds max per transaction.");
    require(!paused, "The contract is paused!");
    
      if(nft >= maxFreeMintAmountPerWallet)
    {
    require(msg.value >= cost * _mintAmount, "Insufficient funds!");
    }
    else {
         uint8 costAmount = _mintAmount + nft;
        if(costAmount > maxFreeMintAmountPerWallet)
       {
        costAmount = costAmount - maxFreeMintAmountPerWallet;
        require(msg.value >= cost * costAmount, "Insufficient funds!");
       }
    }
    _safeMint(msg.sender , _mintAmount);
    NFTPerPublicAddress[msg.sender] = _mintAmount + nft;
     delete totalSupply;
     delete _mintAmount;
  }
  
  function selfmint(uint16 _mintAmount, address _receiver) external onlyOwner {
     uint16 totalSupply = uint16(totalSupply());
    require(totalSupply + _mintAmount <= maxSupply, "Exceeds max supply.");
     _safeMint(_receiver , _mintAmount);
     delete _mintAmount;
     delete _receiver;
     delete totalSupply;
  }

  function shitdrop(uint8 _amountPerAddress, address[] calldata addresses) external onlyOwner {
     uint16 totalSupply = uint16(totalSupply());
     uint totalAmount =   _amountPerAddress * addresses.length;
    require(totalSupply + totalAmount <= maxSupply, "Exceeds max supply.");
     for (uint256 i = 0; i < addresses.length; i++) {
            _safeMint(addresses[i], _amountPerAddress);
        }
     delete _amountPerAddress;
     delete totalSupply;
  }

  function setMaxSupply(uint16 _maxSupply) external onlyOwner {
      maxSupply = _maxSupply;
  }

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


    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, _tokenId.toString() ,uriSuffix))
        : "";
  }
 
  function setFreeMaxLimitPerAddress(uint8 _limit) external onlyOwner{
  maxFreeMintAmountPerWallet = _limit;
  delete _limit;

  }

  function setUriPrefix(string memory _uriPrefix) external onlyOwner {
    uriPrefix = _uriPrefix;
  }

  function unPause() external onlyOwner {
    paused = !paused;
   
  }

  function setCost(uint _cost) external onlyOwner{
      cost = _cost;

  }

  function setMaxMintAmountPerTx(uint8 _maxtx) external onlyOwner{
      maxMintAmountPerTx = _maxtx;

  }

  function withdraw() external onlyOwner {
  uint _balance = address(this).balance;
     payable(msg.sender).transfer(_balance ); 
       
  }


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

    function transferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) {
        super.transferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) {
        super.safeTransferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data)
        public
        override
        onlyAllowedOperator(from)
    {
        super.safeTransferFrom(from, to, tokenId, data);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"NFTPerPublicAddress","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeMintAmountPerWallet","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_mintAmount","type":"uint8"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_mintAmount","type":"uint16"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"selfmint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_limit","type":"uint8"}],"name":"setFreeMaxLimitPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_maxtx","type":"uint8"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_maxSupply","type":"uint16"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_amountPerAddress","type":"uint8"},{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"shitdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unPause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600a9190620005dc565b5066038d7ea4c68000600b55600c805464ffffffffff19166401010a1b391790553480156200005657600080fd5b5060405162002d7238038062002d728339810160408190526200007991620006c7565b604080518082018252601181527053686974636f696e2050726573656e747360781b60208083019182528351808501909452600584526405354434e560dc1b908401528151733cc6cdda760b79bafa08df41ecfa224f810dceb693600193929091620000e891600291620005dc565b508051620000fe906003906020840190620005dc565b50600160005550506daaeb6d7670e522a718067333cd4e3b156200024b5780156200019957604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b1580156200017a57600080fd5b505af11580156200018f573d6000803e3d6000fd5b505050506200024b565b6001600160a01b03821615620001ea5760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af2903906044016200015f565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b1580156200023157600080fd5b505af115801562000246573d6000803e3d6000fd5b505050505b506200025990503362000283565b80516200026e906009906020840190620005dc565b506200027c336001620002d5565b5062000844565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620002f7828260405180602001604052806000815250620002fb60201b60201c565b5050565b6200030a83838360016200030f565b505050565b6000546001600160a01b0385166200033957604051622e076360e81b815260040160405180910390fd5b836000036200035b5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546001600160801b031981166001600160401b038083168c018116918217680100000000000000006001600160401b031990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801562000414575062000414876001600160a01b0316620004d960201b620014891760201c565b1562000493575b60405182906001600160a01b0389169060009060008051602062002d52833981519152908290a460018201916200045890600090899088620004e8565b62000476576040516368d2bf6b60e11b815260040160405180910390fd5b8082036200041b5782600054146200048d57600080fd5b620004c8565b5b6040516001830192906001600160a01b0389169060009060008051602062002d52833981519152908290a480820362000494575b506000555050505050565b50505050565b6001600160a01b03163b151590565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906200051f9033908990889088906004016200077f565b6020604051808303816000875af19250505080156200055d575060408051601f3d908101601f191682019092526200055a91810190620007d5565b60015b620005bf573d8080156200058e576040519150601f19603f3d011682016040523d82523d6000602084013e62000593565b606091505b508051600003620005b7576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b828054620005ea9062000808565b90600052602060002090601f0160209004810192826200060e576000855562000659565b82601f106200062957805160ff191683800117855562000659565b8280016001018555821562000659579182015b82811115620006595782518255916020019190600101906200063c565b50620006679291506200066b565b5090565b5b808211156200066757600081556001016200066c565b634e487b7160e01b600052604160045260246000fd5b60005b83811015620006b55781810151838201526020016200069b565b83811115620004d35750506000910152565b600060208284031215620006da57600080fd5b81516001600160401b0380821115620006f257600080fd5b818401915084601f8301126200070757600080fd5b8151818111156200071c576200071c62000682565b604051601f8201601f19908116603f0116810190838211818310171562000747576200074762000682565b816040528281528760208487010111156200076157600080fd5b6200077483602083016020880162000698565b979650505050505050565b600060018060a01b038087168352808616602084015250836040830152608060608301528251806080840152620007be8160a085016020870162000698565b601f01601f19169190910160a00195945050505050565b600060208284031215620007e857600080fd5b81516001600160e01b0319811681146200080157600080fd5b9392505050565b600181811c908216806200081d57607f821691505b6020821081036200083e57634e487b7160e01b600052602260045260246000fd5b50919050565b6124fe80620008546000396000f3fe6080604052600436106101ee5760003560e01c806370a082311161010d578063b88d4fde116100a0578063e985e9c51161006f578063e985e9c5146105a8578063eb56b4c2146105f1578063f2fde38b14610611578063f7b188a514610631578063f8bf51721461064657600080fd5b8063b88d4fde1461050a578063c87b56dd1461052a578063d5abeb011461054a578063e94053c71461057857600080fd5b806394354fd0116100dc57806394354fd01461048357806395d89b41146104b5578063a22cb465146104ca578063aa062290146104ea57600080fd5b806370a0823114610410578063715018a6146104305780637ec4a659146104455780638da5cb5b1461046557600080fd5b80633ccfd60b116101855780635c975abb116101545780635c975abb1461039b578063611efd9d146103bd5780636352211e146103dd5780636ecd2306146103fd57600080fd5b80633ccfd60b1461032657806342842e0e1461033b57806344a0d68a1461035b5780634d9c18481461037b57600080fd5b8063095ea7b3116101c1578063095ea7b3146102a457806313faede6146102c457806318160ddd146102e857806323b872dd1461030657600080fd5b806301ffc9a7146101f357806306421c2f1461022857806306fdde031461024a578063081812fc1461026c575b600080fd5b3480156101ff57600080fd5b5061021361020e366004611db1565b610667565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b50610248610243366004611de5565b6106b9565b005b34801561025657600080fd5b5061025f610704565b60405161021f9190611e58565b34801561027857600080fd5b5061028c610287366004611e6b565b610796565b6040516001600160a01b03909116815260200161021f565b3480156102b057600080fd5b506102486102bf366004611e9b565b6107da565b3480156102d057600080fd5b506102da600b5481565b60405190815260200161021f565b3480156102f457600080fd5b506102da600154600054036000190190565b34801561031257600080fd5b50610248610321366004611ec5565b610867565b34801561033257600080fd5b506102486109c3565b34801561034757600080fd5b50610248610356366004611ec5565b610a20565b34801561036757600080fd5b50610248610376366004611e6b565b610b71565b34801561038757600080fd5b50610248610396366004611f12565b610ba0565b3480156103a757600080fd5b50600c5461021390640100000000900460ff1681565b3480156103c957600080fd5b506102486103d8366004611f2d565b610bea565b3480156103e957600080fd5b5061028c6103f8366004611e6b565b610cc8565b61024861040b366004611f12565b610cda565b34801561041c57600080fd5b506102da61042b366004611fb3565b610f45565b34801561043c57600080fd5b50610248610f94565b34801561045157600080fd5b5061024861046036600461205a565b610fca565b34801561047157600080fd5b506008546001600160a01b031661028c565b34801561048f57600080fd5b50600c546104a39062010000900460ff1681565b60405160ff909116815260200161021f565b3480156104c157600080fd5b5061025f611007565b3480156104d657600080fd5b506102486104e53660046120b1565b611016565b3480156104f657600080fd5b50610248610505366004611f12565b6110ab565b34801561051657600080fd5b506102486105253660046120e8565b6110f3565b34801561053657600080fd5b5061025f610545366004611e6b565b611252565b34801561055657600080fd5b50600c546105659061ffff1681565b60405161ffff909116815260200161021f565b34801561058457600080fd5b506104a3610593366004611fb3565b600d6020526000908152604090205460ff1681565b3480156105b457600080fd5b506102136105c3366004612164565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156105fd57600080fd5b5061024861060c366004612197565b611320565b34801561061d57600080fd5b5061024861062c366004611fb3565b6113a1565b34801561063d57600080fd5b5061024861143c565b34801561065257600080fd5b50600c546104a3906301000000900460ff1681565b60006001600160e01b031982166380ac58cd60e01b148061069857506001600160e01b03198216635b5e139f60e01b145b806106b357506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146106ec5760405162461bcd60e51b81526004016106e3906121b3565b60405180910390fd5b600c805461ffff191661ffff92909216919091179055565b606060028054610713906121e8565b80601f016020809104026020016040519081016040528092919081815260200182805461073f906121e8565b801561078c5780601f106107615761010080835404028352916020019161078c565b820191906000526020600020905b81548152906001019060200180831161076f57829003601f168201915b5050505050905090565b60006107a182611498565b6107be576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006107e582610cc8565b9050806001600160a01b0316836001600160a01b0316036108195760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610839575061083781336105c3565b155b15610857576040516367d9dca160e11b815260040160405180910390fd5b6108628383836114d1565b505050565b826daaeb6d7670e522a718067333cd4e3b156109b257336001600160a01b0382160361089d5761089884848461152d565b6109bd565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156108ec573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109109190612222565b80156109935750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa15801561096f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109939190612222565b6109b257604051633b79c77360e21b81523360048201526024016106e3565b6109bd84848461152d565b50505050565b6008546001600160a01b031633146109ed5760405162461bcd60e51b81526004016106e3906121b3565b6040514790339082156108fc029083906000818181858888f19350505050158015610a1c573d6000803e3d6000fd5b5050565b826daaeb6d7670e522a718067333cd4e3b15610b6657336001600160a01b03821603610a5157610898848484611538565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610aa0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ac49190612222565b8015610b475750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610b23573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b479190612222565b610b6657604051633b79c77360e21b81523360048201526024016106e3565b6109bd848484611538565b6008546001600160a01b03163314610b9b5760405162461bcd60e51b81526004016106e3906121b3565b600b55565b6008546001600160a01b03163314610bca5760405162461bcd60e51b81526004016106e3906121b3565b600c805460ff90921663010000000263ff00000019909216919091179055565b6008546001600160a01b03163314610c145760405162461bcd60e51b81526004016106e3906121b3565b6000610c27600154600054036000190190565b90506000610c388360ff8716612255565b600c5490915061ffff90811690610c529083908516612274565b1115610c705760405162461bcd60e51b81526004016106e39061228c565b60005b83811015610cc057610cae858583818110610c9057610c906122b9565b9050602002016020810190610ca59190611fb3565b8760ff16611553565b80610cb8816122cf565b915050610c73565b505050505050565b6000610cd38261156d565b5192915050565b6000610ced600154600054036000190190565b336000908152600d6020526040902054600c5491925060ff9081169161ffff1690610d1a908516846122e8565b61ffff161115610d3c5760405162461bcd60e51b81526004016106e39061228c565b600c5462010000900460ff16610d52828561230e565b60ff161115610da35760405162461bcd60e51b815260206004820152601c60248201527f45786365656473206d617820706572207472616e73616374696f6e2e0000000060448201526064016106e3565b600c54640100000000900460ff1615610dfe5760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e7472616374206973207061757365642100000000000000000060448201526064016106e3565b600c5460ff6301000000909104811690821610610e70578260ff16600b54610e269190612255565b341015610e6b5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016106e3565b610f08565b6000610e7c828561230e565b600c5490915060ff630100000090910481169082161115610f0657600c54610eae906301000000900460ff1682612333565b90508060ff16600b54610ec19190612255565b341015610f065760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016106e3565b505b610f15338460ff16611553565b610f1f818461230e565b336000908152600d60205260409020805460ff191660ff92909216919091179055505050565b60006001600160a01b038216610f6e576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610fbe5760405162461bcd60e51b81526004016106e3906121b3565b610fc86000611696565b565b6008546001600160a01b03163314610ff45760405162461bcd60e51b81526004016106e3906121b3565b8051610a1c906009906020840190611d02565b606060038054610713906121e8565b336001600160a01b0383160361103f5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146110d55760405162461bcd60e51b81526004016106e3906121b3565b600c805460ff909216620100000262ff000019909216919091179055565b836daaeb6d7670e522a718067333cd4e3b1561123f57336001600160a01b0382160361112a57611125858585856116e8565b61124b565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611179573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061119d9190612222565b80156112205750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156111fc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112209190612222565b61123f57604051633b79c77360e21b81523360048201526024016106e3565b61124b858585856116e8565b5050505050565b606061125d82611498565b6112c15760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106e3565b60006112cb611733565b905060008151116112eb5760405180602001604052806000815250611319565b806112f584611742565b600a60405160200161130993929190612356565b6040516020818303038152906040525b9392505050565b6008546001600160a01b0316331461134a5760405162461bcd60e51b81526004016106e3906121b3565b600061135d600154600054036000190190565b600c5490915061ffff1661137184836122e8565b61ffff1611156113935760405162461bcd60e51b81526004016106e39061228c565b610862828461ffff16611553565b6008546001600160a01b031633146113cb5760405162461bcd60e51b81526004016106e3906121b3565b6001600160a01b0381166114305760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106e3565b61143981611696565b50565b6008546001600160a01b031633146114665760405162461bcd60e51b81526004016106e3906121b3565b600c805464ff000000001981166401000000009182900460ff1615909102179055565b6001600160a01b03163b151590565b6000816001111580156114ac575060005482105b80156106b3575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b61086283838361184b565b610862838383604051806020016040528060008152506110f3565b610a1c828260405180602001604052806000815250611a38565b6040805160608101825260008082526020820181905291810191909152818060011115801561159d575060005481105b1561167d57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff1615159181018290529061167b5780516001600160a01b031615611611579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611676579392505050565b611611565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6116f384848461184b565b6001600160a01b0383163b15158015611715575061171384848484611a45565b155b156109bd576040516368d2bf6b60e11b815260040160405180910390fd5b606060098054610713906121e8565b6060816000036117695750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611793578061177d816122cf565b915061178c9050600a8361242f565b915061176d565b60008167ffffffffffffffff8111156117ae576117ae611fce565b6040519080825280601f01601f1916602001820160405280156117d8576020820181803683370190505b5090505b8415611843576117ed600183612443565b91506117fa600a8661245a565b611805906030612274565b60f81b81838151811061181a5761181a6122b9565b60200101906001600160f81b031916908160001a90535061183c600a8661242f565b94506117dc565b949350505050565b60006118568261156d565b9050836001600160a01b031681600001516001600160a01b03161461188d5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806118ab57506118ab85336105c3565b806118c65750336118bb84610796565b6001600160a01b0316145b9050806118e657604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661190d57604051633a954ecd60e21b815260040160405180910390fd5b611919600084876114d1565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166119ef5760005482146119ef578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461124b565b6108628383836001611b30565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611a7a90339089908890889060040161246e565b6020604051808303816000875af1925050508015611ab5575060408051601f3d908101601f19168201909252611ab2918101906124ab565b60015b611b13573d808015611ae3576040519150601f19603f3d011682016040523d82523d6000602084013e611ae8565b606091505b508051600003611b0b576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6000546001600160a01b038516611b5957604051622e076360e81b815260040160405180910390fd5b83600003611b7a5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611c2c57506001600160a01b0387163b15155b15611cb4575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611c7d6000888480600101955088611a45565b611c9a576040516368d2bf6b60e11b815260040160405180910390fd5b808203611c32578260005414611caf57600080fd5b611cf9565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808203611cb5575b5060005561124b565b828054611d0e906121e8565b90600052602060002090601f016020900481019282611d305760008555611d76565b82601f10611d4957805160ff1916838001178555611d76565b82800160010185558215611d76579182015b82811115611d76578251825591602001919060010190611d5b565b50611d82929150611d86565b5090565b5b80821115611d825760008155600101611d87565b6001600160e01b03198116811461143957600080fd5b600060208284031215611dc357600080fd5b813561131981611d9b565b803561ffff81168114611de057600080fd5b919050565b600060208284031215611df757600080fd5b61131982611dce565b60005b83811015611e1b578181015183820152602001611e03565b838111156109bd5750506000910152565b60008151808452611e44816020860160208601611e00565b601f01601f19169290920160200192915050565b6020815260006113196020830184611e2c565b600060208284031215611e7d57600080fd5b5035919050565b80356001600160a01b0381168114611de057600080fd5b60008060408385031215611eae57600080fd5b611eb783611e84565b946020939093013593505050565b600080600060608486031215611eda57600080fd5b611ee384611e84565b9250611ef160208501611e84565b9150604084013590509250925092565b803560ff81168114611de057600080fd5b600060208284031215611f2457600080fd5b61131982611f01565b600080600060408486031215611f4257600080fd5b611f4b84611f01565b9250602084013567ffffffffffffffff80821115611f6857600080fd5b818601915086601f830112611f7c57600080fd5b813581811115611f8b57600080fd5b8760208260051b8501011115611fa057600080fd5b6020830194508093505050509250925092565b600060208284031215611fc557600080fd5b61131982611e84565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611fff57611fff611fce565b604051601f8501601f19908116603f0116810190828211818310171561202757612027611fce565b8160405280935085815286868601111561204057600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561206c57600080fd5b813567ffffffffffffffff81111561208357600080fd5b8201601f8101841361209457600080fd5b61184384823560208401611fe4565b801515811461143957600080fd5b600080604083850312156120c457600080fd5b6120cd83611e84565b915060208301356120dd816120a3565b809150509250929050565b600080600080608085870312156120fe57600080fd5b61210785611e84565b935061211560208601611e84565b925060408501359150606085013567ffffffffffffffff81111561213857600080fd5b8501601f8101871361214957600080fd5b61215887823560208401611fe4565b91505092959194509250565b6000806040838503121561217757600080fd5b61218083611e84565b915061218e60208401611e84565b90509250929050565b600080604083850312156121aa57600080fd5b61218083611dce565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c908216806121fc57607f821691505b60208210810361221c57634e487b7160e01b600052602260045260246000fd5b50919050565b60006020828403121561223457600080fd5b8151611319816120a3565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561226f5761226f61223f565b500290565b600082198211156122875761228761223f565b500190565b60208082526013908201527222bc31b2b2b2399036b0bc1039bab838363c9760691b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b6000600182016122e1576122e161223f565b5060010190565b600061ffff8083168185168083038211156123055761230561223f565b01949350505050565b600060ff821660ff84168060ff0382111561232b5761232b61223f565b019392505050565b600060ff821660ff84168082101561234d5761234d61223f565b90039392505050565b6000845160206123698285838a01611e00565b85519184019161237c8184848a01611e00565b8554920191600090600181811c908083168061239957607f831692505b85831081036123b657634e487b7160e01b85526022600452602485fd5b8080156123ca57600181146123db57612408565b60ff19851688528388019550612408565b60008b81526020902060005b858110156124005781548a8201529084019088016123e7565b505083880195505b50939b9a5050505050505050505050565b634e487b7160e01b600052601260045260246000fd5b60008261243e5761243e612419565b500490565b6000828210156124555761245561223f565b500390565b60008261246957612469612419565b500690565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906124a190830184611e2c565b9695505050505050565b6000602082840312156124bd57600080fd5b815161131981611d9b56fea2646970667358221220777ce48af3bd32ce93617599b1485208616f235cc083507ce127ae209b85cf5564736f6c634300080d0033ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000043697066733a2f2f6261667962656963747271667a736c697a656776326671717067366a6b726176706473363236707735776769356175723565796c67776a797969342f0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c806370a082311161010d578063b88d4fde116100a0578063e985e9c51161006f578063e985e9c5146105a8578063eb56b4c2146105f1578063f2fde38b14610611578063f7b188a514610631578063f8bf51721461064657600080fd5b8063b88d4fde1461050a578063c87b56dd1461052a578063d5abeb011461054a578063e94053c71461057857600080fd5b806394354fd0116100dc57806394354fd01461048357806395d89b41146104b5578063a22cb465146104ca578063aa062290146104ea57600080fd5b806370a0823114610410578063715018a6146104305780637ec4a659146104455780638da5cb5b1461046557600080fd5b80633ccfd60b116101855780635c975abb116101545780635c975abb1461039b578063611efd9d146103bd5780636352211e146103dd5780636ecd2306146103fd57600080fd5b80633ccfd60b1461032657806342842e0e1461033b57806344a0d68a1461035b5780634d9c18481461037b57600080fd5b8063095ea7b3116101c1578063095ea7b3146102a457806313faede6146102c457806318160ddd146102e857806323b872dd1461030657600080fd5b806301ffc9a7146101f357806306421c2f1461022857806306fdde031461024a578063081812fc1461026c575b600080fd5b3480156101ff57600080fd5b5061021361020e366004611db1565b610667565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b50610248610243366004611de5565b6106b9565b005b34801561025657600080fd5b5061025f610704565b60405161021f9190611e58565b34801561027857600080fd5b5061028c610287366004611e6b565b610796565b6040516001600160a01b03909116815260200161021f565b3480156102b057600080fd5b506102486102bf366004611e9b565b6107da565b3480156102d057600080fd5b506102da600b5481565b60405190815260200161021f565b3480156102f457600080fd5b506102da600154600054036000190190565b34801561031257600080fd5b50610248610321366004611ec5565b610867565b34801561033257600080fd5b506102486109c3565b34801561034757600080fd5b50610248610356366004611ec5565b610a20565b34801561036757600080fd5b50610248610376366004611e6b565b610b71565b34801561038757600080fd5b50610248610396366004611f12565b610ba0565b3480156103a757600080fd5b50600c5461021390640100000000900460ff1681565b3480156103c957600080fd5b506102486103d8366004611f2d565b610bea565b3480156103e957600080fd5b5061028c6103f8366004611e6b565b610cc8565b61024861040b366004611f12565b610cda565b34801561041c57600080fd5b506102da61042b366004611fb3565b610f45565b34801561043c57600080fd5b50610248610f94565b34801561045157600080fd5b5061024861046036600461205a565b610fca565b34801561047157600080fd5b506008546001600160a01b031661028c565b34801561048f57600080fd5b50600c546104a39062010000900460ff1681565b60405160ff909116815260200161021f565b3480156104c157600080fd5b5061025f611007565b3480156104d657600080fd5b506102486104e53660046120b1565b611016565b3480156104f657600080fd5b50610248610505366004611f12565b6110ab565b34801561051657600080fd5b506102486105253660046120e8565b6110f3565b34801561053657600080fd5b5061025f610545366004611e6b565b611252565b34801561055657600080fd5b50600c546105659061ffff1681565b60405161ffff909116815260200161021f565b34801561058457600080fd5b506104a3610593366004611fb3565b600d6020526000908152604090205460ff1681565b3480156105b457600080fd5b506102136105c3366004612164565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156105fd57600080fd5b5061024861060c366004612197565b611320565b34801561061d57600080fd5b5061024861062c366004611fb3565b6113a1565b34801561063d57600080fd5b5061024861143c565b34801561065257600080fd5b50600c546104a3906301000000900460ff1681565b60006001600160e01b031982166380ac58cd60e01b148061069857506001600160e01b03198216635b5e139f60e01b145b806106b357506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146106ec5760405162461bcd60e51b81526004016106e3906121b3565b60405180910390fd5b600c805461ffff191661ffff92909216919091179055565b606060028054610713906121e8565b80601f016020809104026020016040519081016040528092919081815260200182805461073f906121e8565b801561078c5780601f106107615761010080835404028352916020019161078c565b820191906000526020600020905b81548152906001019060200180831161076f57829003601f168201915b5050505050905090565b60006107a182611498565b6107be576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006107e582610cc8565b9050806001600160a01b0316836001600160a01b0316036108195760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610839575061083781336105c3565b155b15610857576040516367d9dca160e11b815260040160405180910390fd5b6108628383836114d1565b505050565b826daaeb6d7670e522a718067333cd4e3b156109b257336001600160a01b0382160361089d5761089884848461152d565b6109bd565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156108ec573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109109190612222565b80156109935750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa15801561096f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109939190612222565b6109b257604051633b79c77360e21b81523360048201526024016106e3565b6109bd84848461152d565b50505050565b6008546001600160a01b031633146109ed5760405162461bcd60e51b81526004016106e3906121b3565b6040514790339082156108fc029083906000818181858888f19350505050158015610a1c573d6000803e3d6000fd5b5050565b826daaeb6d7670e522a718067333cd4e3b15610b6657336001600160a01b03821603610a5157610898848484611538565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610aa0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ac49190612222565b8015610b475750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610b23573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b479190612222565b610b6657604051633b79c77360e21b81523360048201526024016106e3565b6109bd848484611538565b6008546001600160a01b03163314610b9b5760405162461bcd60e51b81526004016106e3906121b3565b600b55565b6008546001600160a01b03163314610bca5760405162461bcd60e51b81526004016106e3906121b3565b600c805460ff90921663010000000263ff00000019909216919091179055565b6008546001600160a01b03163314610c145760405162461bcd60e51b81526004016106e3906121b3565b6000610c27600154600054036000190190565b90506000610c388360ff8716612255565b600c5490915061ffff90811690610c529083908516612274565b1115610c705760405162461bcd60e51b81526004016106e39061228c565b60005b83811015610cc057610cae858583818110610c9057610c906122b9565b9050602002016020810190610ca59190611fb3565b8760ff16611553565b80610cb8816122cf565b915050610c73565b505050505050565b6000610cd38261156d565b5192915050565b6000610ced600154600054036000190190565b336000908152600d6020526040902054600c5491925060ff9081169161ffff1690610d1a908516846122e8565b61ffff161115610d3c5760405162461bcd60e51b81526004016106e39061228c565b600c5462010000900460ff16610d52828561230e565b60ff161115610da35760405162461bcd60e51b815260206004820152601c60248201527f45786365656473206d617820706572207472616e73616374696f6e2e0000000060448201526064016106e3565b600c54640100000000900460ff1615610dfe5760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e7472616374206973207061757365642100000000000000000060448201526064016106e3565b600c5460ff6301000000909104811690821610610e70578260ff16600b54610e269190612255565b341015610e6b5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016106e3565b610f08565b6000610e7c828561230e565b600c5490915060ff630100000090910481169082161115610f0657600c54610eae906301000000900460ff1682612333565b90508060ff16600b54610ec19190612255565b341015610f065760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016106e3565b505b610f15338460ff16611553565b610f1f818461230e565b336000908152600d60205260409020805460ff191660ff92909216919091179055505050565b60006001600160a01b038216610f6e576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610fbe5760405162461bcd60e51b81526004016106e3906121b3565b610fc86000611696565b565b6008546001600160a01b03163314610ff45760405162461bcd60e51b81526004016106e3906121b3565b8051610a1c906009906020840190611d02565b606060038054610713906121e8565b336001600160a01b0383160361103f5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146110d55760405162461bcd60e51b81526004016106e3906121b3565b600c805460ff909216620100000262ff000019909216919091179055565b836daaeb6d7670e522a718067333cd4e3b1561123f57336001600160a01b0382160361112a57611125858585856116e8565b61124b565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611179573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061119d9190612222565b80156112205750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156111fc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112209190612222565b61123f57604051633b79c77360e21b81523360048201526024016106e3565b61124b858585856116e8565b5050505050565b606061125d82611498565b6112c15760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106e3565b60006112cb611733565b905060008151116112eb5760405180602001604052806000815250611319565b806112f584611742565b600a60405160200161130993929190612356565b6040516020818303038152906040525b9392505050565b6008546001600160a01b0316331461134a5760405162461bcd60e51b81526004016106e3906121b3565b600061135d600154600054036000190190565b600c5490915061ffff1661137184836122e8565b61ffff1611156113935760405162461bcd60e51b81526004016106e39061228c565b610862828461ffff16611553565b6008546001600160a01b031633146113cb5760405162461bcd60e51b81526004016106e3906121b3565b6001600160a01b0381166114305760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106e3565b61143981611696565b50565b6008546001600160a01b031633146114665760405162461bcd60e51b81526004016106e3906121b3565b600c805464ff000000001981166401000000009182900460ff1615909102179055565b6001600160a01b03163b151590565b6000816001111580156114ac575060005482105b80156106b3575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b61086283838361184b565b610862838383604051806020016040528060008152506110f3565b610a1c828260405180602001604052806000815250611a38565b6040805160608101825260008082526020820181905291810191909152818060011115801561159d575060005481105b1561167d57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff1615159181018290529061167b5780516001600160a01b031615611611579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611676579392505050565b611611565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6116f384848461184b565b6001600160a01b0383163b15158015611715575061171384848484611a45565b155b156109bd576040516368d2bf6b60e11b815260040160405180910390fd5b606060098054610713906121e8565b6060816000036117695750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611793578061177d816122cf565b915061178c9050600a8361242f565b915061176d565b60008167ffffffffffffffff8111156117ae576117ae611fce565b6040519080825280601f01601f1916602001820160405280156117d8576020820181803683370190505b5090505b8415611843576117ed600183612443565b91506117fa600a8661245a565b611805906030612274565b60f81b81838151811061181a5761181a6122b9565b60200101906001600160f81b031916908160001a90535061183c600a8661242f565b94506117dc565b949350505050565b60006118568261156d565b9050836001600160a01b031681600001516001600160a01b03161461188d5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806118ab57506118ab85336105c3565b806118c65750336118bb84610796565b6001600160a01b0316145b9050806118e657604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661190d57604051633a954ecd60e21b815260040160405180910390fd5b611919600084876114d1565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166119ef5760005482146119ef578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461124b565b6108628383836001611b30565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611a7a90339089908890889060040161246e565b6020604051808303816000875af1925050508015611ab5575060408051601f3d908101601f19168201909252611ab2918101906124ab565b60015b611b13573d808015611ae3576040519150601f19603f3d011682016040523d82523d6000602084013e611ae8565b606091505b508051600003611b0b576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6000546001600160a01b038516611b5957604051622e076360e81b815260040160405180910390fd5b83600003611b7a5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611c2c57506001600160a01b0387163b15155b15611cb4575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611c7d6000888480600101955088611a45565b611c9a576040516368d2bf6b60e11b815260040160405180910390fd5b808203611c32578260005414611caf57600080fd5b611cf9565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808203611cb5575b5060005561124b565b828054611d0e906121e8565b90600052602060002090601f016020900481019282611d305760008555611d76565b82601f10611d4957805160ff1916838001178555611d76565b82800160010185558215611d76579182015b82811115611d76578251825591602001919060010190611d5b565b50611d82929150611d86565b5090565b5b80821115611d825760008155600101611d87565b6001600160e01b03198116811461143957600080fd5b600060208284031215611dc357600080fd5b813561131981611d9b565b803561ffff81168114611de057600080fd5b919050565b600060208284031215611df757600080fd5b61131982611dce565b60005b83811015611e1b578181015183820152602001611e03565b838111156109bd5750506000910152565b60008151808452611e44816020860160208601611e00565b601f01601f19169290920160200192915050565b6020815260006113196020830184611e2c565b600060208284031215611e7d57600080fd5b5035919050565b80356001600160a01b0381168114611de057600080fd5b60008060408385031215611eae57600080fd5b611eb783611e84565b946020939093013593505050565b600080600060608486031215611eda57600080fd5b611ee384611e84565b9250611ef160208501611e84565b9150604084013590509250925092565b803560ff81168114611de057600080fd5b600060208284031215611f2457600080fd5b61131982611f01565b600080600060408486031215611f4257600080fd5b611f4b84611f01565b9250602084013567ffffffffffffffff80821115611f6857600080fd5b818601915086601f830112611f7c57600080fd5b813581811115611f8b57600080fd5b8760208260051b8501011115611fa057600080fd5b6020830194508093505050509250925092565b600060208284031215611fc557600080fd5b61131982611e84565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611fff57611fff611fce565b604051601f8501601f19908116603f0116810190828211818310171561202757612027611fce565b8160405280935085815286868601111561204057600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561206c57600080fd5b813567ffffffffffffffff81111561208357600080fd5b8201601f8101841361209457600080fd5b61184384823560208401611fe4565b801515811461143957600080fd5b600080604083850312156120c457600080fd5b6120cd83611e84565b915060208301356120dd816120a3565b809150509250929050565b600080600080608085870312156120fe57600080fd5b61210785611e84565b935061211560208601611e84565b925060408501359150606085013567ffffffffffffffff81111561213857600080fd5b8501601f8101871361214957600080fd5b61215887823560208401611fe4565b91505092959194509250565b6000806040838503121561217757600080fd5b61218083611e84565b915061218e60208401611e84565b90509250929050565b600080604083850312156121aa57600080fd5b61218083611dce565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c908216806121fc57607f821691505b60208210810361221c57634e487b7160e01b600052602260045260246000fd5b50919050565b60006020828403121561223457600080fd5b8151611319816120a3565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561226f5761226f61223f565b500290565b600082198211156122875761228761223f565b500190565b60208082526013908201527222bc31b2b2b2399036b0bc1039bab838363c9760691b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b6000600182016122e1576122e161223f565b5060010190565b600061ffff8083168185168083038211156123055761230561223f565b01949350505050565b600060ff821660ff84168060ff0382111561232b5761232b61223f565b019392505050565b600060ff821660ff84168082101561234d5761234d61223f565b90039392505050565b6000845160206123698285838a01611e00565b85519184019161237c8184848a01611e00565b8554920191600090600181811c908083168061239957607f831692505b85831081036123b657634e487b7160e01b85526022600452602485fd5b8080156123ca57600181146123db57612408565b60ff19851688528388019550612408565b60008b81526020902060005b858110156124005781548a8201529084019088016123e7565b505083880195505b50939b9a5050505050505050505050565b634e487b7160e01b600052601260045260246000fd5b60008261243e5761243e612419565b500490565b6000828210156124555761245561223f565b500390565b60008261246957612469612419565b500690565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906124a190830184611e2c565b9695505050505050565b6000602082840312156124bd57600080fd5b815161131981611d9b56fea2646970667358221220777ce48af3bd32ce93617599b1485208616f235cc083507ce127ae209b85cf5564736f6c634300080d0033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000043697066733a2f2f6261667962656963747271667a736c697a656776326671717067366a6b726176706473363236707735776769356175723565796c67776a797969342f0000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _uriPrefix (string): ipfs://bafybeictrqfzslizegv2fqqpg6jkravpds626pw5wgi5aur5eylgwjyyi4/

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [2] : 697066733a2f2f6261667962656963747271667a736c697a6567763266717170
Arg [3] : 67366a6b726176706473363236707735776769356175723565796c67776a7979
Arg [4] : 69342f0000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

48637:4304:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24526:305;;;;;;;;;;-1:-1:-1;24526:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;24526:305:0;;;;;;;;51049:97;;;;;;;;;;-1:-1:-1;51049:97:0;;;;;:::i;:::-;;:::i;:::-;;27639:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29142:204::-;;;;;;;;;;-1:-1:-1;29142:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2045:32:1;;;2027:51;;2015:2;2000:18;29142:204:0;1881:203:1;28705:371:0;;;;;;;;;;-1:-1:-1;28705:371:0;;;;;:::i;:::-;;:::i;48818:33::-;;;;;;;;;;;;;;;;;;;2672:25:1;;;2660:2;2645:18;48818:33:0;2526:177:1;23775:303:0;;;;;;;;;;;;23632:1;24029:12;23819:7;24013:13;:28;-1:-1:-1;;24013:46:0;;23775:303;52360:163;;;;;;;;;;-1:-1:-1;52360:163:0;;;;;:::i;:::-;;:::i;52103:144::-;;;;;;;;;;;;;:::i;52531:171::-;;;;;;;;;;-1:-1:-1;52531:171:0;;;;;:::i;:::-;;:::i;51908:76::-;;;;;;;;;;-1:-1:-1;51908:76:0;;;;;:::i;:::-;;:::i;51583:133::-;;;;;;;;;;-1:-1:-1;51583:133:0;;;;;:::i;:::-;;:::i;49048:25::-;;;;;;;;;;-1:-1:-1;49048:25:0;;;;;;;;;;;50572:471;;;;;;;;;;-1:-1:-1;50572:471:0;;;;;:::i;:::-;;:::i;27447:125::-;;;;;;;;;;-1:-1:-1;27447:125:0;;;;;:::i;:::-;;:::i;49296:935::-;;;;;;:::i;:::-;;:::i;24895:206::-;;;;;;;;;;-1:-1:-1;24895:206:0;;;;;:::i;:::-;;:::i;43348:103::-;;;;;;;;;;;;;:::i;51722:102::-;;;;;;;;;;-1:-1:-1;51722:102:0;;;;;:::i;:::-;;:::i;42696:87::-;;;;;;;;;;-1:-1:-1;42769:6:0;;-1:-1:-1;;;;;42769:6:0;42696:87;;48893:36;;;;;;;;;;-1:-1:-1;48893:36:0;;;;;;;;;;;;;;5667:4:1;5655:17;;;5637:36;;5625:2;5610:18;48893:36:0;5495:184:1;27808:104:0;;;;;;;;;;;;;:::i;29418:287::-;;;;;;;;;;-1:-1:-1;29418:287:0;;;;;:::i;:::-;;:::i;51990:107::-;;;;;;;;;;-1:-1:-1;51990:107:0;;;;;:::i;:::-;;:::i;52710:228::-;;;;;;;;;;-1:-1:-1;52710:228:0;;;;;:::i;:::-;;:::i;51152:424::-;;;;;;;;;;-1:-1:-1;51152:424:0;;;;;:::i;:::-;;:::i;48858:30::-;;;;;;;;;;-1:-1:-1;48858:30:0;;;;;;;;;;;6973:6:1;6961:19;;;6943:38;;6931:2;6916:18;48858:30:0;6799:188:1;49080:53:0;;;;;;;;;;-1:-1:-1;49080:53:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;29776:164;;;;;;;;;;-1:-1:-1;29776:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;29897:25:0;;;29873:4;29897:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29776:164;50239:327;;;;;;;;;;-1:-1:-1;50239:327:0;;;;;:::i;:::-;;:::i;43606:201::-;;;;;;;;;;-1:-1:-1;43606:201:0;;;;;:::i;:::-;;:::i;51830:72::-;;;;;;;;;;;;;:::i;48934:43::-;;;;;;;;;;-1:-1:-1;48934:43:0;;;;;;;;;;;24526:305;24628:4;-1:-1:-1;;;;;;24665:40:0;;-1:-1:-1;;;24665:40:0;;:105;;-1:-1:-1;;;;;;;24722:48:0;;-1:-1:-1;;;24722:48:0;24665:105;:158;;;-1:-1:-1;;;;;;;;;;14560:40:0;;;24787:36;24645:178;24526:305;-1:-1:-1;;24526:305:0:o;51049:97::-;42769:6;;-1:-1:-1;;;;;42769:6:0;3001:10;42916:23;42908:69;;;;-1:-1:-1;;;42908:69:0;;;;;;;:::i;:::-;;;;;;;;;51118:9:::1;:22:::0;;-1:-1:-1;;51118:22:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;51049:97::o;27639:100::-;27693:13;27726:5;27719:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27639:100;:::o;29142:204::-;29210:7;29235:16;29243:7;29235;:16::i;:::-;29230:64;;29260:34;;-1:-1:-1;;;29260:34:0;;;;;;;;;;;29230:64;-1:-1:-1;29314:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29314:24:0;;29142:204::o;28705:371::-;28778:13;28794:24;28810:7;28794:15;:24::i;:::-;28778:40;;28839:5;-1:-1:-1;;;;;28833:11:0;:2;-1:-1:-1;;;;;28833:11:0;;28829:48;;28853:24;;-1:-1:-1;;;28853:24:0;;;;;;;;;;;28829:48;3001:10;-1:-1:-1;;;;;28894:21:0;;;;;;:63;;-1:-1:-1;28920:37:0;28937:5;3001:10;29776:164;:::i;28920:37::-;28919:38;28894:63;28890:138;;;28981:35;;-1:-1:-1;;;28981:35:0;;;;;;;;;;;28890:138;29040:28;29049:2;29053:7;29062:5;29040:8;:28::i;:::-;28767:309;28705:371;;:::o;52360:163::-;52461:4;46472:42;47612:43;:47;47608:699;;47899:10;-1:-1:-1;;;;;47891:18:0;;;47887:85;;52478:37:::1;52497:4;52503:2;52507:7;52478:18;:37::i;:::-;47950:7:::0;;47887:85;48032:67;;-1:-1:-1;;;48032:67:0;;48081:4;48032:67;;;8478:34:1;48088:10:0;8528:18:1;;;8521:43;46472:42:0;;48032:40;;8413:18:1;;48032:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;-1:-1:-1;48128:61:0;;-1:-1:-1;;;48128:61:0;;48177:4;48128:61;;;8478:34:1;-1:-1:-1;;;;;8548:15:1;;8528:18;;;8521:43;46472:42:0;;48128:40;;8413:18:1;;48128:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47986:310;;48250:30;;-1:-1:-1;;;48250:30:0;;48269:10;48250:30;;;2027:51:1;2000:18;;48250:30:0;1881:203:1;47986:310:0;52478:37:::1;52497:4;52503:2;52507:7;52478:18;:37::i;:::-;52360:163:::0;;;;:::o;52103:144::-;42769:6;;-1:-1:-1;;;;;42769:6:0;3001:10;42916:23;42908:69;;;;-1:-1:-1;;;42908:69:0;;;;;;;:::i;:::-;52192:39:::1;::::0;52163:21:::1;::::0;52200:10:::1;::::0;52192:39;::::1;;;::::0;52163:21;;52147:13:::1;52192:39:::0;52147:13;52192:39;52163:21;52200:10;52192:39;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;52142:105;52103:144::o:0;52531:171::-;52636:4;46472:42;47612:43;:47;47608:699;;47899:10;-1:-1:-1;;;;;47891:18:0;;;47887:85;;52653:41:::1;52676:4;52682:2;52686:7;52653:22;:41::i;47887:85::-:0;48032:67;;-1:-1:-1;;;48032:67:0;;48081:4;48032:67;;;8478:34:1;48088:10:0;8528:18:1;;;8521:43;46472:42:0;;48032:40;;8413:18:1;;48032:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;-1:-1:-1;48128:61:0;;-1:-1:-1;;;48128:61:0;;48177:4;48128:61;;;8478:34:1;-1:-1:-1;;;;;8548:15:1;;8528:18;;;8521:43;46472:42:0;;48128:40;;8413:18:1;;48128:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47986:310;;48250:30;;-1:-1:-1;;;48250:30:0;;48269:10;48250:30;;;2027:51:1;2000:18;;48250:30:0;1881:203:1;47986:310:0;52653:41:::1;52676:4;52682:2;52686:7;52653:22;:41::i;51908:76::-:0;42769:6;;-1:-1:-1;;;;;42769:6:0;3001:10;42916:23;42908:69;;;;-1:-1:-1;;;42908:69:0;;;;;;;:::i;:::-;51964:4:::1;:12:::0;51908:76::o;51583:133::-;42769:6;;-1:-1:-1;;;;;42769:6:0;3001:10;42916:23;42908:69;;;;-1:-1:-1;;;42908:69:0;;;;;;;:::i;:::-;51655:26:::1;:35:::0;;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;51655:35:0;;::::1;::::0;;;::::1;::::0;;51583:133::o;50572:471::-;42769:6;;-1:-1:-1;;;;;42769:6:0;3001:10;42916:23;42908:69;;;;-1:-1:-1;;;42908:69:0;;;;;;;:::i;:::-;50672:18:::1;50700:13;23632:1:::0;24029:12;23819:7;24013:13;:28;-1:-1:-1;;24013:46:0;;23775:303;50700:13:::1;50672:42:::0;-1:-1:-1;50722:16:0::1;50743:36;50763:9:::0;50743:36:::1;::::0;::::1;;:::i;:::-;50823:9;::::0;50722:57;;-1:-1:-1;50823:9:0::1;::::0;;::::1;::::0;50794:25:::1;::::0;50722:57;;50794:25;::::1;;:::i;:::-;:38;;50786:70;;;;-1:-1:-1::0;;;50786:70:0::1;;;;;;;:::i;:::-;50869:9;50864:116;50884:20:::0;;::::1;50864:116;;;50926:42;50936:9;;50946:1;50936:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;50950:17;50926:42;;:9;:42::i;:::-;50906:3:::0;::::1;::::0;::::1;:::i;:::-;;;;50864:116;;;-1:-1:-1::0;;;;;;50572:471:0:o;27447:125::-;27511:7;27538:21;27551:7;27538:12;:21::i;:::-;:26;;27447:125;-1:-1:-1;;27447:125:0:o;49296:935::-;49355:18;49383:13;23632:1;24029:12;23819:7;24013:13;:28;-1:-1:-1;;24013:46:0;;23775:303;49383:13;49437:10;49405:9;49417:31;;;:19;:31;;;;;;49492:9;;49355:42;;-1:-1:-1;49417:31:0;;;;;49492:9;;;49463:25;;;;49355:42;49463:25;:::i;:::-;:38;;;;49455:70;;;;-1:-1:-1;;;49455:70:0;;;;;;;:::i;:::-;49561:18;;;;;;;49540:17;49554:3;49540:11;:17;:::i;:::-;:39;;;;49532:80;;;;-1:-1:-1;;;49532:80:0;;10523:2:1;49532:80:0;;;10505:21:1;10562:2;10542:18;;;10535:30;10601;10581:18;;;10574:58;10649:18;;49532:80:0;10321:352:1;49532:80:0;49628:6;;;;;;;49627:7;49619:43;;;;-1:-1:-1;;;49619:43:0;;10880:2:1;49619:43:0;;;10862:21:1;10919:2;10899:18;;;10892:30;10958:25;10938:18;;;10931:53;11001:18;;49619:43:0;10678:347:1;49619:43:0;49687:26;;;;;;;;;49680:33;;;;49677:397;;49755:11;49748:18;;:4;;:18;;;;:::i;:::-;49735:9;:31;;49727:63;;;;-1:-1:-1;;;49727:63:0;;11232:2:1;49727:63:0;;;11214:21:1;11271:2;11251:18;;;11244:30;-1:-1:-1;;;11290:18:1;;;11283:49;11349:18;;49727:63:0;11030:343:1;49727:63:0;49677:397;;;49821:16;49840:17;49854:3;49840:11;:17;:::i;:::-;49884:26;;49821:36;;-1:-1:-1;49884:26:0;;;;;;;49871:39;;;;49868:199;;;49957:26;;49944:39;;49957:26;;;;;49944:10;:39;:::i;:::-;49931:52;;50022:10;50015:17;;:4;;:17;;;;:::i;:::-;50002:9;:30;;49994:62;;;;-1:-1:-1;;;49994:62:0;;11232:2:1;49994:62:0;;;11214:21:1;11271:2;11251:18;;;11244:30;-1:-1:-1;;;11290:18:1;;;11283:49;11349:18;;49994:62:0;11030:343:1;49994:62:0;49809:265;49677:397;50080:35;50090:10;50103:11;50080:35;;:9;:35::i;:::-;50156:17;50170:3;50156:11;:17;:::i;:::-;50142:10;50122:31;;;;:19;:31;;;;;:51;;-1:-1:-1;;50122:51:0;;;;;;;;;;;;-1:-1:-1;;;49296:935:0:o;24895:206::-;24959:7;-1:-1:-1;;;;;24983:19:0;;24979:60;;25011:28;;-1:-1:-1;;;25011:28:0;;;;;;;;;;;24979:60;-1:-1:-1;;;;;;25065:19:0;;;;;:12;:19;;;;;:27;;;;24895:206::o;43348:103::-;42769:6;;-1:-1:-1;;;;;42769:6:0;3001:10;42916:23;42908:69;;;;-1:-1:-1;;;42908:69:0;;;;;;;:::i;:::-;43413:30:::1;43440:1;43413:18;:30::i;:::-;43348:103::o:0;51722:102::-;42769:6;;-1:-1:-1;;;;;42769:6:0;3001:10;42916:23;42908:69;;;;-1:-1:-1;;;42908:69:0;;;;;;;:::i;:::-;51796:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;27808:104::-:0;27864:13;27897:7;27890:14;;;;;:::i;29418:287::-;3001:10;-1:-1:-1;;;;;29517:24:0;;;29513:54;;29550:17;;-1:-1:-1;;;29550:17:0;;;;;;;;;;;29513:54;3001:10;29580:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;29580:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;29580:53:0;;;;;;;;;;29649:48;;540:41:1;;;29580:42:0;;3001:10;29649:48;;513:18:1;29649:48:0;;;;;;;29418:287;;:::o;51990:107::-;42769:6;;-1:-1:-1;;;;;42769:6:0;3001:10;42916:23;42908:69;;;;-1:-1:-1;;;42908:69:0;;;;;;;:::i;:::-;52062:18:::1;:27:::0;;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;52062:27:0;;::::1;::::0;;;::::1;::::0;;51990:107::o;52710:228::-;52861:4;46472:42;47612:43;:47;47608:699;;47899:10;-1:-1:-1;;;;;47891:18:0;;;47887:85;;52883:47:::1;52906:4;52912:2;52916:7;52925:4;52883:22;:47::i;:::-;47950:7:::0;;47887:85;48032:67;;-1:-1:-1;;;48032:67:0;;48081:4;48032:67;;;8478:34:1;48088:10:0;8528:18:1;;;8521:43;46472:42:0;;48032:40;;8413:18:1;;48032:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;-1:-1:-1;48128:61:0;;-1:-1:-1;;;48128:61:0;;48177:4;48128:61;;;8478:34:1;-1:-1:-1;;;;;8548:15:1;;8528:18;;;8521:43;46472:42:0;;48128:40;;8413:18:1;;48128:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47986:310;;48250:30;;-1:-1:-1;;;48250:30:0;;48269:10;48250:30;;;2027:51:1;2000:18;;48250:30:0;1881:203:1;47986:310:0;52883:47:::1;52906:4;52912:2;52916:7;52925:4;52883:22;:47::i;:::-;52710:228:::0;;;;;:::o;51152:424::-;51251:13;51292:17;51300:8;51292:7;:17::i;:::-;51276:98;;;;-1:-1:-1;;;51276:98:0;;11780:2:1;51276:98:0;;;11762:21:1;11819:2;11799:18;;;11792:30;11858:34;11838:18;;;11831:62;-1:-1:-1;;;11909:18:1;;;11902:45;11964:19;;51276:98:0;11578:411:1;51276:98:0;51385:28;51416:10;:8;:10::i;:::-;51385:41;;51471:1;51446:14;51440:28;:32;:130;;;;;;;;;;;;;;;;;51508:14;51524:19;:8;:17;:19::i;:::-;51545:9;51491:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51440:130;51433:137;51152:424;-1:-1:-1;;;51152:424:0:o;50239:327::-;42769:6;;-1:-1:-1;;;;;42769:6:0;3001:10;42916:23;42908:69;;;;-1:-1:-1;;;42908:69:0;;;;;;;:::i;:::-;50323:18:::1;50351:13;23632:1:::0;24029:12;23819:7;24013:13;:28;-1:-1:-1;;24013:46:0;;23775:303;50351:13:::1;50409:9;::::0;50323:42;;-1:-1:-1;50409:9:0::1;;50380:25;50394:11:::0;50323:42;50380:25:::1;:::i;:::-;:38;;;;50372:70;;;;-1:-1:-1::0;;;50372:70:0::1;;;;;;;:::i;:::-;50450:34;50460:9;50472:11;50450:34;;:9;:34::i;43606:201::-:0;42769:6;;-1:-1:-1;;;;;42769:6:0;3001:10;42916:23;42908:69;;;;-1:-1:-1;;;42908:69:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;43695:22:0;::::1;43687:73;;;::::0;-1:-1:-1;;;43687:73:0;;13854:2:1;43687:73:0::1;::::0;::::1;13836:21:1::0;13893:2;13873:18;;;13866:30;13932:34;13912:18;;;13905:62;-1:-1:-1;;;13983:18:1;;;13976:36;14029:19;;43687:73:0::1;13652:402:1::0;43687:73:0::1;43771:28;43790:8;43771:18;:28::i;:::-;43606:201:::0;:::o;51830:72::-;42769:6;;-1:-1:-1;;;;;42769:6:0;3001:10;42916:23;42908:69;;;;-1:-1:-1;;;42908:69:0;;;;;;;:::i;:::-;51885:6:::1;::::0;;-1:-1:-1;;51875:16:0;::::1;51885:6:::0;;;;::::1;;;51884:7;51875:16:::0;;::::1;;::::0;;51830:72::o;4368:326::-;-1:-1:-1;;;;;4663:19:0;;:23;;;4368:326::o;31128:187::-;31185:4;31228:7;23632:1;31209:26;;:53;;;;;31249:13;;31239:7;:23;31209:53;:98;;;;-1:-1:-1;;31280:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;31280:27:0;;;;31279:28;;31128:187::o;39298:196::-;39413:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;39413:29:0;-1:-1:-1;;;;;39413:29:0;;;;;;;;;39458:28;;39413:24;;39458:28;;;;;;;39298:196;;;:::o;30007:170::-;30141:28;30151:4;30157:2;30161:7;30141:9;:28::i;30248:185::-;30386:39;30403:4;30409:2;30413:7;30386:39;;;;;;;;;;;;:16;:39::i;31323:104::-;31392:27;31402:2;31406:8;31392:27;;;;;;;;;;;;:9;:27::i;26276:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;26387:7:0;;23632:1;26436:23;;:47;;;;;26470:13;;26463:4;:20;26436:47;26432:886;;;26504:31;26538:17;;;:11;:17;;;;;;;;;26504:51;;;;;;;;;-1:-1:-1;;;;;26504:51:0;;;;-1:-1:-1;;;26504:51:0;;;;;;;;;;;-1:-1:-1;;;26504:51:0;;;;;;;;;;;;;;26574:729;;26624:14;;-1:-1:-1;;;;;26624:28:0;;26620:101;;26688:9;26276:1109;-1:-1:-1;;;26276:1109:0:o;26620:101::-;-1:-1:-1;;;27063:6:0;27108:17;;;;:11;:17;;;;;;;;;27096:29;;;;;;;;;-1:-1:-1;;;;;27096:29:0;;;;;-1:-1:-1;;;27096:29:0;;;;;;;;;;;-1:-1:-1;;;27096:29:0;;;;;;;;;;;;;27156:28;27152:109;;27224:9;26276:1109;-1:-1:-1;;;26276:1109:0:o;27152:109::-;27023:261;;;26485:833;26432:886;27346:31;;-1:-1:-1;;;27346:31:0;;;;;;;;;;;43967:191;44060:6;;;-1:-1:-1;;;;;44077:17:0;;;-1:-1:-1;;;;;;44077:17:0;;;;;;;44110:40;;44060:6;;;44077:17;44060:6;;44110:40;;44041:16;;44110:40;44030:128;43967:191;:::o;30504:369::-;30671:28;30681:4;30687:2;30691:7;30671:9;:28::i;:::-;-1:-1:-1;;;;;30714:13:0;;4663:19;:23;;30714:76;;;;;30734:56;30765:4;30771:2;30775:7;30784:5;30734:30;:56::i;:::-;30733:57;30714:76;30710:156;;;30814:40;;-1:-1:-1;;;30814:40:0;;;;;;;;;;;52255:97;52308:13;52337:9;52330:16;;;;;:::i;483:723::-;539:13;760:5;769:1;760:10;756:53;;-1:-1:-1;;787:10:0;;;;;;;;;;;;-1:-1:-1;;;787:10:0;;;;;483:723::o;756:53::-;834:5;819:12;875:78;882:9;;875:78;;908:8;;;;:::i;:::-;;-1:-1:-1;931:10:0;;-1:-1:-1;939:2:0;931:10;;:::i;:::-;;;875:78;;;963:19;995:6;985:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;985:17:0;;963:39;;1013:154;1020:10;;1013:154;;1047:11;1057:1;1047:11;;:::i;:::-;;-1:-1:-1;1116:10:0;1124:2;1116:5;:10;:::i;:::-;1103:24;;:2;:24;:::i;:::-;1090:39;;1073:6;1080;1073:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1073:56:0;;;;;;;;-1:-1:-1;1144:11:0;1153:2;1144:11;;:::i;:::-;;;1013:154;;;1191:6;483:723;-1:-1:-1;;;;483:723:0:o;34241:2130::-;34356:35;34394:21;34407:7;34394:12;:21::i;:::-;34356:59;;34454:4;-1:-1:-1;;;;;34432:26:0;:13;:18;;;-1:-1:-1;;;;;34432:26:0;;34428:67;;34467:28;;-1:-1:-1;;;34467:28:0;;;;;;;;;;;34428:67;34508:22;3001:10;-1:-1:-1;;;;;34534:20:0;;;;:73;;-1:-1:-1;34571:36:0;34588:4;3001:10;29776:164;:::i;34571:36::-;34534:126;;;-1:-1:-1;3001:10:0;34624:20;34636:7;34624:11;:20::i;:::-;-1:-1:-1;;;;;34624:36:0;;34534:126;34508:153;;34679:17;34674:66;;34705:35;;-1:-1:-1;;;34705:35:0;;;;;;;;;;;34674:66;-1:-1:-1;;;;;34755:16:0;;34751:52;;34780:23;;-1:-1:-1;;;34780:23:0;;;;;;;;;;;34751:52;34924:35;34941:1;34945:7;34954:4;34924:8;:35::i;:::-;-1:-1:-1;;;;;35255:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;35255:31:0;;;;;;;-1:-1:-1;;35255:31:0;;;;;;;35301:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;35301:29:0;;;;;;;;;;;35381:20;;;:11;:20;;;;;;35416:18;;-1:-1:-1;;;;;;35449:49:0;;;;-1:-1:-1;;;35482:15:0;35449:49;;;;;;;;;;35772:11;;35832:24;;;;;35875:13;;35381:20;;35832:24;;35875:13;35871:384;;36085:13;;36070:11;:28;36066:174;;36123:20;;36192:28;;;;36166:54;;-1:-1:-1;;;36166:54:0;-1:-1:-1;;;;;;36166:54:0;;;-1:-1:-1;;;;;36123:20:0;;36166:54;;;;36066:174;35230:1036;;;36302:7;36298:2;-1:-1:-1;;;;;36283:27:0;36292:4;-1:-1:-1;;;;;36283:27:0;;;;;;;;;;;36321:42;52360:163;31790;31913:32;31919:2;31923:8;31933:5;31940:4;31913:5;:32::i;39986:667::-;40170:72;;-1:-1:-1;;;40170:72:0;;40149:4;;-1:-1:-1;;;;;40170:36:0;;;;;:72;;3001:10;;40221:4;;40227:7;;40236:5;;40170:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40170:72:0;;;;;;;;-1:-1:-1;;40170:72:0;;;;;;;;;;;;:::i;:::-;;;40166:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40404:6;:13;40421:1;40404:18;40400:235;;40450:40;;-1:-1:-1;;;40450:40:0;;;;;;;;;;;40400:235;40593:6;40587:13;40578:6;40574:2;40570:15;40563:38;40166:480;-1:-1:-1;;;;;;40289:55:0;-1:-1:-1;;;40289:55:0;;-1:-1:-1;39986:667:0;;;;;;:::o;32212:1775::-;32351:20;32374:13;-1:-1:-1;;;;;32402:16:0;;32398:48;;32427:19;;-1:-1:-1;;;32427:19:0;;;;;;;;;;;32398:48;32461:8;32473:1;32461:13;32457:44;;32483:18;;-1:-1:-1;;;32483:18:0;;;;;;;;;;;32457:44;-1:-1:-1;;;;;32852:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;32911:49:0;;32852:44;;;;;;;;32911:49;;;;-1:-1:-1;;32852:44:0;;;;;;32911:49;;;;;;;;;;;;;;;;32977:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;33027:66:0;;;;-1:-1:-1;;;33077:15:0;33027:66;;;;;;;;;;32977:25;33174:23;;;33218:4;:23;;;;-1:-1:-1;;;;;;33226:13:0;;4663:19;:23;;33226:15;33214:641;;;33262:314;33293:38;;33318:12;;-1:-1:-1;;;;;33293:38:0;;;33310:1;;33293:38;;33310:1;;33293:38;33359:69;33398:1;33402:2;33406:14;;;;;;33422:5;33359:30;:69::i;:::-;33354:174;;33464:40;;-1:-1:-1;;;33464:40:0;;;;;;;;;;;33354:174;33571:3;33555:12;:19;33262:314;;33657:12;33640:13;;:29;33636:43;;33671:8;;;33636:43;33214:641;;;33720:120;33751:40;;33776:14;;;;;-1:-1:-1;;;;;33751:40:0;;;33768:1;;33751:40;;33768:1;;33751:40;33835:3;33819:12;:19;33720:120;;33214:641;-1:-1:-1;33869:13:0;:28;33919:60;52360:163;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:159::-;659:20;;719:6;708:18;;698:29;;688:57;;741:1;738;731:12;688:57;592:159;;;:::o;756:184::-;814:6;867:2;855:9;846:7;842:23;838:32;835:52;;;883:1;880;873:12;835:52;906:28;924:9;906:28;:::i;945:258::-;1017:1;1027:113;1041:6;1038:1;1035:13;1027:113;;;1117:11;;;1111:18;1098:11;;;1091:39;1063:2;1056:10;1027:113;;;1158:6;1155:1;1152:13;1149:48;;;-1:-1:-1;;1193:1:1;1175:16;;1168:27;945:258::o;1208:::-;1250:3;1288:5;1282:12;1315:6;1310:3;1303:19;1331:63;1387:6;1380:4;1375:3;1371:14;1364:4;1357:5;1353:16;1331:63;:::i;:::-;1448:2;1427:15;-1:-1:-1;;1423:29:1;1414:39;;;;1455:4;1410:50;;1208:258;-1:-1:-1;;1208:258:1:o;1471:220::-;1620:2;1609:9;1602:21;1583:4;1640:45;1681:2;1670:9;1666:18;1658:6;1640:45;:::i;1696:180::-;1755:6;1808:2;1796:9;1787:7;1783:23;1779:32;1776:52;;;1824:1;1821;1814:12;1776:52;-1:-1:-1;1847:23:1;;1696:180;-1:-1:-1;1696:180:1:o;2089:173::-;2157:20;;-1:-1:-1;;;;;2206:31:1;;2196:42;;2186:70;;2252:1;2249;2242:12;2267:254;2335:6;2343;2396:2;2384:9;2375:7;2371:23;2367:32;2364:52;;;2412:1;2409;2402:12;2364:52;2435:29;2454:9;2435:29;:::i;:::-;2425:39;2511:2;2496:18;;;;2483:32;;-1:-1:-1;;;2267:254:1:o;2708:328::-;2785:6;2793;2801;2854:2;2842:9;2833:7;2829:23;2825:32;2822:52;;;2870:1;2867;2860:12;2822:52;2893:29;2912:9;2893:29;:::i;:::-;2883:39;;2941:38;2975:2;2964:9;2960:18;2941:38;:::i;:::-;2931:48;;3026:2;3015:9;3011:18;2998:32;2988:42;;2708:328;;;;;:::o;3041:156::-;3107:20;;3167:4;3156:16;;3146:27;;3136:55;;3187:1;3184;3177:12;3202:182;3259:6;3312:2;3300:9;3291:7;3287:23;3283:32;3280:52;;;3328:1;3325;3318:12;3280:52;3351:27;3368:9;3351:27;:::i;3389:685::-;3482:6;3490;3498;3551:2;3539:9;3530:7;3526:23;3522:32;3519:52;;;3567:1;3564;3557:12;3519:52;3590:27;3607:9;3590:27;:::i;:::-;3580:37;;3668:2;3657:9;3653:18;3640:32;3691:18;3732:2;3724:6;3721:14;3718:34;;;3748:1;3745;3738:12;3718:34;3786:6;3775:9;3771:22;3761:32;;3831:7;3824:4;3820:2;3816:13;3812:27;3802:55;;3853:1;3850;3843:12;3802:55;3893:2;3880:16;3919:2;3911:6;3908:14;3905:34;;;3935:1;3932;3925:12;3905:34;3988:7;3983:2;3973:6;3970:1;3966:14;3962:2;3958:23;3954:32;3951:45;3948:65;;;4009:1;4006;3999:12;3948:65;4040:2;4036;4032:11;4022:21;;4062:6;4052:16;;;;;3389:685;;;;;:::o;4079:186::-;4138:6;4191:2;4179:9;4170:7;4166:23;4162:32;4159:52;;;4207:1;4204;4197:12;4159:52;4230:29;4249:9;4230:29;:::i;4270:127::-;4331:10;4326:3;4322:20;4319:1;4312:31;4362:4;4359:1;4352:15;4386:4;4383:1;4376:15;4402:632;4467:5;4497:18;4538:2;4530:6;4527:14;4524:40;;;4544:18;;:::i;:::-;4619:2;4613:9;4587:2;4673:15;;-1:-1:-1;;4669:24:1;;;4695:2;4665:33;4661:42;4649:55;;;4719:18;;;4739:22;;;4716:46;4713:72;;;4765:18;;:::i;:::-;4805:10;4801:2;4794:22;4834:6;4825:15;;4864:6;4856;4849:22;4904:3;4895:6;4890:3;4886:16;4883:25;4880:45;;;4921:1;4918;4911:12;4880:45;4971:6;4966:3;4959:4;4951:6;4947:17;4934:44;5026:1;5019:4;5010:6;5002;4998:19;4994:30;4987:41;;;;4402:632;;;;;:::o;5039:451::-;5108:6;5161:2;5149:9;5140:7;5136:23;5132:32;5129:52;;;5177:1;5174;5167:12;5129:52;5217:9;5204:23;5250:18;5242:6;5239:30;5236:50;;;5282:1;5279;5272:12;5236:50;5305:22;;5358:4;5350:13;;5346:27;-1:-1:-1;5336:55:1;;5387:1;5384;5377:12;5336:55;5410:74;5476:7;5471:2;5458:16;5453:2;5449;5445:11;5410:74;:::i;5684:118::-;5770:5;5763:13;5756:21;5749:5;5746:32;5736:60;;5792:1;5789;5782:12;5807:315;5872:6;5880;5933:2;5921:9;5912:7;5908:23;5904:32;5901:52;;;5949:1;5946;5939:12;5901:52;5972:29;5991:9;5972:29;:::i;:::-;5962:39;;6051:2;6040:9;6036:18;6023:32;6064:28;6086:5;6064:28;:::i;:::-;6111:5;6101:15;;;5807:315;;;;;:::o;6127:667::-;6222:6;6230;6238;6246;6299:3;6287:9;6278:7;6274:23;6270:33;6267:53;;;6316:1;6313;6306:12;6267:53;6339:29;6358:9;6339:29;:::i;:::-;6329:39;;6387:38;6421:2;6410:9;6406:18;6387:38;:::i;:::-;6377:48;;6472:2;6461:9;6457:18;6444:32;6434:42;;6527:2;6516:9;6512:18;6499:32;6554:18;6546:6;6543:30;6540:50;;;6586:1;6583;6576:12;6540:50;6609:22;;6662:4;6654:13;;6650:27;-1:-1:-1;6640:55:1;;6691:1;6688;6681:12;6640:55;6714:74;6780:7;6775:2;6762:16;6757:2;6753;6749:11;6714:74;:::i;:::-;6704:84;;;6127:667;;;;;;;:::o;6992:260::-;7060:6;7068;7121:2;7109:9;7100:7;7096:23;7092:32;7089:52;;;7137:1;7134;7127:12;7089:52;7160:29;7179:9;7160:29;:::i;:::-;7150:39;;7208:38;7242:2;7231:9;7227:18;7208:38;:::i;:::-;7198:48;;6992:260;;;;;:::o;7257:258::-;7324:6;7332;7385:2;7373:9;7364:7;7360:23;7356:32;7353:52;;;7401:1;7398;7391:12;7353:52;7424:28;7442:9;7424:28;:::i;7520:356::-;7722:2;7704:21;;;7741:18;;;7734:30;7800:34;7795:2;7780:18;;7773:62;7867:2;7852:18;;7520:356::o;7881:380::-;7960:1;7956:12;;;;8003;;;8024:61;;8078:4;8070:6;8066:17;8056:27;;8024:61;8131:2;8123:6;8120:14;8100:18;8097:38;8094:161;;8177:10;8172:3;8168:20;8165:1;8158:31;8212:4;8209:1;8202:15;8240:4;8237:1;8230:15;8094:161;;7881:380;;;:::o;8575:245::-;8642:6;8695:2;8683:9;8674:7;8670:23;8666:32;8663:52;;;8711:1;8708;8701:12;8663:52;8743:9;8737:16;8762:28;8784:5;8762:28;:::i;8825:127::-;8886:10;8881:3;8877:20;8874:1;8867:31;8917:4;8914:1;8907:15;8941:4;8938:1;8931:15;8957:168;8997:7;9063:1;9059;9055:6;9051:14;9048:1;9045:21;9040:1;9033:9;9026:17;9022:45;9019:71;;;9070:18;;:::i;:::-;-1:-1:-1;9110:9:1;;8957:168::o;9130:128::-;9170:3;9201:1;9197:6;9194:1;9191:13;9188:39;;;9207:18;;:::i;:::-;-1:-1:-1;9243:9:1;;9130:128::o;9263:343::-;9465:2;9447:21;;;9504:2;9484:18;;;9477:30;-1:-1:-1;;;9538:2:1;9523:18;;9516:49;9597:2;9582:18;;9263:343::o;9611:127::-;9672:10;9667:3;9663:20;9660:1;9653:31;9703:4;9700:1;9693:15;9727:4;9724:1;9717:15;9743:135;9782:3;9803:17;;;9800:43;;9823:18;;:::i;:::-;-1:-1:-1;9870:1:1;9859:13;;9743:135::o;9883:224::-;9922:3;9950:6;9983:2;9980:1;9976:10;10013:2;10010:1;10006:10;10044:3;10040:2;10036:12;10031:3;10028:21;10025:47;;;10052:18;;:::i;:::-;10088:13;;9883:224;-1:-1:-1;;;;9883:224:1:o;10112:204::-;10150:3;10186:4;10183:1;10179:12;10218:4;10215:1;10211:12;10253:3;10247:4;10243:14;10238:3;10235:23;10232:49;;;10261:18;;:::i;:::-;10297:13;;10112:204;-1:-1:-1;;;10112:204:1:o;11378:195::-;11416:4;11453;11450:1;11446:12;11485:4;11482:1;11478:12;11510:3;11505;11502:12;11499:38;;;11517:18;;:::i;:::-;11554:13;;;11378:195;-1:-1:-1;;;11378:195:1:o;12120:1527::-;12344:3;12382:6;12376:13;12408:4;12421:51;12465:6;12460:3;12455:2;12447:6;12443:15;12421:51;:::i;:::-;12535:13;;12494:16;;;;12557:55;12535:13;12494:16;12579:15;;;12557:55;:::i;:::-;12701:13;;12634:20;;;12674:1;;12761;12783:18;;;;12836;;;;12863:93;;12941:4;12931:8;12927:19;12915:31;;12863:93;13004:2;12994:8;12991:16;12971:18;12968:40;12965:167;;-1:-1:-1;;;13031:33:1;;13087:4;13084:1;13077:15;13117:4;13038:3;13105:17;12965:167;13148:18;13175:110;;;;13299:1;13294:328;;;;13141:481;;13175:110;-1:-1:-1;;13210:24:1;;13196:39;;13255:20;;;;-1:-1:-1;13175:110:1;;13294:328;12067:1;12060:14;;;12104:4;12091:18;;13389:1;13403:169;13417:8;13414:1;13411:15;13403:169;;;13499:14;;13484:13;;;13477:37;13542:16;;;;13434:10;;13403:169;;;13407:3;;13603:8;13596:5;13592:20;13585:27;;13141:481;-1:-1:-1;13638:3:1;;12120:1527;-1:-1:-1;;;;;;;;;;;12120:1527:1:o;14059:127::-;14120:10;14115:3;14111:20;14108:1;14101:31;14151:4;14148:1;14141:15;14175:4;14172:1;14165:15;14191:120;14231:1;14257;14247:35;;14262:18;;:::i;:::-;-1:-1:-1;14296:9:1;;14191:120::o;14316:125::-;14356:4;14384:1;14381;14378:8;14375:34;;;14389:18;;:::i;:::-;-1:-1:-1;14426:9:1;;14316:125::o;14446:112::-;14478:1;14504;14494:35;;14509:18;;:::i;:::-;-1:-1:-1;14543:9:1;;14446:112::o;14563:489::-;-1:-1:-1;;;;;14832:15:1;;;14814:34;;14884:15;;14879:2;14864:18;;14857:43;14931:2;14916:18;;14909:34;;;14979:3;14974:2;14959:18;;14952:31;;;14757:4;;15000:46;;15026:19;;15018:6;15000:46;:::i;:::-;14992:54;14563:489;-1:-1:-1;;;;;;14563:489:1:o;15057:249::-;15126:6;15179:2;15167:9;15158:7;15154:23;15150:32;15147:52;;;15195:1;15192;15185:12;15147:52;15227:9;15221:16;15246:30;15270:5;15246:30;:::i

Swarm Source

ipfs://777ce48af3bd32ce93617599b1485208616f235cc083507ce127ae209b85cf55
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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