ETH Price: $3,391.54 (-2.57%)
Gas: 1 Gwei

Token

The Degenaissance (DEGEN)
 

Overview

Max Total Supply

2,553 DEGEN

Holders

2,253

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 DEGEN
0x5d0abbd188fddb20ca2b0e0da901759c61e017a0
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:
TheDegenaissance

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-12-18
*/

// SPDX-License-Identifier: MIT

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


// OpenZeppelin Contracts v4.4.0 (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;
    }
}


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



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


// OpenZeppelin Contracts v4.4.0 (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;
}


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


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


// OpenZeppelin Contracts v4.4.0 (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;
    }
}


// OpenZeppelin Contracts v4.4.0 (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 {}
}


/**
*   @title Survive All Apocalypses (AKA Don't Die Book)
*   @author Transient Labs
*   @notice ERC721 smart contract with access control and optimized for airdrop
*   Copyright (C) 2021 Transient Labs
*/

pragma solidity ^0.8.0;

contract TheDegenaissance is ERC721 {
    string public baseURI;
    uint256 public _totalSupply;
    address public owner;

    /**
    *   @notice constructor for this contract
    *   @dev name and symbol are hardcoded in from the start
    */
    constructor() ERC721("The Degenaissance", "DEGEN") {
        baseURI = string("ipfs://QmdPQRVCDvDjapV6SNGMxNbp31NeNwneM54Y861MGjTYMR/");
        owner = address(0x9Ad21C497837165344e1fA54fe894174b19c51e0);
        _totalSupply = 2553;
    }

    /**
    *   @notice function to view total supply
    *   @return uint256 with supply
    */
    function totalSupply() public view returns(uint256) {
        return _totalSupply;
    }

    /**
    *   @notice override supportsInterface function since both ERC721 and AccessControl utilize it
    *   @dev see {IERC165-supportsInterface}
    */
    function supportsInterface(bytes4 interfaceId) public view override(ERC721) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);       
    }

    /**
    *   @notice sets the baseURI for the ERC721 tokens
    *   @dev requires ADMIN role
    *   @param uri is the base URI set for each token
    */
    function setBaseURI(string memory uri) external {
        require(msg.sender == owner, "setBaseUri unauthorized");
        baseURI = uri;
    }

    /**
    *   @notice override standard ERC721 base URI
    *   @dev doesn't require access control since it's internal
    *   @return string representing base URI
    */
    function _baseURI() internal view override returns (string memory) {
        return baseURI;
    }

    /**
    *   @notice mint function in batches
    *   @dev requires ADMIN access
    *   @dev converts token id to the appropriate tokenURI string
    *   @param addresses is an array of addresses to mint to
    *   @param start is the tokenId to start iteration with
    */
    function batchMint(address[] memory addresses, uint256 start) external {
        require(msg.sender == owner, "batchMint unauthorized");
        for (uint256 i = 0; i < addresses.length; i++) {
            _mint(addresses[i], start+i);
        }
    }
    
    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    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()));
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256","name":"start","type":"uint256"}],"name":"batchMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"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":"uri","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":"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"}]

