ETH Price: $3,387.52 (-1.58%)
Gas: 2 Gwei

Token

Birb (BIRB)
 

Overview

Max Total Supply

6,969 BIRB

Holders

2,153

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
71 BIRB
0x47c2ac06520722aaa3e32d99ec6a2352b48b1b8a
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:
NFT

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-05-31
*/

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

// SPDX-License-Identifier: MIT

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

pragma solidity ^0.8.0;

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

// File @openzeppelin/contracts/token/ERC721/[email protected]

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

// File @openzeppelin/contracts/token/ERC721/[email protected]

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

pragma solidity ^0.8.0;

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

// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]

// 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 @openzeppelin/contracts/token/ERC721/extensions/[email protected]

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

pragma solidity ^0.8.0;

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

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

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

// File @openzeppelin/contracts/utils/[email protected]

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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File @openzeppelin/contracts/utils/[email protected]

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

pragma solidity ^0.8.0;

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

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

// File @openzeppelin/contracts/utils/[email protected]

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

pragma solidity ^0.8.0;

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

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

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

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

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

// File @openzeppelin/contracts/utils/introspection/[email protected]

// 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 erc721a/contracts/[email protected]

// Creator: Chiru Labs

pragma solidity ^0.8.4;

error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error AuxQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

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

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

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

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

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        _addressData[owner].aux = aux;
    }

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned;
    }

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

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

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

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

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

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

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

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
            return retval == IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

// File erc721a/contracts/extensions/[email protected]

// Creator: Chiru Labs

pragma solidity ^0.8.4;

error AllOwnershipsHaveBeenSet();
error QuantityMustBeNonZero();
error NoTokensMintedYet();

abstract contract ERC721AOwnersExplicit is ERC721A {
    uint256 public nextOwnerToExplicitlySet;

    /**
     * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
     */
    function _setOwnersExplicit(uint256 quantity) internal {
        if (quantity == 0) revert QuantityMustBeNonZero();
        if (_currentIndex == _startTokenId()) revert NoTokensMintedYet();
        uint256 _nextOwnerToExplicitlySet = nextOwnerToExplicitlySet;
        if (_nextOwnerToExplicitlySet == 0) {
            _nextOwnerToExplicitlySet = _startTokenId();
        }
        if (_nextOwnerToExplicitlySet >= _currentIndex) revert AllOwnershipsHaveBeenSet();

        // Index underflow is impossible.
        // Counter or index overflow is incredibly unrealistic.
        unchecked {
            uint256 endIndex = _nextOwnerToExplicitlySet + quantity - 1;

            // Set the end index to be the last token index
            if (endIndex + 1 > _currentIndex) {
                endIndex = _currentIndex - 1;
            }

            for (uint256 i = _nextOwnerToExplicitlySet; i <= endIndex; i++) {
                if (_ownerships[i].addr == address(0) && !_ownerships[i].burned) {
                    TokenOwnership memory ownership = ownershipOf(i);
                    _ownerships[i].addr = ownership.addr;
                    _ownerships[i].startTimestamp = ownership.startTimestamp;
                }
            }

            nextOwnerToExplicitlySet = endIndex + 1;
        }
    }
}

// File @openzeppelin/contracts/access/[email protected]

// 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 contracts/NFT.sol

pragma solidity ^0.8.4;

