ETH Price: $3,059.60 (+1.17%)
Gas: 3 Gwei

Token

Poop Doggies (POOP)
 

Overview

Max Total Supply

2,000 POOP

Holders

363

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
kornbread.eth
Balance
5 POOP
0x85c385da631f7cf7436304480040d2f36b791336
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:
PoopDoggies

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 2022-04-25
*/

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


// Creator: Chiru Labs

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 0;
    }

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

// File: PoopDoggies.sol


pragma solidity ^0.8.13;




contract PoopDoggies is ERC721A, Ownable {
    uint256 public MAX_MINTS = 3;
    uint256 MAX_SUPPLY_DEV = 2000;
    uint256 public MAX_SUPPLY = 2000;
    uint256 public mintRate = 0.0025 ether;

    bool public saleIsActive = true;

    string public baseURI = "https://gateway.pinata.cloud/ipfs/QmcXxHxjHUk4mp8AiD1XKzxHfQDcLV6duQSzS25XEngPWZ/";

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

    function mint(uint256 quantity) external payable {
        // _safeMint's second argument now takes in a quantity, not a tokenId.
        require(saleIsActive, "Sale must be active to mint");
        require(quantity <= MAX_MINTS, "Exceeded the limit");
        require(totalSupply() + quantity <= MAX_SUPPLY, "Not enough tokens left");
        require(msg.value >= (mintRate * quantity), "Not enough ether sent");
        _safeMint(msg.sender, quantity);
    }

    function reserveMint(uint256 quantity) public onlyOwner {
        require(quantity <= MAX_SUPPLY_DEV, "Not enough tokens left");
        _safeMint(msg.sender, quantity);
    }

    function flipSaleStatus() public onlyOwner {
        saleIsActive = !saleIsActive;
    }

    function setCost(uint256 _cost) public onlyOwner {
        mintRate = _cost;
    }

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

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

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, Strings.toString(tokenId), ".json")) : "";
    }

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

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"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":[],"name":"MAX_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSaleStatus","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"reserveMint","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":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60036009556107d0600a819055600b556608e1bc9bf04000600c55600d805460ff19166001179055610100604052605160808181529062001ed960a03980516200005291600e916020909101906200011e565b503480156200006057600080fd5b5060405162001f2a38038062001f2a833981016040819052620000839162000291565b8151829082906200009c9060029060208501906200011e565b508051620000b29060039060208401906200011e565b50506000805550620000c433620000cc565b505062000337565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200012c90620002fb565b90600052602060002090601f0160209004810192826200015057600085556200019b565b82601f106200016b57805160ff19168380011785556200019b565b828001600101855582156200019b579182015b828111156200019b5782518255916020019190600101906200017e565b50620001a9929150620001ad565b5090565b5b80821115620001a95760008155600101620001ae565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620001ec57600080fd5b81516001600160401b0380821115620002095762000209620001c4565b604051601f8301601f19908116603f01168101908282118183101715620002345762000234620001c4565b816040528381526020925086838588010111156200025157600080fd5b600091505b8382101562000275578582018301518183018401529082019062000256565b83821115620002875760008385830101525b9695505050505050565b60008060408385031215620002a557600080fd5b82516001600160401b0380821115620002bd57600080fd5b620002cb86838701620001da565b93506020850151915080821115620002e257600080fd5b50620002f185828601620001da565b9150509250929050565b600181811c908216806200031057607f821691505b6020821081036200033157634e487b7160e01b600052602260045260246000fd5b50919050565b611b9280620003476000396000f3fe6080604052600436106101b75760003560e01c806370a08231116100ec578063c87b56dd1161008a578063ce03ec9311610064578063ce03ec931461048a578063e985e9c51461049f578063eb8d2444146104e8578063f2fde38b1461050257600080fd5b8063c87b56dd1461043e578063ca0dcf161461045e578063cce132d11461047457600080fd5b806395d89b41116100c657806395d89b41146103d6578063a0712d68146103eb578063a22cb465146103fe578063b88d4fde1461041e57600080fd5b806370a0823114610383578063715018a6146103a35780638da5cb5b146103b857600080fd5b806332cb6b0c1161015957806344a0d68a1161013357806344a0d68a1461030e57806355f804b31461032e5780636352211e1461034e5780636c0360eb1461036e57600080fd5b806332cb6b0c146102d05780633ccfd60b146102e657806342842e0e146102ee57600080fd5b8063095ea7b311610195578063095ea7b31461024b5780631342ff4c1461026d57806318160ddd1461028d57806323b872dd146102b057600080fd5b806301ffc9a7146101bc57806306fdde03146101f1578063081812fc14610213575b600080fd5b3480156101c857600080fd5b506101dc6101d73660046115d4565b610522565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b50610206610574565b6040516101e89190611650565b34801561021f57600080fd5b5061023361022e366004611663565b610606565b6040516001600160a01b0390911681526020016101e8565b34801561025757600080fd5b5061026b610266366004611698565b61064a565b005b34801561027957600080fd5b5061026b610288366004611663565b6106d7565b34801561029957600080fd5b50600154600054035b6040519081526020016101e8565b3480156102bc57600080fd5b5061026b6102cb3660046116c2565b610762565b3480156102dc57600080fd5b506102a2600b5481565b61026b61076d565b3480156102fa57600080fd5b5061026b6103093660046116c2565b6107d0565b34801561031a57600080fd5b5061026b610329366004611663565b6107eb565b34801561033a57600080fd5b5061026b6103493660046116fe565b61081a565b34801561035a57600080fd5b50610233610369366004611663565b610850565b34801561037a57600080fd5b50610206610862565b34801561038f57600080fd5b506102a261039e366004611770565b6108f0565b3480156103af57600080fd5b5061026b61093f565b3480156103c457600080fd5b506008546001600160a01b0316610233565b3480156103e257600080fd5b50610206610975565b61026b6103f9366004611663565b610984565b34801561040a57600080fd5b5061026b61041936600461178b565b610ad4565b34801561042a57600080fd5b5061026b6104393660046117dd565b610b69565b34801561044a57600080fd5b50610206610459366004611663565b610bba565b34801561046a57600080fd5b506102a2600c5481565b34801561048057600080fd5b506102a260095481565b34801561049657600080fd5b5061026b610c85565b3480156104ab57600080fd5b506101dc6104ba3660046118b9565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156104f457600080fd5b50600d546101dc9060ff1681565b34801561050e57600080fd5b5061026b61051d366004611770565b610cc3565b60006001600160e01b031982166380ac58cd60e01b148061055357506001600160e01b03198216635b5e139f60e01b145b8061056e57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610583906118ec565b80601f01602080910402602001604051908101604052809291908181526020018280546105af906118ec565b80156105fc5780601f106105d1576101008083540402835291602001916105fc565b820191906000526020600020905b8154815290600101906020018083116105df57829003601f168201915b5050505050905090565b600061061182610d5b565b61062e576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061065582610850565b9050806001600160a01b0316836001600160a01b0316036106895760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906106a957506106a781336104ba565b155b156106c7576040516367d9dca160e11b815260040160405180910390fd5b6106d2838383610d86565b505050565b6008546001600160a01b0316331461070a5760405162461bcd60e51b815260040161070190611926565b60405180910390fd5b600a548111156107555760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b6044820152606401610701565b61075f3382610de2565b50565b6106d2838383610e00565b6008546001600160a01b031633146107975760405162461bcd60e51b815260040161070190611926565b6008546040516001600160a01b03909116904780156108fc02916000818181858888f1935050505015801561075f573d6000803e3d6000fd5b6106d283838360405180602001604052806000815250610b69565b6008546001600160a01b031633146108155760405162461bcd60e51b815260040161070190611926565b600c55565b6008546001600160a01b031633146108445760405162461bcd60e51b815260040161070190611926565b6106d2600e8383611525565b600061085b82610ff0565b5192915050565b600e805461086f906118ec565b80601f016020809104026020016040519081016040528092919081815260200182805461089b906118ec565b80156108e85780601f106108bd576101008083540402835291602001916108e8565b820191906000526020600020905b8154815290600101906020018083116108cb57829003601f168201915b505050505081565b60006001600160a01b038216610919576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146109695760405162461bcd60e51b815260040161070190611926565b610973600061110c565b565b606060038054610583906118ec565b600d5460ff166109d65760405162461bcd60e51b815260206004820152601b60248201527f53616c65206d7573742062652061637469766520746f206d696e7400000000006044820152606401610701565b600954811115610a1d5760405162461bcd60e51b8152602060048201526012602482015271115e18d959591959081d1a19481b1a5b5a5d60721b6044820152606401610701565b600b5481610a2e6001546000540390565b610a389190611971565b1115610a7f5760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b6044820152606401610701565b80600c54610a8d9190611989565b3410156107555760405162461bcd60e51b8152602060048201526015602482015274139bdd08195b9bdd59da08195d1a195c881cd95b9d605a1b6044820152606401610701565b336001600160a01b03831603610afd5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610b74848484610e00565b6001600160a01b0383163b15158015610b965750610b948484848461115e565b155b15610bb4576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610bc582610d5b565b610c295760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610701565b6000600e8054610c38906118ec565b905011610c54576040518060200160405280600081525061056e565b600e610c5f8361124a565b604051602001610c709291906119c4565b60405160208183030381529060405292915050565b6008546001600160a01b03163314610caf5760405162461bcd60e51b815260040161070190611926565b600d805460ff19811660ff90911615179055565b6008546001600160a01b03163314610ced5760405162461bcd60e51b815260040161070190611926565b6001600160a01b038116610d525760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610701565b61075f8161110c565b600080548210801561056e575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610dfc82826040518060200160405280600081525061134b565b5050565b6000610e0b82610ff0565b9050836001600160a01b031681600001516001600160a01b031614610e425760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480610e605750610e6085336104ba565b80610e7b575033610e7084610606565b6001600160a01b0316145b905080610e9b57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416610ec257604051633a954ecd60e21b815260040160405180910390fd5b610ece60008487610d86565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116610fa4576000548214610fa4578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6040805160608101825260008082526020820181905291810191909152816000548110156110f357600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906110f15780516001600160a01b031615611087579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156110ec579392505050565b611087565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611193903390899088908890600401611a7e565b6020604051808303816000875af19250505080156111ce575060408051601f3d908101601f191682019092526111cb91810190611abb565b60015b61122c573d8080156111fc576040519150601f19603f3d011682016040523d82523d6000602084013e611201565b606091505b508051600003611224576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816000036112715750506040805180820190915260018152600360fc1b602082015290565b8160005b811561129b578061128581611ad8565b91506112949050600a83611b07565b9150611275565b60008167ffffffffffffffff8111156112b6576112b66117c7565b6040519080825280601f01601f1916602001820160405280156112e0576020820181803683370190505b5090505b8415611242576112f5600183611b1b565b9150611302600a86611b32565b61130d906030611971565b60f81b81838151811061132257611322611b46565b60200101906001600160f81b031916908160001a905350611344600a86611b07565b94506112e4565b6106d283838360016000546001600160a01b03851661137c57604051622e076360e81b815260040160405180910390fd5b8360000361139d5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561144f57506001600160a01b0387163b15155b156114d7575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46114a0600088848060010195508861115e565b6114bd576040516368d2bf6b60e11b815260040160405180910390fd5b8082036114555782600054146114d257600080fd5b61151c565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082036114d8575b50600055610fe9565b828054611531906118ec565b90600052602060002090601f0160209004810192826115535760008555611599565b82601f1061156c5782800160ff19823516178555611599565b82800160010185558215611599579182015b8281111561159957823582559160200191906001019061157e565b506115a59291506115a9565b5090565b5b808211156115a557600081556001016115aa565b6001600160e01b03198116811461075f57600080fd5b6000602082840312156115e657600080fd5b81356115f1816115be565b9392505050565b60005b838110156116135781810151838201526020016115fb565b83811115610bb45750506000910152565b6000815180845261163c8160208601602086016115f8565b601f01601f19169290920160200192915050565b6020815260006115f16020830184611624565b60006020828403121561167557600080fd5b5035919050565b80356001600160a01b038116811461169357600080fd5b919050565b600080604083850312156116ab57600080fd5b6116b48361167c565b946020939093013593505050565b6000806000606084860312156116d757600080fd5b6116e08461167c565b92506116ee6020850161167c565b9150604084013590509250925092565b6000806020838503121561171157600080fd5b823567ffffffffffffffff8082111561172957600080fd5b818501915085601f83011261173d57600080fd5b81358181111561174c57600080fd5b86602082850101111561175e57600080fd5b60209290920196919550909350505050565b60006020828403121561178257600080fd5b6115f18261167c565b6000806040838503121561179e57600080fd5b6117a78361167c565b9150602083013580151581146117bc57600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600080600080608085870312156117f357600080fd5b6117fc8561167c565b935061180a6020860161167c565b925060408501359150606085013567ffffffffffffffff8082111561182e57600080fd5b818701915087601f83011261184257600080fd5b813581811115611854576118546117c7565b604051601f8201601f19908116603f0116810190838211818310171561187c5761187c6117c7565b816040528281528a602084870101111561189557600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156118cc57600080fd5b6118d58361167c565b91506118e36020840161167c565b90509250929050565b600181811c9082168061190057607f821691505b60208210810361192057634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156119845761198461195b565b500190565b60008160001904831182151516156119a3576119a361195b565b500290565b600081516119ba8185602086016115f8565b9290920192915050565b600080845481600182811c9150808316806119e057607f831692505b602080841082036119ff57634e487b7160e01b86526022600452602486fd5b818015611a135760018114611a2457611a51565b60ff19861689528489019650611a51565b60008b81526020902060005b86811015611a495781548b820152908501908301611a30565b505084890196505b505050505050611a75611a6482866119a8565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611ab190830184611624565b9695505050505050565b600060208284031215611acd57600080fd5b81516115f1816115be565b600060018201611aea57611aea61195b565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611b1657611b16611af1565b500490565b600082821015611b2d57611b2d61195b565b500390565b600082611b4157611b41611af1565b500690565b634e487b7160e01b600052603260045260246000fdfea26469706673582212202408af4eda4600eecdc604a33b317a851883fb6a1b5d1571fa5abdea1745e82b64736f6c634300080d003368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d63587848786a48556b346d703841694431584b7a7848665144634c5636647551537a53323558456e6750575a2f00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000c506f6f7020446f676769657300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004504f4f5000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101b75760003560e01c806370a08231116100ec578063c87b56dd1161008a578063ce03ec9311610064578063ce03ec931461048a578063e985e9c51461049f578063eb8d2444146104e8578063f2fde38b1461050257600080fd5b8063c87b56dd1461043e578063ca0dcf161461045e578063cce132d11461047457600080fd5b806395d89b41116100c657806395d89b41146103d6578063a0712d68146103eb578063a22cb465146103fe578063b88d4fde1461041e57600080fd5b806370a0823114610383578063715018a6146103a35780638da5cb5b146103b857600080fd5b806332cb6b0c1161015957806344a0d68a1161013357806344a0d68a1461030e57806355f804b31461032e5780636352211e1461034e5780636c0360eb1461036e57600080fd5b806332cb6b0c146102d05780633ccfd60b146102e657806342842e0e146102ee57600080fd5b8063095ea7b311610195578063095ea7b31461024b5780631342ff4c1461026d57806318160ddd1461028d57806323b872dd146102b057600080fd5b806301ffc9a7146101bc57806306fdde03146101f1578063081812fc14610213575b600080fd5b3480156101c857600080fd5b506101dc6101d73660046115d4565b610522565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b50610206610574565b6040516101e89190611650565b34801561021f57600080fd5b5061023361022e366004611663565b610606565b6040516001600160a01b0390911681526020016101e8565b34801561025757600080fd5b5061026b610266366004611698565b61064a565b005b34801561027957600080fd5b5061026b610288366004611663565b6106d7565b34801561029957600080fd5b50600154600054035b6040519081526020016101e8565b3480156102bc57600080fd5b5061026b6102cb3660046116c2565b610762565b3480156102dc57600080fd5b506102a2600b5481565b61026b61076d565b3480156102fa57600080fd5b5061026b6103093660046116c2565b6107d0565b34801561031a57600080fd5b5061026b610329366004611663565b6107eb565b34801561033a57600080fd5b5061026b6103493660046116fe565b61081a565b34801561035a57600080fd5b50610233610369366004611663565b610850565b34801561037a57600080fd5b50610206610862565b34801561038f57600080fd5b506102a261039e366004611770565b6108f0565b3480156103af57600080fd5b5061026b61093f565b3480156103c457600080fd5b506008546001600160a01b0316610233565b3480156103e257600080fd5b50610206610975565b61026b6103f9366004611663565b610984565b34801561040a57600080fd5b5061026b61041936600461178b565b610ad4565b34801561042a57600080fd5b5061026b6104393660046117dd565b610b69565b34801561044a57600080fd5b50610206610459366004611663565b610bba565b34801561046a57600080fd5b506102a2600c5481565b34801561048057600080fd5b506102a260095481565b34801561049657600080fd5b5061026b610c85565b3480156104ab57600080fd5b506101dc6104ba3660046118b9565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156104f457600080fd5b50600d546101dc9060ff1681565b34801561050e57600080fd5b5061026b61051d366004611770565b610cc3565b60006001600160e01b031982166380ac58cd60e01b148061055357506001600160e01b03198216635b5e139f60e01b145b8061056e57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610583906118ec565b80601f01602080910402602001604051908101604052809291908181526020018280546105af906118ec565b80156105fc5780601f106105d1576101008083540402835291602001916105fc565b820191906000526020600020905b8154815290600101906020018083116105df57829003601f168201915b5050505050905090565b600061061182610d5b565b61062e576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061065582610850565b9050806001600160a01b0316836001600160a01b0316036106895760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906106a957506106a781336104ba565b155b156106c7576040516367d9dca160e11b815260040160405180910390fd5b6106d2838383610d86565b505050565b6008546001600160a01b0316331461070a5760405162461bcd60e51b815260040161070190611926565b60405180910390fd5b600a548111156107555760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b6044820152606401610701565b61075f3382610de2565b50565b6106d2838383610e00565b6008546001600160a01b031633146107975760405162461bcd60e51b815260040161070190611926565b6008546040516001600160a01b03909116904780156108fc02916000818181858888f1935050505015801561075f573d6000803e3d6000fd5b6106d283838360405180602001604052806000815250610b69565b6008546001600160a01b031633146108155760405162461bcd60e51b815260040161070190611926565b600c55565b6008546001600160a01b031633146108445760405162461bcd60e51b815260040161070190611926565b6106d2600e8383611525565b600061085b82610ff0565b5192915050565b600e805461086f906118ec565b80601f016020809104026020016040519081016040528092919081815260200182805461089b906118ec565b80156108e85780601f106108bd576101008083540402835291602001916108e8565b820191906000526020600020905b8154815290600101906020018083116108cb57829003601f168201915b505050505081565b60006001600160a01b038216610919576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146109695760405162461bcd60e51b815260040161070190611926565b610973600061110c565b565b606060038054610583906118ec565b600d5460ff166109d65760405162461bcd60e51b815260206004820152601b60248201527f53616c65206d7573742062652061637469766520746f206d696e7400000000006044820152606401610701565b600954811115610a1d5760405162461bcd60e51b8152602060048201526012602482015271115e18d959591959081d1a19481b1a5b5a5d60721b6044820152606401610701565b600b5481610a2e6001546000540390565b610a389190611971565b1115610a7f5760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b6044820152606401610701565b80600c54610a8d9190611989565b3410156107555760405162461bcd60e51b8152602060048201526015602482015274139bdd08195b9bdd59da08195d1a195c881cd95b9d605a1b6044820152606401610701565b336001600160a01b03831603610afd5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610b74848484610e00565b6001600160a01b0383163b15158015610b965750610b948484848461115e565b155b15610bb4576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610bc582610d5b565b610c295760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610701565b6000600e8054610c38906118ec565b905011610c54576040518060200160405280600081525061056e565b600e610c5f8361124a565b604051602001610c709291906119c4565b60405160208183030381529060405292915050565b6008546001600160a01b03163314610caf5760405162461bcd60e51b815260040161070190611926565b600d805460ff19811660ff90911615179055565b6008546001600160a01b03163314610ced5760405162461bcd60e51b815260040161070190611926565b6001600160a01b038116610d525760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610701565b61075f8161110c565b600080548210801561056e575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610dfc82826040518060200160405280600081525061134b565b5050565b6000610e0b82610ff0565b9050836001600160a01b031681600001516001600160a01b031614610e425760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480610e605750610e6085336104ba565b80610e7b575033610e7084610606565b6001600160a01b0316145b905080610e9b57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416610ec257604051633a954ecd60e21b815260040160405180910390fd5b610ece60008487610d86565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116610fa4576000548214610fa4578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6040805160608101825260008082526020820181905291810191909152816000548110156110f357600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906110f15780516001600160a01b031615611087579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156110ec579392505050565b611087565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611193903390899088908890600401611a7e565b6020604051808303816000875af19250505080156111ce575060408051601f3d908101601f191682019092526111cb91810190611abb565b60015b61122c573d8080156111fc576040519150601f19603f3d011682016040523d82523d6000602084013e611201565b606091505b508051600003611224576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816000036112715750506040805180820190915260018152600360fc1b602082015290565b8160005b811561129b578061128581611ad8565b91506112949050600a83611b07565b9150611275565b60008167ffffffffffffffff8111156112b6576112b66117c7565b6040519080825280601f01601f1916602001820160405280156112e0576020820181803683370190505b5090505b8415611242576112f5600183611b1b565b9150611302600a86611b32565b61130d906030611971565b60f81b81838151811061132257611322611b46565b60200101906001600160f81b031916908160001a905350611344600a86611b07565b94506112e4565b6106d283838360016000546001600160a01b03851661137c57604051622e076360e81b815260040160405180910390fd5b8360000361139d5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561144f57506001600160a01b0387163b15155b156114d7575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46114a0600088848060010195508861115e565b6114bd576040516368d2bf6b60e11b815260040160405180910390fd5b8082036114555782600054146114d257600080fd5b61151c565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082036114d8575b50600055610fe9565b828054611531906118ec565b90600052602060002090601f0160209004810192826115535760008555611599565b82601f1061156c5782800160ff19823516178555611599565b82800160010185558215611599579182015b8281111561159957823582559160200191906001019061157e565b506115a59291506115a9565b5090565b5b808211156115a557600081556001016115aa565b6001600160e01b03198116811461075f57600080fd5b6000602082840312156115e657600080fd5b81356115f1816115be565b9392505050565b60005b838110156116135781810151838201526020016115fb565b83811115610bb45750506000910152565b6000815180845261163c8160208601602086016115f8565b601f01601f19169290920160200192915050565b6020815260006115f16020830184611624565b60006020828403121561167557600080fd5b5035919050565b80356001600160a01b038116811461169357600080fd5b919050565b600080604083850312156116ab57600080fd5b6116b48361167c565b946020939093013593505050565b6000806000606084860312156116d757600080fd5b6116e08461167c565b92506116ee6020850161167c565b9150604084013590509250925092565b6000806020838503121561171157600080fd5b823567ffffffffffffffff8082111561172957600080fd5b818501915085601f83011261173d57600080fd5b81358181111561174c57600080fd5b86602082850101111561175e57600080fd5b60209290920196919550909350505050565b60006020828403121561178257600080fd5b6115f18261167c565b6000806040838503121561179e57600080fd5b6117a78361167c565b9150602083013580151581146117bc57600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600080600080608085870312156117f357600080fd5b6117fc8561167c565b935061180a6020860161167c565b925060408501359150606085013567ffffffffffffffff8082111561182e57600080fd5b818701915087601f83011261184257600080fd5b813581811115611854576118546117c7565b604051601f8201601f19908116603f0116810190838211818310171561187c5761187c6117c7565b816040528281528a602084870101111561189557600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156118cc57600080fd5b6118d58361167c565b91506118e36020840161167c565b90509250929050565b600181811c9082168061190057607f821691505b60208210810361192057634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156119845761198461195b565b500190565b60008160001904831182151516156119a3576119a361195b565b500290565b600081516119ba8185602086016115f8565b9290920192915050565b600080845481600182811c9150808316806119e057607f831692505b602080841082036119ff57634e487b7160e01b86526022600452602486fd5b818015611a135760018114611a2457611a51565b60ff19861689528489019650611a51565b60008b81526020902060005b86811015611a495781548b820152908501908301611a30565b505084890196505b505050505050611a75611a6482866119a8565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611ab190830184611624565b9695505050505050565b600060208284031215611acd57600080fd5b81516115f1816115be565b600060018201611aea57611aea61195b565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611b1657611b16611af1565b500490565b600082821015611b2d57611b2d61195b565b500390565b600082611b4157611b41611af1565b500690565b634e487b7160e01b600052603260045260246000fdfea26469706673582212202408af4eda4600eecdc604a33b317a851883fb6a1b5d1571fa5abdea1745e82b64736f6c634300080d0033

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

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000c506f6f7020446f676769657300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004504f4f5000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Poop Doggies
Arg [1] : _symbol (string): POOP

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [3] : 506f6f7020446f67676965730000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [5] : 504f4f5000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