60806040523480156200001157600080fd5b50604080518082018252601181527054686520446567656e61697373616e636560781b6020808301918252835180850190945260058452642222a3a2a760d91b9084015281519192916200006891600091620000e4565b5080516200007e906001906020840190620000e4565b50505060405180606001604052806036815260200162001847603691398051620000b191600691602090910190620000e4565b50600880546001600160a01b031916739ad21c497837165344e1fa54fe894174b19c51e01790556109f9600755620001c7565b828054620000f2906200018a565b90600052602060002090601f01602090048101928262000116576000855562000161565b82601f106200013157805160ff191683800117855562000161565b8280016001018555821562000161579182015b828111156200016157825182559160200191906001019062000144565b506200016f92915062000173565b5090565b5b808211156200016f576000815560010162000174565b600181811c908216806200019f57607f821691505b60208210811415620001c157634e487b7160e01b600052602260045260246000fd5b50919050565b61167080620001d76000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c80636352211e116100ad57806395d89b411161007157806395d89b411461024b578063a22cb46514610253578063b88d4fde14610266578063c87b56dd14610279578063e985e9c51461028c57600080fd5b80636352211e146101f75780636c0360eb1461020a57806370a082311461021257806383b74baa146102255780638da5cb5b1461023857600080fd5b806318160ddd116100f457806318160ddd146101a357806323b872dd146101b55780633eaaf86b146101c857806342842e0e146101d157806355f804b3146101e457600080fd5b806301ffc9a71461012657806306fdde031461014e578063081812fc14610163578063095ea7b31461018e575b600080fd5b610139610134366004611326565b6102c8565b60405190151581526020015b60405180910390f35b61015661030e565b6040516101459190611447565b6101766101713660046113a9565b6103a0565b6040516001600160a01b039091168152602001610145565b6101a161019c366004611242565b61043a565b005b6007545b604051908152602001610145565b6101a16101c336600461114e565b610550565b6101a760075481565b6101a16101df36600461114e565b610581565b6101a16101f2366004611360565b61059c565b6101766102053660046113a9565b61060d565b610156610684565b6101a76102203660046110f9565b610712565b6101a161023336600461126c565b610799565b600854610176906001600160a01b031681565b610156610838565b6101a1610261366004611206565b610847565b6101a161027436600461118a565b610852565b6101566102873660046113a9565b61088a565b61013961029a36600461111b565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b60006001600160e01b031982166380ac58cd60e01b14806102f957506001600160e01b03198216635b5e139f60e01b145b80610308575061030882610937565b92915050565b60606000805461031d90611589565b80601f016020809104026020016040519081016040528092919081815260200182805461034990611589565b80156103965780601f1061036b57610100808354040283529160200191610396565b820191906000526020600020905b81548152906001019060200180831161037957829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661041e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006104458261060d565b9050806001600160a01b0316836001600160a01b031614156104b35760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610415565b336001600160a01b03821614806104cf57506104cf813361029a565b6105415760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610415565b61054b8383610987565b505050565b61055a33826109f5565b6105765760405162461bcd60e51b8152600401610415906114ac565b61054b838383610aec565b61054b83838360405180602001604052806000815250610852565b6008546001600160a01b031633146105f65760405162461bcd60e51b815260206004820152601760248201527f7365744261736555726920756e617574686f72697a65640000000000000000006044820152606401610415565b8051610609906006906020840190610fec565b5050565b6000818152600260205260408120546001600160a01b0316806103085760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610415565b6006805461069190611589565b80601f01602080910402602001604051908101604052809291908181526020018280546106bd90611589565b801561070a5780601f106106df5761010080835404028352916020019161070a565b820191906000526020600020905b8154815290600101906020018083116106ed57829003601f168201915b505050505081565b60006001600160a01b03821661077d5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610415565b506001600160a01b031660009081526003602052604090205490565b6008546001600160a01b031633146107ec5760405162461bcd60e51b815260206004820152601660248201527518985d18da135a5b9d081d5b985d5d1a1bdc9a5e995960521b6044820152606401610415565b60005b825181101561054b5761082683828151811061080d5761080d6115f5565b60200260200101518284610821919061152e565b610c8c565b80610830816115c4565b9150506107ef565b60606001805461031d90611589565b610609338383610dce565b61085c33836109f5565b6108785760405162461bcd60e51b8152600401610415906114ac565b61088484848484610e9d565b50505050565b6000818152600260205260409020546060906001600160a01b03166109095760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610415565b610911610ed0565b60405160200161092191906113ee565b6040516020818303038152906040529050919050565b60006001600160e01b031982166380ac58cd60e01b148061096857506001600160e01b03198216635b5e139f60e01b145b8061030857506301ffc9a760e01b6001600160e01b0319831614610308565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906109bc8261060d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610a6e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610415565b6000610a798361060d565b9050806001600160a01b0316846001600160a01b03161480610ab45750836001600160a01b0316610aa9846103a0565b6001600160a01b0316145b80610ae457506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610aff8261060d565b6001600160a01b031614610b675760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610415565b6001600160a01b038216610bc95760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610415565b610bd4600082610987565b6001600160a01b0383166000908152600360205260408120805460019290610bfd908490611546565b90915550506001600160a01b0382166000908152600360205260408120805460019290610c2b90849061152e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001600160a01b038216610ce25760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610415565b6000818152600260205260409020546001600160a01b031615610d475760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610415565b6001600160a01b0382166000908152600360205260408120805460019290610d7090849061152e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b816001600160a01b0316836001600160a01b03161415610e305760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610415565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b610ea8848484610aec565b610eb484848484610edf565b6108845760405162461bcd60e51b81526004016104159061145a565b60606006805461031d90611589565b60006001600160a01b0384163b15610fe157604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290610f2390339089908890889060040161140a565b602060405180830381600087803b158015610f3d57600080fd5b505af1925050508015610f6d575060408051601f3d908101601f19168201909252610f6a91810190611343565b60015b610fc7573d808015610f9b576040519150601f19603f3d011682016040523d82523d6000602084013e610fa0565b606091505b508051610fbf5760405162461bcd60e51b81526004016104159061145a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610ae4565b506001949350505050565b828054610ff890611589565b90600052602060002090601f01602090048101928261101a5760008555611060565b82601f1061103357805160ff1916838001178555611060565b82800160010185558215611060579182015b82811115611060578251825591602001919060010190611045565b5061106c929150611070565b5090565b5b8082111561106c5760008155600101611071565b600067ffffffffffffffff83111561109f5761109f61160b565b6110b2601f8401601f19166020016114fd565b90508281528383830111156110c657600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146110f457600080fd5b919050565b60006020828403121561110b57600080fd5b611114826110dd565b9392505050565b6000806040838503121561112e57600080fd5b611137836110dd565b9150611145602084016110dd565b90509250929050565b60008060006060848603121561116357600080fd5b61116c846110dd565b925061117a602085016110dd565b9150604084013590509250925092565b600080600080608085870312156111a057600080fd5b6111a9856110dd565b93506111b7602086016110dd565b925060408501359150606085013567ffffffffffffffff8111156111da57600080fd5b8501601f810187136111eb57600080fd5b6111fa87823560208401611085565b91505092959194509250565b6000806040838503121561121957600080fd5b611222836110dd565b91506020830135801515811461123757600080fd5b809150509250929050565b6000806040838503121561125557600080fd5b61125e836110dd565b946020939093013593505050565b6000806040838503121561127f57600080fd5b823567ffffffffffffffff8082111561129757600080fd5b818501915085601f8301126112ab57600080fd5b81356020828211156112bf576112bf61160b565b8160051b92506112d08184016114fd565b8281528181019085830185870184018b10156112eb57600080fd5b600096505b8487101561131557611301816110dd565b8352600196909601959183019183016112f0565b509997909101359750505050505050565b60006020828403121561133857600080fd5b813561111481611621565b60006020828403121561135557600080fd5b815161111481611621565b60006020828403121561137257600080fd5b813567ffffffffffffffff81111561138957600080fd5b8201601f8101841361139a57600080fd5b610ae484823560208401611085565b6000602082840312156113bb57600080fd5b5035919050565b600081518084526113da81602086016020860161155d565b601f01601f19169290920160200192915050565b6000825161140081846020870161155d565b9190910192915050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061143d908301846113c2565b9695505050505050565b60208152600061111460208301846113c2565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156115265761152661160b565b604052919050565b60008219821115611541576115416115df565b500190565b600082821015611558576115586115df565b500390565b60005b83811015611578578181015183820152602001611560565b838111156108845750506000910152565b600181811c9082168061159d57607f821691505b602082108114156115be57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156115d8576115d86115df565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461163757600080fd5b5056fea26469706673582212206dbe8ff06cbaff6f7928be9afc3071242960a634367d5cc7900b23988b89650264736f6c63430008070033697066733a2f2f516d6450515256434476446a61705636534e474d784e627033314e654e776e654d3534593836314d476a54594d522f

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101215760003560e01c80636352211e116100ad57806395d89b411161007157806395d89b411461024b578063a22cb46514610253578063b88d4fde14610266578063c87b56dd14610279578063e985e9c51461028c57600080fd5b80636352211e146101f75780636c0360eb1461020a57806370a082311461021257806383b74baa146102255780638da5cb5b1461023857600080fd5b806318160ddd116100f457806318160ddd146101a357806323b872dd146101b55780633eaaf86b146101c857806342842e0e146101d157806355f804b3146101e457600080fd5b806301ffc9a71461012657806306fdde031461014e578063081812fc14610163578063095ea7b31461018e575b600080fd5b610139610134366004611326565b6102c8565b60405190151581526020015b60405180910390f35b61015661030e565b6040516101459190611447565b6101766101713660046113a9565b6103a0565b6040516001600160a01b039091168152602001610145565b6101a161019c366004611242565b61043a565b005b6007545b604051908152602001610145565b6101a16101c336600461114e565b610550565b6101a760075481565b6101a16101df36600461114e565b610581565b6101a16101f2366004611360565b61059c565b6101766102053660046113a9565b61060d565b610156610684565b6101a76102203660046110f9565b610712565b6101a161023336600461126c565b610799565b600854610176906001600160a01b031681565b610156610838565b6101a1610261366004611206565b610847565b6101a161027436600461118a565b610852565b6101566102873660046113a9565b61088a565b61013961029a36600461111b565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b60006001600160e01b031982166380ac58cd60e01b14806102f957506001600160e01b03198216635b5e139f60e01b145b80610308575061030882610937565b92915050565b60606000805461031d90611589565b80601f016020809104026020016040519081016040528092919081815260200182805461034990611589565b80156103965780601f1061036b57610100808354040283529160200191610396565b820191906000526020600020905b81548152906001019060200180831161037957829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661041e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006104458261060d565b9050806001600160a01b0316836001600160a01b031614156104b35760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610415565b336001600160a01b03821614806104cf57506104cf813361029a565b6105415760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610415565b61054b8383610987565b505050565b61055a33826109f5565b6105765760405162461bcd60e51b8152600401610415906114ac565b61054b838383610aec565b61054b83838360405180602001604052806000815250610852565b6008546001600160a01b031633146105f65760405162461bcd60e51b815260206004820152601760248201527f7365744261736555726920756e617574686f72697a65640000000000000000006044820152606401610415565b8051610609906006906020840190610fec565b5050565b6000818152600260205260408120546001600160a01b0316806103085760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610415565b6006805461069190611589565b80601f01602080910402602001604051908101604052809291908181526020018280546106bd90611589565b801561070a5780601f106106df5761010080835404028352916020019161070a565b820191906000526020600020905b8154815290600101906020018083116106ed57829003601f168201915b505050505081565b60006001600160a01b03821661077d5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610415565b506001600160a01b031660009081526003602052604090205490565b6008546001600160a01b031633146107ec5760405162461bcd60e51b815260206004820152601660248201527518985d18da135a5b9d081d5b985d5d1a1bdc9a5e995960521b6044820152606401610415565b60005b825181101561054b5761082683828151811061080d5761080d6115f5565b60200260200101518284610821919061152e565b610c8c565b80610830816115c4565b9150506107ef565b60606001805461031d90611589565b610609338383610dce565b61085c33836109f5565b6108785760405162461bcd60e51b8152600401610415906114ac565b61088484848484610e9d565b50505050565b6000818152600260205260409020546060906001600160a01b03166109095760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610415565b610911610ed0565b60405160200161092191906113ee565b6040516020818303038152906040529050919050565b60006001600160e01b031982166380ac58cd60e01b148061096857506001600160e01b03198216635b5e139f60e01b145b8061030857506301ffc9a760e01b6001600160e01b0319831614610308565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906109bc8261060d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610a6e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610415565b6000610a798361060d565b9050806001600160a01b0316846001600160a01b03161480610ab45750836001600160a01b0316610aa9846103a0565b6001600160a01b0316145b80610ae457506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610aff8261060d565b6001600160a01b031614610b675760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610415565b6001600160a01b038216610bc95760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610415565b610bd4600082610987565b6001600160a01b0383166000908152600360205260408120805460019290610bfd908490611546565b90915550506001600160a01b0382166000908152600360205260408120805460019290610c2b90849061152e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001600160a01b038216610ce25760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610415565b6000818152600260205260409020546001600160a01b031615610d475760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610415565b6001600160a01b0382166000908152600360205260408120805460019290610d7090849061152e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b816001600160a01b0316836001600160a01b03161415610e305760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610415565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b610ea8848484610aec565b610eb484848484610edf565b6108845760405162461bcd60e51b81526004016104159061145a565b60606006805461031d90611589565b60006001600160a01b0384163b15610fe157604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290610f2390339089908890889060040161140a565b602060405180830381600087803b158015610f3d57600080fd5b505af1925050508015610f6d575060408051601f3d908101601f19168201909252610f6a91810190611343565b60015b610fc7573d808015610f9b576040519150601f19603f3d011682016040523d82523d6000602084013e610fa0565b606091505b508051610fbf5760405162461bcd60e51b81526004016104159061145a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610ae4565b506001949350505050565b828054610ff890611589565b90600052602060002090601f01602090048101928261101a5760008555611060565b82601f1061103357805160ff1916838001178555611060565b82800160010185558215611060579182015b82811115611060578251825591602001919060010190611045565b5061106c929150611070565b5090565b5b8082111561106c5760008155600101611071565b600067ffffffffffffffff83111561109f5761109f61160b565b6110b2601f8401601f19166020016114fd565b90508281528383830111156110c657600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146110f457600080fd5b919050565b60006020828403121561110b57600080fd5b611114826110dd565b9392505050565b6000806040838503121561112e57600080fd5b611137836110dd565b9150611145602084016110dd565b90509250929050565b60008060006060848603121561116357600080fd5b61116c846110dd565b925061117a602085016110dd565b9150604084013590509250925092565b600080600080608085870312156111a057600080fd5b6111a9856110dd565b93506111b7602086016110dd565b925060408501359150606085013567ffffffffffffffff8111156111da57600080fd5b8501601f810187136111eb57600080fd5b6111fa87823560208401611085565b91505092959194509250565b6000806040838503121561121957600080fd5b611222836110dd565b91506020830135801515811461123757600080fd5b809150509250929050565b6000806040838503121561125557600080fd5b61125e836110dd565b946020939093013593505050565b6000806040838503121561127f57600080fd5b823567ffffffffffffffff8082111561129757600080fd5b818501915085601f8301126112ab57600080fd5b81356020828211156112bf576112bf61160b565b8160051b92506112d08184016114fd565b8281528181019085830185870184018b10156112eb57600080fd5b600096505b8487101561131557611301816110dd565b8352600196909601959183019183016112f0565b509997909101359750505050505050565b60006020828403121561133857600080fd5b813561111481611621565b60006020828403121561135557600080fd5b815161111481611621565b60006020828403121561137257600080fd5b813567ffffffffffffffff81111561138957600080fd5b8201601f8101841361139a57600080fd5b610ae484823560208401611085565b6000602082840312156113bb57600080fd5b5035919050565b600081518084526113da81602086016020860161155d565b601f01601f19169290920160200192915050565b6000825161140081846020870161155d565b9190910192915050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061143d908301846113c2565b9695505050505050565b60208152600061111460208301846113c2565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156115265761152661160b565b604052919050565b60008219821115611541576115416115df565b500190565b600082821015611558576115586115df565b500390565b60005b83811015611578578181015183820152602001611560565b838111156108845750506000910152565b600181811c9082168061159d57607f821691505b602082108114156115be57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156115d8576115d86115df565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461163757600080fd5b5056fea26469706673582212206dbe8ff06cbaff6f7928be9afc3071242960a634367d5cc7900b23988b89650264736f6c63430008070033

