ETH Price: $3,419.66 (+7.13%)
Gas: 28 Gwei

Token

Danny DAOVito (DEVITO)
 

Overview

Max Total Supply

879 DEVITO

Holders

221

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
cryptomonkey84.eth
Balance
3 DEVITO
0x30ee1f53c0e9489fdeb7047d005684d641bafb37
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:
DannyDao

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-01-19
*/

// SPDX-License-Identifier: GPL-3.0
// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/release-v4.4/contracts/utils/Counters.sol


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

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/release-v4.4/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/release-v4.4/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/release-v4.4/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/release-v4.4/contracts/utils/Address.sol


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

pragma solidity ^0.8.0;

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/release-v4.4/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/release-v4.4/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/release-v4.4/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/release-v4.4/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/release-v4.4/contracts/token/ERC721/extensions/IERC721Enumerable.sol


// OpenZeppelin Contracts v4.4.1 (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 tokenId);

    /**
     * @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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/release-v4.4/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/release-v4.4/contracts/token/ERC721/ERC721.sol


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

pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @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 virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @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) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        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 virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_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 {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _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 {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @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`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @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 {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * 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
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a 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 _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/release-v4.4/contracts/token/ERC721/extensions/ERC721Enumerable.sol


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

pragma solidity ^0.8.0;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
        return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

// File: contracts/Danny.sol



pragma solidity >=0.7.0 <0.9.0;




contract DannyDao is ERC721Enumerable, Ownable {

  using Strings for uint256;
  using Counters for Counters.Counter;
  Counters.Counter private _tokenIds;

  uint256 private constant maxDanny = 1001;

  string public baseURI;
  string public baseExtension = ".json";
  bool public paused = true;

  constructor (
      string memory _name ,
      string memory _symbol ,
      string memory _initBaseURI
  ) ERC721(_name, _symbol) {
    setBaseURI(_initBaseURI);  
    }

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

    function setBaseURI(string memory _newBaseURI) public onlyOwner {
    baseURI = _newBaseURI;
  }

  function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
    baseExtension = _newBaseExtension;
  }

    function MintDanny(uint256 _mintAmount) external payable {
        require(!paused , 'Danny isnt ready for you yet');
        require(_mintAmount != 0 , '0 Dannys isnt possible silly');
        require(_mintAmount <= 3, 'Too many Dannys');
        require(_tokenIds.current() + _mintAmount <= maxDanny , 'Not Enough Dannys left, go to OpenSea');
        for (uint256 i = 0; i < _mintAmount; i++) {
            _tokenIds.increment();
            mint(_tokenIds.current());
        }
    }
    
    function mint(uint256 tokenId ) internal {
        _safeMint(msg.sender , tokenId);
    }

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

  function pause(bool _state) public onlyOwner {
    paused = _state;
  }

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

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"MintDanny","outputs":[],"stateMutability":"payable","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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600d919062000194565b50600e805460ff191660011790553480156200004357600080fd5b50604051620024a2380380620024a28339810160408190526200006691620002f1565b8251839083906200007f90600090602085019062000194565b5080516200009590600190602084019062000194565b505050620000b2620000ac620000c660201b60201c565b620000ca565b620000bd816200011c565b505050620003d5565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b031633146200017b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b80516200019090600c90602084019062000194565b5050565b828054620001a29062000382565b90600052602060002090601f016020900481019282620001c6576000855562000211565b82601f10620001e157805160ff191683800117855562000211565b8280016001018555821562000211579182015b8281111562000211578251825591602001919060010190620001f4565b506200021f92915062000223565b5090565b5b808211156200021f576000815560010162000224565b600082601f8301126200024c57600080fd5b81516001600160401b0380821115620002695762000269620003bf565b604051601f8301601f19908116603f01168101908282118183101715620002945762000294620003bf565b81604052838152602092508683858801011115620002b157600080fd5b600091505b83821015620002d55785820183015181830184015290820190620002b6565b83821115620002e75760008385830101525b9695505050505050565b6000806000606084860312156200030757600080fd5b83516001600160401b03808211156200031f57600080fd5b6200032d878388016200023a565b945060208601519150808211156200034457600080fd5b62000352878388016200023a565b935060408601519150808211156200036957600080fd5b5062000378868287016200023a565b9150509250925092565b600181811c908216806200039757607f821691505b60208210811415620003b957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6120bd80620003e56000396000f3fe60806040526004361061019c5760003560e01c80636352211e116100ec578063b88d4fde1161008a578063c87b56dd11610064578063c87b56dd14610465578063da3ef23f14610485578063e985e9c5146104a5578063f2fde38b146104ee57600080fd5b8063b88d4fde1461041d578063be69a4a71461043d578063c66828621461045057600080fd5b8063715018a6116100c6578063715018a6146103b55780638da5cb5b146103ca57806395d89b41146103e8578063a22cb465146103fd57600080fd5b80636352211e146103605780636c0360eb1461038057806370a082311461039557600080fd5b806323b872dd1161015957806342842e0e1161013357806342842e0e146102e65780634f6ccce71461030657806355f804b3146103265780635c975abb1461034657600080fd5b806323b872dd146102915780632f745c59146102b15780633ccfd60b146102d157600080fd5b806301ffc9a7146101a157806302329a29146101d657806306fdde03146101f8578063081812fc1461021a578063095ea7b31461025257806318160ddd14610272575b600080fd5b3480156101ad57600080fd5b506101c16101bc366004611c6d565b61050e565b60405190151581526020015b60405180910390f35b3480156101e257600080fd5b506101f66101f1366004611c52565b610539565b005b34801561020457600080fd5b5061020d61057f565b6040516101cd9190611e3f565b34801561022657600080fd5b5061023a610235366004611cf0565b610611565b6040516001600160a01b0390911681526020016101cd565b34801561025e57600080fd5b506101f661026d366004611c28565b6106a6565b34801561027e57600080fd5b506008545b6040519081526020016101cd565b34801561029d57600080fd5b506101f66102ac366004611b46565b6107bc565b3480156102bd57600080fd5b506102836102cc366004611c28565b6107ed565b3480156102dd57600080fd5b506101f6610883565b3480156102f257600080fd5b506101f6610301366004611b46565b6108e0565b34801561031257600080fd5b50610283610321366004611cf0565b6108fb565b34801561033257600080fd5b506101f6610341366004611ca7565b61098e565b34801561035257600080fd5b50600e546101c19060ff1681565b34801561036c57600080fd5b5061023a61037b366004611cf0565b6109cb565b34801561038c57600080fd5b5061020d610a42565b3480156103a157600080fd5b506102836103b0366004611af1565b610ad0565b3480156103c157600080fd5b506101f6610b57565b3480156103d657600080fd5b50600a546001600160a01b031661023a565b3480156103f457600080fd5b5061020d610b8d565b34801561040957600080fd5b506101f6610418366004611bfe565b610b9c565b34801561042957600080fd5b506101f6610438366004611b82565b610ba7565b6101f661044b366004611cf0565b610bdf565b34801561045c57600080fd5b5061020d610d71565b34801561047157600080fd5b5061020d610480366004611cf0565b610d7e565b34801561049157600080fd5b506101f66104a0366004611ca7565b610e32565b3480156104b157600080fd5b506101c16104c0366004611b13565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156104fa57600080fd5b506101f6610509366004611af1565b610e6f565b60006001600160e01b0319821663780e9d6360e01b1480610533575061053382610f0a565b92915050565b600a546001600160a01b0316331461056c5760405162461bcd60e51b815260040161056390611ea4565b60405180910390fd5b600e805460ff1916911515919091179055565b60606000805461058e90611f99565b80601f01602080910402602001604051908101604052809291908181526020018280546105ba90611f99565b80156106075780601f106105dc57610100808354040283529160200191610607565b820191906000526020600020905b8154815290600101906020018083116105ea57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661068a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610563565b506000908152600460205260409020546001600160a01b031690565b60006106b1826109cb565b9050806001600160a01b0316836001600160a01b0316141561071f5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610563565b336001600160a01b038216148061073b575061073b81336104c0565b6107ad5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610563565b6107b78383610f5a565b505050565b6107c63382610fc8565b6107e25760405162461bcd60e51b815260040161056390611ed9565b6107b78383836110bf565b60006107f883610ad0565b821061085a5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610563565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b031633146108ad5760405162461bcd60e51b815260040161056390611ea4565b6040514790339082156108fc029083906000818181858888f193505050501580156108dc573d6000803e3d6000fd5b5050565b6107b783838360405180602001604052806000815250610ba7565b600061090660085490565b82106109695760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610563565b6008828154811061097c5761097c612045565b90600052602060002001549050919050565b600a546001600160a01b031633146109b85760405162461bcd60e51b815260040161056390611ea4565b80516108dc90600c9060208401906119b6565b6000818152600260205260408120546001600160a01b0316806105335760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610563565b600c8054610a4f90611f99565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7b90611f99565b8015610ac85780601f10610a9d57610100808354040283529160200191610ac8565b820191906000526020600020905b815481529060010190602001808311610aab57829003601f168201915b505050505081565b60006001600160a01b038216610b3b5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610563565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610b815760405162461bcd60e51b815260040161056390611ea4565b610b8b600061126a565b565b60606001805461058e90611f99565b6108dc3383836112bc565b610bb13383610fc8565b610bcd5760405162461bcd60e51b815260040161056390611ed9565b610bd98484848461138b565b50505050565b600e5460ff1615610c325760405162461bcd60e51b815260206004820152601c60248201527f44616e6e792069736e7420726561647920666f7220796f7520796574000000006044820152606401610563565b80610c7f5760405162461bcd60e51b815260206004820152601c60248201527f302044616e6e79732069736e7420706f737369626c652073696c6c79000000006044820152606401610563565b6003811115610cc25760405162461bcd60e51b815260206004820152600f60248201526e546f6f206d616e792044616e6e797360881b6044820152606401610563565b6103e981610ccf600b5490565b610cd99190611f2a565b1115610d355760405162461bcd60e51b815260206004820152602560248201527f4e6f7420456e6f7567682044616e6e7973206c6566742c20676f20746f204f70604482015264656e53656160d81b6064820152608401610563565b60005b818110156108dc57610d4e600b80546001019055565b610d5f610d5a600b5490565b6113be565b80610d6981611fd4565b915050610d38565b600d8054610a4f90611f99565b6000818152600260205260409020546060906001600160a01b0316610dfd5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610563565b600c610e08836113c8565b600d604051602001610e1c93929190611dcf565b6040516020818303038152906040529050919050565b600a546001600160a01b03163314610e5c5760405162461bcd60e51b815260040161056390611ea4565b80516108dc90600d9060208401906119b6565b600a546001600160a01b03163314610e995760405162461bcd60e51b815260040161056390611ea4565b6001600160a01b038116610efe5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610563565b610f078161126a565b50565b60006001600160e01b031982166380ac58cd60e01b1480610f3b57506001600160e01b03198216635b5e139f60e01b145b8061053357506301ffc9a760e01b6001600160e01b0319831614610533565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610f8f826109cb565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166110415760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610563565b600061104c836109cb565b9050806001600160a01b0316846001600160a01b031614806110875750836001600160a01b031661107c84610611565b6001600160a01b0316145b806110b757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166110d2826109cb565b6001600160a01b03161461113a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610563565b6001600160a01b03821661119c5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610563565b6111a78383836114c6565b6111b2600082610f5a565b6001600160a01b03831660009081526003602052604081208054600192906111db908490611f56565b90915550506001600160a01b0382166000908152600360205260408120805460019290611209908490611f2a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b0316141561131e5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610563565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6113968484846110bf565b6113a28484848461157e565b610bd95760405162461bcd60e51b815260040161056390611e52565b610f07338261168b565b6060816113ec5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611416578061140081611fd4565b915061140f9050600a83611f42565b91506113f0565b60008167ffffffffffffffff8111156114315761143161205b565b6040519080825280601f01601f19166020018201604052801561145b576020820181803683370190505b5090505b84156110b757611470600183611f56565b915061147d600a86611fef565b611488906030611f2a565b60f81b81838151811061149d5761149d612045565b60200101906001600160f81b031916908160001a9053506114bf600a86611f42565b945061145f565b6001600160a01b0383166115215761151c81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611544565b816001600160a01b0316836001600160a01b0316146115445761154483826116a5565b6001600160a01b03821661155b576107b781611742565b826001600160a01b0316826001600160a01b0316146107b7576107b782826117f1565b60006001600160a01b0384163b1561168057604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906115c2903390899088908890600401611e02565b602060405180830381600087803b1580156115dc57600080fd5b505af192505050801561160c575060408051601f3d908101601f1916820190925261160991810190611c8a565b60015b611666573d80801561163a576040519150601f19603f3d011682016040523d82523d6000602084013e61163f565b606091505b50805161165e5760405162461bcd60e51b815260040161056390611e52565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506110b7565b506001949350505050565b6108dc828260405180602001604052806000815250611835565b600060016116b284610ad0565b6116bc9190611f56565b60008381526007602052604090205490915080821461170f576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061175490600190611f56565b6000838152600960205260408120546008805493945090928490811061177c5761177c612045565b90600052602060002001549050806008838154811061179d5761179d612045565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806117d5576117d561202f565b6001900381819060005260206000200160009055905550505050565b60006117fc83610ad0565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b61183f8383611868565b61184c600084848461157e565b6107b75760405162461bcd60e51b815260040161056390611e52565b6001600160a01b0382166118be5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610563565b6000818152600260205260409020546001600160a01b0316156119235760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610563565b61192f600083836114c6565b6001600160a01b0382166000908152600360205260408120805460019290611958908490611f2a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546119c290611f99565b90600052602060002090601f0160209004810192826119e45760008555611a2a565b82601f106119fd57805160ff1916838001178555611a2a565b82800160010185558215611a2a579182015b82811115611a2a578251825591602001919060010190611a0f565b50611a36929150611a3a565b5090565b5b80821115611a365760008155600101611a3b565b600067ffffffffffffffff80841115611a6a57611a6a61205b565b604051601f8501601f19908116603f01168101908282118183101715611a9257611a9261205b565b81604052809350858152868686011115611aab57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611adc57600080fd5b919050565b80358015158114611adc57600080fd5b600060208284031215611b0357600080fd5b611b0c82611ac5565b9392505050565b60008060408385031215611b2657600080fd5b611b2f83611ac5565b9150611b3d60208401611ac5565b90509250929050565b600080600060608486031215611b5b57600080fd5b611b6484611ac5565b9250611b7260208501611ac5565b9150604084013590509250925092565b60008060008060808587031215611b9857600080fd5b611ba185611ac5565b9350611baf60208601611ac5565b925060408501359150606085013567ffffffffffffffff811115611bd257600080fd5b8501601f81018713611be357600080fd5b611bf287823560208401611a4f565b91505092959194509250565b60008060408385031215611c1157600080fd5b611c1a83611ac5565b9150611b3d60208401611ae1565b60008060408385031215611c3b57600080fd5b611c4483611ac5565b946020939093013593505050565b600060208284031215611c6457600080fd5b611b0c82611ae1565b600060208284031215611c7f57600080fd5b8135611b0c81612071565b600060208284031215611c9c57600080fd5b8151611b0c81612071565b600060208284031215611cb957600080fd5b813567ffffffffffffffff811115611cd057600080fd5b8201601f81018413611ce157600080fd5b6110b784823560208401611a4f565b600060208284031215611d0257600080fd5b5035919050565b60008151808452611d21816020860160208601611f6d565b601f01601f19169290920160200192915050565b8054600090600181811c9080831680611d4f57607f831692505b6020808410821415611d7157634e487b7160e01b600052602260045260246000fd5b818015611d855760018114611d9657611dc3565b60ff19861689528489019650611dc3565b60008881526020902060005b86811015611dbb5781548b820152908501908301611da2565b505084890196505b50505050505092915050565b6000611ddb8286611d35565b8451611deb818360208901611f6d565b611df781830186611d35565b979650505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611e3590830184611d09565b9695505050505050565b602081526000611b0c6020830184611d09565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611f3d57611f3d612003565b500190565b600082611f5157611f51612019565b500490565b600082821015611f6857611f68612003565b500390565b60005b83811015611f88578181015183820152602001611f70565b83811115610bd95750506000910152565b600181811c90821680611fad57607f821691505b60208210811415611fce57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611fe857611fe8612003565b5060010190565b600082611ffe57611ffe612019565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610f0757600080fdfea2646970667358221220a716f96812b420131fda7059d13bd95e03839c2cae236cf1685e05611e8cef1864736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000d44616e6e792044414f5669746f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000644455649544f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d657564535759776f564167335964384d3844466b484b42396542414258366d7a4575727262617634583453592f00000000000000000000

Deployed Bytecode

0x60806040526004361061019c5760003560e01c80636352211e116100ec578063b88d4fde1161008a578063c87b56dd11610064578063c87b56dd14610465578063da3ef23f14610485578063e985e9c5146104a5578063f2fde38b146104ee57600080fd5b8063b88d4fde1461041d578063be69a4a71461043d578063c66828621461045057600080fd5b8063715018a6116100c6578063715018a6146103b55780638da5cb5b146103ca57806395d89b41146103e8578063a22cb465146103fd57600080fd5b80636352211e146103605780636c0360eb1461038057806370a082311461039557600080fd5b806323b872dd1161015957806342842e0e1161013357806342842e0e146102e65780634f6ccce71461030657806355f804b3146103265780635c975abb1461034657600080fd5b806323b872dd146102915780632f745c59146102b15780633ccfd60b146102d157600080fd5b806301ffc9a7146101a157806302329a29146101d657806306fdde03146101f8578063081812fc1461021a578063095ea7b31461025257806318160ddd14610272575b600080fd5b3480156101ad57600080fd5b506101c16101bc366004611c6d565b61050e565b60405190151581526020015b60405180910390f35b3480156101e257600080fd5b506101f66101f1366004611c52565b610539565b005b34801561020457600080fd5b5061020d61057f565b6040516101cd9190611e3f565b34801561022657600080fd5b5061023a610235366004611cf0565b610611565b6040516001600160a01b0390911681526020016101cd565b34801561025e57600080fd5b506101f661026d366004611c28565b6106a6565b34801561027e57600080fd5b506008545b6040519081526020016101cd565b34801561029d57600080fd5b506101f66102ac366004611b46565b6107bc565b3480156102bd57600080fd5b506102836102cc366004611c28565b6107ed565b3480156102dd57600080fd5b506101f6610883565b3480156102f257600080fd5b506101f6610301366004611b46565b6108e0565b34801561031257600080fd5b50610283610321366004611cf0565b6108fb565b34801561033257600080fd5b506101f6610341366004611ca7565b61098e565b34801561035257600080fd5b50600e546101c19060ff1681565b34801561036c57600080fd5b5061023a61037b366004611cf0565b6109cb565b34801561038c57600080fd5b5061020d610a42565b3480156103a157600080fd5b506102836103b0366004611af1565b610ad0565b3480156103c157600080fd5b506101f6610b57565b3480156103d657600080fd5b50600a546001600160a01b031661023a565b3480156103f457600080fd5b5061020d610b8d565b34801561040957600080fd5b506101f6610418366004611bfe565b610b9c565b34801561042957600080fd5b506101f6610438366004611b82565b610ba7565b6101f661044b366004611cf0565b610bdf565b34801561045c57600080fd5b5061020d610d71565b34801561047157600080fd5b5061020d610480366004611cf0565b610d7e565b34801561049157600080fd5b506101f66104a0366004611ca7565b610e32565b3480156104b157600080fd5b506101c16104c0366004611b13565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156104fa57600080fd5b506101f6610509366004611af1565b610e6f565b60006001600160e01b0319821663780e9d6360e01b1480610533575061053382610f0a565b92915050565b600a546001600160a01b0316331461056c5760405162461bcd60e51b815260040161056390611ea4565b60405180910390fd5b600e805460ff1916911515919091179055565b60606000805461058e90611f99565b80601f01602080910402602001604051908101604052809291908181526020018280546105ba90611f99565b80156106075780601f106105dc57610100808354040283529160200191610607565b820191906000526020600020905b8154815290600101906020018083116105ea57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661068a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610563565b506000908152600460205260409020546001600160a01b031690565b60006106b1826109cb565b9050806001600160a01b0316836001600160a01b0316141561071f5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610563565b336001600160a01b038216148061073b575061073b81336104c0565b6107ad5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610563565b6107b78383610f5a565b505050565b6107c63382610fc8565b6107e25760405162461bcd60e51b815260040161056390611ed9565b6107b78383836110bf565b60006107f883610ad0565b821061085a5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610563565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b031633146108ad5760405162461bcd60e51b815260040161056390611ea4565b6040514790339082156108fc029083906000818181858888f193505050501580156108dc573d6000803e3d6000fd5b5050565b6107b783838360405180602001604052806000815250610ba7565b600061090660085490565b82106109695760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610563565b6008828154811061097c5761097c612045565b90600052602060002001549050919050565b600a546001600160a01b031633146109b85760405162461bcd60e51b815260040161056390611ea4565b80516108dc90600c9060208401906119b6565b6000818152600260205260408120546001600160a01b0316806105335760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610563565b600c8054610a4f90611f99565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7b90611f99565b8015610ac85780601f10610a9d57610100808354040283529160200191610ac8565b820191906000526020600020905b815481529060010190602001808311610aab57829003601f168201915b505050505081565b60006001600160a01b038216610b3b5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610563565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610b815760405162461bcd60e51b815260040161056390611ea4565b610b8b600061126a565b565b60606001805461058e90611f99565b6108dc3383836112bc565b610bb13383610fc8565b610bcd5760405162461bcd60e51b815260040161056390611ed9565b610bd98484848461138b565b50505050565b600e5460ff1615610c325760405162461bcd60e51b815260206004820152601c60248201527f44616e6e792069736e7420726561647920666f7220796f7520796574000000006044820152606401610563565b80610c7f5760405162461bcd60e51b815260206004820152601c60248201527f302044616e6e79732069736e7420706f737369626c652073696c6c79000000006044820152606401610563565b6003811115610cc25760405162461bcd60e51b815260206004820152600f60248201526e546f6f206d616e792044616e6e797360881b6044820152606401610563565b6103e981610ccf600b5490565b610cd99190611f2a565b1115610d355760405162461bcd60e51b815260206004820152602560248201527f4e6f7420456e6f7567682044616e6e7973206c6566742c20676f20746f204f70604482015264656e53656160d81b6064820152608401610563565b60005b818110156108dc57610d4e600b80546001019055565b610d5f610d5a600b5490565b6113be565b80610d6981611fd4565b915050610d38565b600d8054610a4f90611f99565b6000818152600260205260409020546060906001600160a01b0316610dfd5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610563565b600c610e08836113c8565b600d604051602001610e1c93929190611dcf565b6040516020818303038152906040529050919050565b600a546001600160a01b03163314610e5c5760405162461bcd60e51b815260040161056390611ea4565b80516108dc90600d9060208401906119b6565b600a546001600160a01b03163314610e995760405162461bcd60e51b815260040161056390611ea4565b6001600160a01b038116610efe5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610563565b610f078161126a565b50565b60006001600160e01b031982166380ac58cd60e01b1480610f3b57506001600160e01b03198216635b5e139f60e01b145b8061053357506301ffc9a760e01b6001600160e01b0319831614610533565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610f8f826109cb565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166110415760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610563565b600061104c836109cb565b9050806001600160a01b0316846001600160a01b031614806110875750836001600160a01b031661107c84610611565b6001600160a01b0316145b806110b757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166110d2826109cb565b6001600160a01b03161461113a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610563565b6001600160a01b03821661119c5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610563565b6111a78383836114c6565b6111b2600082610f5a565b6001600160a01b03831660009081526003602052604081208054600192906111db908490611f56565b90915550506001600160a01b0382166000908152600360205260408120805460019290611209908490611f2a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b0316141561131e5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610563565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6113968484846110bf565b6113a28484848461157e565b610bd95760405162461bcd60e51b815260040161056390611e52565b610f07338261168b565b6060816113ec5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611416578061140081611fd4565b915061140f9050600a83611f42565b91506113f0565b60008167ffffffffffffffff8111156114315761143161205b565b6040519080825280601f01601f19166020018201604052801561145b576020820181803683370190505b5090505b84156110b757611470600183611f56565b915061147d600a86611fef565b611488906030611f2a565b60f81b81838151811061149d5761149d612045565b60200101906001600160f81b031916908160001a9053506114bf600a86611f42565b945061145f565b6001600160a01b0383166115215761151c81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611544565b816001600160a01b0316836001600160a01b0316146115445761154483826116a5565b6001600160a01b03821661155b576107b781611742565b826001600160a01b0316826001600160a01b0316146107b7576107b782826117f1565b60006001600160a01b0384163b1561168057604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906115c2903390899088908890600401611e02565b602060405180830381600087803b1580156115dc57600080fd5b505af192505050801561160c575060408051601f3d908101601f1916820190925261160991810190611c8a565b60015b611666573d80801561163a576040519150601f19603f3d011682016040523d82523d6000602084013e61163f565b606091505b50805161165e5760405162461bcd60e51b815260040161056390611e52565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506110b7565b506001949350505050565b6108dc828260405180602001604052806000815250611835565b600060016116b284610ad0565b6116bc9190611f56565b60008381526007602052604090205490915080821461170f576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061175490600190611f56565b6000838152600960205260408120546008805493945090928490811061177c5761177c612045565b90600052602060002001549050806008838154811061179d5761179d612045565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806117d5576117d561202f565b6001900381819060005260206000200160009055905550505050565b60006117fc83610ad0565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b61183f8383611868565b61184c600084848461157e565b6107b75760405162461bcd60e51b815260040161056390611e52565b6001600160a01b0382166118be5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610563565b6000818152600260205260409020546001600160a01b0316156119235760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610563565b61192f600083836114c6565b6001600160a01b0382166000908152600360205260408120805460019290611958908490611f2a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546119c290611f99565b90600052602060002090601f0160209004810192826119e45760008555611a2a565b82601f106119fd57805160ff1916838001178555611a2a565b82800160010185558215611a2a579182015b82811115611a2a578251825591602001919060010190611a0f565b50611a36929150611a3a565b5090565b5b80821115611a365760008155600101611a3b565b600067ffffffffffffffff80841115611a6a57611a6a61205b565b604051601f8501601f19908116603f01168101908282118183101715611a9257611a9261205b565b81604052809350858152868686011115611aab57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611adc57600080fd5b919050565b80358015158114611adc57600080fd5b600060208284031215611b0357600080fd5b611b0c82611ac5565b9392505050565b60008060408385031215611b2657600080fd5b611b2f83611ac5565b9150611b3d60208401611ac5565b90509250929050565b600080600060608486031215611b5b57600080fd5b611b6484611ac5565b9250611b7260208501611ac5565b9150604084013590509250925092565b60008060008060808587031215611b9857600080fd5b611ba185611ac5565b9350611baf60208601611ac5565b925060408501359150606085013567ffffffffffffffff811115611bd257600080fd5b8501601f81018713611be357600080fd5b611bf287823560208401611a4f565b91505092959194509250565b60008060408385031215611c1157600080fd5b611c1a83611ac5565b9150611b3d60208401611ae1565b60008060408385031215611c3b57600080fd5b611c4483611ac5565b946020939093013593505050565b600060208284031215611c6457600080fd5b611b0c82611ae1565b600060208284031215611c7f57600080fd5b8135611b0c81612071565b600060208284031215611c9c57600080fd5b8151611b0c81612071565b600060208284031215611cb957600080fd5b813567ffffffffffffffff811115611cd057600080fd5b8201601f81018413611ce157600080fd5b6110b784823560208401611a4f565b600060208284031215611d0257600080fd5b5035919050565b60008151808452611d21816020860160208601611f6d565b601f01601f19169290920160200192915050565b8054600090600181811c9080831680611d4f57607f831692505b6020808410821415611d7157634e487b7160e01b600052602260045260246000fd5b818015611d855760018114611d9657611dc3565b60ff19861689528489019650611dc3565b60008881526020902060005b86811015611dbb5781548b820152908501908301611da2565b505084890196505b50505050505092915050565b6000611ddb8286611d35565b8451611deb818360208901611f6d565b611df781830186611d35565b979650505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611e3590830184611d09565b9695505050505050565b602081526000611b0c6020830184611d09565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611f3d57611f3d612003565b500190565b600082611f5157611f51612019565b500490565b600082821015611f6857611f68612003565b500390565b60005b83811015611f88578181015183820152602001611f70565b83811115610bd95750506000910152565b600181811c90821680611fad57607f821691505b60208210811415611fce57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611fe857611fe8612003565b5060010190565b600082611ffe57611ffe612019565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610f0757600080fdfea2646970667358221220a716f96812b420131fda7059d13bd95e03839c2cae236cf1685e05611e8cef1864736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000d44616e6e792044414f5669746f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000644455649544f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d657564535759776f564167335964384d3844466b484b42396542414258366d7a4575727262617634583453592f00000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Danny DAOVito
Arg [1] : _symbol (string): DEVITO
Arg [2] : _initBaseURI (string): ipfs://QmeudSWYwoVAg3Yd8M8DFkHKB9eBABX6mzEurrbav4X4SY/

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [4] : 44616e6e792044414f5669746f00000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [6] : 44455649544f0000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [8] : 697066733a2f2f516d657564535759776f564167335964384d3844466b484b42
Arg [9] : 396542414258366d7a4575727262617634583453592f00000000000000000000


Deployed Bytecode Sourcemap

46760:1944:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40535:224;;;;;;;;;;-1:-1:-1;40535:224:0;;;;;:::i;:::-;;:::i;:::-;;;6867:14:1;;6860:22;6842:41;;6830:2;6815:18;40535:224:0;;;;;;;;48477:73;;;;;;;;;;-1:-1:-1;48477:73:0;;;;;:::i;:::-;;:::i;:::-;;27970:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29529:221::-;;;;;;;;;;-1:-1:-1;29529:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6165:32:1;;;6147:51;;6135:2;6120:18;29529:221:0;6001:203:1;29052:411:0;;;;;;;;;;-1:-1:-1;29052:411:0;;;;;:::i;:::-;;:::i;41175:113::-;;;;;;;;;;-1:-1:-1;41263:10:0;:17;41175:113;;;15935:25:1;;;15923:2;15908:18;41175:113:0;15789:177:1;30279:339:0;;;;;;;;;;-1:-1:-1;30279:339:0;;;;;:::i;:::-;;:::i;40843:256::-;;;;;;;;;;-1:-1:-1;40843:256:0;;;;;:::i;:::-;;:::i;48556:143::-;;;;;;;;;;;;;:::i;30689:185::-;;;;;;;;;;-1:-1:-1;30689:185:0;;;;;:::i;:::-;;:::i;41365:233::-;;;;;;;;;;-1:-1:-1;41365:233:0;;;;;:::i;:::-;;:::i;47371:98::-;;;;;;;;;;-1:-1:-1;47371:98:0;;;;;:::i;:::-;;:::i;47040:25::-;;;;;;;;;;-1:-1:-1;47040:25:0;;;;;;;;27664:239;;;;;;;;;;-1:-1:-1;27664:239:0;;;;;:::i;:::-;;:::i;46972:21::-;;;;;;;;;;;;;:::i;27394:208::-;;;;;;;;;;-1:-1:-1;27394:208:0;;;;;:::i;:::-;;:::i;6468:103::-;;;;;;;;;;;;;:::i;5817:87::-;;;;;;;;;;-1:-1:-1;5890:6:0;;-1:-1:-1;;;;;5890:6:0;5817:87;;28139:104;;;;;;;;;;;;;:::i;29822:155::-;;;;;;;;;;-1:-1:-1;29822:155:0;;;;;:::i;:::-;;:::i;30945:328::-;;;;;;;;;;-1:-1:-1;30945:328:0;;;;;:::i;:::-;;:::i;47605:496::-;;;;;;:::i;:::-;;:::i;46998:37::-;;;;;;;;;;;;;:::i;48212:259::-;;;;;;;;;;-1:-1:-1;48212:259:0;;;;;:::i;:::-;;:::i;47475:122::-;;;;;;;;;;-1:-1:-1;47475:122:0;;;;;:::i;:::-;;:::i;30048:164::-;;;;;;;;;;-1:-1:-1;30048:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;30169:25:0;;;30145:4;30169:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;30048:164;6726:201;;;;;;;;;;-1:-1:-1;6726:201:0;;;;;:::i;:::-;;:::i;40535:224::-;40637:4;-1:-1:-1;;;;;;40661:50:0;;-1:-1:-1;;;40661:50:0;;:90;;;40715:36;40739:11;40715:23;:36::i;:::-;40654:97;40535:224;-1:-1:-1;;40535:224:0:o;48477:73::-;5890:6;;-1:-1:-1;;;;;5890:6:0;4562:10;6037:23;6029:68;;;;-1:-1:-1;;;6029:68:0;;;;;;;:::i;:::-;;;;;;;;;48529:6:::1;:15:::0;;-1:-1:-1;;48529:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;48477:73::o;27970:100::-;28024:13;28057:5;28050:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27970:100;:::o;29529:221::-;29605:7;32872:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32872:16:0;29625:73;;;;-1:-1:-1;;;29625:73:0;;12801:2:1;29625:73:0;;;12783:21:1;12840:2;12820:18;;;12813:30;12879:34;12859:18;;;12852:62;-1:-1:-1;;;12930:18:1;;;12923:42;12982:19;;29625:73:0;12599:408:1;29625:73:0;-1:-1:-1;29718:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29718:24:0;;29529:221::o;29052:411::-;29133:13;29149:23;29164:7;29149:14;:23::i;:::-;29133:39;;29197:5;-1:-1:-1;;;;;29191:11:0;:2;-1:-1:-1;;;;;29191:11:0;;;29183:57;;;;-1:-1:-1;;;29183:57:0;;14758:2:1;29183:57:0;;;14740:21:1;14797:2;14777:18;;;14770:30;14836:34;14816:18;;;14809:62;-1:-1:-1;;;14887:18:1;;;14880:31;14928:19;;29183:57:0;14556:397:1;29183:57:0;4562:10;-1:-1:-1;;;;;29275:21:0;;;;:62;;-1:-1:-1;29300:37:0;29317:5;4562:10;30048:164;:::i;29300:37::-;29253:168;;;;-1:-1:-1;;;29253:168:0;;10837:2:1;29253:168:0;;;10819:21:1;10876:2;10856:18;;;10849:30;10915:34;10895:18;;;10888:62;10986:26;10966:18;;;10959:54;11030:19;;29253:168:0;10635:420:1;29253:168:0;29434:21;29443:2;29447:7;29434:8;:21::i;:::-;29122:341;29052:411;;:::o;30279:339::-;30474:41;4562:10;30507:7;30474:18;:41::i;:::-;30466:103;;;;-1:-1:-1;;;30466:103:0;;;;;;;:::i;:::-;30582:28;30592:4;30598:2;30602:7;30582:9;:28::i;40843:256::-;40940:7;40976:23;40993:5;40976:16;:23::i;:::-;40968:5;:31;40960:87;;;;-1:-1:-1;;;40960:87:0;;7320:2:1;40960:87:0;;;7302:21:1;7359:2;7339:18;;;7332:30;7398:34;7378:18;;;7371:62;-1:-1:-1;;;7449:18:1;;;7442:41;7500:19;;40960:87:0;7118:407:1;40960:87:0;-1:-1:-1;;;;;;41065:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;40843:256::o;48556:143::-;5890:6;;-1:-1:-1;;;;;5890:6:0;4562:10;6037:23;6029:68;;;;-1:-1:-1;;;6029:68:0;;;;;;;:::i;:::-;48654:37:::1;::::0;48622:21:::1;::::0;48662:10:::1;::::0;48654:37;::::1;;;::::0;48622:21;;48604:15:::1;48654:37:::0;48604:15;48654:37;48622:21;48662:10;48654:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;48593:106;48556:143::o:0;30689:185::-;30827:39;30844:4;30850:2;30854:7;30827:39;;;;;;;;;;;;:16;:39::i;41365:233::-;41440:7;41476:30;41263:10;:17;;41175:113;41476:30;41468:5;:38;41460:95;;;;-1:-1:-1;;;41460:95:0;;15578:2:1;41460:95:0;;;15560:21:1;15617:2;15597:18;;;15590:30;15656:34;15636:18;;;15629:62;-1:-1:-1;;;15707:18:1;;;15700:42;15759:19;;41460:95:0;15376:408:1;41460:95:0;41573:10;41584:5;41573:17;;;;;;;;:::i;:::-;;;;;;;;;41566:24;;41365:233;;;:::o;47371:98::-;5890:6;;-1:-1:-1;;;;;5890:6:0;4562:10;6037:23;6029:68;;;;-1:-1:-1;;;6029:68:0;;;;;;;:::i;:::-;47442:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;27664:239::-:0;27736:7;27772:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27772:16:0;27807:19;27799:73;;;;-1:-1:-1;;;27799:73:0;;11673:2:1;27799:73:0;;;11655:21:1;11712:2;11692:18;;;11685:30;11751:34;11731:18;;;11724:62;-1:-1:-1;;;11802:18:1;;;11795:39;11851:19;;27799:73:0;11471:405:1;46972:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27394:208::-;27466:7;-1:-1:-1;;;;;27494:19:0;;27486:74;;;;-1:-1:-1;;;27486:74:0;;11262:2:1;27486:74:0;;;11244:21:1;11301:2;11281:18;;;11274:30;11340:34;11320:18;;;11313:62;-1:-1:-1;;;11391:18:1;;;11384:40;11441:19;;27486:74:0;11060:406:1;27486:74:0;-1:-1:-1;;;;;;27578:16:0;;;;;:9;:16;;;;;;;27394:208::o;6468:103::-;5890:6;;-1:-1:-1;;;;;5890:6:0;4562:10;6037:23;6029:68;;;;-1:-1:-1;;;6029:68:0;;;;;;;:::i;:::-;6533:30:::1;6560:1;6533:18;:30::i;:::-;6468:103::o:0;28139:104::-;28195:13;28228:7;28221:14;;;;;:::i;29822:155::-;29917:52;4562:10;29950:8;29960;29917:18;:52::i;30945:328::-;31120:41;4562:10;31153:7;31120:18;:41::i;:::-;31112:103;;;;-1:-1:-1;;;31112:103:0;;;;;;;:::i;:::-;31226:39;31240:4;31246:2;31250:7;31259:5;31226:13;:39::i;:::-;30945:328;;;;:::o;47605:496::-;47682:6;;;;47681:7;47673:49;;;;-1:-1:-1;;;47673:49:0;;13214:2:1;47673:49:0;;;13196:21:1;13253:2;13233:18;;;13226:30;13292;13272:18;;;13265:58;13340:18;;47673:49:0;13012:352:1;47673:49:0;47741:16;47733:58;;;;-1:-1:-1;;;47733:58:0;;12083:2:1;47733:58:0;;;12065:21:1;12122:2;12102:18;;;12095:30;12161;12141:18;;;12134:58;12209:18;;47733:58:0;11881:352:1;47733:58:0;47825:1;47810:11;:16;;47802:44;;;;-1:-1:-1;;;47802:44:0;;10493:2:1;47802:44:0;;;10475:21:1;10532:2;10512:18;;;10505:30;-1:-1:-1;;;10551:18:1;;;10544:45;10606:18;;47802:44:0;10291:339:1;47802:44:0;46961:4;47887:11;47865:19;:9;1060:14;;968:114;47865:19;:33;;;;:::i;:::-;:45;;47857:96;;;;-1:-1:-1;;;47857:96:0;;8151:2:1;47857:96:0;;;8133:21:1;8190:2;8170:18;;;8163:30;8229:34;8209:18;;;8202:62;-1:-1:-1;;;8280:18:1;;;8273:35;8325:19;;47857:96:0;7949:401:1;47857:96:0;47969:9;47964:130;47988:11;47984:1;:15;47964:130;;;48021:21;:9;1179:19;;1197:1;1179:19;;;1090:127;48021:21;48057:25;48062:19;:9;1060:14;;968:114;48062:19;48057:4;:25::i;:::-;48001:3;;;;:::i;:::-;;;;47964:130;;46998:37;;;;;;;:::i;48212:259::-;32848:4;32872:16;;;:7;:16;;;;;;48285:13;;-1:-1:-1;;;;;32872:16:0;48307:76;;;;-1:-1:-1;;;48307:76:0;;14342:2:1;48307:76:0;;;14324:21:1;14381:2;14361:18;;;14354:30;14420:34;14400:18;;;14393:62;-1:-1:-1;;;14471:18:1;;;14464:45;14526:19;;48307:76:0;14140:411:1;48307:76:0;48421:7;48430:18;:7;:16;:18::i;:::-;48450:13;48404:60;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48390:75;;48212:259;;;:::o;47475:122::-;5890:6;;-1:-1:-1;;;;;5890:6:0;4562:10;6037:23;6029:68;;;;-1:-1:-1;;;6029:68:0;;;;;;;:::i;:::-;47558:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;6726:201::-:0;5890:6;;-1:-1:-1;;;;;5890:6:0;4562:10;6037:23;6029:68;;;;-1:-1:-1;;;6029:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6815:22:0;::::1;6807:73;;;::::0;-1:-1:-1;;;6807:73:0;;8557:2:1;6807:73:0::1;::::0;::::1;8539:21:1::0;8596:2;8576:18;;;8569:30;8635:34;8615:18;;;8608:62;-1:-1:-1;;;8686:18:1;;;8679:36;8732:19;;6807:73:0::1;8355:402:1::0;6807:73:0::1;6891:28;6910:8;6891:18;:28::i;:::-;6726:201:::0;:::o;27025:305::-;27127:4;-1:-1:-1;;;;;;27164:40:0;;-1:-1:-1;;;27164:40:0;;:105;;-1:-1:-1;;;;;;;27221:48:0;;-1:-1:-1;;;27221:48:0;27164:105;:158;;;-1:-1:-1;;;;;;;;;;18594:40:0;;;27286:36;18485:157;36765:174;36840:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;36840:29:0;-1:-1:-1;;;;;36840:29:0;;;;;;;;:24;;36894:23;36840:24;36894:14;:23::i;:::-;-1:-1:-1;;;;;36885:46:0;;;;;;;;;;;36765:174;;:::o;33077:348::-;33170:4;32872:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32872:16:0;33187:73;;;;-1:-1:-1;;;33187:73:0;;10080:2:1;33187:73:0;;;10062:21:1;10119:2;10099:18;;;10092:30;10158:34;10138:18;;;10131:62;-1:-1:-1;;;10209:18:1;;;10202:42;10261:19;;33187:73:0;9878:408:1;33187:73:0;33271:13;33287:23;33302:7;33287:14;:23::i;:::-;33271:39;;33340:5;-1:-1:-1;;;;;33329:16:0;:7;-1:-1:-1;;;;;33329:16:0;;:51;;;;33373:7;-1:-1:-1;;;;;33349:31:0;:20;33361:7;33349:11;:20::i;:::-;-1:-1:-1;;;;;33349:31:0;;33329:51;:87;;;-1:-1:-1;;;;;;30169:25:0;;;30145:4;30169:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;33384:32;33321:96;33077:348;-1:-1:-1;;;;33077:348:0:o;36069:578::-;36228:4;-1:-1:-1;;;;;36201:31:0;:23;36216:7;36201:14;:23::i;:::-;-1:-1:-1;;;;;36201:31:0;;36193:85;;;;-1:-1:-1;;;36193:85:0;;13932:2:1;36193:85:0;;;13914:21:1;13971:2;13951:18;;;13944:30;14010:34;13990:18;;;13983:62;-1:-1:-1;;;14061:18:1;;;14054:39;14110:19;;36193:85:0;13730:405:1;36193:85:0;-1:-1:-1;;;;;36297:16:0;;36289:65;;;;-1:-1:-1;;;36289:65:0;;9321:2:1;36289:65:0;;;9303:21:1;9360:2;9340:18;;;9333:30;9399:34;9379:18;;;9372:62;-1:-1:-1;;;9450:18:1;;;9443:34;9494:19;;36289:65:0;9119:400:1;36289:65:0;36367:39;36388:4;36394:2;36398:7;36367:20;:39::i;:::-;36471:29;36488:1;36492:7;36471:8;:29::i;:::-;-1:-1:-1;;;;;36513:15:0;;;;;;:9;:15;;;;;:20;;36532:1;;36513:15;:20;;36532:1;;36513:20;:::i;:::-;;;;-1:-1:-1;;;;;;;36544:13:0;;;;;;:9;:13;;;;;:18;;36561:1;;36544:13;:18;;36561:1;;36544:18;:::i;:::-;;;;-1:-1:-1;;36573:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;36573:21:0;-1:-1:-1;;;;;36573:21:0;;;;;;;;;36612:27;;36573:16;;36612:27;;;;;;;36069:578;;;:::o;7087:191::-;7180:6;;;-1:-1:-1;;;;;7197:17:0;;;-1:-1:-1;;;;;;7197:17:0;;;;;;;7230:40;;7180:6;;;7197:17;7180:6;;7230:40;;7161:16;;7230:40;7150:128;7087:191;:::o;37081:315::-;37236:8;-1:-1:-1;;;;;37227:17:0;:5;-1:-1:-1;;;;;37227:17:0;;;37219:55;;;;-1:-1:-1;;;37219:55:0;;9726:2:1;37219:55:0;;;9708:21:1;9765:2;9745:18;;;9738:30;9804:27;9784:18;;;9777:55;9849:18;;37219:55:0;9524:349:1;37219:55:0;-1:-1:-1;;;;;37285:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;37285:46:0;;;;;;;;;;37347:41;;6842::1;;;37347::0;;6815:18:1;37347:41:0;;;;;;;37081:315;;;:::o;32155:::-;32312:28;32322:4;32328:2;32332:7;32312:9;:28::i;:::-;32359:48;32382:4;32388:2;32392:7;32401:5;32359:22;:48::i;:::-;32351:111;;;;-1:-1:-1;;;32351:111:0;;;;;;;:::i;48113:91::-;48165:31;48175:10;48188:7;48165:9;:31::i;1985:723::-;2041:13;2262:10;2258:53;;-1:-1:-1;;2289:10:0;;;;;;;;;;;;-1:-1:-1;;;2289:10:0;;;;;1985:723::o;2258:53::-;2336:5;2321:12;2377:78;2384:9;;2377:78;;2410:8;;;;:::i;:::-;;-1:-1:-1;2433:10:0;;-1:-1:-1;2441:2:0;2433:10;;:::i;:::-;;;2377:78;;;2465:19;2497:6;2487:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2487:17:0;;2465:39;;2515:154;2522:10;;2515:154;;2549:11;2559:1;2549:11;;:::i;:::-;;-1:-1:-1;2618:10:0;2626:2;2618:5;:10;:::i;:::-;2605:24;;:2;:24;:::i;:::-;2592:39;;2575:6;2582;2575:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;2575:56:0;;;;;;;;-1:-1:-1;2646:11:0;2655:2;2646:11;;:::i;:::-;;;2515:154;;42211:589;-1:-1:-1;;;;;42417:18:0;;42413:187;;42452:40;42484:7;43627:10;:17;;43600:24;;;;:15;:24;;;;;:44;;;43655:24;;;;;;;;;;;;43523:164;42452:40;42413:187;;;42522:2;-1:-1:-1;;;;;42514:10:0;:4;-1:-1:-1;;;;;42514:10:0;;42510:90;;42541:47;42574:4;42580:7;42541:32;:47::i;:::-;-1:-1:-1;;;;;42614:16:0;;42610:183;;42647:45;42684:7;42647:36;:45::i;42610:183::-;42720:4;-1:-1:-1;;;;;42714:10:0;:2;-1:-1:-1;;;;;42714:10:0;;42710:83;;42741:40;42769:2;42773:7;42741:27;:40::i;37961:799::-;38116:4;-1:-1:-1;;;;;38137:13:0;;8487:20;8535:8;38133:620;;38173:72;;-1:-1:-1;;;38173:72:0;;-1:-1:-1;;;;;38173:36:0;;;;;:72;;4562:10;;38224:4;;38230:7;;38239:5;;38173:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38173:72:0;;;;;;;;-1:-1:-1;;38173:72:0;;;;;;;;;;;;:::i;:::-;;;38169:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38415:13:0;;38411:272;;38458:60;;-1:-1:-1;;;38458:60:0;;;;;;;:::i;38411:272::-;38633:6;38627:13;38618:6;38614:2;38610:15;38603:38;38169:529;-1:-1:-1;;;;;;38296:51:0;-1:-1:-1;;;38296:51:0;;-1:-1:-1;38289:58:0;;38133:620;-1:-1:-1;38737:4:0;37961:799;;;;;;:::o;33767:110::-;33843:26;33853:2;33857:7;33843:26;;;;;;;;;;;;:9;:26::i;44314:988::-;44580:22;44630:1;44605:22;44622:4;44605:16;:22::i;:::-;:26;;;;:::i;:::-;44642:18;44663:26;;;:17;:26;;;;;;44580:51;;-1:-1:-1;44796:28:0;;;44792:328;;-1:-1:-1;;;;;44863:18:0;;44841:19;44863:18;;;:12;:18;;;;;;;;:34;;;;;;;;;44914:30;;;;;;:44;;;45031:30;;:17;:30;;;;;:43;;;44792:328;-1:-1:-1;45216:26:0;;;;:17;:26;;;;;;;;45209:33;;;-1:-1:-1;;;;;45260:18:0;;;;;:12;:18;;;;;:34;;;;;;;45253:41;44314:988::o;45597:1079::-;45875:10;:17;45850:22;;45875:21;;45895:1;;45875:21;:::i;:::-;45907:18;45928:24;;;:15;:24;;;;;;46301:10;:26;;45850:46;;-1:-1:-1;45928:24:0;;45850:46;;46301:26;;;;;;:::i;:::-;;;;;;;;;46279:48;;46365:11;46340:10;46351;46340:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;46445:28;;;:15;:28;;;;;;;:41;;;46617:24;;;;;46610:31;46652:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;45668:1008;;;45597:1079;:::o;43101:221::-;43186:14;43203:20;43220:2;43203:16;:20::i;:::-;-1:-1:-1;;;;;43234:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;43279:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;43101:221:0:o;34104:321::-;34234:18;34240:2;34244:7;34234:5;:18::i;:::-;34285:54;34316:1;34320:2;34324:7;34333:5;34285:22;:54::i;:::-;34263:154;;;;-1:-1:-1;;;34263:154:0;;;;;;;:::i;34761:382::-;-1:-1:-1;;;;;34841:16:0;;34833:61;;;;-1:-1:-1;;;34833:61:0;;12440:2:1;34833:61:0;;;12422:21:1;;;12459:18;;;12452:30;12518:34;12498:18;;;12491:62;12570:18;;34833:61:0;12238:356:1;34833:61:0;32848:4;32872:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32872:16:0;:30;34905:58;;;;-1:-1:-1;;;34905:58:0;;8964:2:1;34905:58:0;;;8946:21:1;9003:2;8983:18;;;8976:30;9042;9022:18;;;9015:58;9090:18;;34905:58:0;8762:352:1;34905:58:0;34976:45;35005:1;35009:2;35013:7;34976:20;:45::i;:::-;-1:-1:-1;;;;;35034:13:0;;;;;;:9;:13;;;;;:18;;35051:1;;35034:13;:18;;35051:1;;35034:18;:::i;:::-;;;;-1:-1:-1;;35063:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35063:21:0;-1:-1:-1;;;;;35063:21:0;;;;;;;;35102:33;;35063:16;;;35102:33;;35063:16;;35102:33;34761:382;;:::o;-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:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;:::-;1134:39;993:186;-1:-1:-1;;;993:186:1:o;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:180::-;3027:6;3080:2;3068:9;3059:7;3055:23;3051:32;3048:52;;;3096:1;3093;3086:12;3048:52;3119:26;3135:9;3119:26;:::i;3156:245::-;3214:6;3267:2;3255:9;3246:7;3242:23;3238:32;3235:52;;;3283:1;3280;3273:12;3235:52;3322:9;3309:23;3341:30;3365:5;3341:30;:::i;3406:249::-;3475:6;3528:2;3516:9;3507:7;3503:23;3499:32;3496:52;;;3544:1;3541;3534:12;3496:52;3576:9;3570:16;3595:30;3619:5;3595:30;:::i;3660:450::-;3729:6;3782:2;3770:9;3761:7;3757:23;3753:32;3750:52;;;3798:1;3795;3788:12;3750:52;3838:9;3825:23;3871:18;3863:6;3860:30;3857:50;;;3903:1;3900;3893:12;3857:50;3926:22;;3979:4;3971:13;;3967:27;-1:-1:-1;3957:55:1;;4008:1;4005;3998:12;3957:55;4031:73;4096:7;4091:2;4078:16;4073:2;4069;4065:11;4031:73;:::i;4115:180::-;4174:6;4227:2;4215:9;4206:7;4202:23;4198:32;4195:52;;;4243:1;4240;4233:12;4195:52;-1:-1:-1;4266:23:1;;4115:180;-1:-1:-1;4115:180:1:o;4300:257::-;4341:3;4379:5;4373:12;4406:6;4401:3;4394:19;4422:63;4478:6;4471:4;4466:3;4462:14;4455:4;4448:5;4444:16;4422:63;:::i;:::-;4539:2;4518:15;-1:-1:-1;;4514:29:1;4505:39;;;;4546:4;4501:50;;4300:257;-1:-1:-1;;4300:257:1:o;4562:973::-;4647:12;;4612:3;;4702:1;4722:18;;;;4775;;;;4802:61;;4856:4;4848:6;4844:17;4834:27;;4802:61;4882:2;4930;4922:6;4919:14;4899:18;4896:38;4893:161;;;4976:10;4971:3;4967:20;4964:1;4957:31;5011:4;5008:1;5001:15;5039:4;5036:1;5029:15;4893:161;5070:18;5097:104;;;;5215:1;5210:319;;;;5063:466;;5097:104;-1:-1:-1;;5130:24:1;;5118:37;;5175:16;;;;-1:-1:-1;5097:104:1;;5210:319;16044:1;16037:14;;;16081:4;16068:18;;5304:1;5318:165;5332:6;5329:1;5326:13;5318:165;;;5410:14;;5397:11;;;5390:35;5453:16;;;;5347:10;;5318:165;;;5322:3;;5512:6;5507:3;5503:16;5496:23;;5063:466;;;;;;;4562:973;;;;:::o;5540:456::-;5761:3;5789:38;5823:3;5815:6;5789:38;:::i;:::-;5856:6;5850:13;5872:52;5917:6;5913:2;5906:4;5898:6;5894:17;5872:52;:::i;:::-;5940:50;5982:6;5978:2;5974:15;5966:6;5940:50;:::i;:::-;5933:57;5540:456;-1:-1:-1;;;;;;;5540:456:1:o;6209:488::-;-1:-1:-1;;;;;6478:15:1;;;6460:34;;6530:15;;6525:2;6510:18;;6503:43;6577:2;6562:18;;6555:34;;;6625:3;6620:2;6605:18;;6598:31;;;6403:4;;6646:45;;6671:19;;6663:6;6646:45;:::i;:::-;6638:53;6209:488;-1:-1:-1;;;;;;6209:488:1:o;6894:219::-;7043:2;7032:9;7025:21;7006:4;7063:44;7103:2;7092:9;7088:18;7080:6;7063:44;:::i;7530:414::-;7732:2;7714:21;;;7771:2;7751:18;;;7744:30;7810:34;7805:2;7790:18;;7783:62;-1:-1:-1;;;7876:2:1;7861:18;;7854:48;7934:3;7919:19;;7530:414::o;13369:356::-;13571:2;13553:21;;;13590:18;;;13583:30;13649:34;13644:2;13629:18;;13622:62;13716:2;13701:18;;13369:356::o;14958:413::-;15160:2;15142:21;;;15199:2;15179:18;;;15172:30;15238:34;15233:2;15218:18;;15211:62;-1:-1:-1;;;15304:2:1;15289:18;;15282:47;15361:3;15346:19;;14958:413::o;16097:128::-;16137:3;16168:1;16164:6;16161:1;16158:13;16155:39;;;16174:18;;:::i;:::-;-1:-1:-1;16210:9:1;;16097:128::o;16230:120::-;16270:1;16296;16286:35;;16301:18;;:::i;:::-;-1:-1:-1;16335:9:1;;16230:120::o;16355:125::-;16395:4;16423:1;16420;16417:8;16414:34;;;16428:18;;:::i;:::-;-1:-1:-1;16465:9:1;;16355:125::o;16485:258::-;16557:1;16567:113;16581:6;16578:1;16575:13;16567:113;;;16657:11;;;16651:18;16638:11;;;16631:39;16603:2;16596:10;16567:113;;;16698:6;16695:1;16692:13;16689:48;;;-1:-1:-1;;16733:1:1;16715:16;;16708:27;16485:258::o;16748:380::-;16827:1;16823:12;;;;16870;;;16891:61;;16945:4;16937:6;16933:17;16923:27;;16891:61;16998:2;16990:6;16987:14;16967:18;16964:38;16961:161;;;17044:10;17039:3;17035:20;17032:1;17025:31;17079:4;17076:1;17069:15;17107:4;17104:1;17097:15;16961:161;;16748:380;;;:::o;17133:135::-;17172:3;-1:-1:-1;;17193:17:1;;17190:43;;;17213:18;;:::i;:::-;-1:-1:-1;17260:1:1;17249:13;;17133:135::o;17273:112::-;17305:1;17331;17321:35;;17336:18;;:::i;:::-;-1:-1:-1;17370:9:1;;17273:112::o;17390:127::-;17451:10;17446:3;17442:20;17439:1;17432:31;17482:4;17479:1;17472:15;17506:4;17503:1;17496:15;17522:127;17583:10;17578:3;17574:20;17571:1;17564:31;17614:4;17611:1;17604:15;17638:4;17635:1;17628:15;17654:127;17715:10;17710:3;17706:20;17703:1;17696:31;17746:4;17743:1;17736:15;17770:4;17767:1;17760:15;17786:127;17847:10;17842:3;17838:20;17835:1;17828:31;17878:4;17875:1;17868:15;17902:4;17899:1;17892:15;17918:127;17979:10;17974:3;17970:20;17967:1;17960:31;18010:4;18007:1;18000:15;18034:4;18031:1;18024:15;18050:131;-1:-1:-1;;;;;;18124:32:1;;18114:43;;18104:71;;18171:1;18168;18161:12

Swarm Source

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