44781:1957:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26972:305;;;;;;;;;;-1:-1:-1;26972:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;26972:305:0;;;;;;;;30085:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;31588:204::-;;;;;;;;;;-1:-1:-1;31588:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1714:32:1;;;1696:51;;1684:2;1669:18;31588:204:0;1550:203:1;31151:371:0;;;;;;;;;;-1:-1:-1;31151:371:0;;;;;:::i;:::-;;:::i;:::-;;45708:178;;;;;;;;;;-1:-1:-1;45708:178:0;;;;;:::i;:::-;;:::i;26221:303::-;;;;;;;;;;-1:-1:-1;26475:12:0;;26265:7;26459:13;:28;26221:303;;;2341:25:1;;;2329:2;2314:18;26221:303:0;2195:177:1;32453:170:0;;;;;;;;;;-1:-1:-1;32453:170:0;;;;;:::i;:::-;;:::i;44900:32::-;;;;;;;;;;;;;;;;46084:114;;;:::i;32694:185::-;;;;;;;;;;-1:-1:-1;32694:185:0;;;;;:::i;:::-;;:::i;45992:84::-;;;;;;;;;;-1:-1:-1;45992:84:0;;;;;:::i;:::-;;:::i;46625:108::-;;;;;;;;;;-1:-1:-1;46625:108:0;;;;;:::i;:::-;;:::i;29893:125::-;;;;;;;;;;-1:-1:-1;29893:125:0;;;;;:::i;:::-;;:::i;45026:107::-;;;;;;;;;;;;;:::i;27341:206::-;;;;;;;;;;-1:-1:-1;27341:206:0;;;;;:::i;:::-;;:::i;4730:103::-;;;;;;;;;;;;;:::i;4079:87::-;;;;;;;;;;-1:-1:-1;4152:6:0;;-1:-1:-1;;;;;4152:6:0;4079:87;;30254:104;;;;;;;;;;;;;:::i;45232:468::-;;;;;;:::i;:::-;;:::i;31864:287::-;;;;;;;;;;-1:-1:-1;31864:287:0;;;;;:::i;:::-;;:::i;32950:369::-;;;;;;;;;;-1:-1:-1;32950:369:0;;;;;:::i;:::-;;:::i;46314:303::-;;;;;;;;;;-1:-1:-1;46314:303:0;;;;;:::i;:::-;;:::i;44939:38::-;;;;;;;;;;;;;;;;44829:28;;;;;;;;;;;;;;;;45894:90;;;;;;;;;;;;;:::i;32222:164::-;;;;;;;;;;-1:-1:-1;32222:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;32343:25:0;;;32319:4;32343:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;32222:164;44986:31;;;;;;;;;;-1:-1:-1;44986:31:0;;;;;;;;4988:201;;;;;;;;;;-1:-1:-1;4988:201:0;;;;;:::i;:::-;;:::i;26972:305::-;27074:4;-1:-1:-1;;;;;;27111:40:0;;-1:-1:-1;;;27111:40:0;;:105;;-1:-1:-1;;;;;;;27168:48:0;;-1:-1:-1;;;27168:48:0;27111:105;:158;;;-1:-1:-1;;;;;;;;;;16972:40:0;;;27233:36;27091:178;26972:305;-1:-1:-1;;26972:305:0:o;30085:100::-;30139:13;30172:5;30165:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30085:100;:::o;31588:204::-;31656:7;31681:16;31689:7;31681;:16::i;:::-;31676:64;;31706:34;;-1:-1:-1;;;31706:34:0;;;;;;;;;;;31676:64;-1:-1:-1;31760:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;31760:24:0;;31588:204::o;31151:371::-;31224:13;31240:24;31256:7;31240:15;:24::i;:::-;31224:40;;31285:5;-1:-1:-1;;;;;31279:11:0;:2;-1:-1:-1;;;;;31279:11:0;;31275:48;;31299:24;;-1:-1:-1;;;31299:24:0;;;;;;;;;;;31275:48;2883:10;-1:-1:-1;;;;;31340:21:0;;;;;;:63;;-1:-1:-1;31366:37:0;31383:5;2883:10;32222:164;:::i;31366:37::-;31365:38;31340:63;31336:138;;;31427:35;;-1:-1:-1;;;31427:35:0;;;;;;;;;;;31336:138;31486:28;31495:2;31499:7;31508:5;31486:8;:28::i;:::-;31213:309;31151:371;;:::o;45708:178::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;;;;;;;;;45795:14:::1;;45783:8;:26;;45775:61;;;::::0;-1:-1:-1;;;45775:61:0;;6338:2:1;45775:61:0::1;::::0;::::1;6320:21:1::0;6377:2;6357:18;;;6350:30;-1:-1:-1;;;6396:18:1;;;6389:52;6458:18;;45775:61:0::1;6136:346:1::0;45775:61:0::1;45847:31;45857:10;45869:8;45847:9;:31::i;:::-;45708:178:::0;:::o;32453:170::-;32587:28;32597:4;32603:2;32607:7;32587:9;:28::i;46084:114::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;4152:6;;46142:48:::1;::::0;-1:-1:-1;;;;;4152:6:0;;;;46168:21:::1;46142:48:::0;::::1;;;::::0;::::1;::::0;;;46168:21;4152:6;46142:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;32694:185:::0;32832:39;32849:4;32855:2;32859:7;32832:39;;;;;;;;;;;;:16;:39::i;45992:84::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;46052:8:::1;:16:::0;45992:84::o;46625:108::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;46704:21:::1;:7;46714:11:::0;;46704:21:::1;:::i;29893:125::-:0;29957:7;29984:21;29997:7;29984:12;:21::i;:::-;:26;;29893:125;-1:-1:-1;;29893:125:0:o;45026:107::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27341:206::-;27405:7;-1:-1:-1;;;;;27429:19:0;;27425:60;;27457:28;;-1:-1:-1;;;27457:28:0;;;;;;;;;;;27425:60;-1:-1:-1;;;;;;27511:19:0;;;;;:12;:19;;;;;:27;;;;27341:206::o;4730:103::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;4795:30:::1;4822:1;4795:18;:30::i;:::-;4730:103::o:0;30254:104::-;30310:13;30343:7;30336:14;;;;;:::i;45232:468::-;45380:12;;;;45372:52;;;;-1:-1:-1;;;45372:52:0;;6689:2:1;45372:52:0;;;6671:21:1;6728:2;6708:18;;;6701:30;6767:29;6747:18;;;6740:57;6814:18;;45372:52:0;6487:351:1;45372:52:0;45455:9;;45443:8;:21;;45435:52;;;;-1:-1:-1;;;45435:52:0;;7045:2:1;45435:52:0;;;7027:21:1;7084:2;7064:18;;;7057:30;-1:-1:-1;;;7103:18:1;;;7096:48;7161:18;;45435:52:0;6843:342:1;45435:52:0;45534:10;;45522:8;45506:13;26475:12;;26265:7;26459:13;:28;;26221:303;45506:13;:24;;;;:::i;:::-;:38;;45498:73;;;;-1:-1:-1;;;45498:73:0;;6338:2:1;45498:73:0;;;6320:21:1;6377:2;6357:18;;;6350:30;-1:-1:-1;;;6396:18:1;;;6389:52;6458:18;;45498:73:0;6136:346:1;45498:73:0;45615:8;45604;;:19;;;;:::i;:::-;45590:9;:34;;45582:68;;;;-1:-1:-1;;;45582:68:0;;7830:2:1;45582:68:0;;;7812:21:1;7869:2;7849:18;;;7842:30;-1:-1:-1;;;7888:18:1;;;7881:51;7949:18;;45582:68:0;7628:345:1;31864:287:0;2883:10;-1:-1:-1;;;;;31963:24:0;;;31959:54;;31996:17;;-1:-1:-1;;;31996:17:0;;;;;;;;;;;31959:54;2883:10;32026:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;32026:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;32026:53:0;;;;;;;;;;32095:48;;540:41:1;;;32026:42:0;;2883:10;32095:48;;513:18:1;32095:48:0;;;;;;;31864:287;;:::o;32950:369::-;33117:28;33127:4;33133:2;33137:7;33117:9;:28::i;:::-;-1:-1:-1;;;;;33160:13:0;;7075:19;:23;;33160:76;;;;;33180:56;33211:4;33217:2;33221:7;33230:5;33180:30;:56::i;:::-;33179:57;33160:76;33156:156;;;33260:40;;-1:-1:-1;;;33260:40:0;;;;;;;;;;;33156:156;32950:369;;;;:::o;46314:303::-;46387:13;46421:16;46429:7;46421;:16::i;:::-;46413:76;;;;-1:-1:-1;;;46413:76:0;;8180:2:1;46413:76:0;;;8162:21:1;8219:2;8199:18;;;8192:30;8258:34;8238:18;;;8231:62;-1:-1:-1;;;8309:18:1;;;8302:45;8364:19;;46413:76:0;7978:411:1;46413:76:0;46531:1;46513:7;46507:21;;;;;:::i;:::-;;;:25;:102;;;;;;;;;;;;;;;;;46559:7;46568:25;46585:7;46568:16;:25::i;:::-;46542:61;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46500:109;46314:303;-1:-1:-1;;46314:303:0:o;45894:90::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;45964:12:::1;::::0;;-1:-1:-1;;45948:28:0;::::1;45964:12;::::0;;::::1;45963:13;45948:28;::::0;;45894:90::o;4988:201::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5077:22:0;::::1;5069:73;;;::::0;-1:-1:-1;;;5069:73:0;;10336:2:1;5069:73:0::1;::::0;::::1;10318:21:1::0;10375:2;10355:18;;;10348:30;10414:34;10394:18;;;10387:62;-1:-1:-1;;;10465:18:1;;;10458:36;10511:19;;5069:73:0::1;10134:402:1::0;5069:73:0::1;5153:28;5172:8;5153:18;:28::i;33574:174::-:0;33631:4;33695:13;;33685:7;:23;33655:85;;;;-1:-1:-1;;33713:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;33713:27:0;;;;33712:28;;33574:174::o;41731:196::-;41846:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;41846:29:0;-1:-1:-1;;;;;41846:29:0;;;;;;;;;41891:28;;41846:24;;41891:28;;;;;;;41731:196;;;:::o;33756:104::-;33825:27;33835:2;33839:8;33825:27;;;;;;;;;;;;:9;:27::i;:::-;33756:104;;:::o;36674:2130::-;36789:35;36827:21;36840:7;36827:12;:21::i;:::-;36789:59;;36887:4;-1:-1:-1;;;;;36865:26:0;:13;:18;;;-1:-1:-1;;;;;36865:26:0;;36861:67;;36900:28;;-1:-1:-1;;;36900:28:0;;;;;;;;;;;36861:67;36941:22;2883:10;-1:-1:-1;;;;;36967:20:0;;;;:73;;-1:-1:-1;37004:36:0;37021:4;2883:10;32222:164;:::i;37004:36::-;36967:126;;;-1:-1:-1;2883:10:0;37057:20;37069:7;37057:11;:20::i;:::-;-1:-1:-1;;;;;37057:36:0;;36967:126;36941:153;;37112:17;37107:66;;37138:35;;-1:-1:-1;;;37138:35:0;;;;;;;;;;;37107:66;-1:-1:-1;;;;;37188:16:0;;37184:52;;37213:23;;-1:-1:-1;;;37213:23:0;;;;;;;;;;;37184:52;37357:35;37374:1;37378:7;37387:4;37357:8;:35::i;:::-;-1:-1:-1;;;;;37688:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;37688:31:0;;;;;;;-1:-1:-1;;37688:31:0;;;;;;;37734:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;37734:29:0;;;;;;;;;;;37814:20;;;:11;:20;;;;;;37849:18;;-1:-1:-1;;;;;;37882:49:0;;;;-1:-1:-1;;;37915:15:0;37882:49;;;;;;;;;;38205:11;;38265:24;;;;;38308:13;;37814:20;;38265:24;;38308:13;38304:384;;38518:13;;38503:11;:28;38499:174;;38556:20;;38625:28;;;;38599:54;;-1:-1:-1;;;38599:54:0;-1:-1:-1;;;;;;38599:54:0;;;-1:-1:-1;;;;;38556:20:0;;38599:54;;;;38499:174;37663:1036;;;38735:7;38731:2;-1:-1:-1;;;;;38716:27:0;38725:4;-1:-1:-1;;;;;38716:27:0;;;;;;;;;;;38754:42;36778:2026;;36674:2130;;;:::o;28722:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;28833:7:0;28916:13;;28909:4;:20;28878:886;;;28950:31;28984:17;;;:11;:17;;;;;;;;;28950:51;;;;;;;;;-1:-1:-1;;;;;28950:51:0;;;;-1:-1:-1;;;28950:51:0;;;;;;;;;;;-1:-1:-1;;;28950:51:0;;;;;;;;;;;;;;29020:729;;29070:14;;-1:-1:-1;;;;;29070:28:0;;29066:101;;29134:9;28722:1109;-1:-1:-1;;;28722:1109:0:o;29066:101::-;-1:-1:-1;;;29509:6:0;29554:17;;;;:11;:17;;;;;;;;;29542:29;;;;;;;;;-1:-1:-1;;;;;29542:29:0;;;;;-1:-1:-1;;;29542:29:0;;;;;;;;;;;-1:-1:-1;;;29542:29:0;;;;;;;;;;;;;29602:28;29598:109;;29670:9;28722:1109;-1:-1:-1;;;28722:1109:0:o;29598:109::-;29469:261;;;28931:833;28878:886;29792:31;;-1:-1:-1;;;29792:31:0;;;;;;;;;;;5349:191;5442:6;;;-1:-1:-1;;;;;5459:17:0;;;-1:-1:-1;;;;;;5459:17:0;;;;;;;5492:40;;5442:6;;;5459:17;5442:6;;5492:40;;5423:16;;5492:40;5412:128;5349:191;:::o;42419:667::-;42603:72;;-1:-1:-1;;;42603:72:0;;42582:4;;-1:-1:-1;;;;;42603:36:0;;;;;:72;;2883:10;;42654:4;;42660:7;;42669:5;;42603:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42603:72:0;;;;;;;;-1:-1:-1;;42603:72:0;;;;;;;;;;;;:::i;:::-;;;42599:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42837:6;:13;42854:1;42837:18;42833:235;;42883:40;;-1:-1:-1;;;42883:40:0;;;;;;;;;;;42833:235;43026:6;43020:13;43011:6;43007:2;43003:15;42996:38;42599:480;-1:-1:-1;;;;;;42722:55:0;-1:-1:-1;;;42722:55:0;;-1:-1:-1;42599:480:0;42419:667;;;;;;:::o;365:723::-;421:13;642:5;651:1;642:10;638:53;;-1:-1:-1;;669:10:0;;;;;;;;;;;;-1:-1:-1;;;669:10:0;;;;;365:723::o;638:53::-;716:5;701:12;757:78;764:9;;757:78;;790:8;;;;:::i;:::-;;-1:-1:-1;813:10:0;;-1:-1:-1;821:2:0;813:10;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;867:17:0;;845:39;;895:154;902:10;;895:154;;929:11;939:1;929:11;;:::i;:::-;;-1:-1:-1;998:10:0;1006:2;998:5;:10;:::i;:::-;985:24;;:2;:24;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;955:56:0;;;;;;;;-1:-1:-1;1026:11:0;1035:2;1026:11;;:::i;:::-;;;895:154;;34223:163;34346:32;34352:2;34356:8;34366:5;34373:4;34784:20;34807:13;-1:-1:-1;;;;;34835:16:0;;34831:48;;34860:19;;-1:-1:-1;;;34860:19:0;;;;;;;;;;;34831:48;34894:8;34906:1;34894:13;34890:44;;34916:18;;-1:-1:-1;;;34916:18:0;;;;;;;;;;;34890:44;-1:-1:-1;;;;;35285:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;35344:49:0;;35285:44;;;;;;;;35344:49;;;;-1:-1:-1;;35285:44:0;;;;;;35344:49;;;;;;;;;;;;;;;;35410:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;35460:66:0;;;;-1:-1:-1;;;35510:15:0;35460:66;;;;;;;;;;35410:25;35607:23;;;35651:4;:23;;;;-1:-1:-1;;;;;;35659:13:0;;7075:19;:23;;35659:15;35647:641;;;35695:314;35726:38;;35751:12;;-1:-1:-1;;;;;35726:38:0;;;35743:1;;35726:38;;35743:1;;35726:38;35792:69;35831:1;35835:2;35839:14;;;;;;35855:5;35792:30;:69::i;:::-;35787:174;;35897:40;;-1:-1:-1;;;35897:40:0;;;;;;;;;;;35787:174;36004:3;35988:12;:19;35695:314;;36090:12;36073:13;;:29;36069:43;;36104:8;;;36069:43;35647:641;;;36153:120;36184:40;;36209:14;;;;;-1:-1:-1;;;;;36184:40:0;;;36201:1;;36184:40;;36201:1;;36184:40;36268:3;36252:12;:19;36153:120;;35647:641;-1:-1:-1;36302:13:0;:28;36352:60;32950:369;-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;:::-;384:5;150:245;-1:-1:-1;;;150:245:1:o;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:269::-;908:3;946:5;940:12;973:6;968:3;961:19;989:63;1045:6;1038:4;1033:3;1029:14;1022:4;1015:5;1011:16;989:63;:::i;:::-;1106:2;1085:15;-1:-1:-1;;1081:29:1;1072:39;;;;1113:4;1068:50;;855:269;-1:-1:-1;;855:269:1:o;1129:231::-;1278:2;1267:9;1260:21;1241:4;1298:56;1350:2;1339:9;1335:18;1327:6;1298:56;:::i;1365:180::-;1424:6;1477:2;1465:9;1456:7;1452:23;1448:32;1445:52;;;1493:1;1490;1483:12;1445:52;-1:-1:-1;1516:23:1;;1365:180;-1:-1:-1;1365:180:1:o;1758:173::-;1826:20;;-1:-1:-1;;;;;1875:31:1;;1865:42;;1855:70;;1921:1;1918;1911:12;1855:70;1758:173;;;:::o;1936:254::-;2004:6;2012;2065:2;2053:9;2044:7;2040:23;2036:32;2033:52;;;2081:1;2078;2071:12;2033:52;2104:29;2123:9;2104:29;:::i;:::-;2094:39;2180:2;2165:18;;;;2152:32;;-1:-1:-1;;;1936:254:1:o;2377:328::-;2454:6;2462;2470;2523:2;2511:9;2502:7;2498:23;2494:32;2491:52;;;2539:1;2536;2529:12;2491:52;2562:29;2581:9;2562:29;:::i;:::-;2552:39;;2610:38;2644:2;2633:9;2629:18;2610:38;:::i;:::-;2600:48;;2695:2;2684:9;2680:18;2667:32;2657:42;;2377:328;;;;;:::o;2710:592::-;2781:6;2789;2842:2;2830:9;2821:7;2817:23;2813:32;2810:52;;;2858:1;2855;2848:12;2810:52;2898:9;2885:23;2927:18;2968:2;2960:6;2957:14;2954:34;;;2984:1;2981;2974:12;2954:34;3022:6;3011:9;3007:22;2997:32;;3067:7;3060:4;3056:2;3052:13;3048:27;3038:55;;3089:1;3086;3079:12;3038:55;3129:2;3116:16;3155:2;3147:6;3144:14;3141:34;;;3171:1;3168;3161:12;3141:34;3216:7;3211:2;3202:6;3198:2;3194:15;3190:24;3187:37;3184:57;;;3237:1;3234;3227:12;3184:57;3268:2;3260:11;;;;;3290:6;;-1:-1:-1;2710:592:1;;-1:-1:-1;;;;2710:592:1:o;3307:186::-;3366:6;3419:2;3407:9;3398:7;3394:23;3390:32;3387:52;;;3435:1;3432;3425:12;3387:52;3458:29;3477:9;3458:29;:::i;3498:347::-;3563:6;3571;3624:2;3612:9;3603:7;3599:23;3595:32;3592:52;;;3640:1;3637;3630:12;3592:52;3663:29;3682:9;3663:29;:::i;:::-;3653:39;;3742:2;3731:9;3727:18;3714:32;3789:5;3782:13;3775:21;3768:5;3765:32;3755:60;;3811:1;3808;3801:12;3755:60;3834:5;3824:15;;;3498:347;;;;;:::o;3850:127::-;3911:10;3906:3;3902:20;3899:1;3892:31;3942:4;3939:1;3932:15;3966:4;3963:1;3956:15;3982:1138;4077:6;4085;4093;4101;4154:3;4142:9;4133:7;4129:23;4125:33;4122:53;;;4171:1;4168;4161:12;4122:53;4194:29;4213:9;4194:29;:::i;:::-;4184:39;;4242:38;4276:2;4265:9;4261:18;4242:38;:::i;:::-;4232:48;;4327:2;4316:9;4312:18;4299:32;4289:42;;4382:2;4371:9;4367:18;4354:32;4405:18;4446:2;4438:6;4435:14;4432:34;;;4462:1;4459;4452:12;4432:34;4500:6;4489:9;4485:22;4475:32;;4545:7;4538:4;4534:2;4530:13;4526:27;4516:55;;4567:1;4564;4557:12;4516:55;4603:2;4590:16;4625:2;4621;4618:10;4615:36;;;4631:18;;:::i;:::-;4706:2;4700:9;4674:2;4760:13;;-1:-1:-1;;4756:22:1;;;4780:2;4752:31;4748:40;4736:53;;;4804:18;;;4824:22;;;4801:46;4798:72;;;4850:18;;:::i;:::-;4890:10;4886:2;4879:22;4925:2;4917:6;4910:18;4965:7;4960:2;4955;4951;4947:11;4943:20;4940:33;4937:53;;;4986:1;4983;4976:12;4937:53;5042:2;5037;5033;5029:11;5024:2;5016:6;5012:15;4999:46;5087:1;5082:2;5077;5069:6;5065:15;5061:24;5054:35;5108:6;5098:16;;;;;;;3982:1138;;;;;;;:::o;5125:260::-;5193:6;5201;5254:2;5242:9;5233:7;5229:23;5225:32;5222:52;;;5270:1;5267;5260:12;5222:52;5293:29;5312:9;5293:29;:::i;:::-;5283:39;;5341:38;5375:2;5364:9;5360:18;5341:38;:::i;:::-;5331:48;;5125:260;;;;;:::o;5390:380::-;5469:1;5465:12;;;;5512;;;5533:61;;5587:4;5579:6;5575:17;5565:27;;5533:61;5640:2;5632:6;5629:14;5609:18;5606:38;5603:161;;5686:10;5681:3;5677:20;5674:1;5667:31;5721:4;5718:1;5711:15;5749:4;5746:1;5739:15;5603:161;;5390:380;;;:::o;5775:356::-;5977:2;5959:21;;;5996:18;;;5989:30;6055:34;6050:2;6035:18;;6028:62;6122:2;6107:18;;5775:356::o;7190:127::-;7251:10;7246:3;7242:20;7239:1;7232:31;7282:4;7279:1;7272:15;7306:4;7303:1;7296:15;7322:128;7362:3;7393:1;7389:6;7386:1;7383:13;7380:39;;;7399:18;;:::i;:::-;-1:-1:-1;7435:9:1;;7322:128::o;7455:168::-;7495:7;7561:1;7557;7553:6;7549:14;7546:1;7543:21;7538:1;7531:9;7524:17;7520:45;7517:71;;;7568:18;;:::i;:::-;-1:-1:-1;7608:9:1;;7455:168::o;8520:185::-;8562:3;8600:5;8594:12;8615:52;8660:6;8655:3;8648:4;8641:5;8637:16;8615:52;:::i;:::-;8683:16;;;;;8520:185;-1:-1:-1;;8520:185:1:o;8828:1301::-;9105:3;9134:1;9167:6;9161:13;9197:3;9219:1;9247:9;9243:2;9239:18;9229:28;;9307:2;9296:9;9292:18;9329;9319:61;;9373:4;9365:6;9361:17;9351:27;;9319:61;9399:2;9447;9439:6;9436:14;9416:18;9413:38;9410:165;;-1:-1:-1;;;9474:33:1;;9530:4;9527:1;9520:15;9560:4;9481:3;9548:17;9410:165;9591:18;9618:104;;;;9736:1;9731:320;;;;9584:467;;9618:104;-1:-1:-1;;9651:24:1;;9639:37;;9696:16;;;;-1:-1:-1;9618:104:1;;9731:320;8467:1;8460:14;;;8504:4;8491:18;;9826:1;9840:165;9854:6;9851:1;9848:13;9840:165;;;9932:14;;9919:11;;;9912:35;9975:16;;;;9869:10;;9840:165;;;9844:3;;10034:6;10029:3;10025:16;10018:23;;9584:467;;;;;;;10067:56;10092:30;10118:3;10110:6;10092:30;:::i;:::-;-1:-1:-1;;;8770:20:1;;8815:1;8806:11;;8710:113;10067:56;10060:63;8828:1301;-1:-1:-1;;;;;8828:1301:1:o;10541:500::-;-1:-1:-1;;;;;10810:15:1;;;10792:34;;10862:15;;10857:2;10842:18;;10835:43;10909:2;10894:18;;10887:34;;;10957:3;10952:2;10937:18;;10930:31;;;10735:4;;10978:57;;11015:19;;11007:6;10978:57;:::i;:::-;10970:65;10541:500;-1:-1:-1;;;;;;10541:500:1:o;11046:249::-;11115:6;11168:2;11156:9;11147:7;11143:23;11139:32;11136:52;;;11184:1;11181;11174:12;11136:52;11216:9;11210:16;11235:30;11259:5;11235:30;:::i;11300:135::-;11339:3;11360:17;;;11357:43;;11380:18;;:::i;:::-;-1:-1:-1;11427:1:1;11416:13;;11300:135::o;11440:127::-;11501:10;11496:3;11492:20;11489:1;11482:31;11532:4;11529:1;11522:15;11556:4;11553:1;11546:15;11572:120;11612:1;11638;11628:35;;11643:18;;:::i;:::-;-1:-1:-1;11677:9:1;;11572:120::o;11697:125::-;11737:4;11765:1;11762;11759:8;11756:34;;;11770:18;;:::i;:::-;-1:-1:-1;11807:9:1;;11697:125::o;11827:112::-;11859:1;11885;11875:35;;11890:18;;:::i;:::-;-1:-1:-1;11924:9:1;;11827:112::o;11944:127::-;12005:10;12000:3;11996:20;11993:1;11986:31;12036:4;12033:1;12026:15;12060:4;12057:1;12050:15

Swarm Source

ipfs://2408af4eda4600eecdc604a33b317a851883fb6a1b5d1571fa5abdea1745e82b
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.