Deployed Bytecode Sourcemap

33345:2640:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34219:295;;;;;;:::i;:::-;;:::i;:::-;;;6265:14:1;;6258:22;6240:41;;6228:2;6213:18;34219:295:0;;;;;;;;21605:100;;;:::i;:::-;;;;;;;:::i;23164:221::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5563:32:1;;;5545:51;;5533:2;5518:18;23164:221:0;5399:203:1;22687:411:0;;;;;;:::i;:::-;;:::i;:::-;;33958:90;34028:12;;33958:90;;;12979:25:1;;;12967:2;12952:18;33958:90:0;12833:177:1;23914:339:0;;;;;;:::i;:::-;;:::i;33416:27::-;;;;;;24324:185;;;;;;:::i;:::-;;:::i;34684:146::-;;;;;;:::i;:::-;;:::i;21299:239::-;;;;;;:::i;:::-;;:::i;33388:21::-;;;:::i;21029:208::-;;;;;;:::i;:::-;;:::i;35410:256::-;;;;;;:::i;:::-;;:::i;33450:20::-;;;;;-1:-1:-1;;;;;33450:20:0;;;21774:104;;;:::i;23457:155::-;;;;;;:::i;:::-;;:::i;24580:328::-;;;;;;:::i;:::-;;:::i;35741:239::-;;;;;;:::i;:::-;;:::i;23683:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;23804:25:0;;;23780:4;23804:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;23683:164;34219:295;34304:4;-1:-1:-1;;;;;;34341:40:0;;-1:-1:-1;;;34341:40:0;;:105;;-1:-1:-1;;;;;;;34398:48:0;;-1:-1:-1;;;34398:48:0;34341:105;:158;;;;34463:36;34487:11;34463:23;:36::i;:::-;34321:178;34219:295;-1:-1:-1;;34219:295:0:o;21605:100::-;21659:13;21692:5;21685:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21605:100;:::o;23164:221::-;23240:7;26507:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26507:16:0;23260:73;;;;-1:-1:-1;;;23260:73:0;;10976:2:1;23260:73:0;;;10958:21:1;11015:2;10995:18;;;10988:30;11054:34;11034:18;;;11027:62;-1:-1:-1;;;11105:18:1;;;11098:42;11157:19;;23260:73:0;;;;;;;;;-1:-1:-1;23353:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23353:24:0;;23164:221::o;22687:411::-;22768:13;22784:23;22799:7;22784:14;:23::i;:::-;22768:39;;22832:5;-1:-1:-1;;;;;22826:11:0;:2;-1:-1:-1;;;;;22826:11:0;;;22818:57;;;;-1:-1:-1;;;22818:57:0;;12215:2:1;22818:57:0;;;12197:21:1;12254:2;12234:18;;;12227:30;12293:34;12273:18;;;12266:62;-1:-1:-1;;;12344:18:1;;;12337:31;12385:19;;22818:57:0;12013:397:1;22818:57:0;2808:10;-1:-1:-1;;;;;22910:21:0;;;;:62;;-1:-1:-1;22935:37:0;22952:5;2808:10;23683:164;:::i;22935:37::-;22888:168;;;;-1:-1:-1;;;22888:168:0;;9369:2:1;22888:168:0;;;9351:21:1;9408:2;9388:18;;;9381:30;9447:34;9427:18;;;9420:62;9518:26;9498:18;;;9491:54;9562:19;;22888:168:0;9167:420:1;22888:168:0;23069:21;23078:2;23082:7;23069:8;:21::i;:::-;22757:341;22687:411;;:::o;23914:339::-;24109:41;2808:10;24142:7;24109:18;:41::i;:::-;24101:103;;;;-1:-1:-1;;;24101:103:0;;;;;;;:::i;:::-;24217:28;24227:4;24233:2;24237:7;24217:9;:28::i;24324:185::-;24462:39;24479:4;24485:2;24489:7;24462:39;;;;;;;;;;;;:16;:39::i;34684:146::-;34765:5;;-1:-1:-1;;;;;34765:5:0;34751:10;:19;34743:55;;;;-1:-1:-1;;;34743:55:0;;8604:2:1;34743:55:0;;;8586:21:1;8643:2;8623:18;;;8616:30;8682:25;8662:18;;;8655:53;8725:18;;34743:55:0;8402:347:1;34743:55:0;34809:13;;;;:7;;:13;;;;;:::i;:::-;;34684:146;:::o;21299:239::-;21371:7;21407:16;;;:7;:16;;;;;;-1:-1:-1;;;;;21407:16:0;21442:19;21434:73;;;;-1:-1:-1;;;21434:73:0;;10205:2:1;21434:73:0;;;10187:21:1;10244:2;10224:18;;;10217:30;10283:34;10263:18;;;10256:62;-1:-1:-1;;;10334:18:1;;;10327:39;10383:19;;21434:73:0;10003:405:1;33388:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;21029:208::-;21101:7;-1:-1:-1;;;;;21129:19:0;;21121:74;;;;-1:-1:-1;;;21121:74:0;;9794:2:1;21121:74:0;;;9776:21:1;9833:2;9813:18;;;9806:30;9872:34;9852:18;;;9845:62;-1:-1:-1;;;9923:18:1;;;9916:40;9973:19;;21121:74:0;9592:406:1;21121:74:0;-1:-1:-1;;;;;;21213:16:0;;;;;:9;:16;;;;;;;21029:208::o;35410:256::-;35514:5;;-1:-1:-1;;;;;35514:5:0;35500:10;:19;35492:54;;;;-1:-1:-1;;;35492:54:0;;7494:2:1;35492:54:0;;;7476:21:1;7533:2;7513:18;;;7506:30;-1:-1:-1;;;7552:18:1;;;7545:52;7614:18;;35492:54:0;7292:346:1;35492:54:0;35562:9;35557:102;35581:9;:16;35577:1;:20;35557:102;;;35619:28;35625:9;35635:1;35625:12;;;;;;;;:::i;:::-;;;;;;;35645:1;35639:5;:7;;;;:::i;:::-;35619:5;:28::i;:::-;35599:3;;;;:::i;:::-;;;;35557:102;;21774:104;21830:13;21863:7;21856:14;;;;;:::i;23457:155::-;23552:52;2808:10;23585:8;23595;23552:18;:52::i;24580:328::-;24755:41;2808:10;24788:7;24755:18;:41::i;:::-;24747:103;;;;-1:-1:-1;;;24747:103:0;;;;;;;:::i;:::-;24861:39;24875:4;24881:2;24885:7;24894:5;24861:13;:39::i;:::-;24580:328;;;;:::o;35741:239::-;26483:4;26507:16;;;:7;:16;;;;;;35814:13;;-1:-1:-1;;;;;26507:16:0;35840:76;;;;-1:-1:-1;;;35840:76:0;;11799:2:1;35840:76:0;;;11781:21:1;11838:2;11818:18;;;11811:30;11877:34;11857:18;;;11850:62;-1:-1:-1;;;11928:18:1;;;11921:45;11983:19;;35840:76:0;11597:411:1;35840:76:0;35960:10;:8;:10::i;:::-;35943:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;35929:43;;35741:239;;;:::o;20660:305::-;20762:4;-1:-1:-1;;;;;;20799:40:0;;-1:-1:-1;;;20799:40:0;;:105;;-1:-1:-1;;;;;;;20856:48:0;;-1:-1:-1;;;20856:48:0;20799:105;:158;;;-1:-1:-1;;;;;;;;;;19287:40:0;;;20921:36;19178:157;30400:174;30475:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;30475:29:0;-1:-1:-1;;;;;30475:29:0;;;;;;;;:24;;30529:23;30475:24;30529:14;:23::i;:::-;-1:-1:-1;;;;;30520:46:0;;;;;;;;;;;30400:174;;:::o;26712:348::-;26805:4;26507:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26507:16:0;26822:73;;;;-1:-1:-1;;;26822:73:0;;8956:2:1;26822:73:0;;;8938:21:1;8995:2;8975:18;;;8968:30;9034:34;9014:18;;;9007:62;-1:-1:-1;;;9085:18:1;;;9078:42;9137:19;;26822:73:0;8754:408:1;26822:73:0;26906:13;26922:23;26937:7;26922:14;:23::i;:::-;26906:39;;26975:5;-1:-1:-1;;;;;26964:16:0;:7;-1:-1:-1;;;;;26964:16:0;;:51;;;;27008:7;-1:-1:-1;;;;;26984:31:0;:20;26996:7;26984:11;:20::i;:::-;-1:-1:-1;;;;;26984:31:0;;26964:51;:87;;;-1:-1:-1;;;;;;23804:25:0;;;23780:4;23804:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;27019:32;26956:96;26712:348;-1:-1:-1;;;;26712:348:0:o;29704:578::-;29863:4;-1:-1:-1;;;;;29836:31:0;:23;29851:7;29836:14;:23::i;:::-;-1:-1:-1;;;;;29836:31:0;;29828:85;;;;-1:-1:-1;;;29828:85:0;;11389:2:1;29828:85:0;;;11371:21:1;11428:2;11408:18;;;11401:30;11467:34;11447:18;;;11440:62;-1:-1:-1;;;11518:18:1;;;11511:39;11567:19;;29828:85:0;11187:405:1;29828:85:0;-1:-1:-1;;;;;29932:16:0;;29924:65;;;;-1:-1:-1;;;29924:65:0;;7845:2:1;29924:65:0;;;7827:21:1;7884:2;7864:18;;;7857:30;7923:34;7903:18;;;7896:62;-1:-1:-1;;;7974:18:1;;;7967:34;8018:19;;29924:65:0;7643:400:1;29924:65:0;30106:29;30123:1;30127:7;30106:8;:29::i;:::-;-1:-1:-1;;;;;30148:15:0;;;;;;:9;:15;;;;;:20;;30167:1;;30148:15;:20;;30167:1;;30148:20;:::i;:::-;;;;-1:-1:-1;;;;;;;30179:13:0;;;;;;:9;:13;;;;;:18;;30196:1;;30179:13;:18;;30196:1;;30179:18;:::i;:::-;;;;-1:-1:-1;;30208:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30208:21:0;-1:-1:-1;;;;;30208:21:0;;;;;;;;;30247:27;;30208:16;;30247:27;;;;;;;29704:578;;;:::o;28396:382::-;-1:-1:-1;;;;;28476:16:0;;28468:61;;;;-1:-1:-1;;;28468:61:0;;10615:2:1;28468:61:0;;;10597:21:1;;;10634:18;;;10627:30;10693:34;10673:18;;;10666:62;10745:18;;28468:61:0;10413:356:1;28468:61:0;26483:4;26507:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26507:16:0;:30;28540:58;;;;-1:-1:-1;;;28540:58:0;;7137:2:1;28540:58:0;;;7119:21:1;7176:2;7156:18;;;7149:30;7215;7195:18;;;7188:58;7263:18;;28540:58:0;6935:352:1;28540:58:0;-1:-1:-1;;;;;28669:13:0;;;;;;:9;:13;;;;;:18;;28686:1;;28669:13;:18;;28686:1;;28669:18;:::i;:::-;;;;-1:-1:-1;;28698:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;28698:21:0;-1:-1:-1;;;;;28698:21:0;;;;;;;;28737:33;;28698:16;;;28737:33;;28698:16;;28737:33;28396:382;;:::o;30716:315::-;30871:8;-1:-1:-1;;;;;30862:17:0;:5;-1:-1:-1;;;;;30862:17:0;;;30854:55;;;;-1:-1:-1;;;30854:55:0;;8250:2:1;30854:55:0;;;8232:21:1;8289:2;8269:18;;;8262:30;8328:27;8308:18;;;8301:55;8373:18;;30854:55:0;8048:349:1;30854:55:0;-1:-1:-1;;;;;30920:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;30920:46:0;;;;;;;;;;30982:41;;6240::1;;;30982::0;;6213:18:1;30982:41:0;;;;;;;30716:315;;;:::o;25790:::-;25947:28;25957:4;25963:2;25967:7;25947:9;:28::i;:::-;25994:48;26017:4;26023:2;26027:7;26036:5;25994:22;:48::i;:::-;25986:111;;;;-1:-1:-1;;;25986:111:0;;;;;;;:::i;35017:100::-;35069:13;35102:7;35095:14;;;;;:::i;31596:799::-;31751:4;-1:-1:-1;;;;;31772:13:0;;4031:20;4079:8;31768:620;;31808:72;;-1:-1:-1;;;31808:72:0;;-1:-1:-1;;;;;31808:36:0;;;;;:72;;2808:10;;31859:4;;31865:7;;31874:5;;31808:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31808:72:0;;;;;;;;-1:-1:-1;;31808:72:0;;;;;;;;;;;;:::i;:::-;;;31804:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32050:13:0;;32046:272;;32093:60;;-1:-1:-1;;;32093:60:0;;;;;;;:::i;32046:272::-;32268:6;32262:13;32253:6;32249:2;32245:15;32238:38;31804:529;-1:-1:-1;;;;;;31931:51:0;-1:-1:-1;;;31931:51:0;;-1:-1:-1;31924:58:0;;31768:620;-1:-1:-1;32372:4:0;31596:799;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:186::-;662:6;715:2;703:9;694:7;690:23;686:32;683:52;;;731:1;728;721:12;683:52;754:29;773:9;754:29;:::i;:::-;744:39;603:186;-1:-1:-1;;;603:186:1:o;794:260::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;;1010:38;1044:2;1033:9;1029:18;1010:38;:::i;:::-;1000:48;;794:260;;;;;:::o;1059:328::-;1136:6;1144;1152;1205:2;1193:9;1184:7;1180:23;1176:32;1173:52;;;1221:1;1218;1211:12;1173:52;1244:29;1263:9;1244:29;:::i;:::-;1234:39;;1292:38;1326:2;1315:9;1311:18;1292:38;:::i;:::-;1282:48;;1377:2;1366:9;1362:18;1349:32;1339:42;;1059:328;;;;;:::o;1392:666::-;1487:6;1495;1503;1511;1564:3;1552:9;1543:7;1539:23;1535:33;1532:53;;;1581:1;1578;1571:12;1532:53;1604:29;1623:9;1604:29;:::i;:::-;1594:39;;1652:38;1686:2;1675:9;1671:18;1652:38;:::i;:::-;1642:48;;1737:2;1726:9;1722:18;1709:32;1699:42;;1792:2;1781:9;1777:18;1764:32;1819:18;1811:6;1808:30;1805:50;;;1851:1;1848;1841:12;1805:50;1874:22;;1927:4;1919:13;;1915:27;-1:-1:-1;1905:55:1;;1956:1;1953;1946:12;1905:55;1979:73;2044:7;2039:2;2026:16;2021:2;2017;2013:11;1979:73;:::i;:::-;1969:83;;;1392:666;;;;;;;:::o;2063:347::-;2128:6;2136;2189:2;2177:9;2168:7;2164:23;2160:32;2157:52;;;2205:1;2202;2195:12;2157:52;2228:29;2247:9;2228:29;:::i;:::-;2218:39;;2307:2;2296:9;2292:18;2279:32;2354:5;2347:13;2340:21;2333:5;2330:32;2320:60;;2376:1;2373;2366:12;2320:60;2399:5;2389:15;;;2063:347;;;;;:::o;2415:254::-;2483:6;2491;2544:2;2532:9;2523:7;2519:23;2515:32;2512:52;;;2560:1;2557;2550:12;2512:52;2583:29;2602:9;2583:29;:::i;:::-;2573:39;2659:2;2644:18;;;;2631:32;;-1:-1:-1;;;2415:254:1:o;2674:1033::-;2767:6;2775;2828:2;2816:9;2807:7;2803:23;2799:32;2796:52;;;2844:1;2841;2834:12;2796:52;2884:9;2871:23;2913:18;2954:2;2946:6;2943:14;2940:34;;;2970:1;2967;2960:12;2940:34;3008:6;2997:9;2993:22;2983:32;;3053:7;3046:4;3042:2;3038:13;3034:27;3024:55;;3075:1;3072;3065:12;3024:55;3111:2;3098:16;3133:4;3156:2;3152;3149:10;3146:36;;;3162:18;;:::i;:::-;3208:2;3205:1;3201:10;3191:20;;3231:28;3255:2;3251;3247:11;3231:28;:::i;:::-;3293:15;;;3324:12;;;;3356:11;;;3386;;;3382:20;;3379:33;-1:-1:-1;3376:53:1;;;3425:1;3422;3415:12;3376:53;3447:1;3438:10;;3457:169;3471:2;3468:1;3465:9;3457:169;;;3528:23;3547:3;3528:23;:::i;:::-;3516:36;;3489:1;3482:9;;;;;3572:12;;;;3604;;3457:169;;;-1:-1:-1;3645:5:1;3682:18;;;;3669:32;;-1:-1:-1;;;;;;;2674:1033:1:o;3712:245::-;3770:6;3823:2;3811:9;3802:7;3798:23;3794:32;3791:52;;;3839:1;3836;3829:12;3791:52;3878:9;3865:23;3897:30;3921:5;3897:30;:::i;3962:249::-;4031:6;4084:2;4072:9;4063:7;4059:23;4055:32;4052:52;;;4100:1;4097;4090:12;4052:52;4132:9;4126:16;4151:30;4175:5;4151:30;:::i;4216:450::-;4285:6;4338:2;4326:9;4317:7;4313:23;4309:32;4306:52;;;4354:1;4351;4344:12;4306:52;4394:9;4381:23;4427:18;4419:6;4416:30;4413:50;;;4459:1;4456;4449:12;4413:50;4482:22;;4535:4;4527:13;;4523:27;-1:-1:-1;4513:55:1;;4564:1;4561;4554:12;4513:55;4587:73;4652:7;4647:2;4634:16;4629:2;4625;4621:11;4587:73;:::i;4671:180::-;4730:6;4783:2;4771:9;4762:7;4758:23;4754:32;4751:52;;;4799:1;4796;4789:12;4751:52;-1:-1:-1;4822:23:1;;4671:180;-1:-1:-1;4671:180:1:o;4856:257::-;4897:3;4935:5;4929:12;4962:6;4957:3;4950:19;4978:63;5034:6;5027:4;5022:3;5018:14;5011:4;5004:5;5000:16;4978:63;:::i;:::-;5095:2;5074:15;-1:-1:-1;;5070:29:1;5061:39;;;;5102:4;5057:50;;4856:257;-1:-1:-1;;4856:257:1:o;5118:276::-;5249:3;5287:6;5281:13;5303:53;5349:6;5344:3;5337:4;5329:6;5325:17;5303:53;:::i;:::-;5372:16;;;;;5118:276;-1:-1:-1;;5118:276:1:o;5607:488::-;-1:-1:-1;;;;;5876:15:1;;;5858:34;;5928:15;;5923:2;5908:18;;5901:43;5975:2;5960:18;;5953:34;;;6023:3;6018:2;6003:18;;5996:31;;;5801:4;;6044:45;;6069:19;;6061:6;6044:45;:::i;:::-;6036:53;5607:488;-1:-1:-1;;;;;;5607:488:1:o;6292:219::-;6441:2;6430:9;6423:21;6404:4;6461:44;6501:2;6490:9;6486:18;6478:6;6461:44;:::i;6516:414::-;6718:2;6700:21;;;6757:2;6737:18;;;6730:30;6796:34;6791:2;6776:18;;6769:62;-1:-1:-1;;;6862:2:1;6847:18;;6840:48;6920:3;6905:19;;6516:414::o;12415:413::-;12617:2;12599:21;;;12656:2;12636:18;;;12629:30;12695:34;12690:2;12675:18;;12668:62;-1:-1:-1;;;12761:2:1;12746:18;;12739:47;12818:3;12803:19;;12415:413::o;13015:275::-;13086:2;13080:9;13151:2;13132:13;;-1:-1:-1;;13128:27:1;13116:40;;13186:18;13171:34;;13207:22;;;13168:62;13165:88;;;13233:18;;:::i;:::-;13269:2;13262:22;13015:275;;-1:-1:-1;13015:275:1:o;13295:128::-;13335:3;13366:1;13362:6;13359:1;13356:13;13353:39;;;13372:18;;:::i;:::-;-1:-1:-1;13408:9:1;;13295:128::o;13428:125::-;13468:4;13496:1;13493;13490:8;13487:34;;;13501:18;;:::i;:::-;-1:-1:-1;13538:9:1;;13428:125::o;13558:258::-;13630:1;13640:113;13654:6;13651:1;13648:13;13640:113;;;13730:11;;;13724:18;13711:11;;;13704:39;13676:2;13669:10;13640:113;;;13771:6;13768:1;13765:13;13762:48;;;-1:-1:-1;;13806:1:1;13788:16;;13781:27;13558:258::o;13821:380::-;13900:1;13896:12;;;;13943;;;13964:61;;14018:4;14010:6;14006:17;13996:27;;13964:61;14071:2;14063:6;14060:14;14040:18;14037:38;14034:161;;;14117:10;14112:3;14108:20;14105:1;14098:31;14152:4;14149:1;14142:15;14180:4;14177:1;14170:15;14034:161;;13821:380;;;:::o;14206:135::-;14245:3;-1:-1:-1;;14266:17:1;;14263:43;;;14286:18;;:::i;:::-;-1:-1:-1;14333:1:1;14322:13;;14206:135::o;14346:127::-;14407:10;14402:3;14398:20;14395:1;14388:31;14438:4;14435:1;14428:15;14462:4;14459:1;14452:15;14478:127;14539:10;14534:3;14530:20;14527:1;14520:31;14570:4;14567:1;14560:15;14594:4;14591:1;14584:15;14610:127;14671:10;14666:3;14662:20;14659:1;14652:31;14702:4;14699:1;14692:15;14726:4;14723:1;14716:15;14742:131;-1:-1:-1;;;;;;14816:32:1;;14806:43;;14796:71;;14863:1;14860;14853:12;14796:71;14742:131;:::o

Swarm Source

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