ETH Price: $2,484.78 (+2.78%)

Token

ERC20 ***
 

Overview

Max Total Supply

269 ERC20 ***

Holders

139

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
jaydenn.eth
Balance
1 ERC20 ***
0x031EBB21DdC4eA7CB7f24817B26B3F4b827F83B5
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:
DailyEmotes

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-15
*/

// File: dailyemotes.sol

/**
 *Submitted for verification at Etherscan.io on 2022-03-14
*/

// 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/IERC721Enumerable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


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

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

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

// File: @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


pragma solidity ^0.8.4;









error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error AuxQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
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 See {IERC721Enumerable-totalSupply}.
     * @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) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        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) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        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) {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        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 {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        _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 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);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            isApprovedForAll(prevOwnership.addr, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].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;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

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

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

        // 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[prevOwnership.addr].balance -= 1;
            _addressData[prevOwnership.addr].numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].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;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, 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: contracts/DailyEmotes.sol


pragma solidity ^0.8.0;



 contract DailyEmotes is ERC721A, Ownable {
    using Address for address;
    using Strings for uint256;
    
    string public baseURI = "ipfs://Qmb8YBj697c6ypHr1iy7QK655qwNePpAbHsFiedoUhw3xc/";

    uint256 public constant TOTAL_FREE = 1;
    uint256 public constant MAX_FREE = 1;
    uint256 public constant MAX_PUBLIC = 1;

    string public constant BASE_EXTENSION = ".json";

    uint256 public maxSupply = 269;
    uint256 public price = 0 ether;

    bool public saleActive = false;
    bool public adminClaimed = false;

    constructor() ERC721A("DailyEmotes", "DE") { 
    }

    function adminMint() public onlyOwner {
        require(!adminClaimed, "Admim has claimed");
        adminClaimed = true;
        _safeMint(msg.sender, 1); 
    }

    function freeMint(uint256 _numberOfMints) private {
        require(_numberOfMints > 0 && _numberOfMints <= MAX_FREE, "Invalid mint amount");
        if(totalSupply() + _numberOfMints > TOTAL_FREE){
            _safeMint( msg.sender, TOTAL_FREE - totalSupply()); 
        } else {
            _safeMint( msg.sender, _numberOfMints); 
        }   
    }
    
    function publicMint(uint256 _numberOfMints) private {
        require(_numberOfMints > 0 && _numberOfMints <= MAX_PUBLIC, "Invalid mint amount");
        require(totalSupply() + _numberOfMints <= maxSupply, "Purchase would exceed max supply of tokens");
        require(price * _numberOfMints == msg.value, "Ether value sent is not correct");
        
        _safeMint( msg.sender, _numberOfMints );
    }

    function mint(uint256 _numberOfMints) public payable {
        require(saleActive, "Public sale is not active yet");
        require(tx.origin == msg.sender, "Please no");
        if(totalSupply() < TOTAL_FREE){
            freeMint(_numberOfMints);
        } else {
            publicMint(_numberOfMints);
        }
    }

    function setSupply(uint256 _maxSupply) public onlyOwner {
        maxSupply = _maxSupply;
    }

    function setPrice(uint256 _price) public onlyOwner {
        price = _price;
    }

    function toggleSale() public onlyOwner {
        saleActive = !saleActive;
    }

    function setBaseURI(string memory uri) public onlyOwner {
        baseURI = uri;
    }
    
    function _baseURI() internal view override returns (string memory) {
        return baseURI;
    }

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

        string memory currentBaseURI = _baseURI();
        return bytes(currentBaseURI).length > 0
            ? string(abi.encodePacked(currentBaseURI, _id.toString(), BASE_EXTENSION))
            : "";
    }

    function reserve(address to, uint256 quantity) external onlyOwner {
        require(totalSupply() + quantity <= maxSupply, "Exceeds supply");
        _safeMint(to, quantity);
    }

    function withdraw(address _address) public onlyOwner {
        uint256 balance = address(this).balance;
        payable(_address).transfer(balance);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"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":"BASE_EXTENSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FREE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PUBLIC","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_FREE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"adminClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"adminMint","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numberOfMints","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"reserve","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":"saleActive","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":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setSupply","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":[],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","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":[{"internalType":"address","name":"_address","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60e060405260366080818152906200203660a0398051620000299160099160209091019062000125565b5061010d600a556000600b55600c805461ffff191690553480156200004d57600080fd5b506040518060400160405280600b81526020016a4461696c79456d6f74657360a81b81525060405180604001604052806002815260200161444560f01b8152508160029080519060200190620000a592919062000125565b508051620000bb90600390602084019062000125565b50506000805550620000cd33620000d3565b62000208565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200013390620001cb565b90600052602060002090601f016020900481019282620001575760008555620001a2565b82601f106200017257805160ff1916838001178555620001a2565b82800160010185558215620001a2579182015b82811115620001a257825182559160200191906001019062000185565b50620001b0929150620001b4565b5090565b5b80821115620001b05760008155600101620001b5565b600181811c90821680620001e057607f821691505b602082108114156200020257634e487b7160e01b600052602260045260246000fd5b50919050565b611e1e80620002186000396000f3fe6080604052600436106101f95760003560e01c80637d8966e41161010d578063a22cb465116100a0578063d5abeb011161006f578063d5abeb0114610550578063df3fdf0014610566578063e985e9c514610597578063ed6661c214610391578063f2fde38b146105e057600080fd5b8063a22cb465146104d0578063b88d4fde146104f0578063c87b56dd14610510578063cc47a40b1461053057600080fd5b806395d89b41116100dc57806395d89b41146104925780639753eac014610391578063a035b1fe146104a7578063a0712d68146104bd57600080fd5b80637d8966e41461042a578063895fc7881461043f5780638da5cb5b1461045457806391b7f5ed1461047257600080fd5b806342842e0e116101905780636352211e1161015f5780636352211e146103a657806368428a1b146103c65780636c0360eb146103e057806370a08231146103f5578063715018a61461041557600080fd5b806342842e0e1461033157806351cff8d91461035157806355f804b31461037157806358d949921461039157600080fd5b8063095ea7b3116101cc578063095ea7b3146102ac57806318160ddd146102ce57806323b872dd146102f15780633b4c4b251461031157600080fd5b806301ffc9a7146101fe57806306fdde03146102335780630739554c14610255578063081812fc14610274575b600080fd5b34801561020a57600080fd5b5061021e610219366004611af2565b610600565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b50610248610652565b60405161022a9190611c3a565b34801561026157600080fd5b50600c5461021e90610100900460ff1681565b34801561028057600080fd5b5061029461028f366004611b75565b6106e4565b6040516001600160a01b03909116815260200161022a565b3480156102b857600080fd5b506102cc6102c7366004611ac8565b610728565b005b3480156102da57600080fd5b50600154600054035b60405190815260200161022a565b3480156102fd57600080fd5b506102cc61030c3660046119d4565b6107b6565b34801561031d57600080fd5b506102cc61032c366004611b75565b6107c1565b34801561033d57600080fd5b506102cc61034c3660046119d4565b6107f9565b34801561035d57600080fd5b506102cc61036c366004611986565b610814565b34801561037d57600080fd5b506102cc61038c366004611b2c565b610876565b34801561039d57600080fd5b506102e3600181565b3480156103b257600080fd5b506102946103c1366004611b75565b6108b7565b3480156103d257600080fd5b50600c5461021e9060ff1681565b3480156103ec57600080fd5b506102486108c9565b34801561040157600080fd5b506102e3610410366004611986565b610957565b34801561042157600080fd5b506102cc6109a6565b34801561043657600080fd5b506102cc6109dc565b34801561044b57600080fd5b506102cc610a1a565b34801561046057600080fd5b506008546001600160a01b0316610294565b34801561047e57600080fd5b506102cc61048d366004611b75565b610aaa565b34801561049e57600080fd5b50610248610ad9565b3480156104b357600080fd5b506102e3600b5481565b6102cc6104cb366004611b75565b610ae8565b3480156104dc57600080fd5b506102cc6104eb366004611a8c565b610b98565b3480156104fc57600080fd5b506102cc61050b366004611a10565b610c2e565b34801561051c57600080fd5b5061024861052b366004611b75565b610c7f565b34801561053c57600080fd5b506102cc61054b366004611ac8565b610d69565b34801561055c57600080fd5b506102e3600a5481565b34801561057257600080fd5b5061024860405180604001604052806005815260200164173539b7b760d91b81525081565b3480156105a357600080fd5b5061021e6105b23660046119a1565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156105ec57600080fd5b506102cc6105fb366004611986565b610df7565b60006001600160e01b031982166380ac58cd60e01b148061063157506001600160e01b03198216635b5e139f60e01b145b8061064c57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461066190611d10565b80601f016020809104026020016040519081016040528092919081815260200182805461068d90611d10565b80156106da5780601f106106af576101008083540402835291602001916106da565b820191906000526020600020905b8154815290600101906020018083116106bd57829003601f168201915b5050505050905090565b60006106ef82610e8f565b61070c576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610733826108b7565b9050806001600160a01b0316836001600160a01b031614156107685760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610788575061078681336105b2565b155b156107a6576040516367d9dca160e11b815260040160405180910390fd5b6107b1838383610eba565b505050565b6107b1838383610f16565b6008546001600160a01b031633146107f45760405162461bcd60e51b81526004016107eb90611c4d565b60405180910390fd5b600a55565b6107b183838360405180602001604052806000815250610c2e565b6008546001600160a01b0316331461083e5760405162461bcd60e51b81526004016107eb90611c4d565b60405147906001600160a01b0383169082156108fc029083906000818181858888f193505050501580156107b1573d6000803e3d6000fd5b6008546001600160a01b031633146108a05760405162461bcd60e51b81526004016107eb90611c4d565b80516108b390600990602084019061185b565b5050565b60006108c28261112c565b5192915050565b600980546108d690611d10565b80601f016020809104026020016040519081016040528092919081815260200182805461090290611d10565b801561094f5780601f106109245761010080835404028352916020019161094f565b820191906000526020600020905b81548152906001019060200180831161093257829003601f168201915b505050505081565b60006001600160a01b038216610980576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146109d05760405162461bcd60e51b81526004016107eb90611c4d565b6109da6000611248565b565b6008546001600160a01b03163314610a065760405162461bcd60e51b81526004016107eb90611c4d565b600c805460ff19811660ff90911615179055565b6008546001600160a01b03163314610a445760405162461bcd60e51b81526004016107eb90611c4d565b600c54610100900460ff1615610a905760405162461bcd60e51b815260206004820152601160248201527010591b5a5b481a185cc818db185a5b5959607a1b60448201526064016107eb565b600c805461ff0019166101001790556109da33600161129a565b6008546001600160a01b03163314610ad45760405162461bcd60e51b81526004016107eb90611c4d565b600b55565b60606003805461066190611d10565b600c5460ff16610b3a5760405162461bcd60e51b815260206004820152601d60248201527f5075626c69632073616c65206973206e6f74206163746976652079657400000060448201526064016107eb565b323314610b755760405162461bcd60e51b8152602060048201526009602482015268506c65617365206e6f60b81b60448201526064016107eb565b60018054600054031015610b8f57610b8c816112b4565b50565b610b8c81611352565b6001600160a01b038216331415610bc25760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610c39848484610f16565b6001600160a01b0383163b15158015610c5b5750610c598484848461147d565b155b15610c79576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610c8a82610e8f565b610cee5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107eb565b6000610cf8611575565b90506000815111610d185760405180602001604052806000815250610d62565b80610d2284611584565b60405180604001604052806005815260200164173539b7b760d91b815250604051602001610d5293929190611bba565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610d935760405162461bcd60e51b81526004016107eb90611c4d565b600a5481610da46001546000540390565b610dae9190611c82565b1115610ded5760405162461bcd60e51b815260206004820152600e60248201526d4578636565647320737570706c7960901b60448201526064016107eb565b6108b3828261129a565b6008546001600160a01b03163314610e215760405162461bcd60e51b81526004016107eb90611c4d565b6001600160a01b038116610e865760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107eb565b610b8c81611248565b600080548210801561064c575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610f218261112c565b80519091506000906001600160a01b0316336001600160a01b03161480610f4f57508151610f4f90336105b2565b80610f6a575033610f5f846106e4565b6001600160a01b0316145b905080610f8a57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614610fbf5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416610fe657604051633a954ecd60e21b815260040160405180910390fd5b610ff66000848460000151610eba565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102179092559086018083529120549091166110e2576000548110156110e2578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101919091528160005481101561122f57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff1615159181018290529061122d5780516001600160a01b0316156111c3579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611228579392505050565b6111c3565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6108b3828260405180602001604052806000815250611682565b6000811180156112c5575060018111155b6113075760405162461bcd60e51b8152602060048201526013602482015272125b9d985b1a59081b5a5b9d08185b5bdd5b9d606a1b60448201526064016107eb565b6001816113176001546000540390565b6113219190611c82565b111561134857610b8c336113386001546000540390565b611343906001611ccd565b61129a565b610b8c338261129a565b600081118015611363575060018111155b6113a55760405162461bcd60e51b8152602060048201526013602482015272125b9d985b1a59081b5a5b9d08185b5bdd5b9d606a1b60448201526064016107eb565b600a54816113b66001546000540390565b6113c09190611c82565b11156114215760405162461bcd60e51b815260206004820152602a60248201527f507572636861736520776f756c6420657863656564206d617820737570706c79604482015269206f6620746f6b656e7360b01b60648201526084016107eb565b3481600b546114309190611cae565b146113485760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f72726563740060448201526064016107eb565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906114b2903390899088908890600401611bfd565b602060405180830381600087803b1580156114cc57600080fd5b505af19250505080156114fc575060408051601f3d908101601f191682019092526114f991810190611b0f565b60015b611557573d80801561152a576040519150601f19603f3d011682016040523d82523d6000602084013e61152f565b606091505b50805161154f576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606009805461066190611d10565b6060816115a85750506040805180820190915260018152600360fc1b602082015290565b8160005b81156115d257806115bc81611d4b565b91506115cb9050600a83611c9a565b91506115ac565b60008167ffffffffffffffff8111156115ed576115ed611dbc565b6040519080825280601f01601f191660200182016040528015611617576020820181803683370190505b5090505b841561156d5761162c600183611ccd565b9150611639600a86611d66565b611644906030611c82565b60f81b81838151811061165957611659611da6565b60200101906001600160f81b031916908160001a90535061167b600a86611c9a565b945061161b565b6107b183838360016000546001600160a01b0385166116b357604051622e076360e81b815260040160405180910390fd5b836116d15760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561178357506001600160a01b0387163b15155b1561180c575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46117d4600088848060010195508861147d565b6117f1576040516368d2bf6b60e11b815260040160405180910390fd5b8082141561178957826000541461180757600080fd5b611852565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082141561180d575b50600055611125565b82805461186790611d10565b90600052602060002090601f01602090048101928261188957600085556118cf565b82601f106118a257805160ff19168380011785556118cf565b828001600101855582156118cf579182015b828111156118cf5782518255916020019190600101906118b4565b506118db9291506118df565b5090565b5b808211156118db57600081556001016118e0565b600067ffffffffffffffff8084111561190f5761190f611dbc565b604051601f8501601f19908116603f0116810190828211818310171561193757611937611dbc565b8160405280935085815286868601111561195057600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461198157600080fd5b919050565b60006020828403121561199857600080fd5b610d628261196a565b600080604083850312156119b457600080fd5b6119bd8361196a565b91506119cb6020840161196a565b90509250929050565b6000806000606084860312156119e957600080fd5b6119f28461196a565b9250611a006020850161196a565b9150604084013590509250925092565b60008060008060808587031215611a2657600080fd5b611a2f8561196a565b9350611a3d6020860161196a565b925060408501359150606085013567ffffffffffffffff811115611a6057600080fd5b8501601f81018713611a7157600080fd5b611a80878235602084016118f4565b91505092959194509250565b60008060408385031215611a9f57600080fd5b611aa88361196a565b915060208301358015158114611abd57600080fd5b809150509250929050565b60008060408385031215611adb57600080fd5b611ae48361196a565b946020939093013593505050565b600060208284031215611b0457600080fd5b8135610d6281611dd2565b600060208284031215611b2157600080fd5b8151610d6281611dd2565b600060208284031215611b3e57600080fd5b813567ffffffffffffffff811115611b5557600080fd5b8201601f81018413611b6657600080fd5b61156d848235602084016118f4565b600060208284031215611b8757600080fd5b5035919050565b60008151808452611ba6816020860160208601611ce4565b601f01601f19169290920160200192915050565b60008451611bcc818460208901611ce4565b845190830190611be0818360208901611ce4565b8451910190611bf3818360208801611ce4565b0195945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c3090830184611b8e565b9695505050505050565b602081526000610d626020830184611b8e565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611c9557611c95611d7a565b500190565b600082611ca957611ca9611d90565b500490565b6000816000190483118215151615611cc857611cc8611d7a565b500290565b600082821015611cdf57611cdf611d7a565b500390565b60005b83811015611cff578181015183820152602001611ce7565b83811115610c795750506000910152565b600181811c90821680611d2457607f821691505b60208210811415611d4557634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611d5f57611d5f611d7a565b5060010190565b600082611d7557611d75611d90565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b8c57600080fdfea2646970667358221220ebc66652621b7d46699054dd38426a204431ac609066b18fa18334c5ee20219164736f6c63430008070033697066733a2f2f516d623859426a36393763367970487231697937514b36353571774e65507041624873466965646f5568773378632f

Deployed Bytecode

0x6080604052600436106101f95760003560e01c80637d8966e41161010d578063a22cb465116100a0578063d5abeb011161006f578063d5abeb0114610550578063df3fdf0014610566578063e985e9c514610597578063ed6661c214610391578063f2fde38b146105e057600080fd5b8063a22cb465146104d0578063b88d4fde146104f0578063c87b56dd14610510578063cc47a40b1461053057600080fd5b806395d89b41116100dc57806395d89b41146104925780639753eac014610391578063a035b1fe146104a7578063a0712d68146104bd57600080fd5b80637d8966e41461042a578063895fc7881461043f5780638da5cb5b1461045457806391b7f5ed1461047257600080fd5b806342842e0e116101905780636352211e1161015f5780636352211e146103a657806368428a1b146103c65780636c0360eb146103e057806370a08231146103f5578063715018a61461041557600080fd5b806342842e0e1461033157806351cff8d91461035157806355f804b31461037157806358d949921461039157600080fd5b8063095ea7b3116101cc578063095ea7b3146102ac57806318160ddd146102ce57806323b872dd146102f15780633b4c4b251461031157600080fd5b806301ffc9a7146101fe57806306fdde03146102335780630739554c14610255578063081812fc14610274575b600080fd5b34801561020a57600080fd5b5061021e610219366004611af2565b610600565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b50610248610652565b60405161022a9190611c3a565b34801561026157600080fd5b50600c5461021e90610100900460ff1681565b34801561028057600080fd5b5061029461028f366004611b75565b6106e4565b6040516001600160a01b03909116815260200161022a565b3480156102b857600080fd5b506102cc6102c7366004611ac8565b610728565b005b3480156102da57600080fd5b50600154600054035b60405190815260200161022a565b3480156102fd57600080fd5b506102cc61030c3660046119d4565b6107b6565b34801561031d57600080fd5b506102cc61032c366004611b75565b6107c1565b34801561033d57600080fd5b506102cc61034c3660046119d4565b6107f9565b34801561035d57600080fd5b506102cc61036c366004611986565b610814565b34801561037d57600080fd5b506102cc61038c366004611b2c565b610876565b34801561039d57600080fd5b506102e3600181565b3480156103b257600080fd5b506102946103c1366004611b75565b6108b7565b3480156103d257600080fd5b50600c5461021e9060ff1681565b3480156103ec57600080fd5b506102486108c9565b34801561040157600080fd5b506102e3610410366004611986565b610957565b34801561042157600080fd5b506102cc6109a6565b34801561043657600080fd5b506102cc6109dc565b34801561044b57600080fd5b506102cc610a1a565b34801561046057600080fd5b506008546001600160a01b0316610294565b34801561047e57600080fd5b506102cc61048d366004611b75565b610aaa565b34801561049e57600080fd5b50610248610ad9565b3480156104b357600080fd5b506102e3600b5481565b6102cc6104cb366004611b75565b610ae8565b3480156104dc57600080fd5b506102cc6104eb366004611a8c565b610b98565b3480156104fc57600080fd5b506102cc61050b366004611a10565b610c2e565b34801561051c57600080fd5b5061024861052b366004611b75565b610c7f565b34801561053c57600080fd5b506102cc61054b366004611ac8565b610d69565b34801561055c57600080fd5b506102e3600a5481565b34801561057257600080fd5b5061024860405180604001604052806005815260200164173539b7b760d91b81525081565b3480156105a357600080fd5b5061021e6105b23660046119a1565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156105ec57600080fd5b506102cc6105fb366004611986565b610df7565b60006001600160e01b031982166380ac58cd60e01b148061063157506001600160e01b03198216635b5e139f60e01b145b8061064c57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461066190611d10565b80601f016020809104026020016040519081016040528092919081815260200182805461068d90611d10565b80156106da5780601f106106af576101008083540402835291602001916106da565b820191906000526020600020905b8154815290600101906020018083116106bd57829003601f168201915b5050505050905090565b60006106ef82610e8f565b61070c576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610733826108b7565b9050806001600160a01b0316836001600160a01b031614156107685760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610788575061078681336105b2565b155b156107a6576040516367d9dca160e11b815260040160405180910390fd5b6107b1838383610eba565b505050565b6107b1838383610f16565b6008546001600160a01b031633146107f45760405162461bcd60e51b81526004016107eb90611c4d565b60405180910390fd5b600a55565b6107b183838360405180602001604052806000815250610c2e565b6008546001600160a01b0316331461083e5760405162461bcd60e51b81526004016107eb90611c4d565b60405147906001600160a01b0383169082156108fc029083906000818181858888f193505050501580156107b1573d6000803e3d6000fd5b6008546001600160a01b031633146108a05760405162461bcd60e51b81526004016107eb90611c4d565b80516108b390600990602084019061185b565b5050565b60006108c28261112c565b5192915050565b600980546108d690611d10565b80601f016020809104026020016040519081016040528092919081815260200182805461090290611d10565b801561094f5780601f106109245761010080835404028352916020019161094f565b820191906000526020600020905b81548152906001019060200180831161093257829003601f168201915b505050505081565b60006001600160a01b038216610980576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146109d05760405162461bcd60e51b81526004016107eb90611c4d565b6109da6000611248565b565b6008546001600160a01b03163314610a065760405162461bcd60e51b81526004016107eb90611c4d565b600c805460ff19811660ff90911615179055565b6008546001600160a01b03163314610a445760405162461bcd60e51b81526004016107eb90611c4d565b600c54610100900460ff1615610a905760405162461bcd60e51b815260206004820152601160248201527010591b5a5b481a185cc818db185a5b5959607a1b60448201526064016107eb565b600c805461ff0019166101001790556109da33600161129a565b6008546001600160a01b03163314610ad45760405162461bcd60e51b81526004016107eb90611c4d565b600b55565b60606003805461066190611d10565b600c5460ff16610b3a5760405162461bcd60e51b815260206004820152601d60248201527f5075626c69632073616c65206973206e6f74206163746976652079657400000060448201526064016107eb565b323314610b755760405162461bcd60e51b8152602060048201526009602482015268506c65617365206e6f60b81b60448201526064016107eb565b60018054600054031015610b8f57610b8c816112b4565b50565b610b8c81611352565b6001600160a01b038216331415610bc25760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610c39848484610f16565b6001600160a01b0383163b15158015610c5b5750610c598484848461147d565b155b15610c79576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610c8a82610e8f565b610cee5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107eb565b6000610cf8611575565b90506000815111610d185760405180602001604052806000815250610d62565b80610d2284611584565b60405180604001604052806005815260200164173539b7b760d91b815250604051602001610d5293929190611bba565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610d935760405162461bcd60e51b81526004016107eb90611c4d565b600a5481610da46001546000540390565b610dae9190611c82565b1115610ded5760405162461bcd60e51b815260206004820152600e60248201526d4578636565647320737570706c7960901b60448201526064016107eb565b6108b3828261129a565b6008546001600160a01b03163314610e215760405162461bcd60e51b81526004016107eb90611c4d565b6001600160a01b038116610e865760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107eb565b610b8c81611248565b600080548210801561064c575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610f218261112c565b80519091506000906001600160a01b0316336001600160a01b03161480610f4f57508151610f4f90336105b2565b80610f6a575033610f5f846106e4565b6001600160a01b0316145b905080610f8a57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614610fbf5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416610fe657604051633a954ecd60e21b815260040160405180910390fd5b610ff66000848460000151610eba565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102179092559086018083529120549091166110e2576000548110156110e2578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101919091528160005481101561122f57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff1615159181018290529061122d5780516001600160a01b0316156111c3579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611228579392505050565b6111c3565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6108b3828260405180602001604052806000815250611682565b6000811180156112c5575060018111155b6113075760405162461bcd60e51b8152602060048201526013602482015272125b9d985b1a59081b5a5b9d08185b5bdd5b9d606a1b60448201526064016107eb565b6001816113176001546000540390565b6113219190611c82565b111561134857610b8c336113386001546000540390565b611343906001611ccd565b61129a565b610b8c338261129a565b600081118015611363575060018111155b6113a55760405162461bcd60e51b8152602060048201526013602482015272125b9d985b1a59081b5a5b9d08185b5bdd5b9d606a1b60448201526064016107eb565b600a54816113b66001546000540390565b6113c09190611c82565b11156114215760405162461bcd60e51b815260206004820152602a60248201527f507572636861736520776f756c6420657863656564206d617820737570706c79604482015269206f6620746f6b656e7360b01b60648201526084016107eb565b3481600b546114309190611cae565b146113485760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f72726563740060448201526064016107eb565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906114b2903390899088908890600401611bfd565b602060405180830381600087803b1580156114cc57600080fd5b505af19250505080156114fc575060408051601f3d908101601f191682019092526114f991810190611b0f565b60015b611557573d80801561152a576040519150601f19603f3d011682016040523d82523d6000602084013e61152f565b606091505b50805161154f576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606009805461066190611d10565b6060816115a85750506040805180820190915260018152600360fc1b602082015290565b8160005b81156115d257806115bc81611d4b565b91506115cb9050600a83611c9a565b91506115ac565b60008167ffffffffffffffff8111156115ed576115ed611dbc565b6040519080825280601f01601f191660200182016040528015611617576020820181803683370190505b5090505b841561156d5761162c600183611ccd565b9150611639600a86611d66565b611644906030611c82565b60f81b81838151811061165957611659611da6565b60200101906001600160f81b031916908160001a90535061167b600a86611c9a565b945061161b565b6107b183838360016000546001600160a01b0385166116b357604051622e076360e81b815260040160405180910390fd5b836116d15760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561178357506001600160a01b0387163b15155b1561180c575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46117d4600088848060010195508861147d565b6117f1576040516368d2bf6b60e11b815260040160405180910390fd5b8082141561178957826000541461180757600080fd5b611852565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082141561180d575b50600055611125565b82805461186790611d10565b90600052602060002090601f01602090048101928261188957600085556118cf565b82601f106118a257805160ff19168380011785556118cf565b828001600101855582156118cf579182015b828111156118cf5782518255916020019190600101906118b4565b506118db9291506118df565b5090565b5b808211156118db57600081556001016118e0565b600067ffffffffffffffff8084111561190f5761190f611dbc565b604051601f8501601f19908116603f0116810190828211818310171561193757611937611dbc565b8160405280935085815286868601111561195057600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461198157600080fd5b919050565b60006020828403121561199857600080fd5b610d628261196a565b600080604083850312156119b457600080fd5b6119bd8361196a565b91506119cb6020840161196a565b90509250929050565b6000806000606084860312156119e957600080fd5b6119f28461196a565b9250611a006020850161196a565b9150604084013590509250925092565b60008060008060808587031215611a2657600080fd5b611a2f8561196a565b9350611a3d6020860161196a565b925060408501359150606085013567ffffffffffffffff811115611a6057600080fd5b8501601f81018713611a7157600080fd5b611a80878235602084016118f4565b91505092959194509250565b60008060408385031215611a9f57600080fd5b611aa88361196a565b915060208301358015158114611abd57600080fd5b809150509250929050565b60008060408385031215611adb57600080fd5b611ae48361196a565b946020939093013593505050565b600060208284031215611b0457600080fd5b8135610d6281611dd2565b600060208284031215611b2157600080fd5b8151610d6281611dd2565b600060208284031215611b3e57600080fd5b813567ffffffffffffffff811115611b5557600080fd5b8201601f81018413611b6657600080fd5b61156d848235602084016118f4565b600060208284031215611b8757600080fd5b5035919050565b60008151808452611ba6816020860160208601611ce4565b601f01601f19169290920160200192915050565b60008451611bcc818460208901611ce4565b845190830190611be0818360208901611ce4565b8451910190611bf3818360208801611ce4565b0195945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c3090830184611b8e565b9695505050505050565b602081526000610d626020830184611b8e565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611c9557611c95611d7a565b500190565b600082611ca957611ca9611d90565b500490565b6000816000190483118215151615611cc857611cc8611d7a565b500290565b600082821015611cdf57611cdf611d7a565b500390565b60005b83811015611cff578181015183820152602001611ce7565b83811115610c795750506000910152565b600181811c90821680611d2457607f821691505b60208210811415611d4557634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611d5f57611d5f611d7a565b5060010190565b600082611d7557611d75611d90565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b8c57600080fdfea2646970667358221220ebc66652621b7d46699054dd38426a204431ac609066b18fa18334c5ee20219164736f6c63430008070033

Deployed Bytecode Sourcemap

45880:3192:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28345:305;;;;;;;;;;-1:-1:-1;28345:305:0;;;;;:::i;:::-;;:::i;:::-;;;5840:14:1;;5833:22;5815:41;;5803:2;5788:18;28345:305:0;;;;;;;;31730:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;46391:32::-;;;;;;;;;;-1:-1:-1;46391:32:0;;;;;;;;;;;33233:204;;;;;;;;;;-1:-1:-1;33233:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5138:32:1;;;5120:51;;5108:2;5093:18;33233:204:0;4974:203:1;32796:371:0;;;;;;;;;;-1:-1:-1;32796:371:0;;;;;:::i;:::-;;:::i;:::-;;27594:303;;;;;;;;;;-1:-1:-1;27848:12:0;;27638:7;27832:13;:28;27594:303;;;9924:25:1;;;9912:2;9897:18;27594:303:0;9778:177:1;34090:170:0;;;;;;;;;;-1:-1:-1;34090:170:0;;;;;:::i;:::-;;:::i;47795:97::-;;;;;;;;;;-1:-1:-1;47795:97:0;;;;;:::i;:::-;;:::i;34331:185::-;;;;;;;;;;-1:-1:-1;34331:185:0;;;;;:::i;:::-;;:::i;48912:157::-;;;;;;;;;;-1:-1:-1;48912:157:0;;;;;:::i;:::-;;:::i;48082:88::-;;;;;;;;;;-1:-1:-1;48082:88:0;;;;;:::i;:::-;;:::i;46087:38::-;;;;;;;;;;;;46124:1;46087:38;;31539:124;;;;;;;;;;-1:-1:-1;31539:124:0;;;;;:::i;:::-;;:::i;46354:30::-;;;;;;;;;;-1:-1:-1;46354:30:0;;;;;;;;45998:80;;;;;;;;;;;;;:::i;28714:206::-;;;;;;;;;;-1:-1:-1;28714:206:0;;;;;:::i;:::-;;:::i;4829:103::-;;;;;;;;;;;;;:::i;47992:82::-;;;;;;;;;;;;;:::i;46492:166::-;;;;;;;;;;;;;:::i;4178:87::-;;;;;;;;;;-1:-1:-1;4251:6:0;;-1:-1:-1;;;;;4251:6:0;4178:87;;47900:84;;;;;;;;;;-1:-1:-1;47900:84:0;;;;;:::i;:::-;;:::i;31899:104::-;;;;;;;;;;;;;:::i;46315:30::-;;;;;;;;;;;;;;;;47457:330;;;;;;:::i;:::-;;:::i;33509:279::-;;;;;;;;;;-1:-1:-1;33509:279:0;;;;;:::i;:::-;;:::i;34587:369::-;;;;;;;;;;-1:-1:-1;34587:369:0;;;;;:::i;:::-;;:::i;48290:423::-;;;;;;;;;;-1:-1:-1;48290:423:0;;;;;:::i;:::-;;:::i;48721:183::-;;;;;;;;;;-1:-1:-1;48721:183:0;;;;;:::i;:::-;;:::i;46278:30::-;;;;;;;;;;;;;;;;46222:47;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;46222:47:0;;;;;33859:164;;;;;;;;;;-1:-1:-1;33859:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;33980:25:0;;;33956:4;33980:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;33859:164;5087:201;;;;;;;;;;-1:-1:-1;5087:201:0;;;;;:::i;:::-;;:::i;28345:305::-;28447:4;-1:-1:-1;;;;;;28484:40:0;;-1:-1:-1;;;28484:40:0;;:105;;-1:-1:-1;;;;;;;28541:48:0;;-1:-1:-1;;;28541:48:0;28484:105;:158;;;-1:-1:-1;;;;;;;;;;17071:40:0;;;28606:36;28464:178;28345:305;-1:-1:-1;;28345:305:0:o;31730:100::-;31784:13;31817:5;31810:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31730:100;:::o;33233:204::-;33301:7;33326:16;33334:7;33326;:16::i;:::-;33321:64;;33351:34;;-1:-1:-1;;;33351:34:0;;;;;;;;;;;33321:64;-1:-1:-1;33405:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;33405:24:0;;33233:204::o;32796:371::-;32869:13;32885:24;32901:7;32885:15;:24::i;:::-;32869:40;;32930:5;-1:-1:-1;;;;;32924:11:0;:2;-1:-1:-1;;;;;32924:11:0;;32920:48;;;32944:24;;-1:-1:-1;;;32944:24:0;;;;;;;;;;;32920:48;2982:10;-1:-1:-1;;;;;32985:21:0;;;;;;:63;;-1:-1:-1;33011:37:0;33028:5;2982:10;33859:164;:::i;33011:37::-;33010:38;32985:63;32981:138;;;33072:35;;-1:-1:-1;;;33072:35:0;;;;;;;;;;;32981:138;33131:28;33140:2;33144:7;33153:5;33131:8;:28::i;:::-;32858:309;32796:371;;:::o;34090:170::-;34224:28;34234:4;34240:2;34244:7;34224:9;:28::i;47795:97::-;4251:6;;-1:-1:-1;;;;;4251:6:0;2982:10;4398:23;4390:68;;;;-1:-1:-1;;;4390:68:0;;;;;;;:::i;:::-;;;;;;;;;47862:9:::1;:22:::0;47795:97::o;34331:185::-;34469:39;34486:4;34492:2;34496:7;34469:39;;;;;;;;;;;;:16;:39::i;48912:157::-;4251:6;;-1:-1:-1;;;;;4251:6:0;2982:10;4398:23;4390:68;;;;-1:-1:-1;;;4390:68:0;;;;;;;:::i;:::-;49026:35:::1;::::0;48994:21:::1;::::0;-1:-1:-1;;;;;49026:26:0;::::1;::::0;:35;::::1;;;::::0;48994:21;;48976:15:::1;49026:35:::0;48976:15;49026:35;48994:21;49026:26;:35;::::1;;;;;;;;;;;;;::::0;::::1;;;;48082:88:::0;4251:6;;-1:-1:-1;;;;;4251:6:0;2982:10;4398:23;4390:68;;;;-1:-1:-1;;;4390:68:0;;;;;;;:::i;:::-;48149:13;;::::1;::::0;:7:::1;::::0;:13:::1;::::0;::::1;::::0;::::1;:::i;:::-;;48082:88:::0;:::o;31539:124::-;31603:7;31630:20;31642:7;31630:11;:20::i;:::-;:25;;31539:124;-1:-1:-1;;31539:124:0:o;45998:80::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28714:206::-;28778:7;-1:-1:-1;;;;;28802:19:0;;28798:60;;28830:28;;-1:-1:-1;;;28830:28:0;;;;;;;;;;;28798:60;-1:-1:-1;;;;;;28884:19:0;;;;;:12;:19;;;;;:27;;;;28714:206::o;4829:103::-;4251:6;;-1:-1:-1;;;;;4251:6:0;2982:10;4398:23;4390:68;;;;-1:-1:-1;;;4390:68:0;;;;;;;:::i;:::-;4894:30:::1;4921:1;4894:18;:30::i;:::-;4829:103::o:0;47992:82::-;4251:6;;-1:-1:-1;;;;;4251:6:0;2982:10;4398:23;4390:68;;;;-1:-1:-1;;;4390:68:0;;;;;;;:::i;:::-;48056:10:::1;::::0;;-1:-1:-1;;48042:24:0;::::1;48056:10;::::0;;::::1;48055:11;48042:24;::::0;;47992:82::o;46492:166::-;4251:6;;-1:-1:-1;;;;;4251:6:0;2982:10;4398:23;4390:68;;;;-1:-1:-1;;;4390:68:0;;;;;;;:::i;:::-;46550:12:::1;::::0;::::1;::::0;::::1;;;46549:13;46541:43;;;::::0;-1:-1:-1;;;46541:43:0;;9634:2:1;46541:43:0::1;::::0;::::1;9616:21:1::0;9673:2;9653:18;;;9646:30;-1:-1:-1;;;9692:18:1;;;9685:47;9749:18;;46541:43:0::1;9432:341:1::0;46541:43:0::1;46595:12;:19:::0;;-1:-1:-1;;46595:19:0::1;;;::::0;;46625:24:::1;46635:10;46610:4;46625:9;:24::i;47900:84::-:0;4251:6;;-1:-1:-1;;;;;4251:6:0;2982:10;4398:23;4390:68;;;;-1:-1:-1;;;4390:68:0;;;;;;;:::i;:::-;47962:5:::1;:14:::0;47900:84::o;31899:104::-;31955:13;31988:7;31981:14;;;;;:::i;47457:330::-;47529:10;;;;47521:52;;;;-1:-1:-1;;;47521:52:0;;7043:2:1;47521:52:0;;;7025:21:1;7082:2;7062:18;;;7055:30;7121:31;7101:18;;;7094:59;7170:18;;47521:52:0;6841:353:1;47521:52:0;47592:9;47605:10;47592:23;47584:45;;;;-1:-1:-1;;;47584:45:0;;8949:2:1;47584:45:0;;;8931:21:1;8988:1;8968:18;;;8961:29;-1:-1:-1;;;9006:18:1;;;8999:39;9055:18;;47584:45:0;8747:332:1;47584:45:0;46124:1;27848:12;;27638:7;27832:13;:28;47643:26;47640:140;;;47685:24;47694:14;47685:8;:24::i;:::-;47457:330;:::o;47640:140::-;47742:26;47753:14;47742:10;:26::i;33509:279::-;-1:-1:-1;;;;;33600:24:0;;2982:10;33600:24;33596:54;;;33633:17;;-1:-1:-1;;;33633:17:0;;;;;;;;;;;33596:54;2982:10;33663:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;33663:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;33663:53:0;;;;;;;;;;33732:48;;5815:41:1;;;33663:42:0;;2982:10;33732:48;;5788:18:1;33732:48:0;;;;;;;33509:279;;:::o;34587:369::-;34754:28;34764:4;34770:2;34774:7;34754:9;:28::i;:::-;-1:-1:-1;;;;;34797:13:0;;7174:19;:23;;34797:76;;;;;34817:56;34848:4;34854:2;34858:7;34867:5;34817:30;:56::i;:::-;34816:57;34797:76;34793:156;;;34897:40;;-1:-1:-1;;;34897:40:0;;;;;;;;;;;34793:156;34587:369;;;;:::o;48290:423::-;48359:13;48408:12;48416:3;48408:7;:12::i;:::-;48386:109;;;;-1:-1:-1;;;48386:109:0;;8533:2:1;48386:109:0;;;8515:21:1;8572:2;8552:18;;;8545:30;8611:34;8591:18;;;8584:62;-1:-1:-1;;;8662:18:1;;;8655:45;8717:19;;48386:109:0;8331:411:1;48386:109:0;48508:28;48539:10;:8;:10::i;:::-;48508:41;;48598:1;48573:14;48567:28;:32;:138;;;;;;;;;;;;;;;;;48639:14;48655;:3;:12;:14::i;:::-;48671;;;;;;;;;;;;;-1:-1:-1;;;48671:14:0;;;48622:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48567:138;48560:145;48290:423;-1:-1:-1;;;48290:423:0:o;48721:183::-;4251:6;;-1:-1:-1;;;;;4251:6:0;2982:10;4398:23;4390:68;;;;-1:-1:-1;;;4390:68:0;;;;;;;:::i;:::-;48834:9:::1;;48822:8;48806:13;27848:12:::0;;27638:7;27832:13;:28;;27594:303;48806:13:::1;:24;;;;:::i;:::-;:37;;48798:64;;;::::0;-1:-1:-1;;;48798:64:0;;6293:2:1;48798:64:0::1;::::0;::::1;6275:21:1::0;6332:2;6312:18;;;6305:30;-1:-1:-1;;;6351:18:1;;;6344:44;6405:18;;48798:64:0::1;6091:338:1::0;48798:64:0::1;48873:23;48883:2;48887:8;48873:9;:23::i;5087:201::-:0;4251:6;;-1:-1:-1;;;;;4251:6:0;2982:10;4398:23;4390:68;;;;-1:-1:-1;;;4390:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5176:22:0;::::1;5168:73;;;::::0;-1:-1:-1;;;5168:73:0;;6636:2:1;5168:73:0::1;::::0;::::1;6618:21:1::0;6675:2;6655:18;;;6648:30;6714:34;6694:18;;;6687:62;-1:-1:-1;;;6765:18:1;;;6758:36;6811:19;;5168:73:0::1;6434:402:1::0;5168:73:0::1;5252:28;5271:8;5252:18;:28::i;35211:187::-:0;35268:4;35332:13;;35322:7;:23;35292:98;;;;-1:-1:-1;;35363:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;35363:27:0;;;;35362:28;;35211:187::o;42822:196::-;42937:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;42937:29:0;-1:-1:-1;;;;;42937:29:0;;;;;;;;;42982:28;;42937:24;;42982:28;;;;;;;42822:196;;;:::o;38324:2112::-;38439:35;38477:20;38489:7;38477:11;:20::i;:::-;38552:18;;38439:58;;-1:-1:-1;38510:22:0;;-1:-1:-1;;;;;38536:34:0;2982:10;-1:-1:-1;;;;;38536:34:0;;:101;;;-1:-1:-1;38604:18:0;;38587:50;;2982:10;33859:164;:::i;38587:50::-;38536:154;;;-1:-1:-1;2982:10:0;38654:20;38666:7;38654:11;:20::i;:::-;-1:-1:-1;;;;;38654:36:0;;38536:154;38510:181;;38709:17;38704:66;;38735:35;;-1:-1:-1;;;38735:35:0;;;;;;;;;;;38704:66;38807:4;-1:-1:-1;;;;;38785:26:0;:13;:18;;;-1:-1:-1;;;;;38785:26:0;;38781:67;;38820:28;;-1:-1:-1;;;38820:28:0;;;;;;;;;;;38781:67;-1:-1:-1;;;;;38863:16:0;;38859:52;;38888:23;;-1:-1:-1;;;38888:23:0;;;;;;;;;;;38859:52;39032:49;39049:1;39053:7;39062:13;:18;;;39032:8;:49::i;:::-;-1:-1:-1;;;;;39377:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;39377:31:0;;;;;;;-1:-1:-1;;39377:31:0;;;;;;;39423:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;39423:29:0;;;;;;;;;;;39469:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;39514:61:0;;;;-1:-1:-1;;;39559:15:0;39514:61;;;;;;;;;;;39849:11;;;39879:24;;;;;:29;39849:11;;39879:29;39875:445;;40104:13;;40090:11;:27;40086:219;;;40174:18;;;40142:24;;;:11;:24;;;;;;;;:50;;40257:28;;;;40215:70;;-1:-1:-1;;;40215:70:0;-1:-1:-1;;;;;;40215:70:0;;;-1:-1:-1;;;;;40142:50:0;;;40215:70;;;;;;;40086:219;39352:979;40367:7;40363:2;-1:-1:-1;;;;;40348:27:0;40357:4;-1:-1:-1;;;;;40348:27:0;;;;;;;;;;;40386:42;38428:2008;;38324:2112;;;:::o;30369:1108::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;30479:7:0;30562:13;;30555:4;:20;30524:886;;;30596:31;30630:17;;;:11;:17;;;;;;;;;30596:51;;;;;;;;;-1:-1:-1;;;;;30596:51:0;;;;-1:-1:-1;;;30596:51:0;;;;;;;;;;;-1:-1:-1;;;30596:51:0;;;;;;;;;;;;;;30666:729;;30716:14;;-1:-1:-1;;;;;30716:28:0;;30712:101;;30780:9;30369:1108;-1:-1:-1;;;30369:1108:0:o;30712:101::-;-1:-1:-1;;;31155:6:0;31200:17;;;;:11;:17;;;;;;;;;31188:29;;;;;;;;;-1:-1:-1;;;;;31188:29:0;;;;;-1:-1:-1;;;31188:29:0;;;;;;;;;;;-1:-1:-1;;;31188:29:0;;;;;;;;;;;;;31248:28;31244:109;;31316:9;30369:1108;-1:-1:-1;;;30369:1108:0:o;31244:109::-;31115:261;;;30577:833;30524:886;31438:31;;-1:-1:-1;;;31438:31:0;;;;;;;;;;;5448:191;5541:6;;;-1:-1:-1;;;;;5558:17:0;;;-1:-1:-1;;;;;;5558:17:0;;;;;;;5591:40;;5541:6;;;5558:17;5541:6;;5591:40;;5522:16;;5591:40;5511:128;5448:191;:::o;35406:104::-;35475:27;35485:2;35489:8;35475:27;;;;;;;;;;;;:9;:27::i;46666:359::-;46752:1;46735:14;:18;:48;;;;;46167:1;46757:14;:26;;46735:48;46727:80;;;;-1:-1:-1;;;46727:80:0;;9286:2:1;46727:80:0;;;9268:21:1;9325:2;9305:18;;;9298:30;-1:-1:-1;;;9344:18:1;;;9337:49;9403:18;;46727:80:0;9084:343:1;46727:80:0;46124:1;46837:14;46821:13;27848:12;;27638:7;27832:13;:28;;27594:303;46821:13;:30;;;;:::i;:::-;:43;46818:197;;;46880:50;46891:10;46916:13;27848:12;;27638:7;27832:13;:28;;27594:303;46916:13;46903:26;;46124:1;46903:26;:::i;:::-;46880:9;:50::i;46818:197::-;46964:38;46975:10;46987:14;46964:9;:38::i;47037:412::-;47125:1;47108:14;:18;:50;;;;;46212:1;47130:14;:28;;47108:50;47100:82;;;;-1:-1:-1;;;47100:82:0;;9286:2:1;47100:82:0;;;9268:21:1;9325:2;9305:18;;;9298:30;-1:-1:-1;;;9344:18:1;;;9337:49;9403:18;;47100:82:0;9084:343:1;47100:82:0;47235:9;;47217:14;47201:13;27848:12;;27638:7;27832:13;:28;;27594:303;47201:13;:30;;;;:::i;:::-;:43;;47193:98;;;;-1:-1:-1;;;47193:98:0;;7761:2:1;47193:98:0;;;7743:21:1;7800:2;7780:18;;;7773:30;7839:34;7819:18;;;7812:62;-1:-1:-1;;;7890:18:1;;;7883:40;7940:19;;47193:98:0;7559:406:1;47193:98:0;47336:9;47318:14;47310:5;;:22;;;;:::i;:::-;:35;47302:79;;;;-1:-1:-1;;;47302:79:0;;7401:2:1;47302:79:0;;;7383:21:1;7440:2;7420:18;;;7413:30;7479:33;7459:18;;;7452:61;7530:18;;47302:79:0;7199:355:1;43510:667:0;43694:72;;-1:-1:-1;;;43694:72:0;;43673:4;;-1:-1:-1;;;;;43694:36:0;;;;;:72;;2982:10;;43745:4;;43751:7;;43760:5;;43694:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43694:72:0;;;;;;;;-1:-1:-1;;43694:72:0;;;;;;;;;;;;:::i;:::-;;;43690:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43928:13:0;;43924:235;;43974:40;;-1:-1:-1;;;43974:40:0;;;;;;;;;;;43924:235;44117:6;44111:13;44102:6;44098:2;44094:15;44087:38;43690:480;-1:-1:-1;;;;;;43813:55:0;-1:-1:-1;;;43813:55:0;;-1:-1:-1;43690:480:0;43510:667;;;;;;:::o;48182:100::-;48234:13;48267:7;48260:14;;;;;:::i;464:723::-;520:13;741:10;737:53;;-1:-1:-1;;768:10:0;;;;;;;;;;;;-1:-1:-1;;;768:10:0;;;;;464:723::o;737:53::-;815:5;800:12;856:78;863:9;;856:78;;889:8;;;;:::i;:::-;;-1:-1:-1;912:10:0;;-1:-1:-1;920:2:0;912:10;;:::i;:::-;;;856:78;;;944:19;976:6;966:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;966:17:0;;944:39;;994:154;1001:10;;994:154;;1028:11;1038:1;1028:11;;:::i;:::-;;-1:-1:-1;1097:10:0;1105:2;1097:5;:10;:::i;:::-;1084:24;;:2;:24;:::i;:::-;1071:39;;1054:6;1061;1054:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1054:56:0;;;;;;;;-1:-1:-1;1125:11:0;1134:2;1125:11;;:::i;:::-;;;994:154;;35873:163;35996:32;36002:2;36006:8;36016:5;36023:4;36434:20;36457:13;-1:-1:-1;;;;;36485:16:0;;36481:48;;36510:19;;-1:-1:-1;;;36510:19:0;;;;;;;;;;;36481:48;36544:13;36540:44;;36566:18;;-1:-1:-1;;;36566:18:0;;;;;;;;;;;36540:44;-1:-1:-1;;;;;36935:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;36994:49:0;;36935:44;;;;;;;;36994:49;;;;-1:-1:-1;;36935:44:0;;;;;;36994:49;;;;;;;;;;;;;;;;37060:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;37110:66:0;;;;-1:-1:-1;;;37160:15:0;37110:66;;;;;;;;;;37060:25;37257:23;;;37301:4;:23;;;;-1:-1:-1;;;;;;37309:13:0;;7174:19;:23;;37309:15;37297:641;;;37345:314;37376:38;;37401:12;;-1:-1:-1;;;;;37376:38:0;;;37393:1;;37376:38;;37393:1;;37376:38;37442:69;37481:1;37485:2;37489:14;;;;;;37505:5;37442:30;:69::i;:::-;37437:174;;37547:40;;-1:-1:-1;;;37547:40:0;;;;;;;;;;;37437:174;37654:3;37638:12;:19;;37345:314;;37740:12;37723:13;;:29;37719:43;;37754:8;;;37719:43;37297:641;;;37803:120;37834:40;;37859:14;;;;;-1:-1:-1;;;;;37834:40:0;;;37851:1;;37834:40;;37851:1;;37834:40;37918:3;37902:12;:19;;37803:120;;37297:641;-1:-1:-1;37952:13:0;:28;38002:60;34587:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:245::-;2957:6;3010:2;2998:9;2989:7;2985:23;2981:32;2978:52;;;3026:1;3023;3016:12;2978:52;3065:9;3052:23;3084:30;3108:5;3084:30;:::i;3149:249::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:52;;;3287:1;3284;3277:12;3239:52;3319:9;3313:16;3338:30;3362:5;3338:30;:::i;3403:450::-;3472:6;3525:2;3513:9;3504:7;3500:23;3496:32;3493:52;;;3541:1;3538;3531:12;3493:52;3581:9;3568:23;3614:18;3606:6;3603:30;3600:50;;;3646:1;3643;3636:12;3600:50;3669:22;;3722:4;3714:13;;3710:27;-1:-1:-1;3700:55:1;;3751:1;3748;3741:12;3700:55;3774:73;3839:7;3834:2;3821:16;3816:2;3812;3808:11;3774:73;:::i;3858:180::-;3917:6;3970:2;3958:9;3949:7;3945:23;3941:32;3938:52;;;3986:1;3983;3976:12;3938:52;-1:-1:-1;4009:23:1;;3858:180;-1:-1:-1;3858:180:1:o;4043:257::-;4084:3;4122:5;4116:12;4149:6;4144:3;4137:19;4165:63;4221:6;4214:4;4209:3;4205:14;4198:4;4191:5;4187:16;4165:63;:::i;:::-;4282:2;4261:15;-1:-1:-1;;4257:29:1;4248:39;;;;4289:4;4244:50;;4043:257;-1:-1:-1;;4043:257:1:o;4305:664::-;4532:3;4570:6;4564:13;4586:53;4632:6;4627:3;4620:4;4612:6;4608:17;4586:53;:::i;:::-;4702:13;;4661:16;;;;4724:57;4702:13;4661:16;4758:4;4746:17;;4724:57;:::i;:::-;4848:13;;4803:20;;;4870:57;4848:13;4803:20;4904:4;4892:17;;4870:57;:::i;:::-;4943:20;;4305:664;-1:-1:-1;;;;;4305:664:1:o;5182:488::-;-1:-1:-1;;;;;5451:15:1;;;5433:34;;5503:15;;5498:2;5483:18;;5476:43;5550:2;5535:18;;5528:34;;;5598:3;5593:2;5578:18;;5571:31;;;5376:4;;5619:45;;5644:19;;5636:6;5619:45;:::i;:::-;5611:53;5182:488;-1:-1:-1;;;;;;5182:488:1:o;5867:219::-;6016:2;6005:9;5998:21;5979:4;6036:44;6076:2;6065:9;6061:18;6053:6;6036:44;:::i;7970:356::-;8172:2;8154:21;;;8191:18;;;8184:30;8250:34;8245:2;8230:18;;8223:62;8317:2;8302:18;;7970:356::o;9960:128::-;10000:3;10031:1;10027:6;10024:1;10021:13;10018:39;;;10037:18;;:::i;:::-;-1:-1:-1;10073:9:1;;9960:128::o;10093:120::-;10133:1;10159;10149:35;;10164:18;;:::i;:::-;-1:-1:-1;10198:9:1;;10093:120::o;10218:168::-;10258:7;10324:1;10320;10316:6;10312:14;10309:1;10306:21;10301:1;10294:9;10287:17;10283:45;10280:71;;;10331:18;;:::i;:::-;-1:-1:-1;10371:9:1;;10218:168::o;10391:125::-;10431:4;10459:1;10456;10453:8;10450:34;;;10464:18;;:::i;:::-;-1:-1:-1;10501:9:1;;10391:125::o;10521:258::-;10593:1;10603:113;10617:6;10614:1;10611:13;10603:113;;;10693:11;;;10687:18;10674:11;;;10667:39;10639:2;10632:10;10603:113;;;10734:6;10731:1;10728:13;10725:48;;;-1:-1:-1;;10769:1:1;10751:16;;10744:27;10521:258::o;10784:380::-;10863:1;10859:12;;;;10906;;;10927:61;;10981:4;10973:6;10969:17;10959:27;;10927:61;11034:2;11026:6;11023:14;11003:18;11000:38;10997:161;;;11080:10;11075:3;11071:20;11068:1;11061:31;11115:4;11112:1;11105:15;11143:4;11140:1;11133:15;10997:161;;10784:380;;;:::o;11169:135::-;11208:3;-1:-1:-1;;11229:17:1;;11226:43;;;11249:18;;:::i;:::-;-1:-1:-1;11296:1:1;11285:13;;11169:135::o;11309:112::-;11341:1;11367;11357:35;;11372:18;;:::i;:::-;-1:-1:-1;11406:9:1;;11309:112::o;11426:127::-;11487:10;11482:3;11478:20;11475:1;11468:31;11518:4;11515:1;11508:15;11542:4;11539:1;11532:15;11558:127;11619:10;11614:3;11610:20;11607:1;11600:31;11650:4;11647:1;11640:15;11674:4;11671:1;11664:15;11690:127;11751:10;11746:3;11742:20;11739:1;11732:31;11782:4;11779:1;11772:15;11806:4;11803:1;11796:15;11822:127;11883:10;11878:3;11874:20;11871:1;11864:31;11914:4;11911:1;11904:15;11938:4;11935:1;11928:15;11954:131;-1:-1:-1;;;;;;12028:32:1;;12018:43;;12008:71;;12075:1;12072;12065:12

Swarm Source

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