contract NFT is ERC721A, ERC721AOwnersExplicit, Ownable {
    address public manager;
    string public _baseTokenURI;

    modifier onlyManager() {
        require(manager == _msgSender(), "Only manager can mint");
        _;
    }

    constructor(string memory name_, string memory symbol_) ERC721A(name_, symbol_) {
        manager = msg.sender;
    }

    function safeMint(address to, uint256 quantity) external onlyManager {
        _safeMint(to, quantity);
    }

    function setManager(address to) external onlyOwner {
        manager = to;
    }

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[{"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":"manager","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"safeMint","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":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"setManager","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162003325380380620033258339818101604052810190620000379190620002ed565b8181816002908051906020019062000051929190620001bf565b5080600390805190602001906200006a929190620001bf565b506200007b620000ec60201b60201c565b6000819055505050620000a362000097620000f160201b60201c565b620000f960201b60201c565b33600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050620004f6565b600090565b600033905090565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001cd9062000407565b90600052602060002090601f016020900481019282620001f157600085556200023d565b82601f106200020c57805160ff19168380011785556200023d565b828001600101855582156200023d579182015b828111156200023c5782518255916020019190600101906200021f565b5b5090506200024c919062000250565b5090565b5b808211156200026b57600081600090555060010162000251565b5090565b60006200028662000280846200039b565b62000372565b905082815260208101848484011115620002a557620002a4620004d6565b5b620002b2848285620003d1565b509392505050565b600082601f830112620002d257620002d1620004d1565b5b8151620002e48482602086016200026f565b91505092915050565b60008060408385031215620003075762000306620004e0565b5b600083015167ffffffffffffffff811115620003285762000327620004db565b5b6200033685828601620002ba565b925050602083015167ffffffffffffffff8111156200035a5762000359620004db565b5b6200036885828601620002ba565b9150509250929050565b60006200037e62000391565b90506200038c82826200043d565b919050565b6000604051905090565b600067ffffffffffffffff821115620003b957620003b8620004a2565b5b620003c482620004e5565b9050602081019050919050565b60005b83811015620003f1578082015181840152602081019050620003d4565b8381111562000401576000848401525b50505050565b600060028204905060018216806200042057607f821691505b6020821081141562000437576200043662000473565b5b50919050565b6200044882620004e5565b810181811067ffffffffffffffff821117156200046a5762000469620004a2565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b612e1f80620005066000396000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c8063715018a6116100c3578063c87b56dd1161007c578063c87b56dd14610376578063cfc86f7b146103a6578063d0ebdbe7146103c4578063d7224ba0146103e0578063e985e9c5146103fe578063f2fde38b1461042e5761014d565b8063715018a6146102dc5780638da5cb5b146102e657806395d89b4114610304578063a144819414610322578063a22cb4651461033e578063b88d4fde1461035a5761014d565b806323b872dd1161011557806323b872dd1461020a57806342842e0e14610226578063481c6a751461024257806355f804b3146102605780636352211e1461027c57806370a08231146102ac5761014d565b806301ffc9a71461015257806306fdde0314610182578063081812fc146101a0578063095ea7b3146101d057806318160ddd146101ec575b600080fd5b61016c6004803603810190610167919061259b565b61044a565b6040516101799190612833565b60405180910390f35b61018a61052c565b604051610197919061284e565b60405180910390f35b6101ba60048036038101906101b59190612642565b6105be565b6040516101c791906127cc565b60405180910390f35b6101ea60048036038101906101e5919061255b565b61063a565b005b6101f4610745565b60405161020191906128d0565b60405180910390f35b610224600480360381019061021f9190612445565b61075c565b005b610240600480360381019061023b9190612445565b61076c565b005b61024a61078c565b60405161025791906127cc565b60405180910390f35b61027a600480360381019061027591906125f5565b6107b2565b005b61029660048036038101906102919190612642565b610844565b6040516102a391906127cc565b60405180910390f35b6102c660048036038101906102c191906123d8565b61085a565b6040516102d391906128d0565b60405180910390f35b6102e461092a565b005b6102ee6109b2565b6040516102fb91906127cc565b60405180910390f35b61030c6109dc565b604051610319919061284e565b60405180910390f35b61033c6004803603810190610337919061255b565b610a6e565b005b6103586004803603810190610353919061251b565b610b13565b005b610374600480360381019061036f9190612498565b610c8b565b005b610390600480360381019061038b9190612642565b610d07565b60405161039d919061284e565b60405180910390f35b6103ae610da6565b6040516103bb919061284e565b60405180910390f35b6103de60048036038101906103d991906123d8565b610e34565b005b6103e8610ef4565b6040516103f591906128d0565b60405180910390f35b61041860048036038101906104139190612405565b610efa565b6040516104259190612833565b60405180910390f35b610448600480360381019061044391906123d8565b610f8e565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061051557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610525575061052482611086565b5b9050919050565b60606002805461053b90612af5565b80601f016020809104026020016040519081016040528092919081815260200182805461056790612af5565b80156105b45780601f10610589576101008083540402835291602001916105b4565b820191906000526020600020905b81548152906001019060200180831161059757829003601f168201915b5050505050905090565b60006105c9826110f0565b6105ff576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061064582610844565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156106ad576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166106cc61113e565b73ffffffffffffffffffffffffffffffffffffffff16141580156106fe57506106fc816106f761113e565b610efa565b155b15610735576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610740838383611146565b505050565b600061074f6111f8565b6001546000540303905090565b6107678383836111fd565b505050565b61078783838360405180602001604052806000815250610c8b565b505050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6107ba61113e565b73ffffffffffffffffffffffffffffffffffffffff166107d86109b2565b73ffffffffffffffffffffffffffffffffffffffff161461082e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610825906128b0565b60405180910390fd5b8181600b919061083f9291906121c3565b505050565b600061084f826116ee565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156108c2576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61093261113e565b73ffffffffffffffffffffffffffffffffffffffff166109506109b2565b73ffffffffffffffffffffffffffffffffffffffff16146109a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099d906128b0565b60405180910390fd5b6109b0600061197d565b565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546109eb90612af5565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1790612af5565b8015610a645780601f10610a3957610100808354040283529160200191610a64565b820191906000526020600020905b815481529060010190602001808311610a4757829003601f168201915b5050505050905090565b610a7661113e565b73ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afc90612890565b60405180910390fd5b610b0f8282611a43565b5050565b610b1b61113e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b80576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000610b8d61113e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610c3a61113e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610c7f9190612833565b60405180910390a35050565b610c968484846111fd565b610cb58373ffffffffffffffffffffffffffffffffffffffff16611a61565b8015610cca5750610cc884848484611a84565b155b15610d01576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060610d12826110f0565b610d48576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000610d52611be4565b9050600081511415610d735760405180602001604052806000815250610d9e565b80610d7d84611c76565b604051602001610d8e9291906127a8565b6040516020818303038152906040525b915050919050565b600b8054610db390612af5565b80601f0160208091040260200160405190810160405280929190818152602001828054610ddf90612af5565b8015610e2c5780601f10610e0157610100808354040283529160200191610e2c565b820191906000526020600020905b815481529060010190602001808311610e0f57829003601f168201915b505050505081565b610e3c61113e565b73ffffffffffffffffffffffffffffffffffffffff16610e5a6109b2565b73ffffffffffffffffffffffffffffffffffffffff1614610eb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea7906128b0565b60405180910390fd5b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60085481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610f9661113e565b73ffffffffffffffffffffffffffffffffffffffff16610fb46109b2565b73ffffffffffffffffffffffffffffffffffffffff161461100a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611001906128b0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561107a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107190612870565b60405180910390fd5b6110838161197d565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816110fb6111f8565b1115801561110a575060005482105b8015611137575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6000611208826116ee565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661122f61113e565b73ffffffffffffffffffffffffffffffffffffffff1614806112625750611261826000015161125c61113e565b610efa565b5b806112a7575061127061113e565b73ffffffffffffffffffffffffffffffffffffffff1661128f846105be565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806112e0576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611349576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156113b0576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6113bd8585856001611dd7565b6113cd6000848460000151611146565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561167e5760005481101561167d5782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46116e78585856001611ddd565b5050505050565b6116f6612249565b6000829050806117046111f8565b11158015611713575060005481105b15611946576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161194457600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611828578092505050611978565b5b60011561194357818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461193e578092505050611978565b611829565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611a5d828260405180602001604052806000815250611de3565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611aaa61113e565b8786866040518563ffffffff1660e01b8152600401611acc94939291906127e7565b602060405180830381600087803b158015611ae657600080fd5b505af1925050508015611b1757506040513d601f19601f82011682018060405250810190611b1491906125c8565b60015b611b91573d8060008114611b47576040519150601f19603f3d011682016040523d82523d6000602084013e611b4c565b606091505b50600081511415611b89576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600b8054611bf390612af5565b80601f0160208091040260200160405190810160405280929190818152602001828054611c1f90612af5565b8015611c6c5780601f10611c4157610100808354040283529160200191611c6c565b820191906000526020600020905b815481529060010190602001808311611c4f57829003601f168201915b5050505050905090565b60606000821415611cbe576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611dd2565b600082905060005b60008214611cf0578080611cd990612b58565b915050600a82611ce991906129da565b9150611cc6565b60008167ffffffffffffffff811115611d0c57611d0b612c8e565b5b6040519080825280601f01601f191660200182016040528015611d3e5781602001600182028036833780820191505090505b5090505b60008514611dcb57600182611d579190612a0b565b9150600a85611d669190612ba1565b6030611d729190612984565b60f81b818381518110611d8857611d87612c5f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611dc491906129da565b9450611d42565b8093505050505b919050565b50505050565b50505050565b611df08383836001611df5565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611e62576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415611e9d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611eaa6000868387611dd7565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561207457506120738773ffffffffffffffffffffffffffffffffffffffff16611a61565b5b1561213a575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120e96000888480600101955088611a84565b61211f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561207a57826000541461213557600080fd5b6121a6565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082141561213b575b8160008190555050506121bc6000868387611ddd565b5050505050565b8280546121cf90612af5565b90600052602060002090601f0160209004810192826121f15760008555612238565b82601f1061220a57803560ff1916838001178555612238565b82800160010185558215612238579182015b8281111561223757823582559160200191906001019061221c565b5b509050612245919061228c565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156122a557600081600090555060010161228d565b5090565b60006122bc6122b784612910565b6128eb565b9050828152602081018484840111156122d8576122d7612ccc565b5b6122e3848285612ab3565b509392505050565b6000813590506122fa81612d8d565b92915050565b60008135905061230f81612da4565b92915050565b60008135905061232481612dbb565b92915050565b60008151905061233981612dbb565b92915050565b600082601f83011261235457612353612cc2565b5b81356123648482602086016122a9565b91505092915050565b60008083601f84011261238357612382612cc2565b5b8235905067ffffffffffffffff8111156123a05761239f612cbd565b5b6020830191508360018202830111156123bc576123bb612cc7565b5b9250929050565b6000813590506123d281612dd2565b92915050565b6000602082840312156123ee576123ed612cd6565b5b60006123fc848285016122eb565b91505092915050565b6000806040838503121561241c5761241b612cd6565b5b600061242a858286016122eb565b925050602061243b858286016122eb565b9150509250929050565b60008060006060848603121561245e5761245d612cd6565b5b600061246c868287016122eb565b935050602061247d868287016122eb565b925050604061248e868287016123c3565b9150509250925092565b600080600080608085870312156124b2576124b1612cd6565b5b60006124c0878288016122eb565b94505060206124d1878288016122eb565b93505060406124e2878288016123c3565b925050606085013567ffffffffffffffff81111561250357612502612cd1565b5b61250f8782880161233f565b91505092959194509250565b6000806040838503121561253257612531612cd6565b5b6000612540858286016122eb565b925050602061255185828601612300565b9150509250929050565b6000806040838503121561257257612571612cd6565b5b6000612580858286016122eb565b9250506020612591858286016123c3565b9150509250929050565b6000602082840312156125b1576125b0612cd6565b5b60006125bf84828501612315565b91505092915050565b6000602082840312156125de576125dd612cd6565b5b60006125ec8482850161232a565b91505092915050565b6000806020838503121561260c5761260b612cd6565b5b600083013567ffffffffffffffff81111561262a57612629612cd1565b5b6126368582860161236d565b92509250509250929050565b60006020828403121561265857612657612cd6565b5b6000612666848285016123c3565b91505092915050565b61267881612a3f565b82525050565b61268781612a51565b82525050565b600061269882612941565b6126a28185612957565b93506126b2818560208601612ac2565b6126bb81612cdb565b840191505092915050565b60006126d18261294c565b6126db8185612968565b93506126eb818560208601612ac2565b6126f481612cdb565b840191505092915050565b600061270a8261294c565b6127148185612979565b9350612724818560208601612ac2565b80840191505092915050565b600061273d602683612968565b915061274882612cec565b604082019050919050565b6000612760601583612968565b915061276b82612d3b565b602082019050919050565b6000612783602083612968565b915061278e82612d64565b602082019050919050565b6127a281612aa9565b82525050565b60006127b482856126ff565b91506127c082846126ff565b91508190509392505050565b60006020820190506127e1600083018461266f565b92915050565b60006080820190506127fc600083018761266f565b612809602083018661266f565b6128166040830185612799565b8181036060830152612828818461268d565b905095945050505050565b6000602082019050612848600083018461267e565b92915050565b6000602082019050818103600083015261286881846126c6565b905092915050565b6000602082019050818103600083015261288981612730565b9050919050565b600060208201905081810360008301526128a981612753565b9050919050565b600060208201905081810360008301526128c981612776565b9050919050565b60006020820190506128e56000830184612799565b92915050565b60006128f5612906565b90506129018282612b27565b919050565b6000604051905090565b600067ffffffffffffffff82111561292b5761292a612c8e565b5b61293482612cdb565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061298f82612aa9565b915061299a83612aa9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156129cf576129ce612bd2565b5b828201905092915050565b60006129e582612aa9565b91506129f083612aa9565b925082612a00576129ff612c01565b5b828204905092915050565b6000612a1682612aa9565b9150612a2183612aa9565b925082821015612a3457612a33612bd2565b5b828203905092915050565b6000612a4a82612a89565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612ae0578082015181840152602081019050612ac5565b83811115612aef576000848401525b50505050565b60006002820490506001821680612b0d57607f821691505b60208210811415612b2157612b20612c30565b5b50919050565b612b3082612cdb565b810181811067ffffffffffffffff82111715612b4f57612b4e612c8e565b5b80604052505050565b6000612b6382612aa9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612b9657612b95612bd2565b5b600182019050919050565b6000612bac82612aa9565b9150612bb783612aa9565b925082612bc757612bc6612c01565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4f6e6c79206d616e616765722063616e206d696e740000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b612d9681612a3f565b8114612da157600080fd5b50565b612dad81612a51565b8114612db857600080fd5b50565b612dc481612a5d565b8114612dcf57600080fd5b50565b612ddb81612aa9565b8114612de657600080fd5b5056fea2646970667358221220dbe0cb4bbfdb473944838a225710f1cefd11421345564e78cbb6d8dded3d164864736f6c63430008070033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000004426972620000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044249524200000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061014d5760003560e01c8063715018a6116100c3578063c87b56dd1161007c578063c87b56dd14610376578063cfc86f7b146103a6578063d0ebdbe7146103c4578063d7224ba0146103e0578063e985e9c5146103fe578063f2fde38b1461042e5761014d565b8063715018a6146102dc5780638da5cb5b146102e657806395d89b4114610304578063a144819414610322578063a22cb4651461033e578063b88d4fde1461035a5761014d565b806323b872dd1161011557806323b872dd1461020a57806342842e0e14610226578063481c6a751461024257806355f804b3146102605780636352211e1461027c57806370a08231146102ac5761014d565b806301ffc9a71461015257806306fdde0314610182578063081812fc146101a0578063095ea7b3146101d057806318160ddd146101ec575b600080fd5b61016c6004803603810190610167919061259b565b61044a565b6040516101799190612833565b60405180910390f35b61018a61052c565b604051610197919061284e565b60405180910390f35b6101ba60048036038101906101b59190612642565b6105be565b6040516101c791906127cc565b60405180910390f35b6101ea60048036038101906101e5919061255b565b61063a565b005b6101f4610745565b60405161020191906128d0565b60405180910390f35b610224600480360381019061021f9190612445565b61075c565b005b610240600480360381019061023b9190612445565b61076c565b005b61024a61078c565b60405161025791906127cc565b60405180910390f35b61027a600480360381019061027591906125f5565b6107b2565b005b61029660048036038101906102919190612642565b610844565b6040516102a391906127cc565b60405180910390f35b6102c660048036038101906102c191906123d8565b61085a565b6040516102d391906128d0565b60405180910390f35b6102e461092a565b005b6102ee6109b2565b6040516102fb91906127cc565b60405180910390f35b61030c6109dc565b604051610319919061284e565b60405180910390f35b61033c6004803603810190610337919061255b565b610a6e565b005b6103586004803603810190610353919061251b565b610b13565b005b610374600480360381019061036f9190612498565b610c8b565b005b610390600480360381019061038b9190612642565b610d07565b60405161039d919061284e565b60405180910390f35b6103ae610da6565b6040516103bb919061284e565b60405180910390f35b6103de60048036038101906103d991906123d8565b610e34565b005b6103e8610ef4565b6040516103f591906128d0565b60405180910390f35b61041860048036038101906104139190612405565b610efa565b6040516104259190612833565b60405180910390f35b610448600480360381019061044391906123d8565b610f8e565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061051557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610525575061052482611086565b5b9050919050565b60606002805461053b90612af5565b80601f016020809104026020016040519081016040528092919081815260200182805461056790612af5565b80156105b45780601f10610589576101008083540402835291602001916105b4565b820191906000526020600020905b81548152906001019060200180831161059757829003601f168201915b5050505050905090565b60006105c9826110f0565b6105ff576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061064582610844565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156106ad576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166106cc61113e565b73ffffffffffffffffffffffffffffffffffffffff16141580156106fe57506106fc816106f761113e565b610efa565b155b15610735576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610740838383611146565b505050565b600061074f6111f8565b6001546000540303905090565b6107678383836111fd565b505050565b61078783838360405180602001604052806000815250610c8b565b505050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6107ba61113e565b73ffffffffffffffffffffffffffffffffffffffff166107d86109b2565b73ffffffffffffffffffffffffffffffffffffffff161461082e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610825906128b0565b60405180910390fd5b8181600b919061083f9291906121c3565b505050565b600061084f826116ee565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156108c2576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61093261113e565b73ffffffffffffffffffffffffffffffffffffffff166109506109b2565b73ffffffffffffffffffffffffffffffffffffffff16146109a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099d906128b0565b60405180910390fd5b6109b0600061197d565b565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546109eb90612af5565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1790612af5565b8015610a645780601f10610a3957610100808354040283529160200191610a64565b820191906000526020600020905b815481529060010190602001808311610a4757829003601f168201915b5050505050905090565b610a7661113e565b73ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afc90612890565b60405180910390fd5b610b0f8282611a43565b5050565b610b1b61113e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b80576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000610b8d61113e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610c3a61113e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610c7f9190612833565b60405180910390a35050565b610c968484846111fd565b610cb58373ffffffffffffffffffffffffffffffffffffffff16611a61565b8015610cca5750610cc884848484611a84565b155b15610d01576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060610d12826110f0565b610d48576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000610d52611be4565b9050600081511415610d735760405180602001604052806000815250610d9e565b80610d7d84611c76565b604051602001610d8e9291906127a8565b6040516020818303038152906040525b915050919050565b600b8054610db390612af5565b80601f0160208091040260200160405190810160405280929190818152602001828054610ddf90612af5565b8015610e2c5780601f10610e0157610100808354040283529160200191610e2c565b820191906000526020600020905b815481529060010190602001808311610e0f57829003601f168201915b505050505081565b610e3c61113e565b73ffffffffffffffffffffffffffffffffffffffff16610e5a6109b2565b73ffffffffffffffffffffffffffffffffffffffff1614610eb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea7906128b0565b60405180910390fd5b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60085481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610f9661113e565b73ffffffffffffffffffffffffffffffffffffffff16610fb46109b2565b73ffffffffffffffffffffffffffffffffffffffff161461100a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611001906128b0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561107a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107190612870565b60405180910390fd5b6110838161197d565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816110fb6111f8565b1115801561110a575060005482105b8015611137575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6000611208826116ee565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661122f61113e565b73ffffffffffffffffffffffffffffffffffffffff1614806112625750611261826000015161125c61113e565b610efa565b5b806112a7575061127061113e565b73ffffffffffffffffffffffffffffffffffffffff1661128f846105be565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806112e0576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611349576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156113b0576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6113bd8585856001611dd7565b6113cd6000848460000151611146565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561167e5760005481101561167d5782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46116e78585856001611ddd565b5050505050565b6116f6612249565b6000829050806117046111f8565b11158015611713575060005481105b15611946576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161194457600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611828578092505050611978565b5b60011561194357818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461193e578092505050611978565b611829565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611a5d828260405180602001604052806000815250611de3565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611aaa61113e565b8786866040518563ffffffff1660e01b8152600401611acc94939291906127e7565b602060405180830381600087803b158015611ae657600080fd5b505af1925050508015611b1757506040513d601f19601f82011682018060405250810190611b1491906125c8565b60015b611b91573d8060008114611b47576040519150601f19603f3d011682016040523d82523d6000602084013e611b4c565b606091505b50600081511415611b89576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600b8054611bf390612af5565b80601f0160208091040260200160405190810160405280929190818152602001828054611c1f90612af5565b8015611c6c5780601f10611c4157610100808354040283529160200191611c6c565b820191906000526020600020905b815481529060010190602001808311611c4f57829003601f168201915b5050505050905090565b60606000821415611cbe576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611dd2565b600082905060005b60008214611cf0578080611cd990612b58565b915050600a82611ce991906129da565b9150611cc6565b60008167ffffffffffffffff811115611d0c57611d0b612c8e565b5b6040519080825280601f01601f191660200182016040528015611d3e5781602001600182028036833780820191505090505b5090505b60008514611dcb57600182611d579190612a0b565b9150600a85611d669190612ba1565b6030611d729190612984565b60f81b818381518110611d8857611d87612c5f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611dc491906129da565b9450611d42565b8093505050505b919050565b50505050565b50505050565b611df08383836001611df5565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611e62576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415611e9d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611eaa6000868387611dd7565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561207457506120738773ffffffffffffffffffffffffffffffffffffffff16611a61565b5b1561213a575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120e96000888480600101955088611a84565b61211f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561207a57826000541461213557600080fd5b6121a6565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082141561213b575b8160008190555050506121bc6000868387611ddd565b5050505050565b8280546121cf90612af5565b90600052602060002090601f0160209004810192826121f15760008555612238565b82601f1061220a57803560ff1916838001178555612238565b82800160010185558215612238579182015b8281111561223757823582559160200191906001019061221c565b5b509050612245919061228c565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156122a557600081600090555060010161228d565b5090565b60006122bc6122b784612910565b6128eb565b9050828152602081018484840111156122d8576122d7612ccc565b5b6122e3848285612ab3565b509392505050565b6000813590506122fa81612d8d565b92915050565b60008135905061230f81612da4565b92915050565b60008135905061232481612dbb565b92915050565b60008151905061233981612dbb565b92915050565b600082601f83011261235457612353612cc2565b5b81356123648482602086016122a9565b91505092915050565b60008083601f84011261238357612382612cc2565b5b8235905067ffffffffffffffff8111156123a05761239f612cbd565b5b6020830191508360018202830111156123bc576123bb612cc7565b5b9250929050565b6000813590506123d281612dd2565b92915050565b6000602082840312156123ee576123ed612cd6565b5b60006123fc848285016122eb565b91505092915050565b6000806040838503121561241c5761241b612cd6565b5b600061242a858286016122eb565b925050602061243b858286016122eb565b9150509250929050565b60008060006060848603121561245e5761245d612cd6565b5b600061246c868287016122eb565b935050602061247d868287016122eb565b925050604061248e868287016123c3565b9150509250925092565b600080600080608085870312156124b2576124b1612cd6565b5b60006124c0878288016122eb565b94505060206124d1878288016122eb565b93505060406124e2878288016123c3565b925050606085013567ffffffffffffffff81111561250357612502612cd1565b5b61250f8782880161233f565b91505092959194509250565b6000806040838503121561253257612531612cd6565b5b6000612540858286016122eb565b925050602061255185828601612300565b9150509250929050565b6000806040838503121561257257612571612cd6565b5b6000612580858286016122eb565b9250506020612591858286016123c3565b9150509250929050565b6000602082840312156125b1576125b0612cd6565b5b60006125bf84828501612315565b91505092915050565b6000602082840312156125de576125dd612cd6565b5b60006125ec8482850161232a565b91505092915050565b6000806020838503121561260c5761260b612cd6565b5b600083013567ffffffffffffffff81111561262a57612629612cd1565b5b6126368582860161236d565b92509250509250929050565b60006020828403121561265857612657612cd6565b5b6000612666848285016123c3565b91505092915050565b61267881612a3f565b82525050565b61268781612a51565b82525050565b600061269882612941565b6126a28185612957565b93506126b2818560208601612ac2565b6126bb81612cdb565b840191505092915050565b60006126d18261294c565b6126db8185612968565b93506126eb818560208601612ac2565b6126f481612cdb565b840191505092915050565b600061270a8261294c565b6127148185612979565b9350612724818560208601612ac2565b80840191505092915050565b600061273d602683612968565b915061274882612cec565b604082019050919050565b6000612760601583612968565b915061276b82612d3b565b602082019050919050565b6000612783602083612968565b915061278e82612d64565b602082019050919050565b6127a281612aa9565b82525050565b60006127b482856126ff565b91506127c082846126ff565b91508190509392505050565b60006020820190506127e1600083018461266f565b92915050565b60006080820190506127fc600083018761266f565b612809602083018661266f565b6128166040830185612799565b8181036060830152612828818461268d565b905095945050505050565b6000602082019050612848600083018461267e565b92915050565b6000602082019050818103600083015261286881846126c6565b905092915050565b6000602082019050818103600083015261288981612730565b9050919050565b600060208201905081810360008301526128a981612753565b9050919050565b600060208201905081810360008301526128c981612776565b9050919050565b60006020820190506128e56000830184612799565b92915050565b60006128f5612906565b90506129018282612b27565b919050565b6000604051905090565b600067ffffffffffffffff82111561292b5761292a612c8e565b5b61293482612cdb565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061298f82612aa9565b915061299a83612aa9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156129cf576129ce612bd2565b5b828201905092915050565b60006129e582612aa9565b91506129f083612aa9565b925082612a00576129ff612c01565b5b828204905092915050565b6000612a1682612aa9565b9150612a2183612aa9565b925082821015612a3457612a33612bd2565b5b828203905092915050565b6000612a4a82612a89565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612ae0578082015181840152602081019050612ac5565b83811115612aef576000848401525b50505050565b60006002820490506001821680612b0d57607f821691505b60208210811415612b2157612b20612c30565b5b50919050565b612b3082612cdb565b810181811067ffffffffffffffff82111715612b4f57612b4e612c8e565b5b80604052505050565b6000612b6382612aa9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612b9657612b95612bd2565b5b600182019050919050565b6000612bac82612aa9565b9150612bb783612aa9565b925082612bc757612bc6612c01565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4f6e6c79206d616e616765722063616e206d696e740000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b612d9681612a3f565b8114612da157600080fd5b50565b612dad81612a51565b8114612db857600080fd5b50565b612dc481612a5d565b8114612dcf57600080fd5b50565b612ddb81612aa9565b8114612de657600080fd5b5056fea2646970667358221220dbe0cb4bbfdb473944838a225710f1cefd11421345564e78cbb6d8dded3d164864736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000004426972620000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044249524200000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): Birb
Arg [1] : symbol_ (string): BIRB

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [3] : 4269726200000000000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [5] : 4249524200000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

47534:806:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25790:266;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29136:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30639:204;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30202:371;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25039:303;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31496:170;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31737:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47597:22;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48117:106;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28945:124;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26120:206;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46661:103;;;:::i;:::-;;46010:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29305:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47908:111;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30915:279;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31993:369;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29480:318;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47626:27;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48027:82;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43456:39;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31265:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46919:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25790:266;25892:4;25931:25;25916:40;;;:11;:40;;;;:92;;;;25975:33;25960:48;;;:11;:48;;;;25916:92;:132;;;;26012:36;26036:11;26012:23;:36::i;:::-;25916:132;25909:139;;25790:266;;;:::o;29136:100::-;29190:13;29223:5;29216:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29136:100;:::o;30639:204::-;30707:7;30732:16;30740:7;30732;:16::i;:::-;30727:64;;30757:34;;;;;;;;;;;;;;30727:64;30811:15;:24;30827:7;30811:24;;;;;;;;;;;;;;;;;;;;;30804:31;;30639:204;;;:::o;30202:371::-;30275:13;30291:24;30307:7;30291:15;:24::i;:::-;30275:40;;30336:5;30330:11;;:2;:11;;;30326:48;;;30350:24;;;;;;;;;;;;;;30326:48;30407:5;30391:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;30417:37;30434:5;30441:12;:10;:12::i;:::-;30417:16;:37::i;:::-;30416:38;30391:63;30387:138;;;30478:35;;;;;;;;;;;;;;30387:138;30537:28;30546:2;30550:7;30559:5;30537:8;:28::i;:::-;30264:309;30202:371;;:::o;25039:303::-;25083:7;25308:15;:13;:15::i;:::-;25293:12;;25277:13;;:28;:46;25270:53;;25039:303;:::o;31496:170::-;31630:28;31640:4;31646:2;31650:7;31630:9;:28::i;:::-;31496:170;;;:::o;31737:185::-;31875:39;31892:4;31898:2;31902:7;31875:39;;;;;;;;;;;;:16;:39::i;:::-;31737:185;;;:::o;47597:22::-;;;;;;;;;;;;;:::o;48117:106::-;46241:12;:10;:12::i;:::-;46230:23;;:7;:5;:7::i;:::-;:23;;;46222:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48208:7:::1;;48192:13;:23;;;;;;;:::i;:::-;;48117:106:::0;;:::o;28945:124::-;29009:7;29036:20;29048:7;29036:11;:20::i;:::-;:25;;;29029:32;;28945:124;;;:::o;26120:206::-;26184:7;26225:1;26208:19;;:5;:19;;;26204:60;;;26236:28;;;;;;;;;;;;;;26204:60;26290:12;:19;26303:5;26290:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;26282:36;;26275:43;;26120:206;;;:::o;46661:103::-;46241:12;:10;:12::i;:::-;46230:23;;:7;:5;:7::i;:::-;:23;;;46222:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46726:30:::1;46753:1;46726:18;:30::i;:::-;46661:103::o:0;46010:87::-;46056:7;46083:6;;;;;;;;;;;46076:13;;46010:87;:::o;29305:104::-;29361:13;29394:7;29387:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29305:104;:::o;47908:111::-;47715:12;:10;:12::i;:::-;47704:23;;:7;;;;;;;;;;;:23;;;47696:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;47988:23:::1;47998:2;48002:8;47988:9;:23::i;:::-;47908:111:::0;;:::o;30915:279::-;31018:12;:10;:12::i;:::-;31006:24;;:8;:24;;;31002:54;;;31039:17;;;;;;;;;;;;;;31002:54;31114:8;31069:18;:32;31088:12;:10;:12::i;:::-;31069:32;;;;;;;;;;;;;;;:42;31102:8;31069:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;31167:8;31138:48;;31153:12;:10;:12::i;:::-;31138:48;;;31177:8;31138:48;;;;;;:::i;:::-;;;;;;;;30915:279;;:::o;31993:369::-;32160:28;32170:4;32176:2;32180:7;32160:9;:28::i;:::-;32203:15;:2;:13;;;:15::i;:::-;:76;;;;;32223:56;32254:4;32260:2;32264:7;32273:5;32223:30;:56::i;:::-;32222:57;32203:76;32199:156;;;32303:40;;;;;;;;;;;;;;32199:156;31993:369;;;;:::o;29480:318::-;29553:13;29584:16;29592:7;29584;:16::i;:::-;29579:59;;29609:29;;;;;;;;;;;;;;29579:59;29651:21;29675:10;:8;:10::i;:::-;29651:34;;29728:1;29709:7;29703:21;:26;;:87;;;;;;;;;;;;;;;;;29756:7;29765:18;:7;:16;:18::i;:::-;29739:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;29703:87;29696:94;;;29480:318;;;:::o;47626:27::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;48027:82::-;46241:12;:10;:12::i;:::-;46230:23;;:7;:5;:7::i;:::-;:23;;;46222:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48099:2:::1;48089:7;;:12;;;;;;;;;;;;;;;;;;48027:82:::0;:::o;43456:39::-;;;;:::o;31265:164::-;31362:4;31386:18;:25;31405:5;31386:25;;;;;;;;;;;;;;;:35;31412:8;31386:35;;;;;;;;;;;;;;;;;;;;;;;;;31379:42;;31265:164;;;;:::o;46919:201::-;46241:12;:10;:12::i;:::-;46230:23;;:7;:5;:7::i;:::-;:23;;;46222:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47028:1:::1;47008:22;;:8;:22;;;;47000:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;47084:28;47103:8;47084:18;:28::i;:::-;46919:201:::0;:::o;21148:157::-;21233:4;21272:25;21257:40;;;:11;:40;;;;21250:47;;21148:157;;;:::o;32617:174::-;32674:4;32717:7;32698:15;:13;:15::i;:::-;:26;;:53;;;;;32738:13;;32728:7;:23;32698:53;:85;;;;;32756:11;:20;32768:7;32756:20;;;;;;;;;;;:27;;;;;;;;;;;;32755:28;32698:85;32691:92;;32617:174;;;:::o;17939:98::-;17992:7;18019:10;18012:17;;17939:98;:::o;40189:196::-;40331:2;40304:15;:24;40320:7;40304:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;40369:7;40365:2;40349:28;;40358:5;40349:28;;;;;;;;;;;;40189:196;;;:::o;24763:92::-;24819:7;24763:92;:::o;35717:2086::-;35832:35;35870:20;35882:7;35870:11;:20::i;:::-;35832:58;;35903:22;35945:13;:18;;;35929:34;;:12;:10;:12::i;:::-;:34;;;:88;;;;35967:50;35984:13;:18;;;36004:12;:10;:12::i;:::-;35967:16;:50::i;:::-;35929:88;:128;;;;36045:12;:10;:12::i;:::-;36021:36;;:20;36033:7;36021:11;:20::i;:::-;:36;;;35929:128;35903:155;;36076:17;36071:66;;36102:35;;;;;;;;;;;;;;36071:66;36174:4;36152:26;;:13;:18;;;:26;;;36148:67;;36187:28;;;;;;;;;;;;;;36148:67;36244:1;36230:16;;:2;:16;;;36226:52;;;36255:23;;;;;;;;;;;;;;36226:52;36291:43;36313:4;36319:2;36323:7;36332:1;36291:21;:43::i;:::-;36399:49;36416:1;36420:7;36429:13;:18;;;36399:8;:49::i;:::-;36774:1;36744:12;:18;36757:4;36744:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36818:1;36790:12;:16;36803:2;36790:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36864:2;36836:11;:20;36848:7;36836:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;36926:15;36881:11;:20;36893:7;36881:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;37194:19;37226:1;37216:7;:11;37194:33;;37287:1;37246:43;;:11;:24;37258:11;37246:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;37242:445;;;37471:13;;37457:11;:27;37453:219;;;37541:13;:18;;;37509:11;:24;37521:11;37509:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;37624:13;:28;;;37582:11;:24;37594:11;37582:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;37453:219;37242:445;36719:979;37734:7;37730:2;37715:27;;37724:4;37715:27;;;;;;;;;;;;37753:42;37774:4;37780:2;37784:7;37793:1;37753:20;:42::i;:::-;35821:1982;;35717:2086;;;:::o;27775:1108::-;27836:21;;:::i;:::-;27870:12;27885:7;27870:22;;27953:4;27934:15;:13;:15::i;:::-;:23;;:47;;;;;27968:13;;27961:4;:20;27934:47;27930:886;;;28002:31;28036:11;:17;28048:4;28036:17;;;;;;;;;;;28002:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28077:9;:16;;;28072:729;;28148:1;28122:28;;:9;:14;;;:28;;;28118:101;;28186:9;28179:16;;;;;;28118:101;28521:261;28528:4;28521:261;;;28561:6;;;;;;;;28606:11;:17;28618:4;28606:17;;;;;;;;;;;28594:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28680:1;28654:28;;:9;:14;;;:28;;;28650:109;;28722:9;28715:16;;;;;;28650:109;28521:261;;;28072:729;27983:833;27930:886;28844:31;;;;;;;;;;;;;;27775:1108;;;;:::o;47280:191::-;47354:16;47373:6;;;;;;;;;;;47354:25;;47399:8;47390:6;;:17;;;;;;;;;;;;;;;;;;47454:8;47423:40;;47444:8;47423:40;;;;;;;;;;;;47343:128;47280:191;:::o;32799:104::-;32868:27;32878:2;32882:8;32868:27;;;;;;;;;;;;:9;:27::i;:::-;32799:104;;:::o;9986:326::-;10046:4;10303:1;10281:7;:19;;;:23;10274:30;;9986:326;;;:::o;40877:667::-;41040:4;41077:2;41061:36;;;41098:12;:10;:12::i;:::-;41112:4;41118:7;41127:5;41061:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;41057:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41312:1;41295:6;:13;:18;41291:235;;;41341:40;;;;;;;;;;;;;;41291:235;41484:6;41478:13;41469:6;41465:2;41461:15;41454:38;41057:480;41190:45;;;41180:55;;;:6;:55;;;;41173:62;;;40877:667;;;;;;:::o;48231:106::-;48283:13;48316;48309:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48231:106;:::o;18522:723::-;18578:13;18808:1;18799:5;:10;18795:53;;;18826:10;;;;;;;;;;;;;;;;;;;;;18795:53;18858:12;18873:5;18858:20;;18889:14;18914:78;18929:1;18921:4;:9;18914:78;;18947:8;;;;;:::i;:::-;;;;18978:2;18970:10;;;;;:::i;:::-;;;18914:78;;;19002:19;19034:6;19024:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19002:39;;19052:154;19068:1;19059:5;:10;19052:154;;19096:1;19086:11;;;;;:::i;:::-;;;19163:2;19155:5;:10;;;;:::i;:::-;19142:2;:24;;;;:::i;:::-;19129:39;;19112:6;19119;19112:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;19192:2;19183:11;;;;;:::i;:::-;;;19052:154;;;19230:6;19216:21;;;;;18522:723;;;;:::o;42192:159::-;;;;;:::o;43010:158::-;;;;;:::o;33266:163::-;33389:32;33395:2;33399:8;33409:5;33416:4;33389:5;:32::i;:::-;33266:163;;;:::o;33688:1775::-;33827:20;33850:13;;33827:36;;33892:1;33878:16;;:2;:16;;;33874:48;;;33903:19;;;;;;;;;;;;;;33874:48;33949:1;33937:8;:13;33933:44;;;33959:18;;;;;;;;;;;;;;33933:44;33990:61;34020:1;34024:2;34028:12;34042:8;33990:21;:61::i;:::-;34363:8;34328:12;:16;34341:2;34328:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34427:8;34387:12;:16;34400:2;34387:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34486:2;34453:11;:25;34465:12;34453:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;34553:15;34503:11;:25;34515:12;34503:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;34586:20;34609:12;34586:35;;34636:11;34665:8;34650:12;:23;34636:37;;34694:4;:23;;;;;34702:15;:2;:13;;;:15::i;:::-;34694:23;34690:641;;;34738:314;34794:12;34790:2;34769:38;;34786:1;34769:38;;;;;;;;;;;;34835:69;34874:1;34878:2;34882:14;;;;;;34898:5;34835:30;:69::i;:::-;34830:174;;34940:40;;;;;;;;;;;;;;34830:174;35047:3;35031:12;:19;;34738:314;;35133:12;35116:13;;:29;35112:43;;35147:8;;;35112:43;34690:641;;;35196:120;35252:14;;;;;;35248:2;35227:40;;35244:1;35227:40;;;;;;;;;;;;35311:3;35295:12;:19;;35196:120;;34690:641;35361:12;35345:13;:28;;;;34303:1082;;35395:60;35424:1;35428:2;35432:12;35446:8;35395:20;:60::i;:::-;33816:1647;33688:1775;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;568:133::-;611:5;649:6;636:20;627:29;;665:30;689:5;665:30;:::i;:::-;568:133;;;;:::o;707:137::-;752:5;790:6;777:20;768:29;;806:32;832:5;806:32;:::i;:::-;707:137;;;;:::o;850:141::-;906:5;937:6;931:13;922:22;;953:32;979:5;953:32;:::i;:::-;850:141;;;;:::o;1010:338::-;1065:5;1114:3;1107:4;1099:6;1095:17;1091:27;1081:122;;1122:79;;:::i;:::-;1081:122;1239:6;1226:20;1264:78;1338:3;1330:6;1323:4;1315:6;1311:17;1264:78;:::i;:::-;1255:87;;1071:277;1010:338;;;;:::o;1368:553::-;1426:8;1436:6;1486:3;1479:4;1471:6;1467:17;1463:27;1453:122;;1494:79;;:::i;:::-;1453:122;1607:6;1594:20;1584:30;;1637:18;1629:6;1626:30;1623:117;;;1659:79;;:::i;:::-;1623:117;1773:4;1765:6;1761:17;1749:29;;1827:3;1819:4;1811:6;1807:17;1797:8;1793:32;1790:41;1787:128;;;1834:79;;:::i;:::-;1787:128;1368:553;;;;;:::o;1927:139::-;1973:5;2011:6;1998:20;1989:29;;2027:33;2054:5;2027:33;:::i;:::-;1927:139;;;;:::o;2072:329::-;2131:6;2180:2;2168:9;2159:7;2155:23;2151:32;2148:119;;;2186:79;;:::i;:::-;2148:119;2306:1;2331:53;2376:7;2367:6;2356:9;2352:22;2331:53;:::i;:::-;2321:63;;2277:117;2072:329;;;;:::o;2407:474::-;2475:6;2483;2532:2;2520:9;2511:7;2507:23;2503:32;2500:119;;;2538:79;;:::i;:::-;2500:119;2658:1;2683:53;2728:7;2719:6;2708:9;2704:22;2683:53;:::i;:::-;2673:63;;2629:117;2785:2;2811:53;2856:7;2847:6;2836:9;2832:22;2811:53;:::i;:::-;2801:63;;2756:118;2407:474;;;;;:::o;2887:619::-;2964:6;2972;2980;3029:2;3017:9;3008:7;3004:23;3000:32;2997:119;;;3035:79;;:::i;:::-;2997:119;3155:1;3180:53;3225:7;3216:6;3205:9;3201:22;3180:53;:::i;:::-;3170:63;;3126:117;3282:2;3308:53;3353:7;3344:6;3333:9;3329:22;3308:53;:::i;:::-;3298:63;;3253:118;3410:2;3436:53;3481:7;3472:6;3461:9;3457:22;3436:53;:::i;:::-;3426:63;;3381:118;2887:619;;;;;:::o;3512:943::-;3607:6;3615;3623;3631;3680:3;3668:9;3659:7;3655:23;3651:33;3648:120;;;3687:79;;:::i;:::-;3648:120;3807:1;3832:53;3877:7;3868:6;3857:9;3853:22;3832:53;:::i;:::-;3822:63;;3778:117;3934:2;3960:53;4005:7;3996:6;3985:9;3981:22;3960:53;:::i;:::-;3950:63;;3905:118;4062:2;4088:53;4133:7;4124:6;4113:9;4109:22;4088:53;:::i;:::-;4078:63;;4033:118;4218:2;4207:9;4203:18;4190:32;4249:18;4241:6;4238:30;4235:117;;;4271:79;;:::i;:::-;4235:117;4376:62;4430:7;4421:6;4410:9;4406:22;4376:62;:::i;:::-;4366:72;;4161:287;3512:943;;;;;;;:::o;4461:468::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:50;4904:7;4895:6;4884:9;4880:22;4862:50;:::i;:::-;4852:60;;4807:115;4461:468;;;;;:::o;4935:474::-;5003:6;5011;5060:2;5048:9;5039:7;5035:23;5031:32;5028:119;;;5066:79;;:::i;:::-;5028:119;5186:1;5211:53;5256:7;5247:6;5236:9;5232:22;5211:53;:::i;:::-;5201:63;;5157:117;5313:2;5339:53;5384:7;5375:6;5364:9;5360:22;5339:53;:::i;:::-;5329:63;;5284:118;4935:474;;;;;:::o;5415:327::-;5473:6;5522:2;5510:9;5501:7;5497:23;5493:32;5490:119;;;5528:79;;:::i;:::-;5490:119;5648:1;5673:52;5717:7;5708:6;5697:9;5693:22;5673:52;:::i;:::-;5663:62;;5619:116;5415:327;;;;:::o;5748:349::-;5817:6;5866:2;5854:9;5845:7;5841:23;5837:32;5834:119;;;5872:79;;:::i;:::-;5834:119;5992:1;6017:63;6072:7;6063:6;6052:9;6048:22;6017:63;:::i;:::-;6007:73;;5963:127;5748:349;;;;:::o;6103:529::-;6174:6;6182;6231:2;6219:9;6210:7;6206:23;6202:32;6199:119;;;6237:79;;:::i;:::-;6199:119;6385:1;6374:9;6370:17;6357:31;6415:18;6407:6;6404:30;6401:117;;;6437:79;;:::i;:::-;6401:117;6550:65;6607:7;6598:6;6587:9;6583:22;6550:65;:::i;:::-;6532:83;;;;6328:297;6103:529;;;;;:::o;6638:329::-;6697:6;6746:2;6734:9;6725:7;6721:23;6717:32;6714:119;;;6752:79;;:::i;:::-;6714:119;6872:1;6897:53;6942:7;6933:6;6922:9;6918:22;6897:53;:::i;:::-;6887:63;;6843:117;6638:329;;;;:::o;6973:118::-;7060:24;7078:5;7060:24;:::i;:::-;7055:3;7048:37;6973:118;;:::o;7097:109::-;7178:21;7193:5;7178:21;:::i;:::-;7173:3;7166:34;7097:109;;:::o;7212:360::-;7298:3;7326:38;7358:5;7326:38;:::i;:::-;7380:70;7443:6;7438:3;7380:70;:::i;:::-;7373:77;;7459:52;7504:6;7499:3;7492:4;7485:5;7481:16;7459:52;:::i;:::-;7536:29;7558:6;7536:29;:::i;:::-;7531:3;7527:39;7520:46;;7302:270;7212:360;;;;:::o;7578:364::-;7666:3;7694:39;7727:5;7694:39;:::i;:::-;7749:71;7813:6;7808:3;7749:71;:::i;:::-;7742:78;;7829:52;7874:6;7869:3;7862:4;7855:5;7851:16;7829:52;:::i;:::-;7906:29;7928:6;7906:29;:::i;:::-;7901:3;7897:39;7890:46;;7670:272;7578:364;;;;:::o;7948:377::-;8054:3;8082:39;8115:5;8082:39;:::i;:::-;8137:89;8219:6;8214:3;8137:89;:::i;:::-;8130:96;;8235:52;8280:6;8275:3;8268:4;8261:5;8257:16;8235:52;:::i;:::-;8312:6;8307:3;8303:16;8296:23;;8058:267;7948:377;;;;:::o;8331:366::-;8473:3;8494:67;8558:2;8553:3;8494:67;:::i;:::-;8487:74;;8570:93;8659:3;8570:93;:::i;:::-;8688:2;8683:3;8679:12;8672:19;;8331:366;;;:::o;8703:::-;8845:3;8866:67;8930:2;8925:3;8866:67;:::i;:::-;8859:74;;8942:93;9031:3;8942:93;:::i;:::-;9060:2;9055:3;9051:12;9044:19;;8703:366;;;:::o;9075:::-;9217:3;9238:67;9302:2;9297:3;9238:67;:::i;:::-;9231:74;;9314:93;9403:3;9314:93;:::i;:::-;9432:2;9427:3;9423:12;9416:19;;9075:366;;;:::o;9447:118::-;9534:24;9552:5;9534:24;:::i;:::-;9529:3;9522:37;9447:118;;:::o;9571:435::-;9751:3;9773:95;9864:3;9855:6;9773:95;:::i;:::-;9766:102;;9885:95;9976:3;9967:6;9885:95;:::i;:::-;9878:102;;9997:3;9990:10;;9571:435;;;;;:::o;10012:222::-;10105:4;10143:2;10132:9;10128:18;10120:26;;10156:71;10224:1;10213:9;10209:17;10200:6;10156:71;:::i;:::-;10012:222;;;;:::o;10240:640::-;10435:4;10473:3;10462:9;10458:19;10450:27;;10487:71;10555:1;10544:9;10540:17;10531:6;10487:71;:::i;:::-;10568:72;10636:2;10625:9;10621:18;10612:6;10568:72;:::i;:::-;10650;10718:2;10707:9;10703:18;10694:6;10650:72;:::i;:::-;10769:9;10763:4;10759:20;10754:2;10743:9;10739:18;10732:48;10797:76;10868:4;10859:6;10797:76;:::i;:::-;10789:84;;10240:640;;;;;;;:::o;10886:210::-;10973:4;11011:2;11000:9;10996:18;10988:26;;11024:65;11086:1;11075:9;11071:17;11062:6;11024:65;:::i;:::-;10886:210;;;;:::o;11102:313::-;11215:4;11253:2;11242:9;11238:18;11230:26;;11302:9;11296:4;11292:20;11288:1;11277:9;11273:17;11266:47;11330:78;11403:4;11394:6;11330:78;:::i;:::-;11322:86;;11102:313;;;;:::o;11421:419::-;11587:4;11625:2;11614:9;11610:18;11602:26;;11674:9;11668:4;11664:20;11660:1;11649:9;11645:17;11638:47;11702:131;11828:4;11702:131;:::i;:::-;11694:139;;11421:419;;;:::o;11846:::-;12012:4;12050:2;12039:9;12035:18;12027:26;;12099:9;12093:4;12089:20;12085:1;12074:9;12070:17;12063:47;12127:131;12253:4;12127:131;:::i;:::-;12119:139;;11846:419;;;:::o;12271:::-;12437:4;12475:2;12464:9;12460:18;12452:26;;12524:9;12518:4;12514:20;12510:1;12499:9;12495:17;12488:47;12552:131;12678:4;12552:131;:::i;:::-;12544:139;;12271:419;;;:::o;12696:222::-;12789:4;12827:2;12816:9;12812:18;12804:26;;12840:71;12908:1;12897:9;12893:17;12884:6;12840:71;:::i;:::-;12696:222;;;;:::o;12924:129::-;12958:6;12985:20;;:::i;:::-;12975:30;;13014:33;13042:4;13034:6;13014:33;:::i;:::-;12924:129;;;:::o;13059:75::-;13092:6;13125:2;13119:9;13109:19;;13059:75;:::o;13140:307::-;13201:4;13291:18;13283:6;13280:30;13277:56;;;13313:18;;:::i;:::-;13277:56;13351:29;13373:6;13351:29;:::i;:::-;13343:37;;13435:4;13429;13425:15;13417:23;;13140:307;;;:::o;13453:98::-;13504:6;13538:5;13532:12;13522:22;;13453:98;;;:::o;13557:99::-;13609:6;13643:5;13637:12;13627:22;;13557:99;;;:::o;13662:168::-;13745:11;13779:6;13774:3;13767:19;13819:4;13814:3;13810:14;13795:29;;13662:168;;;;:::o;13836:169::-;13920:11;13954:6;13949:3;13942:19;13994:4;13989:3;13985:14;13970:29;;13836:169;;;;:::o;14011:148::-;14113:11;14150:3;14135:18;;14011:148;;;;:::o;14165:305::-;14205:3;14224:20;14242:1;14224:20;:::i;:::-;14219:25;;14258:20;14276:1;14258:20;:::i;:::-;14253:25;;14412:1;14344:66;14340:74;14337:1;14334:81;14331:107;;;14418:18;;:::i;:::-;14331:107;14462:1;14459;14455:9;14448:16;;14165:305;;;;:::o;14476:185::-;14516:1;14533:20;14551:1;14533:20;:::i;:::-;14528:25;;14567:20;14585:1;14567:20;:::i;:::-;14562:25;;14606:1;14596:35;;14611:18;;:::i;:::-;14596:35;14653:1;14650;14646:9;14641:14;;14476:185;;;;:::o;14667:191::-;14707:4;14727:20;14745:1;14727:20;:::i;:::-;14722:25;;14761:20;14779:1;14761:20;:::i;:::-;14756:25;;14800:1;14797;14794:8;14791:34;;;14805:18;;:::i;:::-;14791:34;14850:1;14847;14843:9;14835:17;;14667:191;;;;:::o;14864:96::-;14901:7;14930:24;14948:5;14930:24;:::i;:::-;14919:35;;14864:96;;;:::o;14966:90::-;15000:7;15043:5;15036:13;15029:21;15018:32;;14966:90;;;:::o;15062:149::-;15098:7;15138:66;15131:5;15127:78;15116:89;;15062:149;;;:::o;15217:126::-;15254:7;15294:42;15287:5;15283:54;15272:65;;15217:126;;;:::o;15349:77::-;15386:7;15415:5;15404:16;;15349:77;;;:::o;15432:154::-;15516:6;15511:3;15506;15493:30;15578:1;15569:6;15564:3;15560:16;15553:27;15432:154;;;:::o;15592:307::-;15660:1;15670:113;15684:6;15681:1;15678:13;15670:113;;;15769:1;15764:3;15760:11;15754:18;15750:1;15745:3;15741:11;15734:39;15706:2;15703:1;15699:10;15694:15;;15670:113;;;15801:6;15798:1;15795:13;15792:101;;;15881:1;15872:6;15867:3;15863:16;15856:27;15792:101;15641:258;15592:307;;;:::o;15905:320::-;15949:6;15986:1;15980:4;15976:12;15966:22;;16033:1;16027:4;16023:12;16054:18;16044:81;;16110:4;16102:6;16098:17;16088:27;;16044:81;16172:2;16164:6;16161:14;16141:18;16138:38;16135:84;;;16191:18;;:::i;:::-;16135:84;15956:269;15905:320;;;:::o;16231:281::-;16314:27;16336:4;16314:27;:::i;:::-;16306:6;16302:40;16444:6;16432:10;16429:22;16408:18;16396:10;16393:34;16390:62;16387:88;;;16455:18;;:::i;:::-;16387:88;16495:10;16491:2;16484:22;16274:238;16231:281;;:::o;16518:233::-;16557:3;16580:24;16598:5;16580:24;:::i;:::-;16571:33;;16626:66;16619:5;16616:77;16613:103;;;16696:18;;:::i;:::-;16613:103;16743:1;16736:5;16732:13;16725:20;;16518:233;;;:::o;16757:176::-;16789:1;16806:20;16824:1;16806:20;:::i;:::-;16801:25;;16840:20;16858:1;16840:20;:::i;:::-;16835:25;;16879:1;16869:35;;16884:18;;:::i;:::-;16869:35;16925:1;16922;16918:9;16913:14;;16757:176;;;;:::o;16939:180::-;16987:77;16984:1;16977:88;17084:4;17081:1;17074:15;17108:4;17105:1;17098:15;17125:180;17173:77;17170:1;17163:88;17270:4;17267:1;17260:15;17294:4;17291:1;17284:15;17311:180;17359:77;17356:1;17349:88;17456:4;17453:1;17446:15;17480:4;17477:1;17470:15;17497:180;17545:77;17542:1;17535:88;17642:4;17639:1;17632:15;17666:4;17663:1;17656:15;17683:180;17731:77;17728:1;17721:88;17828:4;17825:1;17818:15;17852:4;17849:1;17842:15;17869:117;17978:1;17975;17968:12;17992:117;18101:1;18098;18091:12;18115:117;18224:1;18221;18214:12;18238:117;18347:1;18344;18337:12;18361:117;18470:1;18467;18460:12;18484:117;18593:1;18590;18583:12;18607:102;18648:6;18699:2;18695:7;18690:2;18683:5;18679:14;18675:28;18665:38;;18607:102;;;:::o;18715:225::-;18855:34;18851:1;18843:6;18839:14;18832:58;18924:8;18919:2;18911:6;18907:15;18900:33;18715:225;:::o;18946:171::-;19086:23;19082:1;19074:6;19070:14;19063:47;18946:171;:::o;19123:182::-;19263:34;19259:1;19251:6;19247:14;19240:58;19123:182;:::o;19311:122::-;19384:24;19402:5;19384:24;:::i;:::-;19377:5;19374:35;19364:63;;19423:1;19420;19413:12;19364:63;19311:122;:::o;19439:116::-;19509:21;19524:5;19509:21;:::i;:::-;19502:5;19499:32;19489:60;;19545:1;19542;19535:12;19489:60;19439:116;:::o;19561:120::-;19633:23;19650:5;19633:23;:::i;:::-;19626:5;19623:34;19613:62;;19671:1;19668;19661:12;19613:62;19561:120;:::o;19687:122::-;19760:24;19778:5;19760:24;:::i;:::-;19753:5;19750:35;19740:63;;19799:1;19796;19789:12;19740:63;19687:122;:::o

Swarm Source

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